From f338ded34947c9f9d617b1e577d9fed527dea6a6 Mon Sep 17 00:00:00 2001 From: MarkLee131 Date: Sat, 4 Apr 2026 20:57:13 +0800 Subject: [PATCH 001/260] Java: treat hash/encrypt/digest methods as sensitive-log sanitizers The sensitive-log query (CWE-532) lacked sanitizers for hashed or encrypted data, while the sibling cleartext-storage query (CWE-312) already recognized methods with "encrypt", "hash", or "digest" in their names as sanitizers (CleartextStorageQuery.qll:86). This adds an EncryptionBarrier to SensitiveLoggingQuery that applies the same name-based heuristic, making the two queries consistent. Calls like DigestUtils.sha256Hex(password) or hashPassword(secret) are no longer flagged when their results are logged. --- .../2026-04-04-sensitive-log-hash-sanitizer.md | 4 ++++ .../code/java/security/SensitiveLoggingQuery.qll | 13 +++++++++++++ .../security/CWE-532/SensitiveLogInfo.expected | 4 ++++ java/ql/test/query-tests/security/CWE-532/Test.java | 13 +++++++++++++ 4 files changed, 34 insertions(+) create mode 100644 java/ql/lib/change-notes/2026-04-04-sensitive-log-hash-sanitizer.md diff --git a/java/ql/lib/change-notes/2026-04-04-sensitive-log-hash-sanitizer.md b/java/ql/lib/change-notes/2026-04-04-sensitive-log-hash-sanitizer.md new file mode 100644 index 000000000000..7323ab09737a --- /dev/null +++ b/java/ql/lib/change-notes/2026-04-04-sensitive-log-hash-sanitizer.md @@ -0,0 +1,4 @@ +--- +category: minorAnalysis +--- +* The `java/sensitive-log` query now treats method calls whose names contain "encrypt", "hash", or "digest" as sanitizers, consistent with the existing treatment in `java/cleartext-storage-in-log`. This reduces false positives when sensitive data is hashed or encrypted before logging. diff --git a/java/ql/lib/semmle/code/java/security/SensitiveLoggingQuery.qll b/java/ql/lib/semmle/code/java/security/SensitiveLoggingQuery.qll index 7058b844cbdb..5f11ae0d214b 100644 --- a/java/ql/lib/semmle/code/java/security/SensitiveLoggingQuery.qll +++ b/java/ql/lib/semmle/code/java/security/SensitiveLoggingQuery.qll @@ -120,6 +120,19 @@ private class DefaultSensitiveLoggerBarrier extends SensitiveLoggerBarrier { } } +/** + * A barrier for sensitive data that has been hashed, encrypted, or digested before logging. + * This is consistent with the treatment of encryption in `CleartextStorageQuery.qll` (CWE-312). + */ +private class EncryptionBarrier extends SensitiveLoggerBarrier { + EncryptionBarrier() { + exists(MethodCall mc | + this.asExpr() = mc and + mc.getMethod().getName().toLowerCase().matches(["%encrypt%", "%hash%", "%digest%"]) + ) + } +} + /** A data-flow configuration for identifying potentially-sensitive data flowing to a log output. */ module SensitiveLoggerConfig implements DataFlow::ConfigSig { predicate isSource(DataFlow::Node source) { source instanceof SensitiveLoggerSource } diff --git a/java/ql/test/query-tests/security/CWE-532/SensitiveLogInfo.expected b/java/ql/test/query-tests/security/CWE-532/SensitiveLogInfo.expected index 54f1e9f8a5aa..af315238bbf3 100644 --- a/java/ql/test/query-tests/security/CWE-532/SensitiveLogInfo.expected +++ b/java/ql/test/query-tests/security/CWE-532/SensitiveLogInfo.expected @@ -3,6 +3,7 @@ | Test.java:12:22:12:52 | ... + ... | Test.java:12:44:12:52 | authToken : String | Test.java:12:22:12:52 | ... + ... | This $@ is written to a log file. | Test.java:12:44:12:52 | authToken | potentially sensitive information | | Test.java:21:22:21:75 | ... + ... | Test.java:21:44:21:52 | authToken : String | Test.java:21:22:21:75 | ... + ... | This $@ is written to a log file. | Test.java:21:44:21:52 | authToken | potentially sensitive information | | Test.java:22:22:22:75 | ... + ... | Test.java:22:44:22:52 | authToken : String | Test.java:22:22:22:75 | ... + ... | This $@ is written to a log file. | Test.java:22:44:22:52 | authToken | potentially sensitive information | +| Test.java:31:21:31:37 | ... + ... | Test.java:31:30:31:37 | password : String | Test.java:31:21:31:37 | ... + ... | This $@ is written to a log file. | Test.java:31:30:31:37 | password | potentially sensitive information | edges | Test.java:11:46:11:53 | password : String | Test.java:11:21:11:53 | ... + ... | provenance | Sink:MaD:2 | | Test.java:12:44:12:52 | authToken : String | Test.java:12:22:12:52 | ... + ... | provenance | Sink:MaD:1 | @@ -10,6 +11,7 @@ edges | Test.java:21:44:21:67 | substring(...) : String | Test.java:21:22:21:75 | ... + ... | provenance | Sink:MaD:1 | | Test.java:22:44:22:52 | authToken : String | Test.java:22:44:22:67 | substring(...) : String | provenance | MaD:3 | | Test.java:22:44:22:67 | substring(...) : String | Test.java:22:22:22:75 | ... + ... | provenance | Sink:MaD:1 | +| Test.java:31:30:31:37 | password : String | Test.java:31:21:31:37 | ... + ... | provenance | Sink:MaD:2 | models | 1 | Sink: org.apache.logging.log4j; Logger; true; error; (String); ; Argument[0]; log-injection; manual | | 2 | Sink: org.apache.logging.log4j; Logger; true; info; (String); ; Argument[0]; log-injection; manual | @@ -25,4 +27,6 @@ nodes | Test.java:22:22:22:75 | ... + ... | semmle.label | ... + ... | | Test.java:22:44:22:52 | authToken : String | semmle.label | authToken : String | | Test.java:22:44:22:67 | substring(...) : String | semmle.label | substring(...) : String | +| Test.java:31:21:31:37 | ... + ... | semmle.label | ... + ... | +| Test.java:31:30:31:37 | password : String | semmle.label | password : String | subpaths diff --git a/java/ql/test/query-tests/security/CWE-532/Test.java b/java/ql/test/query-tests/security/CWE-532/Test.java index 6521f7e2df79..a25becb89bbe 100644 --- a/java/ql/test/query-tests/security/CWE-532/Test.java +++ b/java/ql/test/query-tests/security/CWE-532/Test.java @@ -21,4 +21,17 @@ void test(String password, String authToken, String username, String nullToken, logger.error("Auth failed for: " + authToken.substring(1,5) + "..."); // $ Alert logger.error("Auth failed for: " + authToken.substring(0,8) + "..."); // $ Alert } + + // Tests for hash/encryption sanitizer + void testHashSanitizer(String password, String authToken) { + Logger logger = null; + logger.info("hash: " + hashPassword(password)); // Safe - hashed + logger.info("hash: " + sha256Digest(authToken)); // Safe - digested + logger.info("enc: " + encryptValue(password)); // Safe - encrypted + logger.info("pw: " + password); // $ Alert - not hashed + } + + static String hashPassword(String input) { return input; } + static String sha256Digest(String input) { return input; } + static String encryptValue(String input) { return input; } } From 345b842edcadec51e32b9bc637ba7ed4f733bc80 Mon Sep 17 00:00:00 2001 From: MarkLee131 Date: Sat, 4 Apr 2026 20:57:24 +0800 Subject: [PATCH 002/260] Java: add RegexpCheckBarrier to trust-boundary-violation sanitizers The trust-boundary-violation query only recognized OWASP ESAPI validators as sanitizers. ESAPI is rarely used in modern Java projects, while regex validation via String.matches() and @javax.validation.constraints.Pattern is the standard approach in Spring/Jakarta applications. RegexpCheckBarrier already exists in Sanitizers.qll and is used by other queries (e.g., RequestForgery). This wires it into TrustBoundaryConfig, so patterns like input.matches("[a-zA-Z0-9]+") and @Pattern annotations are recognized as sanitizers, consistent with the existing ESAPI treatment. --- .../2026-04-04-trust-boundary-regexp-barrier.md | 4 ++++ .../code/java/security/TrustBoundaryViolationQuery.qll | 3 ++- .../security/CWE-501/TrustBoundaryViolations.java | 6 ++++++ 3 files changed, 12 insertions(+), 1 deletion(-) create mode 100644 java/ql/lib/change-notes/2026-04-04-trust-boundary-regexp-barrier.md diff --git a/java/ql/lib/change-notes/2026-04-04-trust-boundary-regexp-barrier.md b/java/ql/lib/change-notes/2026-04-04-trust-boundary-regexp-barrier.md new file mode 100644 index 000000000000..b80c0611b6de --- /dev/null +++ b/java/ql/lib/change-notes/2026-04-04-trust-boundary-regexp-barrier.md @@ -0,0 +1,4 @@ +--- +category: minorAnalysis +--- +* The `java/trust-boundary-violation` query now recognizes regular expression checks (including `String.matches()` guards and `@javax.validation.constraints.Pattern` annotations) as sanitizers, consistent with the existing treatment of ESAPI validators. This reduces false positives when input is validated against a pattern before being stored in a session. diff --git a/java/ql/lib/semmle/code/java/security/TrustBoundaryViolationQuery.qll b/java/ql/lib/semmle/code/java/security/TrustBoundaryViolationQuery.qll index d234f3df20ce..91e9b18cc9ba 100644 --- a/java/ql/lib/semmle/code/java/security/TrustBoundaryViolationQuery.qll +++ b/java/ql/lib/semmle/code/java/security/TrustBoundaryViolationQuery.qll @@ -40,7 +40,8 @@ module TrustBoundaryConfig implements DataFlow::ConfigSig { predicate isBarrier(DataFlow::Node node) { node instanceof TrustBoundaryValidationSanitizer or node.getType() instanceof HttpServletSession or - node instanceof SimpleTypeSanitizer + node instanceof SimpleTypeSanitizer or + node instanceof RegexpCheckBarrier } predicate isSink(DataFlow::Node sink) { sink instanceof TrustBoundaryViolationSink } diff --git a/java/ql/test/query-tests/security/CWE-501/TrustBoundaryViolations.java b/java/ql/test/query-tests/security/CWE-501/TrustBoundaryViolations.java index d676e3e96783..1934e7f55983 100644 --- a/java/ql/test/query-tests/security/CWE-501/TrustBoundaryViolations.java +++ b/java/ql/test/query-tests/security/CWE-501/TrustBoundaryViolations.java @@ -31,5 +31,11 @@ public void doGet(HttpServletRequest request, HttpServletResponse response) { } } catch (Exception e) { } + + // GOOD: Bean Validation @Pattern annotation constrains the input via regex. + String input4 = request.getParameter("input4"); + if (input4.matches("[a-zA-Z0-9]+")) { + request.getSession().setAttribute("input4", input4); + } } } From 258a53e146c7d3ad2fd007c154935e5477e2c13a Mon Sep 17 00:00:00 2001 From: Kaixuan Li Date: Sat, 4 Apr 2026 22:02:00 +0800 Subject: [PATCH 003/260] Update java/ql/test/query-tests/security/CWE-501/TrustBoundaryViolations.java Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> --- .../query-tests/security/CWE-501/TrustBoundaryViolations.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/java/ql/test/query-tests/security/CWE-501/TrustBoundaryViolations.java b/java/ql/test/query-tests/security/CWE-501/TrustBoundaryViolations.java index 1934e7f55983..f81da8ac8cfb 100644 --- a/java/ql/test/query-tests/security/CWE-501/TrustBoundaryViolations.java +++ b/java/ql/test/query-tests/security/CWE-501/TrustBoundaryViolations.java @@ -32,7 +32,7 @@ public void doGet(HttpServletRequest request, HttpServletResponse response) { } catch (Exception e) { } - // GOOD: Bean Validation @Pattern annotation constrains the input via regex. + // GOOD: A direct String.matches(...) regex check constrains the input before it is written to the session. String input4 = request.getParameter("input4"); if (input4.matches("[a-zA-Z0-9]+")) { request.getSession().setAttribute("input4", input4); From b49c6dcbd4f0ed053b04530ea345068172c5db98 Mon Sep 17 00:00:00 2001 From: MarkLee131 Date: Sat, 4 Apr 2026 22:04:05 +0800 Subject: [PATCH 004/260] Add @Pattern annotation test case and javax-validation-constraints stub Adds a dedicated test verifying that fields annotated with @javax.validation.constraints.Pattern are recognized as sanitized by RegexpCheckBarrier, in addition to the existing String.matches() guard test. --- .../security/CWE-501/TrustBoundaryViolations.java | 8 ++++++++ java/ql/test/query-tests/security/CWE-501/options | 2 +- 2 files changed, 9 insertions(+), 1 deletion(-) diff --git a/java/ql/test/query-tests/security/CWE-501/TrustBoundaryViolations.java b/java/ql/test/query-tests/security/CWE-501/TrustBoundaryViolations.java index f81da8ac8cfb..06e9c6cc929f 100644 --- a/java/ql/test/query-tests/security/CWE-501/TrustBoundaryViolations.java +++ b/java/ql/test/query-tests/security/CWE-501/TrustBoundaryViolations.java @@ -38,4 +38,12 @@ public void doGet(HttpServletRequest request, HttpServletResponse response) { request.getSession().setAttribute("input4", input4); } } + + @javax.validation.constraints.Pattern(regexp = "^[a-zA-Z0-9]+$") + String validatedField; + + public void doPost(HttpServletRequest request, HttpServletResponse response) { + // GOOD: The field is constrained by a @Pattern annotation. + request.getSession().setAttribute("validated", validatedField); + } } diff --git a/java/ql/test/query-tests/security/CWE-501/options b/java/ql/test/query-tests/security/CWE-501/options index 37d627da7e82..15ba67d18321 100644 --- a/java/ql/test/query-tests/security/CWE-501/options +++ b/java/ql/test/query-tests/security/CWE-501/options @@ -1 +1 @@ -//semmle-extractor-options: --javac-args -cp ${testdir}/../../../stubs/esapi-2.0.1:${testdir}/../../../stubs/javax-servlet-2.5 +//semmle-extractor-options: --javac-args -cp ${testdir}/../../../stubs/esapi-2.0.1:${testdir}/../../../stubs/javax-servlet-2.5:${testdir}/../../../stubs/javax-validation-constraints From dfe05599d3792cf5b50c5a95759735383865cda1 Mon Sep 17 00:00:00 2001 From: murderteeth Date: Sun, 12 Apr 2026 17:33:25 +0000 Subject: [PATCH 005/260] JS: Add support for @vercel/node serverless functions This adds a framework model for Vercel serverless functions so that CodeQL's existing JavaScript security queries can detect vulnerabilities in handlers of the form export default function handler(req: VercelRequest, res: VercelResponse) { ... } Handlers are identified as the default export of a module whose first two parameters are typed as `VercelRequest`/`VercelResponse` from `@vercel/node`. The default-export constraint excludes private helpers that share the same signature. Type-based detection follows the same pattern already used by `NextReqResHandler` in `Next.qll`. The framework model covers: - Route handler recognition (default-exported typed handlers only) - Request input sources: `query`, `body`, `cookies`, and `url` (the last inherited from Node's `IncomingMessage`) - Named header accesses like `req.headers.host` and `req.headers.referer`, modelled as `Http::RequestHeaderAccess` so header-specific queries fire - Response sinks: `res.send`, `res.status(...).send`, `res.redirect` - Header definitions via `res.setHeader` Includes a library test exercising each model predicate (including a negative case for private helpers) and query consistency fixtures demonstrating end-to-end detection for js/reflected-xss, js/request-forgery, js/sql-injection, and js/command-line-injection. Co-Authored-By: Claude Opus 4.6 (1M context) --- .../codeql/reusables/supported-frameworks.rst | 1 + .../change-notes/2026-04-12-vercel-node.md | 4 + javascript/ql/lib/javascript.qll | 1 + .../javascript/frameworks/VercelNode.qll | 200 ++++++++++++++++++ .../frameworks/vercel/HeaderDefinition.qll | 7 + .../frameworks/vercel/RedirectInvocation.qll | 7 + .../frameworks/vercel/RequestInputAccess.qll | 7 + .../frameworks/vercel/RequestSource.qll | 5 + .../vercel/ResponseSendArgument.qll | 7 + .../frameworks/vercel/ResponseSource.qll | 5 + .../frameworks/vercel/RouteHandler.qll | 3 + .../frameworks/vercel/src/notahandler.ts | 8 + .../frameworks/vercel/src/vercel.ts | 27 +++ .../frameworks/vercel/tests.expected | 22 ++ .../library-tests/frameworks/vercel/tests.ql | 7 + .../CommandInjection.expected | 11 + .../CWE-078/CommandInjection/vercel.ts | 9 + .../ReflectedXss/ReflectedXss.expected | 7 + .../ReflectedXssWithCustomSanitizer.expected | 2 + .../Security/CWE-079/ReflectedXss/vercel.ts | 6 + .../CWE-089/untyped/SqlInjection.expected | 11 + .../Security/CWE-089/untyped/vercel.ts | 10 + .../Security/CWE-918/RequestForgery.expected | 9 + .../query-tests/Security/CWE-918/vercel.ts | 7 + 24 files changed, 383 insertions(+) create mode 100644 javascript/ql/lib/change-notes/2026-04-12-vercel-node.md create mode 100644 javascript/ql/lib/semmle/javascript/frameworks/VercelNode.qll create mode 100644 javascript/ql/test/library-tests/frameworks/vercel/HeaderDefinition.qll create mode 100644 javascript/ql/test/library-tests/frameworks/vercel/RedirectInvocation.qll create mode 100644 javascript/ql/test/library-tests/frameworks/vercel/RequestInputAccess.qll create mode 100644 javascript/ql/test/library-tests/frameworks/vercel/RequestSource.qll create mode 100644 javascript/ql/test/library-tests/frameworks/vercel/ResponseSendArgument.qll create mode 100644 javascript/ql/test/library-tests/frameworks/vercel/ResponseSource.qll create mode 100644 javascript/ql/test/library-tests/frameworks/vercel/RouteHandler.qll create mode 100644 javascript/ql/test/library-tests/frameworks/vercel/src/notahandler.ts create mode 100644 javascript/ql/test/library-tests/frameworks/vercel/src/vercel.ts create mode 100644 javascript/ql/test/library-tests/frameworks/vercel/tests.expected create mode 100644 javascript/ql/test/library-tests/frameworks/vercel/tests.ql create mode 100644 javascript/ql/test/query-tests/Security/CWE-078/CommandInjection/vercel.ts create mode 100644 javascript/ql/test/query-tests/Security/CWE-079/ReflectedXss/vercel.ts create mode 100644 javascript/ql/test/query-tests/Security/CWE-089/untyped/vercel.ts create mode 100644 javascript/ql/test/query-tests/Security/CWE-918/vercel.ts diff --git a/docs/codeql/reusables/supported-frameworks.rst b/docs/codeql/reusables/supported-frameworks.rst index 472e463cf79b..581f34f92271 100644 --- a/docs/codeql/reusables/supported-frameworks.rst +++ b/docs/codeql/reusables/supported-frameworks.rst @@ -197,6 +197,7 @@ and the CodeQL library pack ``codeql/javascript-all`` (`changelog void`, where + * the types are imported from the `@vercel/node` package. The Vercel runtime + * invokes the default export for every incoming HTTP request. + */ +module VercelNode { + /** + * A Vercel serverless function handler, identified as the default export of a + * module whose first two parameters are typed as `VercelRequest` and + * `VercelResponse` from `@vercel/node`. + * + * Since `@vercel/node` is commonly imported as a type-only import, handlers + * are recognised by their TypeScript parameter types. The default-export + * constraint excludes private helpers or test utilities that share the + * same signature. + */ + class RouteHandler extends Http::Servers::StandardRouteHandler, DataFlow::FunctionNode { + DataFlow::ParameterNode req; + DataFlow::ParameterNode res; + + RouteHandler() { + this = any(Module m).getAnExportedValue("default").getAFunctionValue() and + req = this.getParameter(0) and + res = this.getParameter(1) and + req.hasUnderlyingType("@vercel/node", "VercelRequest") and + res.hasUnderlyingType("@vercel/node", "VercelResponse") + } + + /** Gets the parameter that contains the request object. */ + DataFlow::ParameterNode getRequest() { result = req } + + /** Gets the parameter that contains the response object. */ + DataFlow::ParameterNode getResponse() { result = res } + } + + /** + * A Vercel request source, that is, the request parameter of a route handler. + */ + private class RequestSource extends Http::Servers::RequestSource { + RouteHandler rh; + + RequestSource() { this = rh.getRequest() } + + override RouteHandler getRouteHandler() { result = rh } + } + + /** + * A Vercel response source, that is, the response parameter of a route handler. + */ + private class ResponseSource extends Http::Servers::ResponseSource { + RouteHandler rh; + + ResponseSource() { this = rh.getResponse() } + + override RouteHandler getRouteHandler() { result = rh } + } + + /** + * A chained response, such as `res.status(200)`, `res.type('html')`, or `res.set(...)`. + * + * These methods return the response object and are commonly chained before `send` or `json`. + */ + private class ChainedResponseSource extends Http::Servers::ResponseSource { + RouteHandler rh; + + ChainedResponseSource() { + exists(ResponseSource src | + this = src.ref().getAMethodCall(["status", "type", "set"]) and + rh = src.getRouteHandler() + ) + } + + override RouteHandler getRouteHandler() { result = rh } + } + + /** + * An access to user-controlled input on a Vercel request. + * + * Covers `req.query`, `req.body`, `req.cookies`, and `req.url` (inherited + * from Node's `IncomingMessage`). Named-header accesses like `req.headers.host` + * are handled by `RequestHeaderAccess` below. + */ + private class RequestInputAccess extends Http::RequestInputAccess { + RouteHandler rh; + string kind; + + RequestInputAccess() { + exists(RequestSource src | rh = src.getRouteHandler() | + this = src.ref().getAPropertyRead("query") and kind = "parameter" + or + this = src.ref().getAPropertyRead("body") and kind = "body" + or + this = src.ref().getAPropertyRead("cookies") and kind = "cookie" + or + this = src.ref().getAPropertyRead("url") and kind = "url" + ) + or + exists(RequestHeaderAccess access | this = access | + rh = access.getRouteHandler() and + kind = "header" + ) + } + + override RouteHandler getRouteHandler() { result = rh } + + override string getKind() { result = kind } + } + + /** + * An access to a named header on a Vercel request, for example + * `req.headers.host` or `req.headers.referer`. + */ + private class RequestHeaderAccess extends Http::RequestHeaderAccess { + RouteHandler rh; + + RequestHeaderAccess() { + exists(RequestSource src | + this = src.ref().getAPropertyRead("headers").getAPropertyRead() and + rh = src.getRouteHandler() + ) + } + + override string getAHeaderName() { + result = this.(DataFlow::PropRead).getPropertyName().toLowerCase() + } + + override RouteHandler getRouteHandler() { result = rh } + + override string getKind() { result = "header" } + } + + /** + * An argument to `res.send(...)` on a Vercel response, including chained + * calls such as `res.status(200).send(...)`. + */ + private class ResponseSendArgument extends Http::ResponseSendArgument { + RouteHandler rh; + + ResponseSendArgument() { + exists(Http::Servers::ResponseSource src | + (src instanceof ResponseSource or src instanceof ChainedResponseSource) and + this = src.ref().getAMethodCall("send").getArgument(0) and + rh = src.getRouteHandler() + ) + } + + override RouteHandler getRouteHandler() { result = rh } + } + + /** + * A call to `res.redirect(...)` on a Vercel response. + */ + private class RedirectInvocation extends Http::RedirectInvocation, DataFlow::MethodCallNode { + RouteHandler rh; + + RedirectInvocation() { + exists(ResponseSource src | + this = src.ref().getAMethodCall("redirect") and + rh = src.getRouteHandler() + ) + } + + override DataFlow::Node getUrlArgument() { result = this.getLastArgument() } + + override RouteHandler getRouteHandler() { result = rh } + } + + /** + * A call to `res.setHeader(name, value)` on a Vercel response. + */ + private class SetHeader extends Http::ExplicitHeaderDefinition, DataFlow::CallNode { + RouteHandler rh; + + SetHeader() { + exists(ResponseSource src | + this = src.ref().getAMethodCall("setHeader") and + rh = src.getRouteHandler() + ) + } + + override RouteHandler getRouteHandler() { result = rh } + + override predicate definesHeaderValue(string headerName, DataFlow::Node headerValue) { + headerName = this.getArgument(0).getStringValue().toLowerCase() and + headerValue = this.getArgument(1) + } + + override DataFlow::Node getNameNode() { result = this.getArgument(0) } + } +} diff --git a/javascript/ql/test/library-tests/frameworks/vercel/HeaderDefinition.qll b/javascript/ql/test/library-tests/frameworks/vercel/HeaderDefinition.qll new file mode 100644 index 000000000000..496ee6e32e81 --- /dev/null +++ b/javascript/ql/test/library-tests/frameworks/vercel/HeaderDefinition.qll @@ -0,0 +1,7 @@ +import javascript + +query predicate test_HeaderDefinition( + Http::HeaderDefinition hd, string name, VercelNode::RouteHandler rh +) { + hd.getRouteHandler() = rh and name = hd.getAHeaderName() +} diff --git a/javascript/ql/test/library-tests/frameworks/vercel/RedirectInvocation.qll b/javascript/ql/test/library-tests/frameworks/vercel/RedirectInvocation.qll new file mode 100644 index 000000000000..76e37d4a77f3 --- /dev/null +++ b/javascript/ql/test/library-tests/frameworks/vercel/RedirectInvocation.qll @@ -0,0 +1,7 @@ +import javascript + +query predicate test_RedirectInvocation( + Http::RedirectInvocation call, DataFlow::Node url, VercelNode::RouteHandler rh +) { + call.getRouteHandler() = rh and url = call.getUrlArgument() +} diff --git a/javascript/ql/test/library-tests/frameworks/vercel/RequestInputAccess.qll b/javascript/ql/test/library-tests/frameworks/vercel/RequestInputAccess.qll new file mode 100644 index 000000000000..ac91695d500d --- /dev/null +++ b/javascript/ql/test/library-tests/frameworks/vercel/RequestInputAccess.qll @@ -0,0 +1,7 @@ +import javascript + +query predicate test_RequestInputAccess( + Http::RequestInputAccess ria, string kind, VercelNode::RouteHandler rh +) { + ria.getRouteHandler() = rh and kind = ria.getKind() +} diff --git a/javascript/ql/test/library-tests/frameworks/vercel/RequestSource.qll b/javascript/ql/test/library-tests/frameworks/vercel/RequestSource.qll new file mode 100644 index 000000000000..a8bdcc010200 --- /dev/null +++ b/javascript/ql/test/library-tests/frameworks/vercel/RequestSource.qll @@ -0,0 +1,5 @@ +import javascript + +query predicate test_RequestSource(Http::Servers::RequestSource src, VercelNode::RouteHandler rh) { + src.getRouteHandler() = rh +} diff --git a/javascript/ql/test/library-tests/frameworks/vercel/ResponseSendArgument.qll b/javascript/ql/test/library-tests/frameworks/vercel/ResponseSendArgument.qll new file mode 100644 index 000000000000..7795e5cfb737 --- /dev/null +++ b/javascript/ql/test/library-tests/frameworks/vercel/ResponseSendArgument.qll @@ -0,0 +1,7 @@ +import javascript + +query predicate test_ResponseSendArgument( + Http::ResponseSendArgument arg, VercelNode::RouteHandler rh +) { + arg.getRouteHandler() = rh +} diff --git a/javascript/ql/test/library-tests/frameworks/vercel/ResponseSource.qll b/javascript/ql/test/library-tests/frameworks/vercel/ResponseSource.qll new file mode 100644 index 000000000000..3a734b02f139 --- /dev/null +++ b/javascript/ql/test/library-tests/frameworks/vercel/ResponseSource.qll @@ -0,0 +1,5 @@ +import javascript + +query predicate test_ResponseSource(Http::Servers::ResponseSource src, VercelNode::RouteHandler rh) { + src.getRouteHandler() = rh +} diff --git a/javascript/ql/test/library-tests/frameworks/vercel/RouteHandler.qll b/javascript/ql/test/library-tests/frameworks/vercel/RouteHandler.qll new file mode 100644 index 000000000000..a6ca13ec1e9a --- /dev/null +++ b/javascript/ql/test/library-tests/frameworks/vercel/RouteHandler.qll @@ -0,0 +1,3 @@ +import javascript + +query predicate test_RouteHandler(VercelNode::RouteHandler rh) { any() } diff --git a/javascript/ql/test/library-tests/frameworks/vercel/src/notahandler.ts b/javascript/ql/test/library-tests/frameworks/vercel/src/notahandler.ts new file mode 100644 index 000000000000..086673306b11 --- /dev/null +++ b/javascript/ql/test/library-tests/frameworks/vercel/src/notahandler.ts @@ -0,0 +1,8 @@ +import type { VercelRequest, VercelResponse } from "@vercel/node"; + +// A default-exported function that has VercelRequest/VercelResponse at +// positions 1 and 2, not 0 and 1. Vercel does not invoke it this way, +// so it must NOT be recognised as a route handler. +export default function notAHandler(ctx: unknown, req: VercelRequest, res: VercelResponse) { + res.send(req.query.name); +} diff --git a/javascript/ql/test/library-tests/frameworks/vercel/src/vercel.ts b/javascript/ql/test/library-tests/frameworks/vercel/src/vercel.ts new file mode 100644 index 000000000000..62ff97447724 --- /dev/null +++ b/javascript/ql/test/library-tests/frameworks/vercel/src/vercel.ts @@ -0,0 +1,27 @@ +import type { VercelRequest, VercelResponse } from "@vercel/node"; + +// A private helper with the same signature. Must NOT be recognised as a +// route handler, since Vercel only invokes the default export. +function internalHelper(req: VercelRequest, res: VercelResponse) { + res.send(req.query.name); +} + +export default function handler(req: VercelRequest, res: VercelResponse) { + // Request inputs + const q = req.query; // source: parameter + const b = req.body; // source: body + const c = req.cookies; // source: cookie + const u = req.url; // source: url (inherited from IncomingMessage) + const host = req.headers.host; // source: header (named) + const ref = req.headers.referer; // source: header (named) + + // Response header definition + res.setHeader("Content-Type", "text/html"); + + // Response send (direct and chained) + res.send(q); + res.status(200).send(b); + + // Redirect + res.redirect(req.query.url as string); +} diff --git a/javascript/ql/test/library-tests/frameworks/vercel/tests.expected b/javascript/ql/test/library-tests/frameworks/vercel/tests.expected new file mode 100644 index 000000000000..886ba9c5997c --- /dev/null +++ b/javascript/ql/test/library-tests/frameworks/vercel/tests.expected @@ -0,0 +1,22 @@ +test_RouteHandler +| src/vercel.ts:9:16:27:1 | functio ... ing);\\n} | +test_RequestSource +| src/vercel.ts:9:33:9:35 | req | src/vercel.ts:9:16:27:1 | functio ... ing);\\n} | +test_ResponseSource +| src/vercel.ts:9:53:9:55 | res | src/vercel.ts:9:16:27:1 | functio ... ing);\\n} | +| src/vercel.ts:23:3:23:17 | res.status(200) | src/vercel.ts:9:16:27:1 | functio ... ing);\\n} | +test_HeaderDefinition +| src/vercel.ts:19:3:19:44 | res.set ... /html") | content-type | src/vercel.ts:9:16:27:1 | functio ... ing);\\n} | +test_RedirectInvocation +| src/vercel.ts:26:3:26:39 | res.red ... string) | src/vercel.ts:26:16:26:38 | req.que ... string | src/vercel.ts:9:16:27:1 | functio ... ing);\\n} | +test_RequestInputAccess +| src/vercel.ts:11:13:11:21 | req.query | parameter | src/vercel.ts:9:16:27:1 | functio ... ing);\\n} | +| src/vercel.ts:12:13:12:20 | req.body | body | src/vercel.ts:9:16:27:1 | functio ... ing);\\n} | +| src/vercel.ts:13:13:13:23 | req.cookies | cookie | src/vercel.ts:9:16:27:1 | functio ... ing);\\n} | +| src/vercel.ts:14:13:14:19 | req.url | url | src/vercel.ts:9:16:27:1 | functio ... ing);\\n} | +| src/vercel.ts:15:16:15:31 | req.headers.host | header | src/vercel.ts:9:16:27:1 | functio ... ing);\\n} | +| src/vercel.ts:16:15:16:33 | req.headers.referer | header | src/vercel.ts:9:16:27:1 | functio ... ing);\\n} | +| src/vercel.ts:26:16:26:24 | req.query | parameter | src/vercel.ts:9:16:27:1 | functio ... ing);\\n} | +test_ResponseSendArgument +| src/vercel.ts:22:12:22:12 | q | src/vercel.ts:9:16:27:1 | functio ... ing);\\n} | +| src/vercel.ts:23:24:23:24 | b | src/vercel.ts:9:16:27:1 | functio ... ing);\\n} | diff --git a/javascript/ql/test/library-tests/frameworks/vercel/tests.ql b/javascript/ql/test/library-tests/frameworks/vercel/tests.ql new file mode 100644 index 000000000000..da4f5ff6c735 --- /dev/null +++ b/javascript/ql/test/library-tests/frameworks/vercel/tests.ql @@ -0,0 +1,7 @@ +import RouteHandler +import RequestSource +import ResponseSource +import RequestInputAccess +import HeaderDefinition +import ResponseSendArgument +import RedirectInvocation diff --git a/javascript/ql/test/query-tests/Security/CWE-078/CommandInjection/CommandInjection.expected b/javascript/ql/test/query-tests/Security/CWE-078/CommandInjection/CommandInjection.expected index f1d547bdfb1c..ddebc6baeaf3 100644 --- a/javascript/ql/test/query-tests/Security/CWE-078/CommandInjection/CommandInjection.expected +++ b/javascript/ql/test/query-tests/Security/CWE-078/CommandInjection/CommandInjection.expected @@ -110,6 +110,8 @@ | promisification.js:151:28:151:31 | code | promisification.js:141:18:141:25 | req.body | promisification.js:151:28:151:31 | code | This command line depends on a $@. | promisification.js:141:18:141:25 | req.body | user-provided value | | promisification.js:152:25:152:28 | code | promisification.js:141:18:141:25 | req.body | promisification.js:152:25:152:28 | code | This command line depends on a $@. | promisification.js:141:18:141:25 | req.body | user-provided value | | third-party-command-injection.js:6:21:6:27 | command | third-party-command-injection.js:5:20:5:26 | command | third-party-command-injection.js:6:21:6:27 | command | This command line depends on a $@. | third-party-command-injection.js:5:20:5:26 | command | user-provided value | +| vercel.ts:6:8:6:21 | "echo " + name | vercel.ts:5:16:5:24 | req.query | vercel.ts:6:8:6:21 | "echo " + name | This command line depends on a $@. | vercel.ts:5:16:5:24 | req.query | user-provided value | +| vercel.ts:6:8:6:21 | "echo " + name | vercel.ts:5:16:5:29 | req.query.name | vercel.ts:6:8:6:21 | "echo " + name | This command line depends on a $@. | vercel.ts:5:16:5:29 | req.query.name | user-provided value | edges | actions.js:8:9:8:13 | title | actions.js:9:16:9:20 | title | provenance | | | actions.js:8:17:8:57 | github. ... t.title | actions.js:8:9:8:13 | title | provenance | | @@ -340,6 +342,10 @@ edges | promisification.js:141:11:141:14 | code | promisification.js:152:25:152:28 | code | provenance | | | promisification.js:141:18:141:25 | req.body | promisification.js:141:11:141:14 | code | provenance | | | third-party-command-injection.js:5:20:5:26 | command | third-party-command-injection.js:6:21:6:27 | command | provenance | | +| vercel.ts:5:9:5:12 | name | vercel.ts:6:18:6:21 | name | provenance | | +| vercel.ts:5:16:5:24 | req.query | vercel.ts:5:9:5:12 | name | provenance | | +| vercel.ts:5:16:5:29 | req.query.name | vercel.ts:5:9:5:12 | name | provenance | | +| vercel.ts:6:18:6:21 | name | vercel.ts:6:8:6:21 | "echo " + name | provenance | | nodes | actions.js:8:9:8:13 | title | semmle.label | title | | actions.js:8:17:8:57 | github. ... t.title | semmle.label | github. ... t.title | @@ -591,6 +597,11 @@ nodes | promisification.js:152:25:152:28 | code | semmle.label | code | | third-party-command-injection.js:5:20:5:26 | command | semmle.label | command | | third-party-command-injection.js:6:21:6:27 | command | semmle.label | command | +| vercel.ts:5:9:5:12 | name | semmle.label | name | +| vercel.ts:5:16:5:24 | req.query | semmle.label | req.query | +| vercel.ts:5:16:5:29 | req.query.name | semmle.label | req.query.name | +| vercel.ts:6:8:6:21 | "echo " + name | semmle.label | "echo " + name | +| vercel.ts:6:18:6:21 | name | semmle.label | name | subpaths | promisification.js:116:32:116:34 | cmd | promisification.js:118:21:118:23 | cmd | promisification.js:117:29:117:35 | resolve [Return] [resolve-value] | promisification.js:117:16:119:10 | new Pro ... }) [PromiseValue] | | promisification.js:122:42:122:45 | code | promisification.js:116:32:116:34 | cmd | promisification.js:117:16:119:10 | new Pro ... }) [PromiseValue] | promisification.js:122:24:122:46 | createE ... e(code) [PromiseValue] | diff --git a/javascript/ql/test/query-tests/Security/CWE-078/CommandInjection/vercel.ts b/javascript/ql/test/query-tests/Security/CWE-078/CommandInjection/vercel.ts new file mode 100644 index 000000000000..73754cb88181 --- /dev/null +++ b/javascript/ql/test/query-tests/Security/CWE-078/CommandInjection/vercel.ts @@ -0,0 +1,9 @@ +import type { VercelRequest, VercelResponse } from "@vercel/node"; +import { exec } from "child_process"; + +export default function handler(req: VercelRequest, res: VercelResponse) { + const name = req.query.name as string; // $ Source + exec("echo " + name, (err, stdout) => { // $ Alert + res.send(stdout); + }); +} diff --git a/javascript/ql/test/query-tests/Security/CWE-079/ReflectedXss/ReflectedXss.expected b/javascript/ql/test/query-tests/Security/CWE-079/ReflectedXss/ReflectedXss.expected index bb92027f9f75..8ee7067977cd 100644 --- a/javascript/ql/test/query-tests/Security/CWE-079/ReflectedXss/ReflectedXss.expected +++ b/javascript/ql/test/query-tests/Security/CWE-079/ReflectedXss/ReflectedXss.expected @@ -74,6 +74,8 @@ | tst2.js:113:12:113:17 | unsafe | tst2.js:105:9:105:9 | p | tst2.js:113:12:113:17 | unsafe | Cross-site scripting vulnerability due to a $@. | tst2.js:105:9:105:9 | p | user-provided value | | tst3.js:6:12:6:12 | p | tst3.js:5:9:5:9 | p | tst3.js:6:12:6:12 | p | Cross-site scripting vulnerability due to a $@. | tst3.js:5:9:5:9 | p | user-provided value | | tst3.js:12:12:12:15 | code | tst3.js:11:32:11:39 | reg.body | tst3.js:12:12:12:15 | code | Cross-site scripting vulnerability due to a $@. | tst3.js:11:32:11:39 | reg.body | user-provided value | +| vercel.ts:5:24:5:51 | `

${ ... }

` | vercel.ts:5:31:5:39 | req.query | vercel.ts:5:24:5:51 | `

${ ... }

` | Cross-site scripting vulnerability due to a $@. | vercel.ts:5:31:5:39 | req.query | user-provided value | +| vercel.ts:5:24:5:51 | `

${ ... }

` | vercel.ts:5:31:5:44 | req.query.name | vercel.ts:5:24:5:51 | `

${ ... }

` | Cross-site scripting vulnerability due to a $@. | vercel.ts:5:31:5:44 | req.query.name | user-provided value | edges | ReflectedXss.js:7:33:7:45 | req.params.id | ReflectedXss.js:7:14:7:45 | "Unknow ... rams.id | provenance | | | ReflectedXss.js:16:31:16:39 | params.id | ReflectedXss.js:16:12:16:39 | "Unknow ... rams.id | provenance | | @@ -259,6 +261,8 @@ edges | tst3.js:11:9:11:12 | code | tst3.js:12:12:12:15 | code | provenance | | | tst3.js:11:16:11:74 | prettie ... bel" }) | tst3.js:11:9:11:12 | code | provenance | | | tst3.js:11:32:11:39 | reg.body | tst3.js:11:16:11:74 | prettie ... bel" }) | provenance | | +| vercel.ts:5:31:5:39 | req.query | vercel.ts:5:24:5:51 | `

${ ... }

` | provenance | | +| vercel.ts:5:31:5:44 | req.query.name | vercel.ts:5:24:5:51 | `

${ ... }

` | provenance | | nodes | ReflectedXss.js:7:14:7:45 | "Unknow ... rams.id | semmle.label | "Unknow ... rams.id | | ReflectedXss.js:7:33:7:45 | req.params.id | semmle.label | req.params.id | @@ -497,5 +501,8 @@ nodes | tst3.js:11:16:11:74 | prettie ... bel" }) | semmle.label | prettie ... bel" }) | | tst3.js:11:32:11:39 | reg.body | semmle.label | reg.body | | tst3.js:12:12:12:15 | code | semmle.label | code | +| vercel.ts:5:24:5:51 | `

${ ... }

` | semmle.label | `

${ ... }

` | +| vercel.ts:5:31:5:39 | req.query | semmle.label | req.query | +| vercel.ts:5:31:5:44 | req.query.name | semmle.label | req.query.name | subpaths | ReflectedXssGood3.js:139:24:139:26 | url | ReflectedXssGood3.js:68:22:68:26 | value | ReflectedXssGood3.js:108:10:108:23 | parts.join('') | ReflectedXssGood3.js:139:12:139:27 | escapeHtml3(url) | diff --git a/javascript/ql/test/query-tests/Security/CWE-079/ReflectedXss/ReflectedXssWithCustomSanitizer.expected b/javascript/ql/test/query-tests/Security/CWE-079/ReflectedXss/ReflectedXssWithCustomSanitizer.expected index fa2886fb0cd3..a538fcd8ee70 100644 --- a/javascript/ql/test/query-tests/Security/CWE-079/ReflectedXss/ReflectedXssWithCustomSanitizer.expected +++ b/javascript/ql/test/query-tests/Security/CWE-079/ReflectedXss/ReflectedXssWithCustomSanitizer.expected @@ -72,3 +72,5 @@ | tst2.js:113:12:113:17 | unsafe | Cross-site scripting vulnerability due to $@. | tst2.js:105:9:105:9 | p | user-provided value | | tst3.js:6:12:6:12 | p | Cross-site scripting vulnerability due to $@. | tst3.js:5:9:5:9 | p | user-provided value | | tst3.js:12:12:12:15 | code | Cross-site scripting vulnerability due to $@. | tst3.js:11:32:11:39 | reg.body | user-provided value | +| vercel.ts:5:24:5:51 | `

${ ... }

` | Cross-site scripting vulnerability due to $@. | vercel.ts:5:31:5:39 | req.query | user-provided value | +| vercel.ts:5:24:5:51 | `

${ ... }

` | Cross-site scripting vulnerability due to $@. | vercel.ts:5:31:5:44 | req.query.name | user-provided value | diff --git a/javascript/ql/test/query-tests/Security/CWE-079/ReflectedXss/vercel.ts b/javascript/ql/test/query-tests/Security/CWE-079/ReflectedXss/vercel.ts new file mode 100644 index 000000000000..dbd90171444d --- /dev/null +++ b/javascript/ql/test/query-tests/Security/CWE-079/ReflectedXss/vercel.ts @@ -0,0 +1,6 @@ +import type { VercelRequest, VercelResponse } from "@vercel/node"; + +export default function handler(req: VercelRequest, res: VercelResponse) { + res.setHeader("Content-Type", "text/html"); + res.status(200).send(`

${req.query.name}

`); // $ Alert +} diff --git a/javascript/ql/test/query-tests/Security/CWE-089/untyped/SqlInjection.expected b/javascript/ql/test/query-tests/Security/CWE-089/untyped/SqlInjection.expected index f28fb93238d9..17d280d38096 100644 --- a/javascript/ql/test/query-tests/Security/CWE-089/untyped/SqlInjection.expected +++ b/javascript/ql/test/query-tests/Security/CWE-089/untyped/SqlInjection.expected @@ -156,6 +156,8 @@ | tst3.js:9:14:9:19 | query1 | tst3.js:8:16:8:34 | req.params.category | tst3.js:9:14:9:19 | query1 | This query string depends on a $@. | tst3.js:8:16:8:34 | req.params.category | user-provided value | | tst4.js:8:10:8:66 | 'SELECT ... d + '"' | tst4.js:8:46:8:60 | $routeParams.id | tst4.js:8:10:8:66 | 'SELECT ... d + '"' | This query string depends on a $@. | tst4.js:8:46:8:60 | $routeParams.id | user-provided value | | tst.js:10:10:10:64 | 'SELECT ... d + '"' | tst.js:10:46:10:58 | req.params.id | tst.js:10:10:10:64 | 'SELECT ... d + '"' | This query string depends on a $@. | tst.js:10:46:10:58 | req.params.id | user-provided value | +| vercel.ts:7:14:7:51 | "SELECT ... " + id | vercel.ts:6:14:6:22 | req.query | vercel.ts:7:14:7:51 | "SELECT ... " + id | This query string depends on a $@. | vercel.ts:6:14:6:22 | req.query | user-provided value | +| vercel.ts:7:14:7:51 | "SELECT ... " + id | vercel.ts:6:14:6:25 | req.query.id | vercel.ts:7:14:7:51 | "SELECT ... " + id | This query string depends on a $@. | vercel.ts:6:14:6:25 | req.query.id | user-provided value | edges | athena.js:9:11:9:19 | userQuery | athena.js:14:30:14:38 | userQuery | provenance | | | athena.js:9:11:9:19 | userQuery | athena.js:24:22:24:30 | userQuery | provenance | | @@ -620,6 +622,10 @@ edges | tst3.js:8:16:8:34 | req.params.category | tst3.js:7:7:7:12 | query1 | provenance | | | tst4.js:8:46:8:60 | $routeParams.id | tst4.js:8:10:8:66 | 'SELECT ... d + '"' | provenance | | | tst.js:10:46:10:58 | req.params.id | tst.js:10:10:10:64 | 'SELECT ... d + '"' | provenance | | +| vercel.ts:6:9:6:10 | id | vercel.ts:7:50:7:51 | id | provenance | | +| vercel.ts:6:14:6:22 | req.query | vercel.ts:6:9:6:10 | id | provenance | | +| vercel.ts:6:14:6:25 | req.query.id | vercel.ts:6:9:6:10 | id | provenance | | +| vercel.ts:7:50:7:51 | id | vercel.ts:7:14:7:51 | "SELECT ... " + id | provenance | | nodes | athena.js:9:11:9:19 | userQuery | semmle.label | userQuery | | athena.js:9:23:9:30 | req.body | semmle.label | req.body | @@ -1029,4 +1035,9 @@ nodes | tst4.js:8:46:8:60 | $routeParams.id | semmle.label | $routeParams.id | | tst.js:10:10:10:64 | 'SELECT ... d + '"' | semmle.label | 'SELECT ... d + '"' | | tst.js:10:46:10:58 | req.params.id | semmle.label | req.params.id | +| vercel.ts:6:9:6:10 | id | semmle.label | id | +| vercel.ts:6:14:6:22 | req.query | semmle.label | req.query | +| vercel.ts:6:14:6:25 | req.query.id | semmle.label | req.query.id | +| vercel.ts:7:14:7:51 | "SELECT ... " + id | semmle.label | "SELECT ... " + id | +| vercel.ts:7:50:7:51 | id | semmle.label | id | subpaths diff --git a/javascript/ql/test/query-tests/Security/CWE-089/untyped/vercel.ts b/javascript/ql/test/query-tests/Security/CWE-089/untyped/vercel.ts new file mode 100644 index 000000000000..b511f107747f --- /dev/null +++ b/javascript/ql/test/query-tests/Security/CWE-089/untyped/vercel.ts @@ -0,0 +1,10 @@ +import type { VercelRequest, VercelResponse } from "@vercel/node"; +const mysql = require("mysql"); +const conn = mysql.createConnection({}); + +export default function handler(req: VercelRequest, res: VercelResponse) { + const id = req.query.id as string; // $ Source + conn.query("SELECT * FROM users WHERE id = " + id, (err: any, rows: any) => { // $ Alert + res.json(rows); + }); +} diff --git a/javascript/ql/test/query-tests/Security/CWE-918/RequestForgery.expected b/javascript/ql/test/query-tests/Security/CWE-918/RequestForgery.expected index 79383f585215..b3d939a30c5f 100644 --- a/javascript/ql/test/query-tests/Security/CWE-918/RequestForgery.expected +++ b/javascript/ql/test/query-tests/Security/CWE-918/RequestForgery.expected @@ -40,6 +40,8 @@ | serverSide.js:145:5:145:25 | axios.g ... dedUrl) | serverSide.js:139:19:139:31 | req.query.url | serverSide.js:145:15:145:24 | encodedUrl | The $@ of this request depends on a $@. | serverSide.js:145:15:145:24 | encodedUrl | URL | serverSide.js:139:19:139:31 | req.query.url | user-provided value | | serverSide.js:147:5:147:25 | axios.g ... pedUrl) | serverSide.js:139:19:139:31 | req.query.url | serverSide.js:147:15:147:24 | escapedUrl | The $@ of this request depends on a $@. | serverSide.js:147:15:147:24 | escapedUrl | URL | serverSide.js:139:19:139:31 | req.query.url | user-provided value | | serverSide.js:151:1:151:15 | request(custom) | serverSide.js:150:16:150:51 | require ... ource() | serverSide.js:151:9:151:14 | custom | The $@ of this request depends on a $@. | serverSide.js:151:9:151:14 | custom | URL | serverSide.js:150:16:150:51 | require ... ource() | user-provided value | +| vercel.ts:5:26:5:35 | fetch(url) | vercel.ts:4:15:4:23 | req.query | vercel.ts:5:32:5:34 | url | The $@ of this request depends on a $@. | vercel.ts:5:32:5:34 | url | URL | vercel.ts:4:15:4:23 | req.query | user-provided value | +| vercel.ts:5:26:5:35 | fetch(url) | vercel.ts:4:15:4:27 | req.query.url | vercel.ts:5:32:5:34 | url | The $@ of this request depends on a $@. | vercel.ts:5:32:5:34 | url | URL | vercel.ts:4:15:4:27 | req.query.url | user-provided value | edges | Request/app/api/proxy/route2.serverSide.ts:4:9:4:15 | { url } | Request/app/api/proxy/route2.serverSide.ts:4:11:4:13 | url | provenance | | | Request/app/api/proxy/route2.serverSide.ts:4:11:4:13 | url | Request/app/api/proxy/route2.serverSide.ts:5:27:5:29 | url | provenance | | @@ -147,6 +149,9 @@ edges | serverSide.js:146:31:146:35 | input | serverSide.js:146:24:146:36 | escape(input) | provenance | | | serverSide.js:150:7:150:12 | custom | serverSide.js:151:9:151:14 | custom | provenance | | | serverSide.js:150:16:150:51 | require ... ource() | serverSide.js:150:7:150:12 | custom | provenance | | +| vercel.ts:4:9:4:11 | url | vercel.ts:5:32:5:34 | url | provenance | | +| vercel.ts:4:15:4:23 | req.query | vercel.ts:4:9:4:11 | url | provenance | | +| vercel.ts:4:15:4:27 | req.query.url | vercel.ts:4:9:4:11 | url | provenance | | nodes | Request/app/api/proxy/route2.serverSide.ts:4:9:4:15 | { url } | semmle.label | { url } | | Request/app/api/proxy/route2.serverSide.ts:4:11:4:13 | url | semmle.label | url | @@ -277,4 +282,8 @@ nodes | serverSide.js:150:7:150:12 | custom | semmle.label | custom | | serverSide.js:150:16:150:51 | require ... ource() | semmle.label | require ... ource() | | serverSide.js:151:9:151:14 | custom | semmle.label | custom | +| vercel.ts:4:9:4:11 | url | semmle.label | url | +| vercel.ts:4:15:4:23 | req.query | semmle.label | req.query | +| vercel.ts:4:15:4:27 | req.query.url | semmle.label | req.query.url | +| vercel.ts:5:32:5:34 | url | semmle.label | url | subpaths diff --git a/javascript/ql/test/query-tests/Security/CWE-918/vercel.ts b/javascript/ql/test/query-tests/Security/CWE-918/vercel.ts new file mode 100644 index 000000000000..e383088489dc --- /dev/null +++ b/javascript/ql/test/query-tests/Security/CWE-918/vercel.ts @@ -0,0 +1,7 @@ +import type { VercelRequest, VercelResponse } from "@vercel/node"; + +export default async function handler(req: VercelRequest, res: VercelResponse) { + const url = req.query.url as string; // $ Source[js/request-forgery] + const response = await fetch(url); // $ Alert[js/request-forgery] + res.json(await response.json()); +} From cff07342f5cbd5a3658be054e764b79ddac21bd4 Mon Sep 17 00:00:00 2001 From: murderteeth Date: Mon, 13 Apr 2026 17:31:29 +0000 Subject: [PATCH 006/260] Recognize legacy @now/node type aliases Extends the Vercel serverless handler detection to also match the deprecated Zeit-era @now/node package with NowRequest/NowResponse types. Per-review feedback from asgerf, these aliases still appear in real-world code. Co-Authored-By: Claude Opus 4.6 (1M context) --- .../ql/lib/semmle/javascript/frameworks/VercelNode.qll | 4 ++-- .../ql/test/library-tests/frameworks/vercel/src/now.ts | 7 +++++++ .../ql/test/library-tests/frameworks/vercel/tests.expected | 5 +++++ 3 files changed, 14 insertions(+), 2 deletions(-) create mode 100644 javascript/ql/test/library-tests/frameworks/vercel/src/now.ts diff --git a/javascript/ql/lib/semmle/javascript/frameworks/VercelNode.qll b/javascript/ql/lib/semmle/javascript/frameworks/VercelNode.qll index 233f103825c6..e31d40dcf9a6 100644 --- a/javascript/ql/lib/semmle/javascript/frameworks/VercelNode.qll +++ b/javascript/ql/lib/semmle/javascript/frameworks/VercelNode.qll @@ -32,8 +32,8 @@ module VercelNode { this = any(Module m).getAnExportedValue("default").getAFunctionValue() and req = this.getParameter(0) and res = this.getParameter(1) and - req.hasUnderlyingType("@vercel/node", "VercelRequest") and - res.hasUnderlyingType("@vercel/node", "VercelResponse") + req.hasUnderlyingType(["@vercel/node", "@now/node"], ["NowRequest", "VercelRequest"]) and + res.hasUnderlyingType(["@vercel/node", "@now/node"], ["NowResponse", "VercelResponse"]) } /** Gets the parameter that contains the request object. */ diff --git a/javascript/ql/test/library-tests/frameworks/vercel/src/now.ts b/javascript/ql/test/library-tests/frameworks/vercel/src/now.ts new file mode 100644 index 000000000000..a8ac7020408c --- /dev/null +++ b/javascript/ql/test/library-tests/frameworks/vercel/src/now.ts @@ -0,0 +1,7 @@ +import type { NowRequest, NowResponse } from "@now/node"; + +// Legacy Zeit-era aliases. The model should treat these identically to +// the modern @vercel/node NowRequest -> VercelRequest, NowResponse -> VercelResponse. +export default function handler(req: NowRequest, res: NowResponse) { + res.send(req.query.name); +} diff --git a/javascript/ql/test/library-tests/frameworks/vercel/tests.expected b/javascript/ql/test/library-tests/frameworks/vercel/tests.expected index 886ba9c5997c..a2929999f235 100644 --- a/javascript/ql/test/library-tests/frameworks/vercel/tests.expected +++ b/javascript/ql/test/library-tests/frameworks/vercel/tests.expected @@ -1,8 +1,11 @@ test_RouteHandler +| src/now.ts:5:16:7:1 | functio ... ame);\\n} | | src/vercel.ts:9:16:27:1 | functio ... ing);\\n} | test_RequestSource +| src/now.ts:5:33:5:35 | req | src/now.ts:5:16:7:1 | functio ... ame);\\n} | | src/vercel.ts:9:33:9:35 | req | src/vercel.ts:9:16:27:1 | functio ... ing);\\n} | test_ResponseSource +| src/now.ts:5:50:5:52 | res | src/now.ts:5:16:7:1 | functio ... ame);\\n} | | src/vercel.ts:9:53:9:55 | res | src/vercel.ts:9:16:27:1 | functio ... ing);\\n} | | src/vercel.ts:23:3:23:17 | res.status(200) | src/vercel.ts:9:16:27:1 | functio ... ing);\\n} | test_HeaderDefinition @@ -10,6 +13,7 @@ test_HeaderDefinition test_RedirectInvocation | src/vercel.ts:26:3:26:39 | res.red ... string) | src/vercel.ts:26:16:26:38 | req.que ... string | src/vercel.ts:9:16:27:1 | functio ... ing);\\n} | test_RequestInputAccess +| src/now.ts:6:12:6:20 | req.query | parameter | src/now.ts:5:16:7:1 | functio ... ame);\\n} | | src/vercel.ts:11:13:11:21 | req.query | parameter | src/vercel.ts:9:16:27:1 | functio ... ing);\\n} | | src/vercel.ts:12:13:12:20 | req.body | body | src/vercel.ts:9:16:27:1 | functio ... ing);\\n} | | src/vercel.ts:13:13:13:23 | req.cookies | cookie | src/vercel.ts:9:16:27:1 | functio ... ing);\\n} | @@ -18,5 +22,6 @@ test_RequestInputAccess | src/vercel.ts:16:15:16:33 | req.headers.referer | header | src/vercel.ts:9:16:27:1 | functio ... ing);\\n} | | src/vercel.ts:26:16:26:24 | req.query | parameter | src/vercel.ts:9:16:27:1 | functio ... ing);\\n} | test_ResponseSendArgument +| src/now.ts:6:12:6:25 | req.query.name | src/now.ts:5:16:7:1 | functio ... ame);\\n} | | src/vercel.ts:22:12:22:12 | q | src/vercel.ts:9:16:27:1 | functio ... ing);\\n} | | src/vercel.ts:23:24:23:24 | b | src/vercel.ts:9:16:27:1 | functio ... ing);\\n} | From 47915328e6c91cfd3dfe411d83b7e44ba44d7e02 Mon Sep 17 00:00:00 2001 From: murderteeth Date: Mon, 13 Apr 2026 17:35:08 +0000 Subject: [PATCH 007/260] Address Copilot review nits Fixes US spelling (recognised -> recognized) across docs, QLDoc, change note, and test fixture comments. Clarifies the handler QLDoc to note sync/async support. Renames the supported-frameworks entry from "vercel" to "Vercel (@vercel/node)" to avoid implying broader platform coverage. Co-Authored-By: Claude Opus 4.6 (1M context) --- docs/codeql/reusables/supported-frameworks.rst | 2 +- javascript/ql/lib/change-notes/2026-04-12-vercel-node.md | 2 +- .../ql/lib/semmle/javascript/frameworks/VercelNode.qll | 9 +++++---- .../library-tests/frameworks/vercel/src/notahandler.ts | 2 +- .../ql/test/library-tests/frameworks/vercel/src/now.ts | 2 +- .../test/library-tests/frameworks/vercel/src/vercel.ts | 2 +- 6 files changed, 10 insertions(+), 9 deletions(-) diff --git a/docs/codeql/reusables/supported-frameworks.rst b/docs/codeql/reusables/supported-frameworks.rst index 581f34f92271..930cdc6b629a 100644 --- a/docs/codeql/reusables/supported-frameworks.rst +++ b/docs/codeql/reusables/supported-frameworks.rst @@ -197,7 +197,7 @@ and the CodeQL library pack ``codeql/javascript-all`` (`changelog void`, where - * the types are imported from the `@vercel/node` package. The Vercel runtime - * invokes the default export for every incoming HTTP request. + * taking parameters `(req: VercelRequest, res: VercelResponse)`, where the + * types are imported from the `@vercel/node` package. The default export may + * be synchronous or `async`, and the Vercel runtime invokes it for every + * incoming HTTP request. */ module VercelNode { /** @@ -20,7 +21,7 @@ module VercelNode { * `VercelResponse` from `@vercel/node`. * * Since `@vercel/node` is commonly imported as a type-only import, handlers - * are recognised by their TypeScript parameter types. The default-export + * are recognized by their TypeScript parameter types. The default-export * constraint excludes private helpers or test utilities that share the * same signature. */ diff --git a/javascript/ql/test/library-tests/frameworks/vercel/src/notahandler.ts b/javascript/ql/test/library-tests/frameworks/vercel/src/notahandler.ts index 086673306b11..7bb1d903a84c 100644 --- a/javascript/ql/test/library-tests/frameworks/vercel/src/notahandler.ts +++ b/javascript/ql/test/library-tests/frameworks/vercel/src/notahandler.ts @@ -2,7 +2,7 @@ import type { VercelRequest, VercelResponse } from "@vercel/node"; // A default-exported function that has VercelRequest/VercelResponse at // positions 1 and 2, not 0 and 1. Vercel does not invoke it this way, -// so it must NOT be recognised as a route handler. +// so it must NOT be recognized as a route handler. export default function notAHandler(ctx: unknown, req: VercelRequest, res: VercelResponse) { res.send(req.query.name); } diff --git a/javascript/ql/test/library-tests/frameworks/vercel/src/now.ts b/javascript/ql/test/library-tests/frameworks/vercel/src/now.ts index a8ac7020408c..33a34d47e2a9 100644 --- a/javascript/ql/test/library-tests/frameworks/vercel/src/now.ts +++ b/javascript/ql/test/library-tests/frameworks/vercel/src/now.ts @@ -1,7 +1,7 @@ import type { NowRequest, NowResponse } from "@now/node"; // Legacy Zeit-era aliases. The model should treat these identically to -// the modern @vercel/node NowRequest -> VercelRequest, NowResponse -> VercelResponse. +// the modern @vercel/node types (NowRequest -> VercelRequest, NowResponse -> VercelResponse). export default function handler(req: NowRequest, res: NowResponse) { res.send(req.query.name); } diff --git a/javascript/ql/test/library-tests/frameworks/vercel/src/vercel.ts b/javascript/ql/test/library-tests/frameworks/vercel/src/vercel.ts index 62ff97447724..0dae664e2c44 100644 --- a/javascript/ql/test/library-tests/frameworks/vercel/src/vercel.ts +++ b/javascript/ql/test/library-tests/frameworks/vercel/src/vercel.ts @@ -1,6 +1,6 @@ import type { VercelRequest, VercelResponse } from "@vercel/node"; -// A private helper with the same signature. Must NOT be recognised as a +// A private helper with the same signature. Must NOT be recognized as a // route handler, since Vercel only invokes the default export. function internalHelper(req: VercelRequest, res: VercelResponse) { res.send(req.query.name); From 1233d81523e40bec36476573ac2b4dcbcd82dc85 Mon Sep 17 00:00:00 2001 From: Kristen Newbury Date: Wed, 15 Apr 2026 14:11:17 -0400 Subject: [PATCH 008/260] Improve actions/ql/src/Security/CWE-829/UntrustedCheckoutX queries --- actions/ql/lib/ext/config/poisonable_steps.yml | 4 ++-- .../src/Security/CWE-094/CodeInjectionMedium.ql | 17 +++++++++++------ .../CWE-829/UntrustedCheckoutCritical.md | 3 ++- .../CWE-829/UntrustedCheckoutCritical.ql | 2 +- .../Security/CWE-829/UntrustedCheckoutHigh.md | 3 ++- .../Security/CWE-829/UntrustedCheckoutHigh.ql | 2 +- .../Security/CWE-829/UntrustedCheckoutMedium.md | 3 ++- ...026-04-15-untrusted-checkout-improvements.md | 6 ++++++ 8 files changed, 27 insertions(+), 13 deletions(-) create mode 100644 actions/ql/src/change-notes/2026-04-15-untrusted-checkout-improvements.md diff --git a/actions/ql/lib/ext/config/poisonable_steps.yml b/actions/ql/lib/ext/config/poisonable_steps.yml index 3c1aec70a240..d15b8d7a6a5f 100644 --- a/actions/ql/lib/ext/config/poisonable_steps.yml +++ b/actions/ql/lib/ext/config/poisonable_steps.yml @@ -70,7 +70,7 @@ extensions: - ["(source|sh|bash|zsh|fish)\\s+([^\\s]+)\\b", 2] - ["(node)\\s+([^\\s]+)(\\.js|\\.ts)\\b", 2] - ["(python[\\d\\.]*)\\s+([^\\s]+)\\.py\\b", 2] + - ["(python[\\d\\.]*)\\s+([\\-m]+)\\s+(\\w+)\\b", 2] # eg: pythonX -m anything(dir or file) - ["(ruby)\\s+([^\\s]+)\\.rb\\b", 2] - - ["(go)\\s+(generate|run)\\s+([^\\s]+)\\.go\\b", 3] + - ["(go)\\s+(generate|run)\\s+([^\\s]+)", 3] - ["(dotnet)\\s+([^\\s]+)\\.csproj\\b", 2] - diff --git a/actions/ql/src/Security/CWE-094/CodeInjectionMedium.ql b/actions/ql/src/Security/CWE-094/CodeInjectionMedium.ql index 8bc3fe8f51ad..22ab430105a3 100644 --- a/actions/ql/src/Security/CWE-094/CodeInjectionMedium.ql +++ b/actions/ql/src/Security/CWE-094/CodeInjectionMedium.ql @@ -2,7 +2,7 @@ * @name Code injection * @description Interpreting unsanitized user input as code allows a malicious user to perform arbitrary * code execution. - * @kind path-problem + * @ kind path-problem * @problem.severity warning * @security-severity 5.0 * @precision medium @@ -18,8 +18,13 @@ import actions import codeql.actions.security.CodeInjectionQuery import CodeInjectionFlow::PathGraph -from CodeInjectionFlow::PathNode source, CodeInjectionFlow::PathNode sink -where mediumSeverityCodeInjection(source, sink) -select sink.getNode(), source, sink, - "Potential code injection in $@, which may be controlled by an external user.", sink, - sink.getNode().asExpr().(Expression).getRawExpression() +// from CodeInjectionFlow::PathNode source, CodeInjectionFlow::PathNode sink +// where mediumSeverityCodeInjection(source, sink) +// select sink.getNode(), source, sink, +// "Potential code injection in $@, which may be controlled by an external user.", sink, +// sink.getNode().asExpr().(Expression).getRawExpression() +from string test +where + test.regexpMatch("(python[\\d\\.]*)\\s+([^\\s]+)\\.py\\b") and + test = "python -m dir" //go run main/main.go //go run . +select test diff --git a/actions/ql/src/Security/CWE-829/UntrustedCheckoutCritical.md b/actions/ql/src/Security/CWE-829/UntrustedCheckoutCritical.md index 6060354b134a..246e302e85b8 100644 --- a/actions/ql/src/Security/CWE-829/UntrustedCheckoutCritical.md +++ b/actions/ql/src/Security/CWE-829/UntrustedCheckoutCritical.md @@ -1,6 +1,6 @@ ## Overview -GitHub workflows can be triggered through various repository events, including incoming pull requests (PRs) or comments on Issues/PRs. A potentially dangerous misuse of the triggers such as `pull_request_target` or `issue_comment` followed by an explicit checkout of untrusted code (Pull Request HEAD) may lead to repository compromise if untrusted code gets executed (e.g., due to a modified build script) in a privileged job. +GitHub workflows can be triggered through various repository events, including incoming pull requests (PRs) or comments on Issues/PRs. A dangerous misuse of event triggers such as `pull_request_target` or `issue_comment` followed by an explicit checkout of untrusted input from the PR may lead to repository compromise if untrusted code gets executed in a privileged job. Untrusted code may get executed due to a modified build script, workflow injection, or registry hijacking. **Carefully review** whether least privileges is used and whether input is taken from untrusted sources. ## Recommendation @@ -133,3 +133,4 @@ jobs: ## References - GitHub Security Lab Research: [Keeping your GitHub Actions and workflows secure Part 1: Preventing pwn requests](https://securitylab.github.com/research/github-actions-preventing-pwn-requests/). +- Living Off the Pipeline: [LOTP](https://boostsecurityio.github.io/lotp/). \ No newline at end of file diff --git a/actions/ql/src/Security/CWE-829/UntrustedCheckoutCritical.ql b/actions/ql/src/Security/CWE-829/UntrustedCheckoutCritical.ql index ad79a1ce776f..8e8882f9cf5f 100644 --- a/actions/ql/src/Security/CWE-829/UntrustedCheckoutCritical.ql +++ b/actions/ql/src/Security/CWE-829/UntrustedCheckoutCritical.ql @@ -51,5 +51,5 @@ where event.getName() = checkoutTriggers() and not exists(ControlCheck check | check.protects(checkout, event, "untrusted-checkout")) and not exists(ControlCheck check | check.protects(poisonable, event, "untrusted-checkout")) -select poisonable, checkout, poisonable, +select checkout, checkout, poisonable, "Potential execution of untrusted code on a privileged workflow ($@)", event, event.getName() diff --git a/actions/ql/src/Security/CWE-829/UntrustedCheckoutHigh.md b/actions/ql/src/Security/CWE-829/UntrustedCheckoutHigh.md index 6060354b134a..f412421b7f1d 100644 --- a/actions/ql/src/Security/CWE-829/UntrustedCheckoutHigh.md +++ b/actions/ql/src/Security/CWE-829/UntrustedCheckoutHigh.md @@ -1,6 +1,6 @@ ## Overview -GitHub workflows can be triggered through various repository events, including incoming pull requests (PRs) or comments on Issues/PRs. A potentially dangerous misuse of the triggers such as `pull_request_target` or `issue_comment` followed by an explicit checkout of untrusted code (Pull Request HEAD) may lead to repository compromise if untrusted code gets executed (e.g., due to a modified build script) in a privileged job. +GitHub workflows can be triggered through various repository events, including incoming pull requests (PRs) or comments on Issues/PRs. A dangerous misuse of event triggers such as `pull_request_target` or `issue_comment` followed by an explicit checkout of untrusted input from the PR may lead to repository compromise if untrusted code gets executed in a privileged job. Untrusted code may get executed due to a modified build script, workflow injection, or registry hijacking. **Carefully review** whether least privileges is used and whether input is taken from untrusted sources. ## Recommendation @@ -133,3 +133,4 @@ jobs: ## References - GitHub Security Lab Research: [Keeping your GitHub Actions and workflows secure Part 1: Preventing pwn requests](https://securitylab.github.com/research/github-actions-preventing-pwn-requests/). +- Living Off the Pipeline: [LOTP](https://boostsecurityio.github.io/lotp/). \ No newline at end of file diff --git a/actions/ql/src/Security/CWE-829/UntrustedCheckoutHigh.ql b/actions/ql/src/Security/CWE-829/UntrustedCheckoutHigh.ql index 98b9aee33f77..5c2d4b3d56c8 100644 --- a/actions/ql/src/Security/CWE-829/UntrustedCheckoutHigh.ql +++ b/actions/ql/src/Security/CWE-829/UntrustedCheckoutHigh.ql @@ -1,5 +1,5 @@ /** - * @name Checkout of untrusted code in trusted context + * @name Checkout of untrusted code in privileged context without privileged context use * @description Privileged workflows have read/write access to the base repository and access to secrets. * By explicitly checking out and running the build script from a fork the untrusted code is running in an environment * that is able to push to the base repository and to access secrets. diff --git a/actions/ql/src/Security/CWE-829/UntrustedCheckoutMedium.md b/actions/ql/src/Security/CWE-829/UntrustedCheckoutMedium.md index 6060354b134a..246e302e85b8 100644 --- a/actions/ql/src/Security/CWE-829/UntrustedCheckoutMedium.md +++ b/actions/ql/src/Security/CWE-829/UntrustedCheckoutMedium.md @@ -1,6 +1,6 @@ ## Overview -GitHub workflows can be triggered through various repository events, including incoming pull requests (PRs) or comments on Issues/PRs. A potentially dangerous misuse of the triggers such as `pull_request_target` or `issue_comment` followed by an explicit checkout of untrusted code (Pull Request HEAD) may lead to repository compromise if untrusted code gets executed (e.g., due to a modified build script) in a privileged job. +GitHub workflows can be triggered through various repository events, including incoming pull requests (PRs) or comments on Issues/PRs. A dangerous misuse of event triggers such as `pull_request_target` or `issue_comment` followed by an explicit checkout of untrusted input from the PR may lead to repository compromise if untrusted code gets executed in a privileged job. Untrusted code may get executed due to a modified build script, workflow injection, or registry hijacking. **Carefully review** whether least privileges is used and whether input is taken from untrusted sources. ## Recommendation @@ -133,3 +133,4 @@ jobs: ## References - GitHub Security Lab Research: [Keeping your GitHub Actions and workflows secure Part 1: Preventing pwn requests](https://securitylab.github.com/research/github-actions-preventing-pwn-requests/). +- Living Off the Pipeline: [LOTP](https://boostsecurityio.github.io/lotp/). \ No newline at end of file diff --git a/actions/ql/src/change-notes/2026-04-15-untrusted-checkout-improvements.md b/actions/ql/src/change-notes/2026-04-15-untrusted-checkout-improvements.md new file mode 100644 index 000000000000..ef16e84e2c21 --- /dev/null +++ b/actions/ql/src/change-notes/2026-04-15-untrusted-checkout-improvements.md @@ -0,0 +1,6 @@ +--- +category: majorAnalysis +--- +* Fixed help file descriptions for queries: `actions/untrusted-checkout/critical`, `actions/untrusted-checkout/high`, `actions/untrusted-checkout/medium`. Previously the messages were unclear as to why and how the vulnerabilities could occur. Additionally alter 2 patterns in the detection such that now extra sinks are detected in the following cases: scripts executed via python modules and `go run` in directories are detected as potential mechanisms of injection. This may lead to more results being detected by all 3 queries. +* Adjusted `actions/untrusted-checkout/critical` to align more with other untrusted resource queries, where the alert location is the location where the artifact is obtained from (the checkout point). This aligns with the other 2 related queries. This will cause the same alerts to re-open for closed alerts of this query. +* Adjusted the name of `actions/untrusted-checkout/high` to more clearly describe which parts of the scenario are in a privileged context. This will cause the same alerts to re-open for closed alerts of this query. \ No newline at end of file From a342efca0e6e04889b87be3925db7b13d00e3a9a Mon Sep 17 00:00:00 2001 From: Kristen Newbury Date: Wed, 15 Apr 2026 16:12:52 -0400 Subject: [PATCH 009/260] Revert accidental change --- .../src/Security/CWE-094/CodeInjectionMedium.ql | 17 ++++++----------- 1 file changed, 6 insertions(+), 11 deletions(-) diff --git a/actions/ql/src/Security/CWE-094/CodeInjectionMedium.ql b/actions/ql/src/Security/CWE-094/CodeInjectionMedium.ql index 22ab430105a3..8bc3fe8f51ad 100644 --- a/actions/ql/src/Security/CWE-094/CodeInjectionMedium.ql +++ b/actions/ql/src/Security/CWE-094/CodeInjectionMedium.ql @@ -2,7 +2,7 @@ * @name Code injection * @description Interpreting unsanitized user input as code allows a malicious user to perform arbitrary * code execution. - * @ kind path-problem + * @kind path-problem * @problem.severity warning * @security-severity 5.0 * @precision medium @@ -18,13 +18,8 @@ import actions import codeql.actions.security.CodeInjectionQuery import CodeInjectionFlow::PathGraph -// from CodeInjectionFlow::PathNode source, CodeInjectionFlow::PathNode sink -// where mediumSeverityCodeInjection(source, sink) -// select sink.getNode(), source, sink, -// "Potential code injection in $@, which may be controlled by an external user.", sink, -// sink.getNode().asExpr().(Expression).getRawExpression() -from string test -where - test.regexpMatch("(python[\\d\\.]*)\\s+([^\\s]+)\\.py\\b") and - test = "python -m dir" //go run main/main.go //go run . -select test +from CodeInjectionFlow::PathNode source, CodeInjectionFlow::PathNode sink +where mediumSeverityCodeInjection(source, sink) +select sink.getNode(), source, sink, + "Potential code injection in $@, which may be controlled by an external user.", sink, + sink.getNode().asExpr().(Expression).getRawExpression() From c9e5dbda782fea39790bd736bebaa8a15d59226d Mon Sep 17 00:00:00 2001 From: Kristen Newbury Date: Wed, 15 Apr 2026 16:26:38 -0400 Subject: [PATCH 010/260] Update actions/ql/lib/ext/config/poisonable_steps.yml Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> --- actions/ql/lib/ext/config/poisonable_steps.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/actions/ql/lib/ext/config/poisonable_steps.yml b/actions/ql/lib/ext/config/poisonable_steps.yml index d15b8d7a6a5f..cf7f71dccc94 100644 --- a/actions/ql/lib/ext/config/poisonable_steps.yml +++ b/actions/ql/lib/ext/config/poisonable_steps.yml @@ -72,5 +72,5 @@ extensions: - ["(python[\\d\\.]*)\\s+([^\\s]+)\\.py\\b", 2] - ["(python[\\d\\.]*)\\s+([\\-m]+)\\s+(\\w+)\\b", 2] # eg: pythonX -m anything(dir or file) - ["(ruby)\\s+([^\\s]+)\\.rb\\b", 2] - - ["(go)\\s+(generate|run)\\s+([^\\s]+)", 3] + - ["(go)\\s+(generate|run)(?:\\s+-[^\\s]+)*\\s+([^\\s]+)", 3] - ["(dotnet)\\s+([^\\s]+)\\.csproj\\b", 2] From 589e1e5c197483f4ff8d31d70c12dda8a016c2d3 Mon Sep 17 00:00:00 2001 From: Kristen Newbury Date: Wed, 15 Apr 2026 16:27:06 -0400 Subject: [PATCH 011/260] Update actions/ql/lib/ext/config/poisonable_steps.yml Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> --- actions/ql/lib/ext/config/poisonable_steps.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/actions/ql/lib/ext/config/poisonable_steps.yml b/actions/ql/lib/ext/config/poisonable_steps.yml index cf7f71dccc94..17b1408fa7c3 100644 --- a/actions/ql/lib/ext/config/poisonable_steps.yml +++ b/actions/ql/lib/ext/config/poisonable_steps.yml @@ -70,7 +70,7 @@ extensions: - ["(source|sh|bash|zsh|fish)\\s+([^\\s]+)\\b", 2] - ["(node)\\s+([^\\s]+)(\\.js|\\.ts)\\b", 2] - ["(python[\\d\\.]*)\\s+([^\\s]+)\\.py\\b", 2] - - ["(python[\\d\\.]*)\\s+([\\-m]+)\\s+(\\w+)\\b", 2] # eg: pythonX -m anything(dir or file) + - ["(python[\\d\\.]*)\\s+-m\\s+([A-Za-z_][\\w\\.]*)\\b", 2] # eg: pythonX -m anything(dir or file) - ["(ruby)\\s+([^\\s]+)\\.rb\\b", 2] - ["(go)\\s+(generate|run)(?:\\s+-[^\\s]+)*\\s+([^\\s]+)", 3] - ["(dotnet)\\s+([^\\s]+)\\.csproj\\b", 2] From ed4e2bc5b93ae618ec07dff2c4ba0aa5f853555d Mon Sep 17 00:00:00 2001 From: Kristen Newbury Date: Wed, 15 Apr 2026 16:29:57 -0400 Subject: [PATCH 012/260] Improve formatting helpfiles --- actions/ql/src/Security/CWE-829/UntrustedCheckoutCritical.md | 2 +- actions/ql/src/Security/CWE-829/UntrustedCheckoutHigh.md | 2 +- actions/ql/src/Security/CWE-829/UntrustedCheckoutMedium.md | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/actions/ql/src/Security/CWE-829/UntrustedCheckoutCritical.md b/actions/ql/src/Security/CWE-829/UntrustedCheckoutCritical.md index 246e302e85b8..a4fceb1f8da3 100644 --- a/actions/ql/src/Security/CWE-829/UntrustedCheckoutCritical.md +++ b/actions/ql/src/Security/CWE-829/UntrustedCheckoutCritical.md @@ -133,4 +133,4 @@ jobs: ## References - GitHub Security Lab Research: [Keeping your GitHub Actions and workflows secure Part 1: Preventing pwn requests](https://securitylab.github.com/research/github-actions-preventing-pwn-requests/). -- Living Off the Pipeline: [LOTP](https://boostsecurityio.github.io/lotp/). \ No newline at end of file +- Living Off the Pipeline: [LOTP](https://boostsecurityio.github.io/lotp/). diff --git a/actions/ql/src/Security/CWE-829/UntrustedCheckoutHigh.md b/actions/ql/src/Security/CWE-829/UntrustedCheckoutHigh.md index f412421b7f1d..a4fceb1f8da3 100644 --- a/actions/ql/src/Security/CWE-829/UntrustedCheckoutHigh.md +++ b/actions/ql/src/Security/CWE-829/UntrustedCheckoutHigh.md @@ -133,4 +133,4 @@ jobs: ## References - GitHub Security Lab Research: [Keeping your GitHub Actions and workflows secure Part 1: Preventing pwn requests](https://securitylab.github.com/research/github-actions-preventing-pwn-requests/). -- Living Off the Pipeline: [LOTP](https://boostsecurityio.github.io/lotp/). \ No newline at end of file +- Living Off the Pipeline: [LOTP](https://boostsecurityio.github.io/lotp/). diff --git a/actions/ql/src/Security/CWE-829/UntrustedCheckoutMedium.md b/actions/ql/src/Security/CWE-829/UntrustedCheckoutMedium.md index 246e302e85b8..a4fceb1f8da3 100644 --- a/actions/ql/src/Security/CWE-829/UntrustedCheckoutMedium.md +++ b/actions/ql/src/Security/CWE-829/UntrustedCheckoutMedium.md @@ -133,4 +133,4 @@ jobs: ## References - GitHub Security Lab Research: [Keeping your GitHub Actions and workflows secure Part 1: Preventing pwn requests](https://securitylab.github.com/research/github-actions-preventing-pwn-requests/). -- Living Off the Pipeline: [LOTP](https://boostsecurityio.github.io/lotp/). \ No newline at end of file +- Living Off the Pipeline: [LOTP](https://boostsecurityio.github.io/lotp/). From 81532c7ce672ecaa27077049278c8d9b82529bed Mon Sep 17 00:00:00 2001 From: Kristen Newbury Date: Thu, 16 Apr 2026 11:37:03 -0400 Subject: [PATCH 013/260] Fix outstanding expected file --- .../UntrustedCheckoutCritical.expected | 78 +++++++++---------- 1 file changed, 39 insertions(+), 39 deletions(-) diff --git a/actions/ql/test/query-tests/Security/CWE-829/UntrustedCheckoutCritical.expected b/actions/ql/test/query-tests/Security/CWE-829/UntrustedCheckoutCritical.expected index 39e54b2bbaed..e7c208d1bdbe 100644 --- a/actions/ql/test/query-tests/Security/CWE-829/UntrustedCheckoutCritical.expected +++ b/actions/ql/test/query-tests/Security/CWE-829/UntrustedCheckoutCritical.expected @@ -334,42 +334,42 @@ edges | .github/workflows/workflow_run_untrusted_checkout_2.yml:13:9:16:6 | Uses Step | .github/workflows/workflow_run_untrusted_checkout_2.yml:16:9:18:31 | Uses Step | | .github/workflows/workflow_run_untrusted_checkout_3.yml:13:9:16:6 | Uses Step | .github/workflows/workflow_run_untrusted_checkout_3.yml:16:9:18:31 | Uses Step | #select -| .github/workflows/auto_ci.yml:32:9:37:6 | Run Step | .github/workflows/auto_ci.yml:20:9:27:6 | Uses Step | .github/workflows/auto_ci.yml:32:9:37:6 | Run Step | Potential execution of untrusted code on a privileged workflow ($@) | .github/workflows/auto_ci.yml:6:3:6:21 | pull_request_target | pull_request_target | -| .github/workflows/auto_ci.yml:48:9:52:2 | Run Step | .github/workflows/auto_ci.yml:20:9:27:6 | Uses Step | .github/workflows/auto_ci.yml:48:9:52:2 | Run Step | Potential execution of untrusted code on a privileged workflow ($@) | .github/workflows/auto_ci.yml:6:3:6:21 | pull_request_target | pull_request_target | -| .github/workflows/auto_ci.yml:79:9:84:6 | Run Step | .github/workflows/auto_ci.yml:67:9:74:6 | Uses Step | .github/workflows/auto_ci.yml:79:9:84:6 | Run Step | Potential execution of untrusted code on a privileged workflow ($@) | .github/workflows/auto_ci.yml:6:3:6:21 | pull_request_target | pull_request_target | -| .github/workflows/auto_ci.yml:84:9:93:6 | Run Step | .github/workflows/auto_ci.yml:67:9:74:6 | Uses Step | .github/workflows/auto_ci.yml:84:9:93:6 | Run Step | Potential execution of untrusted code on a privileged workflow ($@) | .github/workflows/auto_ci.yml:6:3:6:21 | pull_request_target | pull_request_target | -| .github/workflows/dependabot3.yml:25:9:48:6 | Run Step: set-milestone | .github/workflows/dependabot3.yml:15:9:20:6 | Uses Step | .github/workflows/dependabot3.yml:25:9:48:6 | Run Step: set-milestone | Potential execution of untrusted code on a privileged workflow ($@) | .github/workflows/dependabot3.yml:3:5:3:23 | pull_request_target | pull_request_target | -| .github/workflows/external/TestOrg/TestRepo/.github/workflows/reusable.yml:26:9:29:7 | Run Step | .github/workflows/external/TestOrg/TestRepo/.github/workflows/reusable.yml:23:9:26:6 | Uses Step | .github/workflows/external/TestOrg/TestRepo/.github/workflows/reusable.yml:26:9:29:7 | Run Step | Potential execution of untrusted code on a privileged workflow ($@) | .github/workflows/reusable_caller1.yaml:4:3:4:21 | pull_request_target | pull_request_target | -| .github/workflows/gitcheckout.yml:21:11:23:22 | Run Step | .github/workflows/gitcheckout.yml:10:11:18:8 | Run Step | .github/workflows/gitcheckout.yml:21:11:23:22 | Run Step | Potential execution of untrusted code on a privileged workflow ($@) | .github/workflows/gitcheckout.yml:2:3:2:21 | pull_request_target | pull_request_target | -| .github/workflows/label_trusted_checkout2.yml:17:7:21:4 | Run Step | .github/workflows/label_trusted_checkout2.yml:12:7:16:4 | Uses Step | .github/workflows/label_trusted_checkout2.yml:17:7:21:4 | Run Step | Potential execution of untrusted code on a privileged workflow ($@) | .github/workflows/label_trusted_checkout2.yml:2:3:2:21 | pull_request_target | pull_request_target | -| .github/workflows/level0.yml:107:9:112:2 | Run Step | .github/workflows/level0.yml:99:9:103:6 | Uses Step | .github/workflows/level0.yml:107:9:112:2 | Run Step | Potential execution of untrusted code on a privileged workflow ($@) | .github/workflows/level0.yml:5:3:5:15 | issue_comment | issue_comment | -| .github/workflows/level0.yml:107:9:112:2 | Run Step | .github/workflows/level0.yml:99:9:103:6 | Uses Step | .github/workflows/level0.yml:107:9:112:2 | Run Step | Potential execution of untrusted code on a privileged workflow ($@) | .github/workflows/level0.yml:7:3:7:21 | pull_request_target | pull_request_target | -| .github/workflows/level0.yml:133:9:135:23 | Run Step | .github/workflows/level0.yml:125:9:129:6 | Uses Step | .github/workflows/level0.yml:133:9:135:23 | Run Step | Potential execution of untrusted code on a privileged workflow ($@) | .github/workflows/level0.yml:5:3:5:15 | issue_comment | issue_comment | -| .github/workflows/level0.yml:133:9:135:23 | Run Step | .github/workflows/level0.yml:125:9:129:6 | Uses Step | .github/workflows/level0.yml:133:9:135:23 | Run Step | Potential execution of untrusted code on a privileged workflow ($@) | .github/workflows/level0.yml:7:3:7:21 | pull_request_target | pull_request_target | -| .github/workflows/poc2.yml:42:9:47:6 | Uses Step | .github/workflows/poc2.yml:37:9:42:6 | Uses Step | .github/workflows/poc2.yml:42:9:47:6 | Uses Step | Potential execution of untrusted code on a privileged workflow ($@) | .github/workflows/poc2.yml:4:3:4:15 | issue_comment | issue_comment | -| .github/workflows/poc2.yml:52:9:58:24 | Run Step | .github/workflows/poc2.yml:37:9:42:6 | Uses Step | .github/workflows/poc2.yml:52:9:58:24 | Run Step | Potential execution of untrusted code on a privileged workflow ($@) | .github/workflows/poc2.yml:4:3:4:15 | issue_comment | issue_comment | -| .github/workflows/pr-workflow.yml:222:9:227:6 | Uses Step | .github/workflows/pr-workflow.yml:216:9:222:6 | Uses Step | .github/workflows/pr-workflow.yml:222:9:227:6 | Uses Step | Potential execution of untrusted code on a privileged workflow ($@) | .github/workflows/pr-workflow-fork.yaml:7:3:7:21 | pull_request_target | pull_request_target | -| .github/workflows/pr-workflow.yml:256:9:261:6 | Uses Step | .github/workflows/pr-workflow.yml:250:9:256:6 | Uses Step | .github/workflows/pr-workflow.yml:256:9:261:6 | Uses Step | Potential execution of untrusted code on a privileged workflow ($@) | .github/workflows/pr-workflow-fork.yaml:7:3:7:21 | pull_request_target | pull_request_target | -| .github/workflows/pr-workflow.yml:290:9:295:6 | Uses Step | .github/workflows/pr-workflow.yml:284:9:290:6 | Uses Step | .github/workflows/pr-workflow.yml:290:9:295:6 | Uses Step | Potential execution of untrusted code on a privileged workflow ($@) | .github/workflows/pr-workflow-fork.yaml:7:3:7:21 | pull_request_target | pull_request_target | -| .github/workflows/pr-workflow.yml:391:9:395:6 | Uses Step | .github/workflows/pr-workflow.yml:386:9:391:6 | Uses Step | .github/workflows/pr-workflow.yml:391:9:395:6 | Uses Step | Potential execution of untrusted code on a privileged workflow ($@) | .github/workflows/pr-workflow-fork.yaml:7:3:7:21 | pull_request_target | pull_request_target | -| .github/workflows/pr-workflow.yml:395:9:404:6 | Uses Step | .github/workflows/pr-workflow.yml:386:9:391:6 | Uses Step | .github/workflows/pr-workflow.yml:395:9:404:6 | Uses Step | Potential execution of untrusted code on a privileged workflow ($@) | .github/workflows/pr-workflow-fork.yaml:7:3:7:21 | pull_request_target | pull_request_target | -| .github/workflows/pr-workflow.yml:404:9:414:6 | Uses Step | .github/workflows/pr-workflow.yml:386:9:391:6 | Uses Step | .github/workflows/pr-workflow.yml:404:9:414:6 | Uses Step | Potential execution of untrusted code on a privileged workflow ($@) | .github/workflows/pr-workflow-fork.yaml:7:3:7:21 | pull_request_target | pull_request_target | -| .github/workflows/pr-workflow.yml:414:9:423:6 | Uses Step | .github/workflows/pr-workflow.yml:386:9:391:6 | Uses Step | .github/workflows/pr-workflow.yml:414:9:423:6 | Uses Step | Potential execution of untrusted code on a privileged workflow ($@) | .github/workflows/pr-workflow-fork.yaml:7:3:7:21 | pull_request_target | pull_request_target | -| .github/workflows/pr-workflow.yml:423:9:432:2 | Uses Step | .github/workflows/pr-workflow.yml:386:9:391:6 | Uses Step | .github/workflows/pr-workflow.yml:423:9:432:2 | Uses Step | Potential execution of untrusted code on a privileged workflow ($@) | .github/workflows/pr-workflow-fork.yaml:7:3:7:21 | pull_request_target | pull_request_target | -| .github/workflows/reusable_local.yml:26:9:29:7 | Run Step | .github/workflows/reusable_local.yml:23:9:26:6 | Uses Step | .github/workflows/reusable_local.yml:26:9:29:7 | Run Step | Potential execution of untrusted code on a privileged workflow ($@) | .github/workflows/reusable_caller3.yaml:4:3:4:21 | pull_request_target | pull_request_target | -| .github/workflows/test7.yml:33:9:36:6 | Run Step | .github/workflows/test7.yml:19:9:24:6 | Uses Step | .github/workflows/test7.yml:33:9:36:6 | Run Step | Potential execution of untrusted code on a privileged workflow ($@) | .github/workflows/test7.yml:4:3:4:15 | issue_comment | issue_comment | -| .github/workflows/test7.yml:36:9:39:6 | Run Step | .github/workflows/test7.yml:19:9:24:6 | Uses Step | .github/workflows/test7.yml:36:9:39:6 | Run Step | Potential execution of untrusted code on a privileged workflow ($@) | .github/workflows/test7.yml:4:3:4:15 | issue_comment | issue_comment | -| .github/workflows/test7.yml:49:9:59:6 | Run Step: benchmark-pr | .github/workflows/test7.yml:19:9:24:6 | Uses Step | .github/workflows/test7.yml:49:9:59:6 | Run Step: benchmark-pr | Potential execution of untrusted code on a privileged workflow ($@) | .github/workflows/test7.yml:4:3:4:15 | issue_comment | issue_comment | -| .github/workflows/test7.yml:59:9:60:6 | Run Step | .github/workflows/test7.yml:19:9:24:6 | Uses Step | .github/workflows/test7.yml:59:9:60:6 | Run Step | Potential execution of untrusted code on a privileged workflow ($@) | .github/workflows/test7.yml:4:3:4:15 | issue_comment | issue_comment | -| .github/workflows/test7.yml:60:9:60:37 | Run Step | .github/workflows/test7.yml:19:9:24:6 | Uses Step | .github/workflows/test7.yml:60:9:60:37 | Run Step | Potential execution of untrusted code on a privileged workflow ($@) | .github/workflows/test7.yml:4:3:4:15 | issue_comment | issue_comment | -| .github/workflows/test10.yml:25:9:30:2 | Run Step | .github/workflows/test10.yml:20:9:25:6 | Uses Step | .github/workflows/test10.yml:25:9:30:2 | Run Step | Potential execution of untrusted code on a privileged workflow ($@) | .github/workflows/test10.yml:8:3:8:21 | pull_request_target | pull_request_target | -| .github/workflows/test11.yml:90:7:93:54 | Uses Step | .github/workflows/test11.yml:84:7:90:4 | Uses Step | .github/workflows/test11.yml:90:7:93:54 | Uses Step | Potential execution of untrusted code on a privileged workflow ($@) | .github/workflows/test11.yml:5:3:5:15 | issue_comment | issue_comment | -| .github/workflows/test17.yml:19:15:23:58 | Uses Step | .github/workflows/test17.yml:12:15:19:12 | Uses Step | .github/workflows/test17.yml:19:15:23:58 | Uses Step | Potential execution of untrusted code on a privileged workflow ($@) | .github/workflows/test17.yml:3:5:3:16 | workflow_run | workflow_run | -| .github/workflows/test27.yml:21:9:22:16 | Run Step | .github/workflows/test27.yml:18:9:21:6 | Uses Step | .github/workflows/test27.yml:21:9:22:16 | Run Step | Potential execution of untrusted code on a privileged workflow ($@) | .github/workflows/test26.yml:4:3:4:14 | workflow_run | workflow_run | -| .github/workflows/test29.yml:14:7:21:11 | Uses Step | .github/workflows/test29.yml:8:7:14:4 | Uses Step | .github/workflows/test29.yml:14:7:21:11 | Uses Step | Potential execution of untrusted code on a privileged workflow ($@) | .github/workflows/test29.yml:1:5:1:23 | pull_request_target | pull_request_target | -| .github/workflows/untrusted_checkout3.yml:13:9:13:23 | Run Step | .github/actions/dangerous-git-checkout/action.yml:6:7:11:4 | Uses Step | .github/workflows/untrusted_checkout3.yml:13:9:13:23 | Run Step | Potential execution of untrusted code on a privileged workflow ($@) | .github/workflows/untrusted_checkout3.yml:4:3:4:14 | workflow_run | workflow_run | -| .github/workflows/untrusted_checkout4.yml:35:7:41:4 | Run Step | .github/workflows/untrusted_checkout4.yml:29:7:35:4 | Uses Step | .github/workflows/untrusted_checkout4.yml:35:7:41:4 | Run Step | Potential execution of untrusted code on a privileged workflow ($@) | .github/workflows/untrusted_checkout4.yml:2:3:2:15 | issue_comment | issue_comment | -| .github/workflows/untrusted_checkout4.yml:41:7:47:4 | Run Step | .github/workflows/untrusted_checkout4.yml:29:7:35:4 | Uses Step | .github/workflows/untrusted_checkout4.yml:41:7:47:4 | Run Step | Potential execution of untrusted code on a privileged workflow ($@) | .github/workflows/untrusted_checkout4.yml:2:3:2:15 | issue_comment | issue_comment | -| .github/workflows/untrusted_checkout4.yml:47:7:51:46 | Run Step | .github/workflows/untrusted_checkout4.yml:29:7:35:4 | Uses Step | .github/workflows/untrusted_checkout4.yml:47:7:51:46 | Run Step | Potential execution of untrusted code on a privileged workflow ($@) | .github/workflows/untrusted_checkout4.yml:2:3:2:15 | issue_comment | issue_comment | -| .github/workflows/untrusted_checkout.yml:15:9:18:2 | Run Step | .github/workflows/untrusted_checkout.yml:8:9:11:6 | Uses Step | .github/workflows/untrusted_checkout.yml:15:9:18:2 | Run Step | Potential execution of untrusted code on a privileged workflow ($@) | .github/workflows/untrusted_checkout.yml:2:3:2:21 | pull_request_target | pull_request_target | -| .github/workflows/untrusted_checkout.yml:30:9:32:23 | Run Step | .github/workflows/untrusted_checkout.yml:23:9:26:6 | Uses Step | .github/workflows/untrusted_checkout.yml:30:9:32:23 | Run Step | Potential execution of untrusted code on a privileged workflow ($@) | .github/workflows/untrusted_checkout.yml:2:3:2:21 | pull_request_target | pull_request_target | +| .github/actions/dangerous-git-checkout/action.yml:6:7:11:4 | Uses Step | .github/actions/dangerous-git-checkout/action.yml:6:7:11:4 | Uses Step | .github/workflows/untrusted_checkout3.yml:13:9:13:23 | Run Step | Potential execution of untrusted code on a privileged workflow ($@) | .github/workflows/untrusted_checkout3.yml:4:3:4:14 | workflow_run | workflow_run | +| .github/workflows/auto_ci.yml:20:9:27:6 | Uses Step | .github/workflows/auto_ci.yml:20:9:27:6 | Uses Step | .github/workflows/auto_ci.yml:32:9:37:6 | Run Step | Potential execution of untrusted code on a privileged workflow ($@) | .github/workflows/auto_ci.yml:6:3:6:21 | pull_request_target | pull_request_target | +| .github/workflows/auto_ci.yml:20:9:27:6 | Uses Step | .github/workflows/auto_ci.yml:20:9:27:6 | Uses Step | .github/workflows/auto_ci.yml:48:9:52:2 | Run Step | Potential execution of untrusted code on a privileged workflow ($@) | .github/workflows/auto_ci.yml:6:3:6:21 | pull_request_target | pull_request_target | +| .github/workflows/auto_ci.yml:67:9:74:6 | Uses Step | .github/workflows/auto_ci.yml:67:9:74:6 | Uses Step | .github/workflows/auto_ci.yml:79:9:84:6 | Run Step | Potential execution of untrusted code on a privileged workflow ($@) | .github/workflows/auto_ci.yml:6:3:6:21 | pull_request_target | pull_request_target | +| .github/workflows/auto_ci.yml:67:9:74:6 | Uses Step | .github/workflows/auto_ci.yml:67:9:74:6 | Uses Step | .github/workflows/auto_ci.yml:84:9:93:6 | Run Step | Potential execution of untrusted code on a privileged workflow ($@) | .github/workflows/auto_ci.yml:6:3:6:21 | pull_request_target | pull_request_target | +| .github/workflows/dependabot3.yml:15:9:20:6 | Uses Step | .github/workflows/dependabot3.yml:15:9:20:6 | Uses Step | .github/workflows/dependabot3.yml:25:9:48:6 | Run Step: set-milestone | Potential execution of untrusted code on a privileged workflow ($@) | .github/workflows/dependabot3.yml:3:5:3:23 | pull_request_target | pull_request_target | +| .github/workflows/external/TestOrg/TestRepo/.github/workflows/reusable.yml:23:9:26:6 | Uses Step | .github/workflows/external/TestOrg/TestRepo/.github/workflows/reusable.yml:23:9:26:6 | Uses Step | .github/workflows/external/TestOrg/TestRepo/.github/workflows/reusable.yml:26:9:29:7 | Run Step | Potential execution of untrusted code on a privileged workflow ($@) | .github/workflows/reusable_caller1.yaml:4:3:4:21 | pull_request_target | pull_request_target | +| .github/workflows/gitcheckout.yml:10:11:18:8 | Run Step | .github/workflows/gitcheckout.yml:10:11:18:8 | Run Step | .github/workflows/gitcheckout.yml:21:11:23:22 | Run Step | Potential execution of untrusted code on a privileged workflow ($@) | .github/workflows/gitcheckout.yml:2:3:2:21 | pull_request_target | pull_request_target | +| .github/workflows/label_trusted_checkout2.yml:12:7:16:4 | Uses Step | .github/workflows/label_trusted_checkout2.yml:12:7:16:4 | Uses Step | .github/workflows/label_trusted_checkout2.yml:17:7:21:4 | Run Step | Potential execution of untrusted code on a privileged workflow ($@) | .github/workflows/label_trusted_checkout2.yml:2:3:2:21 | pull_request_target | pull_request_target | +| .github/workflows/level0.yml:99:9:103:6 | Uses Step | .github/workflows/level0.yml:99:9:103:6 | Uses Step | .github/workflows/level0.yml:107:9:112:2 | Run Step | Potential execution of untrusted code on a privileged workflow ($@) | .github/workflows/level0.yml:5:3:5:15 | issue_comment | issue_comment | +| .github/workflows/level0.yml:99:9:103:6 | Uses Step | .github/workflows/level0.yml:99:9:103:6 | Uses Step | .github/workflows/level0.yml:107:9:112:2 | Run Step | Potential execution of untrusted code on a privileged workflow ($@) | .github/workflows/level0.yml:7:3:7:21 | pull_request_target | pull_request_target | +| .github/workflows/level0.yml:125:9:129:6 | Uses Step | .github/workflows/level0.yml:125:9:129:6 | Uses Step | .github/workflows/level0.yml:133:9:135:23 | Run Step | Potential execution of untrusted code on a privileged workflow ($@) | .github/workflows/level0.yml:5:3:5:15 | issue_comment | issue_comment | +| .github/workflows/level0.yml:125:9:129:6 | Uses Step | .github/workflows/level0.yml:125:9:129:6 | Uses Step | .github/workflows/level0.yml:133:9:135:23 | Run Step | Potential execution of untrusted code on a privileged workflow ($@) | .github/workflows/level0.yml:7:3:7:21 | pull_request_target | pull_request_target | +| .github/workflows/poc2.yml:37:9:42:6 | Uses Step | .github/workflows/poc2.yml:37:9:42:6 | Uses Step | .github/workflows/poc2.yml:42:9:47:6 | Uses Step | Potential execution of untrusted code on a privileged workflow ($@) | .github/workflows/poc2.yml:4:3:4:15 | issue_comment | issue_comment | +| .github/workflows/poc2.yml:37:9:42:6 | Uses Step | .github/workflows/poc2.yml:37:9:42:6 | Uses Step | .github/workflows/poc2.yml:52:9:58:24 | Run Step | Potential execution of untrusted code on a privileged workflow ($@) | .github/workflows/poc2.yml:4:3:4:15 | issue_comment | issue_comment | +| .github/workflows/pr-workflow.yml:216:9:222:6 | Uses Step | .github/workflows/pr-workflow.yml:216:9:222:6 | Uses Step | .github/workflows/pr-workflow.yml:222:9:227:6 | Uses Step | Potential execution of untrusted code on a privileged workflow ($@) | .github/workflows/pr-workflow-fork.yaml:7:3:7:21 | pull_request_target | pull_request_target | +| .github/workflows/pr-workflow.yml:250:9:256:6 | Uses Step | .github/workflows/pr-workflow.yml:250:9:256:6 | Uses Step | .github/workflows/pr-workflow.yml:256:9:261:6 | Uses Step | Potential execution of untrusted code on a privileged workflow ($@) | .github/workflows/pr-workflow-fork.yaml:7:3:7:21 | pull_request_target | pull_request_target | +| .github/workflows/pr-workflow.yml:284:9:290:6 | Uses Step | .github/workflows/pr-workflow.yml:284:9:290:6 | Uses Step | .github/workflows/pr-workflow.yml:290:9:295:6 | Uses Step | Potential execution of untrusted code on a privileged workflow ($@) | .github/workflows/pr-workflow-fork.yaml:7:3:7:21 | pull_request_target | pull_request_target | +| .github/workflows/pr-workflow.yml:386:9:391:6 | Uses Step | .github/workflows/pr-workflow.yml:386:9:391:6 | Uses Step | .github/workflows/pr-workflow.yml:391:9:395:6 | Uses Step | Potential execution of untrusted code on a privileged workflow ($@) | .github/workflows/pr-workflow-fork.yaml:7:3:7:21 | pull_request_target | pull_request_target | +| .github/workflows/pr-workflow.yml:386:9:391:6 | Uses Step | .github/workflows/pr-workflow.yml:386:9:391:6 | Uses Step | .github/workflows/pr-workflow.yml:395:9:404:6 | Uses Step | Potential execution of untrusted code on a privileged workflow ($@) | .github/workflows/pr-workflow-fork.yaml:7:3:7:21 | pull_request_target | pull_request_target | +| .github/workflows/pr-workflow.yml:386:9:391:6 | Uses Step | .github/workflows/pr-workflow.yml:386:9:391:6 | Uses Step | .github/workflows/pr-workflow.yml:404:9:414:6 | Uses Step | Potential execution of untrusted code on a privileged workflow ($@) | .github/workflows/pr-workflow-fork.yaml:7:3:7:21 | pull_request_target | pull_request_target | +| .github/workflows/pr-workflow.yml:386:9:391:6 | Uses Step | .github/workflows/pr-workflow.yml:386:9:391:6 | Uses Step | .github/workflows/pr-workflow.yml:414:9:423:6 | Uses Step | Potential execution of untrusted code on a privileged workflow ($@) | .github/workflows/pr-workflow-fork.yaml:7:3:7:21 | pull_request_target | pull_request_target | +| .github/workflows/pr-workflow.yml:386:9:391:6 | Uses Step | .github/workflows/pr-workflow.yml:386:9:391:6 | Uses Step | .github/workflows/pr-workflow.yml:423:9:432:2 | Uses Step | Potential execution of untrusted code on a privileged workflow ($@) | .github/workflows/pr-workflow-fork.yaml:7:3:7:21 | pull_request_target | pull_request_target | +| .github/workflows/reusable_local.yml:23:9:26:6 | Uses Step | .github/workflows/reusable_local.yml:23:9:26:6 | Uses Step | .github/workflows/reusable_local.yml:26:9:29:7 | Run Step | Potential execution of untrusted code on a privileged workflow ($@) | .github/workflows/reusable_caller3.yaml:4:3:4:21 | pull_request_target | pull_request_target | +| .github/workflows/test7.yml:19:9:24:6 | Uses Step | .github/workflows/test7.yml:19:9:24:6 | Uses Step | .github/workflows/test7.yml:33:9:36:6 | Run Step | Potential execution of untrusted code on a privileged workflow ($@) | .github/workflows/test7.yml:4:3:4:15 | issue_comment | issue_comment | +| .github/workflows/test7.yml:19:9:24:6 | Uses Step | .github/workflows/test7.yml:19:9:24:6 | Uses Step | .github/workflows/test7.yml:36:9:39:6 | Run Step | Potential execution of untrusted code on a privileged workflow ($@) | .github/workflows/test7.yml:4:3:4:15 | issue_comment | issue_comment | +| .github/workflows/test7.yml:19:9:24:6 | Uses Step | .github/workflows/test7.yml:19:9:24:6 | Uses Step | .github/workflows/test7.yml:49:9:59:6 | Run Step: benchmark-pr | Potential execution of untrusted code on a privileged workflow ($@) | .github/workflows/test7.yml:4:3:4:15 | issue_comment | issue_comment | +| .github/workflows/test7.yml:19:9:24:6 | Uses Step | .github/workflows/test7.yml:19:9:24:6 | Uses Step | .github/workflows/test7.yml:59:9:60:6 | Run Step | Potential execution of untrusted code on a privileged workflow ($@) | .github/workflows/test7.yml:4:3:4:15 | issue_comment | issue_comment | +| .github/workflows/test7.yml:19:9:24:6 | Uses Step | .github/workflows/test7.yml:19:9:24:6 | Uses Step | .github/workflows/test7.yml:60:9:60:37 | Run Step | Potential execution of untrusted code on a privileged workflow ($@) | .github/workflows/test7.yml:4:3:4:15 | issue_comment | issue_comment | +| .github/workflows/test10.yml:20:9:25:6 | Uses Step | .github/workflows/test10.yml:20:9:25:6 | Uses Step | .github/workflows/test10.yml:25:9:30:2 | Run Step | Potential execution of untrusted code on a privileged workflow ($@) | .github/workflows/test10.yml:8:3:8:21 | pull_request_target | pull_request_target | +| .github/workflows/test11.yml:84:7:90:4 | Uses Step | .github/workflows/test11.yml:84:7:90:4 | Uses Step | .github/workflows/test11.yml:90:7:93:54 | Uses Step | Potential execution of untrusted code on a privileged workflow ($@) | .github/workflows/test11.yml:5:3:5:15 | issue_comment | issue_comment | +| .github/workflows/test17.yml:12:15:19:12 | Uses Step | .github/workflows/test17.yml:12:15:19:12 | Uses Step | .github/workflows/test17.yml:19:15:23:58 | Uses Step | Potential execution of untrusted code on a privileged workflow ($@) | .github/workflows/test17.yml:3:5:3:16 | workflow_run | workflow_run | +| .github/workflows/test27.yml:18:9:21:6 | Uses Step | .github/workflows/test27.yml:18:9:21:6 | Uses Step | .github/workflows/test27.yml:21:9:22:16 | Run Step | Potential execution of untrusted code on a privileged workflow ($@) | .github/workflows/test26.yml:4:3:4:14 | workflow_run | workflow_run | +| .github/workflows/test29.yml:8:7:14:4 | Uses Step | .github/workflows/test29.yml:8:7:14:4 | Uses Step | .github/workflows/test29.yml:14:7:21:11 | Uses Step | Potential execution of untrusted code on a privileged workflow ($@) | .github/workflows/test29.yml:1:5:1:23 | pull_request_target | pull_request_target | +| .github/workflows/untrusted_checkout4.yml:29:7:35:4 | Uses Step | .github/workflows/untrusted_checkout4.yml:29:7:35:4 | Uses Step | .github/workflows/untrusted_checkout4.yml:35:7:41:4 | Run Step | Potential execution of untrusted code on a privileged workflow ($@) | .github/workflows/untrusted_checkout4.yml:2:3:2:15 | issue_comment | issue_comment | +| .github/workflows/untrusted_checkout4.yml:29:7:35:4 | Uses Step | .github/workflows/untrusted_checkout4.yml:29:7:35:4 | Uses Step | .github/workflows/untrusted_checkout4.yml:41:7:47:4 | Run Step | Potential execution of untrusted code on a privileged workflow ($@) | .github/workflows/untrusted_checkout4.yml:2:3:2:15 | issue_comment | issue_comment | +| .github/workflows/untrusted_checkout4.yml:29:7:35:4 | Uses Step | .github/workflows/untrusted_checkout4.yml:29:7:35:4 | Uses Step | .github/workflows/untrusted_checkout4.yml:47:7:51:46 | Run Step | Potential execution of untrusted code on a privileged workflow ($@) | .github/workflows/untrusted_checkout4.yml:2:3:2:15 | issue_comment | issue_comment | +| .github/workflows/untrusted_checkout.yml:8:9:11:6 | Uses Step | .github/workflows/untrusted_checkout.yml:8:9:11:6 | Uses Step | .github/workflows/untrusted_checkout.yml:15:9:18:2 | Run Step | Potential execution of untrusted code on a privileged workflow ($@) | .github/workflows/untrusted_checkout.yml:2:3:2:21 | pull_request_target | pull_request_target | +| .github/workflows/untrusted_checkout.yml:23:9:26:6 | Uses Step | .github/workflows/untrusted_checkout.yml:23:9:26:6 | Uses Step | .github/workflows/untrusted_checkout.yml:30:9:32:23 | Run Step | Potential execution of untrusted code on a privileged workflow ($@) | .github/workflows/untrusted_checkout.yml:2:3:2:21 | pull_request_target | pull_request_target | From 6c83ec6e6182caae29aa215c98047bf89f0c99c7 Mon Sep 17 00:00:00 2001 From: Florin Coada Date: Fri, 17 Apr 2026 10:02:34 +0100 Subject: [PATCH 014/260] docs: Add 'Customizing library models for Rust' documentation Add documentation for customizing library models for Rust using data extension files. This follows the pattern of existing documentation for other languages (Java, Python, Ruby, Go, C#, C++, JavaScript). The documentation covers: - Rust-specific extensible predicates (sourceModel, sinkModel, summaryModel, neutralModel) with their simplified schema - Canonical path syntax for identifying Rust functions and methods - Examples using real models from the codebase (sqlx, reqwest, std::env, std::path, Iterator::map) - Access path token reference (Argument, Parameter, ReturnValue, Element, Field, Reference, Future) - Source and sink kind reference - Threat model integration Also updates codeql-for-rust.rst to include the new page in the toctree. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> --- .../codeql-for-rust.rst | 3 + .../customizing-library-models-for-rust.rst | 479 ++++++++++++++++++ 2 files changed, 482 insertions(+) create mode 100644 docs/codeql/codeql-language-guides/customizing-library-models-for-rust.rst diff --git a/docs/codeql/codeql-language-guides/codeql-for-rust.rst b/docs/codeql/codeql-language-guides/codeql-for-rust.rst index 1c08acbf2fbe..899d64de645e 100644 --- a/docs/codeql/codeql-language-guides/codeql-for-rust.rst +++ b/docs/codeql/codeql-language-guides/codeql-for-rust.rst @@ -12,9 +12,12 @@ Experiment and learn how to write effective and efficient queries for CodeQL dat basic-query-for-rust-code codeql-library-for-rust analyzing-data-flow-in-rust + customizing-library-models-for-rust - :doc:`Basic query for Rust code `: Learn to write and run a simple CodeQL query. - :doc:`CodeQL library for Rust `: When analyzing Rust code, you can make use of the large collection of classes in the CodeQL library for Rust. - :doc:`Analyzing data flow in Rust `: You can use CodeQL to track the flow of data through a Rust program to places where the data is used. + +- :doc:`Customizing library models for Rust `: You can model the functions and methods that control data flow in any framework or library by using data extension files. diff --git a/docs/codeql/codeql-language-guides/customizing-library-models-for-rust.rst b/docs/codeql/codeql-language-guides/customizing-library-models-for-rust.rst new file mode 100644 index 000000000000..7e1a0d7aead0 --- /dev/null +++ b/docs/codeql/codeql-language-guides/customizing-library-models-for-rust.rst @@ -0,0 +1,479 @@ +.. _customizing-library-models-for-rust: + +Customizing library models for Rust +==================================== + +You can model the functions and methods that control data flow in any framework or library. This is especially useful for custom frameworks or niche libraries that are not supported by the standard CodeQL libraries. + +.. include:: ../reusables/beta-note-customizing-library-models.rst + +About this article +------------------ + +This article contains reference material about how to define custom models for sources, sinks, and flow summaries for Rust dependencies in data extension files. + +About data extensions +--------------------- + +You can customize analysis by defining models (summaries, sinks, and sources) of your code's Rust dependencies in data extension files. Each model defines the behavior of one or more elements of your library or framework, such as functions and methods. When you run dataflow analysis, these models expand the potential sources and sinks tracked by dataflow analysis and improve the precision of results. + +Most of the security queries search for paths from a source of untrusted input to a sink that represents a vulnerability. This is known as taint tracking. Each source is a starting point for dataflow analysis to track tainted data and each sink is an end point. + +Taint tracking queries also need to know how data can flow through elements that are not included in the source code. These are modeled as summaries. A summary model enables queries to synthesize the flow behavior through elements in dependency code that is not stored in your repository. + +Syntax used to define an element in an extension file +~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + +Each model of an element is defined using a data extension where each tuple constitutes a model. +A data extension file to extend the standard Rust queries included with CodeQL is a YAML file with the form: + +.. code-block:: yaml + + extensions: + - addsTo: + pack: codeql/rust-all + extensible: + data: + - + - + - ... + +Each YAML file may contain one or more top-level extensions. + +- ``addsTo`` defines the CodeQL pack name and extensible predicate that the extension is injected into. +- ``data`` defines one or more rows of tuples that are injected as values into the extensible predicate. The number of columns and their types must match the definition of the extensible predicate. + +Data extensions use union semantics, which means that the tuples of all extensions for a single extensible predicate are combined, duplicates are removed, and all of the remaining tuples are queryable by referencing the extensible predicate. + +Extensible predicates used to create custom models in Rust +~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + +The CodeQL library for Rust analysis exposes the following extensible predicates: + +- ``sourceModel(path, output, kind, provenance)``. This is used to model sources of potentially tainted data. The ``kind`` of the sources defined using this predicate determine which threat model they are associated with. Different threat models can be used to customize the sources used in an analysis. For more information, see ":ref:`Threat models `." +- ``sinkModel(path, input, kind, provenance)``. This is used to model sinks where tainted data may be used in a way that makes the code vulnerable. +- ``summaryModel(path, input, output, kind, provenance)``. This is used to model flow through elements. +- ``neutralModel(path, kind, provenance)``. This is similar to a summary model but used to indicate that a callable has no flow for a given category. Manual neutral models (those with a provenance such as ``manual``) can be used to override generated summary, source, or sink models (those with a provenance such as ``df-generated``), so that the generated model will be ignored. + +The extensible predicates are populated using the models defined in data extension files. + +.. note:: + + Unlike some other CodeQL languages (such as Python, Ruby, and JavaScript), Rust does not use a ``typeModel`` extensible predicate. Rust models identify callables directly by their canonical path. + +Canonical paths +~~~~~~~~~~~~~~~ + +In Rust models, each callable is identified by its **canonical path** — the fully-qualified path to the function or method. The canonical path follows the internal module structure of the crate, which may differ from the public re-export path. + +Canonical paths take the following forms: + +- **Free functions**: ``crate::module::function``, for example ``std::env::var`` or ``std::fs::read_to_string``. +- **Inherent methods**: ``::method``, for example ``::open``. +- **Trait methods with a concrete type**: ``::method``, for example ``::read_to_end``. +- **Trait methods with a wildcard type**: ``<_ as Trait>::method``, for example ``<_ as core::clone::Clone>::clone``. This form matches any type that implements the trait and is useful for modeling broadly applicable trait methods. + +Examples of custom model definitions +------------------------------------- + +The examples in this section are based on models from the standard CodeQL Rust query pack published by GitHub. They demonstrate how to add tuples to extend extensible predicates that are used by the standard queries. + +Example: Taint sink for SQL injection in the ``sqlx`` crate +~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + +This example shows how the Rust query pack models the first argument of the ``sqlx::query`` function as a SQL injection sink. The ``query`` function accepts a SQL query string that will be executed against a database. + +.. code-block:: rust + + use sqlx; + + async fn run_query(pool: &sqlx::PgPool, user_input: &str) { + sqlx::query(user_input) // The argument to this function is a SQL injection sink. + .execute(pool) + .await + .unwrap(); + } + +We need to add a tuple to the ``sinkModel``\(path, input, kind, provenance) extensible predicate by updating a data extension file. + +.. code-block:: yaml + + extensions: + - addsTo: + pack: codeql/rust-all + extensible: sinkModel + data: + - ["sqlx_core::query::query", "Argument[0]", "sql-injection", "manual"] + +Since we want to add a new sink, we need to add a tuple to the ``sinkModel`` extensible predicate. + +- The first value ``sqlx_core::query::query`` is the canonical path of the function to model. Note that this is the internal module path (``sqlx_core::query::query``), not the public re-export path (``sqlx::query``). +- The second value ``Argument[0]`` is the access path to the first argument of the function call, which is the SQL query string. This is the location of the sink. +- The third value ``sql-injection`` is the kind of the sink. The sink kind is used to define the queries where the sink is in scope. +- The fourth value ``manual`` is the provenance of the sink, which is used to identify the origin of the sink. + +Example: Taint source from the ``reqwest`` crate +~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + +This example shows how the Rust query pack models the return value of the ``reqwest::get`` function as a ``remote`` source. This function makes an HTTP GET request to a remote server. + +.. code-block:: rust + + async fn fetch_data(url: &str) -> Result { + let response = reqwest::get(url).await?; // The return value is a remote source of taint. + Ok(response) + } + +We need to add a tuple to the ``sourceModel``\(path, output, kind, provenance) extensible predicate by updating a data extension file. + +.. code-block:: yaml + + extensions: + - addsTo: + pack: codeql/rust-all + extensible: sourceModel + data: + - ["reqwest::get", "ReturnValue.Future.Field[core::result::Result::Ok(0)]", "remote", "manual"] + +Since we are adding a new source, we need to add a tuple to the ``sourceModel`` extensible predicate. + +- The first value ``reqwest::get`` is the canonical path of the function. +- The second value ``ReturnValue.Future.Field[core::result::Result::Ok(0)]`` is the access path to the output. This compound path is read left to right: + + - ``ReturnValue`` selects the return value of the function call. Since ``reqwest::get`` is an ``async`` function, the return value is a ``Future``. + - ``Future`` unwraps the ``Future`` to reach the value that will be available after ``.await``. + - ``Field[core::result::Result::Ok(0)]`` selects the first positional field of the ``Ok`` variant of the ``Result`` — that is, the ``reqwest::Response`` value. + +- The third value ``remote`` is the kind of the source. ``remote`` indicates that this source represents data that originates from a remote network request. For more information, see ":ref:`Threat models `." +- The fourth value ``manual`` is the provenance of the source. + +Example: Taint source from environment variables +~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + +This example shows how the Rust query pack models the return value of ``std::env::var`` as a source of data from the environment. + +.. code-block:: rust + + fn get_config() { + let db_url = std::env::var("DATABASE_URL").unwrap(); // The return value is a source of environment data. + // ... + } + +We need to add a tuple to the ``sourceModel``\(path, output, kind, provenance) extensible predicate by updating a data extension file. + +.. code-block:: yaml + + extensions: + - addsTo: + pack: codeql/rust-all + extensible: sourceModel + data: + - ["std::env::var", "ReturnValue.Field[core::result::Result::Ok(0)]", "environment", "manual"] + +- The first value ``std::env::var`` is the canonical path to the ``var`` function in the ``std::env`` module. +- The second value ``ReturnValue.Field[core::result::Result::Ok(0)]`` selects the ``Ok`` variant of the returned ``Result``. +- The third value ``environment`` is the source kind. This is a subcategory of the ``local`` threat model. For more information, see ":ref:`Threat models `." +- The fourth value ``manual`` is the provenance of the source. + +Example: Add flow through the ``Response::text`` method +~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + +This example shows how the Rust query pack models taint flow through the ``text`` method of ``reqwest::Response``, which reads the response body as a string. + +.. code-block:: rust + + async fn read_body(response: reqwest::Response) { + let body = response.text().await.unwrap(); // There is taint flow from response to body. + // ... + } + +We need to add a tuple to the ``summaryModel``\(path, input, output, kind, provenance) extensible predicate by updating a data extension file: + +.. code-block:: yaml + + extensions: + - addsTo: + pack: codeql/rust-all + extensible: summaryModel + data: + - ["::text", "Argument[self]", "ReturnValue.Future.Field[core::result::Result::Ok(0)]", "taint", "manual"] + +Since we are adding flow through a method, we need to add a tuple to the ``summaryModel`` extensible predicate. + +- The first value ``::text`` is the canonical path. Note the format ``::method`` used for inherent methods. Also note that the canonical path uses the internal module path ``reqwest::response::Response``, not just ``reqwest::Response``. +- The second value ``Argument[self]`` is the access path to the input. ``Argument[self]`` refers to the receiver of the method call (``response`` in the example). +- The third value ``ReturnValue.Future.Field[core::result::Result::Ok(0)]`` is the access path to the output. This models the fact that ``text()`` is an ``async`` method returning ``impl Future>``, so we follow through ``Future`` and then unwrap the ``Ok`` variant. +- The fourth value ``taint`` is the kind of the flow. ``taint`` means that taint is propagated through the call — the output is derived from the input but may not be identical to it. +- The fifth value ``manual`` is the provenance of the summary. + +Example: Add flow through the ``Path::join`` method +~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + +This example shows how the Rust query pack models taint flow through the ``join`` method of ``std::path::Path``, where both the receiver and argument contribute to the result. + +.. code-block:: rust + + use std::path::Path; + + fn build_path(base: &Path, user_input: &str) { + let full_path = base.join(user_input); // There is taint flow from both base and user_input to full_path. + // ... + } + +We need to add tuples to the ``summaryModel``\(path, input, output, kind, provenance) extensible predicate by updating a data extension file: + +.. code-block:: yaml + + extensions: + - addsTo: + pack: codeql/rust-all + extensible: summaryModel + data: + - ["::join", "Argument[self].Reference", "ReturnValue", "taint", "manual"] + - ["::join", "Argument[0]", "ReturnValue", "taint", "manual"] + +Since we are adding flow through a method, we need to add tuples to the ``summaryModel`` extensible predicate. Each tuple defines flow from one input to the output. The first row defines flow from the receiver and the second row defines flow from the first argument. + +- The first value ``::join`` is the canonical path, the same for both rows. +- The second value differs: + + - ``Argument[self].Reference`` is the access path to the receiver. Since ``join`` takes ``&self``, we use ``Argument[self]`` to select the ``self`` reference, and then ``Reference`` to follow through the reference to the underlying ``Path`` value. + - ``Argument[0]`` is the access path to the first argument (``user_input`` in the example). + +- The third value ``ReturnValue`` is the access path to the output — the return value of the method call. +- The fourth value ``taint`` is the kind of flow. Since ``join`` combines the path and the argument, the output is derived from the inputs but is not identical to either one. +- The fifth value ``manual`` is the provenance of the summary. + +It would also be possible to merge the two rows into one by using a comma-separated list in the second value: + +.. code-block:: yaml + + extensions: + - addsTo: + pack: codeql/rust-all + extensible: summaryModel + data: + - ["::join", "Argument[self,0]", "ReturnValue", "taint", "manual"] + +This row defines flow from both the receiver and the first argument to the return value. The second value ``Argument[self,0]`` is shorthand for specifying an access path to both ``Argument[self]`` and ``Argument[0]``. + +.. note:: + + When using ``Argument[self]`` to refer to the receiver, the ``Reference`` token may need to be appended to follow through the ``&self`` or ``&mut self`` reference to the underlying value. This depends on whether the data you want to track is on the reference itself or on the value behind the reference. + +Example: Add flow through the ``Iterator::map`` method +~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + +This example shows how the Rust query pack models a more complex flow through a higher-order method. Here we model flow through the ``map`` method of the ``Iterator`` trait, which takes a closure and applies it to each element. + +.. code-block:: rust + + fn transform(items: Vec) { + let results: Vec = items.into_iter().map(|item| { + item.to_uppercase() // There is value flow from elements of `items` to `item`. + }).collect(); + } + +We need to add tuples to the ``summaryModel``\(path, input, output, kind, provenance) extensible predicate by updating a data extension file: + +.. code-block:: yaml + + extensions: + - addsTo: + pack: codeql/rust-all + extensible: summaryModel + data: + - ["<_ as core::iter::traits::iterator::Iterator>::map", "Argument[self].Element", "Argument[0].Parameter[0]", "value", "manual"] + +Since we are adding flow through a trait method, we need to add a tuple to the ``summaryModel`` extensible predicate. + +- The first value ``<_ as core::iter::traits::iterator::Iterator>::map`` is the canonical path. The ``<_ as Trait>::method`` form uses a wildcard type (``_``) to match any type that implements the ``Iterator`` trait. +- The second value ``Argument[self].Element`` is the access path to the input — the elements of the iterator (the receiver). +- The third value ``Argument[0].Parameter[0]`` is the access path to the output: + + - ``Argument[0]`` selects the closure argument to ``map``. + - ``Parameter[0]`` selects the first parameter of the closure (``item`` in the example). + +- The fourth value ``value`` is the kind of flow. ``value`` means the value is preserved as it flows — each element of the iterator flows unchanged into the closure parameter. +- The fifth value ``manual`` is the provenance of the summary. + +Example: Add a ``neutral`` model +~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + +This example shows how the Rust query pack models the ``Option::map`` method as neutral with respect to sinks. + +A neutral model prevents generated or inherited models of a specific category (``source``, ``sink``, or ``summary``) from being applied to a callable. This is useful when an automatically generated model incorrectly identifies a callable as, for example, a sink. + +.. code-block:: yaml + + extensions: + - addsTo: + pack: codeql/rust-all + extensible: neutralModel + data: + - ["::map", "sink", "manual"] + +Since we are adding a neutral model, we need to add a tuple to the ``neutralModel`` extensible predicate. The tuple has three values: + +- The first value ``::map`` is the canonical path of the function. +- The second value ``sink`` is the category of model to suppress. This means that any generated sink model for ``Option::map`` will be ignored. The category can be ``source``, ``sink``, or ``summary``. +- The third value ``manual`` is the provenance of the neutral model. + +.. _threat-models-rust: + +Threat models +------------- + +.. include:: ../reusables/threat-model-description.rst + +Reference material +------------------ + +The following sections provide reference material for extensible predicates, access paths, and kinds. + +Extensible predicates +--------------------- + +sourceModel(path, output, kind, provenance) +~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + +Adds a new taint source. Most taint-tracking queries will use the new source. + +- **path**: Canonical path of the function or method. +- **output**: Access path leading to the source value. +- **kind**: Kind of source to add. See ":ref:`Threat models `" for available source kinds. +- **provenance**: Origin of the model. Use ``manual`` for custom models. + +Example: + +.. code-block:: yaml + + extensions: + - addsTo: + pack: codeql/rust-all + extensible: sourceModel + data: + - ["std::env::var", "ReturnValue.Field[core::result::Result::Ok(0)]", "environment", "manual"] + +sinkModel(path, input, kind, provenance) +~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + +Adds a new taint sink. Sinks are query-specific and will typically affect one or two queries. + +- **path**: Canonical path of the function or method. +- **input**: Access path leading to the sink value. +- **kind**: Kind of sink to add. See the section on sink kinds for a list of commonly used kinds. +- **provenance**: Origin of the model. Use ``manual`` for custom models. + +Example: + +.. code-block:: yaml + + extensions: + - addsTo: + pack: codeql/rust-all + extensible: sinkModel + data: + - ["sqlx_core::query::query", "Argument[0]", "sql-injection", "manual"] + +summaryModel(path, input, output, kind, provenance) +~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + +Adds flow through a function or method call. + +- **path**: Canonical path of the function or method. +- **input**: Access path leading to the input of the flow (where data flows from). +- **output**: Access path leading to the output of the flow (where data flows to). +- **kind**: Kind of summary to add. Can be ``taint`` for taint-propagating flow, or ``value`` for value-preserving flow. +- **provenance**: Origin of the model. Use ``manual`` for custom models. + +Example: + +.. code-block:: yaml + + extensions: + - addsTo: + pack: codeql/rust-all + extensible: summaryModel + data: + - ["::text", "Argument[self]", "ReturnValue.Future.Field[core::result::Result::Ok(0)]", "taint", "manual"] + +neutralModel(path, kind, provenance) +~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + +Prevents generated or inherited models of the specified category from being applied to the callable. + +- **path**: Canonical path of the function or method. +- **kind**: The category of model to suppress: ``source``, ``sink``, or ``summary``. +- **provenance**: Origin of the model. Use ``manual`` for custom models. + +Example: + +.. code-block:: yaml + + extensions: + - addsTo: + pack: codeql/rust-all + extensible: neutralModel + data: + - ["::map", "sink", "manual"] + +Access paths +------------ + +The ``input`` and ``output`` columns consist of a ``.``-separated list of access path tokens, which is evaluated from left to right, with each step selecting a new set of values derived from the previous set. + +The following tokens are commonly used: + +- **Argument[**\ ``n``\ **]** selects the ``n``-th argument to a call (0-indexed). May be a range of the form ``x..y`` (inclusive) and/or a comma-separated list. +- **Argument[self]** selects the receiver (``self``) of a method call. +- **Parameter[**\ ``n``\ **]** selects the ``n``-th parameter of a callback. May be a range of the form ``x..y`` (inclusive) and/or a comma-separated list. +- **ReturnValue** selects the return value of a function call. +- **Element** selects an element in a collection (such as a ``Vec``, ``HashMap``, or iterator). +- **Field[**\ ``type::field``\ **]** selects a named field of a struct or enum variant. For example, ``Field[core::option::Option::Some(0)]`` selects the first positional field of the ``Some`` variant. +- **Field[**\ ``type(i)``\ **]** selects the ``i``-th positional field of a tuple struct or tuple enum variant. For example, ``Field[core::result::Result::Ok(0)]`` selects the value inside ``Ok``. +- **Field[**\ ``i``\ **]** selects the ``i``-th element of a tuple. +- **Reference** follows through a reference (``&T`` or ``&mut T``) to reach the referenced value. +- **Future** follows through a ``Future`` to reach the value that will be available after ``.await``. + +Additional notes about the syntax: + +- Multiple operands may be given to a single token, as a shorthand for the union of the operands. For example, ``Argument[0,1]`` matches both ``Argument[0]`` and ``Argument[1]``. +- Numeric operands to ``Argument`` and ``Parameter`` may be given as a range. For example, ``Argument[0..2]`` matches arguments 0, 1, and 2. + +Kinds +----- + +Source kinds +~~~~~~~~~~~~ + +See ":ref:`Threat models `" for available source kinds. + +Commonly used source kinds for Rust include: + +- **remote**: A source of data from a remote network request. Most taint-tracking queries use this source kind. +- **commandargs**: A source of data from command-line arguments. +- **environment**: A source of data from environment variables. +- **file**: A source of data from local files. +- **database**: A source of data from a database read. + +Sink kinds +~~~~~~~~~~ + +Unlike sources, sinks tend to be highly query-specific, rarely affecting more than one or two queries. Not every query supports customizable sinks. If the following sinks are not suitable for your use case, you should add a new query. + +Commonly used sink kinds for Rust include: + +- **sql-injection**: A sink for SQL injection, such as an argument to ``sqlx::query``. +- **path-injection**: A sink for path injection in a file system access, such as an argument to ``std::fs::read``. +- **log-injection**: A sink for log injection, such as an argument to a logging macro. +- **html-injection**: A sink for HTML injection (cross-site scripting), such as a response body. +- **command-injection**: A sink for command injection, such as an argument to ``std::process::Command``. +- **request-url**: A sink for server-side request forgery, such as a URL passed to an HTTP client. +- **regex-use**: A sink for regex injection, such as a pattern passed to a regex constructor. + +Summary kinds +~~~~~~~~~~~~~ + +- **taint**: A summary that propagates taint. This means the output is not necessarily equal to the input, but it was derived from the input in an unrestrictive way. An attacker who controls the input will have significant control over the output as well. +- **value**: A summary that preserves the value of the input or creates a copy of the input such that all of its properties are preserved. From 08aced85ba8b8e773f482050ba00f119423bcff0 Mon Sep 17 00:00:00 2001 From: Florin Coada Date: Fri, 17 Apr 2026 11:09:46 +0100 Subject: [PATCH 015/260] Add barrier and barrier guard documentation for Rust Add barrierModel and barrierGuardModel sections to the Rust library models documentation, following the pattern established in PR #21523 for other languages. Includes: - New extensible predicate descriptions in the overview - Example: barrier for SQL injection using escape_sql - Example: barrier guard for path injection using is_safe_path - Reference material for both barrierModel and barrierGuardModel Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> --- .../customizing-library-models-for-rust.rst | 114 ++++++++++++++++++ 1 file changed, 114 insertions(+) diff --git a/docs/codeql/codeql-language-guides/customizing-library-models-for-rust.rst b/docs/codeql/codeql-language-guides/customizing-library-models-for-rust.rst index 7e1a0d7aead0..3a62f1a1a396 100644 --- a/docs/codeql/codeql-language-guides/customizing-library-models-for-rust.rst +++ b/docs/codeql/codeql-language-guides/customizing-library-models-for-rust.rst @@ -54,6 +54,8 @@ The CodeQL library for Rust analysis exposes the following extensible predicates - ``sinkModel(path, input, kind, provenance)``. This is used to model sinks where tainted data may be used in a way that makes the code vulnerable. - ``summaryModel(path, input, output, kind, provenance)``. This is used to model flow through elements. - ``neutralModel(path, kind, provenance)``. This is similar to a summary model but used to indicate that a callable has no flow for a given category. Manual neutral models (those with a provenance such as ``manual``) can be used to override generated summary, source, or sink models (those with a provenance such as ``df-generated``), so that the generated model will be ignored. +- ``barrierModel(path, output, kind, provenance)``. This is used to model barriers, which are elements that stop the flow of taint. +- ``barrierGuardModel(path, input, acceptingValue, kind, provenance)``. This is used to model barrier guards, which are elements that can stop the flow of taint depending on a conditional check. The extensible predicates are populated using the models defined in data extension files. @@ -319,6 +321,75 @@ Since we are adding a neutral model, we need to add a tuple to the ``neutralMode - The second value ``sink`` is the category of model to suppress. This means that any generated sink model for ``Option::map`` will be ignored. The category can be ``source``, ``sink``, or ``summary``. - The third value ``manual`` is the provenance of the neutral model. +Example: Add a barrier for SQL injection +~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + +This example shows how to model a barrier that stops the flow of taint. A barrier model is used to define that the flow of taint stops at the modeled element for the specified kind of query. + +Consider a hypothetical function ``my_crate::sanitize::escape_sql`` which escapes a SQL string, making it safe to use in a SQL query. + +.. code-block:: rust + + fn run_query(pool: &sqlx::PgPool, user_input: &str) { + let safe_input = my_crate::sanitize::escape_sql(user_input); // The return value is safe to use in SQL. + let query = format!("SELECT * FROM users WHERE name = '{}'", safe_input); + // ... + } + +We need to add a tuple to the ``barrierModel``\(path, output, kind, provenance) extensible predicate by updating a data extension file. + +.. code-block:: yaml + + extensions: + - addsTo: + pack: codeql/rust-all + extensible: barrierModel + data: + - ["my_crate::sanitize::escape_sql", "ReturnValue", "sql-injection", "manual"] + +Since we are adding a barrier, we need to add a tuple to the ``barrierModel`` extensible predicate. + +- The first value ``my_crate::sanitize::escape_sql`` is the canonical path of the function. +- The second value ``ReturnValue`` is the access path to the output of the barrier, which means that the return value is considered sanitized. +- The third value ``sql-injection`` is the kind of the barrier. The barrier kind must match the kind used in the query where the barrier should take effect. In this case, it matches the ``sql-injection`` sink kind used by SQL injection queries. +- The fourth value ``manual`` is the provenance of the barrier. + +Example: Add a barrier guard +~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + +This example shows how to model a barrier guard that stops the flow of taint when a conditional check is performed on data. +A barrier guard model is used when a function returns a boolean that indicates whether the data is safe to use. + +Consider a hypothetical function ``my_crate::validate::is_safe_path`` which returns ``true`` when the given path is safe to use in a file system access. + +.. code-block:: rust + + fn read_file(user_path: &str) { + if my_crate::validate::is_safe_path(user_path) { // The check guards the use, so the input is safe. + let contents = std::fs::read_to_string(user_path).unwrap(); + // ... + } + } + +We need to add a tuple to the ``barrierGuardModel``\(path, input, acceptingValue, kind, provenance) extensible predicate by updating a data extension file. + +.. code-block:: yaml + + extensions: + - addsTo: + pack: codeql/rust-all + extensible: barrierGuardModel + data: + - ["my_crate::validate::is_safe_path", "Argument[0]", "true", "path-injection", "manual"] + +Since we are adding a barrier guard, we need to add a tuple to the ``barrierGuardModel`` extensible predicate. + +- The first value ``my_crate::validate::is_safe_path`` is the canonical path of the function. +- The second value ``Argument[0]`` is the access path to the input whose flow is blocked. In this case, the first argument to the function (``user_path`` in the example). +- The third value ``true`` is the accepting value of the barrier guard. This is the value that the conditional check must return for the barrier to apply. In this case, when ``is_safe_path`` returns ``true``, the input is considered safe. +- The fourth value ``path-injection`` is the kind of the barrier guard. The barrier guard kind must match the kind used in the query where the barrier guard should take effect. In this case, it matches the ``path-injection`` sink kind used by tainted path queries. +- The fifth value ``manual`` is the provenance of the barrier guard. + .. _threat-models-rust: Threat models @@ -418,6 +489,49 @@ Example: data: - ["::map", "sink", "manual"] +barrierModel(path, output, kind, provenance) +~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + +Adds a new barrier that stops the flow of taint at the specified element. + +- **path**: Canonical path of the function or method. +- **output**: Access path leading to the output of the barrier (the value that is considered sanitized). +- **kind**: Kind of barrier to add. The barrier kind must match the kind used in the query where the barrier should take effect. +- **provenance**: Origin of the model. Use ``manual`` for custom models. + +Example: + +.. code-block:: yaml + + extensions: + - addsTo: + pack: codeql/rust-all + extensible: barrierModel + data: + - ["my_crate::sanitize::escape_sql", "ReturnValue", "sql-injection", "manual"] + +barrierGuardModel(path, input, acceptingValue, kind, provenance) +~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + +Adds a new barrier guard that stops the flow of taint when a conditional check is performed on data. + +- **path**: Canonical path of the function or method. +- **input**: Access path to the input whose flow is blocked. +- **acceptingValue**: The value that the conditional check must return for the barrier to apply. Usually ``"true"`` or ``"false"``. +- **kind**: Kind of barrier guard to add. The barrier guard kind must match the kind used in the query where the barrier guard should take effect. +- **provenance**: Origin of the model. Use ``manual`` for custom models. + +Example: + +.. code-block:: yaml + + extensions: + - addsTo: + pack: codeql/rust-all + extensible: barrierGuardModel + data: + - ["my_crate::validate::is_safe_path", "Argument[0]", "true", "path-injection", "manual"] + Access paths ------------ From 73695db6681e74d7cd11bb43a09b49f1a05a6eeb Mon Sep 17 00:00:00 2001 From: Florin Coada Date: Fri, 17 Apr 2026 15:11:15 +0100 Subject: [PATCH 016/260] Update docs/codeql/codeql-language-guides/customizing-library-models-for-rust.rst Co-authored-by: Geoffrey White <40627776+geoffw0@users.noreply.github.com> --- .../customizing-library-models-for-rust.rst | 4 ---- 1 file changed, 4 deletions(-) diff --git a/docs/codeql/codeql-language-guides/customizing-library-models-for-rust.rst b/docs/codeql/codeql-language-guides/customizing-library-models-for-rust.rst index 3a62f1a1a396..2e6edeec6fb3 100644 --- a/docs/codeql/codeql-language-guides/customizing-library-models-for-rust.rst +++ b/docs/codeql/codeql-language-guides/customizing-library-models-for-rust.rst @@ -59,10 +59,6 @@ The CodeQL library for Rust analysis exposes the following extensible predicates The extensible predicates are populated using the models defined in data extension files. -.. note:: - - Unlike some other CodeQL languages (such as Python, Ruby, and JavaScript), Rust does not use a ``typeModel`` extensible predicate. Rust models identify callables directly by their canonical path. - Canonical paths ~~~~~~~~~~~~~~~ From 7c9dd05edd46ad461a033be6190901ca3ffd27c2 Mon Sep 17 00:00:00 2001 From: Florin Coada Date: Fri, 17 Apr 2026 15:11:58 +0100 Subject: [PATCH 017/260] Update docs/codeql/codeql-language-guides/codeql-for-rust.rst Co-authored-by: Geoffrey White <40627776+geoffw0@users.noreply.github.com> --- docs/codeql/codeql-language-guides/codeql-for-rust.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/codeql/codeql-language-guides/codeql-for-rust.rst b/docs/codeql/codeql-language-guides/codeql-for-rust.rst index 899d64de645e..f6b1691a771a 100644 --- a/docs/codeql/codeql-language-guides/codeql-for-rust.rst +++ b/docs/codeql/codeql-language-guides/codeql-for-rust.rst @@ -20,4 +20,4 @@ Experiment and learn how to write effective and efficient queries for CodeQL dat - :doc:`Analyzing data flow in Rust `: You can use CodeQL to track the flow of data through a Rust program to places where the data is used. -- :doc:`Customizing library models for Rust `: You can model the functions and methods that control data flow in any framework or library by using data extension files. +- :doc:`Customizing library models for Rust `: You can model frameworks and libraries that your codebase depends on using data extensions and publish them as CodeQL model packs. From 1c8b90e9b1525e999e55b130918d19919fbd835d Mon Sep 17 00:00:00 2001 From: Florin Coada Date: Fri, 17 Apr 2026 15:14:20 +0100 Subject: [PATCH 018/260] Add model pack publishing section to Rust docs Add the 'Publish data extension files in a CodeQL model pack to share' section, matching the structure used in C#, C++, Go, and Java docs. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> --- .../customizing-library-models-for-rust.rst | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/docs/codeql/codeql-language-guides/customizing-library-models-for-rust.rst b/docs/codeql/codeql-language-guides/customizing-library-models-for-rust.rst index 2e6edeec6fb3..2ef101de1b01 100644 --- a/docs/codeql/codeql-language-guides/customizing-library-models-for-rust.rst +++ b/docs/codeql/codeql-language-guides/customizing-library-models-for-rust.rst @@ -45,6 +45,11 @@ Each YAML file may contain one or more top-level extensions. Data extensions use union semantics, which means that the tuples of all extensions for a single extensible predicate are combined, duplicates are removed, and all of the remaining tuples are queryable by referencing the extensible predicate. +Publish data extension files in a CodeQL model pack to share +~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + +You can group one or more data extension files into a CodeQL model pack and publish it to the GitHub Container Registry. This makes it easy for anyone to download the model pack and use it to extend their analysis. For more information, see `Creating a CodeQL model pack `__ and `Publishing and using CodeQL packs `__ in the CodeQL CLI documentation. + Extensible predicates used to create custom models in Rust ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ From c336a1595d5b8d82e289c58e835e2d3c7d9bf81b Mon Sep 17 00:00:00 2001 From: MarkLee131 Date: Tue, 21 Apr 2026 09:04:33 +1000 Subject: [PATCH 019/260] Java: split read-only path sinks into path-injection[read] Introduce a new Models-as-Data sink sub-kind path-injection[read] for models that only read from or inspect a path. The general java/path-injection query and its PathInjectionSanitizer barrier continue to consider both path-injection and path-injection[read] sinks, so no alerts are lost. The java/zipslip query deliberately selects only path-injection sinks, since read-only accesses such as ClassLoader.getResource or FileInputStream are outside the archive extraction threat model. Addresses https://github.com/github/codeql/issues/21606 along the lines proposed on the issue thread: prefer path-injection[read] over a [create] sub-kind so that miscategorizing a sink causes a false positive (easy to spot) rather than a false negative. - shared/mad/codeql/mad/ModelValidation.qll: allow path-injection[...] as a valid sink kind. - java/ql/lib/ext/*.model.yml: relabel the models that PR #12916 migrated from the historical read-file kind (plus the newer ClassLoader resource-lookup variants that share the same read-only semantics). - java/ql/lib/semmle/code/java/security/TaintedPathQuery.qll and PathSanitizer.qll: select both path-injection and path-injection[read] sinks/barriers. - java/ql/lib/semmle/code/java/security/ZipSlipQuery.qll: keep only path-injection, with a comment explaining why path-injection[read] is excluded. - java/ql/test/query-tests/security/CWE-022/semmle/tests/ZipTest.java: add m7 regression covering the Dubbo-style classpath lookup from issue #21606 and assert no alert is produced. - Update TaintedPath.expected for the renamed kinds in the models list. - Add change-notes under java/ql/lib/change-notes and java/ql/src/change-notes. --- .../2026-04-21-path-injection-read-subkind.md | 4 ++ .../ql/lib/ext/com.google.common.io.model.yml | 10 ++-- .../ext/com.thoughtworks.xstream.model.yml | 2 +- java/ql/lib/ext/hudson.model.model.yml | 4 +- java/ql/lib/ext/hudson.model.yml | 10 ++-- java/ql/lib/ext/hudson.scm.model.yml | 6 +-- java/ql/lib/ext/hudson.util.jna.model.yml | 2 +- java/ql/lib/ext/hudson.util.model.yml | 12 ++--- ...tty.handler.codec.http.multipart.model.yml | 2 +- .../ql/lib/ext/io.netty.handler.ssl.model.yml | 4 +- .../lib/ext/io.netty.handler.stream.model.yml | 2 +- java/ql/lib/ext/java.io.model.yml | 16 +++--- java/ql/lib/ext/java.lang.model.yml | 18 +++---- java/ql/lib/ext/java.nio.file.model.yml | 24 ++++----- java/ql/lib/ext/javax.servlet.model.yml | 2 +- java/ql/lib/ext/kotlin.io.model.yml | 6 +-- .../lib/ext/org.apache.commons.io.model.yml | 2 +- .../lib/ext/org.apache.commons.net.model.yml | 6 +-- .../ql/lib/ext/org.apache.tools.ant.model.yml | 10 ++-- .../org.apache.tools.ant.taskdefs.model.yml | 6 +-- ...org.kohsuke.stapler.framework.io.model.yml | 2 +- .../ext/org.springframework.util.model.yml | 2 +- .../code/java/security/PathSanitizer.qll | 4 +- .../code/java/security/TaintedPathQuery.qll | 2 +- .../code/java/security/ZipSlipQuery.qll | 5 ++ .../2026-04-21-zipslip-exclude-read-sinks.md | 4 ++ .../CWE-022/semmle/tests/TaintedPath.expected | 52 +++++++++---------- .../CWE-022/semmle/tests/ZipTest.java | 12 +++++ shared/mad/codeql/mad/ModelValidation.qll | 5 ++ 29 files changed, 134 insertions(+), 102 deletions(-) create mode 100644 java/ql/lib/change-notes/2026-04-21-path-injection-read-subkind.md create mode 100644 java/ql/src/change-notes/2026-04-21-zipslip-exclude-read-sinks.md diff --git a/java/ql/lib/change-notes/2026-04-21-path-injection-read-subkind.md b/java/ql/lib/change-notes/2026-04-21-path-injection-read-subkind.md new file mode 100644 index 000000000000..bcd9479d2afd --- /dev/null +++ b/java/ql/lib/change-notes/2026-04-21-path-injection-read-subkind.md @@ -0,0 +1,4 @@ +--- +category: minorAnalysis +--- +* Introduced a new sink kind `path-injection[read]` for Models-as-Data rows that only read from a path (such as `ClassLoader.getResource`, `FileInputStream`, `FileReader`, `Files.readAllBytes`, and related APIs). The general `java/path-injection` query continues to consider both `path-injection` and `path-injection[read]` sinks. diff --git a/java/ql/lib/ext/com.google.common.io.model.yml b/java/ql/lib/ext/com.google.common.io.model.yml index 8ce06de61b96..a8d2690bf00b 100644 --- a/java/ql/lib/ext/com.google.common.io.model.yml +++ b/java/ql/lib/ext/com.google.common.io.model.yml @@ -5,12 +5,12 @@ extensions: data: - ["com.google.common.io", "Files", False, "asByteSink", "(File,FileWriteMode[])", "", "Argument[0]", "path-injection", "ai-manual"] - ["com.google.common.io", "Files", False, "asCharSink", "(File,Charset,FileWriteMode[])", "", "Argument[0]", "path-injection", "ai-manual"] - - ["com.google.common.io", "Files", False, "asCharSource", "(File,Charset)", "", "Argument[0]", "path-injection", "ai-manual"] - - ["com.google.common.io", "Files", False, "copy", "(File,OutputStream)", "", "Argument[0]", "path-injection", "ai-manual"] + - ["com.google.common.io", "Files", False, "asCharSource", "(File,Charset)", "", "Argument[0]", "path-injection[read]", "ai-manual"] + - ["com.google.common.io", "Files", False, "copy", "(File,OutputStream)", "", "Argument[0]", "path-injection[read]", "ai-manual"] - ["com.google.common.io", "Files", False, "newWriter", "(File,Charset)", "", "Argument[0]", "path-injection", "ai-manual"] - - ["com.google.common.io", "Files", False, "readLines", "(File,Charset)", "", "Argument[0]", "path-injection", "ai-manual"] - - ["com.google.common.io", "Files", False, "toByteArray", "(File)", "", "Argument[0]", "path-injection", "ai-manual"] - - ["com.google.common.io", "Files", False, "toString", "(File,Charset)", "", "Argument[0]", "path-injection", "ai-manual"] + - ["com.google.common.io", "Files", False, "readLines", "(File,Charset)", "", "Argument[0]", "path-injection[read]", "ai-manual"] + - ["com.google.common.io", "Files", False, "toByteArray", "(File)", "", "Argument[0]", "path-injection[read]", "ai-manual"] + - ["com.google.common.io", "Files", False, "toString", "(File,Charset)", "", "Argument[0]", "path-injection[read]", "ai-manual"] - ["com.google.common.io", "Files", False, "write", "(byte[],File)", "", "Argument[0]", "file-content-store", "ai-manual"] - ["com.google.common.io", "Files", False, "write", "(byte[],File)", "", "Argument[1]", "path-injection", "manual"] - addsTo: diff --git a/java/ql/lib/ext/com.thoughtworks.xstream.model.yml b/java/ql/lib/ext/com.thoughtworks.xstream.model.yml index c34bb91d42c9..62e17590ebfd 100644 --- a/java/ql/lib/ext/com.thoughtworks.xstream.model.yml +++ b/java/ql/lib/ext/com.thoughtworks.xstream.model.yml @@ -3,4 +3,4 @@ extensions: pack: codeql/java-all extensible: sinkModel data: - - ["com.thoughtworks.xstream", "XStream", True, "fromXML", "(File)", "", "Argument[0]", "path-injection", "ai-manual"] + - ["com.thoughtworks.xstream", "XStream", True, "fromXML", "(File)", "", "Argument[0]", "path-injection[read]", "ai-manual"] diff --git a/java/ql/lib/ext/hudson.model.model.yml b/java/ql/lib/ext/hudson.model.model.yml index 253f26fbd24e..b52f7195b2b2 100644 --- a/java/ql/lib/ext/hudson.model.model.yml +++ b/java/ql/lib/ext/hudson.model.model.yml @@ -5,8 +5,8 @@ extensions: data: - ["hudson.model", "DownloadService", True, "loadJSON", "(URL)", "", "Argument[0]", "request-forgery", "ai-manual"] - ["hudson.model", "DownloadService", True, "loadJSONHTML", "(URL)", "", "Argument[0]", "request-forgery", "ai-manual"] - - ["hudson.model", "DirectoryBrowserSupport", False, "DirectoryBrowserSupport", "(ModelObject,FilePath,String,String,boolean)", "", "Argument[1]", "path-injection", "ai-manual"] - - ["hudson.model", "Items", True, "load", "(ItemGroup,File)", "", "Argument[1]", "path-injection", "ai-manual"] + - ["hudson.model", "DirectoryBrowserSupport", False, "DirectoryBrowserSupport", "(ModelObject,FilePath,String,String,boolean)", "", "Argument[1]", "path-injection[read]", "ai-manual"] + - ["hudson.model", "Items", True, "load", "(ItemGroup,File)", "", "Argument[1]", "path-injection[read]", "ai-manual"] - ["hudson.model", "UpdateCenter$UpdateCenterConfiguration", True, "download", "(UpdateCenter$DownloadJob,URL)", "", "Argument[1]", "request-forgery", "ai-manual"] - ["hudson.model", "UpdateCenter$UpdateCenterConfiguration", True, "install", "(UpdateCenter$DownloadJob,File,File)", "", "Argument[1]", "path-injection", "ai-manual"] - ["hudson.model", "UpdateCenter$UpdateCenterConfiguration", True, "install", "(UpdateCenter$DownloadJob,File,File)", "", "Argument[2]", "path-injection", "ai-manual"] diff --git a/java/ql/lib/ext/hudson.model.yml b/java/ql/lib/ext/hudson.model.yml index 0dfff091fcd4..da2753c86bdd 100644 --- a/java/ql/lib/ext/hudson.model.yml +++ b/java/ql/lib/ext/hudson.model.yml @@ -6,14 +6,14 @@ extensions: - ["hudson", "FilePath", False, "tar", "(OutputStream,String)", "", "Argument[0]", "path-injection", "ai-manual"] - ["hudson", "FilePath", False, "unzipFrom", "(InputStream)", "", "Argument[0]", "path-injection", "ai-manual"] - ["hudson", "FilePath", True, "copyFrom", "", "", "Argument[this]", "path-injection", "manual"] - - ["hudson", "FilePath", True, "copyFrom", "(FilePath)", "", "Argument[0]", "path-injection", "manual"] - - ["hudson", "FilePath", True, "copyFrom", "(URL)", "", "Argument[0]", "path-injection", "manual"] - - ["hudson", "FilePath", True, "copyFrom", "(FileItem)", "", "Argument[0]", "path-injection", "ai-manual"] + - ["hudson", "FilePath", True, "copyFrom", "(FilePath)", "", "Argument[0]", "path-injection[read]", "manual"] + - ["hudson", "FilePath", True, "copyFrom", "(URL)", "", "Argument[0]", "path-injection[read]", "manual"] + - ["hudson", "FilePath", True, "copyFrom", "(FileItem)", "", "Argument[0]", "path-injection[read]", "ai-manual"] - ["hudson", "FilePath", True, "copyRecursiveTo", "", "", "Argument[this]", "path-injection", "ai-manual"] - ["hudson", "FilePath", True, "copyRecursiveTo", "(DirScanner,FilePath,String,FilePath$TarCompression)", "", "Argument[1]", "path-injection", "ai-manual"] - ["hudson", "FilePath", True, "copyRecursiveTo", "(DirScanner,FilePath,String)", "", "Argument[1]", "path-injection", "ai-manual"] - ["hudson", "FilePath", True, "copyRecursiveTo", "(String,FilePath)", "", "Argument[1]", "path-injection", "ai-manual"] - - ["hudson", "FilePath", True, "copyRecursiveTo", "(String,String,FilePath)", "", "Argument[0]", "path-injection", "ai-manual"] + - ["hudson", "FilePath", True, "copyRecursiveTo", "(String,String,FilePath)", "", "Argument[0]", "path-injection[read]", "ai-manual"] - ["hudson", "FilePath", True, "copyRecursiveTo", "(String,String,FilePath)", "", "Argument[2]", "path-injection", "ai-manual"] - ["hudson", "FilePath", True, "copyTo", "", "", "Argument[this]", "path-injection", "manual"] - ["hudson", "FilePath", True, "copyTo", "(FilePath)", "", "Argument[0]", "path-injection", "ai-manual"] @@ -21,7 +21,7 @@ extensions: - ["hudson", "FilePath", True, "copyToWithPermission", "(FilePath)", "", "Argument[0]", "path-injection", "manual"] - ["hudson", "FilePath", True, "exists", "()", "", "Argument[this]", "path-injection", "manual"] - ["hudson", "FilePath", True, "installIfNecessaryFrom", "(URL,TaskListener,String)", "", "Argument[0]", "request-forgery", "ai-manual"] - - ["hudson", "FilePath", True, "newInputStreamDenyingSymlinkAsNeeded", "(File,String,boolean)", "", "Argument[0]", "path-injection", "ai-manual"] + - ["hudson", "FilePath", True, "newInputStreamDenyingSymlinkAsNeeded", "(File,String,boolean)", "", "Argument[0]", "path-injection[read]", "ai-manual"] - ["hudson", "FilePath", True, "openInputStream", "(File,OpenOption[])", "", "Argument[0]", "path-injection", "manual"] - ["hudson", "FilePath", True, "read", "", "", "Argument[this]", "path-injection", "manual"] - ["hudson", "FilePath", True, "read", "(FilePath,OpenOption[])", "", "Argument[0]", "path-injection", "manual"] diff --git a/java/ql/lib/ext/hudson.scm.model.yml b/java/ql/lib/ext/hudson.scm.model.yml index dc6e0bfa5bb8..a6cf1532b6b4 100644 --- a/java/ql/lib/ext/hudson.scm.model.yml +++ b/java/ql/lib/ext/hudson.scm.model.yml @@ -3,11 +3,11 @@ extensions: pack: codeql/java-all extensible: sinkModel data: - - ["hudson.scm", "ChangeLogParser", True, "parse", "(AbstractBuild,File)", "", "Argument[1]", "path-injection", "ai-manual"] - - ["hudson.scm", "ChangeLogParser", True, "parse", "(Run,RepositoryBrowser,File)", "", "Argument[2]", "path-injection", "ai-manual"] + - ["hudson.scm", "ChangeLogParser", True, "parse", "(AbstractBuild,File)", "", "Argument[1]", "path-injection[read]", "ai-manual"] + - ["hudson.scm", "ChangeLogParser", True, "parse", "(Run,RepositoryBrowser,File)", "", "Argument[2]", "path-injection[read]", "ai-manual"] - ["hudson.scm", "SCM", True, "checkout", "(AbstractBuild,Launcher,FilePath,BuildListener,File)", "", "Argument[2]", "path-injection", "ai-manual"] - ["hudson.scm", "SCM", True, "checkout", "(Run,Launcher,FilePath,TaskListener,File,SCMRevisionState)", "", "Argument[2]", "path-injection", "ai-manual"] - - ["hudson.scm", "SCM", True, "compareRemoteRevisionWith", "(Job,Launcher,FilePath,TaskListener,SCMRevisionState)", "", "Argument[2]", "path-injection", "ai-manual"] + - ["hudson.scm", "SCM", True, "compareRemoteRevisionWith", "(Job,Launcher,FilePath,TaskListener,SCMRevisionState)", "", "Argument[2]", "path-injection[read]", "ai-manual"] - addsTo: pack: codeql/java-all extensible: summaryModel diff --git a/java/ql/lib/ext/hudson.util.jna.model.yml b/java/ql/lib/ext/hudson.util.jna.model.yml index c840d0f47256..11efc9ace86b 100644 --- a/java/ql/lib/ext/hudson.util.jna.model.yml +++ b/java/ql/lib/ext/hudson.util.jna.model.yml @@ -3,6 +3,6 @@ extensions: pack: codeql/java-all extensible: sinkModel data: - - ["hudson.util.jna", "GNUCLibrary", True, "open", "(String,int)", "", "Argument[0]", "path-injection", "ai-manual"] + - ["hudson.util.jna", "GNUCLibrary", True, "open", "(String,int)", "", "Argument[0]", "path-injection[read]", "ai-manual"] - ["hudson.util.jna", "Kernel32", True, "MoveFileExA", "(String,String,int)", "", "Argument[0]", "path-injection", "ai-manual"] - ["hudson.util.jna", "Kernel32", True, "MoveFileExA", "(String,String,int)", "", "Argument[1]", "path-injection", "ai-manual"] diff --git a/java/ql/lib/ext/hudson.util.model.yml b/java/ql/lib/ext/hudson.util.model.yml index 1ac3aa8c10ae..0fcf7b0cbfb9 100644 --- a/java/ql/lib/ext/hudson.util.model.yml +++ b/java/ql/lib/ext/hudson.util.model.yml @@ -6,7 +6,7 @@ extensions: - ["hudson.util", "AtomicFileWriter", True, "AtomicFileWriter", "(File)", "", "Argument[0]", "path-injection", "ai-manual"] - ["hudson.util", "AtomicFileWriter", True, "AtomicFileWriter", "(Path,Charset,boolean,boolean)", "", "Argument[0]", "path-injection", "ai-manual"] - ["hudson.util", "AtomicFileWriter", True, "AtomicFileWriter", "(Path,Charset)", "", "Argument[0]", "path-injection", "ai-manual"] - - ["hudson.util", "ClasspathBuilder", True, "add", "(FilePath)", "", "Argument[0]", "path-injection", "ai-manual"] + - ["hudson.util", "ClasspathBuilder", True, "add", "(FilePath)", "", "Argument[0]", "path-injection[read]", "ai-manual"] - ["hudson.util", "FormValidation", True, "errorWithMarkup", "", "", "Argument[0]", "html-injection", "manual"] - ["hudson.util", "FormValidation", True, "okWithMarkup", "", "", "Argument[0]", "html-injection", "manual"] - ["hudson.util", "FormValidation", True, "respond", "", "", "Argument[1]", "html-injection", "manual"] @@ -14,11 +14,11 @@ extensions: - ["hudson.util", "IOUtils", True, "mkdirs", "(File)", "", "Argument[0]", "path-injection", "ai-manual"] - ["hudson.util", "StreamTaskListener", True, "StreamTaskListener", "(File,boolean,Charset)", "", "Argument[0]", "path-injection", "ai-manual"] - ["hudson.util", "TextFile", True, "delete", "()", "", "Argument[this]", "path-injection", "manual"] - - ["hudson.util", "TextFile", True, "fastTail", "", "", "Argument[this]", "path-injection", "manual"] - - ["hudson.util", "TextFile", True, "head", "", "", "Argument[this]", "path-injection", "manual"] - - ["hudson.util", "TextFile", True, "lines", "()", "", "Argument[this]", "path-injection", "manual"] - - ["hudson.util", "TextFile", True, "read", "()", "", "Argument[this]", "path-injection", "manual"] - - ["hudson.util", "TextFile", True, "readTrim", "()", "", "Argument[this]", "path-injection", "manual"] + - ["hudson.util", "TextFile", True, "fastTail", "", "", "Argument[this]", "path-injection[read]", "manual"] + - ["hudson.util", "TextFile", True, "head", "", "", "Argument[this]", "path-injection[read]", "manual"] + - ["hudson.util", "TextFile", True, "lines", "()", "", "Argument[this]", "path-injection[read]", "manual"] + - ["hudson.util", "TextFile", True, "read", "()", "", "Argument[this]", "path-injection[read]", "manual"] + - ["hudson.util", "TextFile", True, "readTrim", "()", "", "Argument[this]", "path-injection[read]", "manual"] - ["hudson.util", "TextFile", True, "write", "(String)", "", "Argument[this]", "path-injection", "manual"] - ["hudson.util", "TextFile", True, "write", "(String)", "", "Argument[0]", "file-content-store", "manual"] - ["hudson.util", "HttpResponses", True, "staticResource", "(File)", "", "Argument[0]", "path-injection", "manual"] diff --git a/java/ql/lib/ext/io.netty.handler.codec.http.multipart.model.yml b/java/ql/lib/ext/io.netty.handler.codec.http.multipart.model.yml index a44a2c6c4005..04f1c2ebc19d 100644 --- a/java/ql/lib/ext/io.netty.handler.codec.http.multipart.model.yml +++ b/java/ql/lib/ext/io.netty.handler.codec.http.multipart.model.yml @@ -3,7 +3,7 @@ extensions: pack: codeql/java-all extensible: sinkModel data: - - ["io.netty.handler.codec.http.multipart", "HttpPostRequestEncoder", True, "addBodyFileUpload", "(String,File,String,boolean)", "", "Argument[1]", "path-injection", "ai-manual"] + - ["io.netty.handler.codec.http.multipart", "HttpPostRequestEncoder", True, "addBodyFileUpload", "(String,File,String,boolean)", "", "Argument[1]", "path-injection[read]", "ai-manual"] - addsTo: pack: codeql/java-all extensible: summaryModel diff --git a/java/ql/lib/ext/io.netty.handler.ssl.model.yml b/java/ql/lib/ext/io.netty.handler.ssl.model.yml index f63a7a3906f9..2df3ddd6fbc2 100644 --- a/java/ql/lib/ext/io.netty.handler.ssl.model.yml +++ b/java/ql/lib/ext/io.netty.handler.ssl.model.yml @@ -3,7 +3,7 @@ extensions: pack: codeql/java-all extensible: sinkModel data: - - ["io.netty.handler.ssl", "OpenSslServerContext", False, "OpenSslServerContext", "(File,File)", "", "Argument[0]", "path-injection", "ai-manual"] - - ["io.netty.handler.ssl", "SslContextBuilder", False, "forServer", "(File,File)", "", "Argument[0]", "path-injection", "ai-manual"] + - ["io.netty.handler.ssl", "OpenSslServerContext", False, "OpenSslServerContext", "(File,File)", "", "Argument[0]", "path-injection[read]", "ai-manual"] + - ["io.netty.handler.ssl", "SslContextBuilder", False, "forServer", "(File,File)", "", "Argument[0]", "path-injection[read]", "ai-manual"] - ["io.netty.handler.ssl", "SslContextBuilder", False, "trustManager", "(File)", "", "Argument[0]", "path-injection", "ai-manual"] - ["io.netty.handler.ssl", "SslContextBuilder", False, "trustManager", "(InputStream)", "", "Argument[0]", "path-injection", "ai-manual"] diff --git a/java/ql/lib/ext/io.netty.handler.stream.model.yml b/java/ql/lib/ext/io.netty.handler.stream.model.yml index f4e635f4437e..1a154c59192c 100644 --- a/java/ql/lib/ext/io.netty.handler.stream.model.yml +++ b/java/ql/lib/ext/io.netty.handler.stream.model.yml @@ -3,4 +3,4 @@ extensions: pack: codeql/java-all extensible: sinkModel data: - - ["io.netty.handler.stream", "ChunkedFile", True, "ChunkedFile", "(RandomAccessFile,long,long,int)", "", "Argument[0]", "path-injection", "ai-manual"] + - ["io.netty.handler.stream", "ChunkedFile", True, "ChunkedFile", "(RandomAccessFile,long,long,int)", "", "Argument[0]", "path-injection[read]", "ai-manual"] diff --git a/java/ql/lib/ext/java.io.model.yml b/java/ql/lib/ext/java.io.model.yml index 07e39c9e12f7..a611135f5db2 100644 --- a/java/ql/lib/ext/java.io.model.yml +++ b/java/ql/lib/ext/java.io.model.yml @@ -23,16 +23,16 @@ extensions: - ["java.io", "File", True, "setReadable", "", "", "Argument[this]", "path-injection", "manual"] - ["java.io", "File", True, "setReadOnly", "", "", "Argument[this]", "path-injection", "manual"] - ["java.io", "File", True, "setWritable", "", "", "Argument[this]", "path-injection", "manual"] - - ["java.io", "FileInputStream", True, "FileInputStream", "(File)", "", "Argument[0]", "path-injection", "ai-manual"] - - ["java.io", "FileInputStream", True, "FileInputStream", "(FileDescriptor)", "", "Argument[0]", "path-injection", "manual"] - - ["java.io", "FileInputStream", True, "FileInputStream", "(String)", "", "Argument[0]", "path-injection", "ai-manual"] + - ["java.io", "FileInputStream", True, "FileInputStream", "(File)", "", "Argument[0]", "path-injection[read]", "ai-manual"] + - ["java.io", "FileInputStream", True, "FileInputStream", "(FileDescriptor)", "", "Argument[0]", "path-injection[read]", "manual"] + - ["java.io", "FileInputStream", True, "FileInputStream", "(String)", "", "Argument[0]", "path-injection[read]", "ai-manual"] - ["java.io", "FileOutputStream", False, "FileOutputStream", "", "", "Argument[0]", "path-injection", "manual"] - ["java.io", "FileOutputStream", False, "write", "", "", "Argument[0]", "file-content-store", "manual"] - - ["java.io", "FileReader", True, "FileReader", "(File)", "", "Argument[0]", "path-injection", "ai-manual"] - - ["java.io", "FileReader", True, "FileReader", "(FileDescriptor)", "", "Argument[0]", "path-injection", "manual"] - - ["java.io", "FileReader", True, "FileReader", "(File,Charset)", "", "Argument[0]", "path-injection", "manual"] - - ["java.io", "FileReader", True, "FileReader", "(String)", "", "Argument[0]", "path-injection", "ai-manual"] - - ["java.io", "FileReader", True, "FileReader", "(String,Charset)", "", "Argument[0]", "path-injection", "manual"] + - ["java.io", "FileReader", True, "FileReader", "(File)", "", "Argument[0]", "path-injection[read]", "ai-manual"] + - ["java.io", "FileReader", True, "FileReader", "(FileDescriptor)", "", "Argument[0]", "path-injection[read]", "manual"] + - ["java.io", "FileReader", True, "FileReader", "(File,Charset)", "", "Argument[0]", "path-injection[read]", "manual"] + - ["java.io", "FileReader", True, "FileReader", "(String)", "", "Argument[0]", "path-injection[read]", "ai-manual"] + - ["java.io", "FileReader", True, "FileReader", "(String,Charset)", "", "Argument[0]", "path-injection[read]", "manual"] - ["java.io", "FileSystem", True, "createDirectory", "(File)", "", "Argument[0]", "path-injection", "ai-manual"] - ["java.io", "FileWriter", False, "FileWriter", "", "", "Argument[0]", "path-injection", "manual"] - ["java.io", "PrintStream", False, "PrintStream", "(File)", "", "Argument[0]", "path-injection", "manual"] diff --git a/java/ql/lib/ext/java.lang.model.yml b/java/ql/lib/ext/java.lang.model.yml index 8c2c448f4c2f..9e3d9e8cee54 100644 --- a/java/ql/lib/ext/java.lang.model.yml +++ b/java/ql/lib/ext/java.lang.model.yml @@ -3,15 +3,15 @@ extensions: pack: codeql/java-all extensible: sinkModel data: - - ["java.lang", "Class", False, "getResource", "(String)", "", "Argument[0]", "path-injection", "ai-manual"] - - ["java.lang", "Class", False, "getResourceAsStream", "(String)", "", "Argument[0]", "path-injection", "ai-manual"] - - ["java.lang", "ClassLoader", False, "getSystemResources", "(String)", "", "Argument[0]", "path-injection", "ai-manual"] - - ["java.lang", "ClassLoader", True, "getResource", "(String)", "", "Argument[0]", "path-injection", "ai-manual"] - - ["java.lang", "ClassLoader", True, "getResourceAsStream", "(String)", "", "Argument[0]", "path-injection", "ai-manual"] - - ["java.lang", "ClassLoader", True, "getResources", "(String)", "", "Argument[0]", "path-injection", "ai-manual"] - - ["java.lang", "ClassLoader", True, "getSystemResource", "(String)", "", "Argument[0]", "path-injection", "ai-manual"] - - ["java.lang", "ClassLoader", True, "getSystemResourceAsStream", "(String)", "", "Argument[0]", "path-injection", "ai-manual"] - - ["java.lang", "Module", True, "getResourceAsStream", "(String)", "", "Argument[0]", "path-injection", "ai-manual"] + - ["java.lang", "Class", False, "getResource", "(String)", "", "Argument[0]", "path-injection[read]", "ai-manual"] + - ["java.lang", "Class", False, "getResourceAsStream", "(String)", "", "Argument[0]", "path-injection[read]", "ai-manual"] + - ["java.lang", "ClassLoader", False, "getSystemResources", "(String)", "", "Argument[0]", "path-injection[read]", "ai-manual"] + - ["java.lang", "ClassLoader", True, "getResource", "(String)", "", "Argument[0]", "path-injection[read]", "ai-manual"] + - ["java.lang", "ClassLoader", True, "getResourceAsStream", "(String)", "", "Argument[0]", "path-injection[read]", "ai-manual"] + - ["java.lang", "ClassLoader", True, "getResources", "(String)", "", "Argument[0]", "path-injection[read]", "ai-manual"] + - ["java.lang", "ClassLoader", True, "getSystemResource", "(String)", "", "Argument[0]", "path-injection[read]", "ai-manual"] + - ["java.lang", "ClassLoader", True, "getSystemResourceAsStream", "(String)", "", "Argument[0]", "path-injection[read]", "ai-manual"] + - ["java.lang", "Module", True, "getResourceAsStream", "(String)", "", "Argument[0]", "path-injection[read]", "ai-manual"] - ["java.lang", "ProcessBuilder", False, "command", "(List)", "", "Argument[0]", "command-injection", "manual"] - ["java.lang", "ProcessBuilder", False, "command", "(String[])", "", "Argument[0]", "command-injection", "ai-manual"] - ["java.lang", "ProcessBuilder", False, "directory", "(File)", "", "Argument[0]", "command-injection", "ai-manual"] diff --git a/java/ql/lib/ext/java.nio.file.model.yml b/java/ql/lib/ext/java.nio.file.model.yml index 8d7db676e533..b74bdc4c290a 100644 --- a/java/ql/lib/ext/java.nio.file.model.yml +++ b/java/ql/lib/ext/java.nio.file.model.yml @@ -3,8 +3,8 @@ extensions: pack: codeql/java-all extensible: sinkModel data: - - ["java.nio.file", "Files", False, "copy", "(Path,OutputStream)", "", "Argument[0]", "path-injection", "manual"] - - ["java.nio.file", "Files", False, "copy", "(Path,Path,CopyOption[])", "", "Argument[0]", "path-injection", "manual"] + - ["java.nio.file", "Files", False, "copy", "(Path,OutputStream)", "", "Argument[0]", "path-injection[read]", "manual"] + - ["java.nio.file", "Files", False, "copy", "(Path,Path,CopyOption[])", "", "Argument[0]", "path-injection[read]", "manual"] - ["java.nio.file", "Files", False, "copy", "(Path,Path,CopyOption[])", "", "Argument[1]", "path-injection", "manual"] - ["java.nio.file", "Files", False, "copy", "(InputStream,Path,CopyOption[])", "", "Argument[0]", "file-content-store", "manual"] - ["java.nio.file", "Files", False, "copy", "(InputStream,Path,CopyOption[])", "", "Argument[1]", "path-injection", "manual"] @@ -19,22 +19,22 @@ extensions: - ["java.nio.file", "Files", False, "deleteIfExists", "(Path)", "", "Argument[0]", "path-injection", "ai-manual"] - ["java.nio.file", "Files", False, "getFileStore", "(Path)", "", "Argument[0]", "path-injection", "ai-manual"] # the FileStore class is unlikely to be used for later sanitization - ["java.nio.file", "Files", False, "exists", "(Path,LinkOption[])", "", "Argument[0]", "path-injection", "manual"] - - ["java.nio.file", "Files", False, "lines", "(Path,Charset)", "", "Argument[0]", "path-injection", "ai-manual"] - - ["java.nio.file", "Files", False, "lines", "(Path)", "", "Argument[0]", "path-injection", "ai-manual"] + - ["java.nio.file", "Files", False, "lines", "(Path,Charset)", "", "Argument[0]", "path-injection[read]", "ai-manual"] + - ["java.nio.file", "Files", False, "lines", "(Path)", "", "Argument[0]", "path-injection[read]", "ai-manual"] - ["java.nio.file", "Files", False, "move", "", "", "Argument[1]", "path-injection", "manual"] - ["java.nio.file", "Files", False, "move", "(Path,Path,CopyOption[])", "", "Argument[0]", "path-injection", "ai-manual"] - - ["java.nio.file", "Files", False, "newBufferedReader", "(Path,Charset)", "", "Argument[0]", "path-injection", "ai-manual"] - - ["java.nio.file", "Files", False, "newBufferedReader", "(Path)", "", "Argument[0]", "path-injection", "ai-manual"] + - ["java.nio.file", "Files", False, "newBufferedReader", "(Path,Charset)", "", "Argument[0]", "path-injection[read]", "ai-manual"] + - ["java.nio.file", "Files", False, "newBufferedReader", "(Path)", "", "Argument[0]", "path-injection[read]", "ai-manual"] - ["java.nio.file", "Files", False, "newBufferedWriter", "", "", "Argument[0]", "path-injection", "manual"] - - ["java.nio.file", "Files", False, "newInputStream", "(Path,OpenOption[])", "", "Argument[0]", "path-injection", "ai-manual"] + - ["java.nio.file", "Files", False, "newInputStream", "(Path,OpenOption[])", "", "Argument[0]", "path-injection[read]", "ai-manual"] - ["java.nio.file", "Files", False, "newOutputStream", "", "", "Argument[0]", "path-injection", "manual"] - ["java.nio.file", "Files", False, "notExists", "(Path,LinkOption[])", "", "Argument[0]", "path-injection", "manual"] - ["java.nio.file", "Files", False, "probeContentType", "(Path)", "", "Argument[0]", "path-injection", "ai-manual"] # accesses the file based on user input, but only reads its content type from it - - ["java.nio.file", "Files", False, "readAllBytes", "(Path)", "", "Argument[0]", "path-injection", "ai-manual"] - - ["java.nio.file", "Files", False, "readAllLines", "(Path,Charset)", "", "Argument[0]", "path-injection", "ai-manual"] - - ["java.nio.file", "Files", False, "readAllLines", "(Path)", "", "Argument[0]", "path-injection", "ai-manual"] - - ["java.nio.file", "Files", False, "readString", "(Path,Charset)", "", "Argument[0]", "path-injection", "ai-manual"] - - ["java.nio.file", "Files", False, "readString", "(Path)", "", "Argument[0]", "path-injection", "ai-manual"] + - ["java.nio.file", "Files", False, "readAllBytes", "(Path)", "", "Argument[0]", "path-injection[read]", "ai-manual"] + - ["java.nio.file", "Files", False, "readAllLines", "(Path,Charset)", "", "Argument[0]", "path-injection[read]", "ai-manual"] + - ["java.nio.file", "Files", False, "readAllLines", "(Path)", "", "Argument[0]", "path-injection[read]", "ai-manual"] + - ["java.nio.file", "Files", False, "readString", "(Path,Charset)", "", "Argument[0]", "path-injection[read]", "ai-manual"] + - ["java.nio.file", "Files", False, "readString", "(Path)", "", "Argument[0]", "path-injection[read]", "ai-manual"] - ["java.nio.file", "Files", False, "write", "", "", "Argument[0]", "path-injection", "manual"] - ["java.nio.file", "Files", False, "write", "", "", "Argument[1]", "file-content-store", "manual"] - ["java.nio.file", "Files", False, "writeString", "", "", "Argument[0]", "path-injection", "manual"] diff --git a/java/ql/lib/ext/javax.servlet.model.yml b/java/ql/lib/ext/javax.servlet.model.yml index cbf99dcd97ef..19a6690858ef 100644 --- a/java/ql/lib/ext/javax.servlet.model.yml +++ b/java/ql/lib/ext/javax.servlet.model.yml @@ -14,7 +14,7 @@ extensions: extensible: sinkModel data: - ["javax.servlet", "ServletContext", True, "getResource", "(String)", "", "Argument[0]", "path-injection", "manual"] - - ["javax.servlet", "ServletContext", True, "getResourceAsStream", "(String)", "", "Argument[0]", "path-injection", "ai-manual"] + - ["javax.servlet", "ServletContext", True, "getResourceAsStream", "(String)", "", "Argument[0]", "path-injection[read]", "ai-manual"] - ["javax.servlet", "ServletContext", True, "getRequestDispatcher", "(String)", "", "Argument[0]", "url-forward", "manual"] - ["javax.servlet", "ServletRequest", True, "getRequestDispatcher", "(String)", "", "Argument[0]", "url-forward", "manual"] - addsTo: diff --git a/java/ql/lib/ext/kotlin.io.model.yml b/java/ql/lib/ext/kotlin.io.model.yml index b748e04a292d..550ba509a090 100644 --- a/java/ql/lib/ext/kotlin.io.model.yml +++ b/java/ql/lib/ext/kotlin.io.model.yml @@ -4,9 +4,9 @@ extensions: extensible: sinkModel data: - ["kotlin.io", "FilesKt", False, "deleteRecursively", "(File)", "", "Argument[0]", "path-injection", "ai-manual"] - - ["kotlin.io", "FilesKt", False, "inputStream", "(File)", "", "Argument[0]", "path-injection", "ai-manual"] - - ["kotlin.io", "FilesKt", False, "readBytes", "(File)", "", "Argument[0]", "path-injection", "ai-manual"] - - ["kotlin.io", "FilesKt", False, "readText", "(File,Charset)", "", "Argument[0]", "path-injection", "ai-manual"] + - ["kotlin.io", "FilesKt", False, "inputStream", "(File)", "", "Argument[0]", "path-injection[read]", "ai-manual"] + - ["kotlin.io", "FilesKt", False, "readBytes", "(File)", "", "Argument[0]", "path-injection[read]", "ai-manual"] + - ["kotlin.io", "FilesKt", False, "readText", "(File,Charset)", "", "Argument[0]", "path-injection[read]", "ai-manual"] - addsTo: pack: codeql/java-all extensible: summaryModel diff --git a/java/ql/lib/ext/org.apache.commons.io.model.yml b/java/ql/lib/ext/org.apache.commons.io.model.yml index 9c75ce8b41ad..de4085a44557 100644 --- a/java/ql/lib/ext/org.apache.commons.io.model.yml +++ b/java/ql/lib/ext/org.apache.commons.io.model.yml @@ -36,7 +36,7 @@ extensions: - ["org.apache.commons.io", "FileUtils", True, "copyInputStreamToFile", "(InputStream,File)", "", "Argument[1]", "path-injection", "manual"] - ["org.apache.commons.io", "FileUtils", True, "copyToFile", "(InputStream,File)", "", "Argument[0]", "file-content-store", "ai-manual"] - ["org.apache.commons.io", "FileUtils", True, "copyToFile", "(InputStream,File)", "", "Argument[1]", "path-injection", "manual"] - - ["org.apache.commons.io", "FileUtils", True, "openInputStream", "(File)", "", "Argument[0]", "path-injection", "ai-manual"] + - ["org.apache.commons.io", "FileUtils", True, "openInputStream", "(File)", "", "Argument[0]", "path-injection[read]", "ai-manual"] - ["org.apache.commons.io", "FileUtils", True, "delete", "(File)", "", "Argument[0]", "path-injection", "manual"] - ["org.apache.commons.io", "FileUtils", True, "deleteDirectory", "(File)", "", "Argument[0]", "path-injection", "manual"] - ["org.apache.commons.io", "FileUtils", True, "deleteQuietly", "(File)", "", "Argument[0]", "path-injection", "manual"] diff --git a/java/ql/lib/ext/org.apache.commons.net.model.yml b/java/ql/lib/ext/org.apache.commons.net.model.yml index 0a4c46e6a3c3..689aa873d960 100644 --- a/java/ql/lib/ext/org.apache.commons.net.model.yml +++ b/java/ql/lib/ext/org.apache.commons.net.model.yml @@ -9,9 +9,9 @@ extensions: - ["org.apache.commons.net", "SocketClient", true, "connect", "(String)", "", "Argument[0]", "request-forgery", "manual"] - ["org.apache.commons.net", "SocketClient", true, "connect", "(String,int)", "", "Argument[0]", "request-forgery", "df-manual"] - ["org.apache.commons.net", "SocketClient", true, "connect", "(String,int,InetAddress,int)", "", "Argument[0]", "request-forgery", "manual"] - - ["org.apache.commons.net.util", "KeyManagerUtils", false, "createClientKeyManager", "(File,String)", "", "Argument[0]", "path-injection", "df-manual"] - - ["org.apache.commons.net.util", "KeyManagerUtils", false, "createClientKeyManager", "(File,String,String)", "", "Argument[0]", "path-injection", "df-manual"] - - ["org.apache.commons.net.util", "KeyManagerUtils", false, "createClientKeyManager", "(String,File,String,String,String)", "", "Argument[1]", "path-injection", "df-manual"] + - ["org.apache.commons.net.util", "KeyManagerUtils", false, "createClientKeyManager", "(File,String)", "", "Argument[0]", "path-injection[read]", "df-manual"] + - ["org.apache.commons.net.util", "KeyManagerUtils", false, "createClientKeyManager", "(File,String,String)", "", "Argument[0]", "path-injection[read]", "df-manual"] + - ["org.apache.commons.net.util", "KeyManagerUtils", false, "createClientKeyManager", "(String,File,String,String,String)", "", "Argument[1]", "path-injection[read]", "df-manual"] - addsTo: pack: codeql/java-all extensible: sourceModel diff --git a/java/ql/lib/ext/org.apache.tools.ant.model.yml b/java/ql/lib/ext/org.apache.tools.ant.model.yml index 474429db030f..cd1b6e198a46 100644 --- a/java/ql/lib/ext/org.apache.tools.ant.model.yml +++ b/java/ql/lib/ext/org.apache.tools.ant.model.yml @@ -3,8 +3,8 @@ extensions: pack: codeql/java-all extensible: sinkModel data: - - ["org.apache.tools.ant", "AntClassLoader", True, "addPathComponent", "(File)", "", "Argument[0]", "path-injection", "ai-manual"] - - ["org.apache.tools.ant", "AntClassLoader", True, "AntClassLoader", "(ClassLoader,Project,Path,boolean)", "", "Argument[2]", "path-injection", "ai-manual"] - - ["org.apache.tools.ant", "AntClassLoader", True, "AntClassLoader", "(Project,Path,boolean)", "", "Argument[1]", "path-injection", "ai-manual"] - - ["org.apache.tools.ant", "AntClassLoader", True, "AntClassLoader", "(Project,Path)", "", "Argument[1]", "path-injection", "ai-manual"] - - ["org.apache.tools.ant", "DirectoryScanner", True, "setBasedir", "(File)", "", "Argument[0]", "path-injection", "ai-manual"] + - ["org.apache.tools.ant", "AntClassLoader", True, "addPathComponent", "(File)", "", "Argument[0]", "path-injection[read]", "ai-manual"] + - ["org.apache.tools.ant", "AntClassLoader", True, "AntClassLoader", "(ClassLoader,Project,Path,boolean)", "", "Argument[2]", "path-injection[read]", "ai-manual"] + - ["org.apache.tools.ant", "AntClassLoader", True, "AntClassLoader", "(Project,Path,boolean)", "", "Argument[1]", "path-injection[read]", "ai-manual"] + - ["org.apache.tools.ant", "AntClassLoader", True, "AntClassLoader", "(Project,Path)", "", "Argument[1]", "path-injection[read]", "ai-manual"] + - ["org.apache.tools.ant", "DirectoryScanner", True, "setBasedir", "(File)", "", "Argument[0]", "path-injection[read]", "ai-manual"] diff --git a/java/ql/lib/ext/org.apache.tools.ant.taskdefs.model.yml b/java/ql/lib/ext/org.apache.tools.ant.taskdefs.model.yml index 2695c2881f76..5d930f387e9f 100644 --- a/java/ql/lib/ext/org.apache.tools.ant.taskdefs.model.yml +++ b/java/ql/lib/ext/org.apache.tools.ant.taskdefs.model.yml @@ -3,12 +3,12 @@ extensions: pack: codeql/java-all extensible: sinkModel data: - - ["org.apache.tools.ant.taskdefs", "Copy", True, "addFileset", "(FileSet)", "", "Argument[0]", "path-injection", "ai-manual"] - - ["org.apache.tools.ant.taskdefs", "Copy", True, "setFile", "(File)", "", "Argument[0]", "path-injection", "ai-manual"] + - ["org.apache.tools.ant.taskdefs", "Copy", True, "addFileset", "(FileSet)", "", "Argument[0]", "path-injection[read]", "ai-manual"] + - ["org.apache.tools.ant.taskdefs", "Copy", True, "setFile", "(File)", "", "Argument[0]", "path-injection[read]", "ai-manual"] - ["org.apache.tools.ant.taskdefs", "Copy", True, "setTodir", "(File)", "", "Argument[0]", "path-injection", "ai-manual"] - ["org.apache.tools.ant.taskdefs", "Copy", True, "setTofile", "(File)", "", "Argument[0]", "path-injection", "ai-manual"] - ["org.apache.tools.ant.taskdefs", "Execute", False, "runCommand", "(Task,String[])", "", "Argument[1]", "command-injection", "ai-manual"] - ["org.apache.tools.ant.taskdefs", "Expand", True, "setDest", "(File)", "", "Argument[0]", "path-injection", "ai-manual"] - - ["org.apache.tools.ant.taskdefs", "Expand", True, "setSrc", "(File)", "", "Argument[0]", "path-injection", "ai-manual"] + - ["org.apache.tools.ant.taskdefs", "Expand", True, "setSrc", "(File)", "", "Argument[0]", "path-injection[read]", "ai-manual"] - ["org.apache.tools.ant.taskdefs", "Property", True, "setFile", "(File)", "", "Argument[0]", "path-injection", "manual"] - ["org.apache.tools.ant.taskdefs", "Property", True, "setResource", "(String)", "", "Argument[0]", "path-injection", "manual"] diff --git a/java/ql/lib/ext/org.kohsuke.stapler.framework.io.model.yml b/java/ql/lib/ext/org.kohsuke.stapler.framework.io.model.yml index 49cd049cdfab..de662c040115 100644 --- a/java/ql/lib/ext/org.kohsuke.stapler.framework.io.model.yml +++ b/java/ql/lib/ext/org.kohsuke.stapler.framework.io.model.yml @@ -3,4 +3,4 @@ extensions: pack: codeql/java-all extensible: sinkModel data: - - ["org.kohsuke.stapler.framework.io", "LargeText", True, "LargeText", "(File,Charset,boolean,boolean)", "", "Argument[0]", "path-injection", "ai-manual"] + - ["org.kohsuke.stapler.framework.io", "LargeText", True, "LargeText", "(File,Charset,boolean,boolean)", "", "Argument[0]", "path-injection[read]", "ai-manual"] diff --git a/java/ql/lib/ext/org.springframework.util.model.yml b/java/ql/lib/ext/org.springframework.util.model.yml index fffcebb72f88..a3c5e7448d8a 100644 --- a/java/ql/lib/ext/org.springframework.util.model.yml +++ b/java/ql/lib/ext/org.springframework.util.model.yml @@ -4,7 +4,7 @@ extensions: extensible: sinkModel data: - ["org.springframework.util", "FileCopyUtils", False, "copy", "(byte[],File)", "", "Argument[1]", "path-injection", "manual"] - - ["org.springframework.util", "FileCopyUtils", False, "copy", "(File,File)", "", "Argument[0]", "path-injection", "manual"] + - ["org.springframework.util", "FileCopyUtils", False, "copy", "(File,File)", "", "Argument[0]", "path-injection[read]", "manual"] - ["org.springframework.util", "FileCopyUtils", False, "copy", "(File,File)", "", "Argument[1]", "path-injection", "manual"] - addsTo: diff --git a/java/ql/lib/semmle/code/java/security/PathSanitizer.qll b/java/ql/lib/semmle/code/java/security/PathSanitizer.qll index 788cd5429397..c88ef7187680 100644 --- a/java/ql/lib/semmle/code/java/security/PathSanitizer.qll +++ b/java/ql/lib/semmle/code/java/security/PathSanitizer.qll @@ -290,7 +290,9 @@ private Method getSourceMethod(Method m) { } private class ExternalPathInjectionSanitizer extends PathInjectionSanitizer { - ExternalPathInjectionSanitizer() { barrierNode(this, "path-injection") } + ExternalPathInjectionSanitizer() { + barrierNode(this, ["path-injection", "path-injection[read]"]) + } } /** Holds if `g` is a guard that checks for `..` components. */ diff --git a/java/ql/lib/semmle/code/java/security/TaintedPathQuery.qll b/java/ql/lib/semmle/code/java/security/TaintedPathQuery.qll index 6726bcc35086..cb04f39101ce 100644 --- a/java/ql/lib/semmle/code/java/security/TaintedPathQuery.qll +++ b/java/ql/lib/semmle/code/java/security/TaintedPathQuery.qll @@ -12,7 +12,7 @@ private import semmle.code.java.security.Sanitizers abstract class TaintedPathSink extends DataFlow::Node { } private class DefaultTaintedPathSink extends TaintedPathSink { - DefaultTaintedPathSink() { sinkNode(this, "path-injection") } + DefaultTaintedPathSink() { sinkNode(this, ["path-injection", "path-injection[read]"]) } } /** diff --git a/java/ql/lib/semmle/code/java/security/ZipSlipQuery.qll b/java/ql/lib/semmle/code/java/security/ZipSlipQuery.qll index 9e2e5e4a6c7e..84a94d87dcea 100644 --- a/java/ql/lib/semmle/code/java/security/ZipSlipQuery.qll +++ b/java/ql/lib/semmle/code/java/security/ZipSlipQuery.qll @@ -52,6 +52,11 @@ module ZipSlipFlow = TaintTracking::Global; /** * A sink that represents a file creation, such as a file write, copy or move operation. + * + * This deliberately selects only the `path-injection` sink kind and excludes + * `path-injection[read]`: Zip Slip is an archive-extraction vulnerability, so + * read-only path sinks (e.g. `ClassLoader.getResource`, `FileInputStream`, + * `File.exists`) are outside the threat model. */ private class FileCreationSink extends DataFlow::Node { FileCreationSink() { sinkNode(this, "path-injection") } diff --git a/java/ql/src/change-notes/2026-04-21-zipslip-exclude-read-sinks.md b/java/ql/src/change-notes/2026-04-21-zipslip-exclude-read-sinks.md new file mode 100644 index 000000000000..ee6889240526 --- /dev/null +++ b/java/ql/src/change-notes/2026-04-21-zipslip-exclude-read-sinks.md @@ -0,0 +1,4 @@ +--- +category: minorAnalysis +--- +* The `java/zipslip` query no longer reports archive entry names that flow only to read-only path sinks such as `ClassLoader.getResource`, `FileInputStream`, and `FileReader`. The query now restricts its sinks to the `path-injection` kind and deliberately excludes the new `path-injection[read]` sub-kind, matching the Zip Slip threat model of unsafe archive extraction. diff --git a/java/ql/test/query-tests/security/CWE-022/semmle/tests/TaintedPath.expected b/java/ql/test/query-tests/security/CWE-022/semmle/tests/TaintedPath.expected index aee29733bca4..5a6fc6dab462 100644 --- a/java/ql/test/query-tests/security/CWE-022/semmle/tests/TaintedPath.expected +++ b/java/ql/test/query-tests/security/CWE-022/semmle/tests/TaintedPath.expected @@ -255,20 +255,20 @@ models | 18 | Sink: java.io; File; true; setReadOnly; ; ; Argument[this]; path-injection; manual | | 19 | Sink: java.io; File; true; setReadable; ; ; Argument[this]; path-injection; manual | | 20 | Sink: java.io; File; true; setWritable; ; ; Argument[this]; path-injection; manual | -| 21 | Sink: java.io; FileInputStream; true; FileInputStream; (File); ; Argument[0]; path-injection; ai-manual | -| 22 | Sink: java.io; FileInputStream; true; FileInputStream; (FileDescriptor); ; Argument[0]; path-injection; manual | -| 23 | Sink: java.io; FileInputStream; true; FileInputStream; (String); ; Argument[0]; path-injection; ai-manual | -| 24 | Sink: java.io; FileReader; true; FileReader; (File); ; Argument[0]; path-injection; ai-manual | -| 25 | Sink: java.io; FileReader; true; FileReader; (File,Charset); ; Argument[0]; path-injection; manual | -| 26 | Sink: java.io; FileReader; true; FileReader; (FileDescriptor); ; Argument[0]; path-injection; manual | -| 27 | Sink: java.io; FileReader; true; FileReader; (String); ; Argument[0]; path-injection; ai-manual | -| 28 | Sink: java.io; FileReader; true; FileReader; (String,Charset); ; Argument[0]; path-injection; manual | -| 29 | Sink: java.lang; Class; false; getResource; (String); ; Argument[0]; path-injection; ai-manual | -| 30 | Sink: java.lang; ClassLoader; true; getSystemResourceAsStream; (String); ; Argument[0]; path-injection; ai-manual | -| 31 | Sink: java.lang; Module; true; getResourceAsStream; (String); ; Argument[0]; path-injection; ai-manual | +| 21 | Sink: java.io; FileInputStream; true; FileInputStream; (File); ; Argument[0]; path-injection[read]; ai-manual | +| 22 | Sink: java.io; FileInputStream; true; FileInputStream; (FileDescriptor); ; Argument[0]; path-injection[read]; manual | +| 23 | Sink: java.io; FileInputStream; true; FileInputStream; (String); ; Argument[0]; path-injection[read]; ai-manual | +| 24 | Sink: java.io; FileReader; true; FileReader; (File); ; Argument[0]; path-injection[read]; ai-manual | +| 25 | Sink: java.io; FileReader; true; FileReader; (File,Charset); ; Argument[0]; path-injection[read]; manual | +| 26 | Sink: java.io; FileReader; true; FileReader; (FileDescriptor); ; Argument[0]; path-injection[read]; manual | +| 27 | Sink: java.io; FileReader; true; FileReader; (String); ; Argument[0]; path-injection[read]; ai-manual | +| 28 | Sink: java.io; FileReader; true; FileReader; (String,Charset); ; Argument[0]; path-injection[read]; manual | +| 29 | Sink: java.lang; Class; false; getResource; (String); ; Argument[0]; path-injection[read]; ai-manual | +| 30 | Sink: java.lang; ClassLoader; true; getSystemResourceAsStream; (String); ; Argument[0]; path-injection[read]; ai-manual | +| 31 | Sink: java.lang; Module; true; getResourceAsStream; (String); ; Argument[0]; path-injection[read]; ai-manual | | 32 | Sink: java.nio.file; Files; false; copy; (InputStream,Path,CopyOption[]); ; Argument[1]; path-injection; manual | -| 33 | Sink: java.nio.file; Files; false; copy; (Path,OutputStream); ; Argument[0]; path-injection; manual | -| 34 | Sink: java.nio.file; Files; false; copy; (Path,Path,CopyOption[]); ; Argument[0]; path-injection; manual | +| 33 | Sink: java.nio.file; Files; false; copy; (Path,OutputStream); ; Argument[0]; path-injection[read]; manual | +| 34 | Sink: java.nio.file; Files; false; copy; (Path,Path,CopyOption[]); ; Argument[0]; path-injection[read]; manual | | 35 | Sink: java.nio.file; Files; false; copy; (Path,Path,CopyOption[]); ; Argument[1]; path-injection; manual | | 36 | Sink: java.nio.file; Files; false; createDirectories; ; ; Argument[0]; path-injection; manual | | 37 | Sink: java.nio.file; Files; false; createDirectory; ; ; Argument[0]; path-injection; manual | @@ -279,31 +279,31 @@ models | 42 | Sink: java.nio.file; Files; false; createTempFile; (Path,String,String,FileAttribute[]); ; Argument[0]; path-injection; manual | | 43 | Sink: java.nio.file; Files; false; delete; (Path); ; Argument[0]; path-injection; ai-manual | | 44 | Sink: java.nio.file; Files; false; deleteIfExists; (Path); ; Argument[0]; path-injection; ai-manual | -| 45 | Sink: java.nio.file; Files; false; lines; (Path,Charset); ; Argument[0]; path-injection; ai-manual | +| 45 | Sink: java.nio.file; Files; false; lines; (Path,Charset); ; Argument[0]; path-injection[read]; ai-manual | | 46 | Sink: java.nio.file; Files; false; move; ; ; Argument[1]; path-injection; manual | -| 47 | Sink: java.nio.file; Files; false; newBufferedReader; (Path,Charset); ; Argument[0]; path-injection; ai-manual | +| 47 | Sink: java.nio.file; Files; false; newBufferedReader; (Path,Charset); ; Argument[0]; path-injection[read]; ai-manual | | 48 | Sink: java.nio.file; Files; false; newBufferedWriter; ; ; Argument[0]; path-injection; manual | | 49 | Sink: java.nio.file; Files; false; newOutputStream; ; ; Argument[0]; path-injection; manual | | 50 | Sink: java.nio.file; Files; false; write; ; ; Argument[0]; path-injection; manual | | 51 | Sink: java.nio.file; Files; false; writeString; ; ; Argument[0]; path-injection; manual | | 52 | Sink: javax.xml.transform.stream; StreamResult; true; StreamResult; (File); ; Argument[0]; path-injection; ai-manual | -| 53 | Sink: org.apache.commons.io; FileUtils; true; openInputStream; (File); ; Argument[0]; path-injection; ai-manual | -| 54 | Sink: org.apache.tools.ant.taskdefs; Copy; true; addFileset; (FileSet); ; Argument[0]; path-injection; ai-manual | -| 55 | Sink: org.apache.tools.ant.taskdefs; Copy; true; setFile; (File); ; Argument[0]; path-injection; ai-manual | +| 53 | Sink: org.apache.commons.io; FileUtils; true; openInputStream; (File); ; Argument[0]; path-injection[read]; ai-manual | +| 54 | Sink: org.apache.tools.ant.taskdefs; Copy; true; addFileset; (FileSet); ; Argument[0]; path-injection[read]; ai-manual | +| 55 | Sink: org.apache.tools.ant.taskdefs; Copy; true; setFile; (File); ; Argument[0]; path-injection[read]; ai-manual | | 56 | Sink: org.apache.tools.ant.taskdefs; Copy; true; setTodir; (File); ; Argument[0]; path-injection; ai-manual | | 57 | Sink: org.apache.tools.ant.taskdefs; Copy; true; setTofile; (File); ; Argument[0]; path-injection; ai-manual | | 58 | Sink: org.apache.tools.ant.taskdefs; Expand; true; setDest; (File); ; Argument[0]; path-injection; ai-manual | -| 59 | Sink: org.apache.tools.ant.taskdefs; Expand; true; setSrc; (File); ; Argument[0]; path-injection; ai-manual | -| 60 | Sink: org.apache.tools.ant; AntClassLoader; true; AntClassLoader; (ClassLoader,Project,Path,boolean); ; Argument[2]; path-injection; ai-manual | -| 61 | Sink: org.apache.tools.ant; AntClassLoader; true; AntClassLoader; (Project,Path); ; Argument[1]; path-injection; ai-manual | -| 62 | Sink: org.apache.tools.ant; AntClassLoader; true; AntClassLoader; (Project,Path,boolean); ; Argument[1]; path-injection; ai-manual | -| 63 | Sink: org.apache.tools.ant; AntClassLoader; true; addPathComponent; (File); ; Argument[0]; path-injection; ai-manual | -| 64 | Sink: org.apache.tools.ant; DirectoryScanner; true; setBasedir; (File); ; Argument[0]; path-injection; ai-manual | +| 59 | Sink: org.apache.tools.ant.taskdefs; Expand; true; setSrc; (File); ; Argument[0]; path-injection[read]; ai-manual | +| 60 | Sink: org.apache.tools.ant; AntClassLoader; true; AntClassLoader; (ClassLoader,Project,Path,boolean); ; Argument[2]; path-injection[read]; ai-manual | +| 61 | Sink: org.apache.tools.ant; AntClassLoader; true; AntClassLoader; (Project,Path); ; Argument[1]; path-injection[read]; ai-manual | +| 62 | Sink: org.apache.tools.ant; AntClassLoader; true; AntClassLoader; (Project,Path,boolean); ; Argument[1]; path-injection[read]; ai-manual | +| 63 | Sink: org.apache.tools.ant; AntClassLoader; true; addPathComponent; (File); ; Argument[0]; path-injection[read]; ai-manual | +| 64 | Sink: org.apache.tools.ant; DirectoryScanner; true; setBasedir; (File); ; Argument[0]; path-injection[read]; ai-manual | | 65 | Sink: org.codehaus.cargo.container.installer; ZipURLInstaller; true; ZipURLInstaller; (URL,String,String); ; Argument[1]; path-injection; ai-manual | | 66 | Sink: org.codehaus.cargo.container.installer; ZipURLInstaller; true; ZipURLInstaller; (URL,String,String); ; Argument[2]; path-injection; ai-manual | -| 67 | Sink: org.kohsuke.stapler.framework.io; LargeText; true; LargeText; (File,Charset,boolean,boolean); ; Argument[0]; path-injection; ai-manual | +| 67 | Sink: org.kohsuke.stapler.framework.io; LargeText; true; LargeText; (File,Charset,boolean,boolean); ; Argument[0]; path-injection[read]; ai-manual | | 68 | Sink: org.openjdk.jmh.runner.options; ChainedOptionsBuilder; true; result; (String); ; Argument[0]; path-injection; ai-manual | -| 69 | Sink: org.springframework.util; FileCopyUtils; false; copy; (File,File); ; Argument[0]; path-injection; manual | +| 69 | Sink: org.springframework.util; FileCopyUtils; false; copy; (File,File); ; Argument[0]; path-injection[read]; manual | | 70 | Sink: org.springframework.util; FileCopyUtils; false; copy; (File,File); ; Argument[1]; path-injection; manual | | 71 | Sink: org.springframework.util; FileCopyUtils; false; copy; (byte[],File); ; Argument[1]; path-injection; manual | | 72 | Source: java.net; Socket; false; getInputStream; (); ; ReturnValue; remote; manual | diff --git a/java/ql/test/query-tests/security/CWE-022/semmle/tests/ZipTest.java b/java/ql/test/query-tests/security/CWE-022/semmle/tests/ZipTest.java index b5bee61b9654..2c5e1cd9d539 100644 --- a/java/ql/test/query-tests/security/CWE-022/semmle/tests/ZipTest.java +++ b/java/ql/test/query-tests/security/CWE-022/semmle/tests/ZipTest.java @@ -60,4 +60,16 @@ public void m6(ZipEntry entry, Path dir) throws Exception { throw new Exception(); OutputStream os = Files.newOutputStream(target); // OK } + + // Regression for https://github.com/github/codeql/issues/21606: archive entry + // names flowing into read-only classpath/resource lookups are outside the + // Zip Slip threat model. + public void m7(ZipEntry entry) throws Exception { + String name = entry.getName(); + ClassLoader.getSystemResources(name); // OK - read-only resource lookup + getClass().getResource(name); // OK - read-only resource lookup + getClass().getResourceAsStream(name); // OK - read-only resource lookup + new FileInputStream(name); // OK - read-only file open + new FileReader(name); // OK - read-only file open + } } diff --git a/shared/mad/codeql/mad/ModelValidation.qll b/shared/mad/codeql/mad/ModelValidation.qll index 5eaa78626ab3..b5f3e078a527 100644 --- a/shared/mad/codeql/mad/ModelValidation.qll +++ b/shared/mad/codeql/mad/ModelValidation.qll @@ -54,6 +54,11 @@ module KindValidation { this.matches([ // shared "credentials-%", "encryption-%", "qltest%", "test-%", "regex-use%", + // shared: path-injection[read] identifies sinks that only read from a path + // (e.g. ClassLoader.getResource, FileInputStream, File.exists). Queries such + // as java/zipslip that only care about write/extraction deliberately exclude + // this sub-kind. + "path-injection[%]", // Swift-only currently, but may be shared in the future "%string-%length", "weak-hash-input-%", // Go-only currently, but may be shared in the future From 2429e7b79285c888160a950ca2344595e0622e7a Mon Sep 17 00:00:00 2001 From: Florin Coada Date: Tue, 21 Apr 2026 09:36:48 +0100 Subject: [PATCH 020/260] Update docs/codeql/codeql-language-guides/customizing-library-models-for-rust.rst Co-authored-by: Geoffrey White <40627776+geoffw0@users.noreply.github.com> --- .../customizing-library-models-for-rust.rst | 13 ------------- 1 file changed, 13 deletions(-) diff --git a/docs/codeql/codeql-language-guides/customizing-library-models-for-rust.rst b/docs/codeql/codeql-language-guides/customizing-library-models-for-rust.rst index 2ef101de1b01..f4d3598a507e 100644 --- a/docs/codeql/codeql-language-guides/customizing-library-models-for-rust.rst +++ b/docs/codeql/codeql-language-guides/customizing-library-models-for-rust.rst @@ -247,19 +247,6 @@ Since we are adding flow through a method, we need to add tuples to the ``summar - The fourth value ``taint`` is the kind of flow. Since ``join`` combines the path and the argument, the output is derived from the inputs but is not identical to either one. - The fifth value ``manual`` is the provenance of the summary. -It would also be possible to merge the two rows into one by using a comma-separated list in the second value: - -.. code-block:: yaml - - extensions: - - addsTo: - pack: codeql/rust-all - extensible: summaryModel - data: - - ["::join", "Argument[self,0]", "ReturnValue", "taint", "manual"] - -This row defines flow from both the receiver and the first argument to the return value. The second value ``Argument[self,0]`` is shorthand for specifying an access path to both ``Argument[self]`` and ``Argument[0]``. - .. note:: When using ``Argument[self]`` to refer to the receiver, the ``Reference`` token may need to be appended to follow through the ``&self`` or ``&mut self`` reference to the underlying value. This depends on whether the data you want to track is on the reference itself or on the value behind the reference. From 6d10b1582fbb3c6107c7cb0947c2963748ef97ea Mon Sep 17 00:00:00 2001 From: MarkLee131 Date: Tue, 21 Apr 2026 19:45:13 +0800 Subject: [PATCH 021/260] Java: update regression-test expectations for path-injection[read] The sink-model generator and the experimental java/file-path-injection query now observe the new path-injection[read] sub-kind for the FileInputStream and Files.copy source-argument models. - CWE-073 FilePathInjection.expected: refresh the models table for the renamed kind on FileInputStream(File); alerts unchanged. - modelgenerator Sinks.java: update the inline sink annotation for copyFileToDirectory(Path,Path,CopyOption[]) Argument[0] to the new path-injection[read] sub-kind, mirroring the library change. --- .../query-tests/security/CWE-073/FilePathInjection.expected | 2 +- java/ql/test/utils/modelgenerator/dataflow/p/Sinks.java | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/java/ql/test/experimental/query-tests/security/CWE-073/FilePathInjection.expected b/java/ql/test/experimental/query-tests/security/CWE-073/FilePathInjection.expected index 9ddb20829483..5752ac764dfd 100644 --- a/java/ql/test/experimental/query-tests/security/CWE-073/FilePathInjection.expected +++ b/java/ql/test/experimental/query-tests/security/CWE-073/FilePathInjection.expected @@ -10,7 +10,7 @@ edges | FilePathInjection.java:217:19:217:22 | file : File | FilePathInjection.java:177:50:177:58 | file : File | provenance | | models | 1 | Sink: java.io; File; true; exists; (); ; Argument[this]; path-injection; manual | -| 2 | Sink: java.io; FileInputStream; true; FileInputStream; (File); ; Argument[0]; path-injection; ai-manual | +| 2 | Sink: java.io; FileInputStream; true; FileInputStream; (File); ; Argument[0]; path-injection[read]; ai-manual | | 3 | Sink: java.io; FileOutputStream; false; FileOutputStream; ; ; Argument[0]; path-injection; manual | | 4 | Source: com.jfinal.core; Controller; true; getPara; ; ; ReturnValue; remote; manual | | 5 | Source: javax.servlet; ServletRequest; false; getParameter; (String); ; ReturnValue; remote; manual | diff --git a/java/ql/test/utils/modelgenerator/dataflow/p/Sinks.java b/java/ql/test/utils/modelgenerator/dataflow/p/Sinks.java index d9a0d9324f3c..13c84954ca00 100644 --- a/java/ql/test/utils/modelgenerator/dataflow/p/Sinks.java +++ b/java/ql/test/utils/modelgenerator/dataflow/p/Sinks.java @@ -33,7 +33,7 @@ public Object saveAndGet(Object o) { return null; } - // sink=p;Sinks;true;copyFileToDirectory;(Path,Path,CopyOption[]);;Argument[0];path-injection;df-generated + // sink=p;Sinks;true;copyFileToDirectory;(Path,Path,CopyOption[]);;Argument[0];path-injection[read];df-generated // sink=p;Sinks;true;copyFileToDirectory;(Path,Path,CopyOption[]);;Argument[1];path-injection;df-generated // neutral=p;Sinks;copyFileToDirectory;(Path,Path,CopyOption[]);summary;df-generated public Path copyFileToDirectory( From af32ae2ba52e33755361f83fb172839e3b49881f Mon Sep 17 00:00:00 2001 From: Florin Coada Date: Tue, 21 Apr 2026 16:42:41 +0100 Subject: [PATCH 022/260] Update docs/codeql/codeql-language-guides/customizing-library-models-for-rust.rst Co-authored-by: Geoffrey White <40627776+geoffw0@users.noreply.github.com> --- .../customizing-library-models-for-rust.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/codeql/codeql-language-guides/customizing-library-models-for-rust.rst b/docs/codeql/codeql-language-guides/customizing-library-models-for-rust.rst index f4d3598a507e..0b0710403d29 100644 --- a/docs/codeql/codeql-language-guides/customizing-library-models-for-rust.rst +++ b/docs/codeql/codeql-language-guides/customizing-library-models-for-rust.rst @@ -562,7 +562,7 @@ Commonly used source kinds for Rust include: Sink kinds ~~~~~~~~~~ -Unlike sources, sinks tend to be highly query-specific, rarely affecting more than one or two queries. Not every query supports customizable sinks. If the following sinks are not suitable for your use case, you should add a new query. +Unlike sources, sinks tend to be highly query-specific, rarely affecting more than one or two queries. Not every query supports customizable sinks. Commonly used sink kinds for Rust include: From da88268943ec02bfc38dd96699f28e55d5cace60 Mon Sep 17 00:00:00 2001 From: Florin Coada Date: Tue, 21 Apr 2026 16:43:25 +0100 Subject: [PATCH 023/260] Update docs/codeql/codeql-language-guides/customizing-library-models-for-rust.rst Co-authored-by: Geoffrey White <40627776+geoffw0@users.noreply.github.com> --- .../customizing-library-models-for-rust.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/codeql/codeql-language-guides/customizing-library-models-for-rust.rst b/docs/codeql/codeql-language-guides/customizing-library-models-for-rust.rst index 0b0710403d29..11ac2ee0adfa 100644 --- a/docs/codeql/codeql-language-guides/customizing-library-models-for-rust.rst +++ b/docs/codeql/codeql-language-guides/customizing-library-models-for-rust.rst @@ -532,7 +532,7 @@ The following tokens are commonly used: - **Parameter[**\ ``n``\ **]** selects the ``n``-th parameter of a callback. May be a range of the form ``x..y`` (inclusive) and/or a comma-separated list. - **ReturnValue** selects the return value of a function call. - **Element** selects an element in a collection (such as a ``Vec``, ``HashMap``, or iterator). -- **Field[**\ ``type::field``\ **]** selects a named field of a struct or enum variant. For example, ``Field[core::option::Option::Some(0)]`` selects the first positional field of the ``Some`` variant. +- **Field[**\ ``type::field``\ **]** selects a named field of a struct or enum variant. For example, ``Field[ihex::Record::Data::value]`` selects the field ``value`` of the ``ihex::Record::Data`` variant. - **Field[**\ ``type(i)``\ **]** selects the ``i``-th positional field of a tuple struct or tuple enum variant. For example, ``Field[core::result::Result::Ok(0)]`` selects the value inside ``Ok``. - **Field[**\ ``i``\ **]** selects the ``i``-th element of a tuple. - **Reference** follows through a reference (``&T`` or ``&mut T``) to reach the referenced value. From d60a30d1f201c6a4b9afd8b5080e967010d5c8eb Mon Sep 17 00:00:00 2001 From: Florin Coada Date: Tue, 21 Apr 2026 16:43:40 +0100 Subject: [PATCH 024/260] Update docs/codeql/codeql-language-guides/customizing-library-models-for-rust.rst Co-authored-by: Geoffrey White <40627776+geoffw0@users.noreply.github.com> --- .../customizing-library-models-for-rust.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/codeql/codeql-language-guides/customizing-library-models-for-rust.rst b/docs/codeql/codeql-language-guides/customizing-library-models-for-rust.rst index 11ac2ee0adfa..c82c421076d9 100644 --- a/docs/codeql/codeql-language-guides/customizing-library-models-for-rust.rst +++ b/docs/codeql/codeql-language-guides/customizing-library-models-for-rust.rst @@ -533,7 +533,7 @@ The following tokens are commonly used: - **ReturnValue** selects the return value of a function call. - **Element** selects an element in a collection (such as a ``Vec``, ``HashMap``, or iterator). - **Field[**\ ``type::field``\ **]** selects a named field of a struct or enum variant. For example, ``Field[ihex::Record::Data::value]`` selects the field ``value`` of the ``ihex::Record::Data`` variant. -- **Field[**\ ``type(i)``\ **]** selects the ``i``-th positional field of a tuple struct or tuple enum variant. For example, ``Field[core::result::Result::Ok(0)]`` selects the value inside ``Ok``. +- **Field[**\ ``type(i)``\ **]** selects the ``i``-th positional field of a tuple struct or tuple enum variant. For example, ``Field[core::result::Result::Ok(0)]`` selects the first positional value inside ``Ok``. - **Field[**\ ``i``\ **]** selects the ``i``-th element of a tuple. - **Reference** follows through a reference (``&T`` or ``&mut T``) to reach the referenced value. - **Future** follows through a ``Future`` to reach the value that will be available after ``.await``. From 0866e8dc210cefd85254847df315a3838b8eddb6 Mon Sep 17 00:00:00 2001 From: Florin Coada Date: Tue, 21 Apr 2026 16:43:59 +0100 Subject: [PATCH 025/260] Update docs/codeql/codeql-language-guides/customizing-library-models-for-rust.rst Co-authored-by: Geoffrey White <40627776+geoffw0@users.noreply.github.com> --- .../customizing-library-models-for-rust.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/codeql/codeql-language-guides/customizing-library-models-for-rust.rst b/docs/codeql/codeql-language-guides/customizing-library-models-for-rust.rst index c82c421076d9..7b1d7f7ece8e 100644 --- a/docs/codeql/codeql-language-guides/customizing-library-models-for-rust.rst +++ b/docs/codeql/codeql-language-guides/customizing-library-models-for-rust.rst @@ -568,7 +568,7 @@ Commonly used sink kinds for Rust include: - **sql-injection**: A sink for SQL injection, such as an argument to ``sqlx::query``. - **path-injection**: A sink for path injection in a file system access, such as an argument to ``std::fs::read``. -- **log-injection**: A sink for log injection, such as an argument to a logging macro. +- **log-injection**: A sink for log injection, such as an argument to a logging function. - **html-injection**: A sink for HTML injection (cross-site scripting), such as a response body. - **command-injection**: A sink for command injection, such as an argument to ``std::process::Command``. - **request-url**: A sink for server-side request forgery, such as a URL passed to an HTTP client. From a44883486a507b297ae790ffb5883b66e8865d74 Mon Sep 17 00:00:00 2001 From: Florin Coada Date: Tue, 21 Apr 2026 16:44:12 +0100 Subject: [PATCH 026/260] Update docs/codeql/codeql-language-guides/customizing-library-models-for-rust.rst Co-authored-by: Geoffrey White <40627776+geoffw0@users.noreply.github.com> --- .../customizing-library-models-for-rust.rst | 8 -------- 1 file changed, 8 deletions(-) diff --git a/docs/codeql/codeql-language-guides/customizing-library-models-for-rust.rst b/docs/codeql/codeql-language-guides/customizing-library-models-for-rust.rst index 7b1d7f7ece8e..bf1b44994dd9 100644 --- a/docs/codeql/codeql-language-guides/customizing-library-models-for-rust.rst +++ b/docs/codeql/codeql-language-guides/customizing-library-models-for-rust.rst @@ -551,14 +551,6 @@ Source kinds See ":ref:`Threat models `" for available source kinds. -Commonly used source kinds for Rust include: - -- **remote**: A source of data from a remote network request. Most taint-tracking queries use this source kind. -- **commandargs**: A source of data from command-line arguments. -- **environment**: A source of data from environment variables. -- **file**: A source of data from local files. -- **database**: A source of data from a database read. - Sink kinds ~~~~~~~~~~ From f50bbdb9af685a3263302f18083a32b8d9ead20d Mon Sep 17 00:00:00 2001 From: Jeroen Ketema Date: Thu, 8 Jan 2026 18:01:06 +0100 Subject: [PATCH 027/260] C++: Update expected test results after extractor changes --- .../builtins/complex/builtin.expected | 4 +- .../controlflow/guards/GuardsCompare.expected | 12 +- .../controlflow/guards/GuardsEnsure.expected | 12 +- .../library-tests/ir/ir/PrintAST.expected | 4 +- .../library-tests/ir/ir/aliased_ir.expected | 32 ++-- .../test/library-tests/ir/ir/raw_ir.expected | 28 ++-- .../SimpleRangeAnalysis/nrOfBounds.expected | 142 +++++++++--------- .../MistypedFunctionArguments.expected | 8 +- 8 files changed, 121 insertions(+), 121 deletions(-) diff --git a/cpp/ql/test/library-tests/builtins/complex/builtin.expected b/cpp/ql/test/library-tests/builtins/complex/builtin.expected index c1b9b18a4126..2537ff065ac6 100644 --- a/cpp/ql/test/library-tests/builtins/complex/builtin.expected +++ b/cpp/ql/test/library-tests/builtins/complex/builtin.expected @@ -1,4 +1,4 @@ | complex.c:3:23:3:51 | __builtin_complex | file://:0:0:0:0 | _Complex double | complex.c:3:41:3:44 | real | file://:0:0:0:0 | double | complex.c:3:47:3:50 | imag | file://:0:0:0:0 | double | -| complex.c:4:23:4:57 | __builtin_complex | file://:0:0:0:0 | _Complex double | complex.c:4:41:4:47 | 2.71828000000000003 | file://:0:0:0:0 | double | complex.c:4:50:4:56 | 3.141589999999999883 | file://:0:0:0:0 | double | +| complex.c:4:23:4:57 | __builtin_complex | file://:0:0:0:0 | _Complex double | complex.c:4:41:4:47 | 2.71828 | file://:0:0:0:0 | double | complex.c:4:50:4:56 | 3.14159 | file://:0:0:0:0 | double | | complex.c:8:22:8:52 | __builtin_complex | file://:0:0:0:0 | _Complex float | complex.c:8:40:8:44 | realf | file://:0:0:0:0 | float | complex.c:8:47:8:51 | imagf | file://:0:0:0:0 | float | -| complex.c:9:22:9:52 | __builtin_complex | file://:0:0:0:0 | _Complex float | complex.c:9:40:9:44 | 1.230000019 | file://:0:0:0:0 | float | complex.c:9:47:9:51 | 4.559999943 | file://:0:0:0:0 | float | +| complex.c:9:22:9:52 | __builtin_complex | file://:0:0:0:0 | _Complex float | complex.c:9:40:9:44 | 1.23 | file://:0:0:0:0 | float | complex.c:9:47:9:51 | 4.56 | file://:0:0:0:0 | float | diff --git a/cpp/ql/test/library-tests/controlflow/guards/GuardsCompare.expected b/cpp/ql/test/library-tests/controlflow/guards/GuardsCompare.expected index 4d78c4016dab..f6833ab4ff13 100644 --- a/cpp/ql/test/library-tests/controlflow/guards/GuardsCompare.expected +++ b/cpp/ql/test/library-tests/controlflow/guards/GuardsCompare.expected @@ -298,16 +298,16 @@ | test.c:182:8:182:34 | ! ... | ! ... == 1 when ! ... is true | | test.c:182:8:182:34 | ! ... | ... && ... != 0 when ! ... is false | | test.c:182:8:182:34 | ! ... | ... && ... == 0 when ! ... is true | -| test.c:182:10:182:20 | ... >= ... | 9.999999999999999547e-07 < foo+1 when ... >= ... is true | -| test.c:182:10:182:20 | ... >= ... | 9.999999999999999547e-07 >= foo+1 when ... >= ... is false | +| test.c:182:10:182:20 | ... >= ... | 1.0E-6 < foo+1 when ... >= ... is true | +| test.c:182:10:182:20 | ... >= ... | 1.0E-6 >= foo+1 when ... >= ... is false | | test.c:182:10:182:20 | ... >= ... | ... >= ... != 0 when ... >= ... is true | | test.c:182:10:182:20 | ... >= ... | ... >= ... != 1 when ... >= ... is false | | test.c:182:10:182:20 | ... >= ... | ... >= ... == 0 when ... >= ... is false | | test.c:182:10:182:20 | ... >= ... | ... >= ... == 1 when ... >= ... is true | -| test.c:182:10:182:20 | ... >= ... | foo < 9.999999999999999547e-07+0 when ... >= ... is false | -| test.c:182:10:182:20 | ... >= ... | foo >= 9.999999999999999547e-07+0 when ... >= ... is true | +| test.c:182:10:182:20 | ... >= ... | foo < 1.0E-6+0 when ... >= ... is false | +| test.c:182:10:182:20 | ... >= ... | foo >= 1.0E-6+0 when ... >= ... is true | | test.c:182:10:182:33 | ... && ... | 1.0 >= foo+1 when ... && ... is true | -| test.c:182:10:182:33 | ... && ... | 9.999999999999999547e-07 < foo+1 when ... && ... is true | +| test.c:182:10:182:33 | ... && ... | 1.0E-6 < foo+1 when ... && ... is true | | test.c:182:10:182:33 | ... && ... | ! ... != 0 when ... && ... is false | | test.c:182:10:182:33 | ... && ... | ! ... != 1 when ... && ... is true | | test.c:182:10:182:33 | ... && ... | ! ... == 0 when ... && ... is true | @@ -319,7 +319,7 @@ | test.c:182:10:182:33 | ... && ... | ... >= ... != 0 when ... && ... is true | | test.c:182:10:182:33 | ... && ... | ... >= ... == 1 when ... && ... is true | | test.c:182:10:182:33 | ... && ... | foo < 1.0+0 when ... && ... is true | -| test.c:182:10:182:33 | ... && ... | foo >= 9.999999999999999547e-07+0 when ... && ... is true | +| test.c:182:10:182:33 | ... && ... | foo >= 1.0E-6+0 when ... && ... is true | | test.c:182:25:182:33 | ... < ... | 1.0 < foo+1 when ... < ... is false | | test.c:182:25:182:33 | ... < ... | 1.0 >= foo+1 when ... < ... is true | | test.c:182:25:182:33 | ... < ... | ... < ... != 0 when ... < ... is true | diff --git a/cpp/ql/test/library-tests/controlflow/guards/GuardsEnsure.expected b/cpp/ql/test/library-tests/controlflow/guards/GuardsEnsure.expected index 5a364e3deaad..cf99d2c20b8d 100644 --- a/cpp/ql/test/library-tests/controlflow/guards/GuardsEnsure.expected +++ b/cpp/ql/test/library-tests/controlflow/guards/GuardsEnsure.expected @@ -169,12 +169,12 @@ binary | test.c:176:8:176:15 | ! ... | test.c:176:14:176:14 | b | < | test.c:176:10:176:10 | a | 1 | test.c:176:18:178:5 | { ... } | | test.c:176:10:176:14 | ... < ... | test.c:176:10:176:10 | a | >= | test.c:176:14:176:14 | b | 0 | test.c:176:18:178:5 | { ... } | | test.c:176:10:176:14 | ... < ... | test.c:176:14:176:14 | b | < | test.c:176:10:176:10 | a | 1 | test.c:176:18:178:5 | { ... } | -| test.c:182:10:182:20 | ... >= ... | test.c:182:10:182:12 | foo | >= | test.c:182:17:182:20 | 9.999999999999999547e-07 | 0 | test.c:181:25:182:20 | { ... } | -| test.c:182:10:182:20 | ... >= ... | test.c:182:10:182:12 | foo | >= | test.c:182:17:182:20 | 9.999999999999999547e-07 | 0 | test.c:182:25:182:33 | foo | -| test.c:182:10:182:20 | ... >= ... | test.c:182:17:182:20 | 9.999999999999999547e-07 | < | test.c:182:10:182:12 | foo | 1 | test.c:181:25:182:20 | { ... } | -| test.c:182:10:182:20 | ... >= ... | test.c:182:17:182:20 | 9.999999999999999547e-07 | < | test.c:182:10:182:12 | foo | 1 | test.c:182:25:182:33 | foo | -| test.c:182:10:182:33 | ... && ... | test.c:182:10:182:12 | foo | >= | test.c:182:17:182:20 | 9.999999999999999547e-07 | 0 | test.c:181:25:182:20 | { ... } | -| test.c:182:10:182:33 | ... && ... | test.c:182:17:182:20 | 9.999999999999999547e-07 | < | test.c:182:10:182:12 | foo | 1 | test.c:181:25:182:20 | { ... } | +| test.c:182:10:182:20 | ... >= ... | test.c:182:10:182:12 | foo | >= | test.c:182:17:182:20 | 1.0E-6 | 0 | test.c:181:25:182:20 | { ... } | +| test.c:182:10:182:20 | ... >= ... | test.c:182:10:182:12 | foo | >= | test.c:182:17:182:20 | 1.0E-6 | 0 | test.c:182:25:182:33 | foo | +| test.c:182:10:182:20 | ... >= ... | test.c:182:17:182:20 | 1.0E-6 | < | test.c:182:10:182:12 | foo | 1 | test.c:181:25:182:20 | { ... } | +| test.c:182:10:182:20 | ... >= ... | test.c:182:17:182:20 | 1.0E-6 | < | test.c:182:10:182:12 | foo | 1 | test.c:182:25:182:33 | foo | +| test.c:182:10:182:33 | ... && ... | test.c:182:10:182:12 | foo | >= | test.c:182:17:182:20 | 1.0E-6 | 0 | test.c:181:25:182:20 | { ... } | +| test.c:182:10:182:33 | ... && ... | test.c:182:17:182:20 | 1.0E-6 | < | test.c:182:10:182:12 | foo | 1 | test.c:181:25:182:20 | { ... } | | test.c:182:10:182:33 | ... && ... | test.c:182:25:182:27 | foo | < | test.c:182:31:182:33 | 1.0 | 0 | test.c:181:25:182:20 | { ... } | | test.c:182:10:182:33 | ... && ... | test.c:182:31:182:33 | 1.0 | >= | test.c:182:25:182:27 | foo | 1 | test.c:181:25:182:20 | { ... } | | test.c:182:25:182:33 | ... < ... | test.c:182:25:182:27 | foo | < | test.c:182:31:182:33 | 1.0 | 0 | test.c:181:25:182:20 | { ... } | diff --git a/cpp/ql/test/library-tests/ir/ir/PrintAST.expected b/cpp/ql/test/library-tests/ir/ir/PrintAST.expected index c3e46114edf4..59b5f6214f3d 100644 --- a/cpp/ql/test/library-tests/ir/ir/PrintAST.expected +++ b/cpp/ql/test/library-tests/ir/ir/PrintAST.expected @@ -25796,9 +25796,9 @@ ir.cpp: # 2919| getExpr(): [FunctionCall] call to VariableTemplateFunc # 2919| Type = [DoubleType] double # 2919| ValueCategory = prvalue -# 2919| getArgument(0): [Literal] 2.299999999999999822 +# 2919| getArgument(0): [Literal] 2.3 # 2919| Type = [DoubleType] double -# 2919| Value = [Literal] 2.299999999999999822 +# 2919| Value = [Literal] 2.3 # 2919| ValueCategory = prvalue # 2919| getExpr().getFullyConverted(): [CStyleCast] (int)... # 2919| Conversion = [FloatingPointToIntegralConversion] floating point to integral conversion diff --git a/cpp/ql/test/library-tests/ir/ir/aliased_ir.expected b/cpp/ql/test/library-tests/ir/ir/aliased_ir.expected index 66810913e5d3..96035c165331 100644 --- a/cpp/ql/test/library-tests/ir/ir/aliased_ir.expected +++ b/cpp/ql/test/library-tests/ir/ir/aliased_ir.expected @@ -12954,21 +12954,21 @@ ir.cpp: # 1592| double StructuredBindingTupleRefGet::d # 1592| Block 0 -# 1592| v1592_1(void) = EnterFunction : -# 1592| m1592_2(unknown) = AliasedDefinition : -# 1592| m1592_3(unknown) = InitializeNonLocal : -# 1592| m1592_4(unknown) = Chi : total:m1592_2, partial:m1592_3 -# 1592| r1592_5(glval) = VariableAddress[#this] : -# 1592| m1592_6(glval) = InitializeParameter[#this] : &:r1592_5 -# 1592| r1592_7(glval) = Load[#this] : &:r1592_5, m1592_6 -# 1592| m1592_8(StructuredBindingTupleRefGet) = InitializeIndirection[#this] : &:r1592_7 -# 1592| r1592_9(glval) = FieldAddress[d] : r1592_7 -# 1592| r1592_10(double) = Constant[2.200000000000000178] : -# 1592| m1592_11(double) = Store[?] : &:r1592_9, r1592_10 -# 1592| m1592_12(unknown) = Chi : total:m1592_8, partial:m1592_11 -# 1592| v1592_13(void) = ReturnVoid : -# 1592| v1592_14(void) = AliasedUse : m1592_3 -# 1592| v1592_15(void) = ExitFunction : +# 1592| v1592_1(void) = EnterFunction : +# 1592| m1592_2(unknown) = AliasedDefinition : +# 1592| m1592_3(unknown) = InitializeNonLocal : +# 1592| m1592_4(unknown) = Chi : total:m1592_2, partial:m1592_3 +# 1592| r1592_5(glval) = VariableAddress[#this] : +# 1592| m1592_6(glval) = InitializeParameter[#this] : &:r1592_5 +# 1592| r1592_7(glval) = Load[#this] : &:r1592_5, m1592_6 +# 1592| m1592_8(StructuredBindingTupleRefGet) = InitializeIndirection[#this] : &:r1592_7 +# 1592| r1592_9(glval) = FieldAddress[d] : r1592_7 +# 1592| r1592_10(double) = Constant[2.2] : +# 1592| m1592_11(double) = Store[?] : &:r1592_9, r1592_10 +# 1592| m1592_12(unknown) = Chi : total:m1592_8, partial:m1592_11 +# 1592| v1592_13(void) = ReturnVoid : +# 1592| v1592_14(void) = AliasedUse : m1592_3 +# 1592| v1592_15(void) = ExitFunction : # 1593| int& StructuredBindingTupleRefGet::r # 1593| Block 0 @@ -21761,7 +21761,7 @@ ir.cpp: # 2919| m2919_2(unknown) = AliasedDefinition : # 2919| r2919_3(glval) = VariableAddress[VariableTemplateFuncUse] : # 2919| r2919_4(glval) = FunctionAddress[VariableTemplateFunc] : -# 2919| r2919_5(double) = Constant[2.299999999999999822] : +# 2919| r2919_5(double) = Constant[2.3] : # 2919| r2919_6(double) = Call[VariableTemplateFunc] : func:r2919_4, 0:r2919_5 # 2919| m2919_7(unknown) = ^CallSideEffect : ~m2919_2 # 2919| m2919_8(unknown) = Chi : total:m2919_2, partial:m2919_7 diff --git a/cpp/ql/test/library-tests/ir/ir/raw_ir.expected b/cpp/ql/test/library-tests/ir/ir/raw_ir.expected index 4e73b7d1aa6a..05ab6c50d703 100644 --- a/cpp/ql/test/library-tests/ir/ir/raw_ir.expected +++ b/cpp/ql/test/library-tests/ir/ir/raw_ir.expected @@ -11861,19 +11861,19 @@ ir.cpp: # 1592| double StructuredBindingTupleRefGet::d # 1592| Block 0 -# 1592| v1592_1(void) = EnterFunction : -# 1592| mu1592_2(unknown) = AliasedDefinition : -# 1592| mu1592_3(unknown) = InitializeNonLocal : -# 1592| r1592_4(glval) = VariableAddress[#this] : -# 1592| mu1592_5(glval) = InitializeParameter[#this] : &:r1592_4 -# 1592| r1592_6(glval) = Load[#this] : &:r1592_4, ~m? -# 1592| mu1592_7(StructuredBindingTupleRefGet) = InitializeIndirection[#this] : &:r1592_6 -# 1592| r1592_8(glval) = FieldAddress[d] : r1592_6 -# 1592| r1592_9(double) = Constant[2.200000000000000178] : -# 1592| mu1592_10(double) = Store[?] : &:r1592_8, r1592_9 -# 1592| v1592_11(void) = ReturnVoid : -# 1592| v1592_12(void) = AliasedUse : ~m? -# 1592| v1592_13(void) = ExitFunction : +# 1592| v1592_1(void) = EnterFunction : +# 1592| mu1592_2(unknown) = AliasedDefinition : +# 1592| mu1592_3(unknown) = InitializeNonLocal : +# 1592| r1592_4(glval) = VariableAddress[#this] : +# 1592| mu1592_5(glval) = InitializeParameter[#this] : &:r1592_4 +# 1592| r1592_6(glval) = Load[#this] : &:r1592_4, ~m? +# 1592| mu1592_7(StructuredBindingTupleRefGet) = InitializeIndirection[#this] : &:r1592_6 +# 1592| r1592_8(glval) = FieldAddress[d] : r1592_6 +# 1592| r1592_9(double) = Constant[2.2] : +# 1592| mu1592_10(double) = Store[?] : &:r1592_8, r1592_9 +# 1592| v1592_11(void) = ReturnVoid : +# 1592| v1592_12(void) = AliasedUse : ~m? +# 1592| v1592_13(void) = ExitFunction : # 1593| int& StructuredBindingTupleRefGet::r # 1593| Block 0 @@ -19768,7 +19768,7 @@ ir.cpp: # 2919| mu2919_2(unknown) = AliasedDefinition : # 2919| r2919_3(glval) = VariableAddress[VariableTemplateFuncUse] : # 2919| r2919_4(glval) = FunctionAddress[VariableTemplateFunc] : -# 2919| r2919_5(double) = Constant[2.299999999999999822] : +# 2919| r2919_5(double) = Constant[2.3] : # 2919| r2919_6(double) = Call[VariableTemplateFunc] : func:r2919_4, 0:r2919_5 # 2919| mu2919_7(unknown) = ^CallSideEffect : ~m? # 2919| r2919_8(int) = Convert : r2919_6 diff --git a/cpp/ql/test/library-tests/rangeanalysis/SimpleRangeAnalysis/nrOfBounds.expected b/cpp/ql/test/library-tests/rangeanalysis/SimpleRangeAnalysis/nrOfBounds.expected index b8424b8f01ad..7d441d6293a6 100644 --- a/cpp/ql/test/library-tests/rangeanalysis/SimpleRangeAnalysis/nrOfBounds.expected +++ b/cpp/ql/test/library-tests/rangeanalysis/SimpleRangeAnalysis/nrOfBounds.expected @@ -1293,12 +1293,12 @@ estimateNrOfBounds | test.c:415:26:415:69 | ... ? ... : ... | 1.0 | 1.0 | 1.0 | | test.c:415:30:415:30 | q | 1.0 | 1.0 | 1.0 | | test.c:415:30:415:56 | ... ? ... : ... | 1.0 | 1.0 | 1.0 | -| test.c:415:34:415:43 | 0.4743882700000000008 | 1.0 | -1.0 | -1.0 | -| test.c:415:47:415:56 | 0.1433388700000000071 | 1.0 | -1.0 | -1.0 | -| test.c:415:60:415:69 | 0.3527920299999999787 | 1.0 | -1.0 | -1.0 | -| test.c:415:73:415:82 | 0.3920645799999999959 | 1.0 | -1.0 | -1.0 | -| test.c:415:86:415:95 | 0.2154022499999999896 | 1.0 | -1.0 | -1.0 | -| test.c:415:99:415:108 | 0.4049680500000000238 | 1.0 | -1.0 | -1.0 | +| test.c:415:34:415:43 | 0.47438827 | 1.0 | -1.0 | -1.0 | +| test.c:415:47:415:56 | 0.14333887 | 1.0 | -1.0 | -1.0 | +| test.c:415:60:415:69 | 0.35279203 | 1.0 | -1.0 | -1.0 | +| test.c:415:73:415:82 | 0.39206458 | 1.0 | -1.0 | -1.0 | +| test.c:415:86:415:95 | 0.21540225 | 1.0 | -1.0 | -1.0 | +| test.c:415:99:415:108 | 0.40496805 | 1.0 | -1.0 | -1.0 | | test.c:416:14:416:14 | m | 2.0 | 1.0 | 1.0 | | test.c:416:14:416:108 | ... ? ... : ... | 1.0 | 1.0 | 1.0 | | test.c:416:18:416:18 | n | 3.0 | 1.0 | 1.0 | @@ -1309,12 +1309,12 @@ estimateNrOfBounds | test.c:416:26:416:69 | ... ? ... : ... | 1.0 | 1.0 | 1.0 | | test.c:416:30:416:30 | q | 3.0 | 1.0 | 1.0 | | test.c:416:30:416:56 | ... ? ... : ... | 1.0 | 1.0 | 1.0 | -| test.c:416:34:416:43 | 0.3418334800000000229 | 1.0 | -1.0 | -1.0 | -| test.c:416:47:416:56 | 0.3533464000000000049 | 1.0 | -1.0 | -1.0 | -| test.c:416:60:416:69 | 0.2224785300000000077 | 1.0 | -1.0 | -1.0 | -| test.c:416:73:416:82 | 0.326618929999999974 | 1.0 | -1.0 | -1.0 | -| test.c:416:86:416:95 | 0.5927046500000000551 | 1.0 | -1.0 | -1.0 | -| test.c:416:99:416:108 | 0.5297741000000000255 | 1.0 | -1.0 | -1.0 | +| test.c:416:34:416:43 | 0.34183348 | 1.0 | -1.0 | -1.0 | +| test.c:416:47:416:56 | 0.3533464 | 1.0 | -1.0 | -1.0 | +| test.c:416:60:416:69 | 0.22247853 | 1.0 | -1.0 | -1.0 | +| test.c:416:73:416:82 | 0.32661893 | 1.0 | -1.0 | -1.0 | +| test.c:416:86:416:95 | 0.59270465 | 1.0 | -1.0 | -1.0 | +| test.c:416:99:416:108 | 0.5297741 | 1.0 | -1.0 | -1.0 | | test.c:417:14:417:14 | m | 3.5 | 1.0 | 1.0 | | test.c:417:14:417:108 | ... ? ... : ... | 1.0 | 1.0 | 1.0 | | test.c:417:18:417:18 | n | 8.0 | 1.0 | 1.0 | @@ -1325,12 +1325,12 @@ estimateNrOfBounds | test.c:417:26:417:69 | ... ? ... : ... | 1.0 | 1.0 | 1.0 | | test.c:417:30:417:30 | q | 8.0 | 1.0 | 1.0 | | test.c:417:30:417:56 | ... ? ... : ... | 1.0 | 1.0 | 1.0 | -| test.c:417:34:417:43 | 0.774296030000000024 | 1.0 | -1.0 | -1.0 | -| test.c:417:47:417:56 | 0.3147808400000000062 | 1.0 | -1.0 | -1.0 | -| test.c:417:60:417:69 | 0.3123551399999999756 | 1.0 | -1.0 | -1.0 | -| test.c:417:73:417:82 | 0.05121255999999999725 | 1.0 | -1.0 | -1.0 | -| test.c:417:86:417:95 | 0.7931074500000000471 | 1.0 | -1.0 | -1.0 | -| test.c:417:99:417:108 | 0.6798145100000000385 | 1.0 | -1.0 | -1.0 | +| test.c:417:34:417:43 | 0.77429603 | 1.0 | -1.0 | -1.0 | +| test.c:417:47:417:56 | 0.31478084 | 1.0 | -1.0 | -1.0 | +| test.c:417:60:417:69 | 0.31235514 | 1.0 | -1.0 | -1.0 | +| test.c:417:73:417:82 | 0.05121256 | 1.0 | -1.0 | -1.0 | +| test.c:417:86:417:95 | 0.79310745 | 1.0 | -1.0 | -1.0 | +| test.c:417:99:417:108 | 0.67981451 | 1.0 | -1.0 | -1.0 | | test.c:418:14:418:14 | m | 5.75 | 1.0 | 1.0 | | test.c:418:14:418:108 | ... ? ... : ... | 1.0 | 1.0 | 1.0 | | test.c:418:18:418:18 | n | 20.5 | 1.0 | 1.0 | @@ -1341,12 +1341,12 @@ estimateNrOfBounds | test.c:418:26:418:69 | ... ? ... : ... | 1.0 | 1.0 | 1.0 | | test.c:418:30:418:30 | q | 20.5 | 1.0 | 1.0 | | test.c:418:30:418:56 | ... ? ... : ... | 1.0 | 1.0 | 1.0 | -| test.c:418:34:418:43 | 0.4472955599999999809 | 1.0 | -1.0 | -1.0 | -| test.c:418:47:418:56 | 0.8059920200000000312 | 1.0 | -1.0 | -1.0 | -| test.c:418:60:418:69 | 0.9899726199999999698 | 1.0 | -1.0 | -1.0 | -| test.c:418:73:418:82 | 0.5995273199999999747 | 1.0 | -1.0 | -1.0 | -| test.c:418:86:418:95 | 0.3697694799999999837 | 1.0 | -1.0 | -1.0 | -| test.c:418:99:418:108 | 0.8386683499999999514 | 1.0 | -1.0 | -1.0 | +| test.c:418:34:418:43 | 0.44729556 | 1.0 | -1.0 | -1.0 | +| test.c:418:47:418:56 | 0.80599202 | 1.0 | -1.0 | -1.0 | +| test.c:418:60:418:69 | 0.98997262 | 1.0 | -1.0 | -1.0 | +| test.c:418:73:418:82 | 0.59952732 | 1.0 | -1.0 | -1.0 | +| test.c:418:86:418:95 | 0.36976948 | 1.0 | -1.0 | -1.0 | +| test.c:418:99:418:108 | 0.83866835 | 1.0 | -1.0 | -1.0 | | test.c:419:14:419:14 | m | 9.125 | 1.0 | 1.0 | | test.c:419:14:419:108 | ... ? ... : ... | 1.0 | 1.0 | 1.0 | | test.c:419:18:419:18 | n | 51.75 | 1.0 | 1.0 | @@ -1357,12 +1357,12 @@ estimateNrOfBounds | test.c:419:26:419:69 | ... ? ... : ... | 1.0 | 1.0 | 1.0 | | test.c:419:30:419:30 | q | 51.75 | 1.0 | 1.0 | | test.c:419:30:419:56 | ... ? ... : ... | 1.0 | 1.0 | 1.0 | -| test.c:419:34:419:43 | 0.4931182800000000199 | 1.0 | -1.0 | -1.0 | -| test.c:419:47:419:56 | 0.9038991100000000056 | 1.0 | -1.0 | -1.0 | -| test.c:419:60:419:69 | 0.1059771199999999941 | 1.0 | -1.0 | -1.0 | -| test.c:419:73:419:82 | 0.2177842600000000073 | 1.0 | -1.0 | -1.0 | -| test.c:419:86:419:95 | 0.7248596600000000167 | 1.0 | -1.0 | -1.0 | -| test.c:419:99:419:108 | 0.6873487400000000136 | 1.0 | -1.0 | -1.0 | +| test.c:419:34:419:43 | 0.49311828 | 1.0 | -1.0 | -1.0 | +| test.c:419:47:419:56 | 0.90389911 | 1.0 | -1.0 | -1.0 | +| test.c:419:60:419:69 | 0.10597712 | 1.0 | -1.0 | -1.0 | +| test.c:419:73:419:82 | 0.21778426 | 1.0 | -1.0 | -1.0 | +| test.c:419:86:419:95 | 0.72485966 | 1.0 | -1.0 | -1.0 | +| test.c:419:99:419:108 | 0.68734874 | 1.0 | -1.0 | -1.0 | | test.c:420:14:420:14 | m | 14.1875 | 1.0 | 1.0 | | test.c:420:14:420:108 | ... ? ... : ... | 1.0 | 1.0 | 1.0 | | test.c:420:18:420:18 | n | 129.875 | 1.0 | 1.0 | @@ -1373,12 +1373,12 @@ estimateNrOfBounds | test.c:420:26:420:69 | ... ? ... : ... | 1.0 | 1.0 | 1.0 | | test.c:420:30:420:30 | q | 129.875 | 1.0 | 1.0 | | test.c:420:30:420:56 | ... ? ... : ... | 1.0 | 1.0 | 1.0 | -| test.c:420:34:420:43 | 0.4745284799999999747 | 1.0 | -1.0 | -1.0 | -| test.c:420:47:420:56 | 0.107866500000000004 | 1.0 | -1.0 | -1.0 | -| test.c:420:60:420:69 | 0.1188457599999999947 | 1.0 | -1.0 | -1.0 | -| test.c:420:73:420:82 | 0.7616405200000000431 | 1.0 | -1.0 | -1.0 | -| test.c:420:86:420:95 | 0.3480889200000000239 | 1.0 | -1.0 | -1.0 | -| test.c:420:99:420:108 | 0.584408649999999974 | 1.0 | -1.0 | -1.0 | +| test.c:420:34:420:43 | 0.47452848 | 1.0 | -1.0 | -1.0 | +| test.c:420:47:420:56 | 0.1078665 | 1.0 | -1.0 | -1.0 | +| test.c:420:60:420:69 | 0.11884576 | 1.0 | -1.0 | -1.0 | +| test.c:420:73:420:82 | 0.76164052 | 1.0 | -1.0 | -1.0 | +| test.c:420:86:420:95 | 0.34808892 | 1.0 | -1.0 | -1.0 | +| test.c:420:99:420:108 | 0.58440865 | 1.0 | -1.0 | -1.0 | | test.c:421:14:421:14 | m | 21.78125 | 1.0 | 1.0 | | test.c:421:14:421:108 | ... ? ... : ... | 1.0 | 1.0 | 1.0 | | test.c:421:18:421:18 | n | 325.1875 | 1.0 | 1.0 | @@ -1390,11 +1390,11 @@ estimateNrOfBounds | test.c:421:30:421:30 | q | 325.1875 | 1.0 | 1.0 | | test.c:421:30:421:56 | ... ? ... : ... | 1.0 | 1.0 | 1.0 | | test.c:421:34:421:43 | 0.02524326 | 1.0 | -1.0 | -1.0 | -| test.c:421:47:421:56 | 0.8290504600000000446 | 1.0 | -1.0 | -1.0 | -| test.c:421:60:421:69 | 0.95823075000000002 | 1.0 | -1.0 | -1.0 | -| test.c:421:73:421:82 | 0.1251655799999999985 | 1.0 | -1.0 | -1.0 | -| test.c:421:86:421:95 | 0.8523517900000000536 | 1.0 | -1.0 | -1.0 | -| test.c:421:99:421:108 | 0.3623238400000000081 | 1.0 | -1.0 | -1.0 | +| test.c:421:47:421:56 | 0.82905046 | 1.0 | -1.0 | -1.0 | +| test.c:421:60:421:69 | 0.95823075 | 1.0 | -1.0 | -1.0 | +| test.c:421:73:421:82 | 0.12516558 | 1.0 | -1.0 | -1.0 | +| test.c:421:86:421:95 | 0.85235179 | 1.0 | -1.0 | -1.0 | +| test.c:421:99:421:108 | 0.36232384 | 1.0 | -1.0 | -1.0 | | test.c:422:14:422:14 | m | 33.171875 | 1.0 | 1.0 | | test.c:422:14:422:108 | ... ? ... : ... | 1.0 | 1.0 | 1.0 | | test.c:422:18:422:18 | n | 813.46875 | 1.0 | 1.0 | @@ -1405,12 +1405,12 @@ estimateNrOfBounds | test.c:422:26:422:69 | ... ? ... : ... | 1.0 | 1.0 | 1.0 | | test.c:422:30:422:30 | q | 813.46875 | 1.0 | 1.0 | | test.c:422:30:422:56 | ... ? ... : ... | 1.0 | 1.0 | 1.0 | -| test.c:422:34:422:43 | 0.3870862600000000153 | 1.0 | -1.0 | -1.0 | -| test.c:422:47:422:56 | 0.3287604399999999871 | 1.0 | -1.0 | -1.0 | -| test.c:422:60:422:69 | 0.1496348500000000137 | 1.0 | -1.0 | -1.0 | -| test.c:422:73:422:82 | 0.4504110800000000192 | 1.0 | -1.0 | -1.0 | -| test.c:422:86:422:95 | 0.4864090899999999884 | 1.0 | -1.0 | -1.0 | -| test.c:422:99:422:108 | 0.8433127200000000157 | 1.0 | -1.0 | -1.0 | +| test.c:422:34:422:43 | 0.38708626 | 1.0 | -1.0 | -1.0 | +| test.c:422:47:422:56 | 0.32876044 | 1.0 | -1.0 | -1.0 | +| test.c:422:60:422:69 | 0.14963485 | 1.0 | -1.0 | -1.0 | +| test.c:422:73:422:82 | 0.45041108 | 1.0 | -1.0 | -1.0 | +| test.c:422:86:422:95 | 0.48640909 | 1.0 | -1.0 | -1.0 | +| test.c:422:99:422:108 | 0.84331272 | 1.0 | -1.0 | -1.0 | | test.c:423:14:423:14 | m | 50.2578125 | 1.0 | 1.0 | | test.c:423:14:423:108 | ... ? ... : ... | 1.0 | 1.0 | 1.0 | | test.c:423:18:423:18 | n | 2034.171875 | 1.0 | 1.0 | @@ -1421,12 +1421,12 @@ estimateNrOfBounds | test.c:423:26:423:69 | ... ? ... : ... | 1.0 | 1.0 | 1.0 | | test.c:423:30:423:30 | q | 2034.171875 | 1.0 | 1.0 | | test.c:423:30:423:56 | ... ? ... : ... | 1.0 | 1.0 | 1.0 | -| test.c:423:34:423:43 | 0.1575506299999999971 | 1.0 | -1.0 | -1.0 | -| test.c:423:47:423:56 | 0.7708683299999999905 | 1.0 | -1.0 | -1.0 | -| test.c:423:60:423:69 | 0.2642848099999999811 | 1.0 | -1.0 | -1.0 | -| test.c:423:73:423:82 | 0.1480050800000000111 | 1.0 | -1.0 | -1.0 | -| test.c:423:86:423:95 | 0.374281430000000026 | 1.0 | -1.0 | -1.0 | -| test.c:423:99:423:108 | 0.05328182000000000057 | 1.0 | -1.0 | -1.0 | +| test.c:423:34:423:43 | 0.15755063 | 1.0 | -1.0 | -1.0 | +| test.c:423:47:423:56 | 0.77086833 | 1.0 | -1.0 | -1.0 | +| test.c:423:60:423:69 | 0.26428481 | 1.0 | -1.0 | -1.0 | +| test.c:423:73:423:82 | 0.14800508 | 1.0 | -1.0 | -1.0 | +| test.c:423:86:423:95 | 0.37428143 | 1.0 | -1.0 | -1.0 | +| test.c:423:99:423:108 | 0.05328182 | 1.0 | -1.0 | -1.0 | | test.c:424:14:424:14 | m | 75.88671875 | 1.0 | 1.0 | | test.c:424:14:424:108 | ... ? ... : ... | 1.0 | 1.0 | 1.0 | | test.c:424:18:424:18 | n | 5085.9296875 | 1.0 | 1.0 | @@ -1437,12 +1437,12 @@ estimateNrOfBounds | test.c:424:26:424:69 | ... ? ... : ... | 1.0 | 1.0 | 1.0 | | test.c:424:30:424:30 | q | 5085.9296875 | 1.0 | 1.0 | | test.c:424:30:424:56 | ... ? ... : ... | 1.0 | 1.0 | 1.0 | -| test.c:424:34:424:43 | 0.4173653600000000186 | 1.0 | -1.0 | -1.0 | -| test.c:424:47:424:56 | 0.7682662799999999681 | 1.0 | -1.0 | -1.0 | -| test.c:424:60:424:69 | 0.2764323799999999776 | 1.0 | -1.0 | -1.0 | -| test.c:424:73:424:82 | 0.5567927400000000082 | 1.0 | -1.0 | -1.0 | -| test.c:424:86:424:95 | 0.3946885700000000163 | 1.0 | -1.0 | -1.0 | -| test.c:424:99:424:108 | 0.6907214400000000198 | 1.0 | -1.0 | -1.0 | +| test.c:424:34:424:43 | 0.41736536 | 1.0 | -1.0 | -1.0 | +| test.c:424:47:424:56 | 0.76826628 | 1.0 | -1.0 | -1.0 | +| test.c:424:60:424:69 | 0.27643238 | 1.0 | -1.0 | -1.0 | +| test.c:424:73:424:82 | 0.55679274 | 1.0 | -1.0 | -1.0 | +| test.c:424:86:424:95 | 0.39468857 | 1.0 | -1.0 | -1.0 | +| test.c:424:99:424:108 | 0.69072144 | 1.0 | -1.0 | -1.0 | | test.c:425:14:425:14 | m | 114.330078125 | 1.0 | 1.0 | | test.c:425:14:425:108 | ... ? ... : ... | 1.0 | 1.0 | 1.0 | | test.c:425:18:425:18 | n | 12715.32421875 | 1.0 | 1.0 | @@ -1453,12 +1453,12 @@ estimateNrOfBounds | test.c:425:26:425:69 | ... ? ... : ... | 1.0 | 1.0 | 1.0 | | test.c:425:30:425:30 | q | 12715.32421875 | 1.0 | 1.0 | | test.c:425:30:425:56 | ... ? ... : ... | 1.0 | 1.0 | 1.0 | -| test.c:425:34:425:43 | 0.8895534499999999678 | 1.0 | -1.0 | -1.0 | -| test.c:425:47:425:56 | 0.2990482400000000207 | 1.0 | -1.0 | -1.0 | -| test.c:425:60:425:69 | 0.7624258299999999711 | 1.0 | -1.0 | -1.0 | -| test.c:425:73:425:82 | 0.2051910999999999874 | 1.0 | -1.0 | -1.0 | -| test.c:425:86:425:95 | 0.8874555899999999609 | 1.0 | -1.0 | -1.0 | -| test.c:425:99:425:108 | 0.8137279800000000174 | 1.0 | -1.0 | -1.0 | +| test.c:425:34:425:43 | 0.88955345 | 1.0 | -1.0 | -1.0 | +| test.c:425:47:425:56 | 0.29904824 | 1.0 | -1.0 | -1.0 | +| test.c:425:60:425:69 | 0.76242583 | 1.0 | -1.0 | -1.0 | +| test.c:425:73:425:82 | 0.2051911 | 1.0 | -1.0 | -1.0 | +| test.c:425:86:425:95 | 0.88745559 | 1.0 | -1.0 | -1.0 | +| test.c:425:99:425:108 | 0.81372798 | 1.0 | -1.0 | -1.0 | | test.c:426:14:426:14 | m | 171.9951171875 | 1.0 | 1.0 | | test.c:426:14:426:108 | ... ? ... : ... | 1.0 | 1.0 | 1.0 | | test.c:426:18:426:18 | n | 31788.810546875 | 1.0 | 1.0 | @@ -1469,12 +1469,12 @@ estimateNrOfBounds | test.c:426:26:426:69 | ... ? ... : ... | 1.0 | 1.0 | 1.0 | | test.c:426:30:426:30 | q | 31788.810546875 | 1.0 | 1.0 | | test.c:426:30:426:56 | ... ? ... : ... | 1.0 | 1.0 | 1.0 | -| test.c:426:34:426:43 | 0.4218627600000000033 | 1.0 | -1.0 | -1.0 | -| test.c:426:47:426:56 | 0.5384335799999999672 | 1.0 | -1.0 | -1.0 | -| test.c:426:60:426:69 | 0.4499667900000000054 | 1.0 | -1.0 | -1.0 | -| test.c:426:73:426:82 | 0.1320411400000000013 | 1.0 | -1.0 | -1.0 | -| test.c:426:86:426:95 | 0.5203124099999999475 | 1.0 | -1.0 | -1.0 | -| test.c:426:99:426:108 | 0.4276264699999999808 | 1.0 | -1.0 | -1.0 | +| test.c:426:34:426:43 | 0.42186276 | 1.0 | -1.0 | -1.0 | +| test.c:426:47:426:56 | 0.53843358 | 1.0 | -1.0 | -1.0 | +| test.c:426:60:426:69 | 0.44996679 | 1.0 | -1.0 | -1.0 | +| test.c:426:73:426:82 | 0.13204114 | 1.0 | -1.0 | -1.0 | +| test.c:426:86:426:95 | 0.52031241 | 1.0 | -1.0 | -1.0 | +| test.c:426:99:426:108 | 0.42762647 | 1.0 | -1.0 | -1.0 | | test.c:432:19:432:19 | a | 1.0 | 1.0 | 1.0 | | test.c:432:19:432:23 | ... + ... | 1.0 | 1.0 | 1.0 | | test.c:432:19:432:27 | ... + ... | 1.0 | 1.0 | 1.0 | diff --git a/cpp/ql/test/query-tests/Likely Bugs/Underspecified Functions/MistypedFunctionArguments.expected b/cpp/ql/test/query-tests/Likely Bugs/Underspecified Functions/MistypedFunctionArguments.expected index d067430aba9c..162161e369b5 100644 --- a/cpp/ql/test/query-tests/Likely Bugs/Underspecified Functions/MistypedFunctionArguments.expected +++ b/cpp/ql/test/query-tests/Likely Bugs/Underspecified Functions/MistypedFunctionArguments.expected @@ -2,10 +2,10 @@ | test.c:33:3:33:19 | call to not_yet_declared2 | Calling $@: argument $@ of type $@ is incompatible with parameter $@. | test.c:77:6:77:22 | not_yet_declared2 | not_yet_declared2 | test.c:33:21:33:22 | ca | ca | file://:0:0:0:0 | int[4] | int[4] | test.c:77:24:77:26 | (unnamed parameter 0) | int (unnamed parameter 0) | | test.c:41:3:41:29 | call to declared_empty_defined_with | Calling $@: argument $@ of type $@ is incompatible with parameter $@. | test.c:78:6:78:32 | declared_empty_defined_with | declared_empty_defined_with | test.c:41:31:41:32 | & ... | & ... | file://:0:0:0:0 | int * | int * | test.c:78:38:78:38 | x | int x | | test.c:45:3:45:27 | call to not_declared_defined_with | Calling $@: argument $@ of type $@ is incompatible with parameter $@. | test.c:81:6:81:30 | not_declared_defined_with | not_declared_defined_with | test.c:45:29:45:31 | 4 | 4 | file://:0:0:0:0 | long long | long long | test.c:81:36:81:36 | x | int x | -| test.c:45:3:45:27 | call to not_declared_defined_with | Calling $@: argument $@ of type $@ is incompatible with parameter $@. | test.c:81:6:81:30 | not_declared_defined_with | not_declared_defined_with | test.c:45:37:45:42 | 2500000000.0 | 2500000000.0 | file://:0:0:0:0 | float | float | test.c:81:50:81:50 | z | int z | -| test.c:48:3:48:24 | call to declared_with_pointers | Calling $@: argument $@ of type $@ is incompatible with parameter $@. | test.c:5:6:5:27 | declared_with_pointers | declared_with_pointers | test.c:48:26:48:31 | 3500000000000000.0 | 3500000000000000.0 | file://:0:0:0:0 | double | double | test.c:93:34:93:34 | x | int * x | +| test.c:45:3:45:27 | call to not_declared_defined_with | Calling $@: argument $@ of type $@ is incompatible with parameter $@. | test.c:81:6:81:30 | not_declared_defined_with | not_declared_defined_with | test.c:45:37:45:42 | 2.5E9 | 2.5E9 | file://:0:0:0:0 | float | float | test.c:81:50:81:50 | z | int z | +| test.c:48:3:48:24 | call to declared_with_pointers | Calling $@: argument $@ of type $@ is incompatible with parameter $@. | test.c:5:6:5:27 | declared_with_pointers | declared_with_pointers | test.c:48:26:48:31 | 3.5E15 | 3.5E15 | file://:0:0:0:0 | double | double | test.c:93:34:93:34 | x | int * x | | test.c:48:3:48:24 | call to declared_with_pointers | Calling $@: argument $@ of type $@ is incompatible with parameter $@. | test.c:5:6:5:27 | declared_with_pointers | declared_with_pointers | test.c:48:34:48:34 | 0 | 0 | file://:0:0:0:0 | int | int | test.c:93:43:93:43 | y | void * y | -| test.c:48:3:48:24 | call to declared_with_pointers | Calling $@: argument $@ of type $@ is incompatible with parameter $@. | test.c:93:6:93:27 | declared_with_pointers | declared_with_pointers | test.c:48:26:48:31 | 3500000000000000.0 | 3500000000000000.0 | file://:0:0:0:0 | double | double | test.c:93:34:93:34 | x | int * x | +| test.c:48:3:48:24 | call to declared_with_pointers | Calling $@: argument $@ of type $@ is incompatible with parameter $@. | test.c:93:6:93:27 | declared_with_pointers | declared_with_pointers | test.c:48:26:48:31 | 3.5E15 | 3.5E15 | file://:0:0:0:0 | double | double | test.c:93:34:93:34 | x | int * x | | test.c:48:3:48:24 | call to declared_with_pointers | Calling $@: argument $@ of type $@ is incompatible with parameter $@. | test.c:93:6:93:27 | declared_with_pointers | declared_with_pointers | test.c:48:34:48:34 | 0 | 0 | file://:0:0:0:0 | int | int | test.c:93:43:93:43 | y | void * y | | test.c:50:3:50:21 | call to declared_with_array | Calling $@: argument $@ of type $@ is incompatible with parameter $@. | test.c:6:6:6:24 | declared_with_array | declared_with_array | test.c:50:23:50:24 | & ... | & ... | file://:0:0:0:0 | int * | int * | test.c:94:31:94:31 | a | char[6] a | | test.c:50:3:50:21 | call to declared_with_array | Calling $@: argument $@ of type $@ is incompatible with parameter $@. | test.c:94:6:94:24 | declared_with_array | declared_with_array | test.c:50:23:50:24 | & ... | & ... | file://:0:0:0:0 | int * | int * | test.c:94:31:94:31 | a | char[6] a | @@ -15,4 +15,4 @@ | test.c:58:3:58:24 | call to defined_with_long_long | Calling $@: argument $@ of type $@ is incompatible with parameter $@. | test.c:104:11:104:32 | defined_with_long_long | defined_with_long_long | test.c:58:26:58:28 | 99 | 99 | file://:0:0:0:0 | int | int | test.c:104:44:104:45 | ll | long long ll | | test.c:59:3:59:24 | call to defined_with_long_long | Calling $@: argument $@ of type $@ is incompatible with parameter $@. | test.c:104:11:104:32 | defined_with_long_long | defined_with_long_long | test.c:59:26:59:26 | 3 | 3 | file://:0:0:0:0 | int | int | test.c:104:44:104:45 | ll | long long ll | | test.c:61:3:61:21 | call to defined_with_double | Calling $@: argument $@ of type $@ is incompatible with parameter $@. | test.c:100:8:100:26 | defined_with_double | defined_with_double | test.c:61:23:61:25 | 2 | 2 | file://:0:0:0:0 | long long | long long | test.c:100:35:100:35 | d | double d | -| test.c:62:3:62:24 | call to defined_with_long_long | Calling $@: argument $@ of type $@ is incompatible with parameter $@. | test.c:104:11:104:32 | defined_with_long_long | defined_with_long_long | test.c:62:26:62:31 | 3500000000000000.0 | 3500000000000000.0 | file://:0:0:0:0 | double | double | test.c:104:44:104:45 | ll | long long ll | +| test.c:62:3:62:24 | call to defined_with_long_long | Calling $@: argument $@ of type $@ is incompatible with parameter $@. | test.c:104:11:104:32 | defined_with_long_long | defined_with_long_long | test.c:62:26:62:31 | 3.5E15 | 3.5E15 | file://:0:0:0:0 | double | double | test.c:104:44:104:45 | ll | long long ll | From 77f0de89ecdf2fead6cb74b3ac9c2ac1ed7c7f8f Mon Sep 17 00:00:00 2001 From: Michael Nebel Date: Wed, 22 Apr 2026 13:03:23 +0200 Subject: [PATCH 028/260] C#: Add support for compound assignment operators in the TryGetOperatorSymbol method. --- .../SymbolExtensions.cs | 152 +++++++----------- 1 file changed, 54 insertions(+), 98 deletions(-) diff --git a/csharp/extractor/Semmle.Extraction.CSharp.Util/SymbolExtensions.cs b/csharp/extractor/Semmle.Extraction.CSharp.Util/SymbolExtensions.cs index 659b26c2fe99..92d7ecfad6bb 100644 --- a/csharp/extractor/Semmle.Extraction.CSharp.Util/SymbolExtensions.cs +++ b/csharp/extractor/Semmle.Extraction.CSharp.Util/SymbolExtensions.cs @@ -1,3 +1,5 @@ +using System.Collections.Generic; +using System.Collections.ObjectModel; using System.Text.RegularExpressions; using Microsoft.CodeAnalysis; @@ -18,114 +20,68 @@ public static string GetName(this ISymbol symbol, bool useMetadataName = false) return symbol.CanBeReferencedByName ? name : name.Substring(symbol.Name.LastIndexOf('.') + 1); } + private static readonly ReadOnlyDictionary methodToOperator = new(new Dictionary + { + { "op_LogicalNot", "!" }, + { "op_BitwiseAnd", "&" }, + { "op_Equality", "==" }, + { "op_Inequality", "!=" }, + { "op_UnaryPlus", "+" }, + { "op_Addition", "+" }, + { "op_UnaryNegation", "-" }, + { "op_Subtraction", "-" }, + { "op_Multiply", "*" }, + { "op_Multiplication", "*" }, + { "op_Division", "/" }, + { "op_Modulus", "%" }, + { "op_GreaterThan", ">" }, + { "op_GreaterThanOrEqual", ">=" }, + { "op_LessThan", "<" }, + { "op_LessThanOrEqual", "<=" }, + { "op_Decrement", "--" }, + { "op_Increment", "++" }, + { "op_Implicit", "implicit conversion" }, + { "op_Explicit", "explicit conversion" }, + { "op_OnesComplement", "~" }, + { "op_RightShift", ">>" }, + { "op_UnsignedRightShift", ">>>" }, + { "op_LeftShift", "<<" }, + { "op_BitwiseOr", "|" }, + { "op_ExclusiveOr", "^" }, + { "op_True", "true" }, + { "op_False", "false" } + }); + /// /// Convert an operator method name in to a symbolic name. /// A return value indicates whether the conversion succeeded. /// public static bool TryGetOperatorSymbol(this ISymbol symbol, out string operatorName) { - static bool TryGetOperatorSymbolFromName(string methodName, out string operatorName) + var methodName = symbol.GetName(useMetadataName: false); + + // Most common use-case. + if (methodToOperator.TryGetValue(methodName, out var opName)) { - var success = true; - switch (methodName) - { - case "op_LogicalNot": - operatorName = "!"; - break; - case "op_BitwiseAnd": - operatorName = "&"; - break; - case "op_Equality": - operatorName = "=="; - break; - case "op_Inequality": - operatorName = "!="; - break; - case "op_UnaryPlus": - case "op_Addition": - operatorName = "+"; - break; - case "op_UnaryNegation": - case "op_Subtraction": - operatorName = "-"; - break; - case "op_Multiply": - operatorName = "*"; - break; - case "op_Division": - operatorName = "/"; - break; - case "op_Modulus": - operatorName = "%"; - break; - case "op_GreaterThan": - operatorName = ">"; - break; - case "op_GreaterThanOrEqual": - operatorName = ">="; - break; - case "op_LessThan": - operatorName = "<"; - break; - case "op_LessThanOrEqual": - operatorName = "<="; - break; - case "op_Decrement": - operatorName = "--"; - break; - case "op_Increment": - operatorName = "++"; - break; - case "op_Implicit": - operatorName = "implicit conversion"; - break; - case "op_Explicit": - operatorName = "explicit conversion"; - break; - case "op_OnesComplement": - operatorName = "~"; - break; - case "op_RightShift": - operatorName = ">>"; - break; - case "op_UnsignedRightShift": - operatorName = ">>>"; - break; - case "op_LeftShift": - operatorName = "<<"; - break; - case "op_BitwiseOr": - operatorName = "|"; - break; - case "op_ExclusiveOr": - operatorName = "^"; - break; - case "op_True": - operatorName = "true"; - break; - case "op_False": - operatorName = "false"; - break; - default: - var match = CheckedRegex().Match(methodName); - if (match.Success) - { - TryGetOperatorSymbolFromName($"op_{match.Groups[1]}", out var uncheckedName); - operatorName = $"checked {uncheckedName}"; - break; - } - operatorName = methodName; - success = false; - break; - } - return success; + operatorName = opName; + return true; } - var methodName = symbol.GetName(useMetadataName: false); - return TryGetOperatorSymbolFromName(methodName, out operatorName); + // Attempt to parse using a regexp. + var match = OperatorRegex().Match(methodName); + if (match.Success && methodToOperator.TryGetValue($"op_{match.Groups[2]}", out var rawOperatorName)) + { + var prefix = match.Groups[1].Success ? "checked " : ""; + var postfix = match.Groups[3].Success ? "=" : ""; + operatorName = $"{prefix}{rawOperatorName}{postfix}"; + return true; + } + + operatorName = methodName; + return false; } - [GeneratedRegex("^op_Checked(.*)$")] - private static partial Regex CheckedRegex(); + [GeneratedRegex("^op_(Checked)?(.*?)(Assignment)?$")] + private static partial Regex OperatorRegex(); } } From 8ce38a5dfb516015d04c8fd07a0cb950d097666b Mon Sep 17 00:00:00 2001 From: Michael Nebel Date: Wed, 22 Apr 2026 13:05:57 +0200 Subject: [PATCH 029/260] C#: Re-use the GetTargetSymbol logic from invocations to find the right operator symbol (operators can also be declared in extensions). --- .../Entities/Expression.cs | 41 +++++++++++++++++-- .../Entities/Expressions/Assignment.cs | 3 +- .../Entities/Expressions/Binary.cs | 2 +- .../Entities/Expressions/Cast.cs | 2 +- .../Entities/Expressions/Invocation.cs | 35 +--------------- .../Entities/Expressions/PostfixUnary.cs | 2 +- .../Entities/Expressions/Unary.cs | 2 +- 7 files changed, 44 insertions(+), 43 deletions(-) diff --git a/csharp/extractor/Semmle.Extraction.CSharp/Entities/Expression.cs b/csharp/extractor/Semmle.Extraction.CSharp/Entities/Expression.cs index 93107fc6dab8..4ab90def2c16 100644 --- a/csharp/extractor/Semmle.Extraction.CSharp/Entities/Expression.cs +++ b/csharp/extractor/Semmle.Extraction.CSharp/Entities/Expression.cs @@ -228,6 +228,41 @@ type.SpecialType is SpecialType.System_IntPtr || return Literal.CreateGenerated(cx, parent, childIndex, type, defaultValue, location); } + /// + /// Given an expression syntax node, attempt to resolve the target method symbol for it. + /// The operation takes extension methods into account. + /// + /// The expression syntax node. + /// Returns the target method symbol, or null if it cannot be resolved. + protected IMethodSymbol? GetTargetSymbol(ExpressionSyntax node) + { + var si = Context.GetSymbolInfo(node); + if (si.Symbol is ISymbol symbol) + { + var method = symbol as IMethodSymbol; + // Case for compiler-generated extension methods. + return method?.TryGetExtensionMethod() ?? method; + } + + if (si.CandidateReason == CandidateReason.OverloadResolutionFailure && node is InvocationExpressionSyntax syntax) + { + // This seems to be a bug in Roslyn + // For some reason, typeof(X).InvokeMember(...) fails to resolve the correct + // InvokeMember() method, even though the number of parameters clearly identifies the correct method + + var candidates = si.CandidateSymbols + .OfType() + .Where(method => method.Parameters.Length >= syntax.ArgumentList.Arguments.Count) + .Where(method => method.Parameters.Count(p => !p.HasExplicitDefaultValue) <= syntax.ArgumentList.Arguments.Count); + + return Context.ExtractionContext.IsStandalone ? + candidates.FirstOrDefault() : + candidates.SingleOrDefault(); + } + + return si.Symbol as IMethodSymbol; + } + /// /// Adapt the operator kind depending on whether it's a dynamic call or a user-operator call. /// @@ -244,10 +279,10 @@ public static ExprKind UnaryOperatorKind(Context cx, ExprKind originalKind, Expr /// name if available. /// /// The expression. - public void OperatorCall(TextWriter trapFile, ExpressionSyntax node) + public void AddOperatorCall(TextWriter trapFile, ExpressionSyntax node) { - var @operator = Context.GetSymbolInfo(node); - if (@operator.Symbol is IMethodSymbol method) + var @operator = GetTargetSymbol(node); + if (@operator is IMethodSymbol method) { var callType = GetCallType(Context, node); if (callType == CallType.Dynamic) diff --git a/csharp/extractor/Semmle.Extraction.CSharp/Entities/Expressions/Assignment.cs b/csharp/extractor/Semmle.Extraction.CSharp/Entities/Expressions/Assignment.cs index 67e49b2919c2..6d869b256c58 100644 --- a/csharp/extractor/Semmle.Extraction.CSharp/Entities/Expressions/Assignment.cs +++ b/csharp/extractor/Semmle.Extraction.CSharp/Entities/Expressions/Assignment.cs @@ -24,10 +24,9 @@ protected override void PopulateExpression(TextWriter trapFile) { Create(Context, Syntax.Left, this, 0); Create(Context, Syntax.Right, this, 1); - if (Kind != ExprKind.SIMPLE_ASSIGN && Kind != ExprKind.ASSIGN_COALESCE) { - OperatorCall(trapFile, Syntax); + AddOperatorCall(trapFile, Syntax); } } diff --git a/csharp/extractor/Semmle.Extraction.CSharp/Entities/Expressions/Binary.cs b/csharp/extractor/Semmle.Extraction.CSharp/Entities/Expressions/Binary.cs index d4cc5cc81d58..2bc8c61f21f3 100644 --- a/csharp/extractor/Semmle.Extraction.CSharp/Entities/Expressions/Binary.cs +++ b/csharp/extractor/Semmle.Extraction.CSharp/Entities/Expressions/Binary.cs @@ -40,7 +40,7 @@ private void CreateDeferred(Context cx, ExpressionSyntax node, int child) protected override void PopulateExpression(TextWriter trapFile) { - OperatorCall(trapFile, Syntax); + AddOperatorCall(trapFile, Syntax); CreateDeferred(Context, Syntax.Left, 0); CreateDeferred(Context, Syntax.Right, 1); } diff --git a/csharp/extractor/Semmle.Extraction.CSharp/Entities/Expressions/Cast.cs b/csharp/extractor/Semmle.Extraction.CSharp/Entities/Expressions/Cast.cs index 20a5dc611a31..c11711f30926 100644 --- a/csharp/extractor/Semmle.Extraction.CSharp/Entities/Expressions/Cast.cs +++ b/csharp/extractor/Semmle.Extraction.CSharp/Entities/Expressions/Cast.cs @@ -25,7 +25,7 @@ protected override void PopulateExpression(TextWriter trapFile) else { // Type conversion - OperatorCall(trapFile, Syntax); + AddOperatorCall(trapFile, Syntax); TypeMention.Create(Context, Syntax.Type, this, Type); } } diff --git a/csharp/extractor/Semmle.Extraction.CSharp/Entities/Expressions/Invocation.cs b/csharp/extractor/Semmle.Extraction.CSharp/Entities/Expressions/Invocation.cs index 2ed7aec9955c..343f288eeafe 100644 --- a/csharp/extractor/Semmle.Extraction.CSharp/Entities/Expressions/Invocation.cs +++ b/csharp/extractor/Semmle.Extraction.CSharp/Entities/Expressions/Invocation.cs @@ -44,7 +44,7 @@ protected override void PopulateExpression(TextWriter trapFile) var child = -1; string? memberName = null; - var target = TargetSymbol; + var target = GetTargetSymbol(Syntax); switch (Syntax.Expression) { case MemberAccessExpressionSyntax memberAccess when IsValidMemberAccessKind(): @@ -129,39 +129,6 @@ private static bool IsOperatorLikeCall(ExpressionNodeInfo info) method.TryGetExtensionMethod()?.MethodKind == MethodKind.UserDefinedOperator; } - public IMethodSymbol? TargetSymbol - { - get - { - var si = SymbolInfo; - - if (si.Symbol is ISymbol symbol) - { - var method = symbol as IMethodSymbol; - // Case for compiler-generated extension methods. - return method?.TryGetExtensionMethod() ?? method; - } - - if (si.CandidateReason == CandidateReason.OverloadResolutionFailure) - { - // This seems to be a bug in Roslyn - // For some reason, typeof(X).InvokeMember(...) fails to resolve the correct - // InvokeMember() method, even though the number of parameters clearly identifies the correct method - - var candidates = si.CandidateSymbols - .OfType() - .Where(method => method.Parameters.Length >= Syntax.ArgumentList.Arguments.Count) - .Where(method => method.Parameters.Count(p => !p.HasExplicitDefaultValue) <= Syntax.ArgumentList.Arguments.Count); - - return Context.ExtractionContext.IsStandalone ? - candidates.FirstOrDefault() : - candidates.SingleOrDefault(); - } - - return si.Symbol as IMethodSymbol; - } - } - private static bool IsDelegateLikeCall(ExpressionNodeInfo info) { return IsDelegateLikeCall(info, symbol => IsFunctionPointer(symbol) || IsDelegateInvoke(symbol)); diff --git a/csharp/extractor/Semmle.Extraction.CSharp/Entities/Expressions/PostfixUnary.cs b/csharp/extractor/Semmle.Extraction.CSharp/Entities/Expressions/PostfixUnary.cs index dbe5ecb3d184..051a03e9f8c2 100644 --- a/csharp/extractor/Semmle.Extraction.CSharp/Entities/Expressions/PostfixUnary.cs +++ b/csharp/extractor/Semmle.Extraction.CSharp/Entities/Expressions/PostfixUnary.cs @@ -25,7 +25,7 @@ protected override void PopulateExpression(TextWriter trapFile) if ((operatorKind == ExprKind.POST_INCR || operatorKind == ExprKind.POST_DECR) && Kind == ExprKind.OPERATOR_INVOCATION) { - OperatorCall(trapFile, Syntax); + AddOperatorCall(trapFile, Syntax); trapFile.mutator_invocation_mode(this, 2); } } diff --git a/csharp/extractor/Semmle.Extraction.CSharp/Entities/Expressions/Unary.cs b/csharp/extractor/Semmle.Extraction.CSharp/Entities/Expressions/Unary.cs index 161fbe62e3f1..699c3810d116 100644 --- a/csharp/extractor/Semmle.Extraction.CSharp/Entities/Expressions/Unary.cs +++ b/csharp/extractor/Semmle.Extraction.CSharp/Entities/Expressions/Unary.cs @@ -24,7 +24,7 @@ public static Unary Create(ExpressionNodeInfo info) protected override void PopulateExpression(TextWriter trapFile) { Create(Context, Syntax.Operand, this, 0); - OperatorCall(trapFile, Syntax); + AddOperatorCall(trapFile, Syntax); if ((operatorKind == ExprKind.PRE_INCR || operatorKind == ExprKind.PRE_DECR) && Kind == ExprKind.OPERATOR_INVOCATION) From 13e8976494df8bca785c038aa02cf58002e33ac8 Mon Sep 17 00:00:00 2001 From: Michael Nebel Date: Wed, 22 Apr 2026 13:07:36 +0200 Subject: [PATCH 030/260] C#: Add change-note. --- .../change-notes/2026-03-06-compound-assignment-operations.md | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 csharp/ql/lib/change-notes/2026-03-06-compound-assignment-operations.md diff --git a/csharp/ql/lib/change-notes/2026-03-06-compound-assignment-operations.md b/csharp/ql/lib/change-notes/2026-03-06-compound-assignment-operations.md new file mode 100644 index 000000000000..f7e68b9b7d73 --- /dev/null +++ b/csharp/ql/lib/change-notes/2026-03-06-compound-assignment-operations.md @@ -0,0 +1,4 @@ +--- +category: minorAnalysis +--- +* C# 14: Added support for user-defined compound assignment operators. From 2729bfe379ff21ff6a0e8a89e424caa65684a516 Mon Sep 17 00:00:00 2001 From: Michael Nebel Date: Wed, 22 Apr 2026 15:41:04 +0200 Subject: [PATCH 031/260] C#: Add compound assignment operator QL classes. --- csharp/ql/lib/semmle/code/csharp/Callable.qll | 258 +++++++++++++++++- csharp/ql/lib/semmle/code/csharp/Type.qll | 1 + 2 files changed, 255 insertions(+), 4 deletions(-) diff --git a/csharp/ql/lib/semmle/code/csharp/Callable.qll b/csharp/ql/lib/semmle/code/csharp/Callable.qll index 7859c7ea1d0e..9416a7d4d9c7 100644 --- a/csharp/ql/lib/semmle/code/csharp/Callable.qll +++ b/csharp/ql/lib/semmle/code/csharp/Callable.qll @@ -611,7 +611,8 @@ class ExtensionOperator extends ExtensionCallableImpl, Operator { class UnaryOperator extends Operator { UnaryOperator() { this.getNumberOfParameters() = 1 and - not this instanceof ConversionOperator + not this instanceof ConversionOperator and + not this instanceof CompoundAssignmentOperator } } @@ -784,7 +785,7 @@ class TrueOperator extends UnaryOperator { * A user-defined binary operator. * * Either an addition operator (`AddOperator`), a checked addition operator - * (`CheckedAddOperator`) a subtraction operator (`SubOperator`), a checked + * (`CheckedAddOperator`), a subtraction operator (`SubOperator`), a checked * subtraction operator (`CheckedSubOperator`), a multiplication operator * (`MulOperator`), a checked multiplication operator (`CheckedMulOperator`), * a division operator (`DivOperator`), a checked division operator @@ -795,10 +796,16 @@ class TrueOperator extends UnaryOperator { * operator(`UnsignedRightShiftOperator`), an equals operator (`EQOperator`), * a not equals operator (`NEOperator`), a lesser than operator (`LTOperator`), * a greater than operator (`GTOperator`), a less than or equals operator - * (`LEOperator`), or a greater than or equals operator (`GEOperator`). + * (`LEOperator`), a greater than or equals operator (`GEOperator`), or + * a compound assignment operator (`CompoundAssignmentOperator`). */ class BinaryOperator extends Operator { - BinaryOperator() { this.getNumberOfParameters() = 2 } + BinaryOperator() { + this.getNumberOfParameters() = 2 + or + // Instance compound assignment operators only have one parameter. + this.getNumberOfParameters() = 1 and not this.isStatic() + } } /** @@ -1184,6 +1191,249 @@ class CheckedExplicitConversionOperator extends ConversionOperator { override string getAPrimaryQlClass() { result = "CheckedExplicitConversionOperator" } } +abstract private class CompoundAssignmentOperatorImpl extends BinaryOperator { } + +/** + * A user-defined compound assignment operator. + * + * Either an addition operator (`AddCompoundAssignmentOperator`), a checked addition operator + * (`CheckedAddCompoundAssignmentOperator`), a subtraction operator (`SubCompoundAssignmentOperator`), a checked + * subtraction operator (`CheckedSubCompoundAssignmentOperator`), a multiplication operator + * (`MulCompoundAssignmentOperator`), a checked multiplication operator (`CheckedMulCompoundAssignmentOperator`), + * a division operator (`DivCompoundAssignmentOperator`), a checked division operator + * (`CheckedDivCompoundAssignmentOperator`), a remainder operator (`RemCompoundAssignmentOperator`), an and + * operator (`AndCompoundAssignmentOperator`), an or operator (`OrCompoundAssignmentOperator`), an xor + * operator (`XorCompoundAssignmentOperator`), a left shift operator (`LeftShiftCompoundAssignmentOperator`), + * a right shift operator (`RightShiftCompoundAssignmentOperator`), or an unsigned right shift + * operator(`UnsignedRightShiftCompoundAssignmentOperator`). + */ +final class CompoundAssignmentOperator = CompoundAssignmentOperatorImpl; + +/** + * A user-defined compound assignment addition operator (`+=`), for example + * + * ```csharp + * public void operator checked +=(Widget w) { + * ... + * } + * ``` + */ +class AddCompoundAssignmentOperator extends CompoundAssignmentOperatorImpl { + AddCompoundAssignmentOperator() { this.getName() = "+=" } + + override string getAPrimaryQlClass() { result = "AddCompoundAssignmentOperator" } +} + +/** + * A user-defined checked compound assignment addition operator (`checked +=`), for example + * + * ```csharp + * public void operator checked +=(Widget w) { + * ... + * } + * ``` + */ +class CheckedAddCompoundAssignmentOperator extends CompoundAssignmentOperatorImpl { + CheckedAddCompoundAssignmentOperator() { this.getName() = "checked +=" } + + override string getAPrimaryQlClass() { result = "CheckedAddCompoundAssignmentOperator" } +} + +/** + * A user-defined compound assignment subtraction operator (`-=`), for example + * + * ```csharp + * public void operator -=(Widget w) { + * ... + * } + * ``` + */ +class SubCompoundAssignmentOperator extends CompoundAssignmentOperatorImpl { + SubCompoundAssignmentOperator() { this.getName() = "-=" } + + override string getAPrimaryQlClass() { result = "SubCompoundAssignmentOperator" } +} + +/** + * A user-defined checked compound assignment subtraction operator (`checked -=`), for example + * + * ```csharp + * public void operator checked -=(Widget w) { + * ... + * } + * ``` + */ +class CheckedSubCompoundAssignmentOperator extends CompoundAssignmentOperatorImpl { + CheckedSubCompoundAssignmentOperator() { this.getName() = "checked -=" } + + override string getAPrimaryQlClass() { result = "CheckedSubCompoundAssignmentOperator" } +} + +/** + * A user-defined compound assignment multiplication operator (`*=`), for example + * + * ```csharp + * public void operator *=(Widget w) { + * ... + * } + * ``` + */ +class MulCompoundAssignmentOperator extends CompoundAssignmentOperatorImpl { + MulCompoundAssignmentOperator() { this.getName() = "*=" } + + override string getAPrimaryQlClass() { result = "MulCompoundAssignmentOperator" } +} + +/** + * A user-defined checked compound assignment multiplication operator (`checked *=`), for example + * + * ```csharp + * public void operator checked *=(Widget w) { + * ... + * } + * ``` + */ +class CheckedMulCompoundAssignmentOperator extends CompoundAssignmentOperatorImpl { + CheckedMulCompoundAssignmentOperator() { this.getName() = "checked *=" } + + override string getAPrimaryQlClass() { result = "CheckedMulCompoundAssignmentOperator" } +} + +/** + * A user-defined compound assignment division operator (`/=`), for example + * + * ```csharp + * public void operator /=(Widget w) { + * ... + * } + * ``` + */ +class DivCompoundAssignmentOperator extends CompoundAssignmentOperatorImpl { + DivCompoundAssignmentOperator() { this.getName() = "/=" } + + override string getAPrimaryQlClass() { result = "DivCompoundAssignmentOperator" } +} + +/** + * A user-defined checked compound assignment division operator (`checked /=`), for example + * + * ```csharp + * public void operator checked /=(Widget w) { + * ... + * } + * ``` + */ +class CheckedDivCompoundAssignmentOperator extends CompoundAssignmentOperatorImpl { + CheckedDivCompoundAssignmentOperator() { this.getName() = "checked /=" } + + override string getAPrimaryQlClass() { result = "CheckedDivCompoundAssignmentOperator" } +} + +/** + * A user-defined compound assignment remainder operator (`%=`), for example + * + * ```csharp + * public void operator %=(Widget w) { + * ... + * } + * ``` + */ +class RemCompoundAssignmentOperator extends CompoundAssignmentOperatorImpl { + RemCompoundAssignmentOperator() { this.getName() = "%=" } + + override string getAPrimaryQlClass() { result = "RemCompoundAssignmentOperator" } +} + +/** + * A user-defined compound assignment and operator (`&=`), for example + * + * ```csharp + * public void operator &=(Widget w) { + * ... + * } + * ``` + */ +class AndCompoundAssignmentOperator extends CompoundAssignmentOperatorImpl { + AndCompoundAssignmentOperator() { this.getName() = "&=" } + + override string getAPrimaryQlClass() { result = "AndCompoundAssignmentOperator" } +} + +/** + * A user-defined compound assignment or operator (`|=`), for example + * + * ```csharp + * public void operator |=(Widget w) { + * ... + * } + * ``` + */ +class OrCompoundAssignmentOperator extends CompoundAssignmentOperatorImpl { + OrCompoundAssignmentOperator() { this.getName() = "|=" } + + override string getAPrimaryQlClass() { result = "OrCompoundAssignmentOperator" } +} + +/** + * A user-defined compound assignment xor operator (`^=`), for example + * + * ```csharp + * public void operator ^=(Widget w) { + * ... + * } + * ``` + */ +class XorCompoundAssignmentOperator extends CompoundAssignmentOperatorImpl { + XorCompoundAssignmentOperator() { this.getName() = "^=" } + + override string getAPrimaryQlClass() { result = "XorCompoundAssignmentOperator" } +} + +/** + * A user-defined compound assignment left shift operator (`<<=`), for example + * + * ```csharp + * public void operator <<=(Widget w) { + * ... + * } + * ``` + */ +class LeftShiftCompoundAssignmentOperator extends CompoundAssignmentOperatorImpl { + LeftShiftCompoundAssignmentOperator() { this.getName() = "<<=" } + + override string getAPrimaryQlClass() { result = "LeftShiftCompoundAssignmentOperator" } +} + +/** + * A user-defined compound assignment right shift operator (`>>=`), for example + * + * ```csharp + * public void operator >>=(Widget w) { + * ... + * } + * ``` + */ +class RightShiftCompoundAssignmentOperator extends CompoundAssignmentOperatorImpl { + RightShiftCompoundAssignmentOperator() { this.getName() = ">>=" } + + override string getAPrimaryQlClass() { result = "RightShiftCompoundAssignmentOperator" } +} + +/** + * A user-defined compound assignment unsigned right shift operator (`>>>=`), for example + * + * ```csharp + * public void operator >>>=(Widget w) { + * ... + * } + * ``` + */ +class UnsignedRightShiftCompoundAssignmentOperator extends CompoundAssignmentOperatorImpl { + UnsignedRightShiftCompoundAssignmentOperator() { this.getName() = ">>>=" } + + override string getAPrimaryQlClass() { result = "UnsignedRightShiftCompoundAssignmentOperator" } +} + /** * A local function, defined within the scope of another callable. * For example, `Fac` on lines 2--4 in diff --git a/csharp/ql/lib/semmle/code/csharp/Type.qll b/csharp/ql/lib/semmle/code/csharp/Type.qll index 54bbe9a6219f..7af167cd9bcb 100644 --- a/csharp/ql/lib/semmle/code/csharp/Type.qll +++ b/csharp/ql/lib/semmle/code/csharp/Type.qll @@ -1334,6 +1334,7 @@ class TypeMention extends @type_mention { * ```csharp * static class MyExtensions { * extension(string s) { ... } + * } * ``` */ class ExtensionType extends Parameterizable, @extension_type { From 44dd2f008b46051d4155957df76fb5be402d2a5d Mon Sep 17 00:00:00 2001 From: Michael Nebel Date: Fri, 24 Apr 2026 08:42:22 +0200 Subject: [PATCH 032/260] C#: Update the DB scheme, such that compound assignment operator calls can be considered qualifiable expressions. --- csharp/ql/lib/semmlecode.csharp.dbscheme | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/csharp/ql/lib/semmlecode.csharp.dbscheme b/csharp/ql/lib/semmlecode.csharp.dbscheme index 19b8cc3e2dc7..ea7ad33252e5 100644 --- a/csharp/ql/lib/semmlecode.csharp.dbscheme +++ b/csharp/ql/lib/semmlecode.csharp.dbscheme @@ -1338,7 +1338,8 @@ dynamic_member_name( @qualifiable_expr = @member_access_expr | @method_invocation_expr - | @element_access_expr; + | @element_access_expr + | @assign_op_call_expr; conditional_access( unique int id: @qualifiable_expr ref); From 43ebcb68f0bcb8a7904cd8f80f6803e884ae7bb2 Mon Sep 17 00:00:00 2001 From: Michael Nebel Date: Fri, 24 Apr 2026 08:55:58 +0200 Subject: [PATCH 033/260] C#: Add upgrade- and downgrade scripts. --- .../old.dbscheme | 1505 +++++++++++++++++ .../semmlecode.csharp.dbscheme | 1504 ++++++++++++++++ .../upgrade.properties | 2 + .../old.dbscheme | 1504 ++++++++++++++++ .../semmlecode.csharp.dbscheme | 1505 +++++++++++++++++ .../upgrade.properties | 2 + 6 files changed, 6022 insertions(+) create mode 100644 csharp/downgrades/ea7ad33252e550241975676f09fcc7b0a703deab/old.dbscheme create mode 100644 csharp/downgrades/ea7ad33252e550241975676f09fcc7b0a703deab/semmlecode.csharp.dbscheme create mode 100644 csharp/downgrades/ea7ad33252e550241975676f09fcc7b0a703deab/upgrade.properties create mode 100644 csharp/ql/lib/upgrades/19b8cc3e2dc768d4cbc03d6e3773b709bbebd036/old.dbscheme create mode 100644 csharp/ql/lib/upgrades/19b8cc3e2dc768d4cbc03d6e3773b709bbebd036/semmlecode.csharp.dbscheme create mode 100644 csharp/ql/lib/upgrades/19b8cc3e2dc768d4cbc03d6e3773b709bbebd036/upgrade.properties diff --git a/csharp/downgrades/ea7ad33252e550241975676f09fcc7b0a703deab/old.dbscheme b/csharp/downgrades/ea7ad33252e550241975676f09fcc7b0a703deab/old.dbscheme new file mode 100644 index 000000000000..ea7ad33252e5 --- /dev/null +++ b/csharp/downgrades/ea7ad33252e550241975676f09fcc7b0a703deab/old.dbscheme @@ -0,0 +1,1505 @@ +/* This is a dummy line to alter the dbscheme, so we can make a database upgrade + * without actually changing any of the dbscheme predicates. It contains a date + * to allow for such updates in the future as well. + * + * 2021-07-14 + * + * DO NOT remove this comment carelessly, since it can revert the dbscheme back to a + * previously seen state (matching a previously seen SHA), which would make the upgrade + * mechanism not work properly. + */ + +/** + * An invocation of the compiler. Note that more than one file may be + * compiled per invocation. For example, this command compiles three + * source files: + * + * csc f1.cs f2.cs f3.cs + * + * The `id` simply identifies the invocation, while `cwd` is the working + * directory from which the compiler was invoked. + */ +compilations( + unique int id : @compilation, + string cwd : string ref +); + +compilation_info( + int id : @compilation ref, + string info_key: string ref, + string info_value: string ref +) + +/** + * The arguments that were passed to the extractor for a compiler + * invocation. If `id` is for the compiler invocation + * + * csc f1.cs f2.cs f3.cs + * + * then typically there will be rows for + * + * num | arg + * --- | --- + * 0 | --compiler + * 1 | *path to compiler* + * 2 | f1.cs + * 3 | f2.cs + * 4 | f3.cs + */ +#keyset[id, num] +compilation_args( + int id : @compilation ref, + int num : int ref, + string arg : string ref +); + +/** + * The expanded arguments that were passed to the extractor for a + * compiler invocation. This is similar to `compilation_args`, but + * for a `@someFile.rsp` argument, it includes the arguments from that + * file, rather than just taking the argument literally. + */ +#keyset[id, num] +compilation_expanded_args( + int id : @compilation ref, + int num : int ref, + string arg : string ref +); + +/** + * The source files that are compiled by a compiler invocation. + * If `id` is for the compiler invocation + * + * csc f1.cs f2.cs f3.cs + * + * then there will be rows for + * + * num | arg + * --- | --- + * 0 | f1.cs + * 1 | f2.cs + * 2 | f3.cs + */ +#keyset[id, num] +compilation_compiling_files( + int id : @compilation ref, + int num : int ref, + int file : @file ref +); + +/** + * The references used by a compiler invocation. + * If `id` is for the compiler invocation + * + * csc f1.cs f2.cs f3.cs /r:ref1.dll /r:ref2.dll /r:ref3.dll + * + * then there will be rows for + * + * num | arg + * --- | --- + * 0 | ref1.dll + * 1 | ref2.dll + * 2 | ref3.dll + */ +#keyset[id, num] +compilation_referencing_files( + int id : @compilation ref, + int num : int ref, + int file : @file ref +); + +/** + * The time taken by the extractor for a compiler invocation. + * + * For each file `num`, there will be rows for + * + * kind | seconds + * ---- | --- + * 1 | CPU seconds used by the extractor frontend + * 2 | Elapsed seconds during the extractor frontend + * 3 | CPU seconds used by the extractor backend + * 4 | Elapsed seconds during the extractor backend + */ +#keyset[id, num, kind] +compilation_time( + int id : @compilation ref, + int num : int ref, + /* kind: + 1 = frontend_cpu_seconds + 2 = frontend_elapsed_seconds + 3 = extractor_cpu_seconds + 4 = extractor_elapsed_seconds + */ + int kind : int ref, + float seconds : float ref +); + +/** + * An error or warning generated by the extractor. + * The diagnostic message `diagnostic` was generated during compiler + * invocation `compilation`, and is the `file_number_diagnostic_number`th + * message generated while extracting the `file_number`th file of that + * invocation. + */ +#keyset[compilation, file_number, file_number_diagnostic_number] +diagnostic_for( + unique int diagnostic : @diagnostic ref, + int compilation : @compilation ref, + int file_number : int ref, + int file_number_diagnostic_number : int ref +); + +diagnostics( + unique int id: @diagnostic, + int severity: int ref, + string error_tag: string ref, + string error_message: string ref, + string full_error_message: string ref, + int location: @location ref +); + +extractor_messages( + unique int id: @extractor_message, + int severity: int ref, + string origin : string ref, + string text : string ref, + string entity : string ref, + int location: @location ref, + string stack_trace : string ref +); + +/** + * If extraction was successful, then `cpu_seconds` and + * `elapsed_seconds` are the CPU time and elapsed time (respectively) + * that extraction took for compiler invocation `id`. + */ +compilation_finished( + unique int id : @compilation ref, + float cpu_seconds : float ref, + float elapsed_seconds : float ref +); + +compilation_assembly( + unique int id : @compilation ref, + int assembly: @assembly ref +) + +// Populated by the CSV extractor +externalData( + int id: @externalDataElement, + string path: string ref, + int column: int ref, + string value: string ref); + +sourceLocationPrefix( + string prefix: string ref); + +/* + * Overlay support + */ + +/** + * The CLI will automatically emit the tuple `databaseMetadata("isOverlay", "true")`, + * along with an `overlayChangedFiles` tuple for each new/modified/deleted file, + * when building an overlay database, and these can be used by the discard predicates. + */ +databaseMetadata( + string metadataKey : string ref, + string value : string ref +); + +overlayChangedFiles( + string path : string ref +); + +/* + * C# dbscheme + */ + +/** ELEMENTS **/ + +@element = @declaration | @stmt | @expr | @modifier | @attribute | @namespace_declaration + | @using_directive | @type_parameter_constraints | @externalDataElement + | @xmllocatable | @asp_element | @namespace | @preprocessor_directive; + +@declaration = @callable | @generic | @assignable | @namespace; + +@named_element = @namespace | @declaration; + +@declaration_with_accessors = @property | @indexer | @event; + +@assignable = @variable | @assignable_with_accessors | @event; + +@assignable_with_accessors = @property | @indexer; + +@attributable = @assembly | @field | @parameter | @operator | @method | @constructor + | @destructor | @callable_accessor | @value_or_ref_type | @declaration_with_accessors + | @local_function | @lambda_expr; + +/** LOCATIONS, ASEMMBLIES, MODULES, FILES and FOLDERS **/ + +@location = @location_default | @assembly; + +@locatable = @declaration_with_accessors | @callable_accessor | @declaration_or_directive + | @diagnostic | @extractor_message | @preprocessor_directive | @attribute | @type_mention | @type_parameter_constraints + | @declaration_with_accessors | @callable_accessor | @operator | @method + | @constructor | @destructor | @field | @local_variable | @parameter | @stmt | @expr + | @xmllocatable | @commentline | @commentblock | @asp_element + +locations_default( + unique int id: @location_default, + int file: @file ref, + int beginLine: int ref, + int beginColumn: int ref, + int endLine: int ref, + int endColumn: int ref); + +locations_mapped( + unique int id: @location_default ref, + int mapped_to: @location_default ref); + +@sourceline = @file | @callable | @xmllocatable; + +numlines( + int element_id: @sourceline ref, + int num_lines: int ref, + int num_code: int ref, + int num_comment: int ref); + +assemblies( + unique int id: @assembly, + int file: @file ref, + string fullname: string ref, + string name: string ref, + string version: string ref); + +files( + unique int id: @file, + string name: string ref); + +folders( + unique int id: @folder, + string name: string ref); + +@container = @folder | @file ; + +containerparent( + int parent: @container ref, + unique int child: @container ref); + +file_extraction_mode( + unique int file: @file ref, + int mode: int ref + /* 0 = normal, 1 = standalone extractor */ + ); + +/** NAMESPACES **/ + +@type_container = @namespace | @type; + +namespaces( + unique int id: @namespace, + string name: string ref); + +namespace_declarations( + unique int id: @namespace_declaration, + int namespace_id: @namespace ref); + +namespace_declaration_location( + unique int id: @namespace_declaration ref, + int loc: @location ref); + +parent_namespace( + unique int child_id: @type_container ref, + int namespace_id: @namespace ref); + +@declaration_or_directive = @namespace_declaration | @type | @using_directive; + +parent_namespace_declaration( + int child_id: @declaration_or_directive ref, // cannot be unique because of partial classes + int namespace_id: @namespace_declaration ref); + +@using_directive = @using_namespace_directive | @using_static_directive; + +using_global( + unique int id: @using_directive ref +); + +using_namespace_directives( + unique int id: @using_namespace_directive, + int namespace_id: @namespace ref); + +using_static_directives( + unique int id: @using_static_directive, + int type_id: @type_or_ref ref); + +using_directive_location( + unique int id: @using_directive ref, + int loc: @location ref); + +@preprocessor_directive = @pragma_warning | @pragma_checksum | @directive_define | @directive_undefine | @directive_warning + | @directive_error | @directive_nullable | @directive_line | @directive_region | @directive_endregion | @directive_if + | @directive_elif | @directive_else | @directive_endif; + +@conditional_directive = @directive_if | @directive_elif; +@branch_directive = @directive_if | @directive_elif | @directive_else; + +directive_ifs( + unique int id: @directive_if, + int branchTaken: int ref, /* 0: false, 1: true */ + int conditionValue: int ref); /* 0: false, 1: true */ + +directive_elifs( + unique int id: @directive_elif, + int branchTaken: int ref, /* 0: false, 1: true */ + int conditionValue: int ref, /* 0: false, 1: true */ + int parent: @directive_if ref, + int index: int ref); + +directive_elses( + unique int id: @directive_else, + int branchTaken: int ref, /* 0: false, 1: true */ + int parent: @directive_if ref, + int index: int ref); + +#keyset[id, start] +directive_endifs( + unique int id: @directive_endif, + unique int start: @directive_if ref); + +directive_define_symbols( + unique int id: @define_symbol_expr ref, + string name: string ref); + +directive_regions( + unique int id: @directive_region, + string name: string ref); + +#keyset[id, start] +directive_endregions( + unique int id: @directive_endregion, + unique int start: @directive_region ref); + +directive_lines( + unique int id: @directive_line, + int kind: int ref); /* 0: default, 1: hidden, 2: numeric, 3: span */ + +directive_line_value( + unique int id: @directive_line ref, + int line: int ref); + +directive_line_file( + unique int id: @directive_line ref, + int file: @file ref); + +directive_line_offset( + unique int id: @directive_line ref, + int offset: int ref); + +directive_line_span( + unique int id: @directive_line ref, + int startLine: int ref, + int startColumn: int ref, + int endLine: int ref, + int endColumn: int ref); + +directive_nullables( + unique int id: @directive_nullable, + int setting: int ref, /* 0: disable, 1: enable, 2: restore */ + int target: int ref); /* 0: none, 1: annotations, 2: warnings */ + +directive_warnings( + unique int id: @directive_warning, + string message: string ref); + +directive_errors( + unique int id: @directive_error, + string message: string ref); + +directive_undefines( + unique int id: @directive_undefine, + string name: string ref); + +directive_defines( + unique int id: @directive_define, + string name: string ref); + +pragma_checksums( + unique int id: @pragma_checksum, + int file: @file ref, + string guid: string ref, + string bytes: string ref); + +pragma_warnings( + unique int id: @pragma_warning, + int kind: int ref /* 0 = disable, 1 = restore */); + +#keyset[id, index] +pragma_warning_error_codes( + int id: @pragma_warning ref, + string errorCode: string ref, + int index: int ref); + +preprocessor_directive_location( + unique int id: @preprocessor_directive ref, + int loc: @location ref); + +preprocessor_directive_compilation( + int id: @preprocessor_directive ref, + int compilation: @compilation ref); + +preprocessor_directive_active( + unique int id: @preprocessor_directive ref, + int active: int ref); /* 0: false, 1: true */ + +/** TYPES **/ + +types( + unique int id: @type, + int kind: int ref, + string name: string ref); + +case @type.kind of + 1 = @bool_type +| 2 = @char_type +| 3 = @decimal_type +| 4 = @sbyte_type +| 5 = @short_type +| 6 = @int_type +| 7 = @long_type +| 8 = @byte_type +| 9 = @ushort_type +| 10 = @uint_type +| 11 = @ulong_type +| 12 = @float_type +| 13 = @double_type +| 14 = @enum_type +| 15 = @struct_type +| 17 = @class_type +| 19 = @interface_type +| 20 = @delegate_type +| 21 = @null_type +| 22 = @type_parameter +| 23 = @pointer_type +| 24 = @nullable_type +| 25 = @array_type +| 26 = @void_type +| 27 = @int_ptr_type +| 28 = @uint_ptr_type +| 29 = @dynamic_type +| 30 = @arglist_type +| 31 = @unknown_type +| 32 = @tuple_type +| 33 = @function_pointer_type +| 34 = @inline_array_type +| 35 = @extension_type + ; + +@simple_type = @bool_type | @char_type | @integral_type | @floating_point_type | @decimal_type; +@integral_type = @signed_integral_type | @unsigned_integral_type; +@signed_integral_type = @sbyte_type | @short_type | @int_type | @long_type; +@unsigned_integral_type = @byte_type | @ushort_type | @uint_type | @ulong_type; +@floating_point_type = @float_type | @double_type; +@value_type = @simple_type | @enum_type | @struct_type | @nullable_type | @int_ptr_type + | @uint_ptr_type | @tuple_type | @void_type | @inline_array_type; +@ref_type = @class_type | @interface_type | @array_type | @delegate_type | @null_type + | @dynamic_type | @extension_type; +@value_or_ref_type = @value_type | @ref_type; + +typerefs( + unique int id: @typeref, + string name: string ref); + +typeref_type( + int id: @typeref ref, + unique int typeId: @type ref); + +@type_or_ref = @type | @typeref; + +array_element_type( + unique int array: @array_type ref, + int dimension: int ref, + int rank: int ref, + int element: @type_or_ref ref); + +nullable_underlying_type( + unique int nullable: @nullable_type ref, + int underlying: @type_or_ref ref); + +pointer_referent_type( + unique int pointer: @pointer_type ref, + int referent: @type_or_ref ref); + +enum_underlying_type( + unique int enum_id: @enum_type ref, + int underlying_type_id: @type_or_ref ref); + +delegate_return_type( + unique int delegate_id: @delegate_type ref, + int return_type_id: @type_or_ref ref); + +function_pointer_return_type( + unique int function_pointer_id: @function_pointer_type ref, + int return_type_id: @type_or_ref ref); + +extension_receiver_type( + unique int extension: @extension_type ref, + int receiver_type_id: @type_or_ref ref); + +extend( + int sub: @type ref, + int super: @type_or_ref ref); + +anonymous_types( + unique int id: @type ref); + +@interface_or_ref = @interface_type | @typeref; + +implement( + int sub: @type ref, + int super: @type_or_ref ref); + +type_location( + int id: @type ref, + int loc: @location ref); + +tuple_underlying_type( + unique int tuple: @tuple_type ref, + int struct: @type_or_ref ref); + +#keyset[tuple, index] +tuple_element( + int tuple: @tuple_type ref, + int index: int ref, + unique int field: @field ref); + +attributes( + unique int id: @attribute, + int kind: int ref, + int type_id: @type_or_ref ref, + int target: @attributable ref); + +case @attribute.kind of + 0 = @attribute_default +| 1 = @attribute_return +| 2 = @attribute_assembly +| 3 = @attribute_module +; + +attribute_location( + int id: @attribute ref, + int loc: @location ref); + +@type_mention_parent = @element | @type_mention; + +type_mention( + unique int id: @type_mention, + int type_id: @type_or_ref ref, + int parent: @type_mention_parent ref); + +type_mention_location( + unique int id: @type_mention ref, + int loc: @location ref); + +@has_type_annotation = @assignable | @type_parameter | @callable | @expr | @delegate_type | @generic | @function_pointer_type; + +/** + * A direct annotation on an entity, for example `string? x;`. + * + * Annotations: + * 2 = reftype is not annotated "!" + * 3 = reftype is annotated "?" + * 4 = readonly ref type / in parameter + * 5 = ref type parameter, return or local variable + * 6 = out parameter + * + * Note that the annotation depends on the element it annotates. + * @assignable: The annotation is on the type of the assignable, for example the variable type. + * @type_parameter: The annotation is on the reftype constraint + * @callable: The annotation is on the return type + * @array_type: The annotation is on the element type + */ +type_annotation(int id: @has_type_annotation ref, int annotation: int ref); + +nullability(unique int nullability: @nullability, int kind: int ref); + +case @nullability.kind of + 0 = @oblivious +| 1 = @not_annotated +| 2 = @annotated +; + +#keyset[parent, index] +nullability_parent(int nullability: @nullability ref, int index: int ref, int parent: @nullability ref) + +type_nullability(int id: @has_type_annotation ref, int nullability: @nullability ref); + +/** + * The nullable flow state of an expression, as determined by Roslyn. + * 0 = none (default, not populated) + * 1 = not null + * 2 = maybe null + */ +expr_flowstate(unique int id: @expr ref, int state: int ref); + +/** GENERICS **/ + +@generic = @type | @method | @local_function; + +type_parameters( + unique int id: @type_parameter ref, + int index: int ref, + int generic_id: @generic ref, + int variance: int ref /* none = 0, out = 1, in = 2 */); + +#keyset[constructed_id, index] +type_arguments( + int id: @type_or_ref ref, + int index: int ref, + int constructed_id: @generic_or_ref ref); + +@generic_or_ref = @generic | @typeref; + +constructed_generic( + unique int constructed: @generic ref, + int generic: @generic_or_ref ref); + +type_parameter_constraints( + unique int id: @type_parameter_constraints, + int param_id: @type_parameter ref); + +type_parameter_constraints_location( + int id: @type_parameter_constraints ref, + int loc: @location ref); + +general_type_parameter_constraints( + int id: @type_parameter_constraints ref, + int kind: int ref /* class = 1, struct = 2, new = 3 */); + +specific_type_parameter_constraints( + int id: @type_parameter_constraints ref, + int base_id: @type_or_ref ref); + +specific_type_parameter_nullability( + int id: @type_parameter_constraints ref, + int base_id: @type_or_ref ref, + int nullability: @nullability ref); + +/** FUNCTION POINTERS */ + +function_pointer_calling_conventions( + int id: @function_pointer_type ref, + int kind: int ref); + +#keyset[id, index] +has_unmanaged_calling_conventions( + int id: @function_pointer_type ref, + int index: int ref, + int conv_id: @type_or_ref ref); + +/** MODIFIERS */ + +@modifiable = @modifiable_direct | @event_accessor; + +@modifiable_direct = @member | @accessor | @local_function | @anonymous_function_expr; + +modifiers( + unique int id: @modifier, + string name: string ref); + +has_modifiers( + int id: @modifiable_direct ref, + int mod_id: @modifier ref); + +/** MEMBERS **/ + +@member = @method | @constructor | @destructor | @field | @property | @event | @operator | @indexer | @type; + +@named_exprorstmt = @goto_stmt | @labeled_stmt | @expr; + +@virtualizable = @method | @property | @indexer | @event | @operator; + +exprorstmt_name( + unique int parent_id: @named_exprorstmt ref, + string name: string ref); + +nested_types( + unique int id: @type ref, + int declaring_type_id: @type ref, + int unbound_id: @type ref); + +properties( + unique int id: @property, + string name: string ref, + int declaring_type_id: @type ref, + int type_id: @type_or_ref ref, + int unbound_id: @property ref); + +property_location( + int id: @property ref, + int loc: @location ref); + +indexers( + unique int id: @indexer, + string name: string ref, + int declaring_type_id: @type ref, + int type_id: @type_or_ref ref, + int unbound_id: @indexer ref); + +indexer_location( + int id: @indexer ref, + int loc: @location ref); + +accessors( + unique int id: @accessor, + int kind: int ref, + string name: string ref, + int declaring_member_id: @member ref, + int unbound_id: @accessor ref); + +case @accessor.kind of + 1 = @getter +| 2 = @setter + ; + +init_only_accessors( + unique int id: @accessor ref); + +accessor_location( + int id: @accessor ref, + int loc: @location ref); + +events( + unique int id: @event, + string name: string ref, + int declaring_type_id: @type ref, + int type_id: @type_or_ref ref, + int unbound_id: @event ref); + +event_location( + int id: @event ref, + int loc: @location ref); + +event_accessors( + unique int id: @event_accessor, + int kind: int ref, + string name: string ref, + int declaring_event_id: @event ref, + int unbound_id: @event_accessor ref); + +case @event_accessor.kind of + 1 = @add_event_accessor +| 2 = @remove_event_accessor + ; + +event_accessor_location( + int id: @event_accessor ref, + int loc: @location ref); + +operators( + unique int id: @operator, + string name: string ref, + string symbol: string ref, + int declaring_type_id: @type ref, + int type_id: @type_or_ref ref, + int unbound_id: @operator ref); + +operator_location( + int id: @operator ref, + int loc: @location ref); + +constant_value( + int id: @variable ref, + string value: string ref); + +/** CALLABLES **/ + +@callable = @method | @constructor | @destructor | @operator | @callable_accessor | @anonymous_function_expr | @local_function; + +@callable_accessor = @accessor | @event_accessor; + +methods( + unique int id: @method, + string name: string ref, + int declaring_type_id: @type ref, + int type_id: @type_or_ref ref, + int unbound_id: @method ref); + +method_location( + int id: @method ref, + int loc: @location ref); + +constructors( + unique int id: @constructor, + string name: string ref, + int declaring_type_id: @type ref, + int unbound_id: @constructor ref); + +constructor_location( + int id: @constructor ref, + int loc: @location ref); + +destructors( + unique int id: @destructor, + string name: string ref, + int declaring_type_id: @type ref, + int unbound_id: @destructor ref); + +destructor_location( + int id: @destructor ref, + int loc: @location ref); + +overrides( + int id: @callable ref, + int base_id: @callable ref); + +explicitly_implements( + int id: @member ref, + int interface_id: @interface_or_ref ref); + +local_functions( + unique int id: @local_function, + string name: string ref, + int return_type: @type ref, + int unbound_id: @local_function ref); + +local_function_stmts( + unique int fn: @local_function_stmt ref, + int stmt: @local_function ref); + +/** VARIABLES **/ + +@variable = @local_scope_variable | @field; + +@local_scope_variable = @local_variable | @parameter; + +fields( + unique int id: @field, + int kind: int ref, + string name: string ref, + int declaring_type_id: @type ref, + int type_id: @type_or_ref ref, + int unbound_id: @field ref); + +case @field.kind of + 1 = @addressable_field +| 2 = @constant + ; + +field_location( + int id: @field ref, + int loc: @location ref); + +localvars( + unique int id: @local_variable, + int kind: int ref, + string name: string ref, + int implicitly_typed: int ref /* 0 = no, 1 = yes */, + int type_id: @type_or_ref ref, + int parent_id: @local_var_decl_expr ref); + +case @local_variable.kind of + 1 = @addressable_local_variable +| 2 = @local_constant +| 3 = @local_variable_ref + ; + +localvar_location( + unique int id: @local_variable ref, + int loc: @location ref); + +@parameterizable = @callable | @delegate_type | @indexer | @function_pointer_type | @extension_type; + +#keyset[name, parent_id] +#keyset[index, parent_id] +params( + unique int id: @parameter, + string name: string ref, + int type_id: @type_or_ref ref, + int index: int ref, + int mode: int ref, /* value = 0, ref = 1, out = 2, params/array = 3, this = 4, in = 5, ref readonly = 6 */ + int parent_id: @parameterizable ref, + int unbound_id: @parameter ref); + +param_location( + int id: @parameter ref, + int loc: @location ref); + +@has_scoped_annotation = @local_scope_variable + +scoped_annotation( + int id: @has_scoped_annotation ref, + int kind: int ref // scoped ref = 1, scoped value = 2 + ); + +/** STATEMENTS **/ + +@exprorstmt_parent = @control_flow_element | @top_level_exprorstmt_parent; + +statements( + unique int id: @stmt, + int kind: int ref); + +#keyset[index, parent] +stmt_parent( + unique int stmt: @stmt ref, + int index: int ref, + int parent: @control_flow_element ref); + +@top_level_stmt_parent = @callable; + +// [index, parent] is not a keyset because the same parent may be compiled multiple times +stmt_parent_top_level( + unique int stmt: @stmt ref, + int index: int ref, + int parent: @top_level_stmt_parent ref); + +case @stmt.kind of + 1 = @block_stmt +| 2 = @expr_stmt +| 3 = @if_stmt +| 4 = @switch_stmt +| 5 = @while_stmt +| 6 = @do_stmt +| 7 = @for_stmt +| 8 = @foreach_stmt +| 9 = @break_stmt +| 10 = @continue_stmt +| 11 = @goto_stmt +| 12 = @goto_case_stmt +| 13 = @goto_default_stmt +| 14 = @throw_stmt +| 15 = @return_stmt +| 16 = @yield_stmt +| 17 = @try_stmt +| 18 = @checked_stmt +| 19 = @unchecked_stmt +| 20 = @lock_stmt +| 21 = @using_block_stmt +| 22 = @var_decl_stmt +| 23 = @const_decl_stmt +| 24 = @empty_stmt +| 25 = @unsafe_stmt +| 26 = @fixed_stmt +| 27 = @label_stmt +| 28 = @catch +| 29 = @case_stmt +| 30 = @local_function_stmt +| 31 = @using_decl_stmt + ; + +@using_stmt = @using_block_stmt | @using_decl_stmt; + +@labeled_stmt = @label_stmt | @case; + +@decl_stmt = @var_decl_stmt | @const_decl_stmt | @using_decl_stmt; + +@cond_stmt = @if_stmt | @switch_stmt; + +@loop_stmt = @while_stmt | @do_stmt | @for_stmt | @foreach_stmt; + +@jump_stmt = @break_stmt | @goto_any_stmt | @continue_stmt | @throw_stmt | @return_stmt + | @yield_stmt; + +@goto_any_stmt = @goto_default_stmt | @goto_case_stmt | @goto_stmt; + + +stmt_location( + unique int id: @stmt ref, + int loc: @location ref); + +catch_type( + unique int catch_id: @catch ref, + int type_id: @type_or_ref ref, + int kind: int ref /* explicit = 1, implicit = 2 */); + +foreach_stmt_info( + unique int id: @foreach_stmt ref, + int kind: int ref /* non-async = 1, async = 2 */); + +@foreach_symbol = @method | @property | @type_or_ref; + +#keyset[id, kind] +foreach_stmt_desugar( + int id: @foreach_stmt ref, + int symbol: @foreach_symbol ref, + int kind: int ref /* GetEnumeratorMethod = 1, CurrentProperty = 2, MoveNextMethod = 3, DisposeMethod = 4, ElementType = 5 */); + +/** EXPRESSIONS **/ + +expressions( + unique int id: @expr, + int kind: int ref, + int type_id: @type_or_ref ref); + +#keyset[index, parent] +expr_parent( + unique int expr: @expr ref, + int index: int ref, + int parent: @control_flow_element ref); + +@top_level_expr_parent = @attribute | @field | @property | @indexer | @parameter | @directive_if | @directive_elif; + +@top_level_exprorstmt_parent = @top_level_expr_parent | @top_level_stmt_parent; + +// [index, parent] is not a keyset because the same parent may be compiled multiple times +expr_parent_top_level( + unique int expr: @expr ref, + int index: int ref, + int parent: @top_level_exprorstmt_parent ref); + +case @expr.kind of +/* literal */ + 1 = @bool_literal_expr +| 2 = @char_literal_expr +| 3 = @decimal_literal_expr +| 4 = @int_literal_expr +| 5 = @long_literal_expr +| 6 = @uint_literal_expr +| 7 = @ulong_literal_expr +| 8 = @float_literal_expr +| 9 = @double_literal_expr +| 10 = @utf16_string_literal_expr +| 11 = @null_literal_expr +/* primary & unary */ +| 12 = @this_access_expr +| 13 = @base_access_expr +| 14 = @local_variable_access_expr +| 15 = @parameter_access_expr +| 16 = @field_access_expr +| 17 = @property_access_expr +| 18 = @method_access_expr +| 19 = @event_access_expr +| 20 = @indexer_access_expr +| 21 = @array_access_expr +| 22 = @type_access_expr +| 23 = @typeof_expr +| 24 = @method_invocation_expr +| 25 = @delegate_invocation_expr +| 26 = @operator_invocation_expr +| 27 = @cast_expr +| 28 = @object_creation_expr +| 29 = @explicit_delegate_creation_expr +| 30 = @implicit_delegate_creation_expr +| 31 = @array_creation_expr +| 32 = @default_expr +| 33 = @plus_expr +| 34 = @minus_expr +| 35 = @bit_not_expr +| 36 = @log_not_expr +| 37 = @post_incr_expr +| 38 = @post_decr_expr +| 39 = @pre_incr_expr +| 40 = @pre_decr_expr +/* multiplicative */ +| 41 = @mul_expr +| 42 = @div_expr +| 43 = @rem_expr +/* additive */ +| 44 = @add_expr +| 45 = @sub_expr +/* shift */ +| 46 = @lshift_expr +| 47 = @rshift_expr +/* relational */ +| 48 = @lt_expr +| 49 = @gt_expr +| 50 = @le_expr +| 51 = @ge_expr +/* equality */ +| 52 = @eq_expr +| 53 = @ne_expr +/* logical */ +| 54 = @bit_and_expr +| 55 = @bit_xor_expr +| 56 = @bit_or_expr +| 57 = @log_and_expr +| 58 = @log_or_expr +/* type testing */ +| 59 = @is_expr +| 60 = @as_expr +/* null coalescing */ +| 61 = @null_coalescing_expr +/* conditional */ +| 62 = @conditional_expr +/* assignment */ +| 63 = @simple_assign_expr +| 64 = @assign_add_expr +| 65 = @assign_sub_expr +| 66 = @assign_mul_expr +| 67 = @assign_div_expr +| 68 = @assign_rem_expr +| 69 = @assign_and_expr +| 70 = @assign_xor_expr +| 71 = @assign_or_expr +| 72 = @assign_lshift_expr +| 73 = @assign_rshift_expr +/* more */ +| 74 = @object_init_expr +| 75 = @collection_init_expr +| 76 = @array_init_expr +| 77 = @checked_expr +| 78 = @unchecked_expr +| 79 = @constructor_init_expr +| 80 = @add_event_expr +| 81 = @remove_event_expr +| 82 = @par_expr +| 83 = @local_var_decl_expr +| 84 = @lambda_expr +| 85 = @anonymous_method_expr +| 86 = @namespace_expr +/* dynamic */ +| 92 = @dynamic_element_access_expr +| 93 = @dynamic_member_access_expr +/* unsafe */ +| 100 = @pointer_indirection_expr +| 101 = @address_of_expr +| 102 = @sizeof_expr +/* async */ +| 103 = @await_expr +/* C# 6.0 */ +| 104 = @nameof_expr +| 105 = @interpolated_string_expr +| 106 = @unknown_expr +/* C# 7.0 */ +| 107 = @throw_expr +| 108 = @tuple_expr +| 109 = @local_function_invocation_expr +| 110 = @ref_expr +| 111 = @discard_expr +/* C# 8.0 */ +| 112 = @range_expr +| 113 = @index_expr +| 114 = @switch_expr +| 115 = @recursive_pattern_expr +| 116 = @property_pattern_expr +| 117 = @positional_pattern_expr +| 118 = @switch_case_expr +| 119 = @assign_coalesce_expr +| 120 = @suppress_nullable_warning_expr +| 121 = @namespace_access_expr +/* C# 9.0 */ +| 122 = @lt_pattern_expr +| 123 = @gt_pattern_expr +| 124 = @le_pattern_expr +| 125 = @ge_pattern_expr +| 126 = @not_pattern_expr +| 127 = @and_pattern_expr +| 128 = @or_pattern_expr +| 129 = @function_pointer_invocation_expr +| 130 = @with_expr +/* C# 11.0 */ +| 131 = @list_pattern_expr +| 132 = @slice_pattern_expr +| 133 = @urshift_expr +| 134 = @assign_urshift_expr +| 135 = @utf8_string_literal_expr +/* C# 12.0 */ +| 136 = @collection_expr +| 137 = @spread_element_expr +| 138 = @interpolated_string_insert_expr +/* Preprocessor */ +| 999 = @define_symbol_expr +; + +@switch = @switch_stmt | @switch_expr; +@case = @case_stmt | @switch_case_expr; +@pattern_match = @case | @is_expr; +@unary_pattern_expr = @not_pattern_expr; +@relational_pattern_expr = @gt_pattern_expr | @lt_pattern_expr | @ge_pattern_expr | @le_pattern_expr; +@binary_pattern_expr = @and_pattern_expr | @or_pattern_expr; + +@integer_literal_expr = @int_literal_expr | @long_literal_expr | @uint_literal_expr | @ulong_literal_expr; +@real_literal_expr = @float_literal_expr | @double_literal_expr | @decimal_literal_expr; +@string_literal_expr = @utf16_string_literal_expr | @utf8_string_literal_expr; +@literal_expr = @bool_literal_expr | @char_literal_expr | @integer_literal_expr | @real_literal_expr + | @string_literal_expr | @null_literal_expr; + +@assign_expr = @simple_assign_expr | @assign_op_expr | @local_var_decl_expr; +@assign_op_call_expr = @assign_arith_expr | @assign_bitwise_expr +@assign_op_expr = @assign_op_call_expr | @assign_event_expr | @assign_coalesce_expr; +@assign_event_expr = @add_event_expr | @remove_event_expr; + +@add_operation = @add_expr | @assign_add_expr; +@sub_operation = @sub_expr | @assign_sub_expr; +@mul_operation = @mul_expr | @assign_mul_expr; +@div_operation = @div_expr | @assign_div_expr; +@rem_operation = @rem_expr | @assign_rem_expr; +@and_operation = @bit_and_expr | @assign_and_expr; +@xor_operation = @bit_xor_expr | @assign_xor_expr; +@or_operation = @bit_or_expr | @assign_or_expr; +@lshift_operation = @lshift_expr | @assign_lshift_expr; +@rshift_operation = @rshift_expr | @assign_rshift_expr; +@urshift_operation = @urshift_expr | @assign_urshift_expr; +@null_coalescing_operation = @null_coalescing_expr | @assign_coalesce_expr; + +@assign_arith_expr = @assign_add_expr | @assign_sub_expr | @assign_mul_expr | @assign_div_expr + | @assign_rem_expr +@assign_bitwise_expr = @assign_and_expr | @assign_or_expr | @assign_xor_expr + | @assign_lshift_expr | @assign_rshift_expr | @assign_urshift_expr; + +@member_access_expr = @field_access_expr | @property_access_expr | @indexer_access_expr | @event_access_expr + | @method_access_expr | @type_access_expr | @dynamic_member_access_expr; +@access_expr = @member_access_expr | @this_access_expr | @base_access_expr | @assignable_access_expr | @namespace_access_expr; +@element_access_expr = @indexer_access_expr | @array_access_expr | @dynamic_element_access_expr; + +@local_variable_access = @local_variable_access_expr | @local_var_decl_expr; +@local_scope_variable_access_expr = @parameter_access_expr | @local_variable_access; +@variable_access_expr = @local_scope_variable_access_expr | @field_access_expr; + +@assignable_access_expr = @variable_access_expr | @property_access_expr | @element_access_expr + | @event_access_expr | @dynamic_member_access_expr; + +@objectorcollection_init_expr = @object_init_expr | @collection_init_expr; + +@delegate_creation_expr = @explicit_delegate_creation_expr | @implicit_delegate_creation_expr; + +@bin_arith_op_expr = @mul_expr | @div_expr | @rem_expr | @add_expr | @sub_expr; +@incr_op_expr = @pre_incr_expr | @post_incr_expr; +@decr_op_expr = @pre_decr_expr | @post_decr_expr; +@mut_op_expr = @incr_op_expr | @decr_op_expr; +@un_arith_op_expr = @plus_expr | @minus_expr | @mut_op_expr; +@arith_op_expr = @bin_arith_op_expr | @un_arith_op_expr; + +@ternary_log_op_expr = @conditional_expr; +@bin_log_op_expr = @log_and_expr | @log_or_expr | @null_coalescing_expr; +@un_log_op_expr = @log_not_expr; +@log_expr = @un_log_op_expr | @bin_log_op_expr | @ternary_log_op_expr; + +@bin_bit_op_expr = @bit_and_expr | @bit_or_expr | @bit_xor_expr | @lshift_expr + | @rshift_expr | @urshift_expr; +@un_bit_op_expr = @bit_not_expr; +@bit_expr = @un_bit_op_expr | @bin_bit_op_expr; + +@equality_op_expr = @eq_expr | @ne_expr; +@rel_op_expr = @gt_expr | @lt_expr| @ge_expr | @le_expr; +@comp_expr = @equality_op_expr | @rel_op_expr; + +@op_expr = @un_op | @bin_op | @ternary_op; + +@ternary_op = @ternary_log_op_expr; +@bin_op = @assign_expr | @bin_arith_op_expr | @bin_log_op_expr | @bin_bit_op_expr | @comp_expr; +@un_op = @un_arith_op_expr | @un_log_op_expr | @un_bit_op_expr | @sizeof_expr + | @pointer_indirection_expr | @address_of_expr; + +@anonymous_function_expr = @lambda_expr | @anonymous_method_expr; + +@op_invoke_expr = @operator_invocation_expr | @assign_op_call_expr +@call = @method_invocation_expr | @constructor_init_expr | @op_invoke_expr + | @delegate_invocation_expr | @object_creation_expr | @call_access_expr + | @local_function_invocation_expr | @function_pointer_invocation_expr; + +@call_access_expr = @property_access_expr | @event_access_expr | @indexer_access_expr; + +@late_bindable_expr = @dynamic_element_access_expr | @dynamic_member_access_expr + | @object_creation_expr | @method_invocation_expr | @op_invoke_expr; + +@throw_element = @throw_expr | @throw_stmt; + +@implicitly_typeable_object_creation_expr = @object_creation_expr | @explicit_delegate_creation_expr; + +implicitly_typed_array_creation( + unique int id: @array_creation_expr ref); + +explicitly_sized_array_creation( + unique int id: @array_creation_expr ref); + +stackalloc_array_creation( + unique int id: @array_creation_expr ref); + +implicitly_typed_object_creation( + unique int id: @implicitly_typeable_object_creation_expr ref); + +mutator_invocation_mode( + unique int id: @operator_invocation_expr ref, + int mode: int ref /* prefix = 1, postfix = 2*/); + +expr_value( + unique int id: @expr ref, + string value: string ref); + +expr_call( + unique int caller_id: @expr ref, + int target_id: @callable ref); + +expr_access( + unique int accesser_id: @access_expr ref, + int target_id: @accessible ref); + +@accessible = @method | @assignable | @local_function | @namespace; + +expr_location( + unique int id: @expr ref, + int loc: @location ref); + +dynamic_member_name( + unique int id: @late_bindable_expr ref, + string name: string ref); + +@qualifiable_expr = @member_access_expr + | @method_invocation_expr + | @element_access_expr + | @assign_op_call_expr; + +conditional_access( + unique int id: @qualifiable_expr ref); + +expr_argument( + unique int id: @expr ref, + int mode: int ref); + /* mode is the same as params: value = 0, ref = 1, out = 2 */ + +expr_argument_name( + unique int id: @expr ref, + string name: string ref); + +lambda_expr_return_type( + unique int id: @lambda_expr ref, + int type_id: @type_or_ref ref); + +/* Compiler generated */ + +compiler_generated(unique int id: @element ref); + +/** CONTROL/DATA FLOW **/ + +@control_flow_element = @stmt | @expr; + +/* XML Files */ + +xmlEncoding ( + unique int id: @file ref, + string encoding: string ref); + +xmlDTDs( + unique int id: @xmldtd, + string root: string ref, + string publicId: string ref, + string systemId: string ref, + int fileid: @file ref); + +xmlElements( + unique int id: @xmlelement, + string name: string ref, + int parentid: @xmlparent ref, + int idx: int ref, + int fileid: @file ref); + +xmlAttrs( + unique int id: @xmlattribute, + int elementid: @xmlelement ref, + string name: string ref, + string value: string ref, + int idx: int ref, + int fileid: @file ref); + +xmlNs( + int id: @xmlnamespace, + string prefixName: string ref, + string URI: string ref, + int fileid: @file ref); + +xmlHasNs( + int elementId: @xmlnamespaceable ref, + int nsId: @xmlnamespace ref, + int fileid: @file ref); + +xmlComments( + unique int id: @xmlcomment, + string text: string ref, + int parentid: @xmlparent ref, + int fileid: @file ref); + +xmlChars( + unique int id: @xmlcharacters, + string text: string ref, + int parentid: @xmlparent ref, + int idx: int ref, + int isCDATA: int ref, + int fileid: @file ref); + +@xmlparent = @file | @xmlelement; +@xmlnamespaceable = @xmlelement | @xmlattribute; + +xmllocations( + int xmlElement: @xmllocatable ref, + int location: @location_default ref); + +@xmllocatable = @xmlcharacters | @xmlelement | @xmlcomment | @xmlattribute | @xmldtd | @file | @xmlnamespace; + +/* Comments */ + +commentline( + unique int id: @commentline, + int kind: int ref, + string text: string ref, + string rawtext: string ref); + +case @commentline.kind of + 0 = @singlelinecomment +| 1 = @xmldoccomment +| 2 = @multilinecomment; + +commentline_location( + unique int id: @commentline ref, + int loc: @location ref); + +commentblock( + unique int id : @commentblock); + +commentblock_location( + unique int id: @commentblock ref, + int loc: @location ref); + +commentblock_binding( + int id: @commentblock ref, + int entity: @element ref, + int bindtype: int ref); /* 0: Parent, 1: Best, 2: Before, 3: After */ + +commentblock_child( + int id: @commentblock ref, + int commentline: @commentline ref, + int index: int ref); + +/* ASP.NET */ + +case @asp_element.kind of + 0=@asp_close_tag +| 1=@asp_code +| 2=@asp_comment +| 3=@asp_data_binding +| 4=@asp_directive +| 5=@asp_open_tag +| 6=@asp_quoted_string +| 7=@asp_text +| 8=@asp_xml_directive; + +@asp_attribute = @asp_code | @asp_data_binding | @asp_quoted_string; + +asp_elements( + unique int id: @asp_element, + int kind: int ref, + int loc: @location ref); + +asp_comment_server(unique int comment: @asp_comment ref); +asp_code_inline(unique int code: @asp_code ref); +asp_directive_attribute( + int directive: @asp_directive ref, + int index: int ref, + string name: string ref, + int value: @asp_quoted_string ref); +asp_directive_name( + unique int directive: @asp_directive ref, + string name: string ref); +asp_element_body( + unique int element: @asp_element ref, + string body: string ref); +asp_tag_attribute( + int tag: @asp_open_tag ref, + int index: int ref, + string name: string ref, + int attribute: @asp_attribute ref); +asp_tag_name( + unique int tag: @asp_open_tag ref, + string name: string ref); +asp_tag_isempty(int tag: @asp_open_tag ref); diff --git a/csharp/downgrades/ea7ad33252e550241975676f09fcc7b0a703deab/semmlecode.csharp.dbscheme b/csharp/downgrades/ea7ad33252e550241975676f09fcc7b0a703deab/semmlecode.csharp.dbscheme new file mode 100644 index 000000000000..19b8cc3e2dc7 --- /dev/null +++ b/csharp/downgrades/ea7ad33252e550241975676f09fcc7b0a703deab/semmlecode.csharp.dbscheme @@ -0,0 +1,1504 @@ +/* This is a dummy line to alter the dbscheme, so we can make a database upgrade + * without actually changing any of the dbscheme predicates. It contains a date + * to allow for such updates in the future as well. + * + * 2021-07-14 + * + * DO NOT remove this comment carelessly, since it can revert the dbscheme back to a + * previously seen state (matching a previously seen SHA), which would make the upgrade + * mechanism not work properly. + */ + +/** + * An invocation of the compiler. Note that more than one file may be + * compiled per invocation. For example, this command compiles three + * source files: + * + * csc f1.cs f2.cs f3.cs + * + * The `id` simply identifies the invocation, while `cwd` is the working + * directory from which the compiler was invoked. + */ +compilations( + unique int id : @compilation, + string cwd : string ref +); + +compilation_info( + int id : @compilation ref, + string info_key: string ref, + string info_value: string ref +) + +/** + * The arguments that were passed to the extractor for a compiler + * invocation. If `id` is for the compiler invocation + * + * csc f1.cs f2.cs f3.cs + * + * then typically there will be rows for + * + * num | arg + * --- | --- + * 0 | --compiler + * 1 | *path to compiler* + * 2 | f1.cs + * 3 | f2.cs + * 4 | f3.cs + */ +#keyset[id, num] +compilation_args( + int id : @compilation ref, + int num : int ref, + string arg : string ref +); + +/** + * The expanded arguments that were passed to the extractor for a + * compiler invocation. This is similar to `compilation_args`, but + * for a `@someFile.rsp` argument, it includes the arguments from that + * file, rather than just taking the argument literally. + */ +#keyset[id, num] +compilation_expanded_args( + int id : @compilation ref, + int num : int ref, + string arg : string ref +); + +/** + * The source files that are compiled by a compiler invocation. + * If `id` is for the compiler invocation + * + * csc f1.cs f2.cs f3.cs + * + * then there will be rows for + * + * num | arg + * --- | --- + * 0 | f1.cs + * 1 | f2.cs + * 2 | f3.cs + */ +#keyset[id, num] +compilation_compiling_files( + int id : @compilation ref, + int num : int ref, + int file : @file ref +); + +/** + * The references used by a compiler invocation. + * If `id` is for the compiler invocation + * + * csc f1.cs f2.cs f3.cs /r:ref1.dll /r:ref2.dll /r:ref3.dll + * + * then there will be rows for + * + * num | arg + * --- | --- + * 0 | ref1.dll + * 1 | ref2.dll + * 2 | ref3.dll + */ +#keyset[id, num] +compilation_referencing_files( + int id : @compilation ref, + int num : int ref, + int file : @file ref +); + +/** + * The time taken by the extractor for a compiler invocation. + * + * For each file `num`, there will be rows for + * + * kind | seconds + * ---- | --- + * 1 | CPU seconds used by the extractor frontend + * 2 | Elapsed seconds during the extractor frontend + * 3 | CPU seconds used by the extractor backend + * 4 | Elapsed seconds during the extractor backend + */ +#keyset[id, num, kind] +compilation_time( + int id : @compilation ref, + int num : int ref, + /* kind: + 1 = frontend_cpu_seconds + 2 = frontend_elapsed_seconds + 3 = extractor_cpu_seconds + 4 = extractor_elapsed_seconds + */ + int kind : int ref, + float seconds : float ref +); + +/** + * An error or warning generated by the extractor. + * The diagnostic message `diagnostic` was generated during compiler + * invocation `compilation`, and is the `file_number_diagnostic_number`th + * message generated while extracting the `file_number`th file of that + * invocation. + */ +#keyset[compilation, file_number, file_number_diagnostic_number] +diagnostic_for( + unique int diagnostic : @diagnostic ref, + int compilation : @compilation ref, + int file_number : int ref, + int file_number_diagnostic_number : int ref +); + +diagnostics( + unique int id: @diagnostic, + int severity: int ref, + string error_tag: string ref, + string error_message: string ref, + string full_error_message: string ref, + int location: @location ref +); + +extractor_messages( + unique int id: @extractor_message, + int severity: int ref, + string origin : string ref, + string text : string ref, + string entity : string ref, + int location: @location ref, + string stack_trace : string ref +); + +/** + * If extraction was successful, then `cpu_seconds` and + * `elapsed_seconds` are the CPU time and elapsed time (respectively) + * that extraction took for compiler invocation `id`. + */ +compilation_finished( + unique int id : @compilation ref, + float cpu_seconds : float ref, + float elapsed_seconds : float ref +); + +compilation_assembly( + unique int id : @compilation ref, + int assembly: @assembly ref +) + +// Populated by the CSV extractor +externalData( + int id: @externalDataElement, + string path: string ref, + int column: int ref, + string value: string ref); + +sourceLocationPrefix( + string prefix: string ref); + +/* + * Overlay support + */ + +/** + * The CLI will automatically emit the tuple `databaseMetadata("isOverlay", "true")`, + * along with an `overlayChangedFiles` tuple for each new/modified/deleted file, + * when building an overlay database, and these can be used by the discard predicates. + */ +databaseMetadata( + string metadataKey : string ref, + string value : string ref +); + +overlayChangedFiles( + string path : string ref +); + +/* + * C# dbscheme + */ + +/** ELEMENTS **/ + +@element = @declaration | @stmt | @expr | @modifier | @attribute | @namespace_declaration + | @using_directive | @type_parameter_constraints | @externalDataElement + | @xmllocatable | @asp_element | @namespace | @preprocessor_directive; + +@declaration = @callable | @generic | @assignable | @namespace; + +@named_element = @namespace | @declaration; + +@declaration_with_accessors = @property | @indexer | @event; + +@assignable = @variable | @assignable_with_accessors | @event; + +@assignable_with_accessors = @property | @indexer; + +@attributable = @assembly | @field | @parameter | @operator | @method | @constructor + | @destructor | @callable_accessor | @value_or_ref_type | @declaration_with_accessors + | @local_function | @lambda_expr; + +/** LOCATIONS, ASEMMBLIES, MODULES, FILES and FOLDERS **/ + +@location = @location_default | @assembly; + +@locatable = @declaration_with_accessors | @callable_accessor | @declaration_or_directive + | @diagnostic | @extractor_message | @preprocessor_directive | @attribute | @type_mention | @type_parameter_constraints + | @declaration_with_accessors | @callable_accessor | @operator | @method + | @constructor | @destructor | @field | @local_variable | @parameter | @stmt | @expr + | @xmllocatable | @commentline | @commentblock | @asp_element + +locations_default( + unique int id: @location_default, + int file: @file ref, + int beginLine: int ref, + int beginColumn: int ref, + int endLine: int ref, + int endColumn: int ref); + +locations_mapped( + unique int id: @location_default ref, + int mapped_to: @location_default ref); + +@sourceline = @file | @callable | @xmllocatable; + +numlines( + int element_id: @sourceline ref, + int num_lines: int ref, + int num_code: int ref, + int num_comment: int ref); + +assemblies( + unique int id: @assembly, + int file: @file ref, + string fullname: string ref, + string name: string ref, + string version: string ref); + +files( + unique int id: @file, + string name: string ref); + +folders( + unique int id: @folder, + string name: string ref); + +@container = @folder | @file ; + +containerparent( + int parent: @container ref, + unique int child: @container ref); + +file_extraction_mode( + unique int file: @file ref, + int mode: int ref + /* 0 = normal, 1 = standalone extractor */ + ); + +/** NAMESPACES **/ + +@type_container = @namespace | @type; + +namespaces( + unique int id: @namespace, + string name: string ref); + +namespace_declarations( + unique int id: @namespace_declaration, + int namespace_id: @namespace ref); + +namespace_declaration_location( + unique int id: @namespace_declaration ref, + int loc: @location ref); + +parent_namespace( + unique int child_id: @type_container ref, + int namespace_id: @namespace ref); + +@declaration_or_directive = @namespace_declaration | @type | @using_directive; + +parent_namespace_declaration( + int child_id: @declaration_or_directive ref, // cannot be unique because of partial classes + int namespace_id: @namespace_declaration ref); + +@using_directive = @using_namespace_directive | @using_static_directive; + +using_global( + unique int id: @using_directive ref +); + +using_namespace_directives( + unique int id: @using_namespace_directive, + int namespace_id: @namespace ref); + +using_static_directives( + unique int id: @using_static_directive, + int type_id: @type_or_ref ref); + +using_directive_location( + unique int id: @using_directive ref, + int loc: @location ref); + +@preprocessor_directive = @pragma_warning | @pragma_checksum | @directive_define | @directive_undefine | @directive_warning + | @directive_error | @directive_nullable | @directive_line | @directive_region | @directive_endregion | @directive_if + | @directive_elif | @directive_else | @directive_endif; + +@conditional_directive = @directive_if | @directive_elif; +@branch_directive = @directive_if | @directive_elif | @directive_else; + +directive_ifs( + unique int id: @directive_if, + int branchTaken: int ref, /* 0: false, 1: true */ + int conditionValue: int ref); /* 0: false, 1: true */ + +directive_elifs( + unique int id: @directive_elif, + int branchTaken: int ref, /* 0: false, 1: true */ + int conditionValue: int ref, /* 0: false, 1: true */ + int parent: @directive_if ref, + int index: int ref); + +directive_elses( + unique int id: @directive_else, + int branchTaken: int ref, /* 0: false, 1: true */ + int parent: @directive_if ref, + int index: int ref); + +#keyset[id, start] +directive_endifs( + unique int id: @directive_endif, + unique int start: @directive_if ref); + +directive_define_symbols( + unique int id: @define_symbol_expr ref, + string name: string ref); + +directive_regions( + unique int id: @directive_region, + string name: string ref); + +#keyset[id, start] +directive_endregions( + unique int id: @directive_endregion, + unique int start: @directive_region ref); + +directive_lines( + unique int id: @directive_line, + int kind: int ref); /* 0: default, 1: hidden, 2: numeric, 3: span */ + +directive_line_value( + unique int id: @directive_line ref, + int line: int ref); + +directive_line_file( + unique int id: @directive_line ref, + int file: @file ref); + +directive_line_offset( + unique int id: @directive_line ref, + int offset: int ref); + +directive_line_span( + unique int id: @directive_line ref, + int startLine: int ref, + int startColumn: int ref, + int endLine: int ref, + int endColumn: int ref); + +directive_nullables( + unique int id: @directive_nullable, + int setting: int ref, /* 0: disable, 1: enable, 2: restore */ + int target: int ref); /* 0: none, 1: annotations, 2: warnings */ + +directive_warnings( + unique int id: @directive_warning, + string message: string ref); + +directive_errors( + unique int id: @directive_error, + string message: string ref); + +directive_undefines( + unique int id: @directive_undefine, + string name: string ref); + +directive_defines( + unique int id: @directive_define, + string name: string ref); + +pragma_checksums( + unique int id: @pragma_checksum, + int file: @file ref, + string guid: string ref, + string bytes: string ref); + +pragma_warnings( + unique int id: @pragma_warning, + int kind: int ref /* 0 = disable, 1 = restore */); + +#keyset[id, index] +pragma_warning_error_codes( + int id: @pragma_warning ref, + string errorCode: string ref, + int index: int ref); + +preprocessor_directive_location( + unique int id: @preprocessor_directive ref, + int loc: @location ref); + +preprocessor_directive_compilation( + int id: @preprocessor_directive ref, + int compilation: @compilation ref); + +preprocessor_directive_active( + unique int id: @preprocessor_directive ref, + int active: int ref); /* 0: false, 1: true */ + +/** TYPES **/ + +types( + unique int id: @type, + int kind: int ref, + string name: string ref); + +case @type.kind of + 1 = @bool_type +| 2 = @char_type +| 3 = @decimal_type +| 4 = @sbyte_type +| 5 = @short_type +| 6 = @int_type +| 7 = @long_type +| 8 = @byte_type +| 9 = @ushort_type +| 10 = @uint_type +| 11 = @ulong_type +| 12 = @float_type +| 13 = @double_type +| 14 = @enum_type +| 15 = @struct_type +| 17 = @class_type +| 19 = @interface_type +| 20 = @delegate_type +| 21 = @null_type +| 22 = @type_parameter +| 23 = @pointer_type +| 24 = @nullable_type +| 25 = @array_type +| 26 = @void_type +| 27 = @int_ptr_type +| 28 = @uint_ptr_type +| 29 = @dynamic_type +| 30 = @arglist_type +| 31 = @unknown_type +| 32 = @tuple_type +| 33 = @function_pointer_type +| 34 = @inline_array_type +| 35 = @extension_type + ; + +@simple_type = @bool_type | @char_type | @integral_type | @floating_point_type | @decimal_type; +@integral_type = @signed_integral_type | @unsigned_integral_type; +@signed_integral_type = @sbyte_type | @short_type | @int_type | @long_type; +@unsigned_integral_type = @byte_type | @ushort_type | @uint_type | @ulong_type; +@floating_point_type = @float_type | @double_type; +@value_type = @simple_type | @enum_type | @struct_type | @nullable_type | @int_ptr_type + | @uint_ptr_type | @tuple_type | @void_type | @inline_array_type; +@ref_type = @class_type | @interface_type | @array_type | @delegate_type | @null_type + | @dynamic_type | @extension_type; +@value_or_ref_type = @value_type | @ref_type; + +typerefs( + unique int id: @typeref, + string name: string ref); + +typeref_type( + int id: @typeref ref, + unique int typeId: @type ref); + +@type_or_ref = @type | @typeref; + +array_element_type( + unique int array: @array_type ref, + int dimension: int ref, + int rank: int ref, + int element: @type_or_ref ref); + +nullable_underlying_type( + unique int nullable: @nullable_type ref, + int underlying: @type_or_ref ref); + +pointer_referent_type( + unique int pointer: @pointer_type ref, + int referent: @type_or_ref ref); + +enum_underlying_type( + unique int enum_id: @enum_type ref, + int underlying_type_id: @type_or_ref ref); + +delegate_return_type( + unique int delegate_id: @delegate_type ref, + int return_type_id: @type_or_ref ref); + +function_pointer_return_type( + unique int function_pointer_id: @function_pointer_type ref, + int return_type_id: @type_or_ref ref); + +extension_receiver_type( + unique int extension: @extension_type ref, + int receiver_type_id: @type_or_ref ref); + +extend( + int sub: @type ref, + int super: @type_or_ref ref); + +anonymous_types( + unique int id: @type ref); + +@interface_or_ref = @interface_type | @typeref; + +implement( + int sub: @type ref, + int super: @type_or_ref ref); + +type_location( + int id: @type ref, + int loc: @location ref); + +tuple_underlying_type( + unique int tuple: @tuple_type ref, + int struct: @type_or_ref ref); + +#keyset[tuple, index] +tuple_element( + int tuple: @tuple_type ref, + int index: int ref, + unique int field: @field ref); + +attributes( + unique int id: @attribute, + int kind: int ref, + int type_id: @type_or_ref ref, + int target: @attributable ref); + +case @attribute.kind of + 0 = @attribute_default +| 1 = @attribute_return +| 2 = @attribute_assembly +| 3 = @attribute_module +; + +attribute_location( + int id: @attribute ref, + int loc: @location ref); + +@type_mention_parent = @element | @type_mention; + +type_mention( + unique int id: @type_mention, + int type_id: @type_or_ref ref, + int parent: @type_mention_parent ref); + +type_mention_location( + unique int id: @type_mention ref, + int loc: @location ref); + +@has_type_annotation = @assignable | @type_parameter | @callable | @expr | @delegate_type | @generic | @function_pointer_type; + +/** + * A direct annotation on an entity, for example `string? x;`. + * + * Annotations: + * 2 = reftype is not annotated "!" + * 3 = reftype is annotated "?" + * 4 = readonly ref type / in parameter + * 5 = ref type parameter, return or local variable + * 6 = out parameter + * + * Note that the annotation depends on the element it annotates. + * @assignable: The annotation is on the type of the assignable, for example the variable type. + * @type_parameter: The annotation is on the reftype constraint + * @callable: The annotation is on the return type + * @array_type: The annotation is on the element type + */ +type_annotation(int id: @has_type_annotation ref, int annotation: int ref); + +nullability(unique int nullability: @nullability, int kind: int ref); + +case @nullability.kind of + 0 = @oblivious +| 1 = @not_annotated +| 2 = @annotated +; + +#keyset[parent, index] +nullability_parent(int nullability: @nullability ref, int index: int ref, int parent: @nullability ref) + +type_nullability(int id: @has_type_annotation ref, int nullability: @nullability ref); + +/** + * The nullable flow state of an expression, as determined by Roslyn. + * 0 = none (default, not populated) + * 1 = not null + * 2 = maybe null + */ +expr_flowstate(unique int id: @expr ref, int state: int ref); + +/** GENERICS **/ + +@generic = @type | @method | @local_function; + +type_parameters( + unique int id: @type_parameter ref, + int index: int ref, + int generic_id: @generic ref, + int variance: int ref /* none = 0, out = 1, in = 2 */); + +#keyset[constructed_id, index] +type_arguments( + int id: @type_or_ref ref, + int index: int ref, + int constructed_id: @generic_or_ref ref); + +@generic_or_ref = @generic | @typeref; + +constructed_generic( + unique int constructed: @generic ref, + int generic: @generic_or_ref ref); + +type_parameter_constraints( + unique int id: @type_parameter_constraints, + int param_id: @type_parameter ref); + +type_parameter_constraints_location( + int id: @type_parameter_constraints ref, + int loc: @location ref); + +general_type_parameter_constraints( + int id: @type_parameter_constraints ref, + int kind: int ref /* class = 1, struct = 2, new = 3 */); + +specific_type_parameter_constraints( + int id: @type_parameter_constraints ref, + int base_id: @type_or_ref ref); + +specific_type_parameter_nullability( + int id: @type_parameter_constraints ref, + int base_id: @type_or_ref ref, + int nullability: @nullability ref); + +/** FUNCTION POINTERS */ + +function_pointer_calling_conventions( + int id: @function_pointer_type ref, + int kind: int ref); + +#keyset[id, index] +has_unmanaged_calling_conventions( + int id: @function_pointer_type ref, + int index: int ref, + int conv_id: @type_or_ref ref); + +/** MODIFIERS */ + +@modifiable = @modifiable_direct | @event_accessor; + +@modifiable_direct = @member | @accessor | @local_function | @anonymous_function_expr; + +modifiers( + unique int id: @modifier, + string name: string ref); + +has_modifiers( + int id: @modifiable_direct ref, + int mod_id: @modifier ref); + +/** MEMBERS **/ + +@member = @method | @constructor | @destructor | @field | @property | @event | @operator | @indexer | @type; + +@named_exprorstmt = @goto_stmt | @labeled_stmt | @expr; + +@virtualizable = @method | @property | @indexer | @event | @operator; + +exprorstmt_name( + unique int parent_id: @named_exprorstmt ref, + string name: string ref); + +nested_types( + unique int id: @type ref, + int declaring_type_id: @type ref, + int unbound_id: @type ref); + +properties( + unique int id: @property, + string name: string ref, + int declaring_type_id: @type ref, + int type_id: @type_or_ref ref, + int unbound_id: @property ref); + +property_location( + int id: @property ref, + int loc: @location ref); + +indexers( + unique int id: @indexer, + string name: string ref, + int declaring_type_id: @type ref, + int type_id: @type_or_ref ref, + int unbound_id: @indexer ref); + +indexer_location( + int id: @indexer ref, + int loc: @location ref); + +accessors( + unique int id: @accessor, + int kind: int ref, + string name: string ref, + int declaring_member_id: @member ref, + int unbound_id: @accessor ref); + +case @accessor.kind of + 1 = @getter +| 2 = @setter + ; + +init_only_accessors( + unique int id: @accessor ref); + +accessor_location( + int id: @accessor ref, + int loc: @location ref); + +events( + unique int id: @event, + string name: string ref, + int declaring_type_id: @type ref, + int type_id: @type_or_ref ref, + int unbound_id: @event ref); + +event_location( + int id: @event ref, + int loc: @location ref); + +event_accessors( + unique int id: @event_accessor, + int kind: int ref, + string name: string ref, + int declaring_event_id: @event ref, + int unbound_id: @event_accessor ref); + +case @event_accessor.kind of + 1 = @add_event_accessor +| 2 = @remove_event_accessor + ; + +event_accessor_location( + int id: @event_accessor ref, + int loc: @location ref); + +operators( + unique int id: @operator, + string name: string ref, + string symbol: string ref, + int declaring_type_id: @type ref, + int type_id: @type_or_ref ref, + int unbound_id: @operator ref); + +operator_location( + int id: @operator ref, + int loc: @location ref); + +constant_value( + int id: @variable ref, + string value: string ref); + +/** CALLABLES **/ + +@callable = @method | @constructor | @destructor | @operator | @callable_accessor | @anonymous_function_expr | @local_function; + +@callable_accessor = @accessor | @event_accessor; + +methods( + unique int id: @method, + string name: string ref, + int declaring_type_id: @type ref, + int type_id: @type_or_ref ref, + int unbound_id: @method ref); + +method_location( + int id: @method ref, + int loc: @location ref); + +constructors( + unique int id: @constructor, + string name: string ref, + int declaring_type_id: @type ref, + int unbound_id: @constructor ref); + +constructor_location( + int id: @constructor ref, + int loc: @location ref); + +destructors( + unique int id: @destructor, + string name: string ref, + int declaring_type_id: @type ref, + int unbound_id: @destructor ref); + +destructor_location( + int id: @destructor ref, + int loc: @location ref); + +overrides( + int id: @callable ref, + int base_id: @callable ref); + +explicitly_implements( + int id: @member ref, + int interface_id: @interface_or_ref ref); + +local_functions( + unique int id: @local_function, + string name: string ref, + int return_type: @type ref, + int unbound_id: @local_function ref); + +local_function_stmts( + unique int fn: @local_function_stmt ref, + int stmt: @local_function ref); + +/** VARIABLES **/ + +@variable = @local_scope_variable | @field; + +@local_scope_variable = @local_variable | @parameter; + +fields( + unique int id: @field, + int kind: int ref, + string name: string ref, + int declaring_type_id: @type ref, + int type_id: @type_or_ref ref, + int unbound_id: @field ref); + +case @field.kind of + 1 = @addressable_field +| 2 = @constant + ; + +field_location( + int id: @field ref, + int loc: @location ref); + +localvars( + unique int id: @local_variable, + int kind: int ref, + string name: string ref, + int implicitly_typed: int ref /* 0 = no, 1 = yes */, + int type_id: @type_or_ref ref, + int parent_id: @local_var_decl_expr ref); + +case @local_variable.kind of + 1 = @addressable_local_variable +| 2 = @local_constant +| 3 = @local_variable_ref + ; + +localvar_location( + unique int id: @local_variable ref, + int loc: @location ref); + +@parameterizable = @callable | @delegate_type | @indexer | @function_pointer_type | @extension_type; + +#keyset[name, parent_id] +#keyset[index, parent_id] +params( + unique int id: @parameter, + string name: string ref, + int type_id: @type_or_ref ref, + int index: int ref, + int mode: int ref, /* value = 0, ref = 1, out = 2, params/array = 3, this = 4, in = 5, ref readonly = 6 */ + int parent_id: @parameterizable ref, + int unbound_id: @parameter ref); + +param_location( + int id: @parameter ref, + int loc: @location ref); + +@has_scoped_annotation = @local_scope_variable + +scoped_annotation( + int id: @has_scoped_annotation ref, + int kind: int ref // scoped ref = 1, scoped value = 2 + ); + +/** STATEMENTS **/ + +@exprorstmt_parent = @control_flow_element | @top_level_exprorstmt_parent; + +statements( + unique int id: @stmt, + int kind: int ref); + +#keyset[index, parent] +stmt_parent( + unique int stmt: @stmt ref, + int index: int ref, + int parent: @control_flow_element ref); + +@top_level_stmt_parent = @callable; + +// [index, parent] is not a keyset because the same parent may be compiled multiple times +stmt_parent_top_level( + unique int stmt: @stmt ref, + int index: int ref, + int parent: @top_level_stmt_parent ref); + +case @stmt.kind of + 1 = @block_stmt +| 2 = @expr_stmt +| 3 = @if_stmt +| 4 = @switch_stmt +| 5 = @while_stmt +| 6 = @do_stmt +| 7 = @for_stmt +| 8 = @foreach_stmt +| 9 = @break_stmt +| 10 = @continue_stmt +| 11 = @goto_stmt +| 12 = @goto_case_stmt +| 13 = @goto_default_stmt +| 14 = @throw_stmt +| 15 = @return_stmt +| 16 = @yield_stmt +| 17 = @try_stmt +| 18 = @checked_stmt +| 19 = @unchecked_stmt +| 20 = @lock_stmt +| 21 = @using_block_stmt +| 22 = @var_decl_stmt +| 23 = @const_decl_stmt +| 24 = @empty_stmt +| 25 = @unsafe_stmt +| 26 = @fixed_stmt +| 27 = @label_stmt +| 28 = @catch +| 29 = @case_stmt +| 30 = @local_function_stmt +| 31 = @using_decl_stmt + ; + +@using_stmt = @using_block_stmt | @using_decl_stmt; + +@labeled_stmt = @label_stmt | @case; + +@decl_stmt = @var_decl_stmt | @const_decl_stmt | @using_decl_stmt; + +@cond_stmt = @if_stmt | @switch_stmt; + +@loop_stmt = @while_stmt | @do_stmt | @for_stmt | @foreach_stmt; + +@jump_stmt = @break_stmt | @goto_any_stmt | @continue_stmt | @throw_stmt | @return_stmt + | @yield_stmt; + +@goto_any_stmt = @goto_default_stmt | @goto_case_stmt | @goto_stmt; + + +stmt_location( + unique int id: @stmt ref, + int loc: @location ref); + +catch_type( + unique int catch_id: @catch ref, + int type_id: @type_or_ref ref, + int kind: int ref /* explicit = 1, implicit = 2 */); + +foreach_stmt_info( + unique int id: @foreach_stmt ref, + int kind: int ref /* non-async = 1, async = 2 */); + +@foreach_symbol = @method | @property | @type_or_ref; + +#keyset[id, kind] +foreach_stmt_desugar( + int id: @foreach_stmt ref, + int symbol: @foreach_symbol ref, + int kind: int ref /* GetEnumeratorMethod = 1, CurrentProperty = 2, MoveNextMethod = 3, DisposeMethod = 4, ElementType = 5 */); + +/** EXPRESSIONS **/ + +expressions( + unique int id: @expr, + int kind: int ref, + int type_id: @type_or_ref ref); + +#keyset[index, parent] +expr_parent( + unique int expr: @expr ref, + int index: int ref, + int parent: @control_flow_element ref); + +@top_level_expr_parent = @attribute | @field | @property | @indexer | @parameter | @directive_if | @directive_elif; + +@top_level_exprorstmt_parent = @top_level_expr_parent | @top_level_stmt_parent; + +// [index, parent] is not a keyset because the same parent may be compiled multiple times +expr_parent_top_level( + unique int expr: @expr ref, + int index: int ref, + int parent: @top_level_exprorstmt_parent ref); + +case @expr.kind of +/* literal */ + 1 = @bool_literal_expr +| 2 = @char_literal_expr +| 3 = @decimal_literal_expr +| 4 = @int_literal_expr +| 5 = @long_literal_expr +| 6 = @uint_literal_expr +| 7 = @ulong_literal_expr +| 8 = @float_literal_expr +| 9 = @double_literal_expr +| 10 = @utf16_string_literal_expr +| 11 = @null_literal_expr +/* primary & unary */ +| 12 = @this_access_expr +| 13 = @base_access_expr +| 14 = @local_variable_access_expr +| 15 = @parameter_access_expr +| 16 = @field_access_expr +| 17 = @property_access_expr +| 18 = @method_access_expr +| 19 = @event_access_expr +| 20 = @indexer_access_expr +| 21 = @array_access_expr +| 22 = @type_access_expr +| 23 = @typeof_expr +| 24 = @method_invocation_expr +| 25 = @delegate_invocation_expr +| 26 = @operator_invocation_expr +| 27 = @cast_expr +| 28 = @object_creation_expr +| 29 = @explicit_delegate_creation_expr +| 30 = @implicit_delegate_creation_expr +| 31 = @array_creation_expr +| 32 = @default_expr +| 33 = @plus_expr +| 34 = @minus_expr +| 35 = @bit_not_expr +| 36 = @log_not_expr +| 37 = @post_incr_expr +| 38 = @post_decr_expr +| 39 = @pre_incr_expr +| 40 = @pre_decr_expr +/* multiplicative */ +| 41 = @mul_expr +| 42 = @div_expr +| 43 = @rem_expr +/* additive */ +| 44 = @add_expr +| 45 = @sub_expr +/* shift */ +| 46 = @lshift_expr +| 47 = @rshift_expr +/* relational */ +| 48 = @lt_expr +| 49 = @gt_expr +| 50 = @le_expr +| 51 = @ge_expr +/* equality */ +| 52 = @eq_expr +| 53 = @ne_expr +/* logical */ +| 54 = @bit_and_expr +| 55 = @bit_xor_expr +| 56 = @bit_or_expr +| 57 = @log_and_expr +| 58 = @log_or_expr +/* type testing */ +| 59 = @is_expr +| 60 = @as_expr +/* null coalescing */ +| 61 = @null_coalescing_expr +/* conditional */ +| 62 = @conditional_expr +/* assignment */ +| 63 = @simple_assign_expr +| 64 = @assign_add_expr +| 65 = @assign_sub_expr +| 66 = @assign_mul_expr +| 67 = @assign_div_expr +| 68 = @assign_rem_expr +| 69 = @assign_and_expr +| 70 = @assign_xor_expr +| 71 = @assign_or_expr +| 72 = @assign_lshift_expr +| 73 = @assign_rshift_expr +/* more */ +| 74 = @object_init_expr +| 75 = @collection_init_expr +| 76 = @array_init_expr +| 77 = @checked_expr +| 78 = @unchecked_expr +| 79 = @constructor_init_expr +| 80 = @add_event_expr +| 81 = @remove_event_expr +| 82 = @par_expr +| 83 = @local_var_decl_expr +| 84 = @lambda_expr +| 85 = @anonymous_method_expr +| 86 = @namespace_expr +/* dynamic */ +| 92 = @dynamic_element_access_expr +| 93 = @dynamic_member_access_expr +/* unsafe */ +| 100 = @pointer_indirection_expr +| 101 = @address_of_expr +| 102 = @sizeof_expr +/* async */ +| 103 = @await_expr +/* C# 6.0 */ +| 104 = @nameof_expr +| 105 = @interpolated_string_expr +| 106 = @unknown_expr +/* C# 7.0 */ +| 107 = @throw_expr +| 108 = @tuple_expr +| 109 = @local_function_invocation_expr +| 110 = @ref_expr +| 111 = @discard_expr +/* C# 8.0 */ +| 112 = @range_expr +| 113 = @index_expr +| 114 = @switch_expr +| 115 = @recursive_pattern_expr +| 116 = @property_pattern_expr +| 117 = @positional_pattern_expr +| 118 = @switch_case_expr +| 119 = @assign_coalesce_expr +| 120 = @suppress_nullable_warning_expr +| 121 = @namespace_access_expr +/* C# 9.0 */ +| 122 = @lt_pattern_expr +| 123 = @gt_pattern_expr +| 124 = @le_pattern_expr +| 125 = @ge_pattern_expr +| 126 = @not_pattern_expr +| 127 = @and_pattern_expr +| 128 = @or_pattern_expr +| 129 = @function_pointer_invocation_expr +| 130 = @with_expr +/* C# 11.0 */ +| 131 = @list_pattern_expr +| 132 = @slice_pattern_expr +| 133 = @urshift_expr +| 134 = @assign_urshift_expr +| 135 = @utf8_string_literal_expr +/* C# 12.0 */ +| 136 = @collection_expr +| 137 = @spread_element_expr +| 138 = @interpolated_string_insert_expr +/* Preprocessor */ +| 999 = @define_symbol_expr +; + +@switch = @switch_stmt | @switch_expr; +@case = @case_stmt | @switch_case_expr; +@pattern_match = @case | @is_expr; +@unary_pattern_expr = @not_pattern_expr; +@relational_pattern_expr = @gt_pattern_expr | @lt_pattern_expr | @ge_pattern_expr | @le_pattern_expr; +@binary_pattern_expr = @and_pattern_expr | @or_pattern_expr; + +@integer_literal_expr = @int_literal_expr | @long_literal_expr | @uint_literal_expr | @ulong_literal_expr; +@real_literal_expr = @float_literal_expr | @double_literal_expr | @decimal_literal_expr; +@string_literal_expr = @utf16_string_literal_expr | @utf8_string_literal_expr; +@literal_expr = @bool_literal_expr | @char_literal_expr | @integer_literal_expr | @real_literal_expr + | @string_literal_expr | @null_literal_expr; + +@assign_expr = @simple_assign_expr | @assign_op_expr | @local_var_decl_expr; +@assign_op_call_expr = @assign_arith_expr | @assign_bitwise_expr +@assign_op_expr = @assign_op_call_expr | @assign_event_expr | @assign_coalesce_expr; +@assign_event_expr = @add_event_expr | @remove_event_expr; + +@add_operation = @add_expr | @assign_add_expr; +@sub_operation = @sub_expr | @assign_sub_expr; +@mul_operation = @mul_expr | @assign_mul_expr; +@div_operation = @div_expr | @assign_div_expr; +@rem_operation = @rem_expr | @assign_rem_expr; +@and_operation = @bit_and_expr | @assign_and_expr; +@xor_operation = @bit_xor_expr | @assign_xor_expr; +@or_operation = @bit_or_expr | @assign_or_expr; +@lshift_operation = @lshift_expr | @assign_lshift_expr; +@rshift_operation = @rshift_expr | @assign_rshift_expr; +@urshift_operation = @urshift_expr | @assign_urshift_expr; +@null_coalescing_operation = @null_coalescing_expr | @assign_coalesce_expr; + +@assign_arith_expr = @assign_add_expr | @assign_sub_expr | @assign_mul_expr | @assign_div_expr + | @assign_rem_expr +@assign_bitwise_expr = @assign_and_expr | @assign_or_expr | @assign_xor_expr + | @assign_lshift_expr | @assign_rshift_expr | @assign_urshift_expr; + +@member_access_expr = @field_access_expr | @property_access_expr | @indexer_access_expr | @event_access_expr + | @method_access_expr | @type_access_expr | @dynamic_member_access_expr; +@access_expr = @member_access_expr | @this_access_expr | @base_access_expr | @assignable_access_expr | @namespace_access_expr; +@element_access_expr = @indexer_access_expr | @array_access_expr | @dynamic_element_access_expr; + +@local_variable_access = @local_variable_access_expr | @local_var_decl_expr; +@local_scope_variable_access_expr = @parameter_access_expr | @local_variable_access; +@variable_access_expr = @local_scope_variable_access_expr | @field_access_expr; + +@assignable_access_expr = @variable_access_expr | @property_access_expr | @element_access_expr + | @event_access_expr | @dynamic_member_access_expr; + +@objectorcollection_init_expr = @object_init_expr | @collection_init_expr; + +@delegate_creation_expr = @explicit_delegate_creation_expr | @implicit_delegate_creation_expr; + +@bin_arith_op_expr = @mul_expr | @div_expr | @rem_expr | @add_expr | @sub_expr; +@incr_op_expr = @pre_incr_expr | @post_incr_expr; +@decr_op_expr = @pre_decr_expr | @post_decr_expr; +@mut_op_expr = @incr_op_expr | @decr_op_expr; +@un_arith_op_expr = @plus_expr | @minus_expr | @mut_op_expr; +@arith_op_expr = @bin_arith_op_expr | @un_arith_op_expr; + +@ternary_log_op_expr = @conditional_expr; +@bin_log_op_expr = @log_and_expr | @log_or_expr | @null_coalescing_expr; +@un_log_op_expr = @log_not_expr; +@log_expr = @un_log_op_expr | @bin_log_op_expr | @ternary_log_op_expr; + +@bin_bit_op_expr = @bit_and_expr | @bit_or_expr | @bit_xor_expr | @lshift_expr + | @rshift_expr | @urshift_expr; +@un_bit_op_expr = @bit_not_expr; +@bit_expr = @un_bit_op_expr | @bin_bit_op_expr; + +@equality_op_expr = @eq_expr | @ne_expr; +@rel_op_expr = @gt_expr | @lt_expr| @ge_expr | @le_expr; +@comp_expr = @equality_op_expr | @rel_op_expr; + +@op_expr = @un_op | @bin_op | @ternary_op; + +@ternary_op = @ternary_log_op_expr; +@bin_op = @assign_expr | @bin_arith_op_expr | @bin_log_op_expr | @bin_bit_op_expr | @comp_expr; +@un_op = @un_arith_op_expr | @un_log_op_expr | @un_bit_op_expr | @sizeof_expr + | @pointer_indirection_expr | @address_of_expr; + +@anonymous_function_expr = @lambda_expr | @anonymous_method_expr; + +@op_invoke_expr = @operator_invocation_expr | @assign_op_call_expr +@call = @method_invocation_expr | @constructor_init_expr | @op_invoke_expr + | @delegate_invocation_expr | @object_creation_expr | @call_access_expr + | @local_function_invocation_expr | @function_pointer_invocation_expr; + +@call_access_expr = @property_access_expr | @event_access_expr | @indexer_access_expr; + +@late_bindable_expr = @dynamic_element_access_expr | @dynamic_member_access_expr + | @object_creation_expr | @method_invocation_expr | @op_invoke_expr; + +@throw_element = @throw_expr | @throw_stmt; + +@implicitly_typeable_object_creation_expr = @object_creation_expr | @explicit_delegate_creation_expr; + +implicitly_typed_array_creation( + unique int id: @array_creation_expr ref); + +explicitly_sized_array_creation( + unique int id: @array_creation_expr ref); + +stackalloc_array_creation( + unique int id: @array_creation_expr ref); + +implicitly_typed_object_creation( + unique int id: @implicitly_typeable_object_creation_expr ref); + +mutator_invocation_mode( + unique int id: @operator_invocation_expr ref, + int mode: int ref /* prefix = 1, postfix = 2*/); + +expr_value( + unique int id: @expr ref, + string value: string ref); + +expr_call( + unique int caller_id: @expr ref, + int target_id: @callable ref); + +expr_access( + unique int accesser_id: @access_expr ref, + int target_id: @accessible ref); + +@accessible = @method | @assignable | @local_function | @namespace; + +expr_location( + unique int id: @expr ref, + int loc: @location ref); + +dynamic_member_name( + unique int id: @late_bindable_expr ref, + string name: string ref); + +@qualifiable_expr = @member_access_expr + | @method_invocation_expr + | @element_access_expr; + +conditional_access( + unique int id: @qualifiable_expr ref); + +expr_argument( + unique int id: @expr ref, + int mode: int ref); + /* mode is the same as params: value = 0, ref = 1, out = 2 */ + +expr_argument_name( + unique int id: @expr ref, + string name: string ref); + +lambda_expr_return_type( + unique int id: @lambda_expr ref, + int type_id: @type_or_ref ref); + +/* Compiler generated */ + +compiler_generated(unique int id: @element ref); + +/** CONTROL/DATA FLOW **/ + +@control_flow_element = @stmt | @expr; + +/* XML Files */ + +xmlEncoding ( + unique int id: @file ref, + string encoding: string ref); + +xmlDTDs( + unique int id: @xmldtd, + string root: string ref, + string publicId: string ref, + string systemId: string ref, + int fileid: @file ref); + +xmlElements( + unique int id: @xmlelement, + string name: string ref, + int parentid: @xmlparent ref, + int idx: int ref, + int fileid: @file ref); + +xmlAttrs( + unique int id: @xmlattribute, + int elementid: @xmlelement ref, + string name: string ref, + string value: string ref, + int idx: int ref, + int fileid: @file ref); + +xmlNs( + int id: @xmlnamespace, + string prefixName: string ref, + string URI: string ref, + int fileid: @file ref); + +xmlHasNs( + int elementId: @xmlnamespaceable ref, + int nsId: @xmlnamespace ref, + int fileid: @file ref); + +xmlComments( + unique int id: @xmlcomment, + string text: string ref, + int parentid: @xmlparent ref, + int fileid: @file ref); + +xmlChars( + unique int id: @xmlcharacters, + string text: string ref, + int parentid: @xmlparent ref, + int idx: int ref, + int isCDATA: int ref, + int fileid: @file ref); + +@xmlparent = @file | @xmlelement; +@xmlnamespaceable = @xmlelement | @xmlattribute; + +xmllocations( + int xmlElement: @xmllocatable ref, + int location: @location_default ref); + +@xmllocatable = @xmlcharacters | @xmlelement | @xmlcomment | @xmlattribute | @xmldtd | @file | @xmlnamespace; + +/* Comments */ + +commentline( + unique int id: @commentline, + int kind: int ref, + string text: string ref, + string rawtext: string ref); + +case @commentline.kind of + 0 = @singlelinecomment +| 1 = @xmldoccomment +| 2 = @multilinecomment; + +commentline_location( + unique int id: @commentline ref, + int loc: @location ref); + +commentblock( + unique int id : @commentblock); + +commentblock_location( + unique int id: @commentblock ref, + int loc: @location ref); + +commentblock_binding( + int id: @commentblock ref, + int entity: @element ref, + int bindtype: int ref); /* 0: Parent, 1: Best, 2: Before, 3: After */ + +commentblock_child( + int id: @commentblock ref, + int commentline: @commentline ref, + int index: int ref); + +/* ASP.NET */ + +case @asp_element.kind of + 0=@asp_close_tag +| 1=@asp_code +| 2=@asp_comment +| 3=@asp_data_binding +| 4=@asp_directive +| 5=@asp_open_tag +| 6=@asp_quoted_string +| 7=@asp_text +| 8=@asp_xml_directive; + +@asp_attribute = @asp_code | @asp_data_binding | @asp_quoted_string; + +asp_elements( + unique int id: @asp_element, + int kind: int ref, + int loc: @location ref); + +asp_comment_server(unique int comment: @asp_comment ref); +asp_code_inline(unique int code: @asp_code ref); +asp_directive_attribute( + int directive: @asp_directive ref, + int index: int ref, + string name: string ref, + int value: @asp_quoted_string ref); +asp_directive_name( + unique int directive: @asp_directive ref, + string name: string ref); +asp_element_body( + unique int element: @asp_element ref, + string body: string ref); +asp_tag_attribute( + int tag: @asp_open_tag ref, + int index: int ref, + string name: string ref, + int attribute: @asp_attribute ref); +asp_tag_name( + unique int tag: @asp_open_tag ref, + string name: string ref); +asp_tag_isempty(int tag: @asp_open_tag ref); diff --git a/csharp/downgrades/ea7ad33252e550241975676f09fcc7b0a703deab/upgrade.properties b/csharp/downgrades/ea7ad33252e550241975676f09fcc7b0a703deab/upgrade.properties new file mode 100644 index 000000000000..160cdb12de4c --- /dev/null +++ b/csharp/downgrades/ea7ad33252e550241975676f09fcc7b0a703deab/upgrade.properties @@ -0,0 +1,2 @@ +description: Remove @assign_op_call_expr from @qualifiable_expr. +compatibility: full diff --git a/csharp/ql/lib/upgrades/19b8cc3e2dc768d4cbc03d6e3773b709bbebd036/old.dbscheme b/csharp/ql/lib/upgrades/19b8cc3e2dc768d4cbc03d6e3773b709bbebd036/old.dbscheme new file mode 100644 index 000000000000..19b8cc3e2dc7 --- /dev/null +++ b/csharp/ql/lib/upgrades/19b8cc3e2dc768d4cbc03d6e3773b709bbebd036/old.dbscheme @@ -0,0 +1,1504 @@ +/* This is a dummy line to alter the dbscheme, so we can make a database upgrade + * without actually changing any of the dbscheme predicates. It contains a date + * to allow for such updates in the future as well. + * + * 2021-07-14 + * + * DO NOT remove this comment carelessly, since it can revert the dbscheme back to a + * previously seen state (matching a previously seen SHA), which would make the upgrade + * mechanism not work properly. + */ + +/** + * An invocation of the compiler. Note that more than one file may be + * compiled per invocation. For example, this command compiles three + * source files: + * + * csc f1.cs f2.cs f3.cs + * + * The `id` simply identifies the invocation, while `cwd` is the working + * directory from which the compiler was invoked. + */ +compilations( + unique int id : @compilation, + string cwd : string ref +); + +compilation_info( + int id : @compilation ref, + string info_key: string ref, + string info_value: string ref +) + +/** + * The arguments that were passed to the extractor for a compiler + * invocation. If `id` is for the compiler invocation + * + * csc f1.cs f2.cs f3.cs + * + * then typically there will be rows for + * + * num | arg + * --- | --- + * 0 | --compiler + * 1 | *path to compiler* + * 2 | f1.cs + * 3 | f2.cs + * 4 | f3.cs + */ +#keyset[id, num] +compilation_args( + int id : @compilation ref, + int num : int ref, + string arg : string ref +); + +/** + * The expanded arguments that were passed to the extractor for a + * compiler invocation. This is similar to `compilation_args`, but + * for a `@someFile.rsp` argument, it includes the arguments from that + * file, rather than just taking the argument literally. + */ +#keyset[id, num] +compilation_expanded_args( + int id : @compilation ref, + int num : int ref, + string arg : string ref +); + +/** + * The source files that are compiled by a compiler invocation. + * If `id` is for the compiler invocation + * + * csc f1.cs f2.cs f3.cs + * + * then there will be rows for + * + * num | arg + * --- | --- + * 0 | f1.cs + * 1 | f2.cs + * 2 | f3.cs + */ +#keyset[id, num] +compilation_compiling_files( + int id : @compilation ref, + int num : int ref, + int file : @file ref +); + +/** + * The references used by a compiler invocation. + * If `id` is for the compiler invocation + * + * csc f1.cs f2.cs f3.cs /r:ref1.dll /r:ref2.dll /r:ref3.dll + * + * then there will be rows for + * + * num | arg + * --- | --- + * 0 | ref1.dll + * 1 | ref2.dll + * 2 | ref3.dll + */ +#keyset[id, num] +compilation_referencing_files( + int id : @compilation ref, + int num : int ref, + int file : @file ref +); + +/** + * The time taken by the extractor for a compiler invocation. + * + * For each file `num`, there will be rows for + * + * kind | seconds + * ---- | --- + * 1 | CPU seconds used by the extractor frontend + * 2 | Elapsed seconds during the extractor frontend + * 3 | CPU seconds used by the extractor backend + * 4 | Elapsed seconds during the extractor backend + */ +#keyset[id, num, kind] +compilation_time( + int id : @compilation ref, + int num : int ref, + /* kind: + 1 = frontend_cpu_seconds + 2 = frontend_elapsed_seconds + 3 = extractor_cpu_seconds + 4 = extractor_elapsed_seconds + */ + int kind : int ref, + float seconds : float ref +); + +/** + * An error or warning generated by the extractor. + * The diagnostic message `diagnostic` was generated during compiler + * invocation `compilation`, and is the `file_number_diagnostic_number`th + * message generated while extracting the `file_number`th file of that + * invocation. + */ +#keyset[compilation, file_number, file_number_diagnostic_number] +diagnostic_for( + unique int diagnostic : @diagnostic ref, + int compilation : @compilation ref, + int file_number : int ref, + int file_number_diagnostic_number : int ref +); + +diagnostics( + unique int id: @diagnostic, + int severity: int ref, + string error_tag: string ref, + string error_message: string ref, + string full_error_message: string ref, + int location: @location ref +); + +extractor_messages( + unique int id: @extractor_message, + int severity: int ref, + string origin : string ref, + string text : string ref, + string entity : string ref, + int location: @location ref, + string stack_trace : string ref +); + +/** + * If extraction was successful, then `cpu_seconds` and + * `elapsed_seconds` are the CPU time and elapsed time (respectively) + * that extraction took for compiler invocation `id`. + */ +compilation_finished( + unique int id : @compilation ref, + float cpu_seconds : float ref, + float elapsed_seconds : float ref +); + +compilation_assembly( + unique int id : @compilation ref, + int assembly: @assembly ref +) + +// Populated by the CSV extractor +externalData( + int id: @externalDataElement, + string path: string ref, + int column: int ref, + string value: string ref); + +sourceLocationPrefix( + string prefix: string ref); + +/* + * Overlay support + */ + +/** + * The CLI will automatically emit the tuple `databaseMetadata("isOverlay", "true")`, + * along with an `overlayChangedFiles` tuple for each new/modified/deleted file, + * when building an overlay database, and these can be used by the discard predicates. + */ +databaseMetadata( + string metadataKey : string ref, + string value : string ref +); + +overlayChangedFiles( + string path : string ref +); + +/* + * C# dbscheme + */ + +/** ELEMENTS **/ + +@element = @declaration | @stmt | @expr | @modifier | @attribute | @namespace_declaration + | @using_directive | @type_parameter_constraints | @externalDataElement + | @xmllocatable | @asp_element | @namespace | @preprocessor_directive; + +@declaration = @callable | @generic | @assignable | @namespace; + +@named_element = @namespace | @declaration; + +@declaration_with_accessors = @property | @indexer | @event; + +@assignable = @variable | @assignable_with_accessors | @event; + +@assignable_with_accessors = @property | @indexer; + +@attributable = @assembly | @field | @parameter | @operator | @method | @constructor + | @destructor | @callable_accessor | @value_or_ref_type | @declaration_with_accessors + | @local_function | @lambda_expr; + +/** LOCATIONS, ASEMMBLIES, MODULES, FILES and FOLDERS **/ + +@location = @location_default | @assembly; + +@locatable = @declaration_with_accessors | @callable_accessor | @declaration_or_directive + | @diagnostic | @extractor_message | @preprocessor_directive | @attribute | @type_mention | @type_parameter_constraints + | @declaration_with_accessors | @callable_accessor | @operator | @method + | @constructor | @destructor | @field | @local_variable | @parameter | @stmt | @expr + | @xmllocatable | @commentline | @commentblock | @asp_element + +locations_default( + unique int id: @location_default, + int file: @file ref, + int beginLine: int ref, + int beginColumn: int ref, + int endLine: int ref, + int endColumn: int ref); + +locations_mapped( + unique int id: @location_default ref, + int mapped_to: @location_default ref); + +@sourceline = @file | @callable | @xmllocatable; + +numlines( + int element_id: @sourceline ref, + int num_lines: int ref, + int num_code: int ref, + int num_comment: int ref); + +assemblies( + unique int id: @assembly, + int file: @file ref, + string fullname: string ref, + string name: string ref, + string version: string ref); + +files( + unique int id: @file, + string name: string ref); + +folders( + unique int id: @folder, + string name: string ref); + +@container = @folder | @file ; + +containerparent( + int parent: @container ref, + unique int child: @container ref); + +file_extraction_mode( + unique int file: @file ref, + int mode: int ref + /* 0 = normal, 1 = standalone extractor */ + ); + +/** NAMESPACES **/ + +@type_container = @namespace | @type; + +namespaces( + unique int id: @namespace, + string name: string ref); + +namespace_declarations( + unique int id: @namespace_declaration, + int namespace_id: @namespace ref); + +namespace_declaration_location( + unique int id: @namespace_declaration ref, + int loc: @location ref); + +parent_namespace( + unique int child_id: @type_container ref, + int namespace_id: @namespace ref); + +@declaration_or_directive = @namespace_declaration | @type | @using_directive; + +parent_namespace_declaration( + int child_id: @declaration_or_directive ref, // cannot be unique because of partial classes + int namespace_id: @namespace_declaration ref); + +@using_directive = @using_namespace_directive | @using_static_directive; + +using_global( + unique int id: @using_directive ref +); + +using_namespace_directives( + unique int id: @using_namespace_directive, + int namespace_id: @namespace ref); + +using_static_directives( + unique int id: @using_static_directive, + int type_id: @type_or_ref ref); + +using_directive_location( + unique int id: @using_directive ref, + int loc: @location ref); + +@preprocessor_directive = @pragma_warning | @pragma_checksum | @directive_define | @directive_undefine | @directive_warning + | @directive_error | @directive_nullable | @directive_line | @directive_region | @directive_endregion | @directive_if + | @directive_elif | @directive_else | @directive_endif; + +@conditional_directive = @directive_if | @directive_elif; +@branch_directive = @directive_if | @directive_elif | @directive_else; + +directive_ifs( + unique int id: @directive_if, + int branchTaken: int ref, /* 0: false, 1: true */ + int conditionValue: int ref); /* 0: false, 1: true */ + +directive_elifs( + unique int id: @directive_elif, + int branchTaken: int ref, /* 0: false, 1: true */ + int conditionValue: int ref, /* 0: false, 1: true */ + int parent: @directive_if ref, + int index: int ref); + +directive_elses( + unique int id: @directive_else, + int branchTaken: int ref, /* 0: false, 1: true */ + int parent: @directive_if ref, + int index: int ref); + +#keyset[id, start] +directive_endifs( + unique int id: @directive_endif, + unique int start: @directive_if ref); + +directive_define_symbols( + unique int id: @define_symbol_expr ref, + string name: string ref); + +directive_regions( + unique int id: @directive_region, + string name: string ref); + +#keyset[id, start] +directive_endregions( + unique int id: @directive_endregion, + unique int start: @directive_region ref); + +directive_lines( + unique int id: @directive_line, + int kind: int ref); /* 0: default, 1: hidden, 2: numeric, 3: span */ + +directive_line_value( + unique int id: @directive_line ref, + int line: int ref); + +directive_line_file( + unique int id: @directive_line ref, + int file: @file ref); + +directive_line_offset( + unique int id: @directive_line ref, + int offset: int ref); + +directive_line_span( + unique int id: @directive_line ref, + int startLine: int ref, + int startColumn: int ref, + int endLine: int ref, + int endColumn: int ref); + +directive_nullables( + unique int id: @directive_nullable, + int setting: int ref, /* 0: disable, 1: enable, 2: restore */ + int target: int ref); /* 0: none, 1: annotations, 2: warnings */ + +directive_warnings( + unique int id: @directive_warning, + string message: string ref); + +directive_errors( + unique int id: @directive_error, + string message: string ref); + +directive_undefines( + unique int id: @directive_undefine, + string name: string ref); + +directive_defines( + unique int id: @directive_define, + string name: string ref); + +pragma_checksums( + unique int id: @pragma_checksum, + int file: @file ref, + string guid: string ref, + string bytes: string ref); + +pragma_warnings( + unique int id: @pragma_warning, + int kind: int ref /* 0 = disable, 1 = restore */); + +#keyset[id, index] +pragma_warning_error_codes( + int id: @pragma_warning ref, + string errorCode: string ref, + int index: int ref); + +preprocessor_directive_location( + unique int id: @preprocessor_directive ref, + int loc: @location ref); + +preprocessor_directive_compilation( + int id: @preprocessor_directive ref, + int compilation: @compilation ref); + +preprocessor_directive_active( + unique int id: @preprocessor_directive ref, + int active: int ref); /* 0: false, 1: true */ + +/** TYPES **/ + +types( + unique int id: @type, + int kind: int ref, + string name: string ref); + +case @type.kind of + 1 = @bool_type +| 2 = @char_type +| 3 = @decimal_type +| 4 = @sbyte_type +| 5 = @short_type +| 6 = @int_type +| 7 = @long_type +| 8 = @byte_type +| 9 = @ushort_type +| 10 = @uint_type +| 11 = @ulong_type +| 12 = @float_type +| 13 = @double_type +| 14 = @enum_type +| 15 = @struct_type +| 17 = @class_type +| 19 = @interface_type +| 20 = @delegate_type +| 21 = @null_type +| 22 = @type_parameter +| 23 = @pointer_type +| 24 = @nullable_type +| 25 = @array_type +| 26 = @void_type +| 27 = @int_ptr_type +| 28 = @uint_ptr_type +| 29 = @dynamic_type +| 30 = @arglist_type +| 31 = @unknown_type +| 32 = @tuple_type +| 33 = @function_pointer_type +| 34 = @inline_array_type +| 35 = @extension_type + ; + +@simple_type = @bool_type | @char_type | @integral_type | @floating_point_type | @decimal_type; +@integral_type = @signed_integral_type | @unsigned_integral_type; +@signed_integral_type = @sbyte_type | @short_type | @int_type | @long_type; +@unsigned_integral_type = @byte_type | @ushort_type | @uint_type | @ulong_type; +@floating_point_type = @float_type | @double_type; +@value_type = @simple_type | @enum_type | @struct_type | @nullable_type | @int_ptr_type + | @uint_ptr_type | @tuple_type | @void_type | @inline_array_type; +@ref_type = @class_type | @interface_type | @array_type | @delegate_type | @null_type + | @dynamic_type | @extension_type; +@value_or_ref_type = @value_type | @ref_type; + +typerefs( + unique int id: @typeref, + string name: string ref); + +typeref_type( + int id: @typeref ref, + unique int typeId: @type ref); + +@type_or_ref = @type | @typeref; + +array_element_type( + unique int array: @array_type ref, + int dimension: int ref, + int rank: int ref, + int element: @type_or_ref ref); + +nullable_underlying_type( + unique int nullable: @nullable_type ref, + int underlying: @type_or_ref ref); + +pointer_referent_type( + unique int pointer: @pointer_type ref, + int referent: @type_or_ref ref); + +enum_underlying_type( + unique int enum_id: @enum_type ref, + int underlying_type_id: @type_or_ref ref); + +delegate_return_type( + unique int delegate_id: @delegate_type ref, + int return_type_id: @type_or_ref ref); + +function_pointer_return_type( + unique int function_pointer_id: @function_pointer_type ref, + int return_type_id: @type_or_ref ref); + +extension_receiver_type( + unique int extension: @extension_type ref, + int receiver_type_id: @type_or_ref ref); + +extend( + int sub: @type ref, + int super: @type_or_ref ref); + +anonymous_types( + unique int id: @type ref); + +@interface_or_ref = @interface_type | @typeref; + +implement( + int sub: @type ref, + int super: @type_or_ref ref); + +type_location( + int id: @type ref, + int loc: @location ref); + +tuple_underlying_type( + unique int tuple: @tuple_type ref, + int struct: @type_or_ref ref); + +#keyset[tuple, index] +tuple_element( + int tuple: @tuple_type ref, + int index: int ref, + unique int field: @field ref); + +attributes( + unique int id: @attribute, + int kind: int ref, + int type_id: @type_or_ref ref, + int target: @attributable ref); + +case @attribute.kind of + 0 = @attribute_default +| 1 = @attribute_return +| 2 = @attribute_assembly +| 3 = @attribute_module +; + +attribute_location( + int id: @attribute ref, + int loc: @location ref); + +@type_mention_parent = @element | @type_mention; + +type_mention( + unique int id: @type_mention, + int type_id: @type_or_ref ref, + int parent: @type_mention_parent ref); + +type_mention_location( + unique int id: @type_mention ref, + int loc: @location ref); + +@has_type_annotation = @assignable | @type_parameter | @callable | @expr | @delegate_type | @generic | @function_pointer_type; + +/** + * A direct annotation on an entity, for example `string? x;`. + * + * Annotations: + * 2 = reftype is not annotated "!" + * 3 = reftype is annotated "?" + * 4 = readonly ref type / in parameter + * 5 = ref type parameter, return or local variable + * 6 = out parameter + * + * Note that the annotation depends on the element it annotates. + * @assignable: The annotation is on the type of the assignable, for example the variable type. + * @type_parameter: The annotation is on the reftype constraint + * @callable: The annotation is on the return type + * @array_type: The annotation is on the element type + */ +type_annotation(int id: @has_type_annotation ref, int annotation: int ref); + +nullability(unique int nullability: @nullability, int kind: int ref); + +case @nullability.kind of + 0 = @oblivious +| 1 = @not_annotated +| 2 = @annotated +; + +#keyset[parent, index] +nullability_parent(int nullability: @nullability ref, int index: int ref, int parent: @nullability ref) + +type_nullability(int id: @has_type_annotation ref, int nullability: @nullability ref); + +/** + * The nullable flow state of an expression, as determined by Roslyn. + * 0 = none (default, not populated) + * 1 = not null + * 2 = maybe null + */ +expr_flowstate(unique int id: @expr ref, int state: int ref); + +/** GENERICS **/ + +@generic = @type | @method | @local_function; + +type_parameters( + unique int id: @type_parameter ref, + int index: int ref, + int generic_id: @generic ref, + int variance: int ref /* none = 0, out = 1, in = 2 */); + +#keyset[constructed_id, index] +type_arguments( + int id: @type_or_ref ref, + int index: int ref, + int constructed_id: @generic_or_ref ref); + +@generic_or_ref = @generic | @typeref; + +constructed_generic( + unique int constructed: @generic ref, + int generic: @generic_or_ref ref); + +type_parameter_constraints( + unique int id: @type_parameter_constraints, + int param_id: @type_parameter ref); + +type_parameter_constraints_location( + int id: @type_parameter_constraints ref, + int loc: @location ref); + +general_type_parameter_constraints( + int id: @type_parameter_constraints ref, + int kind: int ref /* class = 1, struct = 2, new = 3 */); + +specific_type_parameter_constraints( + int id: @type_parameter_constraints ref, + int base_id: @type_or_ref ref); + +specific_type_parameter_nullability( + int id: @type_parameter_constraints ref, + int base_id: @type_or_ref ref, + int nullability: @nullability ref); + +/** FUNCTION POINTERS */ + +function_pointer_calling_conventions( + int id: @function_pointer_type ref, + int kind: int ref); + +#keyset[id, index] +has_unmanaged_calling_conventions( + int id: @function_pointer_type ref, + int index: int ref, + int conv_id: @type_or_ref ref); + +/** MODIFIERS */ + +@modifiable = @modifiable_direct | @event_accessor; + +@modifiable_direct = @member | @accessor | @local_function | @anonymous_function_expr; + +modifiers( + unique int id: @modifier, + string name: string ref); + +has_modifiers( + int id: @modifiable_direct ref, + int mod_id: @modifier ref); + +/** MEMBERS **/ + +@member = @method | @constructor | @destructor | @field | @property | @event | @operator | @indexer | @type; + +@named_exprorstmt = @goto_stmt | @labeled_stmt | @expr; + +@virtualizable = @method | @property | @indexer | @event | @operator; + +exprorstmt_name( + unique int parent_id: @named_exprorstmt ref, + string name: string ref); + +nested_types( + unique int id: @type ref, + int declaring_type_id: @type ref, + int unbound_id: @type ref); + +properties( + unique int id: @property, + string name: string ref, + int declaring_type_id: @type ref, + int type_id: @type_or_ref ref, + int unbound_id: @property ref); + +property_location( + int id: @property ref, + int loc: @location ref); + +indexers( + unique int id: @indexer, + string name: string ref, + int declaring_type_id: @type ref, + int type_id: @type_or_ref ref, + int unbound_id: @indexer ref); + +indexer_location( + int id: @indexer ref, + int loc: @location ref); + +accessors( + unique int id: @accessor, + int kind: int ref, + string name: string ref, + int declaring_member_id: @member ref, + int unbound_id: @accessor ref); + +case @accessor.kind of + 1 = @getter +| 2 = @setter + ; + +init_only_accessors( + unique int id: @accessor ref); + +accessor_location( + int id: @accessor ref, + int loc: @location ref); + +events( + unique int id: @event, + string name: string ref, + int declaring_type_id: @type ref, + int type_id: @type_or_ref ref, + int unbound_id: @event ref); + +event_location( + int id: @event ref, + int loc: @location ref); + +event_accessors( + unique int id: @event_accessor, + int kind: int ref, + string name: string ref, + int declaring_event_id: @event ref, + int unbound_id: @event_accessor ref); + +case @event_accessor.kind of + 1 = @add_event_accessor +| 2 = @remove_event_accessor + ; + +event_accessor_location( + int id: @event_accessor ref, + int loc: @location ref); + +operators( + unique int id: @operator, + string name: string ref, + string symbol: string ref, + int declaring_type_id: @type ref, + int type_id: @type_or_ref ref, + int unbound_id: @operator ref); + +operator_location( + int id: @operator ref, + int loc: @location ref); + +constant_value( + int id: @variable ref, + string value: string ref); + +/** CALLABLES **/ + +@callable = @method | @constructor | @destructor | @operator | @callable_accessor | @anonymous_function_expr | @local_function; + +@callable_accessor = @accessor | @event_accessor; + +methods( + unique int id: @method, + string name: string ref, + int declaring_type_id: @type ref, + int type_id: @type_or_ref ref, + int unbound_id: @method ref); + +method_location( + int id: @method ref, + int loc: @location ref); + +constructors( + unique int id: @constructor, + string name: string ref, + int declaring_type_id: @type ref, + int unbound_id: @constructor ref); + +constructor_location( + int id: @constructor ref, + int loc: @location ref); + +destructors( + unique int id: @destructor, + string name: string ref, + int declaring_type_id: @type ref, + int unbound_id: @destructor ref); + +destructor_location( + int id: @destructor ref, + int loc: @location ref); + +overrides( + int id: @callable ref, + int base_id: @callable ref); + +explicitly_implements( + int id: @member ref, + int interface_id: @interface_or_ref ref); + +local_functions( + unique int id: @local_function, + string name: string ref, + int return_type: @type ref, + int unbound_id: @local_function ref); + +local_function_stmts( + unique int fn: @local_function_stmt ref, + int stmt: @local_function ref); + +/** VARIABLES **/ + +@variable = @local_scope_variable | @field; + +@local_scope_variable = @local_variable | @parameter; + +fields( + unique int id: @field, + int kind: int ref, + string name: string ref, + int declaring_type_id: @type ref, + int type_id: @type_or_ref ref, + int unbound_id: @field ref); + +case @field.kind of + 1 = @addressable_field +| 2 = @constant + ; + +field_location( + int id: @field ref, + int loc: @location ref); + +localvars( + unique int id: @local_variable, + int kind: int ref, + string name: string ref, + int implicitly_typed: int ref /* 0 = no, 1 = yes */, + int type_id: @type_or_ref ref, + int parent_id: @local_var_decl_expr ref); + +case @local_variable.kind of + 1 = @addressable_local_variable +| 2 = @local_constant +| 3 = @local_variable_ref + ; + +localvar_location( + unique int id: @local_variable ref, + int loc: @location ref); + +@parameterizable = @callable | @delegate_type | @indexer | @function_pointer_type | @extension_type; + +#keyset[name, parent_id] +#keyset[index, parent_id] +params( + unique int id: @parameter, + string name: string ref, + int type_id: @type_or_ref ref, + int index: int ref, + int mode: int ref, /* value = 0, ref = 1, out = 2, params/array = 3, this = 4, in = 5, ref readonly = 6 */ + int parent_id: @parameterizable ref, + int unbound_id: @parameter ref); + +param_location( + int id: @parameter ref, + int loc: @location ref); + +@has_scoped_annotation = @local_scope_variable + +scoped_annotation( + int id: @has_scoped_annotation ref, + int kind: int ref // scoped ref = 1, scoped value = 2 + ); + +/** STATEMENTS **/ + +@exprorstmt_parent = @control_flow_element | @top_level_exprorstmt_parent; + +statements( + unique int id: @stmt, + int kind: int ref); + +#keyset[index, parent] +stmt_parent( + unique int stmt: @stmt ref, + int index: int ref, + int parent: @control_flow_element ref); + +@top_level_stmt_parent = @callable; + +// [index, parent] is not a keyset because the same parent may be compiled multiple times +stmt_parent_top_level( + unique int stmt: @stmt ref, + int index: int ref, + int parent: @top_level_stmt_parent ref); + +case @stmt.kind of + 1 = @block_stmt +| 2 = @expr_stmt +| 3 = @if_stmt +| 4 = @switch_stmt +| 5 = @while_stmt +| 6 = @do_stmt +| 7 = @for_stmt +| 8 = @foreach_stmt +| 9 = @break_stmt +| 10 = @continue_stmt +| 11 = @goto_stmt +| 12 = @goto_case_stmt +| 13 = @goto_default_stmt +| 14 = @throw_stmt +| 15 = @return_stmt +| 16 = @yield_stmt +| 17 = @try_stmt +| 18 = @checked_stmt +| 19 = @unchecked_stmt +| 20 = @lock_stmt +| 21 = @using_block_stmt +| 22 = @var_decl_stmt +| 23 = @const_decl_stmt +| 24 = @empty_stmt +| 25 = @unsafe_stmt +| 26 = @fixed_stmt +| 27 = @label_stmt +| 28 = @catch +| 29 = @case_stmt +| 30 = @local_function_stmt +| 31 = @using_decl_stmt + ; + +@using_stmt = @using_block_stmt | @using_decl_stmt; + +@labeled_stmt = @label_stmt | @case; + +@decl_stmt = @var_decl_stmt | @const_decl_stmt | @using_decl_stmt; + +@cond_stmt = @if_stmt | @switch_stmt; + +@loop_stmt = @while_stmt | @do_stmt | @for_stmt | @foreach_stmt; + +@jump_stmt = @break_stmt | @goto_any_stmt | @continue_stmt | @throw_stmt | @return_stmt + | @yield_stmt; + +@goto_any_stmt = @goto_default_stmt | @goto_case_stmt | @goto_stmt; + + +stmt_location( + unique int id: @stmt ref, + int loc: @location ref); + +catch_type( + unique int catch_id: @catch ref, + int type_id: @type_or_ref ref, + int kind: int ref /* explicit = 1, implicit = 2 */); + +foreach_stmt_info( + unique int id: @foreach_stmt ref, + int kind: int ref /* non-async = 1, async = 2 */); + +@foreach_symbol = @method | @property | @type_or_ref; + +#keyset[id, kind] +foreach_stmt_desugar( + int id: @foreach_stmt ref, + int symbol: @foreach_symbol ref, + int kind: int ref /* GetEnumeratorMethod = 1, CurrentProperty = 2, MoveNextMethod = 3, DisposeMethod = 4, ElementType = 5 */); + +/** EXPRESSIONS **/ + +expressions( + unique int id: @expr, + int kind: int ref, + int type_id: @type_or_ref ref); + +#keyset[index, parent] +expr_parent( + unique int expr: @expr ref, + int index: int ref, + int parent: @control_flow_element ref); + +@top_level_expr_parent = @attribute | @field | @property | @indexer | @parameter | @directive_if | @directive_elif; + +@top_level_exprorstmt_parent = @top_level_expr_parent | @top_level_stmt_parent; + +// [index, parent] is not a keyset because the same parent may be compiled multiple times +expr_parent_top_level( + unique int expr: @expr ref, + int index: int ref, + int parent: @top_level_exprorstmt_parent ref); + +case @expr.kind of +/* literal */ + 1 = @bool_literal_expr +| 2 = @char_literal_expr +| 3 = @decimal_literal_expr +| 4 = @int_literal_expr +| 5 = @long_literal_expr +| 6 = @uint_literal_expr +| 7 = @ulong_literal_expr +| 8 = @float_literal_expr +| 9 = @double_literal_expr +| 10 = @utf16_string_literal_expr +| 11 = @null_literal_expr +/* primary & unary */ +| 12 = @this_access_expr +| 13 = @base_access_expr +| 14 = @local_variable_access_expr +| 15 = @parameter_access_expr +| 16 = @field_access_expr +| 17 = @property_access_expr +| 18 = @method_access_expr +| 19 = @event_access_expr +| 20 = @indexer_access_expr +| 21 = @array_access_expr +| 22 = @type_access_expr +| 23 = @typeof_expr +| 24 = @method_invocation_expr +| 25 = @delegate_invocation_expr +| 26 = @operator_invocation_expr +| 27 = @cast_expr +| 28 = @object_creation_expr +| 29 = @explicit_delegate_creation_expr +| 30 = @implicit_delegate_creation_expr +| 31 = @array_creation_expr +| 32 = @default_expr +| 33 = @plus_expr +| 34 = @minus_expr +| 35 = @bit_not_expr +| 36 = @log_not_expr +| 37 = @post_incr_expr +| 38 = @post_decr_expr +| 39 = @pre_incr_expr +| 40 = @pre_decr_expr +/* multiplicative */ +| 41 = @mul_expr +| 42 = @div_expr +| 43 = @rem_expr +/* additive */ +| 44 = @add_expr +| 45 = @sub_expr +/* shift */ +| 46 = @lshift_expr +| 47 = @rshift_expr +/* relational */ +| 48 = @lt_expr +| 49 = @gt_expr +| 50 = @le_expr +| 51 = @ge_expr +/* equality */ +| 52 = @eq_expr +| 53 = @ne_expr +/* logical */ +| 54 = @bit_and_expr +| 55 = @bit_xor_expr +| 56 = @bit_or_expr +| 57 = @log_and_expr +| 58 = @log_or_expr +/* type testing */ +| 59 = @is_expr +| 60 = @as_expr +/* null coalescing */ +| 61 = @null_coalescing_expr +/* conditional */ +| 62 = @conditional_expr +/* assignment */ +| 63 = @simple_assign_expr +| 64 = @assign_add_expr +| 65 = @assign_sub_expr +| 66 = @assign_mul_expr +| 67 = @assign_div_expr +| 68 = @assign_rem_expr +| 69 = @assign_and_expr +| 70 = @assign_xor_expr +| 71 = @assign_or_expr +| 72 = @assign_lshift_expr +| 73 = @assign_rshift_expr +/* more */ +| 74 = @object_init_expr +| 75 = @collection_init_expr +| 76 = @array_init_expr +| 77 = @checked_expr +| 78 = @unchecked_expr +| 79 = @constructor_init_expr +| 80 = @add_event_expr +| 81 = @remove_event_expr +| 82 = @par_expr +| 83 = @local_var_decl_expr +| 84 = @lambda_expr +| 85 = @anonymous_method_expr +| 86 = @namespace_expr +/* dynamic */ +| 92 = @dynamic_element_access_expr +| 93 = @dynamic_member_access_expr +/* unsafe */ +| 100 = @pointer_indirection_expr +| 101 = @address_of_expr +| 102 = @sizeof_expr +/* async */ +| 103 = @await_expr +/* C# 6.0 */ +| 104 = @nameof_expr +| 105 = @interpolated_string_expr +| 106 = @unknown_expr +/* C# 7.0 */ +| 107 = @throw_expr +| 108 = @tuple_expr +| 109 = @local_function_invocation_expr +| 110 = @ref_expr +| 111 = @discard_expr +/* C# 8.0 */ +| 112 = @range_expr +| 113 = @index_expr +| 114 = @switch_expr +| 115 = @recursive_pattern_expr +| 116 = @property_pattern_expr +| 117 = @positional_pattern_expr +| 118 = @switch_case_expr +| 119 = @assign_coalesce_expr +| 120 = @suppress_nullable_warning_expr +| 121 = @namespace_access_expr +/* C# 9.0 */ +| 122 = @lt_pattern_expr +| 123 = @gt_pattern_expr +| 124 = @le_pattern_expr +| 125 = @ge_pattern_expr +| 126 = @not_pattern_expr +| 127 = @and_pattern_expr +| 128 = @or_pattern_expr +| 129 = @function_pointer_invocation_expr +| 130 = @with_expr +/* C# 11.0 */ +| 131 = @list_pattern_expr +| 132 = @slice_pattern_expr +| 133 = @urshift_expr +| 134 = @assign_urshift_expr +| 135 = @utf8_string_literal_expr +/* C# 12.0 */ +| 136 = @collection_expr +| 137 = @spread_element_expr +| 138 = @interpolated_string_insert_expr +/* Preprocessor */ +| 999 = @define_symbol_expr +; + +@switch = @switch_stmt | @switch_expr; +@case = @case_stmt | @switch_case_expr; +@pattern_match = @case | @is_expr; +@unary_pattern_expr = @not_pattern_expr; +@relational_pattern_expr = @gt_pattern_expr | @lt_pattern_expr | @ge_pattern_expr | @le_pattern_expr; +@binary_pattern_expr = @and_pattern_expr | @or_pattern_expr; + +@integer_literal_expr = @int_literal_expr | @long_literal_expr | @uint_literal_expr | @ulong_literal_expr; +@real_literal_expr = @float_literal_expr | @double_literal_expr | @decimal_literal_expr; +@string_literal_expr = @utf16_string_literal_expr | @utf8_string_literal_expr; +@literal_expr = @bool_literal_expr | @char_literal_expr | @integer_literal_expr | @real_literal_expr + | @string_literal_expr | @null_literal_expr; + +@assign_expr = @simple_assign_expr | @assign_op_expr | @local_var_decl_expr; +@assign_op_call_expr = @assign_arith_expr | @assign_bitwise_expr +@assign_op_expr = @assign_op_call_expr | @assign_event_expr | @assign_coalesce_expr; +@assign_event_expr = @add_event_expr | @remove_event_expr; + +@add_operation = @add_expr | @assign_add_expr; +@sub_operation = @sub_expr | @assign_sub_expr; +@mul_operation = @mul_expr | @assign_mul_expr; +@div_operation = @div_expr | @assign_div_expr; +@rem_operation = @rem_expr | @assign_rem_expr; +@and_operation = @bit_and_expr | @assign_and_expr; +@xor_operation = @bit_xor_expr | @assign_xor_expr; +@or_operation = @bit_or_expr | @assign_or_expr; +@lshift_operation = @lshift_expr | @assign_lshift_expr; +@rshift_operation = @rshift_expr | @assign_rshift_expr; +@urshift_operation = @urshift_expr | @assign_urshift_expr; +@null_coalescing_operation = @null_coalescing_expr | @assign_coalesce_expr; + +@assign_arith_expr = @assign_add_expr | @assign_sub_expr | @assign_mul_expr | @assign_div_expr + | @assign_rem_expr +@assign_bitwise_expr = @assign_and_expr | @assign_or_expr | @assign_xor_expr + | @assign_lshift_expr | @assign_rshift_expr | @assign_urshift_expr; + +@member_access_expr = @field_access_expr | @property_access_expr | @indexer_access_expr | @event_access_expr + | @method_access_expr | @type_access_expr | @dynamic_member_access_expr; +@access_expr = @member_access_expr | @this_access_expr | @base_access_expr | @assignable_access_expr | @namespace_access_expr; +@element_access_expr = @indexer_access_expr | @array_access_expr | @dynamic_element_access_expr; + +@local_variable_access = @local_variable_access_expr | @local_var_decl_expr; +@local_scope_variable_access_expr = @parameter_access_expr | @local_variable_access; +@variable_access_expr = @local_scope_variable_access_expr | @field_access_expr; + +@assignable_access_expr = @variable_access_expr | @property_access_expr | @element_access_expr + | @event_access_expr | @dynamic_member_access_expr; + +@objectorcollection_init_expr = @object_init_expr | @collection_init_expr; + +@delegate_creation_expr = @explicit_delegate_creation_expr | @implicit_delegate_creation_expr; + +@bin_arith_op_expr = @mul_expr | @div_expr | @rem_expr | @add_expr | @sub_expr; +@incr_op_expr = @pre_incr_expr | @post_incr_expr; +@decr_op_expr = @pre_decr_expr | @post_decr_expr; +@mut_op_expr = @incr_op_expr | @decr_op_expr; +@un_arith_op_expr = @plus_expr | @minus_expr | @mut_op_expr; +@arith_op_expr = @bin_arith_op_expr | @un_arith_op_expr; + +@ternary_log_op_expr = @conditional_expr; +@bin_log_op_expr = @log_and_expr | @log_or_expr | @null_coalescing_expr; +@un_log_op_expr = @log_not_expr; +@log_expr = @un_log_op_expr | @bin_log_op_expr | @ternary_log_op_expr; + +@bin_bit_op_expr = @bit_and_expr | @bit_or_expr | @bit_xor_expr | @lshift_expr + | @rshift_expr | @urshift_expr; +@un_bit_op_expr = @bit_not_expr; +@bit_expr = @un_bit_op_expr | @bin_bit_op_expr; + +@equality_op_expr = @eq_expr | @ne_expr; +@rel_op_expr = @gt_expr | @lt_expr| @ge_expr | @le_expr; +@comp_expr = @equality_op_expr | @rel_op_expr; + +@op_expr = @un_op | @bin_op | @ternary_op; + +@ternary_op = @ternary_log_op_expr; +@bin_op = @assign_expr | @bin_arith_op_expr | @bin_log_op_expr | @bin_bit_op_expr | @comp_expr; +@un_op = @un_arith_op_expr | @un_log_op_expr | @un_bit_op_expr | @sizeof_expr + | @pointer_indirection_expr | @address_of_expr; + +@anonymous_function_expr = @lambda_expr | @anonymous_method_expr; + +@op_invoke_expr = @operator_invocation_expr | @assign_op_call_expr +@call = @method_invocation_expr | @constructor_init_expr | @op_invoke_expr + | @delegate_invocation_expr | @object_creation_expr | @call_access_expr + | @local_function_invocation_expr | @function_pointer_invocation_expr; + +@call_access_expr = @property_access_expr | @event_access_expr | @indexer_access_expr; + +@late_bindable_expr = @dynamic_element_access_expr | @dynamic_member_access_expr + | @object_creation_expr | @method_invocation_expr | @op_invoke_expr; + +@throw_element = @throw_expr | @throw_stmt; + +@implicitly_typeable_object_creation_expr = @object_creation_expr | @explicit_delegate_creation_expr; + +implicitly_typed_array_creation( + unique int id: @array_creation_expr ref); + +explicitly_sized_array_creation( + unique int id: @array_creation_expr ref); + +stackalloc_array_creation( + unique int id: @array_creation_expr ref); + +implicitly_typed_object_creation( + unique int id: @implicitly_typeable_object_creation_expr ref); + +mutator_invocation_mode( + unique int id: @operator_invocation_expr ref, + int mode: int ref /* prefix = 1, postfix = 2*/); + +expr_value( + unique int id: @expr ref, + string value: string ref); + +expr_call( + unique int caller_id: @expr ref, + int target_id: @callable ref); + +expr_access( + unique int accesser_id: @access_expr ref, + int target_id: @accessible ref); + +@accessible = @method | @assignable | @local_function | @namespace; + +expr_location( + unique int id: @expr ref, + int loc: @location ref); + +dynamic_member_name( + unique int id: @late_bindable_expr ref, + string name: string ref); + +@qualifiable_expr = @member_access_expr + | @method_invocation_expr + | @element_access_expr; + +conditional_access( + unique int id: @qualifiable_expr ref); + +expr_argument( + unique int id: @expr ref, + int mode: int ref); + /* mode is the same as params: value = 0, ref = 1, out = 2 */ + +expr_argument_name( + unique int id: @expr ref, + string name: string ref); + +lambda_expr_return_type( + unique int id: @lambda_expr ref, + int type_id: @type_or_ref ref); + +/* Compiler generated */ + +compiler_generated(unique int id: @element ref); + +/** CONTROL/DATA FLOW **/ + +@control_flow_element = @stmt | @expr; + +/* XML Files */ + +xmlEncoding ( + unique int id: @file ref, + string encoding: string ref); + +xmlDTDs( + unique int id: @xmldtd, + string root: string ref, + string publicId: string ref, + string systemId: string ref, + int fileid: @file ref); + +xmlElements( + unique int id: @xmlelement, + string name: string ref, + int parentid: @xmlparent ref, + int idx: int ref, + int fileid: @file ref); + +xmlAttrs( + unique int id: @xmlattribute, + int elementid: @xmlelement ref, + string name: string ref, + string value: string ref, + int idx: int ref, + int fileid: @file ref); + +xmlNs( + int id: @xmlnamespace, + string prefixName: string ref, + string URI: string ref, + int fileid: @file ref); + +xmlHasNs( + int elementId: @xmlnamespaceable ref, + int nsId: @xmlnamespace ref, + int fileid: @file ref); + +xmlComments( + unique int id: @xmlcomment, + string text: string ref, + int parentid: @xmlparent ref, + int fileid: @file ref); + +xmlChars( + unique int id: @xmlcharacters, + string text: string ref, + int parentid: @xmlparent ref, + int idx: int ref, + int isCDATA: int ref, + int fileid: @file ref); + +@xmlparent = @file | @xmlelement; +@xmlnamespaceable = @xmlelement | @xmlattribute; + +xmllocations( + int xmlElement: @xmllocatable ref, + int location: @location_default ref); + +@xmllocatable = @xmlcharacters | @xmlelement | @xmlcomment | @xmlattribute | @xmldtd | @file | @xmlnamespace; + +/* Comments */ + +commentline( + unique int id: @commentline, + int kind: int ref, + string text: string ref, + string rawtext: string ref); + +case @commentline.kind of + 0 = @singlelinecomment +| 1 = @xmldoccomment +| 2 = @multilinecomment; + +commentline_location( + unique int id: @commentline ref, + int loc: @location ref); + +commentblock( + unique int id : @commentblock); + +commentblock_location( + unique int id: @commentblock ref, + int loc: @location ref); + +commentblock_binding( + int id: @commentblock ref, + int entity: @element ref, + int bindtype: int ref); /* 0: Parent, 1: Best, 2: Before, 3: After */ + +commentblock_child( + int id: @commentblock ref, + int commentline: @commentline ref, + int index: int ref); + +/* ASP.NET */ + +case @asp_element.kind of + 0=@asp_close_tag +| 1=@asp_code +| 2=@asp_comment +| 3=@asp_data_binding +| 4=@asp_directive +| 5=@asp_open_tag +| 6=@asp_quoted_string +| 7=@asp_text +| 8=@asp_xml_directive; + +@asp_attribute = @asp_code | @asp_data_binding | @asp_quoted_string; + +asp_elements( + unique int id: @asp_element, + int kind: int ref, + int loc: @location ref); + +asp_comment_server(unique int comment: @asp_comment ref); +asp_code_inline(unique int code: @asp_code ref); +asp_directive_attribute( + int directive: @asp_directive ref, + int index: int ref, + string name: string ref, + int value: @asp_quoted_string ref); +asp_directive_name( + unique int directive: @asp_directive ref, + string name: string ref); +asp_element_body( + unique int element: @asp_element ref, + string body: string ref); +asp_tag_attribute( + int tag: @asp_open_tag ref, + int index: int ref, + string name: string ref, + int attribute: @asp_attribute ref); +asp_tag_name( + unique int tag: @asp_open_tag ref, + string name: string ref); +asp_tag_isempty(int tag: @asp_open_tag ref); diff --git a/csharp/ql/lib/upgrades/19b8cc3e2dc768d4cbc03d6e3773b709bbebd036/semmlecode.csharp.dbscheme b/csharp/ql/lib/upgrades/19b8cc3e2dc768d4cbc03d6e3773b709bbebd036/semmlecode.csharp.dbscheme new file mode 100644 index 000000000000..ea7ad33252e5 --- /dev/null +++ b/csharp/ql/lib/upgrades/19b8cc3e2dc768d4cbc03d6e3773b709bbebd036/semmlecode.csharp.dbscheme @@ -0,0 +1,1505 @@ +/* This is a dummy line to alter the dbscheme, so we can make a database upgrade + * without actually changing any of the dbscheme predicates. It contains a date + * to allow for such updates in the future as well. + * + * 2021-07-14 + * + * DO NOT remove this comment carelessly, since it can revert the dbscheme back to a + * previously seen state (matching a previously seen SHA), which would make the upgrade + * mechanism not work properly. + */ + +/** + * An invocation of the compiler. Note that more than one file may be + * compiled per invocation. For example, this command compiles three + * source files: + * + * csc f1.cs f2.cs f3.cs + * + * The `id` simply identifies the invocation, while `cwd` is the working + * directory from which the compiler was invoked. + */ +compilations( + unique int id : @compilation, + string cwd : string ref +); + +compilation_info( + int id : @compilation ref, + string info_key: string ref, + string info_value: string ref +) + +/** + * The arguments that were passed to the extractor for a compiler + * invocation. If `id` is for the compiler invocation + * + * csc f1.cs f2.cs f3.cs + * + * then typically there will be rows for + * + * num | arg + * --- | --- + * 0 | --compiler + * 1 | *path to compiler* + * 2 | f1.cs + * 3 | f2.cs + * 4 | f3.cs + */ +#keyset[id, num] +compilation_args( + int id : @compilation ref, + int num : int ref, + string arg : string ref +); + +/** + * The expanded arguments that were passed to the extractor for a + * compiler invocation. This is similar to `compilation_args`, but + * for a `@someFile.rsp` argument, it includes the arguments from that + * file, rather than just taking the argument literally. + */ +#keyset[id, num] +compilation_expanded_args( + int id : @compilation ref, + int num : int ref, + string arg : string ref +); + +/** + * The source files that are compiled by a compiler invocation. + * If `id` is for the compiler invocation + * + * csc f1.cs f2.cs f3.cs + * + * then there will be rows for + * + * num | arg + * --- | --- + * 0 | f1.cs + * 1 | f2.cs + * 2 | f3.cs + */ +#keyset[id, num] +compilation_compiling_files( + int id : @compilation ref, + int num : int ref, + int file : @file ref +); + +/** + * The references used by a compiler invocation. + * If `id` is for the compiler invocation + * + * csc f1.cs f2.cs f3.cs /r:ref1.dll /r:ref2.dll /r:ref3.dll + * + * then there will be rows for + * + * num | arg + * --- | --- + * 0 | ref1.dll + * 1 | ref2.dll + * 2 | ref3.dll + */ +#keyset[id, num] +compilation_referencing_files( + int id : @compilation ref, + int num : int ref, + int file : @file ref +); + +/** + * The time taken by the extractor for a compiler invocation. + * + * For each file `num`, there will be rows for + * + * kind | seconds + * ---- | --- + * 1 | CPU seconds used by the extractor frontend + * 2 | Elapsed seconds during the extractor frontend + * 3 | CPU seconds used by the extractor backend + * 4 | Elapsed seconds during the extractor backend + */ +#keyset[id, num, kind] +compilation_time( + int id : @compilation ref, + int num : int ref, + /* kind: + 1 = frontend_cpu_seconds + 2 = frontend_elapsed_seconds + 3 = extractor_cpu_seconds + 4 = extractor_elapsed_seconds + */ + int kind : int ref, + float seconds : float ref +); + +/** + * An error or warning generated by the extractor. + * The diagnostic message `diagnostic` was generated during compiler + * invocation `compilation`, and is the `file_number_diagnostic_number`th + * message generated while extracting the `file_number`th file of that + * invocation. + */ +#keyset[compilation, file_number, file_number_diagnostic_number] +diagnostic_for( + unique int diagnostic : @diagnostic ref, + int compilation : @compilation ref, + int file_number : int ref, + int file_number_diagnostic_number : int ref +); + +diagnostics( + unique int id: @diagnostic, + int severity: int ref, + string error_tag: string ref, + string error_message: string ref, + string full_error_message: string ref, + int location: @location ref +); + +extractor_messages( + unique int id: @extractor_message, + int severity: int ref, + string origin : string ref, + string text : string ref, + string entity : string ref, + int location: @location ref, + string stack_trace : string ref +); + +/** + * If extraction was successful, then `cpu_seconds` and + * `elapsed_seconds` are the CPU time and elapsed time (respectively) + * that extraction took for compiler invocation `id`. + */ +compilation_finished( + unique int id : @compilation ref, + float cpu_seconds : float ref, + float elapsed_seconds : float ref +); + +compilation_assembly( + unique int id : @compilation ref, + int assembly: @assembly ref +) + +// Populated by the CSV extractor +externalData( + int id: @externalDataElement, + string path: string ref, + int column: int ref, + string value: string ref); + +sourceLocationPrefix( + string prefix: string ref); + +/* + * Overlay support + */ + +/** + * The CLI will automatically emit the tuple `databaseMetadata("isOverlay", "true")`, + * along with an `overlayChangedFiles` tuple for each new/modified/deleted file, + * when building an overlay database, and these can be used by the discard predicates. + */ +databaseMetadata( + string metadataKey : string ref, + string value : string ref +); + +overlayChangedFiles( + string path : string ref +); + +/* + * C# dbscheme + */ + +/** ELEMENTS **/ + +@element = @declaration | @stmt | @expr | @modifier | @attribute | @namespace_declaration + | @using_directive | @type_parameter_constraints | @externalDataElement + | @xmllocatable | @asp_element | @namespace | @preprocessor_directive; + +@declaration = @callable | @generic | @assignable | @namespace; + +@named_element = @namespace | @declaration; + +@declaration_with_accessors = @property | @indexer | @event; + +@assignable = @variable | @assignable_with_accessors | @event; + +@assignable_with_accessors = @property | @indexer; + +@attributable = @assembly | @field | @parameter | @operator | @method | @constructor + | @destructor | @callable_accessor | @value_or_ref_type | @declaration_with_accessors + | @local_function | @lambda_expr; + +/** LOCATIONS, ASEMMBLIES, MODULES, FILES and FOLDERS **/ + +@location = @location_default | @assembly; + +@locatable = @declaration_with_accessors | @callable_accessor | @declaration_or_directive + | @diagnostic | @extractor_message | @preprocessor_directive | @attribute | @type_mention | @type_parameter_constraints + | @declaration_with_accessors | @callable_accessor | @operator | @method + | @constructor | @destructor | @field | @local_variable | @parameter | @stmt | @expr + | @xmllocatable | @commentline | @commentblock | @asp_element + +locations_default( + unique int id: @location_default, + int file: @file ref, + int beginLine: int ref, + int beginColumn: int ref, + int endLine: int ref, + int endColumn: int ref); + +locations_mapped( + unique int id: @location_default ref, + int mapped_to: @location_default ref); + +@sourceline = @file | @callable | @xmllocatable; + +numlines( + int element_id: @sourceline ref, + int num_lines: int ref, + int num_code: int ref, + int num_comment: int ref); + +assemblies( + unique int id: @assembly, + int file: @file ref, + string fullname: string ref, + string name: string ref, + string version: string ref); + +files( + unique int id: @file, + string name: string ref); + +folders( + unique int id: @folder, + string name: string ref); + +@container = @folder | @file ; + +containerparent( + int parent: @container ref, + unique int child: @container ref); + +file_extraction_mode( + unique int file: @file ref, + int mode: int ref + /* 0 = normal, 1 = standalone extractor */ + ); + +/** NAMESPACES **/ + +@type_container = @namespace | @type; + +namespaces( + unique int id: @namespace, + string name: string ref); + +namespace_declarations( + unique int id: @namespace_declaration, + int namespace_id: @namespace ref); + +namespace_declaration_location( + unique int id: @namespace_declaration ref, + int loc: @location ref); + +parent_namespace( + unique int child_id: @type_container ref, + int namespace_id: @namespace ref); + +@declaration_or_directive = @namespace_declaration | @type | @using_directive; + +parent_namespace_declaration( + int child_id: @declaration_or_directive ref, // cannot be unique because of partial classes + int namespace_id: @namespace_declaration ref); + +@using_directive = @using_namespace_directive | @using_static_directive; + +using_global( + unique int id: @using_directive ref +); + +using_namespace_directives( + unique int id: @using_namespace_directive, + int namespace_id: @namespace ref); + +using_static_directives( + unique int id: @using_static_directive, + int type_id: @type_or_ref ref); + +using_directive_location( + unique int id: @using_directive ref, + int loc: @location ref); + +@preprocessor_directive = @pragma_warning | @pragma_checksum | @directive_define | @directive_undefine | @directive_warning + | @directive_error | @directive_nullable | @directive_line | @directive_region | @directive_endregion | @directive_if + | @directive_elif | @directive_else | @directive_endif; + +@conditional_directive = @directive_if | @directive_elif; +@branch_directive = @directive_if | @directive_elif | @directive_else; + +directive_ifs( + unique int id: @directive_if, + int branchTaken: int ref, /* 0: false, 1: true */ + int conditionValue: int ref); /* 0: false, 1: true */ + +directive_elifs( + unique int id: @directive_elif, + int branchTaken: int ref, /* 0: false, 1: true */ + int conditionValue: int ref, /* 0: false, 1: true */ + int parent: @directive_if ref, + int index: int ref); + +directive_elses( + unique int id: @directive_else, + int branchTaken: int ref, /* 0: false, 1: true */ + int parent: @directive_if ref, + int index: int ref); + +#keyset[id, start] +directive_endifs( + unique int id: @directive_endif, + unique int start: @directive_if ref); + +directive_define_symbols( + unique int id: @define_symbol_expr ref, + string name: string ref); + +directive_regions( + unique int id: @directive_region, + string name: string ref); + +#keyset[id, start] +directive_endregions( + unique int id: @directive_endregion, + unique int start: @directive_region ref); + +directive_lines( + unique int id: @directive_line, + int kind: int ref); /* 0: default, 1: hidden, 2: numeric, 3: span */ + +directive_line_value( + unique int id: @directive_line ref, + int line: int ref); + +directive_line_file( + unique int id: @directive_line ref, + int file: @file ref); + +directive_line_offset( + unique int id: @directive_line ref, + int offset: int ref); + +directive_line_span( + unique int id: @directive_line ref, + int startLine: int ref, + int startColumn: int ref, + int endLine: int ref, + int endColumn: int ref); + +directive_nullables( + unique int id: @directive_nullable, + int setting: int ref, /* 0: disable, 1: enable, 2: restore */ + int target: int ref); /* 0: none, 1: annotations, 2: warnings */ + +directive_warnings( + unique int id: @directive_warning, + string message: string ref); + +directive_errors( + unique int id: @directive_error, + string message: string ref); + +directive_undefines( + unique int id: @directive_undefine, + string name: string ref); + +directive_defines( + unique int id: @directive_define, + string name: string ref); + +pragma_checksums( + unique int id: @pragma_checksum, + int file: @file ref, + string guid: string ref, + string bytes: string ref); + +pragma_warnings( + unique int id: @pragma_warning, + int kind: int ref /* 0 = disable, 1 = restore */); + +#keyset[id, index] +pragma_warning_error_codes( + int id: @pragma_warning ref, + string errorCode: string ref, + int index: int ref); + +preprocessor_directive_location( + unique int id: @preprocessor_directive ref, + int loc: @location ref); + +preprocessor_directive_compilation( + int id: @preprocessor_directive ref, + int compilation: @compilation ref); + +preprocessor_directive_active( + unique int id: @preprocessor_directive ref, + int active: int ref); /* 0: false, 1: true */ + +/** TYPES **/ + +types( + unique int id: @type, + int kind: int ref, + string name: string ref); + +case @type.kind of + 1 = @bool_type +| 2 = @char_type +| 3 = @decimal_type +| 4 = @sbyte_type +| 5 = @short_type +| 6 = @int_type +| 7 = @long_type +| 8 = @byte_type +| 9 = @ushort_type +| 10 = @uint_type +| 11 = @ulong_type +| 12 = @float_type +| 13 = @double_type +| 14 = @enum_type +| 15 = @struct_type +| 17 = @class_type +| 19 = @interface_type +| 20 = @delegate_type +| 21 = @null_type +| 22 = @type_parameter +| 23 = @pointer_type +| 24 = @nullable_type +| 25 = @array_type +| 26 = @void_type +| 27 = @int_ptr_type +| 28 = @uint_ptr_type +| 29 = @dynamic_type +| 30 = @arglist_type +| 31 = @unknown_type +| 32 = @tuple_type +| 33 = @function_pointer_type +| 34 = @inline_array_type +| 35 = @extension_type + ; + +@simple_type = @bool_type | @char_type | @integral_type | @floating_point_type | @decimal_type; +@integral_type = @signed_integral_type | @unsigned_integral_type; +@signed_integral_type = @sbyte_type | @short_type | @int_type | @long_type; +@unsigned_integral_type = @byte_type | @ushort_type | @uint_type | @ulong_type; +@floating_point_type = @float_type | @double_type; +@value_type = @simple_type | @enum_type | @struct_type | @nullable_type | @int_ptr_type + | @uint_ptr_type | @tuple_type | @void_type | @inline_array_type; +@ref_type = @class_type | @interface_type | @array_type | @delegate_type | @null_type + | @dynamic_type | @extension_type; +@value_or_ref_type = @value_type | @ref_type; + +typerefs( + unique int id: @typeref, + string name: string ref); + +typeref_type( + int id: @typeref ref, + unique int typeId: @type ref); + +@type_or_ref = @type | @typeref; + +array_element_type( + unique int array: @array_type ref, + int dimension: int ref, + int rank: int ref, + int element: @type_or_ref ref); + +nullable_underlying_type( + unique int nullable: @nullable_type ref, + int underlying: @type_or_ref ref); + +pointer_referent_type( + unique int pointer: @pointer_type ref, + int referent: @type_or_ref ref); + +enum_underlying_type( + unique int enum_id: @enum_type ref, + int underlying_type_id: @type_or_ref ref); + +delegate_return_type( + unique int delegate_id: @delegate_type ref, + int return_type_id: @type_or_ref ref); + +function_pointer_return_type( + unique int function_pointer_id: @function_pointer_type ref, + int return_type_id: @type_or_ref ref); + +extension_receiver_type( + unique int extension: @extension_type ref, + int receiver_type_id: @type_or_ref ref); + +extend( + int sub: @type ref, + int super: @type_or_ref ref); + +anonymous_types( + unique int id: @type ref); + +@interface_or_ref = @interface_type | @typeref; + +implement( + int sub: @type ref, + int super: @type_or_ref ref); + +type_location( + int id: @type ref, + int loc: @location ref); + +tuple_underlying_type( + unique int tuple: @tuple_type ref, + int struct: @type_or_ref ref); + +#keyset[tuple, index] +tuple_element( + int tuple: @tuple_type ref, + int index: int ref, + unique int field: @field ref); + +attributes( + unique int id: @attribute, + int kind: int ref, + int type_id: @type_or_ref ref, + int target: @attributable ref); + +case @attribute.kind of + 0 = @attribute_default +| 1 = @attribute_return +| 2 = @attribute_assembly +| 3 = @attribute_module +; + +attribute_location( + int id: @attribute ref, + int loc: @location ref); + +@type_mention_parent = @element | @type_mention; + +type_mention( + unique int id: @type_mention, + int type_id: @type_or_ref ref, + int parent: @type_mention_parent ref); + +type_mention_location( + unique int id: @type_mention ref, + int loc: @location ref); + +@has_type_annotation = @assignable | @type_parameter | @callable | @expr | @delegate_type | @generic | @function_pointer_type; + +/** + * A direct annotation on an entity, for example `string? x;`. + * + * Annotations: + * 2 = reftype is not annotated "!" + * 3 = reftype is annotated "?" + * 4 = readonly ref type / in parameter + * 5 = ref type parameter, return or local variable + * 6 = out parameter + * + * Note that the annotation depends on the element it annotates. + * @assignable: The annotation is on the type of the assignable, for example the variable type. + * @type_parameter: The annotation is on the reftype constraint + * @callable: The annotation is on the return type + * @array_type: The annotation is on the element type + */ +type_annotation(int id: @has_type_annotation ref, int annotation: int ref); + +nullability(unique int nullability: @nullability, int kind: int ref); + +case @nullability.kind of + 0 = @oblivious +| 1 = @not_annotated +| 2 = @annotated +; + +#keyset[parent, index] +nullability_parent(int nullability: @nullability ref, int index: int ref, int parent: @nullability ref) + +type_nullability(int id: @has_type_annotation ref, int nullability: @nullability ref); + +/** + * The nullable flow state of an expression, as determined by Roslyn. + * 0 = none (default, not populated) + * 1 = not null + * 2 = maybe null + */ +expr_flowstate(unique int id: @expr ref, int state: int ref); + +/** GENERICS **/ + +@generic = @type | @method | @local_function; + +type_parameters( + unique int id: @type_parameter ref, + int index: int ref, + int generic_id: @generic ref, + int variance: int ref /* none = 0, out = 1, in = 2 */); + +#keyset[constructed_id, index] +type_arguments( + int id: @type_or_ref ref, + int index: int ref, + int constructed_id: @generic_or_ref ref); + +@generic_or_ref = @generic | @typeref; + +constructed_generic( + unique int constructed: @generic ref, + int generic: @generic_or_ref ref); + +type_parameter_constraints( + unique int id: @type_parameter_constraints, + int param_id: @type_parameter ref); + +type_parameter_constraints_location( + int id: @type_parameter_constraints ref, + int loc: @location ref); + +general_type_parameter_constraints( + int id: @type_parameter_constraints ref, + int kind: int ref /* class = 1, struct = 2, new = 3 */); + +specific_type_parameter_constraints( + int id: @type_parameter_constraints ref, + int base_id: @type_or_ref ref); + +specific_type_parameter_nullability( + int id: @type_parameter_constraints ref, + int base_id: @type_or_ref ref, + int nullability: @nullability ref); + +/** FUNCTION POINTERS */ + +function_pointer_calling_conventions( + int id: @function_pointer_type ref, + int kind: int ref); + +#keyset[id, index] +has_unmanaged_calling_conventions( + int id: @function_pointer_type ref, + int index: int ref, + int conv_id: @type_or_ref ref); + +/** MODIFIERS */ + +@modifiable = @modifiable_direct | @event_accessor; + +@modifiable_direct = @member | @accessor | @local_function | @anonymous_function_expr; + +modifiers( + unique int id: @modifier, + string name: string ref); + +has_modifiers( + int id: @modifiable_direct ref, + int mod_id: @modifier ref); + +/** MEMBERS **/ + +@member = @method | @constructor | @destructor | @field | @property | @event | @operator | @indexer | @type; + +@named_exprorstmt = @goto_stmt | @labeled_stmt | @expr; + +@virtualizable = @method | @property | @indexer | @event | @operator; + +exprorstmt_name( + unique int parent_id: @named_exprorstmt ref, + string name: string ref); + +nested_types( + unique int id: @type ref, + int declaring_type_id: @type ref, + int unbound_id: @type ref); + +properties( + unique int id: @property, + string name: string ref, + int declaring_type_id: @type ref, + int type_id: @type_or_ref ref, + int unbound_id: @property ref); + +property_location( + int id: @property ref, + int loc: @location ref); + +indexers( + unique int id: @indexer, + string name: string ref, + int declaring_type_id: @type ref, + int type_id: @type_or_ref ref, + int unbound_id: @indexer ref); + +indexer_location( + int id: @indexer ref, + int loc: @location ref); + +accessors( + unique int id: @accessor, + int kind: int ref, + string name: string ref, + int declaring_member_id: @member ref, + int unbound_id: @accessor ref); + +case @accessor.kind of + 1 = @getter +| 2 = @setter + ; + +init_only_accessors( + unique int id: @accessor ref); + +accessor_location( + int id: @accessor ref, + int loc: @location ref); + +events( + unique int id: @event, + string name: string ref, + int declaring_type_id: @type ref, + int type_id: @type_or_ref ref, + int unbound_id: @event ref); + +event_location( + int id: @event ref, + int loc: @location ref); + +event_accessors( + unique int id: @event_accessor, + int kind: int ref, + string name: string ref, + int declaring_event_id: @event ref, + int unbound_id: @event_accessor ref); + +case @event_accessor.kind of + 1 = @add_event_accessor +| 2 = @remove_event_accessor + ; + +event_accessor_location( + int id: @event_accessor ref, + int loc: @location ref); + +operators( + unique int id: @operator, + string name: string ref, + string symbol: string ref, + int declaring_type_id: @type ref, + int type_id: @type_or_ref ref, + int unbound_id: @operator ref); + +operator_location( + int id: @operator ref, + int loc: @location ref); + +constant_value( + int id: @variable ref, + string value: string ref); + +/** CALLABLES **/ + +@callable = @method | @constructor | @destructor | @operator | @callable_accessor | @anonymous_function_expr | @local_function; + +@callable_accessor = @accessor | @event_accessor; + +methods( + unique int id: @method, + string name: string ref, + int declaring_type_id: @type ref, + int type_id: @type_or_ref ref, + int unbound_id: @method ref); + +method_location( + int id: @method ref, + int loc: @location ref); + +constructors( + unique int id: @constructor, + string name: string ref, + int declaring_type_id: @type ref, + int unbound_id: @constructor ref); + +constructor_location( + int id: @constructor ref, + int loc: @location ref); + +destructors( + unique int id: @destructor, + string name: string ref, + int declaring_type_id: @type ref, + int unbound_id: @destructor ref); + +destructor_location( + int id: @destructor ref, + int loc: @location ref); + +overrides( + int id: @callable ref, + int base_id: @callable ref); + +explicitly_implements( + int id: @member ref, + int interface_id: @interface_or_ref ref); + +local_functions( + unique int id: @local_function, + string name: string ref, + int return_type: @type ref, + int unbound_id: @local_function ref); + +local_function_stmts( + unique int fn: @local_function_stmt ref, + int stmt: @local_function ref); + +/** VARIABLES **/ + +@variable = @local_scope_variable | @field; + +@local_scope_variable = @local_variable | @parameter; + +fields( + unique int id: @field, + int kind: int ref, + string name: string ref, + int declaring_type_id: @type ref, + int type_id: @type_or_ref ref, + int unbound_id: @field ref); + +case @field.kind of + 1 = @addressable_field +| 2 = @constant + ; + +field_location( + int id: @field ref, + int loc: @location ref); + +localvars( + unique int id: @local_variable, + int kind: int ref, + string name: string ref, + int implicitly_typed: int ref /* 0 = no, 1 = yes */, + int type_id: @type_or_ref ref, + int parent_id: @local_var_decl_expr ref); + +case @local_variable.kind of + 1 = @addressable_local_variable +| 2 = @local_constant +| 3 = @local_variable_ref + ; + +localvar_location( + unique int id: @local_variable ref, + int loc: @location ref); + +@parameterizable = @callable | @delegate_type | @indexer | @function_pointer_type | @extension_type; + +#keyset[name, parent_id] +#keyset[index, parent_id] +params( + unique int id: @parameter, + string name: string ref, + int type_id: @type_or_ref ref, + int index: int ref, + int mode: int ref, /* value = 0, ref = 1, out = 2, params/array = 3, this = 4, in = 5, ref readonly = 6 */ + int parent_id: @parameterizable ref, + int unbound_id: @parameter ref); + +param_location( + int id: @parameter ref, + int loc: @location ref); + +@has_scoped_annotation = @local_scope_variable + +scoped_annotation( + int id: @has_scoped_annotation ref, + int kind: int ref // scoped ref = 1, scoped value = 2 + ); + +/** STATEMENTS **/ + +@exprorstmt_parent = @control_flow_element | @top_level_exprorstmt_parent; + +statements( + unique int id: @stmt, + int kind: int ref); + +#keyset[index, parent] +stmt_parent( + unique int stmt: @stmt ref, + int index: int ref, + int parent: @control_flow_element ref); + +@top_level_stmt_parent = @callable; + +// [index, parent] is not a keyset because the same parent may be compiled multiple times +stmt_parent_top_level( + unique int stmt: @stmt ref, + int index: int ref, + int parent: @top_level_stmt_parent ref); + +case @stmt.kind of + 1 = @block_stmt +| 2 = @expr_stmt +| 3 = @if_stmt +| 4 = @switch_stmt +| 5 = @while_stmt +| 6 = @do_stmt +| 7 = @for_stmt +| 8 = @foreach_stmt +| 9 = @break_stmt +| 10 = @continue_stmt +| 11 = @goto_stmt +| 12 = @goto_case_stmt +| 13 = @goto_default_stmt +| 14 = @throw_stmt +| 15 = @return_stmt +| 16 = @yield_stmt +| 17 = @try_stmt +| 18 = @checked_stmt +| 19 = @unchecked_stmt +| 20 = @lock_stmt +| 21 = @using_block_stmt +| 22 = @var_decl_stmt +| 23 = @const_decl_stmt +| 24 = @empty_stmt +| 25 = @unsafe_stmt +| 26 = @fixed_stmt +| 27 = @label_stmt +| 28 = @catch +| 29 = @case_stmt +| 30 = @local_function_stmt +| 31 = @using_decl_stmt + ; + +@using_stmt = @using_block_stmt | @using_decl_stmt; + +@labeled_stmt = @label_stmt | @case; + +@decl_stmt = @var_decl_stmt | @const_decl_stmt | @using_decl_stmt; + +@cond_stmt = @if_stmt | @switch_stmt; + +@loop_stmt = @while_stmt | @do_stmt | @for_stmt | @foreach_stmt; + +@jump_stmt = @break_stmt | @goto_any_stmt | @continue_stmt | @throw_stmt | @return_stmt + | @yield_stmt; + +@goto_any_stmt = @goto_default_stmt | @goto_case_stmt | @goto_stmt; + + +stmt_location( + unique int id: @stmt ref, + int loc: @location ref); + +catch_type( + unique int catch_id: @catch ref, + int type_id: @type_or_ref ref, + int kind: int ref /* explicit = 1, implicit = 2 */); + +foreach_stmt_info( + unique int id: @foreach_stmt ref, + int kind: int ref /* non-async = 1, async = 2 */); + +@foreach_symbol = @method | @property | @type_or_ref; + +#keyset[id, kind] +foreach_stmt_desugar( + int id: @foreach_stmt ref, + int symbol: @foreach_symbol ref, + int kind: int ref /* GetEnumeratorMethod = 1, CurrentProperty = 2, MoveNextMethod = 3, DisposeMethod = 4, ElementType = 5 */); + +/** EXPRESSIONS **/ + +expressions( + unique int id: @expr, + int kind: int ref, + int type_id: @type_or_ref ref); + +#keyset[index, parent] +expr_parent( + unique int expr: @expr ref, + int index: int ref, + int parent: @control_flow_element ref); + +@top_level_expr_parent = @attribute | @field | @property | @indexer | @parameter | @directive_if | @directive_elif; + +@top_level_exprorstmt_parent = @top_level_expr_parent | @top_level_stmt_parent; + +// [index, parent] is not a keyset because the same parent may be compiled multiple times +expr_parent_top_level( + unique int expr: @expr ref, + int index: int ref, + int parent: @top_level_exprorstmt_parent ref); + +case @expr.kind of +/* literal */ + 1 = @bool_literal_expr +| 2 = @char_literal_expr +| 3 = @decimal_literal_expr +| 4 = @int_literal_expr +| 5 = @long_literal_expr +| 6 = @uint_literal_expr +| 7 = @ulong_literal_expr +| 8 = @float_literal_expr +| 9 = @double_literal_expr +| 10 = @utf16_string_literal_expr +| 11 = @null_literal_expr +/* primary & unary */ +| 12 = @this_access_expr +| 13 = @base_access_expr +| 14 = @local_variable_access_expr +| 15 = @parameter_access_expr +| 16 = @field_access_expr +| 17 = @property_access_expr +| 18 = @method_access_expr +| 19 = @event_access_expr +| 20 = @indexer_access_expr +| 21 = @array_access_expr +| 22 = @type_access_expr +| 23 = @typeof_expr +| 24 = @method_invocation_expr +| 25 = @delegate_invocation_expr +| 26 = @operator_invocation_expr +| 27 = @cast_expr +| 28 = @object_creation_expr +| 29 = @explicit_delegate_creation_expr +| 30 = @implicit_delegate_creation_expr +| 31 = @array_creation_expr +| 32 = @default_expr +| 33 = @plus_expr +| 34 = @minus_expr +| 35 = @bit_not_expr +| 36 = @log_not_expr +| 37 = @post_incr_expr +| 38 = @post_decr_expr +| 39 = @pre_incr_expr +| 40 = @pre_decr_expr +/* multiplicative */ +| 41 = @mul_expr +| 42 = @div_expr +| 43 = @rem_expr +/* additive */ +| 44 = @add_expr +| 45 = @sub_expr +/* shift */ +| 46 = @lshift_expr +| 47 = @rshift_expr +/* relational */ +| 48 = @lt_expr +| 49 = @gt_expr +| 50 = @le_expr +| 51 = @ge_expr +/* equality */ +| 52 = @eq_expr +| 53 = @ne_expr +/* logical */ +| 54 = @bit_and_expr +| 55 = @bit_xor_expr +| 56 = @bit_or_expr +| 57 = @log_and_expr +| 58 = @log_or_expr +/* type testing */ +| 59 = @is_expr +| 60 = @as_expr +/* null coalescing */ +| 61 = @null_coalescing_expr +/* conditional */ +| 62 = @conditional_expr +/* assignment */ +| 63 = @simple_assign_expr +| 64 = @assign_add_expr +| 65 = @assign_sub_expr +| 66 = @assign_mul_expr +| 67 = @assign_div_expr +| 68 = @assign_rem_expr +| 69 = @assign_and_expr +| 70 = @assign_xor_expr +| 71 = @assign_or_expr +| 72 = @assign_lshift_expr +| 73 = @assign_rshift_expr +/* more */ +| 74 = @object_init_expr +| 75 = @collection_init_expr +| 76 = @array_init_expr +| 77 = @checked_expr +| 78 = @unchecked_expr +| 79 = @constructor_init_expr +| 80 = @add_event_expr +| 81 = @remove_event_expr +| 82 = @par_expr +| 83 = @local_var_decl_expr +| 84 = @lambda_expr +| 85 = @anonymous_method_expr +| 86 = @namespace_expr +/* dynamic */ +| 92 = @dynamic_element_access_expr +| 93 = @dynamic_member_access_expr +/* unsafe */ +| 100 = @pointer_indirection_expr +| 101 = @address_of_expr +| 102 = @sizeof_expr +/* async */ +| 103 = @await_expr +/* C# 6.0 */ +| 104 = @nameof_expr +| 105 = @interpolated_string_expr +| 106 = @unknown_expr +/* C# 7.0 */ +| 107 = @throw_expr +| 108 = @tuple_expr +| 109 = @local_function_invocation_expr +| 110 = @ref_expr +| 111 = @discard_expr +/* C# 8.0 */ +| 112 = @range_expr +| 113 = @index_expr +| 114 = @switch_expr +| 115 = @recursive_pattern_expr +| 116 = @property_pattern_expr +| 117 = @positional_pattern_expr +| 118 = @switch_case_expr +| 119 = @assign_coalesce_expr +| 120 = @suppress_nullable_warning_expr +| 121 = @namespace_access_expr +/* C# 9.0 */ +| 122 = @lt_pattern_expr +| 123 = @gt_pattern_expr +| 124 = @le_pattern_expr +| 125 = @ge_pattern_expr +| 126 = @not_pattern_expr +| 127 = @and_pattern_expr +| 128 = @or_pattern_expr +| 129 = @function_pointer_invocation_expr +| 130 = @with_expr +/* C# 11.0 */ +| 131 = @list_pattern_expr +| 132 = @slice_pattern_expr +| 133 = @urshift_expr +| 134 = @assign_urshift_expr +| 135 = @utf8_string_literal_expr +/* C# 12.0 */ +| 136 = @collection_expr +| 137 = @spread_element_expr +| 138 = @interpolated_string_insert_expr +/* Preprocessor */ +| 999 = @define_symbol_expr +; + +@switch = @switch_stmt | @switch_expr; +@case = @case_stmt | @switch_case_expr; +@pattern_match = @case | @is_expr; +@unary_pattern_expr = @not_pattern_expr; +@relational_pattern_expr = @gt_pattern_expr | @lt_pattern_expr | @ge_pattern_expr | @le_pattern_expr; +@binary_pattern_expr = @and_pattern_expr | @or_pattern_expr; + +@integer_literal_expr = @int_literal_expr | @long_literal_expr | @uint_literal_expr | @ulong_literal_expr; +@real_literal_expr = @float_literal_expr | @double_literal_expr | @decimal_literal_expr; +@string_literal_expr = @utf16_string_literal_expr | @utf8_string_literal_expr; +@literal_expr = @bool_literal_expr | @char_literal_expr | @integer_literal_expr | @real_literal_expr + | @string_literal_expr | @null_literal_expr; + +@assign_expr = @simple_assign_expr | @assign_op_expr | @local_var_decl_expr; +@assign_op_call_expr = @assign_arith_expr | @assign_bitwise_expr +@assign_op_expr = @assign_op_call_expr | @assign_event_expr | @assign_coalesce_expr; +@assign_event_expr = @add_event_expr | @remove_event_expr; + +@add_operation = @add_expr | @assign_add_expr; +@sub_operation = @sub_expr | @assign_sub_expr; +@mul_operation = @mul_expr | @assign_mul_expr; +@div_operation = @div_expr | @assign_div_expr; +@rem_operation = @rem_expr | @assign_rem_expr; +@and_operation = @bit_and_expr | @assign_and_expr; +@xor_operation = @bit_xor_expr | @assign_xor_expr; +@or_operation = @bit_or_expr | @assign_or_expr; +@lshift_operation = @lshift_expr | @assign_lshift_expr; +@rshift_operation = @rshift_expr | @assign_rshift_expr; +@urshift_operation = @urshift_expr | @assign_urshift_expr; +@null_coalescing_operation = @null_coalescing_expr | @assign_coalesce_expr; + +@assign_arith_expr = @assign_add_expr | @assign_sub_expr | @assign_mul_expr | @assign_div_expr + | @assign_rem_expr +@assign_bitwise_expr = @assign_and_expr | @assign_or_expr | @assign_xor_expr + | @assign_lshift_expr | @assign_rshift_expr | @assign_urshift_expr; + +@member_access_expr = @field_access_expr | @property_access_expr | @indexer_access_expr | @event_access_expr + | @method_access_expr | @type_access_expr | @dynamic_member_access_expr; +@access_expr = @member_access_expr | @this_access_expr | @base_access_expr | @assignable_access_expr | @namespace_access_expr; +@element_access_expr = @indexer_access_expr | @array_access_expr | @dynamic_element_access_expr; + +@local_variable_access = @local_variable_access_expr | @local_var_decl_expr; +@local_scope_variable_access_expr = @parameter_access_expr | @local_variable_access; +@variable_access_expr = @local_scope_variable_access_expr | @field_access_expr; + +@assignable_access_expr = @variable_access_expr | @property_access_expr | @element_access_expr + | @event_access_expr | @dynamic_member_access_expr; + +@objectorcollection_init_expr = @object_init_expr | @collection_init_expr; + +@delegate_creation_expr = @explicit_delegate_creation_expr | @implicit_delegate_creation_expr; + +@bin_arith_op_expr = @mul_expr | @div_expr | @rem_expr | @add_expr | @sub_expr; +@incr_op_expr = @pre_incr_expr | @post_incr_expr; +@decr_op_expr = @pre_decr_expr | @post_decr_expr; +@mut_op_expr = @incr_op_expr | @decr_op_expr; +@un_arith_op_expr = @plus_expr | @minus_expr | @mut_op_expr; +@arith_op_expr = @bin_arith_op_expr | @un_arith_op_expr; + +@ternary_log_op_expr = @conditional_expr; +@bin_log_op_expr = @log_and_expr | @log_or_expr | @null_coalescing_expr; +@un_log_op_expr = @log_not_expr; +@log_expr = @un_log_op_expr | @bin_log_op_expr | @ternary_log_op_expr; + +@bin_bit_op_expr = @bit_and_expr | @bit_or_expr | @bit_xor_expr | @lshift_expr + | @rshift_expr | @urshift_expr; +@un_bit_op_expr = @bit_not_expr; +@bit_expr = @un_bit_op_expr | @bin_bit_op_expr; + +@equality_op_expr = @eq_expr | @ne_expr; +@rel_op_expr = @gt_expr | @lt_expr| @ge_expr | @le_expr; +@comp_expr = @equality_op_expr | @rel_op_expr; + +@op_expr = @un_op | @bin_op | @ternary_op; + +@ternary_op = @ternary_log_op_expr; +@bin_op = @assign_expr | @bin_arith_op_expr | @bin_log_op_expr | @bin_bit_op_expr | @comp_expr; +@un_op = @un_arith_op_expr | @un_log_op_expr | @un_bit_op_expr | @sizeof_expr + | @pointer_indirection_expr | @address_of_expr; + +@anonymous_function_expr = @lambda_expr | @anonymous_method_expr; + +@op_invoke_expr = @operator_invocation_expr | @assign_op_call_expr +@call = @method_invocation_expr | @constructor_init_expr | @op_invoke_expr + | @delegate_invocation_expr | @object_creation_expr | @call_access_expr + | @local_function_invocation_expr | @function_pointer_invocation_expr; + +@call_access_expr = @property_access_expr | @event_access_expr | @indexer_access_expr; + +@late_bindable_expr = @dynamic_element_access_expr | @dynamic_member_access_expr + | @object_creation_expr | @method_invocation_expr | @op_invoke_expr; + +@throw_element = @throw_expr | @throw_stmt; + +@implicitly_typeable_object_creation_expr = @object_creation_expr | @explicit_delegate_creation_expr; + +implicitly_typed_array_creation( + unique int id: @array_creation_expr ref); + +explicitly_sized_array_creation( + unique int id: @array_creation_expr ref); + +stackalloc_array_creation( + unique int id: @array_creation_expr ref); + +implicitly_typed_object_creation( + unique int id: @implicitly_typeable_object_creation_expr ref); + +mutator_invocation_mode( + unique int id: @operator_invocation_expr ref, + int mode: int ref /* prefix = 1, postfix = 2*/); + +expr_value( + unique int id: @expr ref, + string value: string ref); + +expr_call( + unique int caller_id: @expr ref, + int target_id: @callable ref); + +expr_access( + unique int accesser_id: @access_expr ref, + int target_id: @accessible ref); + +@accessible = @method | @assignable | @local_function | @namespace; + +expr_location( + unique int id: @expr ref, + int loc: @location ref); + +dynamic_member_name( + unique int id: @late_bindable_expr ref, + string name: string ref); + +@qualifiable_expr = @member_access_expr + | @method_invocation_expr + | @element_access_expr + | @assign_op_call_expr; + +conditional_access( + unique int id: @qualifiable_expr ref); + +expr_argument( + unique int id: @expr ref, + int mode: int ref); + /* mode is the same as params: value = 0, ref = 1, out = 2 */ + +expr_argument_name( + unique int id: @expr ref, + string name: string ref); + +lambda_expr_return_type( + unique int id: @lambda_expr ref, + int type_id: @type_or_ref ref); + +/* Compiler generated */ + +compiler_generated(unique int id: @element ref); + +/** CONTROL/DATA FLOW **/ + +@control_flow_element = @stmt | @expr; + +/* XML Files */ + +xmlEncoding ( + unique int id: @file ref, + string encoding: string ref); + +xmlDTDs( + unique int id: @xmldtd, + string root: string ref, + string publicId: string ref, + string systemId: string ref, + int fileid: @file ref); + +xmlElements( + unique int id: @xmlelement, + string name: string ref, + int parentid: @xmlparent ref, + int idx: int ref, + int fileid: @file ref); + +xmlAttrs( + unique int id: @xmlattribute, + int elementid: @xmlelement ref, + string name: string ref, + string value: string ref, + int idx: int ref, + int fileid: @file ref); + +xmlNs( + int id: @xmlnamespace, + string prefixName: string ref, + string URI: string ref, + int fileid: @file ref); + +xmlHasNs( + int elementId: @xmlnamespaceable ref, + int nsId: @xmlnamespace ref, + int fileid: @file ref); + +xmlComments( + unique int id: @xmlcomment, + string text: string ref, + int parentid: @xmlparent ref, + int fileid: @file ref); + +xmlChars( + unique int id: @xmlcharacters, + string text: string ref, + int parentid: @xmlparent ref, + int idx: int ref, + int isCDATA: int ref, + int fileid: @file ref); + +@xmlparent = @file | @xmlelement; +@xmlnamespaceable = @xmlelement | @xmlattribute; + +xmllocations( + int xmlElement: @xmllocatable ref, + int location: @location_default ref); + +@xmllocatable = @xmlcharacters | @xmlelement | @xmlcomment | @xmlattribute | @xmldtd | @file | @xmlnamespace; + +/* Comments */ + +commentline( + unique int id: @commentline, + int kind: int ref, + string text: string ref, + string rawtext: string ref); + +case @commentline.kind of + 0 = @singlelinecomment +| 1 = @xmldoccomment +| 2 = @multilinecomment; + +commentline_location( + unique int id: @commentline ref, + int loc: @location ref); + +commentblock( + unique int id : @commentblock); + +commentblock_location( + unique int id: @commentblock ref, + int loc: @location ref); + +commentblock_binding( + int id: @commentblock ref, + int entity: @element ref, + int bindtype: int ref); /* 0: Parent, 1: Best, 2: Before, 3: After */ + +commentblock_child( + int id: @commentblock ref, + int commentline: @commentline ref, + int index: int ref); + +/* ASP.NET */ + +case @asp_element.kind of + 0=@asp_close_tag +| 1=@asp_code +| 2=@asp_comment +| 3=@asp_data_binding +| 4=@asp_directive +| 5=@asp_open_tag +| 6=@asp_quoted_string +| 7=@asp_text +| 8=@asp_xml_directive; + +@asp_attribute = @asp_code | @asp_data_binding | @asp_quoted_string; + +asp_elements( + unique int id: @asp_element, + int kind: int ref, + int loc: @location ref); + +asp_comment_server(unique int comment: @asp_comment ref); +asp_code_inline(unique int code: @asp_code ref); +asp_directive_attribute( + int directive: @asp_directive ref, + int index: int ref, + string name: string ref, + int value: @asp_quoted_string ref); +asp_directive_name( + unique int directive: @asp_directive ref, + string name: string ref); +asp_element_body( + unique int element: @asp_element ref, + string body: string ref); +asp_tag_attribute( + int tag: @asp_open_tag ref, + int index: int ref, + string name: string ref, + int attribute: @asp_attribute ref); +asp_tag_name( + unique int tag: @asp_open_tag ref, + string name: string ref); +asp_tag_isempty(int tag: @asp_open_tag ref); diff --git a/csharp/ql/lib/upgrades/19b8cc3e2dc768d4cbc03d6e3773b709bbebd036/upgrade.properties b/csharp/ql/lib/upgrades/19b8cc3e2dc768d4cbc03d6e3773b709bbebd036/upgrade.properties new file mode 100644 index 000000000000..1a6c09d74158 --- /dev/null +++ b/csharp/ql/lib/upgrades/19b8cc3e2dc768d4cbc03d6e3773b709bbebd036/upgrade.properties @@ -0,0 +1,2 @@ +description: Add @assign_op_call_expr to @qualifiable_expr. +compatibility: full From bdf0c8ff5a3bf6b174f5023ec87f6e29a252d908 Mon Sep 17 00:00:00 2001 From: Michael Nebel Date: Wed, 22 Apr 2026 15:42:35 +0200 Subject: [PATCH 034/260] C#: Add compound assignment operator call classes. --- .../semmle/code/csharp/exprs/Assignment.qll | 10 ++- .../ql/lib/semmle/code/csharp/exprs/Call.qll | 65 +++++++++++++++++++ 2 files changed, 72 insertions(+), 3 deletions(-) diff --git a/csharp/ql/lib/semmle/code/csharp/exprs/Assignment.qll b/csharp/ql/lib/semmle/code/csharp/exprs/Assignment.qll index 8c7dd80da243..f65b13bf8ecb 100644 --- a/csharp/ql/lib/semmle/code/csharp/exprs/Assignment.qll +++ b/csharp/ql/lib/semmle/code/csharp/exprs/Assignment.qll @@ -94,13 +94,17 @@ class AssignOperation extends Assignment, @assign_op_expr { } /** - * A compound assignment operation that implicitly invokes an operator. - * For example, `x += y` assigns the result of `x + y` to `x`. + * A compound assignment operation that invokes an operator. + * + * (1) `x += y` invokes the compound assignment operator `+=` (if it exists). + * (2) `x += y` invokes the operator `+` and assigns `x + y` to `x`. * * Either an arithmetic assignment operation (`AssignArithmeticOperation`) or a bitwise * assignment operation (`AssignBitwiseOperation`). */ -class AssignCallOperation extends AssignOperation, OperatorCall, @assign_op_call_expr { +class AssignCallOperation extends AssignOperation, OperatorCall, QualifiableExpr, + @assign_op_call_expr +{ override string toString() { result = AssignOperation.super.toString() } } diff --git a/csharp/ql/lib/semmle/code/csharp/exprs/Call.qll b/csharp/ql/lib/semmle/code/csharp/exprs/Call.qll index 63bd0c18a75c..9dbf898e2864 100644 --- a/csharp/ql/lib/semmle/code/csharp/exprs/Call.qll +++ b/csharp/ql/lib/semmle/code/csharp/exprs/Call.qll @@ -529,6 +529,19 @@ class ExtensionOperatorCall extends OperatorCall { ExtensionOperatorCall() { this.getTarget() instanceof ExtensionOperator } override string getAPrimaryQlClass() { result = "ExtensionOperatorCall" } + + private predicate isOrdinaryStaticCall() { + not exists(Expr e | e = this.getChildExpr(-1) | not e instanceof TypeAccess) + } + + override Expr getArgument(int i) { + exists(int j | result = this.getChildExpr(j) | + i >= 0 and + if this.isOrdinaryStaticCall() or this.getTarget() instanceof CompoundAssignmentOperator + then j = i + else j = i - 1 + ) + } } /** @@ -557,6 +570,58 @@ class MutatorOperatorCall extends OperatorCall { predicate isPostfix() { mutator_invocation_mode(this, 2) } } +/** + * A call to a compound assignment operator, for example `this += other` + * on line 7 in + * + * ```csharp + * class A { + * public void operator +=(A other) { + * ... + * } + * + * public void Add(A other) { + * this += other; + * } + * } + * ``` + */ +class CompoundAssignmentOperatorCall extends AssignCallOperation { + CompoundAssignmentOperatorCall() { this.getTarget() instanceof CompoundAssignmentOperator } + + override Expr getArgument(int i) { result = this.getChildExpr(i + 1) and i >= 0 } + + /** Gets the qualifier of this compound assignment operator call. */ + override Expr getQualifier() { result = this.getChildExpr(0) } +} + +/** + * A call to a compound assignment extension operator, for example `s1 *= s2` on + * line 9 in + * + * ```csharp + * static class MyExtensions { + * extension(string s) { + * public void operator *=(string other) { ... } + * } + * } + * + * class A { + * void M(string s1, string s2) { + * s1 *= s2; + * } + * } + */ +class ExtensionCompoundAssignmentOperatorCall extends CompoundAssignmentOperatorCall, + ExtensionOperatorCall +{ + override Expr getArgument(int i) { result = ExtensionOperatorCall.super.getArgument(i) } + + override Expr getQualifier() { none() } + + override string getAPrimaryQlClass() { result = "ExtensionCompoundAssignmentOperatorCall" } +} + private class DelegateLikeCall_ = @delegate_invocation_expr or @function_pointer_invocation_expr; /** From e2fcaeb46a571905d246a41ed7f5d6cc58cb7ac6 Mon Sep 17 00:00:00 2001 From: Michael Nebel Date: Wed, 22 Apr 2026 15:43:53 +0200 Subject: [PATCH 035/260] C#: Handle compound assignment operators in the dispatch logic (and assignable definition). --- .../ql/lib/semmle/code/csharp/Assignable.qll | 3 ++- .../semmle/code/csharp/dispatch/Dispatch.qll | 20 ++++++++++++++++++- 2 files changed, 21 insertions(+), 2 deletions(-) diff --git a/csharp/ql/lib/semmle/code/csharp/Assignable.qll b/csharp/ql/lib/semmle/code/csharp/Assignable.qll index af6861349d1c..5cd9ee9ede06 100644 --- a/csharp/ql/lib/semmle/code/csharp/Assignable.qll +++ b/csharp/ql/lib/semmle/code/csharp/Assignable.qll @@ -315,7 +315,8 @@ module AssignableInternal { TAddressOfDefinition(AddressOfExpr aoe) or TPatternDefinition(TopLevelPatternDecl tlpd) or TAssignOperationDefinition(AssignOperation ao) { - ao instanceof AssignCallOperation or + ao instanceof AssignCallOperation and not ao instanceof CompoundAssignmentOperatorCall + or ao instanceof AssignCoalesceExpr } diff --git a/csharp/ql/lib/semmle/code/csharp/dispatch/Dispatch.qll b/csharp/ql/lib/semmle/code/csharp/dispatch/Dispatch.qll index 6d535025a195..15a64d12b499 100644 --- a/csharp/ql/lib/semmle/code/csharp/dispatch/Dispatch.qll +++ b/csharp/ql/lib/semmle/code/csharp/dispatch/Dispatch.qll @@ -99,7 +99,11 @@ private module Internal { or ac instanceof AssignableWrite and isRead = false } or - TDispatchOperatorCall(OperatorCall oc) { not oc.isLateBound() } or + TDispatchOperatorCall(OperatorCall oc) { + not oc.isLateBound() and + not oc instanceof CompoundAssignmentOperatorCall + } or + TDispatchCompoundAssignmentOperatorCall(CompoundAssignmentOperatorCall caoc) or TDispatchReflectionCall(MethodCall mc, string name, Expr object, Expr qualifier, int args) { isReflectionCall(mc, name, object, qualifier, args) } or @@ -886,6 +890,20 @@ private module Internal { override Operator getAStaticTarget() { result = this.getCall().getTarget() } } + private class DispatchCompoundAssignmentOperatorCall extends DispatchOverridableCall, + TDispatchCompoundAssignmentOperatorCall + { + override CompoundAssignmentOperatorCall getCall() { + this = TDispatchCompoundAssignmentOperatorCall(result) + } + + override Expr getArgument(int i) { result = this.getCall().getArgument(i) } + + override Expr getQualifier() { result = this.getCall().getQualifier() } + + override Operator getAStaticTarget() { result = this.getCall().getTarget() } + } + /** * A call to an accessor. * From 01baa6e3aebd3a6472a901c000991a8366cbdd0a Mon Sep 17 00:00:00 2001 From: Michael Nebel Date: Wed, 22 Apr 2026 15:45:01 +0200 Subject: [PATCH 036/260] C#: Add tests and update expected test output. --- .../extensions/ExtensionFlow.expected | 944 ++++++++++-------- .../dataflow/extensions/extensions.cs | 26 + .../dataflow/operators/Operator.cs | 37 +- .../dataflow/operators/operatorFlow.expected | 76 ++ .../operators/Operators1.expected | 2 +- .../operators/Operators2.expected | 2 +- .../operators/Operators3.expected | 2 +- .../operators/Operators4.expected | 2 +- .../operators/Operators5.expected | 15 + .../library-tests/operators/Operators5.ql | 9 + .../library-tests/operators/PrintAst.expected | 479 ++++++--- .../test/library-tests/operators/operators.cs | 55 +- 12 files changed, 1054 insertions(+), 595 deletions(-) create mode 100644 csharp/ql/test/library-tests/operators/Operators5.expected create mode 100644 csharp/ql/test/library-tests/operators/Operators5.ql diff --git a/csharp/ql/test/library-tests/dataflow/extensions/ExtensionFlow.expected b/csharp/ql/test/library-tests/dataflow/extensions/ExtensionFlow.expected index 35a30ac1ffc9..62a8d64a2bf7 100644 --- a/csharp/ql/test/library-tests/dataflow/extensions/ExtensionFlow.expected +++ b/csharp/ql/test/library-tests/dataflow/extensions/ExtensionFlow.expected @@ -6,204 +6,234 @@ edges | extensions.cs:5:22:5:24 | obj : B | extensions.cs:28:24:28:26 | access to extension synthetic parameter obj | provenance | | | extensions.cs:5:22:5:24 | obj : B | extensions.cs:51:20:51:22 | access to extension synthetic parameter obj | provenance | | | extensions.cs:5:22:5:24 | obj : B | extensions.cs:51:20:51:22 | access to extension synthetic parameter obj | provenance | | -| extensions.cs:11:24:11:37 | call to method Source : B | extensions.cs:108:18:108:26 | access to property Prop1 : B | provenance | | -| extensions.cs:11:24:11:37 | call to method Source : B | extensions.cs:108:18:108:26 | access to property Prop1 : B | provenance | | -| extensions.cs:11:24:11:37 | call to method Source : B | extensions.cs:111:18:111:44 | call to extension accessor get_Prop1 : B | provenance | | -| extensions.cs:11:24:11:37 | call to method Source : B | extensions.cs:111:18:111:44 | call to extension accessor get_Prop1 : B | provenance | | +| extensions.cs:11:24:11:37 | call to method Source : B | extensions.cs:116:18:116:26 | access to property Prop1 : B | provenance | | +| extensions.cs:11:24:11:37 | call to method Source : B | extensions.cs:116:18:116:26 | access to property Prop1 : B | provenance | | +| extensions.cs:11:24:11:37 | call to method Source : B | extensions.cs:119:18:119:44 | call to extension accessor get_Prop1 : B | provenance | | +| extensions.cs:11:24:11:37 | call to method Source : B | extensions.cs:119:18:119:44 | call to extension accessor get_Prop1 : B | provenance | | | extensions.cs:13:13:13:15 | value : B | extensions.cs:15:24:15:28 | access to parameter value | provenance | | | extensions.cs:13:13:13:15 | value : B | extensions.cs:15:24:15:28 | access to parameter value | provenance | | -| extensions.cs:36:24:36:38 | call to method Source : B | extensions.cs:194:18:194:35 | access to property StaticProp1 : B | provenance | | -| extensions.cs:36:24:36:38 | call to method Source : B | extensions.cs:194:18:194:35 | access to property StaticProp1 : B | provenance | | -| extensions.cs:36:24:36:38 | call to method Source : B | extensions.cs:197:18:197:47 | call to extension accessor get_StaticProp1 : B | provenance | | -| extensions.cs:36:24:36:38 | call to method Source : B | extensions.cs:197:18:197:47 | call to extension accessor get_StaticProp1 : B | provenance | | +| extensions.cs:36:24:36:38 | call to method Source : B | extensions.cs:202:18:202:35 | access to property StaticProp1 : B | provenance | | +| extensions.cs:36:24:36:38 | call to method Source : B | extensions.cs:202:18:202:35 | access to property StaticProp1 : B | provenance | | +| extensions.cs:36:24:36:38 | call to method Source : B | extensions.cs:205:18:205:47 | call to extension accessor get_StaticProp1 : B | provenance | | +| extensions.cs:36:24:36:38 | call to method Source : B | extensions.cs:205:18:205:47 | call to extension accessor get_StaticProp1 : B | provenance | | | extensions.cs:38:13:38:15 | value : B | extensions.cs:40:24:40:28 | access to parameter value | provenance | | | extensions.cs:38:13:38:15 | value : B | extensions.cs:40:24:40:28 | access to parameter value | provenance | | -| extensions.cs:46:20:46:33 | call to method Source : B | extensions.cs:127:18:127:25 | call to method M1 : B | provenance | | -| extensions.cs:46:20:46:33 | call to method Source : B | extensions.cs:127:18:127:25 | call to method M1 : B | provenance | | -| extensions.cs:46:20:46:33 | call to method Source : B | extensions.cs:130:18:130:37 | call to method M1 : B | provenance | | -| extensions.cs:46:20:46:33 | call to method Source : B | extensions.cs:130:18:130:37 | call to method M1 : B | provenance | | +| extensions.cs:46:20:46:33 | call to method Source : B | extensions.cs:135:18:135:25 | call to method M1 : B | provenance | | +| extensions.cs:46:20:46:33 | call to method Source : B | extensions.cs:135:18:135:25 | call to method M1 : B | provenance | | +| extensions.cs:46:20:46:33 | call to method Source : B | extensions.cs:138:18:138:37 | call to method M1 : B | provenance | | +| extensions.cs:46:20:46:33 | call to method Source : B | extensions.cs:138:18:138:37 | call to method M1 : B | provenance | | | extensions.cs:59:48:59:48 | a : B | extensions.cs:61:20:61:20 | access to parameter a | provenance | | | extensions.cs:59:48:59:48 | a : B | extensions.cs:61:20:61:20 | access to parameter a | provenance | | -| extensions.cs:67:20:67:33 | call to method Source : B | extensions.cs:185:18:185:24 | call to operator - : B | provenance | | -| extensions.cs:67:20:67:33 | call to method Source : B | extensions.cs:185:18:185:24 | call to operator - : B | provenance | | -| extensions.cs:67:20:67:33 | call to method Source : B | extensions.cs:188:18:188:52 | call to operator - : B | provenance | | -| extensions.cs:67:20:67:33 | call to method Source : B | extensions.cs:188:18:188:52 | call to operator - : B | provenance | | +| extensions.cs:67:20:67:33 | call to method Source : B | extensions.cs:193:18:193:24 | call to operator - : B | provenance | | +| extensions.cs:67:20:67:33 | call to method Source : B | extensions.cs:193:18:193:24 | call to operator - : B | provenance | | +| extensions.cs:67:20:67:33 | call to method Source : B | extensions.cs:196:18:196:52 | call to operator - : B | provenance | | +| extensions.cs:67:20:67:33 | call to method Source : B | extensions.cs:196:18:196:52 | call to operator - : B | provenance | | | extensions.cs:76:17:76:17 | b : B | extensions.cs:80:20:80:20 | access to extension synthetic parameter b : B | provenance | | | extensions.cs:76:17:76:17 | b : B | extensions.cs:80:20:80:20 | access to extension synthetic parameter b : B | provenance | | | extensions.cs:76:17:76:17 | b : B | extensions.cs:85:20:85:20 | access to extension synthetic parameter b | provenance | | | extensions.cs:76:17:76:17 | b : B | extensions.cs:85:20:85:20 | access to extension synthetic parameter b | provenance | | -| extensions.cs:89:20:89:20 | t : B | extensions.cs:93:20:93:20 | access to extension synthetic parameter t | provenance | | -| extensions.cs:89:20:89:20 | t : B | extensions.cs:93:20:93:20 | access to extension synthetic parameter t | provenance | | -| extensions.cs:96:33:96:37 | other : B | extensions.cs:98:20:98:24 | access to parameter other : B | provenance | | -| extensions.cs:96:33:96:37 | other : B | extensions.cs:98:20:98:24 | access to parameter other : B | provenance | | -| extensions.cs:108:13:108:14 | access to local variable b1 : B | extensions.cs:109:14:109:15 | access to local variable b1 | provenance | | -| extensions.cs:108:13:108:14 | access to local variable b1 : B | extensions.cs:109:14:109:15 | access to local variable b1 | provenance | | -| extensions.cs:108:18:108:26 | access to property Prop1 : B | extensions.cs:108:13:108:14 | access to local variable b1 : B | provenance | | -| extensions.cs:108:18:108:26 | access to property Prop1 : B | extensions.cs:108:13:108:14 | access to local variable b1 : B | provenance | | -| extensions.cs:111:13:111:14 | access to local variable b2 : B | extensions.cs:112:14:112:15 | access to local variable b2 | provenance | | -| extensions.cs:111:13:111:14 | access to local variable b2 : B | extensions.cs:112:14:112:15 | access to local variable b2 | provenance | | -| extensions.cs:111:18:111:44 | call to extension accessor get_Prop1 : B | extensions.cs:111:13:111:14 | access to local variable b2 : B | provenance | | -| extensions.cs:111:18:111:44 | call to extension accessor get_Prop1 : B | extensions.cs:111:13:111:14 | access to local variable b2 : B | provenance | | -| extensions.cs:118:21:118:32 | call to method Source : B | extensions.cs:13:13:13:15 | value : B | provenance | | -| extensions.cs:118:21:118:32 | call to method Source : B | extensions.cs:13:13:13:15 | value : B | provenance | | -| extensions.cs:120:13:120:13 | access to local variable b : B | extensions.cs:121:37:121:37 | access to local variable b : B | provenance | | -| extensions.cs:120:13:120:13 | access to local variable b : B | extensions.cs:121:37:121:37 | access to local variable b : B | provenance | | -| extensions.cs:120:17:120:30 | call to method Source : B | extensions.cs:120:13:120:13 | access to local variable b : B | provenance | | -| extensions.cs:120:17:120:30 | call to method Source : B | extensions.cs:120:13:120:13 | access to local variable b : B | provenance | | -| extensions.cs:121:37:121:37 | access to local variable b : B | extensions.cs:13:13:13:15 | value : B | provenance | | -| extensions.cs:121:37:121:37 | access to local variable b : B | extensions.cs:13:13:13:15 | value : B | provenance | | -| extensions.cs:127:13:127:14 | access to local variable b1 : B | extensions.cs:128:14:128:15 | access to local variable b1 | provenance | | -| extensions.cs:127:13:127:14 | access to local variable b1 : B | extensions.cs:128:14:128:15 | access to local variable b1 | provenance | | -| extensions.cs:127:18:127:25 | call to method M1 : B | extensions.cs:127:13:127:14 | access to local variable b1 : B | provenance | | -| extensions.cs:127:18:127:25 | call to method M1 : B | extensions.cs:127:13:127:14 | access to local variable b1 : B | provenance | | -| extensions.cs:130:13:130:14 | access to local variable b2 : B | extensions.cs:131:14:131:15 | access to local variable b2 | provenance | | -| extensions.cs:130:13:130:14 | access to local variable b2 : B | extensions.cs:131:14:131:15 | access to local variable b2 | provenance | | -| extensions.cs:130:18:130:37 | call to method M1 : B | extensions.cs:130:13:130:14 | access to local variable b2 : B | provenance | | -| extensions.cs:130:18:130:37 | call to method M1 : B | extensions.cs:130:13:130:14 | access to local variable b2 : B | provenance | | -| extensions.cs:136:13:136:14 | access to local variable b1 : B | extensions.cs:137:9:137:10 | access to local variable b1 : B | provenance | | -| extensions.cs:136:13:136:14 | access to local variable b1 : B | extensions.cs:137:9:137:10 | access to local variable b1 : B | provenance | | -| extensions.cs:136:18:136:29 | call to method Source : B | extensions.cs:136:13:136:14 | access to local variable b1 : B | provenance | | -| extensions.cs:136:18:136:29 | call to method Source : B | extensions.cs:136:13:136:14 | access to local variable b1 : B | provenance | | -| extensions.cs:137:9:137:10 | access to local variable b1 : B | extensions.cs:5:22:5:24 | obj : B | provenance | | -| extensions.cs:137:9:137:10 | access to local variable b1 : B | extensions.cs:5:22:5:24 | obj : B | provenance | | -| extensions.cs:139:13:139:14 | access to local variable b2 : B | extensions.cs:140:25:140:26 | access to local variable b2 : B | provenance | | -| extensions.cs:139:13:139:14 | access to local variable b2 : B | extensions.cs:140:25:140:26 | access to local variable b2 : B | provenance | | -| extensions.cs:139:18:139:31 | call to method Source : B | extensions.cs:139:13:139:14 | access to local variable b2 : B | provenance | | -| extensions.cs:139:18:139:31 | call to method Source : B | extensions.cs:139:13:139:14 | access to local variable b2 : B | provenance | | -| extensions.cs:140:25:140:26 | access to local variable b2 : B | extensions.cs:5:22:5:24 | obj : B | provenance | | -| extensions.cs:140:25:140:26 | access to local variable b2 : B | extensions.cs:5:22:5:24 | obj : B | provenance | | -| extensions.cs:145:13:145:14 | access to local variable b1 : B | extensions.cs:146:18:146:19 | access to local variable b1 : B | provenance | | -| extensions.cs:145:13:145:14 | access to local variable b1 : B | extensions.cs:146:18:146:19 | access to local variable b1 : B | provenance | | -| extensions.cs:145:13:145:14 | access to local variable b1 : B | extensions.cs:149:34:149:35 | access to local variable b1 : B | provenance | | -| extensions.cs:145:13:145:14 | access to local variable b1 : B | extensions.cs:149:34:149:35 | access to local variable b1 : B | provenance | | -| extensions.cs:145:18:145:29 | call to method Source : B | extensions.cs:145:13:145:14 | access to local variable b1 : B | provenance | | -| extensions.cs:145:18:145:29 | call to method Source : B | extensions.cs:145:13:145:14 | access to local variable b1 : B | provenance | | -| extensions.cs:146:13:146:14 | access to local variable b2 : B | extensions.cs:147:14:147:15 | access to local variable b2 | provenance | | -| extensions.cs:146:13:146:14 | access to local variable b2 : B | extensions.cs:147:14:147:15 | access to local variable b2 | provenance | | -| extensions.cs:146:18:146:19 | access to local variable b1 : B | extensions.cs:76:17:76:17 | b : B | provenance | | -| extensions.cs:146:18:146:19 | access to local variable b1 : B | extensions.cs:76:17:76:17 | b : B | provenance | | -| extensions.cs:146:18:146:19 | access to local variable b1 : B | extensions.cs:146:18:146:24 | call to method B1 : B | provenance | | -| extensions.cs:146:18:146:19 | access to local variable b1 : B | extensions.cs:146:18:146:24 | call to method B1 : B | provenance | | -| extensions.cs:146:18:146:24 | call to method B1 : B | extensions.cs:146:13:146:14 | access to local variable b2 : B | provenance | | -| extensions.cs:146:18:146:24 | call to method B1 : B | extensions.cs:146:13:146:14 | access to local variable b2 : B | provenance | | -| extensions.cs:149:13:149:14 | access to local variable b3 : B | extensions.cs:150:14:150:15 | access to local variable b3 | provenance | | -| extensions.cs:149:13:149:14 | access to local variable b3 : B | extensions.cs:150:14:150:15 | access to local variable b3 | provenance | | -| extensions.cs:149:18:149:36 | call to method B1 : B | extensions.cs:149:13:149:14 | access to local variable b3 : B | provenance | | -| extensions.cs:149:18:149:36 | call to method B1 : B | extensions.cs:149:13:149:14 | access to local variable b3 : B | provenance | | -| extensions.cs:149:34:149:35 | access to local variable b1 : B | extensions.cs:76:17:76:17 | b : B | provenance | | -| extensions.cs:149:34:149:35 | access to local variable b1 : B | extensions.cs:76:17:76:17 | b : B | provenance | | -| extensions.cs:149:34:149:35 | access to local variable b1 : B | extensions.cs:149:18:149:36 | call to method B1 : B | provenance | | -| extensions.cs:149:34:149:35 | access to local variable b1 : B | extensions.cs:149:18:149:36 | call to method B1 : B | provenance | | -| extensions.cs:155:13:155:14 | access to local variable b1 : B | extensions.cs:156:18:156:19 | access to local variable b1 : B | provenance | | -| extensions.cs:155:13:155:14 | access to local variable b1 : B | extensions.cs:156:18:156:19 | access to local variable b1 : B | provenance | | -| extensions.cs:155:18:155:29 | call to method Source : B | extensions.cs:155:13:155:14 | access to local variable b1 : B | provenance | | -| extensions.cs:155:18:155:29 | call to method Source : B | extensions.cs:155:13:155:14 | access to local variable b1 : B | provenance | | -| extensions.cs:156:18:156:19 | access to local variable b1 : B | extensions.cs:5:22:5:24 | obj : B | provenance | | -| extensions.cs:156:18:156:19 | access to local variable b1 : B | extensions.cs:5:22:5:24 | obj : B | provenance | | -| extensions.cs:158:13:158:14 | access to local variable b3 : B | extensions.cs:159:41:159:42 | access to local variable b3 : B | provenance | | -| extensions.cs:158:13:158:14 | access to local variable b3 : B | extensions.cs:159:41:159:42 | access to local variable b3 : B | provenance | | -| extensions.cs:158:18:158:31 | call to method Source : B | extensions.cs:158:13:158:14 | access to local variable b3 : B | provenance | | -| extensions.cs:158:18:158:31 | call to method Source : B | extensions.cs:158:13:158:14 | access to local variable b3 : B | provenance | | -| extensions.cs:159:41:159:42 | access to local variable b3 : B | extensions.cs:5:22:5:24 | obj : B | provenance | | -| extensions.cs:159:41:159:42 | access to local variable b3 : B | extensions.cs:5:22:5:24 | obj : B | provenance | | -| extensions.cs:164:13:164:14 | access to local variable b1 : B | extensions.cs:165:9:165:10 | access to local variable b1 : B | provenance | | -| extensions.cs:164:13:164:14 | access to local variable b1 : B | extensions.cs:165:9:165:10 | access to local variable b1 : B | provenance | | -| extensions.cs:164:18:164:29 | call to method Source : B | extensions.cs:164:13:164:14 | access to local variable b1 : B | provenance | | -| extensions.cs:164:18:164:29 | call to method Source : B | extensions.cs:164:13:164:14 | access to local variable b1 : B | provenance | | -| extensions.cs:165:9:165:10 | access to local variable b1 : B | extensions.cs:5:22:5:24 | obj : B | provenance | | -| extensions.cs:165:9:165:10 | access to local variable b1 : B | extensions.cs:5:22:5:24 | obj : B | provenance | | -| extensions.cs:167:13:167:14 | access to local variable b2 : B | extensions.cs:168:32:168:33 | access to local variable b2 : B | provenance | | -| extensions.cs:167:13:167:14 | access to local variable b2 : B | extensions.cs:168:32:168:33 | access to local variable b2 : B | provenance | | -| extensions.cs:167:18:167:31 | call to method Source : B | extensions.cs:167:13:167:14 | access to local variable b2 : B | provenance | | -| extensions.cs:167:18:167:31 | call to method Source : B | extensions.cs:167:13:167:14 | access to local variable b2 : B | provenance | | -| extensions.cs:168:32:168:33 | access to local variable b2 : B | extensions.cs:5:22:5:24 | obj : B | provenance | | -| extensions.cs:168:32:168:33 | access to local variable b2 : B | extensions.cs:5:22:5:24 | obj : B | provenance | | -| extensions.cs:173:13:173:14 | access to local variable b1 : B | extensions.cs:175:18:175:19 | access to local variable b1 : B | provenance | | -| extensions.cs:173:13:173:14 | access to local variable b1 : B | extensions.cs:175:18:175:19 | access to local variable b1 : B | provenance | | -| extensions.cs:173:18:173:29 | call to method Source : B | extensions.cs:173:13:173:14 | access to local variable b1 : B | provenance | | -| extensions.cs:173:18:173:29 | call to method Source : B | extensions.cs:173:13:173:14 | access to local variable b1 : B | provenance | | -| extensions.cs:175:18:175:19 | access to local variable b1 : B | extensions.cs:59:48:59:48 | a : B | provenance | | -| extensions.cs:175:18:175:19 | access to local variable b1 : B | extensions.cs:59:48:59:48 | a : B | provenance | | -| extensions.cs:177:13:177:14 | access to local variable b4 : B | extensions.cs:178:43:178:44 | access to local variable b4 : B | provenance | | -| extensions.cs:177:13:177:14 | access to local variable b4 : B | extensions.cs:178:43:178:44 | access to local variable b4 : B | provenance | | -| extensions.cs:177:18:177:31 | call to method Source : B | extensions.cs:177:13:177:14 | access to local variable b4 : B | provenance | | -| extensions.cs:177:18:177:31 | call to method Source : B | extensions.cs:177:13:177:14 | access to local variable b4 : B | provenance | | -| extensions.cs:178:43:178:44 | access to local variable b4 : B | extensions.cs:59:48:59:48 | a : B | provenance | | -| extensions.cs:178:43:178:44 | access to local variable b4 : B | extensions.cs:59:48:59:48 | a : B | provenance | | -| extensions.cs:185:13:185:14 | access to local variable b3 : B | extensions.cs:186:14:186:15 | access to local variable b3 | provenance | | -| extensions.cs:185:13:185:14 | access to local variable b3 : B | extensions.cs:186:14:186:15 | access to local variable b3 | provenance | | -| extensions.cs:185:18:185:24 | call to operator - : B | extensions.cs:185:13:185:14 | access to local variable b3 : B | provenance | | -| extensions.cs:185:18:185:24 | call to operator - : B | extensions.cs:185:13:185:14 | access to local variable b3 : B | provenance | | -| extensions.cs:188:13:188:14 | access to local variable b4 : B | extensions.cs:189:14:189:15 | access to local variable b4 | provenance | | -| extensions.cs:188:13:188:14 | access to local variable b4 : B | extensions.cs:189:14:189:15 | access to local variable b4 | provenance | | -| extensions.cs:188:18:188:52 | call to operator - : B | extensions.cs:188:13:188:14 | access to local variable b4 : B | provenance | | -| extensions.cs:188:18:188:52 | call to operator - : B | extensions.cs:188:13:188:14 | access to local variable b4 : B | provenance | | -| extensions.cs:194:13:194:14 | access to local variable b1 : B | extensions.cs:195:14:195:15 | access to local variable b1 | provenance | | -| extensions.cs:194:13:194:14 | access to local variable b1 : B | extensions.cs:195:14:195:15 | access to local variable b1 | provenance | | -| extensions.cs:194:18:194:35 | access to property StaticProp1 : B | extensions.cs:194:13:194:14 | access to local variable b1 : B | provenance | | -| extensions.cs:194:18:194:35 | access to property StaticProp1 : B | extensions.cs:194:13:194:14 | access to local variable b1 : B | provenance | | -| extensions.cs:197:13:197:14 | access to local variable b2 : B | extensions.cs:198:14:198:15 | access to local variable b2 | provenance | | -| extensions.cs:197:13:197:14 | access to local variable b2 : B | extensions.cs:198:14:198:15 | access to local variable b2 | provenance | | -| extensions.cs:197:18:197:47 | call to extension accessor get_StaticProp1 : B | extensions.cs:197:13:197:14 | access to local variable b2 : B | provenance | | -| extensions.cs:197:18:197:47 | call to extension accessor get_StaticProp1 : B | extensions.cs:197:13:197:14 | access to local variable b2 : B | provenance | | -| extensions.cs:203:13:203:14 | access to local variable b1 : B | extensions.cs:204:30:204:31 | access to local variable b1 : B | provenance | | -| extensions.cs:203:13:203:14 | access to local variable b1 : B | extensions.cs:204:30:204:31 | access to local variable b1 : B | provenance | | -| extensions.cs:203:18:203:30 | call to method Source : B | extensions.cs:203:13:203:14 | access to local variable b1 : B | provenance | | -| extensions.cs:203:18:203:30 | call to method Source : B | extensions.cs:203:13:203:14 | access to local variable b1 : B | provenance | | -| extensions.cs:204:30:204:31 | access to local variable b1 : B | extensions.cs:38:13:38:15 | value : B | provenance | | -| extensions.cs:204:30:204:31 | access to local variable b1 : B | extensions.cs:38:13:38:15 | value : B | provenance | | -| extensions.cs:206:13:206:14 | access to local variable b2 : B | extensions.cs:207:38:207:39 | access to local variable b2 : B | provenance | | -| extensions.cs:206:13:206:14 | access to local variable b2 : B | extensions.cs:207:38:207:39 | access to local variable b2 : B | provenance | | -| extensions.cs:206:18:206:31 | call to method Source : B | extensions.cs:206:13:206:14 | access to local variable b2 : B | provenance | | -| extensions.cs:206:18:206:31 | call to method Source : B | extensions.cs:206:13:206:14 | access to local variable b2 : B | provenance | | -| extensions.cs:207:38:207:39 | access to local variable b2 : B | extensions.cs:38:13:38:15 | value : B | provenance | | -| extensions.cs:207:38:207:39 | access to local variable b2 : B | extensions.cs:38:13:38:15 | value : B | provenance | | -| extensions.cs:212:13:212:14 | access to local variable b1 : B | extensions.cs:213:9:213:10 | access to local variable b1 : B | provenance | | -| extensions.cs:212:13:212:14 | access to local variable b1 : B | extensions.cs:213:9:213:10 | access to local variable b1 : B | provenance | | -| extensions.cs:212:18:212:30 | call to method Source : B | extensions.cs:212:13:212:14 | access to local variable b1 : B | provenance | | -| extensions.cs:212:18:212:30 | call to method Source : B | extensions.cs:212:13:212:14 | access to local variable b1 : B | provenance | | -| extensions.cs:213:9:213:10 | access to local variable b1 : B | extensions.cs:76:17:76:17 | b : B | provenance | | -| extensions.cs:213:9:213:10 | access to local variable b1 : B | extensions.cs:76:17:76:17 | b : B | provenance | | -| extensions.cs:215:13:215:14 | access to local variable b2 : B | extensions.cs:216:25:216:26 | access to local variable b2 : B | provenance | | -| extensions.cs:215:13:215:14 | access to local variable b2 : B | extensions.cs:216:25:216:26 | access to local variable b2 : B | provenance | | -| extensions.cs:215:18:215:31 | call to method Source : B | extensions.cs:215:13:215:14 | access to local variable b2 : B | provenance | | -| extensions.cs:215:18:215:31 | call to method Source : B | extensions.cs:215:13:215:14 | access to local variable b2 : B | provenance | | -| extensions.cs:216:25:216:26 | access to local variable b2 : B | extensions.cs:76:17:76:17 | b : B | provenance | | -| extensions.cs:216:25:216:26 | access to local variable b2 : B | extensions.cs:76:17:76:17 | b : B | provenance | | -| extensions.cs:221:13:221:14 | access to local variable b1 : B | extensions.cs:222:9:222:10 | access to local variable b1 : B | provenance | | -| extensions.cs:221:13:221:14 | access to local variable b1 : B | extensions.cs:222:9:222:10 | access to local variable b1 : B | provenance | | -| extensions.cs:221:18:221:30 | call to method Source : B | extensions.cs:221:13:221:14 | access to local variable b1 : B | provenance | | -| extensions.cs:221:18:221:30 | call to method Source : B | extensions.cs:221:13:221:14 | access to local variable b1 : B | provenance | | -| extensions.cs:222:9:222:10 | access to local variable b1 : B | extensions.cs:89:20:89:20 | t : B | provenance | | -| extensions.cs:222:9:222:10 | access to local variable b1 : B | extensions.cs:89:20:89:20 | t : B | provenance | | -| extensions.cs:224:13:224:14 | access to local variable b2 : B | extensions.cs:225:32:225:33 | access to local variable b2 : B | provenance | | -| extensions.cs:224:13:224:14 | access to local variable b2 : B | extensions.cs:225:32:225:33 | access to local variable b2 : B | provenance | | -| extensions.cs:224:18:224:31 | call to method Source : B | extensions.cs:224:13:224:14 | access to local variable b2 : B | provenance | | -| extensions.cs:224:18:224:31 | call to method Source : B | extensions.cs:224:13:224:14 | access to local variable b2 : B | provenance | | -| extensions.cs:225:32:225:33 | access to local variable b2 : B | extensions.cs:89:20:89:20 | t : B | provenance | | -| extensions.cs:225:32:225:33 | access to local variable b2 : B | extensions.cs:89:20:89:20 | t : B | provenance | | -| extensions.cs:231:13:231:14 | access to local variable b1 : B | extensions.cs:232:32:232:33 | access to local variable b1 : B | provenance | | -| extensions.cs:231:13:231:14 | access to local variable b1 : B | extensions.cs:232:32:232:33 | access to local variable b1 : B | provenance | | -| extensions.cs:231:13:231:14 | access to local variable b1 : B | extensions.cs:235:46:235:47 | access to local variable b1 : B | provenance | | -| extensions.cs:231:13:231:14 | access to local variable b1 : B | extensions.cs:235:46:235:47 | access to local variable b1 : B | provenance | | -| extensions.cs:231:18:231:30 | call to method Source : B | extensions.cs:231:13:231:14 | access to local variable b1 : B | provenance | | -| extensions.cs:231:18:231:30 | call to method Source : B | extensions.cs:231:13:231:14 | access to local variable b1 : B | provenance | | -| extensions.cs:232:13:232:14 | access to local variable b2 : B | extensions.cs:233:14:233:15 | access to local variable b2 | provenance | | -| extensions.cs:232:13:232:14 | access to local variable b2 : B | extensions.cs:233:14:233:15 | access to local variable b2 | provenance | | -| extensions.cs:232:18:232:34 | call to method GenericM2 : B | extensions.cs:232:13:232:14 | access to local variable b2 : B | provenance | | -| extensions.cs:232:18:232:34 | call to method GenericM2 : B | extensions.cs:232:13:232:14 | access to local variable b2 : B | provenance | | -| extensions.cs:232:32:232:33 | access to local variable b1 : B | extensions.cs:96:33:96:37 | other : B | provenance | | -| extensions.cs:232:32:232:33 | access to local variable b1 : B | extensions.cs:96:33:96:37 | other : B | provenance | | -| extensions.cs:232:32:232:33 | access to local variable b1 : B | extensions.cs:232:18:232:34 | call to method GenericM2 : B | provenance | | -| extensions.cs:232:32:232:33 | access to local variable b1 : B | extensions.cs:232:18:232:34 | call to method GenericM2 : B | provenance | | -| extensions.cs:235:13:235:14 | access to local variable b3 : B | extensions.cs:236:14:236:15 | access to local variable b3 | provenance | | -| extensions.cs:235:13:235:14 | access to local variable b3 : B | extensions.cs:236:14:236:15 | access to local variable b3 | provenance | | -| extensions.cs:235:18:235:48 | call to method GenericM2 : B | extensions.cs:235:13:235:14 | access to local variable b3 : B | provenance | | -| extensions.cs:235:18:235:48 | call to method GenericM2 : B | extensions.cs:235:13:235:14 | access to local variable b3 : B | provenance | | -| extensions.cs:235:46:235:47 | access to local variable b1 : B | extensions.cs:96:33:96:37 | other : B | provenance | | -| extensions.cs:235:46:235:47 | access to local variable b1 : B | extensions.cs:96:33:96:37 | other : B | provenance | | -| extensions.cs:235:46:235:47 | access to local variable b1 : B | extensions.cs:235:18:235:48 | call to method GenericM2 : B | provenance | | -| extensions.cs:235:46:235:47 | access to local variable b1 : B | extensions.cs:235:18:235:48 | call to method GenericM2 : B | provenance | | +| extensions.cs:91:35:91:36 | c1 : C [property Prop] : Object | extensions.cs:93:22:93:23 | access to parameter c1 : C [property Prop] : Object | provenance | | +| extensions.cs:91:35:91:36 | c1 : C [property Prop] : Object | extensions.cs:93:22:93:23 | access to parameter c1 : C [property Prop] : Object | provenance | | +| extensions.cs:93:13:93:13 | [post] access to extension synthetic parameter c : C [property Prop] : Object | extensions.cs:89:17:89:17 | c [Return] : C [property Prop] : Object | provenance | | +| extensions.cs:93:13:93:13 | [post] access to extension synthetic parameter c : C [property Prop] : Object | extensions.cs:89:17:89:17 | c [Return] : C [property Prop] : Object | provenance | | +| extensions.cs:93:22:93:23 | access to parameter c1 : C [property Prop] : Object | extensions.cs:93:22:93:28 | access to property Prop : Object | provenance | | +| extensions.cs:93:22:93:23 | access to parameter c1 : C [property Prop] : Object | extensions.cs:93:22:93:28 | access to property Prop : Object | provenance | | +| extensions.cs:93:22:93:28 | access to property Prop : Object | extensions.cs:93:13:93:13 | [post] access to extension synthetic parameter c : C [property Prop] : Object | provenance | | +| extensions.cs:93:22:93:28 | access to property Prop : Object | extensions.cs:93:13:93:13 | [post] access to extension synthetic parameter c : C [property Prop] : Object | provenance | | +| extensions.cs:97:20:97:20 | t : B | extensions.cs:101:20:101:20 | access to extension synthetic parameter t | provenance | | +| extensions.cs:97:20:97:20 | t : B | extensions.cs:101:20:101:20 | access to extension synthetic parameter t | provenance | | +| extensions.cs:104:33:104:37 | other : B | extensions.cs:106:20:106:24 | access to parameter other : B | provenance | | +| extensions.cs:104:33:104:37 | other : B | extensions.cs:106:20:106:24 | access to parameter other : B | provenance | | +| extensions.cs:116:13:116:14 | access to local variable b1 : B | extensions.cs:117:14:117:15 | access to local variable b1 | provenance | | +| extensions.cs:116:13:116:14 | access to local variable b1 : B | extensions.cs:117:14:117:15 | access to local variable b1 | provenance | | +| extensions.cs:116:18:116:26 | access to property Prop1 : B | extensions.cs:116:13:116:14 | access to local variable b1 : B | provenance | | +| extensions.cs:116:18:116:26 | access to property Prop1 : B | extensions.cs:116:13:116:14 | access to local variable b1 : B | provenance | | +| extensions.cs:119:13:119:14 | access to local variable b2 : B | extensions.cs:120:14:120:15 | access to local variable b2 | provenance | | +| extensions.cs:119:13:119:14 | access to local variable b2 : B | extensions.cs:120:14:120:15 | access to local variable b2 | provenance | | +| extensions.cs:119:18:119:44 | call to extension accessor get_Prop1 : B | extensions.cs:119:13:119:14 | access to local variable b2 : B | provenance | | +| extensions.cs:119:18:119:44 | call to extension accessor get_Prop1 : B | extensions.cs:119:13:119:14 | access to local variable b2 : B | provenance | | +| extensions.cs:126:21:126:32 | call to method Source : B | extensions.cs:13:13:13:15 | value : B | provenance | | +| extensions.cs:126:21:126:32 | call to method Source : B | extensions.cs:13:13:13:15 | value : B | provenance | | +| extensions.cs:128:13:128:13 | access to local variable b : B | extensions.cs:129:37:129:37 | access to local variable b : B | provenance | | +| extensions.cs:128:13:128:13 | access to local variable b : B | extensions.cs:129:37:129:37 | access to local variable b : B | provenance | | +| extensions.cs:128:17:128:30 | call to method Source : B | extensions.cs:128:13:128:13 | access to local variable b : B | provenance | | +| extensions.cs:128:17:128:30 | call to method Source : B | extensions.cs:128:13:128:13 | access to local variable b : B | provenance | | +| extensions.cs:129:37:129:37 | access to local variable b : B | extensions.cs:13:13:13:15 | value : B | provenance | | +| extensions.cs:129:37:129:37 | access to local variable b : B | extensions.cs:13:13:13:15 | value : B | provenance | | +| extensions.cs:135:13:135:14 | access to local variable b1 : B | extensions.cs:136:14:136:15 | access to local variable b1 | provenance | | +| extensions.cs:135:13:135:14 | access to local variable b1 : B | extensions.cs:136:14:136:15 | access to local variable b1 | provenance | | +| extensions.cs:135:18:135:25 | call to method M1 : B | extensions.cs:135:13:135:14 | access to local variable b1 : B | provenance | | +| extensions.cs:135:18:135:25 | call to method M1 : B | extensions.cs:135:13:135:14 | access to local variable b1 : B | provenance | | +| extensions.cs:138:13:138:14 | access to local variable b2 : B | extensions.cs:139:14:139:15 | access to local variable b2 | provenance | | +| extensions.cs:138:13:138:14 | access to local variable b2 : B | extensions.cs:139:14:139:15 | access to local variable b2 | provenance | | +| extensions.cs:138:18:138:37 | call to method M1 : B | extensions.cs:138:13:138:14 | access to local variable b2 : B | provenance | | +| extensions.cs:138:18:138:37 | call to method M1 : B | extensions.cs:138:13:138:14 | access to local variable b2 : B | provenance | | +| extensions.cs:144:13:144:14 | access to local variable b1 : B | extensions.cs:145:9:145:10 | access to local variable b1 : B | provenance | | +| extensions.cs:144:13:144:14 | access to local variable b1 : B | extensions.cs:145:9:145:10 | access to local variable b1 : B | provenance | | +| extensions.cs:144:18:144:29 | call to method Source : B | extensions.cs:144:13:144:14 | access to local variable b1 : B | provenance | | +| extensions.cs:144:18:144:29 | call to method Source : B | extensions.cs:144:13:144:14 | access to local variable b1 : B | provenance | | +| extensions.cs:145:9:145:10 | access to local variable b1 : B | extensions.cs:5:22:5:24 | obj : B | provenance | | +| extensions.cs:145:9:145:10 | access to local variable b1 : B | extensions.cs:5:22:5:24 | obj : B | provenance | | +| extensions.cs:147:13:147:14 | access to local variable b2 : B | extensions.cs:148:25:148:26 | access to local variable b2 : B | provenance | | +| extensions.cs:147:13:147:14 | access to local variable b2 : B | extensions.cs:148:25:148:26 | access to local variable b2 : B | provenance | | +| extensions.cs:147:18:147:31 | call to method Source : B | extensions.cs:147:13:147:14 | access to local variable b2 : B | provenance | | +| extensions.cs:147:18:147:31 | call to method Source : B | extensions.cs:147:13:147:14 | access to local variable b2 : B | provenance | | +| extensions.cs:148:25:148:26 | access to local variable b2 : B | extensions.cs:5:22:5:24 | obj : B | provenance | | +| extensions.cs:148:25:148:26 | access to local variable b2 : B | extensions.cs:5:22:5:24 | obj : B | provenance | | +| extensions.cs:153:13:153:14 | access to local variable b1 : B | extensions.cs:154:18:154:19 | access to local variable b1 : B | provenance | | +| extensions.cs:153:13:153:14 | access to local variable b1 : B | extensions.cs:154:18:154:19 | access to local variable b1 : B | provenance | | +| extensions.cs:153:13:153:14 | access to local variable b1 : B | extensions.cs:157:34:157:35 | access to local variable b1 : B | provenance | | +| extensions.cs:153:13:153:14 | access to local variable b1 : B | extensions.cs:157:34:157:35 | access to local variable b1 : B | provenance | | +| extensions.cs:153:18:153:29 | call to method Source : B | extensions.cs:153:13:153:14 | access to local variable b1 : B | provenance | | +| extensions.cs:153:18:153:29 | call to method Source : B | extensions.cs:153:13:153:14 | access to local variable b1 : B | provenance | | +| extensions.cs:154:13:154:14 | access to local variable b2 : B | extensions.cs:155:14:155:15 | access to local variable b2 | provenance | | +| extensions.cs:154:13:154:14 | access to local variable b2 : B | extensions.cs:155:14:155:15 | access to local variable b2 | provenance | | +| extensions.cs:154:18:154:19 | access to local variable b1 : B | extensions.cs:76:17:76:17 | b : B | provenance | | +| extensions.cs:154:18:154:19 | access to local variable b1 : B | extensions.cs:76:17:76:17 | b : B | provenance | | +| extensions.cs:154:18:154:19 | access to local variable b1 : B | extensions.cs:154:18:154:24 | call to method B1 : B | provenance | | +| extensions.cs:154:18:154:19 | access to local variable b1 : B | extensions.cs:154:18:154:24 | call to method B1 : B | provenance | | +| extensions.cs:154:18:154:24 | call to method B1 : B | extensions.cs:154:13:154:14 | access to local variable b2 : B | provenance | | +| extensions.cs:154:18:154:24 | call to method B1 : B | extensions.cs:154:13:154:14 | access to local variable b2 : B | provenance | | +| extensions.cs:157:13:157:14 | access to local variable b3 : B | extensions.cs:158:14:158:15 | access to local variable b3 | provenance | | +| extensions.cs:157:13:157:14 | access to local variable b3 : B | extensions.cs:158:14:158:15 | access to local variable b3 | provenance | | +| extensions.cs:157:18:157:36 | call to method B1 : B | extensions.cs:157:13:157:14 | access to local variable b3 : B | provenance | | +| extensions.cs:157:18:157:36 | call to method B1 : B | extensions.cs:157:13:157:14 | access to local variable b3 : B | provenance | | +| extensions.cs:157:34:157:35 | access to local variable b1 : B | extensions.cs:76:17:76:17 | b : B | provenance | | +| extensions.cs:157:34:157:35 | access to local variable b1 : B | extensions.cs:76:17:76:17 | b : B | provenance | | +| extensions.cs:157:34:157:35 | access to local variable b1 : B | extensions.cs:157:18:157:36 | call to method B1 : B | provenance | | +| extensions.cs:157:34:157:35 | access to local variable b1 : B | extensions.cs:157:18:157:36 | call to method B1 : B | provenance | | +| extensions.cs:163:13:163:14 | access to local variable b1 : B | extensions.cs:164:18:164:19 | access to local variable b1 : B | provenance | | +| extensions.cs:163:13:163:14 | access to local variable b1 : B | extensions.cs:164:18:164:19 | access to local variable b1 : B | provenance | | +| extensions.cs:163:18:163:29 | call to method Source : B | extensions.cs:163:13:163:14 | access to local variable b1 : B | provenance | | +| extensions.cs:163:18:163:29 | call to method Source : B | extensions.cs:163:13:163:14 | access to local variable b1 : B | provenance | | +| extensions.cs:164:18:164:19 | access to local variable b1 : B | extensions.cs:5:22:5:24 | obj : B | provenance | | +| extensions.cs:164:18:164:19 | access to local variable b1 : B | extensions.cs:5:22:5:24 | obj : B | provenance | | +| extensions.cs:166:13:166:14 | access to local variable b3 : B | extensions.cs:167:41:167:42 | access to local variable b3 : B | provenance | | +| extensions.cs:166:13:166:14 | access to local variable b3 : B | extensions.cs:167:41:167:42 | access to local variable b3 : B | provenance | | +| extensions.cs:166:18:166:31 | call to method Source : B | extensions.cs:166:13:166:14 | access to local variable b3 : B | provenance | | +| extensions.cs:166:18:166:31 | call to method Source : B | extensions.cs:166:13:166:14 | access to local variable b3 : B | provenance | | +| extensions.cs:167:41:167:42 | access to local variable b3 : B | extensions.cs:5:22:5:24 | obj : B | provenance | | +| extensions.cs:167:41:167:42 | access to local variable b3 : B | extensions.cs:5:22:5:24 | obj : B | provenance | | +| extensions.cs:172:13:172:14 | access to local variable b1 : B | extensions.cs:173:9:173:10 | access to local variable b1 : B | provenance | | +| extensions.cs:172:13:172:14 | access to local variable b1 : B | extensions.cs:173:9:173:10 | access to local variable b1 : B | provenance | | +| extensions.cs:172:18:172:29 | call to method Source : B | extensions.cs:172:13:172:14 | access to local variable b1 : B | provenance | | +| extensions.cs:172:18:172:29 | call to method Source : B | extensions.cs:172:13:172:14 | access to local variable b1 : B | provenance | | +| extensions.cs:173:9:173:10 | access to local variable b1 : B | extensions.cs:5:22:5:24 | obj : B | provenance | | +| extensions.cs:173:9:173:10 | access to local variable b1 : B | extensions.cs:5:22:5:24 | obj : B | provenance | | +| extensions.cs:175:13:175:14 | access to local variable b2 : B | extensions.cs:176:32:176:33 | access to local variable b2 : B | provenance | | +| extensions.cs:175:13:175:14 | access to local variable b2 : B | extensions.cs:176:32:176:33 | access to local variable b2 : B | provenance | | +| extensions.cs:175:18:175:31 | call to method Source : B | extensions.cs:175:13:175:14 | access to local variable b2 : B | provenance | | +| extensions.cs:175:18:175:31 | call to method Source : B | extensions.cs:175:13:175:14 | access to local variable b2 : B | provenance | | +| extensions.cs:176:32:176:33 | access to local variable b2 : B | extensions.cs:5:22:5:24 | obj : B | provenance | | +| extensions.cs:176:32:176:33 | access to local variable b2 : B | extensions.cs:5:22:5:24 | obj : B | provenance | | +| extensions.cs:181:13:181:14 | access to local variable b1 : B | extensions.cs:183:18:183:19 | access to local variable b1 : B | provenance | | +| extensions.cs:181:13:181:14 | access to local variable b1 : B | extensions.cs:183:18:183:19 | access to local variable b1 : B | provenance | | +| extensions.cs:181:18:181:29 | call to method Source : B | extensions.cs:181:13:181:14 | access to local variable b1 : B | provenance | | +| extensions.cs:181:18:181:29 | call to method Source : B | extensions.cs:181:13:181:14 | access to local variable b1 : B | provenance | | +| extensions.cs:183:18:183:19 | access to local variable b1 : B | extensions.cs:59:48:59:48 | a : B | provenance | | +| extensions.cs:183:18:183:19 | access to local variable b1 : B | extensions.cs:59:48:59:48 | a : B | provenance | | +| extensions.cs:185:13:185:14 | access to local variable b4 : B | extensions.cs:186:43:186:44 | access to local variable b4 : B | provenance | | +| extensions.cs:185:13:185:14 | access to local variable b4 : B | extensions.cs:186:43:186:44 | access to local variable b4 : B | provenance | | +| extensions.cs:185:18:185:31 | call to method Source : B | extensions.cs:185:13:185:14 | access to local variable b4 : B | provenance | | +| extensions.cs:185:18:185:31 | call to method Source : B | extensions.cs:185:13:185:14 | access to local variable b4 : B | provenance | | +| extensions.cs:186:43:186:44 | access to local variable b4 : B | extensions.cs:59:48:59:48 | a : B | provenance | | +| extensions.cs:186:43:186:44 | access to local variable b4 : B | extensions.cs:59:48:59:48 | a : B | provenance | | +| extensions.cs:193:13:193:14 | access to local variable b3 : B | extensions.cs:194:14:194:15 | access to local variable b3 | provenance | | +| extensions.cs:193:13:193:14 | access to local variable b3 : B | extensions.cs:194:14:194:15 | access to local variable b3 | provenance | | +| extensions.cs:193:18:193:24 | call to operator - : B | extensions.cs:193:13:193:14 | access to local variable b3 : B | provenance | | +| extensions.cs:193:18:193:24 | call to operator - : B | extensions.cs:193:13:193:14 | access to local variable b3 : B | provenance | | +| extensions.cs:196:13:196:14 | access to local variable b4 : B | extensions.cs:197:14:197:15 | access to local variable b4 | provenance | | +| extensions.cs:196:13:196:14 | access to local variable b4 : B | extensions.cs:197:14:197:15 | access to local variable b4 | provenance | | +| extensions.cs:196:18:196:52 | call to operator - : B | extensions.cs:196:13:196:14 | access to local variable b4 : B | provenance | | +| extensions.cs:196:18:196:52 | call to operator - : B | extensions.cs:196:13:196:14 | access to local variable b4 : B | provenance | | +| extensions.cs:202:13:202:14 | access to local variable b1 : B | extensions.cs:203:14:203:15 | access to local variable b1 | provenance | | +| extensions.cs:202:13:202:14 | access to local variable b1 : B | extensions.cs:203:14:203:15 | access to local variable b1 | provenance | | +| extensions.cs:202:18:202:35 | access to property StaticProp1 : B | extensions.cs:202:13:202:14 | access to local variable b1 : B | provenance | | +| extensions.cs:202:18:202:35 | access to property StaticProp1 : B | extensions.cs:202:13:202:14 | access to local variable b1 : B | provenance | | +| extensions.cs:205:13:205:14 | access to local variable b2 : B | extensions.cs:206:14:206:15 | access to local variable b2 | provenance | | +| extensions.cs:205:13:205:14 | access to local variable b2 : B | extensions.cs:206:14:206:15 | access to local variable b2 | provenance | | +| extensions.cs:205:18:205:47 | call to extension accessor get_StaticProp1 : B | extensions.cs:205:13:205:14 | access to local variable b2 : B | provenance | | +| extensions.cs:205:18:205:47 | call to extension accessor get_StaticProp1 : B | extensions.cs:205:13:205:14 | access to local variable b2 : B | provenance | | +| extensions.cs:211:13:211:14 | access to local variable b1 : B | extensions.cs:212:30:212:31 | access to local variable b1 : B | provenance | | +| extensions.cs:211:13:211:14 | access to local variable b1 : B | extensions.cs:212:30:212:31 | access to local variable b1 : B | provenance | | +| extensions.cs:211:18:211:30 | call to method Source : B | extensions.cs:211:13:211:14 | access to local variable b1 : B | provenance | | +| extensions.cs:211:18:211:30 | call to method Source : B | extensions.cs:211:13:211:14 | access to local variable b1 : B | provenance | | +| extensions.cs:212:30:212:31 | access to local variable b1 : B | extensions.cs:38:13:38:15 | value : B | provenance | | +| extensions.cs:212:30:212:31 | access to local variable b1 : B | extensions.cs:38:13:38:15 | value : B | provenance | | +| extensions.cs:214:13:214:14 | access to local variable b2 : B | extensions.cs:215:38:215:39 | access to local variable b2 : B | provenance | | +| extensions.cs:214:13:214:14 | access to local variable b2 : B | extensions.cs:215:38:215:39 | access to local variable b2 : B | provenance | | +| extensions.cs:214:18:214:31 | call to method Source : B | extensions.cs:214:13:214:14 | access to local variable b2 : B | provenance | | +| extensions.cs:214:18:214:31 | call to method Source : B | extensions.cs:214:13:214:14 | access to local variable b2 : B | provenance | | +| extensions.cs:215:38:215:39 | access to local variable b2 : B | extensions.cs:38:13:38:15 | value : B | provenance | | +| extensions.cs:215:38:215:39 | access to local variable b2 : B | extensions.cs:38:13:38:15 | value : B | provenance | | +| extensions.cs:220:13:220:14 | access to local variable b1 : B | extensions.cs:221:9:221:10 | access to local variable b1 : B | provenance | | +| extensions.cs:220:13:220:14 | access to local variable b1 : B | extensions.cs:221:9:221:10 | access to local variable b1 : B | provenance | | +| extensions.cs:220:18:220:30 | call to method Source : B | extensions.cs:220:13:220:14 | access to local variable b1 : B | provenance | | +| extensions.cs:220:18:220:30 | call to method Source : B | extensions.cs:220:13:220:14 | access to local variable b1 : B | provenance | | +| extensions.cs:221:9:221:10 | access to local variable b1 : B | extensions.cs:76:17:76:17 | b : B | provenance | | +| extensions.cs:221:9:221:10 | access to local variable b1 : B | extensions.cs:76:17:76:17 | b : B | provenance | | +| extensions.cs:223:13:223:14 | access to local variable b2 : B | extensions.cs:224:25:224:26 | access to local variable b2 : B | provenance | | +| extensions.cs:223:13:223:14 | access to local variable b2 : B | extensions.cs:224:25:224:26 | access to local variable b2 : B | provenance | | +| extensions.cs:223:18:223:31 | call to method Source : B | extensions.cs:223:13:223:14 | access to local variable b2 : B | provenance | | +| extensions.cs:223:18:223:31 | call to method Source : B | extensions.cs:223:13:223:14 | access to local variable b2 : B | provenance | | +| extensions.cs:224:25:224:26 | access to local variable b2 : B | extensions.cs:76:17:76:17 | b : B | provenance | | +| extensions.cs:224:25:224:26 | access to local variable b2 : B | extensions.cs:76:17:76:17 | b : B | provenance | | +| extensions.cs:229:13:229:14 | access to local variable b1 : B | extensions.cs:230:9:230:10 | access to local variable b1 : B | provenance | | +| extensions.cs:229:13:229:14 | access to local variable b1 : B | extensions.cs:230:9:230:10 | access to local variable b1 : B | provenance | | +| extensions.cs:229:18:229:30 | call to method Source : B | extensions.cs:229:13:229:14 | access to local variable b1 : B | provenance | | +| extensions.cs:229:18:229:30 | call to method Source : B | extensions.cs:229:13:229:14 | access to local variable b1 : B | provenance | | +| extensions.cs:230:9:230:10 | access to local variable b1 : B | extensions.cs:97:20:97:20 | t : B | provenance | | +| extensions.cs:230:9:230:10 | access to local variable b1 : B | extensions.cs:97:20:97:20 | t : B | provenance | | +| extensions.cs:232:13:232:14 | access to local variable b2 : B | extensions.cs:233:32:233:33 | access to local variable b2 : B | provenance | | +| extensions.cs:232:13:232:14 | access to local variable b2 : B | extensions.cs:233:32:233:33 | access to local variable b2 : B | provenance | | +| extensions.cs:232:18:232:31 | call to method Source : B | extensions.cs:232:13:232:14 | access to local variable b2 : B | provenance | | +| extensions.cs:232:18:232:31 | call to method Source : B | extensions.cs:232:13:232:14 | access to local variable b2 : B | provenance | | +| extensions.cs:233:32:233:33 | access to local variable b2 : B | extensions.cs:97:20:97:20 | t : B | provenance | | +| extensions.cs:233:32:233:33 | access to local variable b2 : B | extensions.cs:97:20:97:20 | t : B | provenance | | +| extensions.cs:239:13:239:14 | access to local variable b1 : B | extensions.cs:240:32:240:33 | access to local variable b1 : B | provenance | | +| extensions.cs:239:13:239:14 | access to local variable b1 : B | extensions.cs:240:32:240:33 | access to local variable b1 : B | provenance | | +| extensions.cs:239:13:239:14 | access to local variable b1 : B | extensions.cs:243:46:243:47 | access to local variable b1 : B | provenance | | +| extensions.cs:239:13:239:14 | access to local variable b1 : B | extensions.cs:243:46:243:47 | access to local variable b1 : B | provenance | | +| extensions.cs:239:18:239:30 | call to method Source : B | extensions.cs:239:13:239:14 | access to local variable b1 : B | provenance | | +| extensions.cs:239:18:239:30 | call to method Source : B | extensions.cs:239:13:239:14 | access to local variable b1 : B | provenance | | +| extensions.cs:240:13:240:14 | access to local variable b2 : B | extensions.cs:241:14:241:15 | access to local variable b2 | provenance | | +| extensions.cs:240:13:240:14 | access to local variable b2 : B | extensions.cs:241:14:241:15 | access to local variable b2 | provenance | | +| extensions.cs:240:18:240:34 | call to method GenericM2 : B | extensions.cs:240:13:240:14 | access to local variable b2 : B | provenance | | +| extensions.cs:240:18:240:34 | call to method GenericM2 : B | extensions.cs:240:13:240:14 | access to local variable b2 : B | provenance | | +| extensions.cs:240:32:240:33 | access to local variable b1 : B | extensions.cs:104:33:104:37 | other : B | provenance | | +| extensions.cs:240:32:240:33 | access to local variable b1 : B | extensions.cs:104:33:104:37 | other : B | provenance | | +| extensions.cs:240:32:240:33 | access to local variable b1 : B | extensions.cs:240:18:240:34 | call to method GenericM2 : B | provenance | | +| extensions.cs:240:32:240:33 | access to local variable b1 : B | extensions.cs:240:18:240:34 | call to method GenericM2 : B | provenance | | +| extensions.cs:243:13:243:14 | access to local variable b3 : B | extensions.cs:244:14:244:15 | access to local variable b3 | provenance | | +| extensions.cs:243:13:243:14 | access to local variable b3 : B | extensions.cs:244:14:244:15 | access to local variable b3 | provenance | | +| extensions.cs:243:18:243:48 | call to method GenericM2 : B | extensions.cs:243:13:243:14 | access to local variable b3 : B | provenance | | +| extensions.cs:243:18:243:48 | call to method GenericM2 : B | extensions.cs:243:13:243:14 | access to local variable b3 : B | provenance | | +| extensions.cs:243:46:243:47 | access to local variable b1 : B | extensions.cs:104:33:104:37 | other : B | provenance | | +| extensions.cs:243:46:243:47 | access to local variable b1 : B | extensions.cs:104:33:104:37 | other : B | provenance | | +| extensions.cs:243:46:243:47 | access to local variable b1 : B | extensions.cs:243:18:243:48 | call to method GenericM2 : B | provenance | | +| extensions.cs:243:46:243:47 | access to local variable b1 : B | extensions.cs:243:18:243:48 | call to method GenericM2 : B | provenance | | +| extensions.cs:250:9:250:10 | [post] access to local variable c1 : C [property Prop] : Object | extensions.cs:252:15:252:16 | access to local variable c1 : C [property Prop] : Object | provenance | | +| extensions.cs:250:9:250:10 | [post] access to local variable c1 : C [property Prop] : Object | extensions.cs:252:15:252:16 | access to local variable c1 : C [property Prop] : Object | provenance | | +| extensions.cs:250:9:250:10 | [post] access to local variable c1 : C [property Prop] : Object | extensions.cs:256:54:256:55 | access to local variable c1 : C [property Prop] : Object | provenance | | +| extensions.cs:250:9:250:10 | [post] access to local variable c1 : C [property Prop] : Object | extensions.cs:256:54:256:55 | access to local variable c1 : C [property Prop] : Object | provenance | | +| extensions.cs:250:19:250:36 | call to method Source : Object | extensions.cs:250:9:250:10 | [post] access to local variable c1 : C [property Prop] : Object | provenance | | +| extensions.cs:250:19:250:36 | call to method Source : Object | extensions.cs:250:9:250:10 | [post] access to local variable c1 : C [property Prop] : Object | provenance | | +| extensions.cs:252:9:252:10 | [post] access to local variable c2 : C [property Prop] : Object | extensions.cs:253:14:253:15 | access to local variable c2 : C [property Prop] : Object | provenance | | +| extensions.cs:252:9:252:10 | [post] access to local variable c2 : C [property Prop] : Object | extensions.cs:253:14:253:15 | access to local variable c2 : C [property Prop] : Object | provenance | | +| extensions.cs:252:15:252:16 | access to local variable c1 : C [property Prop] : Object | extensions.cs:91:35:91:36 | c1 : C [property Prop] : Object | provenance | | +| extensions.cs:252:15:252:16 | access to local variable c1 : C [property Prop] : Object | extensions.cs:91:35:91:36 | c1 : C [property Prop] : Object | provenance | | +| extensions.cs:252:15:252:16 | access to local variable c1 : C [property Prop] : Object | extensions.cs:252:9:252:10 | [post] access to local variable c2 : C [property Prop] : Object | provenance | | +| extensions.cs:252:15:252:16 | access to local variable c1 : C [property Prop] : Object | extensions.cs:252:9:252:10 | [post] access to local variable c2 : C [property Prop] : Object | provenance | | +| extensions.cs:253:14:253:15 | access to local variable c2 : C [property Prop] : Object | extensions.cs:253:14:253:20 | access to property Prop | provenance | | +| extensions.cs:253:14:253:15 | access to local variable c2 : C [property Prop] : Object | extensions.cs:253:14:253:20 | access to property Prop | provenance | | +| extensions.cs:256:50:256:51 | [post] access to local variable c3 : C [property Prop] : Object | extensions.cs:257:14:257:15 | access to local variable c3 : C [property Prop] : Object | provenance | | +| extensions.cs:256:50:256:51 | [post] access to local variable c3 : C [property Prop] : Object | extensions.cs:257:14:257:15 | access to local variable c3 : C [property Prop] : Object | provenance | | +| extensions.cs:256:54:256:55 | access to local variable c1 : C [property Prop] : Object | extensions.cs:91:35:91:36 | c1 : C [property Prop] : Object | provenance | | +| extensions.cs:256:54:256:55 | access to local variable c1 : C [property Prop] : Object | extensions.cs:91:35:91:36 | c1 : C [property Prop] : Object | provenance | | +| extensions.cs:256:54:256:55 | access to local variable c1 : C [property Prop] : Object | extensions.cs:256:50:256:51 | [post] access to local variable c3 : C [property Prop] : Object | provenance | | +| extensions.cs:256:54:256:55 | access to local variable c1 : C [property Prop] : Object | extensions.cs:256:50:256:51 | [post] access to local variable c3 : C [property Prop] : Object | provenance | | +| extensions.cs:257:14:257:15 | access to local variable c3 : C [property Prop] : Object | extensions.cs:257:14:257:20 | access to property Prop | provenance | | +| extensions.cs:257:14:257:15 | access to local variable c3 : C [property Prop] : Object | extensions.cs:257:14:257:20 | access to property Prop | provenance | | nodes | extensions.cs:5:22:5:24 | obj : B | semmle.label | obj : B | | extensions.cs:5:22:5:24 | obj : B | semmle.label | obj : B | @@ -245,258 +275,296 @@ nodes | extensions.cs:80:20:80:20 | access to extension synthetic parameter b : B | semmle.label | access to extension synthetic parameter b : B | | extensions.cs:85:20:85:20 | access to extension synthetic parameter b | semmle.label | access to extension synthetic parameter b | | extensions.cs:85:20:85:20 | access to extension synthetic parameter b | semmle.label | access to extension synthetic parameter b | -| extensions.cs:89:20:89:20 | t : B | semmle.label | t : B | -| extensions.cs:89:20:89:20 | t : B | semmle.label | t : B | -| extensions.cs:93:20:93:20 | access to extension synthetic parameter t | semmle.label | access to extension synthetic parameter t | -| extensions.cs:93:20:93:20 | access to extension synthetic parameter t | semmle.label | access to extension synthetic parameter t | -| extensions.cs:96:33:96:37 | other : B | semmle.label | other : B | -| extensions.cs:96:33:96:37 | other : B | semmle.label | other : B | -| extensions.cs:98:20:98:24 | access to parameter other : B | semmle.label | access to parameter other : B | -| extensions.cs:98:20:98:24 | access to parameter other : B | semmle.label | access to parameter other : B | -| extensions.cs:108:13:108:14 | access to local variable b1 : B | semmle.label | access to local variable b1 : B | -| extensions.cs:108:13:108:14 | access to local variable b1 : B | semmle.label | access to local variable b1 : B | -| extensions.cs:108:18:108:26 | access to property Prop1 : B | semmle.label | access to property Prop1 : B | -| extensions.cs:108:18:108:26 | access to property Prop1 : B | semmle.label | access to property Prop1 : B | -| extensions.cs:109:14:109:15 | access to local variable b1 | semmle.label | access to local variable b1 | -| extensions.cs:109:14:109:15 | access to local variable b1 | semmle.label | access to local variable b1 | -| extensions.cs:111:13:111:14 | access to local variable b2 : B | semmle.label | access to local variable b2 : B | -| extensions.cs:111:13:111:14 | access to local variable b2 : B | semmle.label | access to local variable b2 : B | -| extensions.cs:111:18:111:44 | call to extension accessor get_Prop1 : B | semmle.label | call to extension accessor get_Prop1 : B | -| extensions.cs:111:18:111:44 | call to extension accessor get_Prop1 : B | semmle.label | call to extension accessor get_Prop1 : B | -| extensions.cs:112:14:112:15 | access to local variable b2 | semmle.label | access to local variable b2 | -| extensions.cs:112:14:112:15 | access to local variable b2 | semmle.label | access to local variable b2 | -| extensions.cs:118:21:118:32 | call to method Source : B | semmle.label | call to method Source : B | -| extensions.cs:118:21:118:32 | call to method Source : B | semmle.label | call to method Source : B | -| extensions.cs:120:13:120:13 | access to local variable b : B | semmle.label | access to local variable b : B | -| extensions.cs:120:13:120:13 | access to local variable b : B | semmle.label | access to local variable b : B | -| extensions.cs:120:17:120:30 | call to method Source : B | semmle.label | call to method Source : B | -| extensions.cs:120:17:120:30 | call to method Source : B | semmle.label | call to method Source : B | -| extensions.cs:121:37:121:37 | access to local variable b : B | semmle.label | access to local variable b : B | -| extensions.cs:121:37:121:37 | access to local variable b : B | semmle.label | access to local variable b : B | -| extensions.cs:127:13:127:14 | access to local variable b1 : B | semmle.label | access to local variable b1 : B | -| extensions.cs:127:13:127:14 | access to local variable b1 : B | semmle.label | access to local variable b1 : B | -| extensions.cs:127:18:127:25 | call to method M1 : B | semmle.label | call to method M1 : B | -| extensions.cs:127:18:127:25 | call to method M1 : B | semmle.label | call to method M1 : B | -| extensions.cs:128:14:128:15 | access to local variable b1 | semmle.label | access to local variable b1 | -| extensions.cs:128:14:128:15 | access to local variable b1 | semmle.label | access to local variable b1 | -| extensions.cs:130:13:130:14 | access to local variable b2 : B | semmle.label | access to local variable b2 : B | -| extensions.cs:130:13:130:14 | access to local variable b2 : B | semmle.label | access to local variable b2 : B | -| extensions.cs:130:18:130:37 | call to method M1 : B | semmle.label | call to method M1 : B | -| extensions.cs:130:18:130:37 | call to method M1 : B | semmle.label | call to method M1 : B | -| extensions.cs:131:14:131:15 | access to local variable b2 | semmle.label | access to local variable b2 | -| extensions.cs:131:14:131:15 | access to local variable b2 | semmle.label | access to local variable b2 | -| extensions.cs:136:13:136:14 | access to local variable b1 : B | semmle.label | access to local variable b1 : B | -| extensions.cs:136:13:136:14 | access to local variable b1 : B | semmle.label | access to local variable b1 : B | -| extensions.cs:136:18:136:29 | call to method Source : B | semmle.label | call to method Source : B | -| extensions.cs:136:18:136:29 | call to method Source : B | semmle.label | call to method Source : B | -| extensions.cs:137:9:137:10 | access to local variable b1 : B | semmle.label | access to local variable b1 : B | -| extensions.cs:137:9:137:10 | access to local variable b1 : B | semmle.label | access to local variable b1 : B | -| extensions.cs:139:13:139:14 | access to local variable b2 : B | semmle.label | access to local variable b2 : B | -| extensions.cs:139:13:139:14 | access to local variable b2 : B | semmle.label | access to local variable b2 : B | -| extensions.cs:139:18:139:31 | call to method Source : B | semmle.label | call to method Source : B | -| extensions.cs:139:18:139:31 | call to method Source : B | semmle.label | call to method Source : B | -| extensions.cs:140:25:140:26 | access to local variable b2 : B | semmle.label | access to local variable b2 : B | -| extensions.cs:140:25:140:26 | access to local variable b2 : B | semmle.label | access to local variable b2 : B | -| extensions.cs:145:13:145:14 | access to local variable b1 : B | semmle.label | access to local variable b1 : B | -| extensions.cs:145:13:145:14 | access to local variable b1 : B | semmle.label | access to local variable b1 : B | -| extensions.cs:145:18:145:29 | call to method Source : B | semmle.label | call to method Source : B | -| extensions.cs:145:18:145:29 | call to method Source : B | semmle.label | call to method Source : B | -| extensions.cs:146:13:146:14 | access to local variable b2 : B | semmle.label | access to local variable b2 : B | -| extensions.cs:146:13:146:14 | access to local variable b2 : B | semmle.label | access to local variable b2 : B | -| extensions.cs:146:18:146:19 | access to local variable b1 : B | semmle.label | access to local variable b1 : B | -| extensions.cs:146:18:146:19 | access to local variable b1 : B | semmle.label | access to local variable b1 : B | -| extensions.cs:146:18:146:24 | call to method B1 : B | semmle.label | call to method B1 : B | -| extensions.cs:146:18:146:24 | call to method B1 : B | semmle.label | call to method B1 : B | -| extensions.cs:147:14:147:15 | access to local variable b2 | semmle.label | access to local variable b2 | -| extensions.cs:147:14:147:15 | access to local variable b2 | semmle.label | access to local variable b2 | -| extensions.cs:149:13:149:14 | access to local variable b3 : B | semmle.label | access to local variable b3 : B | -| extensions.cs:149:13:149:14 | access to local variable b3 : B | semmle.label | access to local variable b3 : B | -| extensions.cs:149:18:149:36 | call to method B1 : B | semmle.label | call to method B1 : B | -| extensions.cs:149:18:149:36 | call to method B1 : B | semmle.label | call to method B1 : B | -| extensions.cs:149:34:149:35 | access to local variable b1 : B | semmle.label | access to local variable b1 : B | -| extensions.cs:149:34:149:35 | access to local variable b1 : B | semmle.label | access to local variable b1 : B | -| extensions.cs:150:14:150:15 | access to local variable b3 | semmle.label | access to local variable b3 | -| extensions.cs:150:14:150:15 | access to local variable b3 | semmle.label | access to local variable b3 | -| extensions.cs:155:13:155:14 | access to local variable b1 : B | semmle.label | access to local variable b1 : B | -| extensions.cs:155:13:155:14 | access to local variable b1 : B | semmle.label | access to local variable b1 : B | -| extensions.cs:155:18:155:29 | call to method Source : B | semmle.label | call to method Source : B | -| extensions.cs:155:18:155:29 | call to method Source : B | semmle.label | call to method Source : B | -| extensions.cs:156:18:156:19 | access to local variable b1 : B | semmle.label | access to local variable b1 : B | -| extensions.cs:156:18:156:19 | access to local variable b1 : B | semmle.label | access to local variable b1 : B | -| extensions.cs:158:13:158:14 | access to local variable b3 : B | semmle.label | access to local variable b3 : B | -| extensions.cs:158:13:158:14 | access to local variable b3 : B | semmle.label | access to local variable b3 : B | -| extensions.cs:158:18:158:31 | call to method Source : B | semmle.label | call to method Source : B | -| extensions.cs:158:18:158:31 | call to method Source : B | semmle.label | call to method Source : B | -| extensions.cs:159:41:159:42 | access to local variable b3 : B | semmle.label | access to local variable b3 : B | -| extensions.cs:159:41:159:42 | access to local variable b3 : B | semmle.label | access to local variable b3 : B | -| extensions.cs:164:13:164:14 | access to local variable b1 : B | semmle.label | access to local variable b1 : B | -| extensions.cs:164:13:164:14 | access to local variable b1 : B | semmle.label | access to local variable b1 : B | -| extensions.cs:164:18:164:29 | call to method Source : B | semmle.label | call to method Source : B | -| extensions.cs:164:18:164:29 | call to method Source : B | semmle.label | call to method Source : B | -| extensions.cs:165:9:165:10 | access to local variable b1 : B | semmle.label | access to local variable b1 : B | -| extensions.cs:165:9:165:10 | access to local variable b1 : B | semmle.label | access to local variable b1 : B | -| extensions.cs:167:13:167:14 | access to local variable b2 : B | semmle.label | access to local variable b2 : B | -| extensions.cs:167:13:167:14 | access to local variable b2 : B | semmle.label | access to local variable b2 : B | -| extensions.cs:167:18:167:31 | call to method Source : B | semmle.label | call to method Source : B | -| extensions.cs:167:18:167:31 | call to method Source : B | semmle.label | call to method Source : B | -| extensions.cs:168:32:168:33 | access to local variable b2 : B | semmle.label | access to local variable b2 : B | -| extensions.cs:168:32:168:33 | access to local variable b2 : B | semmle.label | access to local variable b2 : B | -| extensions.cs:173:13:173:14 | access to local variable b1 : B | semmle.label | access to local variable b1 : B | -| extensions.cs:173:13:173:14 | access to local variable b1 : B | semmle.label | access to local variable b1 : B | -| extensions.cs:173:18:173:29 | call to method Source : B | semmle.label | call to method Source : B | -| extensions.cs:173:18:173:29 | call to method Source : B | semmle.label | call to method Source : B | -| extensions.cs:175:18:175:19 | access to local variable b1 : B | semmle.label | access to local variable b1 : B | -| extensions.cs:175:18:175:19 | access to local variable b1 : B | semmle.label | access to local variable b1 : B | -| extensions.cs:177:13:177:14 | access to local variable b4 : B | semmle.label | access to local variable b4 : B | -| extensions.cs:177:13:177:14 | access to local variable b4 : B | semmle.label | access to local variable b4 : B | -| extensions.cs:177:18:177:31 | call to method Source : B | semmle.label | call to method Source : B | -| extensions.cs:177:18:177:31 | call to method Source : B | semmle.label | call to method Source : B | -| extensions.cs:178:43:178:44 | access to local variable b4 : B | semmle.label | access to local variable b4 : B | -| extensions.cs:178:43:178:44 | access to local variable b4 : B | semmle.label | access to local variable b4 : B | -| extensions.cs:185:13:185:14 | access to local variable b3 : B | semmle.label | access to local variable b3 : B | -| extensions.cs:185:13:185:14 | access to local variable b3 : B | semmle.label | access to local variable b3 : B | -| extensions.cs:185:18:185:24 | call to operator - : B | semmle.label | call to operator - : B | -| extensions.cs:185:18:185:24 | call to operator - : B | semmle.label | call to operator - : B | -| extensions.cs:186:14:186:15 | access to local variable b3 | semmle.label | access to local variable b3 | -| extensions.cs:186:14:186:15 | access to local variable b3 | semmle.label | access to local variable b3 | -| extensions.cs:188:13:188:14 | access to local variable b4 : B | semmle.label | access to local variable b4 : B | -| extensions.cs:188:13:188:14 | access to local variable b4 : B | semmle.label | access to local variable b4 : B | -| extensions.cs:188:18:188:52 | call to operator - : B | semmle.label | call to operator - : B | -| extensions.cs:188:18:188:52 | call to operator - : B | semmle.label | call to operator - : B | -| extensions.cs:189:14:189:15 | access to local variable b4 | semmle.label | access to local variable b4 | -| extensions.cs:189:14:189:15 | access to local variable b4 | semmle.label | access to local variable b4 | -| extensions.cs:194:13:194:14 | access to local variable b1 : B | semmle.label | access to local variable b1 : B | -| extensions.cs:194:13:194:14 | access to local variable b1 : B | semmle.label | access to local variable b1 : B | -| extensions.cs:194:18:194:35 | access to property StaticProp1 : B | semmle.label | access to property StaticProp1 : B | -| extensions.cs:194:18:194:35 | access to property StaticProp1 : B | semmle.label | access to property StaticProp1 : B | -| extensions.cs:195:14:195:15 | access to local variable b1 | semmle.label | access to local variable b1 | -| extensions.cs:195:14:195:15 | access to local variable b1 | semmle.label | access to local variable b1 | -| extensions.cs:197:13:197:14 | access to local variable b2 : B | semmle.label | access to local variable b2 : B | -| extensions.cs:197:13:197:14 | access to local variable b2 : B | semmle.label | access to local variable b2 : B | -| extensions.cs:197:18:197:47 | call to extension accessor get_StaticProp1 : B | semmle.label | call to extension accessor get_StaticProp1 : B | -| extensions.cs:197:18:197:47 | call to extension accessor get_StaticProp1 : B | semmle.label | call to extension accessor get_StaticProp1 : B | -| extensions.cs:198:14:198:15 | access to local variable b2 | semmle.label | access to local variable b2 | -| extensions.cs:198:14:198:15 | access to local variable b2 | semmle.label | access to local variable b2 | -| extensions.cs:203:13:203:14 | access to local variable b1 : B | semmle.label | access to local variable b1 : B | -| extensions.cs:203:13:203:14 | access to local variable b1 : B | semmle.label | access to local variable b1 : B | -| extensions.cs:203:18:203:30 | call to method Source : B | semmle.label | call to method Source : B | -| extensions.cs:203:18:203:30 | call to method Source : B | semmle.label | call to method Source : B | -| extensions.cs:204:30:204:31 | access to local variable b1 : B | semmle.label | access to local variable b1 : B | -| extensions.cs:204:30:204:31 | access to local variable b1 : B | semmle.label | access to local variable b1 : B | -| extensions.cs:206:13:206:14 | access to local variable b2 : B | semmle.label | access to local variable b2 : B | -| extensions.cs:206:13:206:14 | access to local variable b2 : B | semmle.label | access to local variable b2 : B | -| extensions.cs:206:18:206:31 | call to method Source : B | semmle.label | call to method Source : B | -| extensions.cs:206:18:206:31 | call to method Source : B | semmle.label | call to method Source : B | -| extensions.cs:207:38:207:39 | access to local variable b2 : B | semmle.label | access to local variable b2 : B | -| extensions.cs:207:38:207:39 | access to local variable b2 : B | semmle.label | access to local variable b2 : B | -| extensions.cs:212:13:212:14 | access to local variable b1 : B | semmle.label | access to local variable b1 : B | -| extensions.cs:212:13:212:14 | access to local variable b1 : B | semmle.label | access to local variable b1 : B | -| extensions.cs:212:18:212:30 | call to method Source : B | semmle.label | call to method Source : B | -| extensions.cs:212:18:212:30 | call to method Source : B | semmle.label | call to method Source : B | -| extensions.cs:213:9:213:10 | access to local variable b1 : B | semmle.label | access to local variable b1 : B | -| extensions.cs:213:9:213:10 | access to local variable b1 : B | semmle.label | access to local variable b1 : B | -| extensions.cs:215:13:215:14 | access to local variable b2 : B | semmle.label | access to local variable b2 : B | -| extensions.cs:215:13:215:14 | access to local variable b2 : B | semmle.label | access to local variable b2 : B | -| extensions.cs:215:18:215:31 | call to method Source : B | semmle.label | call to method Source : B | -| extensions.cs:215:18:215:31 | call to method Source : B | semmle.label | call to method Source : B | -| extensions.cs:216:25:216:26 | access to local variable b2 : B | semmle.label | access to local variable b2 : B | -| extensions.cs:216:25:216:26 | access to local variable b2 : B | semmle.label | access to local variable b2 : B | -| extensions.cs:221:13:221:14 | access to local variable b1 : B | semmle.label | access to local variable b1 : B | -| extensions.cs:221:13:221:14 | access to local variable b1 : B | semmle.label | access to local variable b1 : B | -| extensions.cs:221:18:221:30 | call to method Source : B | semmle.label | call to method Source : B | -| extensions.cs:221:18:221:30 | call to method Source : B | semmle.label | call to method Source : B | -| extensions.cs:222:9:222:10 | access to local variable b1 : B | semmle.label | access to local variable b1 : B | -| extensions.cs:222:9:222:10 | access to local variable b1 : B | semmle.label | access to local variable b1 : B | -| extensions.cs:224:13:224:14 | access to local variable b2 : B | semmle.label | access to local variable b2 : B | -| extensions.cs:224:13:224:14 | access to local variable b2 : B | semmle.label | access to local variable b2 : B | -| extensions.cs:224:18:224:31 | call to method Source : B | semmle.label | call to method Source : B | -| extensions.cs:224:18:224:31 | call to method Source : B | semmle.label | call to method Source : B | -| extensions.cs:225:32:225:33 | access to local variable b2 : B | semmle.label | access to local variable b2 : B | -| extensions.cs:225:32:225:33 | access to local variable b2 : B | semmle.label | access to local variable b2 : B | -| extensions.cs:231:13:231:14 | access to local variable b1 : B | semmle.label | access to local variable b1 : B | -| extensions.cs:231:13:231:14 | access to local variable b1 : B | semmle.label | access to local variable b1 : B | -| extensions.cs:231:18:231:30 | call to method Source : B | semmle.label | call to method Source : B | -| extensions.cs:231:18:231:30 | call to method Source : B | semmle.label | call to method Source : B | +| extensions.cs:89:17:89:17 | c [Return] : C [property Prop] : Object | semmle.label | c [Return] : C [property Prop] : Object | +| extensions.cs:89:17:89:17 | c [Return] : C [property Prop] : Object | semmle.label | c [Return] : C [property Prop] : Object | +| extensions.cs:91:35:91:36 | c1 : C [property Prop] : Object | semmle.label | c1 : C [property Prop] : Object | +| extensions.cs:91:35:91:36 | c1 : C [property Prop] : Object | semmle.label | c1 : C [property Prop] : Object | +| extensions.cs:93:13:93:13 | [post] access to extension synthetic parameter c : C [property Prop] : Object | semmle.label | [post] access to extension synthetic parameter c : C [property Prop] : Object | +| extensions.cs:93:13:93:13 | [post] access to extension synthetic parameter c : C [property Prop] : Object | semmle.label | [post] access to extension synthetic parameter c : C [property Prop] : Object | +| extensions.cs:93:22:93:23 | access to parameter c1 : C [property Prop] : Object | semmle.label | access to parameter c1 : C [property Prop] : Object | +| extensions.cs:93:22:93:23 | access to parameter c1 : C [property Prop] : Object | semmle.label | access to parameter c1 : C [property Prop] : Object | +| extensions.cs:93:22:93:28 | access to property Prop : Object | semmle.label | access to property Prop : Object | +| extensions.cs:93:22:93:28 | access to property Prop : Object | semmle.label | access to property Prop : Object | +| extensions.cs:97:20:97:20 | t : B | semmle.label | t : B | +| extensions.cs:97:20:97:20 | t : B | semmle.label | t : B | +| extensions.cs:101:20:101:20 | access to extension synthetic parameter t | semmle.label | access to extension synthetic parameter t | +| extensions.cs:101:20:101:20 | access to extension synthetic parameter t | semmle.label | access to extension synthetic parameter t | +| extensions.cs:104:33:104:37 | other : B | semmle.label | other : B | +| extensions.cs:104:33:104:37 | other : B | semmle.label | other : B | +| extensions.cs:106:20:106:24 | access to parameter other : B | semmle.label | access to parameter other : B | +| extensions.cs:106:20:106:24 | access to parameter other : B | semmle.label | access to parameter other : B | +| extensions.cs:116:13:116:14 | access to local variable b1 : B | semmle.label | access to local variable b1 : B | +| extensions.cs:116:13:116:14 | access to local variable b1 : B | semmle.label | access to local variable b1 : B | +| extensions.cs:116:18:116:26 | access to property Prop1 : B | semmle.label | access to property Prop1 : B | +| extensions.cs:116:18:116:26 | access to property Prop1 : B | semmle.label | access to property Prop1 : B | +| extensions.cs:117:14:117:15 | access to local variable b1 | semmle.label | access to local variable b1 | +| extensions.cs:117:14:117:15 | access to local variable b1 | semmle.label | access to local variable b1 | +| extensions.cs:119:13:119:14 | access to local variable b2 : B | semmle.label | access to local variable b2 : B | +| extensions.cs:119:13:119:14 | access to local variable b2 : B | semmle.label | access to local variable b2 : B | +| extensions.cs:119:18:119:44 | call to extension accessor get_Prop1 : B | semmle.label | call to extension accessor get_Prop1 : B | +| extensions.cs:119:18:119:44 | call to extension accessor get_Prop1 : B | semmle.label | call to extension accessor get_Prop1 : B | +| extensions.cs:120:14:120:15 | access to local variable b2 | semmle.label | access to local variable b2 | +| extensions.cs:120:14:120:15 | access to local variable b2 | semmle.label | access to local variable b2 | +| extensions.cs:126:21:126:32 | call to method Source : B | semmle.label | call to method Source : B | +| extensions.cs:126:21:126:32 | call to method Source : B | semmle.label | call to method Source : B | +| extensions.cs:128:13:128:13 | access to local variable b : B | semmle.label | access to local variable b : B | +| extensions.cs:128:13:128:13 | access to local variable b : B | semmle.label | access to local variable b : B | +| extensions.cs:128:17:128:30 | call to method Source : B | semmle.label | call to method Source : B | +| extensions.cs:128:17:128:30 | call to method Source : B | semmle.label | call to method Source : B | +| extensions.cs:129:37:129:37 | access to local variable b : B | semmle.label | access to local variable b : B | +| extensions.cs:129:37:129:37 | access to local variable b : B | semmle.label | access to local variable b : B | +| extensions.cs:135:13:135:14 | access to local variable b1 : B | semmle.label | access to local variable b1 : B | +| extensions.cs:135:13:135:14 | access to local variable b1 : B | semmle.label | access to local variable b1 : B | +| extensions.cs:135:18:135:25 | call to method M1 : B | semmle.label | call to method M1 : B | +| extensions.cs:135:18:135:25 | call to method M1 : B | semmle.label | call to method M1 : B | +| extensions.cs:136:14:136:15 | access to local variable b1 | semmle.label | access to local variable b1 | +| extensions.cs:136:14:136:15 | access to local variable b1 | semmle.label | access to local variable b1 | +| extensions.cs:138:13:138:14 | access to local variable b2 : B | semmle.label | access to local variable b2 : B | +| extensions.cs:138:13:138:14 | access to local variable b2 : B | semmle.label | access to local variable b2 : B | +| extensions.cs:138:18:138:37 | call to method M1 : B | semmle.label | call to method M1 : B | +| extensions.cs:138:18:138:37 | call to method M1 : B | semmle.label | call to method M1 : B | +| extensions.cs:139:14:139:15 | access to local variable b2 | semmle.label | access to local variable b2 | +| extensions.cs:139:14:139:15 | access to local variable b2 | semmle.label | access to local variable b2 | +| extensions.cs:144:13:144:14 | access to local variable b1 : B | semmle.label | access to local variable b1 : B | +| extensions.cs:144:13:144:14 | access to local variable b1 : B | semmle.label | access to local variable b1 : B | +| extensions.cs:144:18:144:29 | call to method Source : B | semmle.label | call to method Source : B | +| extensions.cs:144:18:144:29 | call to method Source : B | semmle.label | call to method Source : B | +| extensions.cs:145:9:145:10 | access to local variable b1 : B | semmle.label | access to local variable b1 : B | +| extensions.cs:145:9:145:10 | access to local variable b1 : B | semmle.label | access to local variable b1 : B | +| extensions.cs:147:13:147:14 | access to local variable b2 : B | semmle.label | access to local variable b2 : B | +| extensions.cs:147:13:147:14 | access to local variable b2 : B | semmle.label | access to local variable b2 : B | +| extensions.cs:147:18:147:31 | call to method Source : B | semmle.label | call to method Source : B | +| extensions.cs:147:18:147:31 | call to method Source : B | semmle.label | call to method Source : B | +| extensions.cs:148:25:148:26 | access to local variable b2 : B | semmle.label | access to local variable b2 : B | +| extensions.cs:148:25:148:26 | access to local variable b2 : B | semmle.label | access to local variable b2 : B | +| extensions.cs:153:13:153:14 | access to local variable b1 : B | semmle.label | access to local variable b1 : B | +| extensions.cs:153:13:153:14 | access to local variable b1 : B | semmle.label | access to local variable b1 : B | +| extensions.cs:153:18:153:29 | call to method Source : B | semmle.label | call to method Source : B | +| extensions.cs:153:18:153:29 | call to method Source : B | semmle.label | call to method Source : B | +| extensions.cs:154:13:154:14 | access to local variable b2 : B | semmle.label | access to local variable b2 : B | +| extensions.cs:154:13:154:14 | access to local variable b2 : B | semmle.label | access to local variable b2 : B | +| extensions.cs:154:18:154:19 | access to local variable b1 : B | semmle.label | access to local variable b1 : B | +| extensions.cs:154:18:154:19 | access to local variable b1 : B | semmle.label | access to local variable b1 : B | +| extensions.cs:154:18:154:24 | call to method B1 : B | semmle.label | call to method B1 : B | +| extensions.cs:154:18:154:24 | call to method B1 : B | semmle.label | call to method B1 : B | +| extensions.cs:155:14:155:15 | access to local variable b2 | semmle.label | access to local variable b2 | +| extensions.cs:155:14:155:15 | access to local variable b2 | semmle.label | access to local variable b2 | +| extensions.cs:157:13:157:14 | access to local variable b3 : B | semmle.label | access to local variable b3 : B | +| extensions.cs:157:13:157:14 | access to local variable b3 : B | semmle.label | access to local variable b3 : B | +| extensions.cs:157:18:157:36 | call to method B1 : B | semmle.label | call to method B1 : B | +| extensions.cs:157:18:157:36 | call to method B1 : B | semmle.label | call to method B1 : B | +| extensions.cs:157:34:157:35 | access to local variable b1 : B | semmle.label | access to local variable b1 : B | +| extensions.cs:157:34:157:35 | access to local variable b1 : B | semmle.label | access to local variable b1 : B | +| extensions.cs:158:14:158:15 | access to local variable b3 | semmle.label | access to local variable b3 | +| extensions.cs:158:14:158:15 | access to local variable b3 | semmle.label | access to local variable b3 | +| extensions.cs:163:13:163:14 | access to local variable b1 : B | semmle.label | access to local variable b1 : B | +| extensions.cs:163:13:163:14 | access to local variable b1 : B | semmle.label | access to local variable b1 : B | +| extensions.cs:163:18:163:29 | call to method Source : B | semmle.label | call to method Source : B | +| extensions.cs:163:18:163:29 | call to method Source : B | semmle.label | call to method Source : B | +| extensions.cs:164:18:164:19 | access to local variable b1 : B | semmle.label | access to local variable b1 : B | +| extensions.cs:164:18:164:19 | access to local variable b1 : B | semmle.label | access to local variable b1 : B | +| extensions.cs:166:13:166:14 | access to local variable b3 : B | semmle.label | access to local variable b3 : B | +| extensions.cs:166:13:166:14 | access to local variable b3 : B | semmle.label | access to local variable b3 : B | +| extensions.cs:166:18:166:31 | call to method Source : B | semmle.label | call to method Source : B | +| extensions.cs:166:18:166:31 | call to method Source : B | semmle.label | call to method Source : B | +| extensions.cs:167:41:167:42 | access to local variable b3 : B | semmle.label | access to local variable b3 : B | +| extensions.cs:167:41:167:42 | access to local variable b3 : B | semmle.label | access to local variable b3 : B | +| extensions.cs:172:13:172:14 | access to local variable b1 : B | semmle.label | access to local variable b1 : B | +| extensions.cs:172:13:172:14 | access to local variable b1 : B | semmle.label | access to local variable b1 : B | +| extensions.cs:172:18:172:29 | call to method Source : B | semmle.label | call to method Source : B | +| extensions.cs:172:18:172:29 | call to method Source : B | semmle.label | call to method Source : B | +| extensions.cs:173:9:173:10 | access to local variable b1 : B | semmle.label | access to local variable b1 : B | +| extensions.cs:173:9:173:10 | access to local variable b1 : B | semmle.label | access to local variable b1 : B | +| extensions.cs:175:13:175:14 | access to local variable b2 : B | semmle.label | access to local variable b2 : B | +| extensions.cs:175:13:175:14 | access to local variable b2 : B | semmle.label | access to local variable b2 : B | +| extensions.cs:175:18:175:31 | call to method Source : B | semmle.label | call to method Source : B | +| extensions.cs:175:18:175:31 | call to method Source : B | semmle.label | call to method Source : B | +| extensions.cs:176:32:176:33 | access to local variable b2 : B | semmle.label | access to local variable b2 : B | +| extensions.cs:176:32:176:33 | access to local variable b2 : B | semmle.label | access to local variable b2 : B | +| extensions.cs:181:13:181:14 | access to local variable b1 : B | semmle.label | access to local variable b1 : B | +| extensions.cs:181:13:181:14 | access to local variable b1 : B | semmle.label | access to local variable b1 : B | +| extensions.cs:181:18:181:29 | call to method Source : B | semmle.label | call to method Source : B | +| extensions.cs:181:18:181:29 | call to method Source : B | semmle.label | call to method Source : B | +| extensions.cs:183:18:183:19 | access to local variable b1 : B | semmle.label | access to local variable b1 : B | +| extensions.cs:183:18:183:19 | access to local variable b1 : B | semmle.label | access to local variable b1 : B | +| extensions.cs:185:13:185:14 | access to local variable b4 : B | semmle.label | access to local variable b4 : B | +| extensions.cs:185:13:185:14 | access to local variable b4 : B | semmle.label | access to local variable b4 : B | +| extensions.cs:185:18:185:31 | call to method Source : B | semmle.label | call to method Source : B | +| extensions.cs:185:18:185:31 | call to method Source : B | semmle.label | call to method Source : B | +| extensions.cs:186:43:186:44 | access to local variable b4 : B | semmle.label | access to local variable b4 : B | +| extensions.cs:186:43:186:44 | access to local variable b4 : B | semmle.label | access to local variable b4 : B | +| extensions.cs:193:13:193:14 | access to local variable b3 : B | semmle.label | access to local variable b3 : B | +| extensions.cs:193:13:193:14 | access to local variable b3 : B | semmle.label | access to local variable b3 : B | +| extensions.cs:193:18:193:24 | call to operator - : B | semmle.label | call to operator - : B | +| extensions.cs:193:18:193:24 | call to operator - : B | semmle.label | call to operator - : B | +| extensions.cs:194:14:194:15 | access to local variable b3 | semmle.label | access to local variable b3 | +| extensions.cs:194:14:194:15 | access to local variable b3 | semmle.label | access to local variable b3 | +| extensions.cs:196:13:196:14 | access to local variable b4 : B | semmle.label | access to local variable b4 : B | +| extensions.cs:196:13:196:14 | access to local variable b4 : B | semmle.label | access to local variable b4 : B | +| extensions.cs:196:18:196:52 | call to operator - : B | semmle.label | call to operator - : B | +| extensions.cs:196:18:196:52 | call to operator - : B | semmle.label | call to operator - : B | +| extensions.cs:197:14:197:15 | access to local variable b4 | semmle.label | access to local variable b4 | +| extensions.cs:197:14:197:15 | access to local variable b4 | semmle.label | access to local variable b4 | +| extensions.cs:202:13:202:14 | access to local variable b1 : B | semmle.label | access to local variable b1 : B | +| extensions.cs:202:13:202:14 | access to local variable b1 : B | semmle.label | access to local variable b1 : B | +| extensions.cs:202:18:202:35 | access to property StaticProp1 : B | semmle.label | access to property StaticProp1 : B | +| extensions.cs:202:18:202:35 | access to property StaticProp1 : B | semmle.label | access to property StaticProp1 : B | +| extensions.cs:203:14:203:15 | access to local variable b1 | semmle.label | access to local variable b1 | +| extensions.cs:203:14:203:15 | access to local variable b1 | semmle.label | access to local variable b1 | +| extensions.cs:205:13:205:14 | access to local variable b2 : B | semmle.label | access to local variable b2 : B | +| extensions.cs:205:13:205:14 | access to local variable b2 : B | semmle.label | access to local variable b2 : B | +| extensions.cs:205:18:205:47 | call to extension accessor get_StaticProp1 : B | semmle.label | call to extension accessor get_StaticProp1 : B | +| extensions.cs:205:18:205:47 | call to extension accessor get_StaticProp1 : B | semmle.label | call to extension accessor get_StaticProp1 : B | +| extensions.cs:206:14:206:15 | access to local variable b2 | semmle.label | access to local variable b2 | +| extensions.cs:206:14:206:15 | access to local variable b2 | semmle.label | access to local variable b2 | +| extensions.cs:211:13:211:14 | access to local variable b1 : B | semmle.label | access to local variable b1 : B | +| extensions.cs:211:13:211:14 | access to local variable b1 : B | semmle.label | access to local variable b1 : B | +| extensions.cs:211:18:211:30 | call to method Source : B | semmle.label | call to method Source : B | +| extensions.cs:211:18:211:30 | call to method Source : B | semmle.label | call to method Source : B | +| extensions.cs:212:30:212:31 | access to local variable b1 : B | semmle.label | access to local variable b1 : B | +| extensions.cs:212:30:212:31 | access to local variable b1 : B | semmle.label | access to local variable b1 : B | +| extensions.cs:214:13:214:14 | access to local variable b2 : B | semmle.label | access to local variable b2 : B | +| extensions.cs:214:13:214:14 | access to local variable b2 : B | semmle.label | access to local variable b2 : B | +| extensions.cs:214:18:214:31 | call to method Source : B | semmle.label | call to method Source : B | +| extensions.cs:214:18:214:31 | call to method Source : B | semmle.label | call to method Source : B | +| extensions.cs:215:38:215:39 | access to local variable b2 : B | semmle.label | access to local variable b2 : B | +| extensions.cs:215:38:215:39 | access to local variable b2 : B | semmle.label | access to local variable b2 : B | +| extensions.cs:220:13:220:14 | access to local variable b1 : B | semmle.label | access to local variable b1 : B | +| extensions.cs:220:13:220:14 | access to local variable b1 : B | semmle.label | access to local variable b1 : B | +| extensions.cs:220:18:220:30 | call to method Source : B | semmle.label | call to method Source : B | +| extensions.cs:220:18:220:30 | call to method Source : B | semmle.label | call to method Source : B | +| extensions.cs:221:9:221:10 | access to local variable b1 : B | semmle.label | access to local variable b1 : B | +| extensions.cs:221:9:221:10 | access to local variable b1 : B | semmle.label | access to local variable b1 : B | +| extensions.cs:223:13:223:14 | access to local variable b2 : B | semmle.label | access to local variable b2 : B | +| extensions.cs:223:13:223:14 | access to local variable b2 : B | semmle.label | access to local variable b2 : B | +| extensions.cs:223:18:223:31 | call to method Source : B | semmle.label | call to method Source : B | +| extensions.cs:223:18:223:31 | call to method Source : B | semmle.label | call to method Source : B | +| extensions.cs:224:25:224:26 | access to local variable b2 : B | semmle.label | access to local variable b2 : B | +| extensions.cs:224:25:224:26 | access to local variable b2 : B | semmle.label | access to local variable b2 : B | +| extensions.cs:229:13:229:14 | access to local variable b1 : B | semmle.label | access to local variable b1 : B | +| extensions.cs:229:13:229:14 | access to local variable b1 : B | semmle.label | access to local variable b1 : B | +| extensions.cs:229:18:229:30 | call to method Source : B | semmle.label | call to method Source : B | +| extensions.cs:229:18:229:30 | call to method Source : B | semmle.label | call to method Source : B | +| extensions.cs:230:9:230:10 | access to local variable b1 : B | semmle.label | access to local variable b1 : B | +| extensions.cs:230:9:230:10 | access to local variable b1 : B | semmle.label | access to local variable b1 : B | | extensions.cs:232:13:232:14 | access to local variable b2 : B | semmle.label | access to local variable b2 : B | | extensions.cs:232:13:232:14 | access to local variable b2 : B | semmle.label | access to local variable b2 : B | -| extensions.cs:232:18:232:34 | call to method GenericM2 : B | semmle.label | call to method GenericM2 : B | -| extensions.cs:232:18:232:34 | call to method GenericM2 : B | semmle.label | call to method GenericM2 : B | -| extensions.cs:232:32:232:33 | access to local variable b1 : B | semmle.label | access to local variable b1 : B | -| extensions.cs:232:32:232:33 | access to local variable b1 : B | semmle.label | access to local variable b1 : B | -| extensions.cs:233:14:233:15 | access to local variable b2 | semmle.label | access to local variable b2 | -| extensions.cs:233:14:233:15 | access to local variable b2 | semmle.label | access to local variable b2 | -| extensions.cs:235:13:235:14 | access to local variable b3 : B | semmle.label | access to local variable b3 : B | -| extensions.cs:235:13:235:14 | access to local variable b3 : B | semmle.label | access to local variable b3 : B | -| extensions.cs:235:18:235:48 | call to method GenericM2 : B | semmle.label | call to method GenericM2 : B | -| extensions.cs:235:18:235:48 | call to method GenericM2 : B | semmle.label | call to method GenericM2 : B | -| extensions.cs:235:46:235:47 | access to local variable b1 : B | semmle.label | access to local variable b1 : B | -| extensions.cs:235:46:235:47 | access to local variable b1 : B | semmle.label | access to local variable b1 : B | -| extensions.cs:236:14:236:15 | access to local variable b3 | semmle.label | access to local variable b3 | -| extensions.cs:236:14:236:15 | access to local variable b3 | semmle.label | access to local variable b3 | +| extensions.cs:232:18:232:31 | call to method Source : B | semmle.label | call to method Source : B | +| extensions.cs:232:18:232:31 | call to method Source : B | semmle.label | call to method Source : B | +| extensions.cs:233:32:233:33 | access to local variable b2 : B | semmle.label | access to local variable b2 : B | +| extensions.cs:233:32:233:33 | access to local variable b2 : B | semmle.label | access to local variable b2 : B | +| extensions.cs:239:13:239:14 | access to local variable b1 : B | semmle.label | access to local variable b1 : B | +| extensions.cs:239:13:239:14 | access to local variable b1 : B | semmle.label | access to local variable b1 : B | +| extensions.cs:239:18:239:30 | call to method Source : B | semmle.label | call to method Source : B | +| extensions.cs:239:18:239:30 | call to method Source : B | semmle.label | call to method Source : B | +| extensions.cs:240:13:240:14 | access to local variable b2 : B | semmle.label | access to local variable b2 : B | +| extensions.cs:240:13:240:14 | access to local variable b2 : B | semmle.label | access to local variable b2 : B | +| extensions.cs:240:18:240:34 | call to method GenericM2 : B | semmle.label | call to method GenericM2 : B | +| extensions.cs:240:18:240:34 | call to method GenericM2 : B | semmle.label | call to method GenericM2 : B | +| extensions.cs:240:32:240:33 | access to local variable b1 : B | semmle.label | access to local variable b1 : B | +| extensions.cs:240:32:240:33 | access to local variable b1 : B | semmle.label | access to local variable b1 : B | +| extensions.cs:241:14:241:15 | access to local variable b2 | semmle.label | access to local variable b2 | +| extensions.cs:241:14:241:15 | access to local variable b2 | semmle.label | access to local variable b2 | +| extensions.cs:243:13:243:14 | access to local variable b3 : B | semmle.label | access to local variable b3 : B | +| extensions.cs:243:13:243:14 | access to local variable b3 : B | semmle.label | access to local variable b3 : B | +| extensions.cs:243:18:243:48 | call to method GenericM2 : B | semmle.label | call to method GenericM2 : B | +| extensions.cs:243:18:243:48 | call to method GenericM2 : B | semmle.label | call to method GenericM2 : B | +| extensions.cs:243:46:243:47 | access to local variable b1 : B | semmle.label | access to local variable b1 : B | +| extensions.cs:243:46:243:47 | access to local variable b1 : B | semmle.label | access to local variable b1 : B | +| extensions.cs:244:14:244:15 | access to local variable b3 | semmle.label | access to local variable b3 | +| extensions.cs:244:14:244:15 | access to local variable b3 | semmle.label | access to local variable b3 | +| extensions.cs:250:9:250:10 | [post] access to local variable c1 : C [property Prop] : Object | semmle.label | [post] access to local variable c1 : C [property Prop] : Object | +| extensions.cs:250:9:250:10 | [post] access to local variable c1 : C [property Prop] : Object | semmle.label | [post] access to local variable c1 : C [property Prop] : Object | +| extensions.cs:250:19:250:36 | call to method Source : Object | semmle.label | call to method Source : Object | +| extensions.cs:250:19:250:36 | call to method Source : Object | semmle.label | call to method Source : Object | +| extensions.cs:252:9:252:10 | [post] access to local variable c2 : C [property Prop] : Object | semmle.label | [post] access to local variable c2 : C [property Prop] : Object | +| extensions.cs:252:9:252:10 | [post] access to local variable c2 : C [property Prop] : Object | semmle.label | [post] access to local variable c2 : C [property Prop] : Object | +| extensions.cs:252:15:252:16 | access to local variable c1 : C [property Prop] : Object | semmle.label | access to local variable c1 : C [property Prop] : Object | +| extensions.cs:252:15:252:16 | access to local variable c1 : C [property Prop] : Object | semmle.label | access to local variable c1 : C [property Prop] : Object | +| extensions.cs:253:14:253:15 | access to local variable c2 : C [property Prop] : Object | semmle.label | access to local variable c2 : C [property Prop] : Object | +| extensions.cs:253:14:253:15 | access to local variable c2 : C [property Prop] : Object | semmle.label | access to local variable c2 : C [property Prop] : Object | +| extensions.cs:253:14:253:20 | access to property Prop | semmle.label | access to property Prop | +| extensions.cs:253:14:253:20 | access to property Prop | semmle.label | access to property Prop | +| extensions.cs:256:50:256:51 | [post] access to local variable c3 : C [property Prop] : Object | semmle.label | [post] access to local variable c3 : C [property Prop] : Object | +| extensions.cs:256:50:256:51 | [post] access to local variable c3 : C [property Prop] : Object | semmle.label | [post] access to local variable c3 : C [property Prop] : Object | +| extensions.cs:256:54:256:55 | access to local variable c1 : C [property Prop] : Object | semmle.label | access to local variable c1 : C [property Prop] : Object | +| extensions.cs:256:54:256:55 | access to local variable c1 : C [property Prop] : Object | semmle.label | access to local variable c1 : C [property Prop] : Object | +| extensions.cs:257:14:257:15 | access to local variable c3 : C [property Prop] : Object | semmle.label | access to local variable c3 : C [property Prop] : Object | +| extensions.cs:257:14:257:15 | access to local variable c3 : C [property Prop] : Object | semmle.label | access to local variable c3 : C [property Prop] : Object | +| extensions.cs:257:14:257:20 | access to property Prop | semmle.label | access to property Prop | +| extensions.cs:257:14:257:20 | access to property Prop | semmle.label | access to property Prop | subpaths -| extensions.cs:146:18:146:19 | access to local variable b1 : B | extensions.cs:76:17:76:17 | b : B | extensions.cs:80:20:80:20 | access to extension synthetic parameter b : B | extensions.cs:146:18:146:24 | call to method B1 : B | -| extensions.cs:146:18:146:19 | access to local variable b1 : B | extensions.cs:76:17:76:17 | b : B | extensions.cs:80:20:80:20 | access to extension synthetic parameter b : B | extensions.cs:146:18:146:24 | call to method B1 : B | -| extensions.cs:149:34:149:35 | access to local variable b1 : B | extensions.cs:76:17:76:17 | b : B | extensions.cs:80:20:80:20 | access to extension synthetic parameter b : B | extensions.cs:149:18:149:36 | call to method B1 : B | -| extensions.cs:149:34:149:35 | access to local variable b1 : B | extensions.cs:76:17:76:17 | b : B | extensions.cs:80:20:80:20 | access to extension synthetic parameter b : B | extensions.cs:149:18:149:36 | call to method B1 : B | -| extensions.cs:232:32:232:33 | access to local variable b1 : B | extensions.cs:96:33:96:37 | other : B | extensions.cs:98:20:98:24 | access to parameter other : B | extensions.cs:232:18:232:34 | call to method GenericM2 : B | -| extensions.cs:232:32:232:33 | access to local variable b1 : B | extensions.cs:96:33:96:37 | other : B | extensions.cs:98:20:98:24 | access to parameter other : B | extensions.cs:232:18:232:34 | call to method GenericM2 : B | -| extensions.cs:235:46:235:47 | access to local variable b1 : B | extensions.cs:96:33:96:37 | other : B | extensions.cs:98:20:98:24 | access to parameter other : B | extensions.cs:235:18:235:48 | call to method GenericM2 : B | -| extensions.cs:235:46:235:47 | access to local variable b1 : B | extensions.cs:96:33:96:37 | other : B | extensions.cs:98:20:98:24 | access to parameter other : B | extensions.cs:235:18:235:48 | call to method GenericM2 : B | +| extensions.cs:154:18:154:19 | access to local variable b1 : B | extensions.cs:76:17:76:17 | b : B | extensions.cs:80:20:80:20 | access to extension synthetic parameter b : B | extensions.cs:154:18:154:24 | call to method B1 : B | +| extensions.cs:154:18:154:19 | access to local variable b1 : B | extensions.cs:76:17:76:17 | b : B | extensions.cs:80:20:80:20 | access to extension synthetic parameter b : B | extensions.cs:154:18:154:24 | call to method B1 : B | +| extensions.cs:157:34:157:35 | access to local variable b1 : B | extensions.cs:76:17:76:17 | b : B | extensions.cs:80:20:80:20 | access to extension synthetic parameter b : B | extensions.cs:157:18:157:36 | call to method B1 : B | +| extensions.cs:157:34:157:35 | access to local variable b1 : B | extensions.cs:76:17:76:17 | b : B | extensions.cs:80:20:80:20 | access to extension synthetic parameter b : B | extensions.cs:157:18:157:36 | call to method B1 : B | +| extensions.cs:240:32:240:33 | access to local variable b1 : B | extensions.cs:104:33:104:37 | other : B | extensions.cs:106:20:106:24 | access to parameter other : B | extensions.cs:240:18:240:34 | call to method GenericM2 : B | +| extensions.cs:240:32:240:33 | access to local variable b1 : B | extensions.cs:104:33:104:37 | other : B | extensions.cs:106:20:106:24 | access to parameter other : B | extensions.cs:240:18:240:34 | call to method GenericM2 : B | +| extensions.cs:243:46:243:47 | access to local variable b1 : B | extensions.cs:104:33:104:37 | other : B | extensions.cs:106:20:106:24 | access to parameter other : B | extensions.cs:243:18:243:48 | call to method GenericM2 : B | +| extensions.cs:243:46:243:47 | access to local variable b1 : B | extensions.cs:104:33:104:37 | other : B | extensions.cs:106:20:106:24 | access to parameter other : B | extensions.cs:243:18:243:48 | call to method GenericM2 : B | +| extensions.cs:252:15:252:16 | access to local variable c1 : C [property Prop] : Object | extensions.cs:91:35:91:36 | c1 : C [property Prop] : Object | extensions.cs:89:17:89:17 | c [Return] : C [property Prop] : Object | extensions.cs:252:9:252:10 | [post] access to local variable c2 : C [property Prop] : Object | +| extensions.cs:252:15:252:16 | access to local variable c1 : C [property Prop] : Object | extensions.cs:91:35:91:36 | c1 : C [property Prop] : Object | extensions.cs:89:17:89:17 | c [Return] : C [property Prop] : Object | extensions.cs:252:9:252:10 | [post] access to local variable c2 : C [property Prop] : Object | +| extensions.cs:256:54:256:55 | access to local variable c1 : C [property Prop] : Object | extensions.cs:91:35:91:36 | c1 : C [property Prop] : Object | extensions.cs:89:17:89:17 | c [Return] : C [property Prop] : Object | extensions.cs:256:50:256:51 | [post] access to local variable c3 : C [property Prop] : Object | +| extensions.cs:256:54:256:55 | access to local variable c1 : C [property Prop] : Object | extensions.cs:91:35:91:36 | c1 : C [property Prop] : Object | extensions.cs:89:17:89:17 | c [Return] : C [property Prop] : Object | extensions.cs:256:50:256:51 | [post] access to local variable c3 : C [property Prop] : Object | testFailures #select -| extensions.cs:15:24:15:28 | access to parameter value | extensions.cs:118:21:118:32 | call to method Source : B | extensions.cs:15:24:15:28 | access to parameter value | $@ | extensions.cs:118:21:118:32 | call to method Source : B | call to method Source : B | -| extensions.cs:15:24:15:28 | access to parameter value | extensions.cs:118:21:118:32 | call to method Source : B | extensions.cs:15:24:15:28 | access to parameter value | $@ | extensions.cs:118:21:118:32 | call to method Source : B | call to method Source : B | -| extensions.cs:15:24:15:28 | access to parameter value | extensions.cs:120:17:120:30 | call to method Source : B | extensions.cs:15:24:15:28 | access to parameter value | $@ | extensions.cs:120:17:120:30 | call to method Source : B | call to method Source : B | -| extensions.cs:15:24:15:28 | access to parameter value | extensions.cs:120:17:120:30 | call to method Source : B | extensions.cs:15:24:15:28 | access to parameter value | $@ | extensions.cs:120:17:120:30 | call to method Source : B | call to method Source : B | -| extensions.cs:23:24:23:26 | access to extension synthetic parameter obj | extensions.cs:155:18:155:29 | call to method Source : B | extensions.cs:23:24:23:26 | access to extension synthetic parameter obj | $@ | extensions.cs:155:18:155:29 | call to method Source : B | call to method Source : B | -| extensions.cs:23:24:23:26 | access to extension synthetic parameter obj | extensions.cs:155:18:155:29 | call to method Source : B | extensions.cs:23:24:23:26 | access to extension synthetic parameter obj | $@ | extensions.cs:155:18:155:29 | call to method Source : B | call to method Source : B | -| extensions.cs:23:24:23:26 | access to extension synthetic parameter obj | extensions.cs:158:18:158:31 | call to method Source : B | extensions.cs:23:24:23:26 | access to extension synthetic parameter obj | $@ | extensions.cs:158:18:158:31 | call to method Source : B | call to method Source : B | -| extensions.cs:23:24:23:26 | access to extension synthetic parameter obj | extensions.cs:158:18:158:31 | call to method Source : B | extensions.cs:23:24:23:26 | access to extension synthetic parameter obj | $@ | extensions.cs:158:18:158:31 | call to method Source : B | call to method Source : B | -| extensions.cs:28:24:28:26 | access to extension synthetic parameter obj | extensions.cs:164:18:164:29 | call to method Source : B | extensions.cs:28:24:28:26 | access to extension synthetic parameter obj | $@ | extensions.cs:164:18:164:29 | call to method Source : B | call to method Source : B | -| extensions.cs:28:24:28:26 | access to extension synthetic parameter obj | extensions.cs:164:18:164:29 | call to method Source : B | extensions.cs:28:24:28:26 | access to extension synthetic parameter obj | $@ | extensions.cs:164:18:164:29 | call to method Source : B | call to method Source : B | -| extensions.cs:28:24:28:26 | access to extension synthetic parameter obj | extensions.cs:167:18:167:31 | call to method Source : B | extensions.cs:28:24:28:26 | access to extension synthetic parameter obj | $@ | extensions.cs:167:18:167:31 | call to method Source : B | call to method Source : B | -| extensions.cs:28:24:28:26 | access to extension synthetic parameter obj | extensions.cs:167:18:167:31 | call to method Source : B | extensions.cs:28:24:28:26 | access to extension synthetic parameter obj | $@ | extensions.cs:167:18:167:31 | call to method Source : B | call to method Source : B | -| extensions.cs:40:24:40:28 | access to parameter value | extensions.cs:203:18:203:30 | call to method Source : B | extensions.cs:40:24:40:28 | access to parameter value | $@ | extensions.cs:203:18:203:30 | call to method Source : B | call to method Source : B | -| extensions.cs:40:24:40:28 | access to parameter value | extensions.cs:203:18:203:30 | call to method Source : B | extensions.cs:40:24:40:28 | access to parameter value | $@ | extensions.cs:203:18:203:30 | call to method Source : B | call to method Source : B | -| extensions.cs:40:24:40:28 | access to parameter value | extensions.cs:206:18:206:31 | call to method Source : B | extensions.cs:40:24:40:28 | access to parameter value | $@ | extensions.cs:206:18:206:31 | call to method Source : B | call to method Source : B | -| extensions.cs:40:24:40:28 | access to parameter value | extensions.cs:206:18:206:31 | call to method Source : B | extensions.cs:40:24:40:28 | access to parameter value | $@ | extensions.cs:206:18:206:31 | call to method Source : B | call to method Source : B | -| extensions.cs:51:20:51:22 | access to extension synthetic parameter obj | extensions.cs:136:18:136:29 | call to method Source : B | extensions.cs:51:20:51:22 | access to extension synthetic parameter obj | $@ | extensions.cs:136:18:136:29 | call to method Source : B | call to method Source : B | -| extensions.cs:51:20:51:22 | access to extension synthetic parameter obj | extensions.cs:136:18:136:29 | call to method Source : B | extensions.cs:51:20:51:22 | access to extension synthetic parameter obj | $@ | extensions.cs:136:18:136:29 | call to method Source : B | call to method Source : B | -| extensions.cs:51:20:51:22 | access to extension synthetic parameter obj | extensions.cs:139:18:139:31 | call to method Source : B | extensions.cs:51:20:51:22 | access to extension synthetic parameter obj | $@ | extensions.cs:139:18:139:31 | call to method Source : B | call to method Source : B | -| extensions.cs:51:20:51:22 | access to extension synthetic parameter obj | extensions.cs:139:18:139:31 | call to method Source : B | extensions.cs:51:20:51:22 | access to extension synthetic parameter obj | $@ | extensions.cs:139:18:139:31 | call to method Source : B | call to method Source : B | -| extensions.cs:61:20:61:20 | access to parameter a | extensions.cs:173:18:173:29 | call to method Source : B | extensions.cs:61:20:61:20 | access to parameter a | $@ | extensions.cs:173:18:173:29 | call to method Source : B | call to method Source : B | -| extensions.cs:61:20:61:20 | access to parameter a | extensions.cs:173:18:173:29 | call to method Source : B | extensions.cs:61:20:61:20 | access to parameter a | $@ | extensions.cs:173:18:173:29 | call to method Source : B | call to method Source : B | -| extensions.cs:61:20:61:20 | access to parameter a | extensions.cs:177:18:177:31 | call to method Source : B | extensions.cs:61:20:61:20 | access to parameter a | $@ | extensions.cs:177:18:177:31 | call to method Source : B | call to method Source : B | -| extensions.cs:61:20:61:20 | access to parameter a | extensions.cs:177:18:177:31 | call to method Source : B | extensions.cs:61:20:61:20 | access to parameter a | $@ | extensions.cs:177:18:177:31 | call to method Source : B | call to method Source : B | -| extensions.cs:85:20:85:20 | access to extension synthetic parameter b | extensions.cs:212:18:212:30 | call to method Source : B | extensions.cs:85:20:85:20 | access to extension synthetic parameter b | $@ | extensions.cs:212:18:212:30 | call to method Source : B | call to method Source : B | -| extensions.cs:85:20:85:20 | access to extension synthetic parameter b | extensions.cs:212:18:212:30 | call to method Source : B | extensions.cs:85:20:85:20 | access to extension synthetic parameter b | $@ | extensions.cs:212:18:212:30 | call to method Source : B | call to method Source : B | -| extensions.cs:85:20:85:20 | access to extension synthetic parameter b | extensions.cs:215:18:215:31 | call to method Source : B | extensions.cs:85:20:85:20 | access to extension synthetic parameter b | $@ | extensions.cs:215:18:215:31 | call to method Source : B | call to method Source : B | -| extensions.cs:85:20:85:20 | access to extension synthetic parameter b | extensions.cs:215:18:215:31 | call to method Source : B | extensions.cs:85:20:85:20 | access to extension synthetic parameter b | $@ | extensions.cs:215:18:215:31 | call to method Source : B | call to method Source : B | -| extensions.cs:93:20:93:20 | access to extension synthetic parameter t | extensions.cs:221:18:221:30 | call to method Source : B | extensions.cs:93:20:93:20 | access to extension synthetic parameter t | $@ | extensions.cs:221:18:221:30 | call to method Source : B | call to method Source : B | -| extensions.cs:93:20:93:20 | access to extension synthetic parameter t | extensions.cs:221:18:221:30 | call to method Source : B | extensions.cs:93:20:93:20 | access to extension synthetic parameter t | $@ | extensions.cs:221:18:221:30 | call to method Source : B | call to method Source : B | -| extensions.cs:93:20:93:20 | access to extension synthetic parameter t | extensions.cs:224:18:224:31 | call to method Source : B | extensions.cs:93:20:93:20 | access to extension synthetic parameter t | $@ | extensions.cs:224:18:224:31 | call to method Source : B | call to method Source : B | -| extensions.cs:93:20:93:20 | access to extension synthetic parameter t | extensions.cs:224:18:224:31 | call to method Source : B | extensions.cs:93:20:93:20 | access to extension synthetic parameter t | $@ | extensions.cs:224:18:224:31 | call to method Source : B | call to method Source : B | -| extensions.cs:109:14:109:15 | access to local variable b1 | extensions.cs:11:24:11:37 | call to method Source : B | extensions.cs:109:14:109:15 | access to local variable b1 | $@ | extensions.cs:11:24:11:37 | call to method Source : B | call to method Source : B | -| extensions.cs:109:14:109:15 | access to local variable b1 | extensions.cs:11:24:11:37 | call to method Source : B | extensions.cs:109:14:109:15 | access to local variable b1 | $@ | extensions.cs:11:24:11:37 | call to method Source : B | call to method Source : B | -| extensions.cs:112:14:112:15 | access to local variable b2 | extensions.cs:11:24:11:37 | call to method Source : B | extensions.cs:112:14:112:15 | access to local variable b2 | $@ | extensions.cs:11:24:11:37 | call to method Source : B | call to method Source : B | -| extensions.cs:112:14:112:15 | access to local variable b2 | extensions.cs:11:24:11:37 | call to method Source : B | extensions.cs:112:14:112:15 | access to local variable b2 | $@ | extensions.cs:11:24:11:37 | call to method Source : B | call to method Source : B | -| extensions.cs:128:14:128:15 | access to local variable b1 | extensions.cs:46:20:46:33 | call to method Source : B | extensions.cs:128:14:128:15 | access to local variable b1 | $@ | extensions.cs:46:20:46:33 | call to method Source : B | call to method Source : B | -| extensions.cs:128:14:128:15 | access to local variable b1 | extensions.cs:46:20:46:33 | call to method Source : B | extensions.cs:128:14:128:15 | access to local variable b1 | $@ | extensions.cs:46:20:46:33 | call to method Source : B | call to method Source : B | -| extensions.cs:131:14:131:15 | access to local variable b2 | extensions.cs:46:20:46:33 | call to method Source : B | extensions.cs:131:14:131:15 | access to local variable b2 | $@ | extensions.cs:46:20:46:33 | call to method Source : B | call to method Source : B | -| extensions.cs:131:14:131:15 | access to local variable b2 | extensions.cs:46:20:46:33 | call to method Source : B | extensions.cs:131:14:131:15 | access to local variable b2 | $@ | extensions.cs:46:20:46:33 | call to method Source : B | call to method Source : B | -| extensions.cs:147:14:147:15 | access to local variable b2 | extensions.cs:145:18:145:29 | call to method Source : B | extensions.cs:147:14:147:15 | access to local variable b2 | $@ | extensions.cs:145:18:145:29 | call to method Source : B | call to method Source : B | -| extensions.cs:147:14:147:15 | access to local variable b2 | extensions.cs:145:18:145:29 | call to method Source : B | extensions.cs:147:14:147:15 | access to local variable b2 | $@ | extensions.cs:145:18:145:29 | call to method Source : B | call to method Source : B | -| extensions.cs:150:14:150:15 | access to local variable b3 | extensions.cs:145:18:145:29 | call to method Source : B | extensions.cs:150:14:150:15 | access to local variable b3 | $@ | extensions.cs:145:18:145:29 | call to method Source : B | call to method Source : B | -| extensions.cs:150:14:150:15 | access to local variable b3 | extensions.cs:145:18:145:29 | call to method Source : B | extensions.cs:150:14:150:15 | access to local variable b3 | $@ | extensions.cs:145:18:145:29 | call to method Source : B | call to method Source : B | -| extensions.cs:186:14:186:15 | access to local variable b3 | extensions.cs:67:20:67:33 | call to method Source : B | extensions.cs:186:14:186:15 | access to local variable b3 | $@ | extensions.cs:67:20:67:33 | call to method Source : B | call to method Source : B | -| extensions.cs:186:14:186:15 | access to local variable b3 | extensions.cs:67:20:67:33 | call to method Source : B | extensions.cs:186:14:186:15 | access to local variable b3 | $@ | extensions.cs:67:20:67:33 | call to method Source : B | call to method Source : B | -| extensions.cs:189:14:189:15 | access to local variable b4 | extensions.cs:67:20:67:33 | call to method Source : B | extensions.cs:189:14:189:15 | access to local variable b4 | $@ | extensions.cs:67:20:67:33 | call to method Source : B | call to method Source : B | -| extensions.cs:189:14:189:15 | access to local variable b4 | extensions.cs:67:20:67:33 | call to method Source : B | extensions.cs:189:14:189:15 | access to local variable b4 | $@ | extensions.cs:67:20:67:33 | call to method Source : B | call to method Source : B | -| extensions.cs:195:14:195:15 | access to local variable b1 | extensions.cs:36:24:36:38 | call to method Source : B | extensions.cs:195:14:195:15 | access to local variable b1 | $@ | extensions.cs:36:24:36:38 | call to method Source : B | call to method Source : B | -| extensions.cs:195:14:195:15 | access to local variable b1 | extensions.cs:36:24:36:38 | call to method Source : B | extensions.cs:195:14:195:15 | access to local variable b1 | $@ | extensions.cs:36:24:36:38 | call to method Source : B | call to method Source : B | -| extensions.cs:198:14:198:15 | access to local variable b2 | extensions.cs:36:24:36:38 | call to method Source : B | extensions.cs:198:14:198:15 | access to local variable b2 | $@ | extensions.cs:36:24:36:38 | call to method Source : B | call to method Source : B | -| extensions.cs:198:14:198:15 | access to local variable b2 | extensions.cs:36:24:36:38 | call to method Source : B | extensions.cs:198:14:198:15 | access to local variable b2 | $@ | extensions.cs:36:24:36:38 | call to method Source : B | call to method Source : B | -| extensions.cs:233:14:233:15 | access to local variable b2 | extensions.cs:231:18:231:30 | call to method Source : B | extensions.cs:233:14:233:15 | access to local variable b2 | $@ | extensions.cs:231:18:231:30 | call to method Source : B | call to method Source : B | -| extensions.cs:233:14:233:15 | access to local variable b2 | extensions.cs:231:18:231:30 | call to method Source : B | extensions.cs:233:14:233:15 | access to local variable b2 | $@ | extensions.cs:231:18:231:30 | call to method Source : B | call to method Source : B | -| extensions.cs:236:14:236:15 | access to local variable b3 | extensions.cs:231:18:231:30 | call to method Source : B | extensions.cs:236:14:236:15 | access to local variable b3 | $@ | extensions.cs:231:18:231:30 | call to method Source : B | call to method Source : B | -| extensions.cs:236:14:236:15 | access to local variable b3 | extensions.cs:231:18:231:30 | call to method Source : B | extensions.cs:236:14:236:15 | access to local variable b3 | $@ | extensions.cs:231:18:231:30 | call to method Source : B | call to method Source : B | +| extensions.cs:15:24:15:28 | access to parameter value | extensions.cs:126:21:126:32 | call to method Source : B | extensions.cs:15:24:15:28 | access to parameter value | $@ | extensions.cs:126:21:126:32 | call to method Source : B | call to method Source : B | +| extensions.cs:15:24:15:28 | access to parameter value | extensions.cs:126:21:126:32 | call to method Source : B | extensions.cs:15:24:15:28 | access to parameter value | $@ | extensions.cs:126:21:126:32 | call to method Source : B | call to method Source : B | +| extensions.cs:15:24:15:28 | access to parameter value | extensions.cs:128:17:128:30 | call to method Source : B | extensions.cs:15:24:15:28 | access to parameter value | $@ | extensions.cs:128:17:128:30 | call to method Source : B | call to method Source : B | +| extensions.cs:15:24:15:28 | access to parameter value | extensions.cs:128:17:128:30 | call to method Source : B | extensions.cs:15:24:15:28 | access to parameter value | $@ | extensions.cs:128:17:128:30 | call to method Source : B | call to method Source : B | +| extensions.cs:23:24:23:26 | access to extension synthetic parameter obj | extensions.cs:163:18:163:29 | call to method Source : B | extensions.cs:23:24:23:26 | access to extension synthetic parameter obj | $@ | extensions.cs:163:18:163:29 | call to method Source : B | call to method Source : B | +| extensions.cs:23:24:23:26 | access to extension synthetic parameter obj | extensions.cs:163:18:163:29 | call to method Source : B | extensions.cs:23:24:23:26 | access to extension synthetic parameter obj | $@ | extensions.cs:163:18:163:29 | call to method Source : B | call to method Source : B | +| extensions.cs:23:24:23:26 | access to extension synthetic parameter obj | extensions.cs:166:18:166:31 | call to method Source : B | extensions.cs:23:24:23:26 | access to extension synthetic parameter obj | $@ | extensions.cs:166:18:166:31 | call to method Source : B | call to method Source : B | +| extensions.cs:23:24:23:26 | access to extension synthetic parameter obj | extensions.cs:166:18:166:31 | call to method Source : B | extensions.cs:23:24:23:26 | access to extension synthetic parameter obj | $@ | extensions.cs:166:18:166:31 | call to method Source : B | call to method Source : B | +| extensions.cs:28:24:28:26 | access to extension synthetic parameter obj | extensions.cs:172:18:172:29 | call to method Source : B | extensions.cs:28:24:28:26 | access to extension synthetic parameter obj | $@ | extensions.cs:172:18:172:29 | call to method Source : B | call to method Source : B | +| extensions.cs:28:24:28:26 | access to extension synthetic parameter obj | extensions.cs:172:18:172:29 | call to method Source : B | extensions.cs:28:24:28:26 | access to extension synthetic parameter obj | $@ | extensions.cs:172:18:172:29 | call to method Source : B | call to method Source : B | +| extensions.cs:28:24:28:26 | access to extension synthetic parameter obj | extensions.cs:175:18:175:31 | call to method Source : B | extensions.cs:28:24:28:26 | access to extension synthetic parameter obj | $@ | extensions.cs:175:18:175:31 | call to method Source : B | call to method Source : B | +| extensions.cs:28:24:28:26 | access to extension synthetic parameter obj | extensions.cs:175:18:175:31 | call to method Source : B | extensions.cs:28:24:28:26 | access to extension synthetic parameter obj | $@ | extensions.cs:175:18:175:31 | call to method Source : B | call to method Source : B | +| extensions.cs:40:24:40:28 | access to parameter value | extensions.cs:211:18:211:30 | call to method Source : B | extensions.cs:40:24:40:28 | access to parameter value | $@ | extensions.cs:211:18:211:30 | call to method Source : B | call to method Source : B | +| extensions.cs:40:24:40:28 | access to parameter value | extensions.cs:211:18:211:30 | call to method Source : B | extensions.cs:40:24:40:28 | access to parameter value | $@ | extensions.cs:211:18:211:30 | call to method Source : B | call to method Source : B | +| extensions.cs:40:24:40:28 | access to parameter value | extensions.cs:214:18:214:31 | call to method Source : B | extensions.cs:40:24:40:28 | access to parameter value | $@ | extensions.cs:214:18:214:31 | call to method Source : B | call to method Source : B | +| extensions.cs:40:24:40:28 | access to parameter value | extensions.cs:214:18:214:31 | call to method Source : B | extensions.cs:40:24:40:28 | access to parameter value | $@ | extensions.cs:214:18:214:31 | call to method Source : B | call to method Source : B | +| extensions.cs:51:20:51:22 | access to extension synthetic parameter obj | extensions.cs:144:18:144:29 | call to method Source : B | extensions.cs:51:20:51:22 | access to extension synthetic parameter obj | $@ | extensions.cs:144:18:144:29 | call to method Source : B | call to method Source : B | +| extensions.cs:51:20:51:22 | access to extension synthetic parameter obj | extensions.cs:144:18:144:29 | call to method Source : B | extensions.cs:51:20:51:22 | access to extension synthetic parameter obj | $@ | extensions.cs:144:18:144:29 | call to method Source : B | call to method Source : B | +| extensions.cs:51:20:51:22 | access to extension synthetic parameter obj | extensions.cs:147:18:147:31 | call to method Source : B | extensions.cs:51:20:51:22 | access to extension synthetic parameter obj | $@ | extensions.cs:147:18:147:31 | call to method Source : B | call to method Source : B | +| extensions.cs:51:20:51:22 | access to extension synthetic parameter obj | extensions.cs:147:18:147:31 | call to method Source : B | extensions.cs:51:20:51:22 | access to extension synthetic parameter obj | $@ | extensions.cs:147:18:147:31 | call to method Source : B | call to method Source : B | +| extensions.cs:61:20:61:20 | access to parameter a | extensions.cs:181:18:181:29 | call to method Source : B | extensions.cs:61:20:61:20 | access to parameter a | $@ | extensions.cs:181:18:181:29 | call to method Source : B | call to method Source : B | +| extensions.cs:61:20:61:20 | access to parameter a | extensions.cs:181:18:181:29 | call to method Source : B | extensions.cs:61:20:61:20 | access to parameter a | $@ | extensions.cs:181:18:181:29 | call to method Source : B | call to method Source : B | +| extensions.cs:61:20:61:20 | access to parameter a | extensions.cs:185:18:185:31 | call to method Source : B | extensions.cs:61:20:61:20 | access to parameter a | $@ | extensions.cs:185:18:185:31 | call to method Source : B | call to method Source : B | +| extensions.cs:61:20:61:20 | access to parameter a | extensions.cs:185:18:185:31 | call to method Source : B | extensions.cs:61:20:61:20 | access to parameter a | $@ | extensions.cs:185:18:185:31 | call to method Source : B | call to method Source : B | +| extensions.cs:85:20:85:20 | access to extension synthetic parameter b | extensions.cs:220:18:220:30 | call to method Source : B | extensions.cs:85:20:85:20 | access to extension synthetic parameter b | $@ | extensions.cs:220:18:220:30 | call to method Source : B | call to method Source : B | +| extensions.cs:85:20:85:20 | access to extension synthetic parameter b | extensions.cs:220:18:220:30 | call to method Source : B | extensions.cs:85:20:85:20 | access to extension synthetic parameter b | $@ | extensions.cs:220:18:220:30 | call to method Source : B | call to method Source : B | +| extensions.cs:85:20:85:20 | access to extension synthetic parameter b | extensions.cs:223:18:223:31 | call to method Source : B | extensions.cs:85:20:85:20 | access to extension synthetic parameter b | $@ | extensions.cs:223:18:223:31 | call to method Source : B | call to method Source : B | +| extensions.cs:85:20:85:20 | access to extension synthetic parameter b | extensions.cs:223:18:223:31 | call to method Source : B | extensions.cs:85:20:85:20 | access to extension synthetic parameter b | $@ | extensions.cs:223:18:223:31 | call to method Source : B | call to method Source : B | +| extensions.cs:101:20:101:20 | access to extension synthetic parameter t | extensions.cs:229:18:229:30 | call to method Source : B | extensions.cs:101:20:101:20 | access to extension synthetic parameter t | $@ | extensions.cs:229:18:229:30 | call to method Source : B | call to method Source : B | +| extensions.cs:101:20:101:20 | access to extension synthetic parameter t | extensions.cs:229:18:229:30 | call to method Source : B | extensions.cs:101:20:101:20 | access to extension synthetic parameter t | $@ | extensions.cs:229:18:229:30 | call to method Source : B | call to method Source : B | +| extensions.cs:101:20:101:20 | access to extension synthetic parameter t | extensions.cs:232:18:232:31 | call to method Source : B | extensions.cs:101:20:101:20 | access to extension synthetic parameter t | $@ | extensions.cs:232:18:232:31 | call to method Source : B | call to method Source : B | +| extensions.cs:101:20:101:20 | access to extension synthetic parameter t | extensions.cs:232:18:232:31 | call to method Source : B | extensions.cs:101:20:101:20 | access to extension synthetic parameter t | $@ | extensions.cs:232:18:232:31 | call to method Source : B | call to method Source : B | +| extensions.cs:117:14:117:15 | access to local variable b1 | extensions.cs:11:24:11:37 | call to method Source : B | extensions.cs:117:14:117:15 | access to local variable b1 | $@ | extensions.cs:11:24:11:37 | call to method Source : B | call to method Source : B | +| extensions.cs:117:14:117:15 | access to local variable b1 | extensions.cs:11:24:11:37 | call to method Source : B | extensions.cs:117:14:117:15 | access to local variable b1 | $@ | extensions.cs:11:24:11:37 | call to method Source : B | call to method Source : B | +| extensions.cs:120:14:120:15 | access to local variable b2 | extensions.cs:11:24:11:37 | call to method Source : B | extensions.cs:120:14:120:15 | access to local variable b2 | $@ | extensions.cs:11:24:11:37 | call to method Source : B | call to method Source : B | +| extensions.cs:120:14:120:15 | access to local variable b2 | extensions.cs:11:24:11:37 | call to method Source : B | extensions.cs:120:14:120:15 | access to local variable b2 | $@ | extensions.cs:11:24:11:37 | call to method Source : B | call to method Source : B | +| extensions.cs:136:14:136:15 | access to local variable b1 | extensions.cs:46:20:46:33 | call to method Source : B | extensions.cs:136:14:136:15 | access to local variable b1 | $@ | extensions.cs:46:20:46:33 | call to method Source : B | call to method Source : B | +| extensions.cs:136:14:136:15 | access to local variable b1 | extensions.cs:46:20:46:33 | call to method Source : B | extensions.cs:136:14:136:15 | access to local variable b1 | $@ | extensions.cs:46:20:46:33 | call to method Source : B | call to method Source : B | +| extensions.cs:139:14:139:15 | access to local variable b2 | extensions.cs:46:20:46:33 | call to method Source : B | extensions.cs:139:14:139:15 | access to local variable b2 | $@ | extensions.cs:46:20:46:33 | call to method Source : B | call to method Source : B | +| extensions.cs:139:14:139:15 | access to local variable b2 | extensions.cs:46:20:46:33 | call to method Source : B | extensions.cs:139:14:139:15 | access to local variable b2 | $@ | extensions.cs:46:20:46:33 | call to method Source : B | call to method Source : B | +| extensions.cs:155:14:155:15 | access to local variable b2 | extensions.cs:153:18:153:29 | call to method Source : B | extensions.cs:155:14:155:15 | access to local variable b2 | $@ | extensions.cs:153:18:153:29 | call to method Source : B | call to method Source : B | +| extensions.cs:155:14:155:15 | access to local variable b2 | extensions.cs:153:18:153:29 | call to method Source : B | extensions.cs:155:14:155:15 | access to local variable b2 | $@ | extensions.cs:153:18:153:29 | call to method Source : B | call to method Source : B | +| extensions.cs:158:14:158:15 | access to local variable b3 | extensions.cs:153:18:153:29 | call to method Source : B | extensions.cs:158:14:158:15 | access to local variable b3 | $@ | extensions.cs:153:18:153:29 | call to method Source : B | call to method Source : B | +| extensions.cs:158:14:158:15 | access to local variable b3 | extensions.cs:153:18:153:29 | call to method Source : B | extensions.cs:158:14:158:15 | access to local variable b3 | $@ | extensions.cs:153:18:153:29 | call to method Source : B | call to method Source : B | +| extensions.cs:194:14:194:15 | access to local variable b3 | extensions.cs:67:20:67:33 | call to method Source : B | extensions.cs:194:14:194:15 | access to local variable b3 | $@ | extensions.cs:67:20:67:33 | call to method Source : B | call to method Source : B | +| extensions.cs:194:14:194:15 | access to local variable b3 | extensions.cs:67:20:67:33 | call to method Source : B | extensions.cs:194:14:194:15 | access to local variable b3 | $@ | extensions.cs:67:20:67:33 | call to method Source : B | call to method Source : B | +| extensions.cs:197:14:197:15 | access to local variable b4 | extensions.cs:67:20:67:33 | call to method Source : B | extensions.cs:197:14:197:15 | access to local variable b4 | $@ | extensions.cs:67:20:67:33 | call to method Source : B | call to method Source : B | +| extensions.cs:197:14:197:15 | access to local variable b4 | extensions.cs:67:20:67:33 | call to method Source : B | extensions.cs:197:14:197:15 | access to local variable b4 | $@ | extensions.cs:67:20:67:33 | call to method Source : B | call to method Source : B | +| extensions.cs:203:14:203:15 | access to local variable b1 | extensions.cs:36:24:36:38 | call to method Source : B | extensions.cs:203:14:203:15 | access to local variable b1 | $@ | extensions.cs:36:24:36:38 | call to method Source : B | call to method Source : B | +| extensions.cs:203:14:203:15 | access to local variable b1 | extensions.cs:36:24:36:38 | call to method Source : B | extensions.cs:203:14:203:15 | access to local variable b1 | $@ | extensions.cs:36:24:36:38 | call to method Source : B | call to method Source : B | +| extensions.cs:206:14:206:15 | access to local variable b2 | extensions.cs:36:24:36:38 | call to method Source : B | extensions.cs:206:14:206:15 | access to local variable b2 | $@ | extensions.cs:36:24:36:38 | call to method Source : B | call to method Source : B | +| extensions.cs:206:14:206:15 | access to local variable b2 | extensions.cs:36:24:36:38 | call to method Source : B | extensions.cs:206:14:206:15 | access to local variable b2 | $@ | extensions.cs:36:24:36:38 | call to method Source : B | call to method Source : B | +| extensions.cs:241:14:241:15 | access to local variable b2 | extensions.cs:239:18:239:30 | call to method Source : B | extensions.cs:241:14:241:15 | access to local variable b2 | $@ | extensions.cs:239:18:239:30 | call to method Source : B | call to method Source : B | +| extensions.cs:241:14:241:15 | access to local variable b2 | extensions.cs:239:18:239:30 | call to method Source : B | extensions.cs:241:14:241:15 | access to local variable b2 | $@ | extensions.cs:239:18:239:30 | call to method Source : B | call to method Source : B | +| extensions.cs:244:14:244:15 | access to local variable b3 | extensions.cs:239:18:239:30 | call to method Source : B | extensions.cs:244:14:244:15 | access to local variable b3 | $@ | extensions.cs:239:18:239:30 | call to method Source : B | call to method Source : B | +| extensions.cs:244:14:244:15 | access to local variable b3 | extensions.cs:239:18:239:30 | call to method Source : B | extensions.cs:244:14:244:15 | access to local variable b3 | $@ | extensions.cs:239:18:239:30 | call to method Source : B | call to method Source : B | +| extensions.cs:253:14:253:20 | access to property Prop | extensions.cs:250:19:250:36 | call to method Source : Object | extensions.cs:253:14:253:20 | access to property Prop | $@ | extensions.cs:250:19:250:36 | call to method Source : Object | call to method Source : Object | +| extensions.cs:253:14:253:20 | access to property Prop | extensions.cs:250:19:250:36 | call to method Source : Object | extensions.cs:253:14:253:20 | access to property Prop | $@ | extensions.cs:250:19:250:36 | call to method Source : Object | call to method Source : Object | +| extensions.cs:257:14:257:20 | access to property Prop | extensions.cs:250:19:250:36 | call to method Source : Object | extensions.cs:257:14:257:20 | access to property Prop | $@ | extensions.cs:250:19:250:36 | call to method Source : Object | call to method Source : Object | +| extensions.cs:257:14:257:20 | access to property Prop | extensions.cs:250:19:250:36 | call to method Source : Object | extensions.cs:257:14:257:20 | access to property Prop | $@ | extensions.cs:250:19:250:36 | call to method Source : Object | call to method Source : Object | diff --git a/csharp/ql/test/library-tests/dataflow/extensions/extensions.cs b/csharp/ql/test/library-tests/dataflow/extensions/extensions.cs index 0e1c2226683d..cf4f9acb1b5b 100644 --- a/csharp/ql/test/library-tests/dataflow/extensions/extensions.cs +++ b/csharp/ql/test/library-tests/dataflow/extensions/extensions.cs @@ -86,6 +86,14 @@ public void B2() } } + extension(C c) + { + public void operator *=(C c1) + { + c.Prop = c1.Prop; + } + } + extension(T t) where T : class { public void GenericM1() @@ -236,8 +244,26 @@ public void Test14() Sink(b3); // $ hasValueFlow=14 } + public void Test15() + { + var c1 = new C(); + c1.Prop = Source(15); + var c2 = new C(); + c2 *= c1; + Sink(c2.Prop); // $ hasValueFlow=15 + + var c3 = new C(); + MyExtensions.op_MultiplicationAssignment(c3, c1); + Sink(c3.Prop); // $ hasValueFlow=15 + } + public static T Source(object source) => throw null; public static void Sink(object o) { } } public class B { } + +public class C +{ + public object Prop { get; set; } +} diff --git a/csharp/ql/test/library-tests/dataflow/operators/Operator.cs b/csharp/ql/test/library-tests/dataflow/operators/Operator.cs index 946a3b676cf9..5db1a82b9a4b 100644 --- a/csharp/ql/test/library-tests/dataflow/operators/Operator.cs +++ b/csharp/ql/test/library-tests/dataflow/operators/Operator.cs @@ -84,4 +84,39 @@ public void M6() var y = Source(12); M6Aux(x, y); } -} \ No newline at end of file +} + +public class CompoundAssignmentOperators +{ + static void Sink(object o) { } + static T Source(object source) => throw null; + + public class C + { + public object Field { get; private set; } + + public C() + { + Field = new object(); + } + + public C(object o) + { + Field = o; + } + + public void operator +=(C x) + { + Field = x.Field; + } + } + + public void M1() + { + var tainted = Source(1); + var x = new C(); + var y = new C(tainted); + x += y; + Sink(x.Field); // $ hasValueFlow=1 + } +} diff --git a/csharp/ql/test/library-tests/dataflow/operators/operatorFlow.expected b/csharp/ql/test/library-tests/dataflow/operators/operatorFlow.expected index f395930fb8b2..8fd12f1c2a8f 100644 --- a/csharp/ql/test/library-tests/dataflow/operators/operatorFlow.expected +++ b/csharp/ql/test/library-tests/dataflow/operators/operatorFlow.expected @@ -96,6 +96,40 @@ edges | Operator.cs:84:17:84:29 | call to method Source : C | Operator.cs:84:13:84:13 | access to local variable y : C | provenance | | | Operator.cs:85:18:85:18 | access to local variable y : C | Operator.cs:75:33:75:33 | y : C | provenance | | | Operator.cs:85:18:85:18 | access to local variable y : C | Operator.cs:75:33:75:33 | y : C | provenance | | +| Operator.cs:103:25:103:25 | o : Object | Operator.cs:105:21:105:21 | access to parameter o : Object | provenance | | +| Operator.cs:103:25:103:25 | o : Object | Operator.cs:105:21:105:21 | access to parameter o : Object | provenance | | +| Operator.cs:105:13:105:17 | [post] this access : C [property Field] : Object | Operator.cs:103:16:103:16 | this [Return] : C [property Field] : Object | provenance | | +| Operator.cs:105:13:105:17 | [post] this access : C [property Field] : Object | Operator.cs:103:16:103:16 | this [Return] : C [property Field] : Object | provenance | | +| Operator.cs:105:21:105:21 | access to parameter o : Object | Operator.cs:105:13:105:17 | [post] this access : C [property Field] : Object | provenance | | +| Operator.cs:105:21:105:21 | access to parameter o : Object | Operator.cs:105:13:105:17 | [post] this access : C [property Field] : Object | provenance | | +| Operator.cs:108:35:108:35 | x : C [property Field] : Object | Operator.cs:110:21:110:21 | access to parameter x : C [property Field] : Object | provenance | | +| Operator.cs:108:35:108:35 | x : C [property Field] : Object | Operator.cs:110:21:110:21 | access to parameter x : C [property Field] : Object | provenance | | +| Operator.cs:110:13:110:17 | [post] this access : C [property Field] : Object | Operator.cs:108:30:108:31 | this [Return] : C [property Field] : Object | provenance | | +| Operator.cs:110:13:110:17 | [post] this access : C [property Field] : Object | Operator.cs:108:30:108:31 | this [Return] : C [property Field] : Object | provenance | | +| Operator.cs:110:21:110:21 | access to parameter x : C [property Field] : Object | Operator.cs:110:21:110:27 | access to property Field : Object | provenance | | +| Operator.cs:110:21:110:21 | access to parameter x : C [property Field] : Object | Operator.cs:110:21:110:27 | access to property Field : Object | provenance | | +| Operator.cs:110:21:110:27 | access to property Field : Object | Operator.cs:110:13:110:17 | [post] this access : C [property Field] : Object | provenance | | +| Operator.cs:110:21:110:27 | access to property Field : Object | Operator.cs:110:13:110:17 | [post] this access : C [property Field] : Object | provenance | | +| Operator.cs:116:13:116:19 | access to local variable tainted : Object | Operator.cs:118:23:118:29 | access to local variable tainted : Object | provenance | | +| Operator.cs:116:13:116:19 | access to local variable tainted : Object | Operator.cs:118:23:118:29 | access to local variable tainted : Object | provenance | | +| Operator.cs:116:23:116:39 | call to method Source : Object | Operator.cs:116:13:116:19 | access to local variable tainted : Object | provenance | | +| Operator.cs:116:23:116:39 | call to method Source : Object | Operator.cs:116:13:116:19 | access to local variable tainted : Object | provenance | | +| Operator.cs:118:13:118:13 | access to local variable y : C [property Field] : Object | Operator.cs:119:14:119:14 | access to local variable y : C [property Field] : Object | provenance | | +| Operator.cs:118:13:118:13 | access to local variable y : C [property Field] : Object | Operator.cs:119:14:119:14 | access to local variable y : C [property Field] : Object | provenance | | +| Operator.cs:118:17:118:30 | object creation of type C : C [property Field] : Object | Operator.cs:118:13:118:13 | access to local variable y : C [property Field] : Object | provenance | | +| Operator.cs:118:17:118:30 | object creation of type C : C [property Field] : Object | Operator.cs:118:13:118:13 | access to local variable y : C [property Field] : Object | provenance | | +| Operator.cs:118:23:118:29 | access to local variable tainted : Object | Operator.cs:103:25:103:25 | o : Object | provenance | | +| Operator.cs:118:23:118:29 | access to local variable tainted : Object | Operator.cs:103:25:103:25 | o : Object | provenance | | +| Operator.cs:118:23:118:29 | access to local variable tainted : Object | Operator.cs:118:17:118:30 | object creation of type C : C [property Field] : Object | provenance | | +| Operator.cs:118:23:118:29 | access to local variable tainted : Object | Operator.cs:118:17:118:30 | object creation of type C : C [property Field] : Object | provenance | | +| Operator.cs:119:9:119:9 | [post] access to local variable x : C [property Field] : Object | Operator.cs:120:14:120:14 | access to local variable x : C [property Field] : Object | provenance | | +| Operator.cs:119:9:119:9 | [post] access to local variable x : C [property Field] : Object | Operator.cs:120:14:120:14 | access to local variable x : C [property Field] : Object | provenance | | +| Operator.cs:119:14:119:14 | access to local variable y : C [property Field] : Object | Operator.cs:108:35:108:35 | x : C [property Field] : Object | provenance | | +| Operator.cs:119:14:119:14 | access to local variable y : C [property Field] : Object | Operator.cs:108:35:108:35 | x : C [property Field] : Object | provenance | | +| Operator.cs:119:14:119:14 | access to local variable y : C [property Field] : Object | Operator.cs:119:9:119:9 | [post] access to local variable x : C [property Field] : Object | provenance | | +| Operator.cs:119:14:119:14 | access to local variable y : C [property Field] : Object | Operator.cs:119:9:119:9 | [post] access to local variable x : C [property Field] : Object | provenance | | +| Operator.cs:120:14:120:14 | access to local variable x : C [property Field] : Object | Operator.cs:120:14:120:20 | access to property Field | provenance | | +| Operator.cs:120:14:120:14 | access to local variable x : C [property Field] : Object | Operator.cs:120:14:120:20 | access to property Field | provenance | | nodes | Operator.cs:9:39:9:39 | x : C | semmle.label | x : C | | Operator.cs:9:39:9:39 | x : C | semmle.label | x : C | @@ -205,6 +239,42 @@ nodes | Operator.cs:84:17:84:29 | call to method Source : C | semmle.label | call to method Source : C | | Operator.cs:85:18:85:18 | access to local variable y : C | semmle.label | access to local variable y : C | | Operator.cs:85:18:85:18 | access to local variable y : C | semmle.label | access to local variable y : C | +| Operator.cs:103:16:103:16 | this [Return] : C [property Field] : Object | semmle.label | this [Return] : C [property Field] : Object | +| Operator.cs:103:16:103:16 | this [Return] : C [property Field] : Object | semmle.label | this [Return] : C [property Field] : Object | +| Operator.cs:103:25:103:25 | o : Object | semmle.label | o : Object | +| Operator.cs:103:25:103:25 | o : Object | semmle.label | o : Object | +| Operator.cs:105:13:105:17 | [post] this access : C [property Field] : Object | semmle.label | [post] this access : C [property Field] : Object | +| Operator.cs:105:13:105:17 | [post] this access : C [property Field] : Object | semmle.label | [post] this access : C [property Field] : Object | +| Operator.cs:105:21:105:21 | access to parameter o : Object | semmle.label | access to parameter o : Object | +| Operator.cs:105:21:105:21 | access to parameter o : Object | semmle.label | access to parameter o : Object | +| Operator.cs:108:30:108:31 | this [Return] : C [property Field] : Object | semmle.label | this [Return] : C [property Field] : Object | +| Operator.cs:108:30:108:31 | this [Return] : C [property Field] : Object | semmle.label | this [Return] : C [property Field] : Object | +| Operator.cs:108:35:108:35 | x : C [property Field] : Object | semmle.label | x : C [property Field] : Object | +| Operator.cs:108:35:108:35 | x : C [property Field] : Object | semmle.label | x : C [property Field] : Object | +| Operator.cs:110:13:110:17 | [post] this access : C [property Field] : Object | semmle.label | [post] this access : C [property Field] : Object | +| Operator.cs:110:13:110:17 | [post] this access : C [property Field] : Object | semmle.label | [post] this access : C [property Field] : Object | +| Operator.cs:110:21:110:21 | access to parameter x : C [property Field] : Object | semmle.label | access to parameter x : C [property Field] : Object | +| Operator.cs:110:21:110:21 | access to parameter x : C [property Field] : Object | semmle.label | access to parameter x : C [property Field] : Object | +| Operator.cs:110:21:110:27 | access to property Field : Object | semmle.label | access to property Field : Object | +| Operator.cs:110:21:110:27 | access to property Field : Object | semmle.label | access to property Field : Object | +| Operator.cs:116:13:116:19 | access to local variable tainted : Object | semmle.label | access to local variable tainted : Object | +| Operator.cs:116:13:116:19 | access to local variable tainted : Object | semmle.label | access to local variable tainted : Object | +| Operator.cs:116:23:116:39 | call to method Source : Object | semmle.label | call to method Source : Object | +| Operator.cs:116:23:116:39 | call to method Source : Object | semmle.label | call to method Source : Object | +| Operator.cs:118:13:118:13 | access to local variable y : C [property Field] : Object | semmle.label | access to local variable y : C [property Field] : Object | +| Operator.cs:118:13:118:13 | access to local variable y : C [property Field] : Object | semmle.label | access to local variable y : C [property Field] : Object | +| Operator.cs:118:17:118:30 | object creation of type C : C [property Field] : Object | semmle.label | object creation of type C : C [property Field] : Object | +| Operator.cs:118:17:118:30 | object creation of type C : C [property Field] : Object | semmle.label | object creation of type C : C [property Field] : Object | +| Operator.cs:118:23:118:29 | access to local variable tainted : Object | semmle.label | access to local variable tainted : Object | +| Operator.cs:118:23:118:29 | access to local variable tainted : Object | semmle.label | access to local variable tainted : Object | +| Operator.cs:119:9:119:9 | [post] access to local variable x : C [property Field] : Object | semmle.label | [post] access to local variable x : C [property Field] : Object | +| Operator.cs:119:9:119:9 | [post] access to local variable x : C [property Field] : Object | semmle.label | [post] access to local variable x : C [property Field] : Object | +| Operator.cs:119:14:119:14 | access to local variable y : C [property Field] : Object | semmle.label | access to local variable y : C [property Field] : Object | +| Operator.cs:119:14:119:14 | access to local variable y : C [property Field] : Object | semmle.label | access to local variable y : C [property Field] : Object | +| Operator.cs:120:14:120:14 | access to local variable x : C [property Field] : Object | semmle.label | access to local variable x : C [property Field] : Object | +| Operator.cs:120:14:120:14 | access to local variable x : C [property Field] : Object | semmle.label | access to local variable x : C [property Field] : Object | +| Operator.cs:120:14:120:20 | access to property Field | semmle.label | access to property Field | +| Operator.cs:120:14:120:20 | access to property Field | semmle.label | access to property Field | subpaths | Operator.cs:29:17:29:17 | access to local variable x : C | Operator.cs:16:38:16:38 | x : C | Operator.cs:16:49:16:49 | access to parameter x : C | Operator.cs:29:17:29:21 | call to operator + : C | | Operator.cs:29:17:29:17 | access to local variable x : C | Operator.cs:16:38:16:38 | x : C | Operator.cs:16:49:16:49 | access to parameter x : C | Operator.cs:29:17:29:21 | call to operator + : C | @@ -218,6 +288,10 @@ subpaths | Operator.cs:64:21:64:21 | access to parameter y : C | Operator.cs:21:43:21:43 | y : C | Operator.cs:21:49:21:49 | access to parameter y : C | Operator.cs:64:17:64:21 | call to operator / : C | | Operator.cs:77:29:77:29 | access to parameter y : C | Operator.cs:22:51:22:51 | y : C | Operator.cs:22:57:22:57 | access to parameter y : C | Operator.cs:77:25:77:29 | call to operator checked / : C | | Operator.cs:77:29:77:29 | access to parameter y : C | Operator.cs:22:51:22:51 | y : C | Operator.cs:22:57:22:57 | access to parameter y : C | Operator.cs:77:25:77:29 | call to operator checked / : C | +| Operator.cs:118:23:118:29 | access to local variable tainted : Object | Operator.cs:103:25:103:25 | o : Object | Operator.cs:103:16:103:16 | this [Return] : C [property Field] : Object | Operator.cs:118:17:118:30 | object creation of type C : C [property Field] : Object | +| Operator.cs:118:23:118:29 | access to local variable tainted : Object | Operator.cs:103:25:103:25 | o : Object | Operator.cs:103:16:103:16 | this [Return] : C [property Field] : Object | Operator.cs:118:17:118:30 | object creation of type C : C [property Field] : Object | +| Operator.cs:119:14:119:14 | access to local variable y : C [property Field] : Object | Operator.cs:108:35:108:35 | x : C [property Field] : Object | Operator.cs:108:30:108:31 | this [Return] : C [property Field] : Object | Operator.cs:119:9:119:9 | [post] access to local variable x : C [property Field] : Object | +| Operator.cs:119:14:119:14 | access to local variable y : C [property Field] : Object | Operator.cs:108:35:108:35 | x : C [property Field] : Object | Operator.cs:108:30:108:31 | this [Return] : C [property Field] : Object | Operator.cs:119:9:119:9 | [post] access to local variable x : C [property Field] : Object | testFailures #select | Operator.cs:30:14:30:14 | access to local variable z | Operator.cs:27:17:27:28 | call to method Source : C | Operator.cs:30:14:30:14 | access to local variable z | $@ | Operator.cs:27:17:27:28 | call to method Source : C | call to method Source : C | @@ -232,3 +306,5 @@ testFailures | Operator.cs:65:14:65:14 | (...) ... | Operator.cs:71:17:71:29 | call to method Source : C | Operator.cs:65:14:65:14 | (...) ... | $@ | Operator.cs:71:17:71:29 | call to method Source : C | call to method Source : C | | Operator.cs:78:14:78:14 | (...) ... | Operator.cs:84:17:84:29 | call to method Source : C | Operator.cs:78:14:78:14 | (...) ... | $@ | Operator.cs:84:17:84:29 | call to method Source : C | call to method Source : C | | Operator.cs:78:14:78:14 | (...) ... | Operator.cs:84:17:84:29 | call to method Source : C | Operator.cs:78:14:78:14 | (...) ... | $@ | Operator.cs:84:17:84:29 | call to method Source : C | call to method Source : C | +| Operator.cs:120:14:120:20 | access to property Field | Operator.cs:116:23:116:39 | call to method Source : Object | Operator.cs:120:14:120:20 | access to property Field | $@ | Operator.cs:116:23:116:39 | call to method Source : Object | call to method Source : Object | +| Operator.cs:120:14:120:20 | access to property Field | Operator.cs:116:23:116:39 | call to method Source : Object | Operator.cs:120:14:120:20 | access to property Field | $@ | Operator.cs:116:23:116:39 | call to method Source : Object | call to method Source : Object | diff --git a/csharp/ql/test/library-tests/operators/Operators1.expected b/csharp/ql/test/library-tests/operators/Operators1.expected index 9a819a46f503..7ec4fe268b46 100644 --- a/csharp/ql/test/library-tests/operators/Operators1.expected +++ b/csharp/ql/test/library-tests/operators/Operators1.expected @@ -1 +1 @@ -| operators.cs:16:42:16:43 | ++ | operators.cs:7:18:7:26 | IntVector | +| operators.cs:15:42:15:43 | ++ | operators.cs:7:18:7:26 | IntVector | diff --git a/csharp/ql/test/library-tests/operators/Operators2.expected b/csharp/ql/test/library-tests/operators/Operators2.expected index 9a819a46f503..7ec4fe268b46 100644 --- a/csharp/ql/test/library-tests/operators/Operators2.expected +++ b/csharp/ql/test/library-tests/operators/Operators2.expected @@ -1 +1 @@ -| operators.cs:16:42:16:43 | ++ | operators.cs:7:18:7:26 | IntVector | +| operators.cs:15:42:15:43 | ++ | operators.cs:7:18:7:26 | IntVector | diff --git a/csharp/ql/test/library-tests/operators/Operators3.expected b/csharp/ql/test/library-tests/operators/Operators3.expected index cc0d4b646fca..e81aec79ba19 100644 --- a/csharp/ql/test/library-tests/operators/Operators3.expected +++ b/csharp/ql/test/library-tests/operators/Operators3.expected @@ -1 +1 @@ -| operators.cs:51:32:51:39 | implicit conversion | +| operators.cs:96:32:96:39 | implicit conversion | diff --git a/csharp/ql/test/library-tests/operators/Operators4.expected b/csharp/ql/test/library-tests/operators/Operators4.expected index 3cc82aeb9280..49db993c093d 100644 --- a/csharp/ql/test/library-tests/operators/Operators4.expected +++ b/csharp/ql/test/library-tests/operators/Operators4.expected @@ -1 +1 @@ -| operators.cs:56:32:56:39 | explicit conversion | +| operators.cs:101:32:101:39 | explicit conversion | diff --git a/csharp/ql/test/library-tests/operators/Operators5.expected b/csharp/ql/test/library-tests/operators/Operators5.expected new file mode 100644 index 000000000000..8e506e5119df --- /dev/null +++ b/csharp/ql/test/library-tests/operators/Operators5.expected @@ -0,0 +1,15 @@ +| operators.cs:23:30:23:31 | += | operators.cs:61:13:61:22 | ... += ... | +| operators.cs:31:38:31:39 | checked += | operators.cs:77:17:77:26 | ... += ... | +| operators.cs:33:38:33:39 | checked -= | operators.cs:78:17:78:26 | ... -= ... | +| operators.cs:34:30:34:31 | -= | operators.cs:64:13:64:22 | ... -= ... | +| operators.cs:36:38:36:39 | checked *= | operators.cs:79:17:79:26 | ... *= ... | +| operators.cs:37:30:37:31 | *= | operators.cs:65:13:65:22 | ... *= ... | +| operators.cs:39:38:39:39 | checked /= | operators.cs:80:17:80:26 | ... /= ... | +| operators.cs:40:30:40:31 | /= | operators.cs:66:13:66:22 | ... /= ... | +| operators.cs:42:30:42:31 | %= | operators.cs:67:13:67:22 | ... %= ... | +| operators.cs:43:30:43:31 | &= | operators.cs:68:13:68:22 | ... &= ... | +| operators.cs:44:30:44:31 | \|= | operators.cs:69:13:69:22 | ... \|= ... | +| operators.cs:45:30:45:31 | ^= | operators.cs:70:13:70:22 | ... ^= ... | +| operators.cs:46:30:46:32 | <<= | operators.cs:71:13:71:23 | ... <<= ... | +| operators.cs:47:30:47:32 | >>= | operators.cs:72:13:72:23 | ... >>= ... | +| operators.cs:48:30:48:33 | >>>= | operators.cs:73:13:73:24 | ... >>>= ... | diff --git a/csharp/ql/test/library-tests/operators/Operators5.ql b/csharp/ql/test/library-tests/operators/Operators5.ql new file mode 100644 index 000000000000..b22a342dd1f3 --- /dev/null +++ b/csharp/ql/test/library-tests/operators/Operators5.ql @@ -0,0 +1,9 @@ +/** + * @name Test for operators + */ + +import csharp + +from CompoundAssignmentOperator cao, CompoundAssignmentOperatorCall call +where call.getTarget() = cao +select cao, call diff --git a/csharp/ql/test/library-tests/operators/PrintAst.expected b/csharp/ql/test/library-tests/operators/PrintAst.expected index d3b41fe05fb7..8ea38d79b148 100644 --- a/csharp/ql/test/library-tests/operators/PrintAst.expected +++ b/csharp/ql/test/library-tests/operators/PrintAst.expected @@ -1,154 +1,339 @@ operators.cs: # 5| [NamespaceDeclaration] namespace ... { ... } # 7| 1: [Class] IntVector -# 10| 5: [InstanceConstructor] IntVector -#-----| 2: (Parameters) -# 10| 0: [Parameter] length -# 10| -1: [TypeMention] int -# 10| 4: [BlockStmt] {...} -# 12| 6: [Property] Length -# 12| -1: [TypeMention] int -# 12| 3: [Getter] get_Length -# 12| 4: [BlockStmt] {...} -# 12| 0: [ReturnStmt] return ...; -# 12| 0: [IntLiteral] 4 -# 14| 7: [Indexer] Item -# 14| -1: [TypeMention] int +# 9| 5: [InstanceConstructor] IntVector +#-----| 2: (Parameters) +# 9| 0: [Parameter] length +# 9| -1: [TypeMention] int +# 9| 4: [BlockStmt] {...} +# 11| 6: [Property] Length +# 11| -1: [TypeMention] int +# 11| 3: [Getter] get_Length +# 11| 4: [BlockStmt] {...} +# 11| 0: [ReturnStmt] return ...; +# 11| 0: [IntLiteral] 4 +# 13| 7: [Indexer] Item +# 13| -1: [TypeMention] int #-----| 1: (Parameters) -# 14| 0: [Parameter] index -# 14| -1: [TypeMention] int -# 14| 3: [Getter] get_Item +# 13| 0: [Parameter] index +# 13| -1: [TypeMention] int +# 13| 3: [Getter] get_Item #-----| 2: (Parameters) -# 14| 0: [Parameter] index -# 14| 4: [BlockStmt] {...} -# 14| 0: [ReturnStmt] return ...; -# 14| 0: [IntLiteral] 0 -# 14| 4: [Setter] set_Item +# 13| 0: [Parameter] index +# 13| 4: [BlockStmt] {...} +# 13| 0: [ReturnStmt] return ...; +# 13| 0: [IntLiteral] 0 +# 13| 4: [Setter] set_Item #-----| 2: (Parameters) -# 14| 0: [Parameter] index -# 14| 1: [Parameter] value -# 14| 4: [BlockStmt] {...} -# 16| 8: [IncrementOperator] ++ -# 16| -1: [TypeMention] IntVector -#-----| 2: (Parameters) -# 16| 0: [Parameter] iv -# 16| -1: [TypeMention] IntVector -# 17| 4: [BlockStmt] {...} -# 18| 0: [LocalVariableDeclStmt] ... ...; -# 18| 0: [LocalVariableDeclAndInitExpr] IntVector temp = ... -# 18| -1: [TypeMention] IntVector -# 18| 0: [LocalVariableAccess] access to local variable temp -# 18| 1: [ObjectCreation] object creation of type IntVector -# 18| -1: [TypeMention] IntVector -# 18| 0: [PropertyCall] access to property Length -# 18| -1: [ParameterAccess] access to parameter iv -# 19| 1: [ForStmt] for (...;...;...) ... -# 19| -1: [LocalVariableDeclAndInitExpr] Int32 i = ... -# 19| -1: [TypeMention] int -# 19| 0: [LocalVariableAccess] access to local variable i -# 19| 1: [IntLiteral] 0 -# 19| 0: [LTExpr] ... < ... -# 19| 0: [LocalVariableAccess] access to local variable i -# 19| 1: [PropertyCall] access to property Length -# 19| -1: [ParameterAccess] access to parameter iv -# 19| 1: [PostIncrExpr] ...++ -# 19| 0: [LocalVariableAccess] access to local variable i -# 20| 2: [ExprStmt] ...; -# 20| 0: [AssignExpr] ... = ... -# 20| 0: [IndexerCall] access to indexer -# 20| -1: [LocalVariableAccess] access to local variable temp -# 20| 0: [LocalVariableAccess] access to local variable i -# 20| 1: [AddExpr] ... + ... -# 20| 0: [IndexerCall] access to indexer -# 20| -1: [ParameterAccess] access to parameter iv -# 20| 0: [LocalVariableAccess] access to local variable i -# 20| 1: [IntLiteral] 1 -# 21| 2: [ReturnStmt] return ...; -# 21| 0: [LocalVariableAccess] access to local variable temp -# 26| 2: [Class] TestUnaryOperator -# 29| 6: [Method] Main -# 29| -1: [TypeMention] Void -# 30| 4: [BlockStmt] {...} -# 31| 0: [LocalVariableDeclStmt] ... ...; -# 31| 0: [LocalVariableDeclAndInitExpr] IntVector iv1 = ... -# 31| -1: [TypeMention] IntVector -# 31| 0: [LocalVariableAccess] access to local variable iv1 -# 31| 1: [ObjectCreation] object creation of type IntVector -# 31| -1: [TypeMention] IntVector -# 31| 0: [IntLiteral] 4 -# 32| 1: [LocalVariableDeclStmt] ... ...; -# 32| 0: [LocalVariableDeclExpr] IntVector iv2 -# 32| 0: [TypeMention] IntVector -# 33| 2: [ExprStmt] ...; -# 33| 0: [AssignExpr] ... = ... -# 33| 0: [LocalVariableAccess] access to local variable iv2 -# 33| 1: [OperatorCall] call to operator ++ -# 33| 0: [LocalVariableAccess] access to local variable iv1 -# 34| 3: [ExprStmt] ...; -# 34| 0: [AssignExpr] ... = ... -# 34| 0: [LocalVariableAccess] access to local variable iv2 -# 34| 1: [OperatorCall] call to operator ++ -# 34| 0: [LocalVariableAccess] access to local variable iv1 -# 39| 3: [Struct] Digit -# 42| 6: [Field] value -# 42| -1: [TypeMention] byte -# 44| 7: [InstanceConstructor] Digit -#-----| 2: (Parameters) -# 44| 0: [Parameter] value -# 44| -1: [TypeMention] byte +# 13| 0: [Parameter] index +# 13| 1: [Parameter] value +# 13| 4: [BlockStmt] {...} +# 15| 8: [IncrementOperator] ++ +# 15| -1: [TypeMention] IntVector +#-----| 2: (Parameters) +# 15| 0: [Parameter] iv +# 15| -1: [TypeMention] IntVector +# 16| 4: [BlockStmt] {...} +# 17| 0: [LocalVariableDeclStmt] ... ...; +# 17| 0: [LocalVariableDeclAndInitExpr] IntVector temp = ... +# 17| -1: [TypeMention] IntVector +# 17| 0: [LocalVariableAccess] access to local variable temp +# 17| 1: [ObjectCreation] object creation of type IntVector +# 17| -1: [TypeMention] IntVector +# 17| 0: [PropertyCall] access to property Length +# 17| -1: [ParameterAccess] access to parameter iv +# 18| 1: [ForStmt] for (...;...;...) ... +# 18| -1: [LocalVariableDeclAndInitExpr] Int32 i = ... +# 18| -1: [TypeMention] int +# 18| 0: [LocalVariableAccess] access to local variable i +# 18| 1: [IntLiteral] 0 +# 18| 0: [LTExpr] ... < ... +# 18| 0: [LocalVariableAccess] access to local variable i +# 18| 1: [PropertyCall] access to property Length +# 18| -1: [ParameterAccess] access to parameter iv +# 18| 1: [PostIncrExpr] ...++ +# 18| 0: [LocalVariableAccess] access to local variable i +# 19| 2: [ExprStmt] ...; +# 19| 0: [AssignExpr] ... = ... +# 19| 0: [IndexerCall] access to indexer +# 19| -1: [LocalVariableAccess] access to local variable temp +# 19| 0: [LocalVariableAccess] access to local variable i +# 19| 1: [AddExpr] ... + ... +# 19| 0: [IndexerCall] access to indexer +# 19| -1: [ParameterAccess] access to parameter iv +# 19| 0: [LocalVariableAccess] access to local variable i +# 19| 1: [IntLiteral] 1 +# 20| 2: [ReturnStmt] return ...; +# 20| 0: [LocalVariableAccess] access to local variable temp +# 23| 9: [AddCompoundAssignmentOperator] += +# 23| -1: [TypeMention] Void +#-----| 2: (Parameters) +# 23| 0: [Parameter] n +# 23| -1: [TypeMention] IntVector +# 24| 4: [BlockStmt] {...} +# 25| 0: [IfStmt] if (...) ... +# 25| 0: [NEExpr] ... != ... +# 25| 0: [PropertyCall] access to property Length +# 25| -1: [ParameterAccess] access to parameter n +# 25| 1: [PropertyCall] access to property Length +# 26| 1: [ThrowStmt] throw ...; +# 26| 0: [ObjectCreation] object creation of type ArgumentException +# 26| 0: [TypeMention] ArgumentException +# 27| 1: [ForStmt] for (...;...;...) ... +# 27| -1: [LocalVariableDeclAndInitExpr] Int32 i = ... +# 27| -1: [TypeMention] int +# 27| 0: [LocalVariableAccess] access to local variable i +# 27| 1: [IntLiteral] 0 +# 27| 0: [LTExpr] ... < ... +# 27| 0: [LocalVariableAccess] access to local variable i +# 27| 1: [PropertyCall] access to property Length +# 27| 1: [PostIncrExpr] ...++ +# 27| 0: [LocalVariableAccess] access to local variable i +# 28| 2: [ExprStmt] ...; +# 28| 0: [AssignAddExpr] ... += ... +# 28| 0: [IndexerCall] access to indexer +# 28| -1: [ThisAccess] this access +# 28| 0: [LocalVariableAccess] access to local variable i +# 28| 1: [IndexerCall] access to indexer +# 28| -1: [ParameterAccess] access to parameter n +# 28| 0: [LocalVariableAccess] access to local variable i +# 31| 10: [CheckedAddCompoundAssignmentOperator] checked += +# 31| -1: [TypeMention] Void +#-----| 2: (Parameters) +# 31| 0: [Parameter] n +# 31| -1: [TypeMention] IntVector +# 31| 4: [BlockStmt] {...} +# 33| 11: [CheckedSubCompoundAssignmentOperator] checked -= +# 33| -1: [TypeMention] Void +#-----| 2: (Parameters) +# 33| 0: [Parameter] n +# 33| -1: [TypeMention] IntVector +# 33| 4: [BlockStmt] {...} +# 34| 12: [SubCompoundAssignmentOperator] -= +# 34| -1: [TypeMention] Void +#-----| 2: (Parameters) +# 34| 0: [Parameter] n +# 34| -1: [TypeMention] IntVector +# 34| 4: [BlockStmt] {...} +# 36| 13: [CheckedMulCompoundAssignmentOperator] checked *= +# 36| -1: [TypeMention] Void +#-----| 2: (Parameters) +# 36| 0: [Parameter] n +# 36| -1: [TypeMention] IntVector +# 36| 4: [BlockStmt] {...} +# 37| 14: [MulCompoundAssignmentOperator] *= +# 37| -1: [TypeMention] Void +#-----| 2: (Parameters) +# 37| 0: [Parameter] n +# 37| -1: [TypeMention] IntVector +# 37| 4: [BlockStmt] {...} +# 39| 15: [CheckedDivCompoundAssignmentOperator] checked /= +# 39| -1: [TypeMention] Void +#-----| 2: (Parameters) +# 39| 0: [Parameter] n +# 39| -1: [TypeMention] IntVector +# 39| 4: [BlockStmt] {...} +# 40| 16: [DivCompoundAssignmentOperator] /= +# 40| -1: [TypeMention] Void +#-----| 2: (Parameters) +# 40| 0: [Parameter] n +# 40| -1: [TypeMention] IntVector +# 40| 4: [BlockStmt] {...} +# 42| 17: [RemCompoundAssignmentOperator] %= +# 42| -1: [TypeMention] Void +#-----| 2: (Parameters) +# 42| 0: [Parameter] n +# 42| -1: [TypeMention] IntVector +# 42| 4: [BlockStmt] {...} +# 43| 18: [AndCompoundAssignmentOperator] &= +# 43| -1: [TypeMention] Void +#-----| 2: (Parameters) +# 43| 0: [Parameter] n +# 43| -1: [TypeMention] IntVector +# 43| 4: [BlockStmt] {...} +# 44| 19: [OrCompoundAssignmentOperator] |= +# 44| -1: [TypeMention] Void +#-----| 2: (Parameters) +# 44| 0: [Parameter] n +# 44| -1: [TypeMention] IntVector +# 44| 4: [BlockStmt] {...} +# 45| 20: [XorCompoundAssignmentOperator] ^= +# 45| -1: [TypeMention] Void +#-----| 2: (Parameters) +# 45| 0: [Parameter] n +# 45| -1: [TypeMention] IntVector # 45| 4: [BlockStmt] {...} -# 46| 0: [IfStmt] if (...) ... -# 46| 0: [LogicalOrExpr] ... || ... -# 46| 0: [LTExpr] ... < ... -# 46| 0: [CastExpr] (...) ... -# 46| 1: [ParameterAccess] access to parameter value -# 46| 1: [IntLiteral] 0 -# 46| 1: [GTExpr] ... > ... -# 46| 0: [CastExpr] (...) ... -# 46| 1: [ParameterAccess] access to parameter value -# 46| 1: [IntLiteral] 9 -# 47| 1: [ThrowStmt] throw ...; -# 47| 0: [ObjectCreation] object creation of type ArgumentException -# 47| 0: [TypeMention] ArgumentException -# 48| 1: [ExprStmt] ...; -# 48| 0: [AssignExpr] ... = ... -# 48| 0: [FieldAccess] access to field value -# 48| -1: [ThisAccess] this access -# 48| 1: [ParameterAccess] access to parameter value -# 51| 8: [ImplicitConversionOperator] implicit conversion -# 51| -1: [TypeMention] byte -#-----| 2: (Parameters) -# 51| 0: [Parameter] d -# 51| -1: [TypeMention] Digit -# 52| 4: [BlockStmt] {...} -# 53| 0: [ReturnStmt] return ...; -# 53| 0: [FieldAccess] access to field value -# 53| -1: [ParameterAccess] access to parameter d -# 56| 9: [ExplicitConversionOperator] explicit conversion -# 56| -1: [TypeMention] Digit -#-----| 2: (Parameters) -# 56| 0: [Parameter] b -# 56| -1: [TypeMention] byte -# 57| 4: [BlockStmt] {...} -# 58| 0: [ReturnStmt] return ...; -# 58| 0: [ObjectCreation] object creation of type Digit -# 58| -1: [TypeMention] Digit -# 58| 0: [ParameterAccess] access to parameter b -# 63| 4: [Class] TestConversionOperator -# 66| 6: [Method] Main -# 66| -1: [TypeMention] Void -# 67| 4: [BlockStmt] {...} -# 68| 0: [LocalVariableDeclStmt] ... ...; -# 68| 0: [LocalVariableDeclAndInitExpr] Digit d = ... -# 68| -1: [TypeMention] Digit -# 68| 0: [LocalVariableAccess] access to local variable d -# 68| 1: [OperatorCall] call to operator explicit conversion -# 68| -1: [TypeMention] Digit -# 68| 0: [CastExpr] (...) ... -# 68| 1: [IntLiteral] 8 -# 69| 1: [LocalVariableDeclStmt] ... ...; -# 69| 0: [LocalVariableDeclAndInitExpr] Byte b = ... -# 69| -1: [TypeMention] byte -# 69| 0: [LocalVariableAccess] access to local variable b -# 69| 1: [OperatorCall] call to operator implicit conversion -# 69| 0: [LocalVariableAccess] access to local variable d +# 46| 21: [LeftShiftCompoundAssignmentOperator] <<= +# 46| -1: [TypeMention] Void +#-----| 2: (Parameters) +# 46| 0: [Parameter] n +# 46| -1: [TypeMention] IntVector +# 46| 4: [BlockStmt] {...} +# 47| 22: [RightShiftCompoundAssignmentOperator] >>= +# 47| -1: [TypeMention] Void +#-----| 2: (Parameters) +# 47| 0: [Parameter] n +# 47| -1: [TypeMention] IntVector +# 47| 4: [BlockStmt] {...} +# 48| 23: [UnsignedRightShiftCompoundAssignmentOperator] >>>= +# 48| -1: [TypeMention] Void +#-----| 2: (Parameters) +# 48| 0: [Parameter] n +# 48| -1: [TypeMention] IntVector +# 48| 4: [BlockStmt] {...} +# 51| 2: [Class] TestOperator +# 53| 6: [Method] Main +# 53| -1: [TypeMention] Void +# 54| 4: [BlockStmt] {...} +# 55| 0: [LocalVariableDeclStmt] ... ...; +# 55| 0: [LocalVariableDeclAndInitExpr] IntVector iv1 = ... +# 55| -1: [TypeMention] IntVector +# 55| 0: [LocalVariableAccess] access to local variable iv1 +# 55| 1: [ObjectCreation] object creation of type IntVector +# 55| -1: [TypeMention] IntVector +# 55| 0: [IntLiteral] 4 +# 56| 1: [LocalVariableDeclStmt] ... ...; +# 56| 0: [LocalVariableDeclExpr] IntVector iv2 +# 56| 0: [TypeMention] IntVector +# 57| 2: [ExprStmt] ...; +# 57| 0: [AssignExpr] ... = ... +# 57| 0: [LocalVariableAccess] access to local variable iv2 +# 57| 1: [OperatorCall] call to operator ++ +# 57| 0: [LocalVariableAccess] access to local variable iv1 +# 58| 3: [ExprStmt] ...; +# 58| 0: [AssignExpr] ... = ... +# 58| 0: [LocalVariableAccess] access to local variable iv2 +# 58| 1: [OperatorCall] call to operator ++ +# 58| 0: [LocalVariableAccess] access to local variable iv1 +# 60| 4: [LocalVariableDeclStmt] ... ...; +# 60| 0: [LocalVariableDeclAndInitExpr] IntVector iv3 = ... +# 60| -1: [TypeMention] IntVector +# 60| 0: [LocalVariableAccess] access to local variable iv3 +# 60| 1: [ObjectCreation] object creation of type IntVector +# 60| -1: [TypeMention] IntVector +# 60| 0: [IntLiteral] 4 +# 61| 5: [ExprStmt] ...; +# 61| 0: [AssignAddExpr] ... += ... +# 61| 0: [LocalVariableAccess] access to local variable iv3 +# 61| 1: [LocalVariableAccess] access to local variable iv2 +# 64| 6: [ExprStmt] ...; +# 64| 0: [AssignSubExpr] ... -= ... +# 64| 0: [LocalVariableAccess] access to local variable iv3 +# 64| 1: [LocalVariableAccess] access to local variable iv2 +# 65| 7: [ExprStmt] ...; +# 65| 0: [AssignMulExpr] ... *= ... +# 65| 0: [LocalVariableAccess] access to local variable iv3 +# 65| 1: [LocalVariableAccess] access to local variable iv2 +# 66| 8: [ExprStmt] ...; +# 66| 0: [AssignDivExpr] ... /= ... +# 66| 0: [LocalVariableAccess] access to local variable iv3 +# 66| 1: [LocalVariableAccess] access to local variable iv2 +# 67| 9: [ExprStmt] ...; +# 67| 0: [AssignRemExpr] ... %= ... +# 67| 0: [LocalVariableAccess] access to local variable iv3 +# 67| 1: [LocalVariableAccess] access to local variable iv2 +# 68| 10: [ExprStmt] ...; +# 68| 0: [AssignAndExpr] ... &= ... +# 68| 0: [LocalVariableAccess] access to local variable iv3 +# 68| 1: [LocalVariableAccess] access to local variable iv2 +# 69| 11: [ExprStmt] ...; +# 69| 0: [AssignOrExpr] ... |= ... +# 69| 0: [LocalVariableAccess] access to local variable iv3 +# 69| 1: [LocalVariableAccess] access to local variable iv2 +# 70| 12: [ExprStmt] ...; +# 70| 0: [AssignXorExpr] ... ^= ... +# 70| 0: [LocalVariableAccess] access to local variable iv3 +# 70| 1: [LocalVariableAccess] access to local variable iv2 +# 71| 13: [ExprStmt] ...; +# 71| 0: [AssignLeftShiftExpr] ... <<= ... +# 71| 0: [LocalVariableAccess] access to local variable iv3 +# 71| 1: [LocalVariableAccess] access to local variable iv2 +# 72| 14: [ExprStmt] ...; +# 72| 0: [AssignRightShiftExpr] ... >>= ... +# 72| 0: [LocalVariableAccess] access to local variable iv3 +# 72| 1: [LocalVariableAccess] access to local variable iv2 +# 73| 15: [ExprStmt] ...; +# 73| 0: [AssignUnsignedRightShiftExpr] ... >>>= ... +# 73| 0: [LocalVariableAccess] access to local variable iv3 +# 73| 1: [LocalVariableAccess] access to local variable iv2 +# 75| 16: [CheckedStmt] checked {...} +# 76| 0: [BlockStmt] {...} +# 77| 0: [ExprStmt] ...; +# 77| 0: [AssignAddExpr] ... += ... +# 77| 0: [LocalVariableAccess] access to local variable iv3 +# 77| 1: [LocalVariableAccess] access to local variable iv2 +# 78| 1: [ExprStmt] ...; +# 78| 0: [AssignSubExpr] ... -= ... +# 78| 0: [LocalVariableAccess] access to local variable iv3 +# 78| 1: [LocalVariableAccess] access to local variable iv2 +# 79| 2: [ExprStmt] ...; +# 79| 0: [AssignMulExpr] ... *= ... +# 79| 0: [LocalVariableAccess] access to local variable iv3 +# 79| 1: [LocalVariableAccess] access to local variable iv2 +# 80| 3: [ExprStmt] ...; +# 80| 0: [AssignDivExpr] ... /= ... +# 80| 0: [LocalVariableAccess] access to local variable iv3 +# 80| 1: [LocalVariableAccess] access to local variable iv2 +# 85| 3: [Struct] Digit +# 87| 6: [Field] value +# 87| -1: [TypeMention] byte +# 89| 7: [InstanceConstructor] Digit +#-----| 2: (Parameters) +# 89| 0: [Parameter] value +# 89| -1: [TypeMention] byte +# 90| 4: [BlockStmt] {...} +# 91| 0: [IfStmt] if (...) ... +# 91| 0: [LogicalOrExpr] ... || ... +# 91| 0: [LTExpr] ... < ... +# 91| 0: [CastExpr] (...) ... +# 91| 1: [ParameterAccess] access to parameter value +# 91| 1: [IntLiteral] 0 +# 91| 1: [GTExpr] ... > ... +# 91| 0: [CastExpr] (...) ... +# 91| 1: [ParameterAccess] access to parameter value +# 91| 1: [IntLiteral] 9 +# 92| 1: [ThrowStmt] throw ...; +# 92| 0: [ObjectCreation] object creation of type ArgumentException +# 92| 0: [TypeMention] ArgumentException +# 93| 1: [ExprStmt] ...; +# 93| 0: [AssignExpr] ... = ... +# 93| 0: [FieldAccess] access to field value +# 93| -1: [ThisAccess] this access +# 93| 1: [ParameterAccess] access to parameter value +# 96| 8: [ImplicitConversionOperator] implicit conversion +# 96| -1: [TypeMention] byte +#-----| 2: (Parameters) +# 96| 0: [Parameter] d +# 96| -1: [TypeMention] Digit +# 97| 4: [BlockStmt] {...} +# 98| 0: [ReturnStmt] return ...; +# 98| 0: [FieldAccess] access to field value +# 98| -1: [ParameterAccess] access to parameter d +# 101| 9: [ExplicitConversionOperator] explicit conversion +# 101| -1: [TypeMention] Digit +#-----| 2: (Parameters) +# 101| 0: [Parameter] b +# 101| -1: [TypeMention] byte +# 102| 4: [BlockStmt] {...} +# 103| 0: [ReturnStmt] return ...; +# 103| 0: [ObjectCreation] object creation of type Digit +# 103| -1: [TypeMention] Digit +# 103| 0: [ParameterAccess] access to parameter b +# 108| 4: [Class] TestConversionOperator +# 111| 6: [Method] Main +# 111| -1: [TypeMention] Void +# 112| 4: [BlockStmt] {...} +# 113| 0: [LocalVariableDeclStmt] ... ...; +# 113| 0: [LocalVariableDeclAndInitExpr] Digit d = ... +# 113| -1: [TypeMention] Digit +# 113| 0: [LocalVariableAccess] access to local variable d +# 113| 1: [OperatorCall] call to operator explicit conversion +# 113| -1: [TypeMention] Digit +# 113| 0: [CastExpr] (...) ... +# 113| 1: [IntLiteral] 8 +# 114| 1: [LocalVariableDeclStmt] ... ...; +# 114| 0: [LocalVariableDeclAndInitExpr] Byte b = ... +# 114| -1: [TypeMention] byte +# 114| 0: [LocalVariableAccess] access to local variable b +# 114| 1: [OperatorCall] call to operator implicit conversion +# 114| 0: [LocalVariableAccess] access to local variable d diff --git a/csharp/ql/test/library-tests/operators/operators.cs b/csharp/ql/test/library-tests/operators/operators.cs index b58334b24a0b..3ff2fe1a26bf 100644 --- a/csharp/ql/test/library-tests/operators/operators.cs +++ b/csharp/ql/test/library-tests/operators/operators.cs @@ -6,7 +6,6 @@ namespace Operators { public class IntVector { - public IntVector(int length) { } public int Length { get { return 4; } } @@ -21,24 +20,70 @@ public IntVector(int length) { } return temp; } + public void operator +=(IntVector n) + { + if (n.Length != Length) + throw new ArgumentException(); + for (int i = 0; i < Length; i++) + this[i] += n[i]; + } + + public void operator checked +=(IntVector n) { } + + public void operator checked -=(IntVector n) { } + public void operator -=(IntVector n) { } + + public void operator checked *=(IntVector n) { } + public void operator *=(IntVector n) { } + + public void operator checked /=(IntVector n) { } + public void operator /=(IntVector n) { } + + public void operator %=(IntVector n) { } + public void operator &=(IntVector n) { } + public void operator |=(IntVector n) { } + public void operator ^=(IntVector n) { } + public void operator <<=(IntVector n) { } + public void operator >>=(IntVector n) { } + public void operator >>>=(IntVector n) { } } - class TestUnaryOperator + class TestOperator { - void Main() { IntVector iv1 = new IntVector(4); // vector of 4 x 0 IntVector iv2; iv2 = iv1++; // iv2 contains 4 x 0, iv1 contains 4 x 1 iv2 = ++iv1; // iv2 contains 4 x 2, iv1 contains 4 x 2 - } + IntVector iv3 = new IntVector(4); // vector of 4 x 0 + iv3 += iv2; // iv3 contains 4 x 2 + + // The following operations don't do anything. + iv3 -= iv2; + iv3 *= iv2; + iv3 /= iv2; + iv3 %= iv2; + iv3 &= iv2; + iv3 |= iv2; + iv3 ^= iv2; + iv3 <<= iv2; + iv3 >>= iv2; + iv3 >>>= iv2; + + checked + { + iv3 += iv2; + iv3 -= iv2; + iv3 *= iv2; + iv3 /= iv2; + } + } } public struct Digit { - byte value; public Digit(byte value) From f3f3ee6e819a338caac7db62335d61c059968f3e Mon Sep 17 00:00:00 2001 From: Michael Nebel Date: Fri, 24 Apr 2026 08:46:41 +0200 Subject: [PATCH 037/260] C#: Add cs/deferenced-value-is-always-null test example for compound operators. --- csharp/ql/test/query-tests/Nullness/C.cs | 9 +++++++++ csharp/ql/test/query-tests/Nullness/NullAlways.expected | 1 + 2 files changed, 10 insertions(+) diff --git a/csharp/ql/test/query-tests/Nullness/C.cs b/csharp/ql/test/query-tests/Nullness/C.cs index 8c6a0226f36f..4ca1e2adf539 100644 --- a/csharp/ql/test/query-tests/Nullness/C.cs +++ b/csharp/ql/test/query-tests/Nullness/C.cs @@ -264,6 +264,13 @@ public void Access() temp = sa.Length; // BAD (always), but not first } + public void CompoundAssignment() + { + C c1 = null; + C c2 = new C(true); + c1 += c2; // $ Alert[cs/dereferenced-value-is-always-null] + } + bool m; C(bool m) { @@ -271,4 +278,6 @@ public void Access() } bool Maybe() => this.m; + + public void operator +=(C other) { } } diff --git a/csharp/ql/test/query-tests/Nullness/NullAlways.expected b/csharp/ql/test/query-tests/Nullness/NullAlways.expected index a633c4a15064..f95639c9b329 100644 --- a/csharp/ql/test/query-tests/Nullness/NullAlways.expected +++ b/csharp/ql/test/query-tests/Nullness/NullAlways.expected @@ -24,6 +24,7 @@ | C.cs:249:9:249:9 | access to local variable a | Variable $@ is always null at this dereference. | C.cs:248:15:248:15 | a | a | | C.cs:260:9:260:10 | access to local variable ia | Variable $@ is always null at this dereference. | C.cs:257:15:257:16 | ia | ia | | C.cs:261:20:261:21 | access to local variable sa | Variable $@ is always null at this dereference. | C.cs:258:18:258:19 | sa | sa | +| C.cs:271:9:271:10 | access to local variable c1 | Variable $@ is always null at this dereference. | C.cs:269:11:269:12 | c1 | c1 | | D.cs:120:13:120:13 | access to local variable x | Variable $@ is always null at this dereference. | D.cs:117:13:117:13 | x | x | | D.cs:197:13:197:13 | access to local variable o | Variable $@ is always null at this dereference. | D.cs:195:13:195:13 | o | o | | D.cs:207:17:207:17 | access to local variable e | Variable $@ is always null at this dereference. | D.cs:204:26:204:26 | e | e | From 6ec250951a615b74bc2b73c0aef5fe2d9d60664e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jack=20N=C3=B8rskov=20J=C3=B8rgensen?= Date: Thu, 23 Apr 2026 14:15:11 +0200 Subject: [PATCH 038/260] Move generated MaDs for Java into modelgenerator/ --- .../ext/generated/{ => modelgenerator}/java.applet.model.yml | 0 .../{ => modelgenerator}/java.beans.beancontext.model.yml | 0 .../lib/ext/generated/{ => modelgenerator}/java.beans.model.yml | 0 .../ql/lib/ext/generated/{ => modelgenerator}/java.io.model.yml | 0 .../{ => modelgenerator}/java.lang.annotation.model.yml | 0 .../generated/{ => modelgenerator}/java.lang.constant.model.yml | 0 .../{ => modelgenerator}/java.lang.instrument.model.yml | 0 .../generated/{ => modelgenerator}/java.lang.invoke.model.yml | 0 .../{ => modelgenerator}/java.lang.management.model.yml | 0 .../lib/ext/generated/{ => modelgenerator}/java.lang.model.yml | 0 .../generated/{ => modelgenerator}/java.lang.module.model.yml | 0 .../ext/generated/{ => modelgenerator}/java.lang.ref.model.yml | 0 .../generated/{ => modelgenerator}/java.lang.reflect.model.yml | 0 .../generated/{ => modelgenerator}/java.lang.runtime.model.yml | 0 .../lib/ext/generated/{ => modelgenerator}/java.math.model.yml | 0 .../ext/generated/{ => modelgenerator}/java.net.http.model.yml | 0 .../lib/ext/generated/{ => modelgenerator}/java.net.model.yml | 0 .../generated/{ => modelgenerator}/java.nio.channels.model.yml | 0 .../{ => modelgenerator}/java.nio.channels.spi.model.yml | 0 .../generated/{ => modelgenerator}/java.nio.charset.model.yml | 0 .../{ => modelgenerator}/java.nio.charset.spi.model.yml | 0 .../{ => modelgenerator}/java.nio.file.attribute.model.yml | 0 .../ext/generated/{ => modelgenerator}/java.nio.file.model.yml | 0 .../generated/{ => modelgenerator}/java.nio.file.spi.model.yml | 0 .../lib/ext/generated/{ => modelgenerator}/java.nio.model.yml | 0 .../ext/generated/{ => modelgenerator}/java.rmi.dgc.model.yml | 0 .../lib/ext/generated/{ => modelgenerator}/java.rmi.model.yml | 0 .../generated/{ => modelgenerator}/java.rmi.registry.model.yml | 0 .../generated/{ => modelgenerator}/java.rmi.server.model.yml | 0 .../generated/{ => modelgenerator}/java.security.cert.model.yml | 0 .../{ => modelgenerator}/java.security.interfaces.model.yml | 0 .../ext/generated/{ => modelgenerator}/java.security.model.yml | 0 .../generated/{ => modelgenerator}/java.security.spec.model.yml | 0 .../lib/ext/generated/{ => modelgenerator}/java.sql.model.yml | 0 .../lib/ext/generated/{ => modelgenerator}/java.text.model.yml | 0 .../ext/generated/{ => modelgenerator}/java.text.spi.model.yml | 0 .../generated/{ => modelgenerator}/java.time.chrono.model.yml | 0 .../generated/{ => modelgenerator}/java.time.format.model.yml | 0 .../lib/ext/generated/{ => modelgenerator}/java.time.model.yml | 0 .../generated/{ => modelgenerator}/java.time.temporal.model.yml | 0 .../ext/generated/{ => modelgenerator}/java.time.zone.model.yml | 0 .../{ => modelgenerator}/java.util.concurrent.atomic.model.yml | 0 .../{ => modelgenerator}/java.util.concurrent.locks.model.yml | 0 .../{ => modelgenerator}/java.util.concurrent.model.yml | 0 .../generated/{ => modelgenerator}/java.util.function.model.yml | 0 .../ext/generated/{ => modelgenerator}/java.util.jar.model.yml | 0 .../generated/{ => modelgenerator}/java.util.logging.model.yml | 0 .../lib/ext/generated/{ => modelgenerator}/java.util.model.yml | 0 .../generated/{ => modelgenerator}/java.util.prefs.model.yml | 0 .../generated/{ => modelgenerator}/java.util.random.model.yml | 0 .../generated/{ => modelgenerator}/java.util.regex.model.yml | 0 .../ext/generated/{ => modelgenerator}/java.util.spi.model.yml | 0 .../generated/{ => modelgenerator}/java.util.stream.model.yml | 0 .../ext/generated/{ => modelgenerator}/java.util.zip.model.yml | 0 .../{ => modelgenerator}/javax.accessibility.model.yml | 0 .../{ => modelgenerator}/javax.annotation.processing.model.yml | 0 .../{ => modelgenerator}/javax.crypto.interfaces.model.yml | 0 .../ext/generated/{ => modelgenerator}/javax.crypto.model.yml | 0 .../generated/{ => modelgenerator}/javax.crypto.spec.model.yml | 0 .../{ => modelgenerator}/javax.imageio.metadata.model.yml | 0 .../ext/generated/{ => modelgenerator}/javax.imageio.model.yml | 0 .../{ => modelgenerator}/javax.imageio.plugins.bmp.model.yml | 0 .../{ => modelgenerator}/javax.imageio.plugins.jpeg.model.yml | 0 .../{ => modelgenerator}/javax.imageio.plugins.tiff.model.yml | 0 .../generated/{ => modelgenerator}/javax.imageio.spi.model.yml | 0 .../{ => modelgenerator}/javax.imageio.stream.model.yml | 0 .../{ => modelgenerator}/javax.lang.model.element.model.yml | 0 .../generated/{ => modelgenerator}/javax.lang.model.model.yml | 0 .../{ => modelgenerator}/javax.lang.model.type.model.yml | 0 .../{ => modelgenerator}/javax.lang.model.util.model.yml | 0 .../{ => modelgenerator}/javax.management.loading.model.yml | 0 .../generated/{ => modelgenerator}/javax.management.model.yml | 0 .../{ => modelgenerator}/javax.management.modelmbean.model.yml | 0 .../{ => modelgenerator}/javax.management.monitor.model.yml | 0 .../{ => modelgenerator}/javax.management.openmbean.model.yml | 0 .../{ => modelgenerator}/javax.management.relation.model.yml | 0 .../{ => modelgenerator}/javax.management.remote.model.yml | 0 .../{ => modelgenerator}/javax.management.remote.rmi.model.yml | 0 .../{ => modelgenerator}/javax.management.timer.model.yml | 0 .../{ => modelgenerator}/javax.naming.directory.model.yml | 0 .../generated/{ => modelgenerator}/javax.naming.event.model.yml | 0 .../generated/{ => modelgenerator}/javax.naming.ldap.model.yml | 0 .../{ => modelgenerator}/javax.naming.ldap.spi.model.yml | 0 .../ext/generated/{ => modelgenerator}/javax.naming.model.yml | 0 .../generated/{ => modelgenerator}/javax.naming.spi.model.yml | 0 .../lib/ext/generated/{ => modelgenerator}/javax.net.model.yml | 0 .../ext/generated/{ => modelgenerator}/javax.net.ssl.model.yml | 0 .../{ => modelgenerator}/javax.print.attribute.model.yml | 0 .../javax.print.attribute.standard.model.yml | 0 .../generated/{ => modelgenerator}/javax.print.event.model.yml | 0 .../ext/generated/{ => modelgenerator}/javax.print.model.yml | 0 .../ext/generated/{ => modelgenerator}/javax.rmi.ssl.model.yml | 0 .../ext/generated/{ => modelgenerator}/javax.script.model.yml | 0 .../{ => modelgenerator}/javax.security.auth.callback.model.yml | 0 .../{ => modelgenerator}/javax.security.auth.kerberos.model.yml | 0 .../{ => modelgenerator}/javax.security.auth.login.model.yml | 0 .../{ => modelgenerator}/javax.security.auth.model.yml | 0 .../{ => modelgenerator}/javax.security.auth.spi.model.yml | 0 .../{ => modelgenerator}/javax.security.auth.x500.model.yml | 0 .../{ => modelgenerator}/javax.security.cert.model.yml | 0 .../{ => modelgenerator}/javax.security.sasl.model.yml | 0 .../generated/{ => modelgenerator}/javax.smartcardio.model.yml | 0 .../generated/{ => modelgenerator}/javax.sound.midi.model.yml | 0 .../{ => modelgenerator}/javax.sound.midi.spi.model.yml | 0 .../{ => modelgenerator}/javax.sound.sampled.model.yml | 0 .../{ => modelgenerator}/javax.sound.sampled.spi.model.yml | 0 .../lib/ext/generated/{ => modelgenerator}/javax.sql.model.yml | 0 .../generated/{ => modelgenerator}/javax.sql.rowset.model.yml | 0 .../{ => modelgenerator}/javax.sql.rowset.serial.model.yml | 0 .../{ => modelgenerator}/javax.sql.rowset.spi.model.yml | 0 .../ext/generated/{ => modelgenerator}/javax.tools.model.yml | 0 .../{ => modelgenerator}/javax.transaction.xa.model.yml | 0 .../generated/{ => modelgenerator}/javax.xml.catalog.model.yml | 0 .../{ => modelgenerator}/javax.xml.crypto.dom.model.yml | 0 .../{ => modelgenerator}/javax.xml.crypto.dsig.dom.model.yml | 0 .../javax.xml.crypto.dsig.keyinfo.model.yml | 0 .../{ => modelgenerator}/javax.xml.crypto.dsig.model.yml | 0 .../{ => modelgenerator}/javax.xml.crypto.dsig.spec.model.yml | 0 .../generated/{ => modelgenerator}/javax.xml.crypto.model.yml | 0 .../generated/{ => modelgenerator}/javax.xml.datatype.model.yml | 0 .../{ => modelgenerator}/javax.xml.namespace.model.yml | 0 .../generated/{ => modelgenerator}/javax.xml.parsers.model.yml | 0 .../{ => modelgenerator}/javax.xml.stream.events.model.yml | 0 .../generated/{ => modelgenerator}/javax.xml.stream.model.yml | 0 .../{ => modelgenerator}/javax.xml.stream.util.model.yml | 0 .../{ => modelgenerator}/javax.xml.transform.dom.model.yml | 0 .../{ => modelgenerator}/javax.xml.transform.model.yml | 0 .../{ => modelgenerator}/javax.xml.transform.sax.model.yml | 0 .../{ => modelgenerator}/javax.xml.transform.stax.model.yml | 0 .../{ => modelgenerator}/javax.xml.transform.stream.model.yml | 0 .../{ => modelgenerator}/javax.xml.validation.model.yml | 0 .../generated/{ => modelgenerator}/javax.xml.xpath.model.yml | 0 .../generated/{ => modelgenerator}/jenkins-json-lib.model.yml | 0 .../ql/lib/ext/generated/{ => modelgenerator}/jenkins.model.yml | 0 .../ext/generated/{ => modelgenerator}/kotlinstdlib.model.yml | 0 .../{ => modelgenerator}/org.apache.commons.io.model.yml | 0 .../{ => modelgenerator}/org.apache.commons.lang.model.yml | 0 .../ql/lib/ext/generated/{ => modelgenerator}/stapler.model.yml | 0 .../ql/lib/ext/generated/{ => modelgenerator}/struts2.model.yml | 0 java/ql/lib/qlpack.yml | 2 +- 140 files changed, 1 insertion(+), 1 deletion(-) rename java/ql/lib/ext/generated/{ => modelgenerator}/java.applet.model.yml (100%) rename java/ql/lib/ext/generated/{ => modelgenerator}/java.beans.beancontext.model.yml (100%) rename java/ql/lib/ext/generated/{ => modelgenerator}/java.beans.model.yml (100%) rename java/ql/lib/ext/generated/{ => modelgenerator}/java.io.model.yml (100%) rename java/ql/lib/ext/generated/{ => modelgenerator}/java.lang.annotation.model.yml (100%) rename java/ql/lib/ext/generated/{ => modelgenerator}/java.lang.constant.model.yml (100%) rename java/ql/lib/ext/generated/{ => modelgenerator}/java.lang.instrument.model.yml (100%) rename java/ql/lib/ext/generated/{ => modelgenerator}/java.lang.invoke.model.yml (100%) rename java/ql/lib/ext/generated/{ => modelgenerator}/java.lang.management.model.yml (100%) rename java/ql/lib/ext/generated/{ => modelgenerator}/java.lang.model.yml (100%) rename java/ql/lib/ext/generated/{ => modelgenerator}/java.lang.module.model.yml (100%) rename java/ql/lib/ext/generated/{ => modelgenerator}/java.lang.ref.model.yml (100%) rename java/ql/lib/ext/generated/{ => modelgenerator}/java.lang.reflect.model.yml (100%) rename java/ql/lib/ext/generated/{ => modelgenerator}/java.lang.runtime.model.yml (100%) rename java/ql/lib/ext/generated/{ => modelgenerator}/java.math.model.yml (100%) rename java/ql/lib/ext/generated/{ => modelgenerator}/java.net.http.model.yml (100%) rename java/ql/lib/ext/generated/{ => modelgenerator}/java.net.model.yml (100%) rename java/ql/lib/ext/generated/{ => modelgenerator}/java.nio.channels.model.yml (100%) rename java/ql/lib/ext/generated/{ => modelgenerator}/java.nio.channels.spi.model.yml (100%) rename java/ql/lib/ext/generated/{ => modelgenerator}/java.nio.charset.model.yml (100%) rename java/ql/lib/ext/generated/{ => modelgenerator}/java.nio.charset.spi.model.yml (100%) rename java/ql/lib/ext/generated/{ => modelgenerator}/java.nio.file.attribute.model.yml (100%) rename java/ql/lib/ext/generated/{ => modelgenerator}/java.nio.file.model.yml (100%) rename java/ql/lib/ext/generated/{ => modelgenerator}/java.nio.file.spi.model.yml (100%) rename java/ql/lib/ext/generated/{ => modelgenerator}/java.nio.model.yml (100%) rename java/ql/lib/ext/generated/{ => modelgenerator}/java.rmi.dgc.model.yml (100%) rename java/ql/lib/ext/generated/{ => modelgenerator}/java.rmi.model.yml (100%) rename java/ql/lib/ext/generated/{ => modelgenerator}/java.rmi.registry.model.yml (100%) rename java/ql/lib/ext/generated/{ => modelgenerator}/java.rmi.server.model.yml (100%) rename java/ql/lib/ext/generated/{ => modelgenerator}/java.security.cert.model.yml (100%) rename java/ql/lib/ext/generated/{ => modelgenerator}/java.security.interfaces.model.yml (100%) rename java/ql/lib/ext/generated/{ => modelgenerator}/java.security.model.yml (100%) rename java/ql/lib/ext/generated/{ => modelgenerator}/java.security.spec.model.yml (100%) rename java/ql/lib/ext/generated/{ => modelgenerator}/java.sql.model.yml (100%) rename java/ql/lib/ext/generated/{ => modelgenerator}/java.text.model.yml (100%) rename java/ql/lib/ext/generated/{ => modelgenerator}/java.text.spi.model.yml (100%) rename java/ql/lib/ext/generated/{ => modelgenerator}/java.time.chrono.model.yml (100%) rename java/ql/lib/ext/generated/{ => modelgenerator}/java.time.format.model.yml (100%) rename java/ql/lib/ext/generated/{ => modelgenerator}/java.time.model.yml (100%) rename java/ql/lib/ext/generated/{ => modelgenerator}/java.time.temporal.model.yml (100%) rename java/ql/lib/ext/generated/{ => modelgenerator}/java.time.zone.model.yml (100%) rename java/ql/lib/ext/generated/{ => modelgenerator}/java.util.concurrent.atomic.model.yml (100%) rename java/ql/lib/ext/generated/{ => modelgenerator}/java.util.concurrent.locks.model.yml (100%) rename java/ql/lib/ext/generated/{ => modelgenerator}/java.util.concurrent.model.yml (100%) rename java/ql/lib/ext/generated/{ => modelgenerator}/java.util.function.model.yml (100%) rename java/ql/lib/ext/generated/{ => modelgenerator}/java.util.jar.model.yml (100%) rename java/ql/lib/ext/generated/{ => modelgenerator}/java.util.logging.model.yml (100%) rename java/ql/lib/ext/generated/{ => modelgenerator}/java.util.model.yml (100%) rename java/ql/lib/ext/generated/{ => modelgenerator}/java.util.prefs.model.yml (100%) rename java/ql/lib/ext/generated/{ => modelgenerator}/java.util.random.model.yml (100%) rename java/ql/lib/ext/generated/{ => modelgenerator}/java.util.regex.model.yml (100%) rename java/ql/lib/ext/generated/{ => modelgenerator}/java.util.spi.model.yml (100%) rename java/ql/lib/ext/generated/{ => modelgenerator}/java.util.stream.model.yml (100%) rename java/ql/lib/ext/generated/{ => modelgenerator}/java.util.zip.model.yml (100%) rename java/ql/lib/ext/generated/{ => modelgenerator}/javax.accessibility.model.yml (100%) rename java/ql/lib/ext/generated/{ => modelgenerator}/javax.annotation.processing.model.yml (100%) rename java/ql/lib/ext/generated/{ => modelgenerator}/javax.crypto.interfaces.model.yml (100%) rename java/ql/lib/ext/generated/{ => modelgenerator}/javax.crypto.model.yml (100%) rename java/ql/lib/ext/generated/{ => modelgenerator}/javax.crypto.spec.model.yml (100%) rename java/ql/lib/ext/generated/{ => modelgenerator}/javax.imageio.metadata.model.yml (100%) rename java/ql/lib/ext/generated/{ => modelgenerator}/javax.imageio.model.yml (100%) rename java/ql/lib/ext/generated/{ => modelgenerator}/javax.imageio.plugins.bmp.model.yml (100%) rename java/ql/lib/ext/generated/{ => modelgenerator}/javax.imageio.plugins.jpeg.model.yml (100%) rename java/ql/lib/ext/generated/{ => modelgenerator}/javax.imageio.plugins.tiff.model.yml (100%) rename java/ql/lib/ext/generated/{ => modelgenerator}/javax.imageio.spi.model.yml (100%) rename java/ql/lib/ext/generated/{ => modelgenerator}/javax.imageio.stream.model.yml (100%) rename java/ql/lib/ext/generated/{ => modelgenerator}/javax.lang.model.element.model.yml (100%) rename java/ql/lib/ext/generated/{ => modelgenerator}/javax.lang.model.model.yml (100%) rename java/ql/lib/ext/generated/{ => modelgenerator}/javax.lang.model.type.model.yml (100%) rename java/ql/lib/ext/generated/{ => modelgenerator}/javax.lang.model.util.model.yml (100%) rename java/ql/lib/ext/generated/{ => modelgenerator}/javax.management.loading.model.yml (100%) rename java/ql/lib/ext/generated/{ => modelgenerator}/javax.management.model.yml (100%) rename java/ql/lib/ext/generated/{ => modelgenerator}/javax.management.modelmbean.model.yml (100%) rename java/ql/lib/ext/generated/{ => modelgenerator}/javax.management.monitor.model.yml (100%) rename java/ql/lib/ext/generated/{ => modelgenerator}/javax.management.openmbean.model.yml (100%) rename java/ql/lib/ext/generated/{ => modelgenerator}/javax.management.relation.model.yml (100%) rename java/ql/lib/ext/generated/{ => modelgenerator}/javax.management.remote.model.yml (100%) rename java/ql/lib/ext/generated/{ => modelgenerator}/javax.management.remote.rmi.model.yml (100%) rename java/ql/lib/ext/generated/{ => modelgenerator}/javax.management.timer.model.yml (100%) rename java/ql/lib/ext/generated/{ => modelgenerator}/javax.naming.directory.model.yml (100%) rename java/ql/lib/ext/generated/{ => modelgenerator}/javax.naming.event.model.yml (100%) rename java/ql/lib/ext/generated/{ => modelgenerator}/javax.naming.ldap.model.yml (100%) rename java/ql/lib/ext/generated/{ => modelgenerator}/javax.naming.ldap.spi.model.yml (100%) rename java/ql/lib/ext/generated/{ => modelgenerator}/javax.naming.model.yml (100%) rename java/ql/lib/ext/generated/{ => modelgenerator}/javax.naming.spi.model.yml (100%) rename java/ql/lib/ext/generated/{ => modelgenerator}/javax.net.model.yml (100%) rename java/ql/lib/ext/generated/{ => modelgenerator}/javax.net.ssl.model.yml (100%) rename java/ql/lib/ext/generated/{ => modelgenerator}/javax.print.attribute.model.yml (100%) rename java/ql/lib/ext/generated/{ => modelgenerator}/javax.print.attribute.standard.model.yml (100%) rename java/ql/lib/ext/generated/{ => modelgenerator}/javax.print.event.model.yml (100%) rename java/ql/lib/ext/generated/{ => modelgenerator}/javax.print.model.yml (100%) rename java/ql/lib/ext/generated/{ => modelgenerator}/javax.rmi.ssl.model.yml (100%) rename java/ql/lib/ext/generated/{ => modelgenerator}/javax.script.model.yml (100%) rename java/ql/lib/ext/generated/{ => modelgenerator}/javax.security.auth.callback.model.yml (100%) rename java/ql/lib/ext/generated/{ => modelgenerator}/javax.security.auth.kerberos.model.yml (100%) rename java/ql/lib/ext/generated/{ => modelgenerator}/javax.security.auth.login.model.yml (100%) rename java/ql/lib/ext/generated/{ => modelgenerator}/javax.security.auth.model.yml (100%) rename java/ql/lib/ext/generated/{ => modelgenerator}/javax.security.auth.spi.model.yml (100%) rename java/ql/lib/ext/generated/{ => modelgenerator}/javax.security.auth.x500.model.yml (100%) rename java/ql/lib/ext/generated/{ => modelgenerator}/javax.security.cert.model.yml (100%) rename java/ql/lib/ext/generated/{ => modelgenerator}/javax.security.sasl.model.yml (100%) rename java/ql/lib/ext/generated/{ => modelgenerator}/javax.smartcardio.model.yml (100%) rename java/ql/lib/ext/generated/{ => modelgenerator}/javax.sound.midi.model.yml (100%) rename java/ql/lib/ext/generated/{ => modelgenerator}/javax.sound.midi.spi.model.yml (100%) rename java/ql/lib/ext/generated/{ => modelgenerator}/javax.sound.sampled.model.yml (100%) rename java/ql/lib/ext/generated/{ => modelgenerator}/javax.sound.sampled.spi.model.yml (100%) rename java/ql/lib/ext/generated/{ => modelgenerator}/javax.sql.model.yml (100%) rename java/ql/lib/ext/generated/{ => modelgenerator}/javax.sql.rowset.model.yml (100%) rename java/ql/lib/ext/generated/{ => modelgenerator}/javax.sql.rowset.serial.model.yml (100%) rename java/ql/lib/ext/generated/{ => modelgenerator}/javax.sql.rowset.spi.model.yml (100%) rename java/ql/lib/ext/generated/{ => modelgenerator}/javax.tools.model.yml (100%) rename java/ql/lib/ext/generated/{ => modelgenerator}/javax.transaction.xa.model.yml (100%) rename java/ql/lib/ext/generated/{ => modelgenerator}/javax.xml.catalog.model.yml (100%) rename java/ql/lib/ext/generated/{ => modelgenerator}/javax.xml.crypto.dom.model.yml (100%) rename java/ql/lib/ext/generated/{ => modelgenerator}/javax.xml.crypto.dsig.dom.model.yml (100%) rename java/ql/lib/ext/generated/{ => modelgenerator}/javax.xml.crypto.dsig.keyinfo.model.yml (100%) rename java/ql/lib/ext/generated/{ => modelgenerator}/javax.xml.crypto.dsig.model.yml (100%) rename java/ql/lib/ext/generated/{ => modelgenerator}/javax.xml.crypto.dsig.spec.model.yml (100%) rename java/ql/lib/ext/generated/{ => modelgenerator}/javax.xml.crypto.model.yml (100%) rename java/ql/lib/ext/generated/{ => modelgenerator}/javax.xml.datatype.model.yml (100%) rename java/ql/lib/ext/generated/{ => modelgenerator}/javax.xml.namespace.model.yml (100%) rename java/ql/lib/ext/generated/{ => modelgenerator}/javax.xml.parsers.model.yml (100%) rename java/ql/lib/ext/generated/{ => modelgenerator}/javax.xml.stream.events.model.yml (100%) rename java/ql/lib/ext/generated/{ => modelgenerator}/javax.xml.stream.model.yml (100%) rename java/ql/lib/ext/generated/{ => modelgenerator}/javax.xml.stream.util.model.yml (100%) rename java/ql/lib/ext/generated/{ => modelgenerator}/javax.xml.transform.dom.model.yml (100%) rename java/ql/lib/ext/generated/{ => modelgenerator}/javax.xml.transform.model.yml (100%) rename java/ql/lib/ext/generated/{ => modelgenerator}/javax.xml.transform.sax.model.yml (100%) rename java/ql/lib/ext/generated/{ => modelgenerator}/javax.xml.transform.stax.model.yml (100%) rename java/ql/lib/ext/generated/{ => modelgenerator}/javax.xml.transform.stream.model.yml (100%) rename java/ql/lib/ext/generated/{ => modelgenerator}/javax.xml.validation.model.yml (100%) rename java/ql/lib/ext/generated/{ => modelgenerator}/javax.xml.xpath.model.yml (100%) rename java/ql/lib/ext/generated/{ => modelgenerator}/jenkins-json-lib.model.yml (100%) rename java/ql/lib/ext/generated/{ => modelgenerator}/jenkins.model.yml (100%) rename java/ql/lib/ext/generated/{ => modelgenerator}/kotlinstdlib.model.yml (100%) rename java/ql/lib/ext/generated/{ => modelgenerator}/org.apache.commons.io.model.yml (100%) rename java/ql/lib/ext/generated/{ => modelgenerator}/org.apache.commons.lang.model.yml (100%) rename java/ql/lib/ext/generated/{ => modelgenerator}/stapler.model.yml (100%) rename java/ql/lib/ext/generated/{ => modelgenerator}/struts2.model.yml (100%) diff --git a/java/ql/lib/ext/generated/java.applet.model.yml b/java/ql/lib/ext/generated/modelgenerator/java.applet.model.yml similarity index 100% rename from java/ql/lib/ext/generated/java.applet.model.yml rename to java/ql/lib/ext/generated/modelgenerator/java.applet.model.yml diff --git a/java/ql/lib/ext/generated/java.beans.beancontext.model.yml b/java/ql/lib/ext/generated/modelgenerator/java.beans.beancontext.model.yml similarity index 100% rename from java/ql/lib/ext/generated/java.beans.beancontext.model.yml rename to java/ql/lib/ext/generated/modelgenerator/java.beans.beancontext.model.yml diff --git a/java/ql/lib/ext/generated/java.beans.model.yml b/java/ql/lib/ext/generated/modelgenerator/java.beans.model.yml similarity index 100% rename from java/ql/lib/ext/generated/java.beans.model.yml rename to java/ql/lib/ext/generated/modelgenerator/java.beans.model.yml diff --git a/java/ql/lib/ext/generated/java.io.model.yml b/java/ql/lib/ext/generated/modelgenerator/java.io.model.yml similarity index 100% rename from java/ql/lib/ext/generated/java.io.model.yml rename to java/ql/lib/ext/generated/modelgenerator/java.io.model.yml diff --git a/java/ql/lib/ext/generated/java.lang.annotation.model.yml b/java/ql/lib/ext/generated/modelgenerator/java.lang.annotation.model.yml similarity index 100% rename from java/ql/lib/ext/generated/java.lang.annotation.model.yml rename to java/ql/lib/ext/generated/modelgenerator/java.lang.annotation.model.yml diff --git a/java/ql/lib/ext/generated/java.lang.constant.model.yml b/java/ql/lib/ext/generated/modelgenerator/java.lang.constant.model.yml similarity index 100% rename from java/ql/lib/ext/generated/java.lang.constant.model.yml rename to java/ql/lib/ext/generated/modelgenerator/java.lang.constant.model.yml diff --git a/java/ql/lib/ext/generated/java.lang.instrument.model.yml b/java/ql/lib/ext/generated/modelgenerator/java.lang.instrument.model.yml similarity index 100% rename from java/ql/lib/ext/generated/java.lang.instrument.model.yml rename to java/ql/lib/ext/generated/modelgenerator/java.lang.instrument.model.yml diff --git a/java/ql/lib/ext/generated/java.lang.invoke.model.yml b/java/ql/lib/ext/generated/modelgenerator/java.lang.invoke.model.yml similarity index 100% rename from java/ql/lib/ext/generated/java.lang.invoke.model.yml rename to java/ql/lib/ext/generated/modelgenerator/java.lang.invoke.model.yml diff --git a/java/ql/lib/ext/generated/java.lang.management.model.yml b/java/ql/lib/ext/generated/modelgenerator/java.lang.management.model.yml similarity index 100% rename from java/ql/lib/ext/generated/java.lang.management.model.yml rename to java/ql/lib/ext/generated/modelgenerator/java.lang.management.model.yml diff --git a/java/ql/lib/ext/generated/java.lang.model.yml b/java/ql/lib/ext/generated/modelgenerator/java.lang.model.yml similarity index 100% rename from java/ql/lib/ext/generated/java.lang.model.yml rename to java/ql/lib/ext/generated/modelgenerator/java.lang.model.yml diff --git a/java/ql/lib/ext/generated/java.lang.module.model.yml b/java/ql/lib/ext/generated/modelgenerator/java.lang.module.model.yml similarity index 100% rename from java/ql/lib/ext/generated/java.lang.module.model.yml rename to java/ql/lib/ext/generated/modelgenerator/java.lang.module.model.yml diff --git a/java/ql/lib/ext/generated/java.lang.ref.model.yml b/java/ql/lib/ext/generated/modelgenerator/java.lang.ref.model.yml similarity index 100% rename from java/ql/lib/ext/generated/java.lang.ref.model.yml rename to java/ql/lib/ext/generated/modelgenerator/java.lang.ref.model.yml diff --git a/java/ql/lib/ext/generated/java.lang.reflect.model.yml b/java/ql/lib/ext/generated/modelgenerator/java.lang.reflect.model.yml similarity index 100% rename from java/ql/lib/ext/generated/java.lang.reflect.model.yml rename to java/ql/lib/ext/generated/modelgenerator/java.lang.reflect.model.yml diff --git a/java/ql/lib/ext/generated/java.lang.runtime.model.yml b/java/ql/lib/ext/generated/modelgenerator/java.lang.runtime.model.yml similarity index 100% rename from java/ql/lib/ext/generated/java.lang.runtime.model.yml rename to java/ql/lib/ext/generated/modelgenerator/java.lang.runtime.model.yml diff --git a/java/ql/lib/ext/generated/java.math.model.yml b/java/ql/lib/ext/generated/modelgenerator/java.math.model.yml similarity index 100% rename from java/ql/lib/ext/generated/java.math.model.yml rename to java/ql/lib/ext/generated/modelgenerator/java.math.model.yml diff --git a/java/ql/lib/ext/generated/java.net.http.model.yml b/java/ql/lib/ext/generated/modelgenerator/java.net.http.model.yml similarity index 100% rename from java/ql/lib/ext/generated/java.net.http.model.yml rename to java/ql/lib/ext/generated/modelgenerator/java.net.http.model.yml diff --git a/java/ql/lib/ext/generated/java.net.model.yml b/java/ql/lib/ext/generated/modelgenerator/java.net.model.yml similarity index 100% rename from java/ql/lib/ext/generated/java.net.model.yml rename to java/ql/lib/ext/generated/modelgenerator/java.net.model.yml diff --git a/java/ql/lib/ext/generated/java.nio.channels.model.yml b/java/ql/lib/ext/generated/modelgenerator/java.nio.channels.model.yml similarity index 100% rename from java/ql/lib/ext/generated/java.nio.channels.model.yml rename to java/ql/lib/ext/generated/modelgenerator/java.nio.channels.model.yml diff --git a/java/ql/lib/ext/generated/java.nio.channels.spi.model.yml b/java/ql/lib/ext/generated/modelgenerator/java.nio.channels.spi.model.yml similarity index 100% rename from java/ql/lib/ext/generated/java.nio.channels.spi.model.yml rename to java/ql/lib/ext/generated/modelgenerator/java.nio.channels.spi.model.yml diff --git a/java/ql/lib/ext/generated/java.nio.charset.model.yml b/java/ql/lib/ext/generated/modelgenerator/java.nio.charset.model.yml similarity index 100% rename from java/ql/lib/ext/generated/java.nio.charset.model.yml rename to java/ql/lib/ext/generated/modelgenerator/java.nio.charset.model.yml diff --git a/java/ql/lib/ext/generated/java.nio.charset.spi.model.yml b/java/ql/lib/ext/generated/modelgenerator/java.nio.charset.spi.model.yml similarity index 100% rename from java/ql/lib/ext/generated/java.nio.charset.spi.model.yml rename to java/ql/lib/ext/generated/modelgenerator/java.nio.charset.spi.model.yml diff --git a/java/ql/lib/ext/generated/java.nio.file.attribute.model.yml b/java/ql/lib/ext/generated/modelgenerator/java.nio.file.attribute.model.yml similarity index 100% rename from java/ql/lib/ext/generated/java.nio.file.attribute.model.yml rename to java/ql/lib/ext/generated/modelgenerator/java.nio.file.attribute.model.yml diff --git a/java/ql/lib/ext/generated/java.nio.file.model.yml b/java/ql/lib/ext/generated/modelgenerator/java.nio.file.model.yml similarity index 100% rename from java/ql/lib/ext/generated/java.nio.file.model.yml rename to java/ql/lib/ext/generated/modelgenerator/java.nio.file.model.yml diff --git a/java/ql/lib/ext/generated/java.nio.file.spi.model.yml b/java/ql/lib/ext/generated/modelgenerator/java.nio.file.spi.model.yml similarity index 100% rename from java/ql/lib/ext/generated/java.nio.file.spi.model.yml rename to java/ql/lib/ext/generated/modelgenerator/java.nio.file.spi.model.yml diff --git a/java/ql/lib/ext/generated/java.nio.model.yml b/java/ql/lib/ext/generated/modelgenerator/java.nio.model.yml similarity index 100% rename from java/ql/lib/ext/generated/java.nio.model.yml rename to java/ql/lib/ext/generated/modelgenerator/java.nio.model.yml diff --git a/java/ql/lib/ext/generated/java.rmi.dgc.model.yml b/java/ql/lib/ext/generated/modelgenerator/java.rmi.dgc.model.yml similarity index 100% rename from java/ql/lib/ext/generated/java.rmi.dgc.model.yml rename to java/ql/lib/ext/generated/modelgenerator/java.rmi.dgc.model.yml diff --git a/java/ql/lib/ext/generated/java.rmi.model.yml b/java/ql/lib/ext/generated/modelgenerator/java.rmi.model.yml similarity index 100% rename from java/ql/lib/ext/generated/java.rmi.model.yml rename to java/ql/lib/ext/generated/modelgenerator/java.rmi.model.yml diff --git a/java/ql/lib/ext/generated/java.rmi.registry.model.yml b/java/ql/lib/ext/generated/modelgenerator/java.rmi.registry.model.yml similarity index 100% rename from java/ql/lib/ext/generated/java.rmi.registry.model.yml rename to java/ql/lib/ext/generated/modelgenerator/java.rmi.registry.model.yml diff --git a/java/ql/lib/ext/generated/java.rmi.server.model.yml b/java/ql/lib/ext/generated/modelgenerator/java.rmi.server.model.yml similarity index 100% rename from java/ql/lib/ext/generated/java.rmi.server.model.yml rename to java/ql/lib/ext/generated/modelgenerator/java.rmi.server.model.yml diff --git a/java/ql/lib/ext/generated/java.security.cert.model.yml b/java/ql/lib/ext/generated/modelgenerator/java.security.cert.model.yml similarity index 100% rename from java/ql/lib/ext/generated/java.security.cert.model.yml rename to java/ql/lib/ext/generated/modelgenerator/java.security.cert.model.yml diff --git a/java/ql/lib/ext/generated/java.security.interfaces.model.yml b/java/ql/lib/ext/generated/modelgenerator/java.security.interfaces.model.yml similarity index 100% rename from java/ql/lib/ext/generated/java.security.interfaces.model.yml rename to java/ql/lib/ext/generated/modelgenerator/java.security.interfaces.model.yml diff --git a/java/ql/lib/ext/generated/java.security.model.yml b/java/ql/lib/ext/generated/modelgenerator/java.security.model.yml similarity index 100% rename from java/ql/lib/ext/generated/java.security.model.yml rename to java/ql/lib/ext/generated/modelgenerator/java.security.model.yml diff --git a/java/ql/lib/ext/generated/java.security.spec.model.yml b/java/ql/lib/ext/generated/modelgenerator/java.security.spec.model.yml similarity index 100% rename from java/ql/lib/ext/generated/java.security.spec.model.yml rename to java/ql/lib/ext/generated/modelgenerator/java.security.spec.model.yml diff --git a/java/ql/lib/ext/generated/java.sql.model.yml b/java/ql/lib/ext/generated/modelgenerator/java.sql.model.yml similarity index 100% rename from java/ql/lib/ext/generated/java.sql.model.yml rename to java/ql/lib/ext/generated/modelgenerator/java.sql.model.yml diff --git a/java/ql/lib/ext/generated/java.text.model.yml b/java/ql/lib/ext/generated/modelgenerator/java.text.model.yml similarity index 100% rename from java/ql/lib/ext/generated/java.text.model.yml rename to java/ql/lib/ext/generated/modelgenerator/java.text.model.yml diff --git a/java/ql/lib/ext/generated/java.text.spi.model.yml b/java/ql/lib/ext/generated/modelgenerator/java.text.spi.model.yml similarity index 100% rename from java/ql/lib/ext/generated/java.text.spi.model.yml rename to java/ql/lib/ext/generated/modelgenerator/java.text.spi.model.yml diff --git a/java/ql/lib/ext/generated/java.time.chrono.model.yml b/java/ql/lib/ext/generated/modelgenerator/java.time.chrono.model.yml similarity index 100% rename from java/ql/lib/ext/generated/java.time.chrono.model.yml rename to java/ql/lib/ext/generated/modelgenerator/java.time.chrono.model.yml diff --git a/java/ql/lib/ext/generated/java.time.format.model.yml b/java/ql/lib/ext/generated/modelgenerator/java.time.format.model.yml similarity index 100% rename from java/ql/lib/ext/generated/java.time.format.model.yml rename to java/ql/lib/ext/generated/modelgenerator/java.time.format.model.yml diff --git a/java/ql/lib/ext/generated/java.time.model.yml b/java/ql/lib/ext/generated/modelgenerator/java.time.model.yml similarity index 100% rename from java/ql/lib/ext/generated/java.time.model.yml rename to java/ql/lib/ext/generated/modelgenerator/java.time.model.yml diff --git a/java/ql/lib/ext/generated/java.time.temporal.model.yml b/java/ql/lib/ext/generated/modelgenerator/java.time.temporal.model.yml similarity index 100% rename from java/ql/lib/ext/generated/java.time.temporal.model.yml rename to java/ql/lib/ext/generated/modelgenerator/java.time.temporal.model.yml diff --git a/java/ql/lib/ext/generated/java.time.zone.model.yml b/java/ql/lib/ext/generated/modelgenerator/java.time.zone.model.yml similarity index 100% rename from java/ql/lib/ext/generated/java.time.zone.model.yml rename to java/ql/lib/ext/generated/modelgenerator/java.time.zone.model.yml diff --git a/java/ql/lib/ext/generated/java.util.concurrent.atomic.model.yml b/java/ql/lib/ext/generated/modelgenerator/java.util.concurrent.atomic.model.yml similarity index 100% rename from java/ql/lib/ext/generated/java.util.concurrent.atomic.model.yml rename to java/ql/lib/ext/generated/modelgenerator/java.util.concurrent.atomic.model.yml diff --git a/java/ql/lib/ext/generated/java.util.concurrent.locks.model.yml b/java/ql/lib/ext/generated/modelgenerator/java.util.concurrent.locks.model.yml similarity index 100% rename from java/ql/lib/ext/generated/java.util.concurrent.locks.model.yml rename to java/ql/lib/ext/generated/modelgenerator/java.util.concurrent.locks.model.yml diff --git a/java/ql/lib/ext/generated/java.util.concurrent.model.yml b/java/ql/lib/ext/generated/modelgenerator/java.util.concurrent.model.yml similarity index 100% rename from java/ql/lib/ext/generated/java.util.concurrent.model.yml rename to java/ql/lib/ext/generated/modelgenerator/java.util.concurrent.model.yml diff --git a/java/ql/lib/ext/generated/java.util.function.model.yml b/java/ql/lib/ext/generated/modelgenerator/java.util.function.model.yml similarity index 100% rename from java/ql/lib/ext/generated/java.util.function.model.yml rename to java/ql/lib/ext/generated/modelgenerator/java.util.function.model.yml diff --git a/java/ql/lib/ext/generated/java.util.jar.model.yml b/java/ql/lib/ext/generated/modelgenerator/java.util.jar.model.yml similarity index 100% rename from java/ql/lib/ext/generated/java.util.jar.model.yml rename to java/ql/lib/ext/generated/modelgenerator/java.util.jar.model.yml diff --git a/java/ql/lib/ext/generated/java.util.logging.model.yml b/java/ql/lib/ext/generated/modelgenerator/java.util.logging.model.yml similarity index 100% rename from java/ql/lib/ext/generated/java.util.logging.model.yml rename to java/ql/lib/ext/generated/modelgenerator/java.util.logging.model.yml diff --git a/java/ql/lib/ext/generated/java.util.model.yml b/java/ql/lib/ext/generated/modelgenerator/java.util.model.yml similarity index 100% rename from java/ql/lib/ext/generated/java.util.model.yml rename to java/ql/lib/ext/generated/modelgenerator/java.util.model.yml diff --git a/java/ql/lib/ext/generated/java.util.prefs.model.yml b/java/ql/lib/ext/generated/modelgenerator/java.util.prefs.model.yml similarity index 100% rename from java/ql/lib/ext/generated/java.util.prefs.model.yml rename to java/ql/lib/ext/generated/modelgenerator/java.util.prefs.model.yml diff --git a/java/ql/lib/ext/generated/java.util.random.model.yml b/java/ql/lib/ext/generated/modelgenerator/java.util.random.model.yml similarity index 100% rename from java/ql/lib/ext/generated/java.util.random.model.yml rename to java/ql/lib/ext/generated/modelgenerator/java.util.random.model.yml diff --git a/java/ql/lib/ext/generated/java.util.regex.model.yml b/java/ql/lib/ext/generated/modelgenerator/java.util.regex.model.yml similarity index 100% rename from java/ql/lib/ext/generated/java.util.regex.model.yml rename to java/ql/lib/ext/generated/modelgenerator/java.util.regex.model.yml diff --git a/java/ql/lib/ext/generated/java.util.spi.model.yml b/java/ql/lib/ext/generated/modelgenerator/java.util.spi.model.yml similarity index 100% rename from java/ql/lib/ext/generated/java.util.spi.model.yml rename to java/ql/lib/ext/generated/modelgenerator/java.util.spi.model.yml diff --git a/java/ql/lib/ext/generated/java.util.stream.model.yml b/java/ql/lib/ext/generated/modelgenerator/java.util.stream.model.yml similarity index 100% rename from java/ql/lib/ext/generated/java.util.stream.model.yml rename to java/ql/lib/ext/generated/modelgenerator/java.util.stream.model.yml diff --git a/java/ql/lib/ext/generated/java.util.zip.model.yml b/java/ql/lib/ext/generated/modelgenerator/java.util.zip.model.yml similarity index 100% rename from java/ql/lib/ext/generated/java.util.zip.model.yml rename to java/ql/lib/ext/generated/modelgenerator/java.util.zip.model.yml diff --git a/java/ql/lib/ext/generated/javax.accessibility.model.yml b/java/ql/lib/ext/generated/modelgenerator/javax.accessibility.model.yml similarity index 100% rename from java/ql/lib/ext/generated/javax.accessibility.model.yml rename to java/ql/lib/ext/generated/modelgenerator/javax.accessibility.model.yml diff --git a/java/ql/lib/ext/generated/javax.annotation.processing.model.yml b/java/ql/lib/ext/generated/modelgenerator/javax.annotation.processing.model.yml similarity index 100% rename from java/ql/lib/ext/generated/javax.annotation.processing.model.yml rename to java/ql/lib/ext/generated/modelgenerator/javax.annotation.processing.model.yml diff --git a/java/ql/lib/ext/generated/javax.crypto.interfaces.model.yml b/java/ql/lib/ext/generated/modelgenerator/javax.crypto.interfaces.model.yml similarity index 100% rename from java/ql/lib/ext/generated/javax.crypto.interfaces.model.yml rename to java/ql/lib/ext/generated/modelgenerator/javax.crypto.interfaces.model.yml diff --git a/java/ql/lib/ext/generated/javax.crypto.model.yml b/java/ql/lib/ext/generated/modelgenerator/javax.crypto.model.yml similarity index 100% rename from java/ql/lib/ext/generated/javax.crypto.model.yml rename to java/ql/lib/ext/generated/modelgenerator/javax.crypto.model.yml diff --git a/java/ql/lib/ext/generated/javax.crypto.spec.model.yml b/java/ql/lib/ext/generated/modelgenerator/javax.crypto.spec.model.yml similarity index 100% rename from java/ql/lib/ext/generated/javax.crypto.spec.model.yml rename to java/ql/lib/ext/generated/modelgenerator/javax.crypto.spec.model.yml diff --git a/java/ql/lib/ext/generated/javax.imageio.metadata.model.yml b/java/ql/lib/ext/generated/modelgenerator/javax.imageio.metadata.model.yml similarity index 100% rename from java/ql/lib/ext/generated/javax.imageio.metadata.model.yml rename to java/ql/lib/ext/generated/modelgenerator/javax.imageio.metadata.model.yml diff --git a/java/ql/lib/ext/generated/javax.imageio.model.yml b/java/ql/lib/ext/generated/modelgenerator/javax.imageio.model.yml similarity index 100% rename from java/ql/lib/ext/generated/javax.imageio.model.yml rename to java/ql/lib/ext/generated/modelgenerator/javax.imageio.model.yml diff --git a/java/ql/lib/ext/generated/javax.imageio.plugins.bmp.model.yml b/java/ql/lib/ext/generated/modelgenerator/javax.imageio.plugins.bmp.model.yml similarity index 100% rename from java/ql/lib/ext/generated/javax.imageio.plugins.bmp.model.yml rename to java/ql/lib/ext/generated/modelgenerator/javax.imageio.plugins.bmp.model.yml diff --git a/java/ql/lib/ext/generated/javax.imageio.plugins.jpeg.model.yml b/java/ql/lib/ext/generated/modelgenerator/javax.imageio.plugins.jpeg.model.yml similarity index 100% rename from java/ql/lib/ext/generated/javax.imageio.plugins.jpeg.model.yml rename to java/ql/lib/ext/generated/modelgenerator/javax.imageio.plugins.jpeg.model.yml diff --git a/java/ql/lib/ext/generated/javax.imageio.plugins.tiff.model.yml b/java/ql/lib/ext/generated/modelgenerator/javax.imageio.plugins.tiff.model.yml similarity index 100% rename from java/ql/lib/ext/generated/javax.imageio.plugins.tiff.model.yml rename to java/ql/lib/ext/generated/modelgenerator/javax.imageio.plugins.tiff.model.yml diff --git a/java/ql/lib/ext/generated/javax.imageio.spi.model.yml b/java/ql/lib/ext/generated/modelgenerator/javax.imageio.spi.model.yml similarity index 100% rename from java/ql/lib/ext/generated/javax.imageio.spi.model.yml rename to java/ql/lib/ext/generated/modelgenerator/javax.imageio.spi.model.yml diff --git a/java/ql/lib/ext/generated/javax.imageio.stream.model.yml b/java/ql/lib/ext/generated/modelgenerator/javax.imageio.stream.model.yml similarity index 100% rename from java/ql/lib/ext/generated/javax.imageio.stream.model.yml rename to java/ql/lib/ext/generated/modelgenerator/javax.imageio.stream.model.yml diff --git a/java/ql/lib/ext/generated/javax.lang.model.element.model.yml b/java/ql/lib/ext/generated/modelgenerator/javax.lang.model.element.model.yml similarity index 100% rename from java/ql/lib/ext/generated/javax.lang.model.element.model.yml rename to java/ql/lib/ext/generated/modelgenerator/javax.lang.model.element.model.yml diff --git a/java/ql/lib/ext/generated/javax.lang.model.model.yml b/java/ql/lib/ext/generated/modelgenerator/javax.lang.model.model.yml similarity index 100% rename from java/ql/lib/ext/generated/javax.lang.model.model.yml rename to java/ql/lib/ext/generated/modelgenerator/javax.lang.model.model.yml diff --git a/java/ql/lib/ext/generated/javax.lang.model.type.model.yml b/java/ql/lib/ext/generated/modelgenerator/javax.lang.model.type.model.yml similarity index 100% rename from java/ql/lib/ext/generated/javax.lang.model.type.model.yml rename to java/ql/lib/ext/generated/modelgenerator/javax.lang.model.type.model.yml diff --git a/java/ql/lib/ext/generated/javax.lang.model.util.model.yml b/java/ql/lib/ext/generated/modelgenerator/javax.lang.model.util.model.yml similarity index 100% rename from java/ql/lib/ext/generated/javax.lang.model.util.model.yml rename to java/ql/lib/ext/generated/modelgenerator/javax.lang.model.util.model.yml diff --git a/java/ql/lib/ext/generated/javax.management.loading.model.yml b/java/ql/lib/ext/generated/modelgenerator/javax.management.loading.model.yml similarity index 100% rename from java/ql/lib/ext/generated/javax.management.loading.model.yml rename to java/ql/lib/ext/generated/modelgenerator/javax.management.loading.model.yml diff --git a/java/ql/lib/ext/generated/javax.management.model.yml b/java/ql/lib/ext/generated/modelgenerator/javax.management.model.yml similarity index 100% rename from java/ql/lib/ext/generated/javax.management.model.yml rename to java/ql/lib/ext/generated/modelgenerator/javax.management.model.yml diff --git a/java/ql/lib/ext/generated/javax.management.modelmbean.model.yml b/java/ql/lib/ext/generated/modelgenerator/javax.management.modelmbean.model.yml similarity index 100% rename from java/ql/lib/ext/generated/javax.management.modelmbean.model.yml rename to java/ql/lib/ext/generated/modelgenerator/javax.management.modelmbean.model.yml diff --git a/java/ql/lib/ext/generated/javax.management.monitor.model.yml b/java/ql/lib/ext/generated/modelgenerator/javax.management.monitor.model.yml similarity index 100% rename from java/ql/lib/ext/generated/javax.management.monitor.model.yml rename to java/ql/lib/ext/generated/modelgenerator/javax.management.monitor.model.yml diff --git a/java/ql/lib/ext/generated/javax.management.openmbean.model.yml b/java/ql/lib/ext/generated/modelgenerator/javax.management.openmbean.model.yml similarity index 100% rename from java/ql/lib/ext/generated/javax.management.openmbean.model.yml rename to java/ql/lib/ext/generated/modelgenerator/javax.management.openmbean.model.yml diff --git a/java/ql/lib/ext/generated/javax.management.relation.model.yml b/java/ql/lib/ext/generated/modelgenerator/javax.management.relation.model.yml similarity index 100% rename from java/ql/lib/ext/generated/javax.management.relation.model.yml rename to java/ql/lib/ext/generated/modelgenerator/javax.management.relation.model.yml diff --git a/java/ql/lib/ext/generated/javax.management.remote.model.yml b/java/ql/lib/ext/generated/modelgenerator/javax.management.remote.model.yml similarity index 100% rename from java/ql/lib/ext/generated/javax.management.remote.model.yml rename to java/ql/lib/ext/generated/modelgenerator/javax.management.remote.model.yml diff --git a/java/ql/lib/ext/generated/javax.management.remote.rmi.model.yml b/java/ql/lib/ext/generated/modelgenerator/javax.management.remote.rmi.model.yml similarity index 100% rename from java/ql/lib/ext/generated/javax.management.remote.rmi.model.yml rename to java/ql/lib/ext/generated/modelgenerator/javax.management.remote.rmi.model.yml diff --git a/java/ql/lib/ext/generated/javax.management.timer.model.yml b/java/ql/lib/ext/generated/modelgenerator/javax.management.timer.model.yml similarity index 100% rename from java/ql/lib/ext/generated/javax.management.timer.model.yml rename to java/ql/lib/ext/generated/modelgenerator/javax.management.timer.model.yml diff --git a/java/ql/lib/ext/generated/javax.naming.directory.model.yml b/java/ql/lib/ext/generated/modelgenerator/javax.naming.directory.model.yml similarity index 100% rename from java/ql/lib/ext/generated/javax.naming.directory.model.yml rename to java/ql/lib/ext/generated/modelgenerator/javax.naming.directory.model.yml diff --git a/java/ql/lib/ext/generated/javax.naming.event.model.yml b/java/ql/lib/ext/generated/modelgenerator/javax.naming.event.model.yml similarity index 100% rename from java/ql/lib/ext/generated/javax.naming.event.model.yml rename to java/ql/lib/ext/generated/modelgenerator/javax.naming.event.model.yml diff --git a/java/ql/lib/ext/generated/javax.naming.ldap.model.yml b/java/ql/lib/ext/generated/modelgenerator/javax.naming.ldap.model.yml similarity index 100% rename from java/ql/lib/ext/generated/javax.naming.ldap.model.yml rename to java/ql/lib/ext/generated/modelgenerator/javax.naming.ldap.model.yml diff --git a/java/ql/lib/ext/generated/javax.naming.ldap.spi.model.yml b/java/ql/lib/ext/generated/modelgenerator/javax.naming.ldap.spi.model.yml similarity index 100% rename from java/ql/lib/ext/generated/javax.naming.ldap.spi.model.yml rename to java/ql/lib/ext/generated/modelgenerator/javax.naming.ldap.spi.model.yml diff --git a/java/ql/lib/ext/generated/javax.naming.model.yml b/java/ql/lib/ext/generated/modelgenerator/javax.naming.model.yml similarity index 100% rename from java/ql/lib/ext/generated/javax.naming.model.yml rename to java/ql/lib/ext/generated/modelgenerator/javax.naming.model.yml diff --git a/java/ql/lib/ext/generated/javax.naming.spi.model.yml b/java/ql/lib/ext/generated/modelgenerator/javax.naming.spi.model.yml similarity index 100% rename from java/ql/lib/ext/generated/javax.naming.spi.model.yml rename to java/ql/lib/ext/generated/modelgenerator/javax.naming.spi.model.yml diff --git a/java/ql/lib/ext/generated/javax.net.model.yml b/java/ql/lib/ext/generated/modelgenerator/javax.net.model.yml similarity index 100% rename from java/ql/lib/ext/generated/javax.net.model.yml rename to java/ql/lib/ext/generated/modelgenerator/javax.net.model.yml diff --git a/java/ql/lib/ext/generated/javax.net.ssl.model.yml b/java/ql/lib/ext/generated/modelgenerator/javax.net.ssl.model.yml similarity index 100% rename from java/ql/lib/ext/generated/javax.net.ssl.model.yml rename to java/ql/lib/ext/generated/modelgenerator/javax.net.ssl.model.yml diff --git a/java/ql/lib/ext/generated/javax.print.attribute.model.yml b/java/ql/lib/ext/generated/modelgenerator/javax.print.attribute.model.yml similarity index 100% rename from java/ql/lib/ext/generated/javax.print.attribute.model.yml rename to java/ql/lib/ext/generated/modelgenerator/javax.print.attribute.model.yml diff --git a/java/ql/lib/ext/generated/javax.print.attribute.standard.model.yml b/java/ql/lib/ext/generated/modelgenerator/javax.print.attribute.standard.model.yml similarity index 100% rename from java/ql/lib/ext/generated/javax.print.attribute.standard.model.yml rename to java/ql/lib/ext/generated/modelgenerator/javax.print.attribute.standard.model.yml diff --git a/java/ql/lib/ext/generated/javax.print.event.model.yml b/java/ql/lib/ext/generated/modelgenerator/javax.print.event.model.yml similarity index 100% rename from java/ql/lib/ext/generated/javax.print.event.model.yml rename to java/ql/lib/ext/generated/modelgenerator/javax.print.event.model.yml diff --git a/java/ql/lib/ext/generated/javax.print.model.yml b/java/ql/lib/ext/generated/modelgenerator/javax.print.model.yml similarity index 100% rename from java/ql/lib/ext/generated/javax.print.model.yml rename to java/ql/lib/ext/generated/modelgenerator/javax.print.model.yml diff --git a/java/ql/lib/ext/generated/javax.rmi.ssl.model.yml b/java/ql/lib/ext/generated/modelgenerator/javax.rmi.ssl.model.yml similarity index 100% rename from java/ql/lib/ext/generated/javax.rmi.ssl.model.yml rename to java/ql/lib/ext/generated/modelgenerator/javax.rmi.ssl.model.yml diff --git a/java/ql/lib/ext/generated/javax.script.model.yml b/java/ql/lib/ext/generated/modelgenerator/javax.script.model.yml similarity index 100% rename from java/ql/lib/ext/generated/javax.script.model.yml rename to java/ql/lib/ext/generated/modelgenerator/javax.script.model.yml diff --git a/java/ql/lib/ext/generated/javax.security.auth.callback.model.yml b/java/ql/lib/ext/generated/modelgenerator/javax.security.auth.callback.model.yml similarity index 100% rename from java/ql/lib/ext/generated/javax.security.auth.callback.model.yml rename to java/ql/lib/ext/generated/modelgenerator/javax.security.auth.callback.model.yml diff --git a/java/ql/lib/ext/generated/javax.security.auth.kerberos.model.yml b/java/ql/lib/ext/generated/modelgenerator/javax.security.auth.kerberos.model.yml similarity index 100% rename from java/ql/lib/ext/generated/javax.security.auth.kerberos.model.yml rename to java/ql/lib/ext/generated/modelgenerator/javax.security.auth.kerberos.model.yml diff --git a/java/ql/lib/ext/generated/javax.security.auth.login.model.yml b/java/ql/lib/ext/generated/modelgenerator/javax.security.auth.login.model.yml similarity index 100% rename from java/ql/lib/ext/generated/javax.security.auth.login.model.yml rename to java/ql/lib/ext/generated/modelgenerator/javax.security.auth.login.model.yml diff --git a/java/ql/lib/ext/generated/javax.security.auth.model.yml b/java/ql/lib/ext/generated/modelgenerator/javax.security.auth.model.yml similarity index 100% rename from java/ql/lib/ext/generated/javax.security.auth.model.yml rename to java/ql/lib/ext/generated/modelgenerator/javax.security.auth.model.yml diff --git a/java/ql/lib/ext/generated/javax.security.auth.spi.model.yml b/java/ql/lib/ext/generated/modelgenerator/javax.security.auth.spi.model.yml similarity index 100% rename from java/ql/lib/ext/generated/javax.security.auth.spi.model.yml rename to java/ql/lib/ext/generated/modelgenerator/javax.security.auth.spi.model.yml diff --git a/java/ql/lib/ext/generated/javax.security.auth.x500.model.yml b/java/ql/lib/ext/generated/modelgenerator/javax.security.auth.x500.model.yml similarity index 100% rename from java/ql/lib/ext/generated/javax.security.auth.x500.model.yml rename to java/ql/lib/ext/generated/modelgenerator/javax.security.auth.x500.model.yml diff --git a/java/ql/lib/ext/generated/javax.security.cert.model.yml b/java/ql/lib/ext/generated/modelgenerator/javax.security.cert.model.yml similarity index 100% rename from java/ql/lib/ext/generated/javax.security.cert.model.yml rename to java/ql/lib/ext/generated/modelgenerator/javax.security.cert.model.yml diff --git a/java/ql/lib/ext/generated/javax.security.sasl.model.yml b/java/ql/lib/ext/generated/modelgenerator/javax.security.sasl.model.yml similarity index 100% rename from java/ql/lib/ext/generated/javax.security.sasl.model.yml rename to java/ql/lib/ext/generated/modelgenerator/javax.security.sasl.model.yml diff --git a/java/ql/lib/ext/generated/javax.smartcardio.model.yml b/java/ql/lib/ext/generated/modelgenerator/javax.smartcardio.model.yml similarity index 100% rename from java/ql/lib/ext/generated/javax.smartcardio.model.yml rename to java/ql/lib/ext/generated/modelgenerator/javax.smartcardio.model.yml diff --git a/java/ql/lib/ext/generated/javax.sound.midi.model.yml b/java/ql/lib/ext/generated/modelgenerator/javax.sound.midi.model.yml similarity index 100% rename from java/ql/lib/ext/generated/javax.sound.midi.model.yml rename to java/ql/lib/ext/generated/modelgenerator/javax.sound.midi.model.yml diff --git a/java/ql/lib/ext/generated/javax.sound.midi.spi.model.yml b/java/ql/lib/ext/generated/modelgenerator/javax.sound.midi.spi.model.yml similarity index 100% rename from java/ql/lib/ext/generated/javax.sound.midi.spi.model.yml rename to java/ql/lib/ext/generated/modelgenerator/javax.sound.midi.spi.model.yml diff --git a/java/ql/lib/ext/generated/javax.sound.sampled.model.yml b/java/ql/lib/ext/generated/modelgenerator/javax.sound.sampled.model.yml similarity index 100% rename from java/ql/lib/ext/generated/javax.sound.sampled.model.yml rename to java/ql/lib/ext/generated/modelgenerator/javax.sound.sampled.model.yml diff --git a/java/ql/lib/ext/generated/javax.sound.sampled.spi.model.yml b/java/ql/lib/ext/generated/modelgenerator/javax.sound.sampled.spi.model.yml similarity index 100% rename from java/ql/lib/ext/generated/javax.sound.sampled.spi.model.yml rename to java/ql/lib/ext/generated/modelgenerator/javax.sound.sampled.spi.model.yml diff --git a/java/ql/lib/ext/generated/javax.sql.model.yml b/java/ql/lib/ext/generated/modelgenerator/javax.sql.model.yml similarity index 100% rename from java/ql/lib/ext/generated/javax.sql.model.yml rename to java/ql/lib/ext/generated/modelgenerator/javax.sql.model.yml diff --git a/java/ql/lib/ext/generated/javax.sql.rowset.model.yml b/java/ql/lib/ext/generated/modelgenerator/javax.sql.rowset.model.yml similarity index 100% rename from java/ql/lib/ext/generated/javax.sql.rowset.model.yml rename to java/ql/lib/ext/generated/modelgenerator/javax.sql.rowset.model.yml diff --git a/java/ql/lib/ext/generated/javax.sql.rowset.serial.model.yml b/java/ql/lib/ext/generated/modelgenerator/javax.sql.rowset.serial.model.yml similarity index 100% rename from java/ql/lib/ext/generated/javax.sql.rowset.serial.model.yml rename to java/ql/lib/ext/generated/modelgenerator/javax.sql.rowset.serial.model.yml diff --git a/java/ql/lib/ext/generated/javax.sql.rowset.spi.model.yml b/java/ql/lib/ext/generated/modelgenerator/javax.sql.rowset.spi.model.yml similarity index 100% rename from java/ql/lib/ext/generated/javax.sql.rowset.spi.model.yml rename to java/ql/lib/ext/generated/modelgenerator/javax.sql.rowset.spi.model.yml diff --git a/java/ql/lib/ext/generated/javax.tools.model.yml b/java/ql/lib/ext/generated/modelgenerator/javax.tools.model.yml similarity index 100% rename from java/ql/lib/ext/generated/javax.tools.model.yml rename to java/ql/lib/ext/generated/modelgenerator/javax.tools.model.yml diff --git a/java/ql/lib/ext/generated/javax.transaction.xa.model.yml b/java/ql/lib/ext/generated/modelgenerator/javax.transaction.xa.model.yml similarity index 100% rename from java/ql/lib/ext/generated/javax.transaction.xa.model.yml rename to java/ql/lib/ext/generated/modelgenerator/javax.transaction.xa.model.yml diff --git a/java/ql/lib/ext/generated/javax.xml.catalog.model.yml b/java/ql/lib/ext/generated/modelgenerator/javax.xml.catalog.model.yml similarity index 100% rename from java/ql/lib/ext/generated/javax.xml.catalog.model.yml rename to java/ql/lib/ext/generated/modelgenerator/javax.xml.catalog.model.yml diff --git a/java/ql/lib/ext/generated/javax.xml.crypto.dom.model.yml b/java/ql/lib/ext/generated/modelgenerator/javax.xml.crypto.dom.model.yml similarity index 100% rename from java/ql/lib/ext/generated/javax.xml.crypto.dom.model.yml rename to java/ql/lib/ext/generated/modelgenerator/javax.xml.crypto.dom.model.yml diff --git a/java/ql/lib/ext/generated/javax.xml.crypto.dsig.dom.model.yml b/java/ql/lib/ext/generated/modelgenerator/javax.xml.crypto.dsig.dom.model.yml similarity index 100% rename from java/ql/lib/ext/generated/javax.xml.crypto.dsig.dom.model.yml rename to java/ql/lib/ext/generated/modelgenerator/javax.xml.crypto.dsig.dom.model.yml diff --git a/java/ql/lib/ext/generated/javax.xml.crypto.dsig.keyinfo.model.yml b/java/ql/lib/ext/generated/modelgenerator/javax.xml.crypto.dsig.keyinfo.model.yml similarity index 100% rename from java/ql/lib/ext/generated/javax.xml.crypto.dsig.keyinfo.model.yml rename to java/ql/lib/ext/generated/modelgenerator/javax.xml.crypto.dsig.keyinfo.model.yml diff --git a/java/ql/lib/ext/generated/javax.xml.crypto.dsig.model.yml b/java/ql/lib/ext/generated/modelgenerator/javax.xml.crypto.dsig.model.yml similarity index 100% rename from java/ql/lib/ext/generated/javax.xml.crypto.dsig.model.yml rename to java/ql/lib/ext/generated/modelgenerator/javax.xml.crypto.dsig.model.yml diff --git a/java/ql/lib/ext/generated/javax.xml.crypto.dsig.spec.model.yml b/java/ql/lib/ext/generated/modelgenerator/javax.xml.crypto.dsig.spec.model.yml similarity index 100% rename from java/ql/lib/ext/generated/javax.xml.crypto.dsig.spec.model.yml rename to java/ql/lib/ext/generated/modelgenerator/javax.xml.crypto.dsig.spec.model.yml diff --git a/java/ql/lib/ext/generated/javax.xml.crypto.model.yml b/java/ql/lib/ext/generated/modelgenerator/javax.xml.crypto.model.yml similarity index 100% rename from java/ql/lib/ext/generated/javax.xml.crypto.model.yml rename to java/ql/lib/ext/generated/modelgenerator/javax.xml.crypto.model.yml diff --git a/java/ql/lib/ext/generated/javax.xml.datatype.model.yml b/java/ql/lib/ext/generated/modelgenerator/javax.xml.datatype.model.yml similarity index 100% rename from java/ql/lib/ext/generated/javax.xml.datatype.model.yml rename to java/ql/lib/ext/generated/modelgenerator/javax.xml.datatype.model.yml diff --git a/java/ql/lib/ext/generated/javax.xml.namespace.model.yml b/java/ql/lib/ext/generated/modelgenerator/javax.xml.namespace.model.yml similarity index 100% rename from java/ql/lib/ext/generated/javax.xml.namespace.model.yml rename to java/ql/lib/ext/generated/modelgenerator/javax.xml.namespace.model.yml diff --git a/java/ql/lib/ext/generated/javax.xml.parsers.model.yml b/java/ql/lib/ext/generated/modelgenerator/javax.xml.parsers.model.yml similarity index 100% rename from java/ql/lib/ext/generated/javax.xml.parsers.model.yml rename to java/ql/lib/ext/generated/modelgenerator/javax.xml.parsers.model.yml diff --git a/java/ql/lib/ext/generated/javax.xml.stream.events.model.yml b/java/ql/lib/ext/generated/modelgenerator/javax.xml.stream.events.model.yml similarity index 100% rename from java/ql/lib/ext/generated/javax.xml.stream.events.model.yml rename to java/ql/lib/ext/generated/modelgenerator/javax.xml.stream.events.model.yml diff --git a/java/ql/lib/ext/generated/javax.xml.stream.model.yml b/java/ql/lib/ext/generated/modelgenerator/javax.xml.stream.model.yml similarity index 100% rename from java/ql/lib/ext/generated/javax.xml.stream.model.yml rename to java/ql/lib/ext/generated/modelgenerator/javax.xml.stream.model.yml diff --git a/java/ql/lib/ext/generated/javax.xml.stream.util.model.yml b/java/ql/lib/ext/generated/modelgenerator/javax.xml.stream.util.model.yml similarity index 100% rename from java/ql/lib/ext/generated/javax.xml.stream.util.model.yml rename to java/ql/lib/ext/generated/modelgenerator/javax.xml.stream.util.model.yml diff --git a/java/ql/lib/ext/generated/javax.xml.transform.dom.model.yml b/java/ql/lib/ext/generated/modelgenerator/javax.xml.transform.dom.model.yml similarity index 100% rename from java/ql/lib/ext/generated/javax.xml.transform.dom.model.yml rename to java/ql/lib/ext/generated/modelgenerator/javax.xml.transform.dom.model.yml diff --git a/java/ql/lib/ext/generated/javax.xml.transform.model.yml b/java/ql/lib/ext/generated/modelgenerator/javax.xml.transform.model.yml similarity index 100% rename from java/ql/lib/ext/generated/javax.xml.transform.model.yml rename to java/ql/lib/ext/generated/modelgenerator/javax.xml.transform.model.yml diff --git a/java/ql/lib/ext/generated/javax.xml.transform.sax.model.yml b/java/ql/lib/ext/generated/modelgenerator/javax.xml.transform.sax.model.yml similarity index 100% rename from java/ql/lib/ext/generated/javax.xml.transform.sax.model.yml rename to java/ql/lib/ext/generated/modelgenerator/javax.xml.transform.sax.model.yml diff --git a/java/ql/lib/ext/generated/javax.xml.transform.stax.model.yml b/java/ql/lib/ext/generated/modelgenerator/javax.xml.transform.stax.model.yml similarity index 100% rename from java/ql/lib/ext/generated/javax.xml.transform.stax.model.yml rename to java/ql/lib/ext/generated/modelgenerator/javax.xml.transform.stax.model.yml diff --git a/java/ql/lib/ext/generated/javax.xml.transform.stream.model.yml b/java/ql/lib/ext/generated/modelgenerator/javax.xml.transform.stream.model.yml similarity index 100% rename from java/ql/lib/ext/generated/javax.xml.transform.stream.model.yml rename to java/ql/lib/ext/generated/modelgenerator/javax.xml.transform.stream.model.yml diff --git a/java/ql/lib/ext/generated/javax.xml.validation.model.yml b/java/ql/lib/ext/generated/modelgenerator/javax.xml.validation.model.yml similarity index 100% rename from java/ql/lib/ext/generated/javax.xml.validation.model.yml rename to java/ql/lib/ext/generated/modelgenerator/javax.xml.validation.model.yml diff --git a/java/ql/lib/ext/generated/javax.xml.xpath.model.yml b/java/ql/lib/ext/generated/modelgenerator/javax.xml.xpath.model.yml similarity index 100% rename from java/ql/lib/ext/generated/javax.xml.xpath.model.yml rename to java/ql/lib/ext/generated/modelgenerator/javax.xml.xpath.model.yml diff --git a/java/ql/lib/ext/generated/jenkins-json-lib.model.yml b/java/ql/lib/ext/generated/modelgenerator/jenkins-json-lib.model.yml similarity index 100% rename from java/ql/lib/ext/generated/jenkins-json-lib.model.yml rename to java/ql/lib/ext/generated/modelgenerator/jenkins-json-lib.model.yml diff --git a/java/ql/lib/ext/generated/jenkins.model.yml b/java/ql/lib/ext/generated/modelgenerator/jenkins.model.yml similarity index 100% rename from java/ql/lib/ext/generated/jenkins.model.yml rename to java/ql/lib/ext/generated/modelgenerator/jenkins.model.yml diff --git a/java/ql/lib/ext/generated/kotlinstdlib.model.yml b/java/ql/lib/ext/generated/modelgenerator/kotlinstdlib.model.yml similarity index 100% rename from java/ql/lib/ext/generated/kotlinstdlib.model.yml rename to java/ql/lib/ext/generated/modelgenerator/kotlinstdlib.model.yml diff --git a/java/ql/lib/ext/generated/org.apache.commons.io.model.yml b/java/ql/lib/ext/generated/modelgenerator/org.apache.commons.io.model.yml similarity index 100% rename from java/ql/lib/ext/generated/org.apache.commons.io.model.yml rename to java/ql/lib/ext/generated/modelgenerator/org.apache.commons.io.model.yml diff --git a/java/ql/lib/ext/generated/org.apache.commons.lang.model.yml b/java/ql/lib/ext/generated/modelgenerator/org.apache.commons.lang.model.yml similarity index 100% rename from java/ql/lib/ext/generated/org.apache.commons.lang.model.yml rename to java/ql/lib/ext/generated/modelgenerator/org.apache.commons.lang.model.yml diff --git a/java/ql/lib/ext/generated/stapler.model.yml b/java/ql/lib/ext/generated/modelgenerator/stapler.model.yml similarity index 100% rename from java/ql/lib/ext/generated/stapler.model.yml rename to java/ql/lib/ext/generated/modelgenerator/stapler.model.yml diff --git a/java/ql/lib/ext/generated/struts2.model.yml b/java/ql/lib/ext/generated/modelgenerator/struts2.model.yml similarity index 100% rename from java/ql/lib/ext/generated/struts2.model.yml rename to java/ql/lib/ext/generated/modelgenerator/struts2.model.yml diff --git a/java/ql/lib/qlpack.yml b/java/ql/lib/qlpack.yml index efa1d011ea57..d256d2a84c13 100644 --- a/java/ql/lib/qlpack.yml +++ b/java/ql/lib/qlpack.yml @@ -20,7 +20,7 @@ dependencies: codeql/xml: ${workspace} dataExtensions: - ext/*.model.yml - - ext/generated/*.model.yml + - ext/generated/**/*.model.yml - ext/experimental/*.model.yml warnOnImplicitThis: true compileForOverlayEval: true From 07cb9803f05347705c9bbc9247ad21a4d10c8ca1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jack=20N=C3=B8rskov=20J=C3=B8rgensen?= Date: Fri, 24 Apr 2026 08:35:50 +0200 Subject: [PATCH 039/260] Move generated MaDs for CPP into modelgenerator/ --- .../ext/generated/{ => modelgenerator}/brotli/brotli.model.yml | 0 cpp/ql/lib/ext/generated/{ => modelgenerator}/curl/curl.model.yml | 0 .../lib/ext/generated/{ => modelgenerator}/glibc/glibc.model.yml | 0 .../ext/generated/{ => modelgenerator}/libidn2/libidn2.model.yml | 0 .../ext/generated/{ => modelgenerator}/libssh2/libssh2.model.yml | 0 .../lib/ext/generated/{ => modelgenerator}/libuv/libuv.model.yml | 0 .../ext/generated/{ => modelgenerator}/nghttp2/nghttp2.model.yml | 0 .../ext/generated/{ => modelgenerator}/openssl/openssl.model.yml | 0 .../ext/generated/{ => modelgenerator}/sqlite/sqlite.model.yml | 0 cpp/ql/lib/ext/generated/{ => modelgenerator}/zlib/zlib.model.yml | 0 10 files changed, 0 insertions(+), 0 deletions(-) rename cpp/ql/lib/ext/generated/{ => modelgenerator}/brotli/brotli.model.yml (100%) rename cpp/ql/lib/ext/generated/{ => modelgenerator}/curl/curl.model.yml (100%) rename cpp/ql/lib/ext/generated/{ => modelgenerator}/glibc/glibc.model.yml (100%) rename cpp/ql/lib/ext/generated/{ => modelgenerator}/libidn2/libidn2.model.yml (100%) rename cpp/ql/lib/ext/generated/{ => modelgenerator}/libssh2/libssh2.model.yml (100%) rename cpp/ql/lib/ext/generated/{ => modelgenerator}/libuv/libuv.model.yml (100%) rename cpp/ql/lib/ext/generated/{ => modelgenerator}/nghttp2/nghttp2.model.yml (100%) rename cpp/ql/lib/ext/generated/{ => modelgenerator}/openssl/openssl.model.yml (100%) rename cpp/ql/lib/ext/generated/{ => modelgenerator}/sqlite/sqlite.model.yml (100%) rename cpp/ql/lib/ext/generated/{ => modelgenerator}/zlib/zlib.model.yml (100%) diff --git a/cpp/ql/lib/ext/generated/brotli/brotli.model.yml b/cpp/ql/lib/ext/generated/modelgenerator/brotli/brotli.model.yml similarity index 100% rename from cpp/ql/lib/ext/generated/brotli/brotli.model.yml rename to cpp/ql/lib/ext/generated/modelgenerator/brotli/brotli.model.yml diff --git a/cpp/ql/lib/ext/generated/curl/curl.model.yml b/cpp/ql/lib/ext/generated/modelgenerator/curl/curl.model.yml similarity index 100% rename from cpp/ql/lib/ext/generated/curl/curl.model.yml rename to cpp/ql/lib/ext/generated/modelgenerator/curl/curl.model.yml diff --git a/cpp/ql/lib/ext/generated/glibc/glibc.model.yml b/cpp/ql/lib/ext/generated/modelgenerator/glibc/glibc.model.yml similarity index 100% rename from cpp/ql/lib/ext/generated/glibc/glibc.model.yml rename to cpp/ql/lib/ext/generated/modelgenerator/glibc/glibc.model.yml diff --git a/cpp/ql/lib/ext/generated/libidn2/libidn2.model.yml b/cpp/ql/lib/ext/generated/modelgenerator/libidn2/libidn2.model.yml similarity index 100% rename from cpp/ql/lib/ext/generated/libidn2/libidn2.model.yml rename to cpp/ql/lib/ext/generated/modelgenerator/libidn2/libidn2.model.yml diff --git a/cpp/ql/lib/ext/generated/libssh2/libssh2.model.yml b/cpp/ql/lib/ext/generated/modelgenerator/libssh2/libssh2.model.yml similarity index 100% rename from cpp/ql/lib/ext/generated/libssh2/libssh2.model.yml rename to cpp/ql/lib/ext/generated/modelgenerator/libssh2/libssh2.model.yml diff --git a/cpp/ql/lib/ext/generated/libuv/libuv.model.yml b/cpp/ql/lib/ext/generated/modelgenerator/libuv/libuv.model.yml similarity index 100% rename from cpp/ql/lib/ext/generated/libuv/libuv.model.yml rename to cpp/ql/lib/ext/generated/modelgenerator/libuv/libuv.model.yml diff --git a/cpp/ql/lib/ext/generated/nghttp2/nghttp2.model.yml b/cpp/ql/lib/ext/generated/modelgenerator/nghttp2/nghttp2.model.yml similarity index 100% rename from cpp/ql/lib/ext/generated/nghttp2/nghttp2.model.yml rename to cpp/ql/lib/ext/generated/modelgenerator/nghttp2/nghttp2.model.yml diff --git a/cpp/ql/lib/ext/generated/openssl/openssl.model.yml b/cpp/ql/lib/ext/generated/modelgenerator/openssl/openssl.model.yml similarity index 100% rename from cpp/ql/lib/ext/generated/openssl/openssl.model.yml rename to cpp/ql/lib/ext/generated/modelgenerator/openssl/openssl.model.yml diff --git a/cpp/ql/lib/ext/generated/sqlite/sqlite.model.yml b/cpp/ql/lib/ext/generated/modelgenerator/sqlite/sqlite.model.yml similarity index 100% rename from cpp/ql/lib/ext/generated/sqlite/sqlite.model.yml rename to cpp/ql/lib/ext/generated/modelgenerator/sqlite/sqlite.model.yml diff --git a/cpp/ql/lib/ext/generated/zlib/zlib.model.yml b/cpp/ql/lib/ext/generated/modelgenerator/zlib/zlib.model.yml similarity index 100% rename from cpp/ql/lib/ext/generated/zlib/zlib.model.yml rename to cpp/ql/lib/ext/generated/modelgenerator/zlib/zlib.model.yml From 073529a951ec17c71bd9e2f9483c2d997e7ab824 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jack=20N=C3=B8rskov=20J=C3=B8rgensen?= Date: Fri, 24 Apr 2026 08:38:11 +0200 Subject: [PATCH 040/260] Move generated MaDs for Rust into modelgenerator/ --- .../ql/lib/ext/generated/{ => modelgenerator}/actix-web.model.yml | 0 rust/ql/lib/ext/generated/{ => modelgenerator}/clap.model.yml | 0 rust/ql/lib/ext/generated/{ => modelgenerator}/hyper.model.yml | 0 rust/ql/lib/ext/generated/{ => modelgenerator}/libc.model.yml | 0 rust/ql/lib/ext/generated/{ => modelgenerator}/log.model.yml | 0 rust/ql/lib/ext/generated/{ => modelgenerator}/memchr.model.yml | 0 .../ql/lib/ext/generated/{ => modelgenerator}/once_cell.model.yml | 0 rust/ql/lib/ext/generated/{ => modelgenerator}/rand.model.yml | 0 rust/ql/lib/ext/generated/{ => modelgenerator}/reqwest.model.yml | 0 rust/ql/lib/ext/generated/{ => modelgenerator}/rust.model.yml | 0 rust/ql/lib/ext/generated/{ => modelgenerator}/serde.model.yml | 0 rust/ql/lib/ext/generated/{ => modelgenerator}/smallvec.model.yml | 0 rust/ql/lib/ext/generated/{ => modelgenerator}/tokio.model.yml | 0 13 files changed, 0 insertions(+), 0 deletions(-) rename rust/ql/lib/ext/generated/{ => modelgenerator}/actix-web.model.yml (100%) rename rust/ql/lib/ext/generated/{ => modelgenerator}/clap.model.yml (100%) rename rust/ql/lib/ext/generated/{ => modelgenerator}/hyper.model.yml (100%) rename rust/ql/lib/ext/generated/{ => modelgenerator}/libc.model.yml (100%) rename rust/ql/lib/ext/generated/{ => modelgenerator}/log.model.yml (100%) rename rust/ql/lib/ext/generated/{ => modelgenerator}/memchr.model.yml (100%) rename rust/ql/lib/ext/generated/{ => modelgenerator}/once_cell.model.yml (100%) rename rust/ql/lib/ext/generated/{ => modelgenerator}/rand.model.yml (100%) rename rust/ql/lib/ext/generated/{ => modelgenerator}/reqwest.model.yml (100%) rename rust/ql/lib/ext/generated/{ => modelgenerator}/rust.model.yml (100%) rename rust/ql/lib/ext/generated/{ => modelgenerator}/serde.model.yml (100%) rename rust/ql/lib/ext/generated/{ => modelgenerator}/smallvec.model.yml (100%) rename rust/ql/lib/ext/generated/{ => modelgenerator}/tokio.model.yml (100%) diff --git a/rust/ql/lib/ext/generated/actix-web.model.yml b/rust/ql/lib/ext/generated/modelgenerator/actix-web.model.yml similarity index 100% rename from rust/ql/lib/ext/generated/actix-web.model.yml rename to rust/ql/lib/ext/generated/modelgenerator/actix-web.model.yml diff --git a/rust/ql/lib/ext/generated/clap.model.yml b/rust/ql/lib/ext/generated/modelgenerator/clap.model.yml similarity index 100% rename from rust/ql/lib/ext/generated/clap.model.yml rename to rust/ql/lib/ext/generated/modelgenerator/clap.model.yml diff --git a/rust/ql/lib/ext/generated/hyper.model.yml b/rust/ql/lib/ext/generated/modelgenerator/hyper.model.yml similarity index 100% rename from rust/ql/lib/ext/generated/hyper.model.yml rename to rust/ql/lib/ext/generated/modelgenerator/hyper.model.yml diff --git a/rust/ql/lib/ext/generated/libc.model.yml b/rust/ql/lib/ext/generated/modelgenerator/libc.model.yml similarity index 100% rename from rust/ql/lib/ext/generated/libc.model.yml rename to rust/ql/lib/ext/generated/modelgenerator/libc.model.yml diff --git a/rust/ql/lib/ext/generated/log.model.yml b/rust/ql/lib/ext/generated/modelgenerator/log.model.yml similarity index 100% rename from rust/ql/lib/ext/generated/log.model.yml rename to rust/ql/lib/ext/generated/modelgenerator/log.model.yml diff --git a/rust/ql/lib/ext/generated/memchr.model.yml b/rust/ql/lib/ext/generated/modelgenerator/memchr.model.yml similarity index 100% rename from rust/ql/lib/ext/generated/memchr.model.yml rename to rust/ql/lib/ext/generated/modelgenerator/memchr.model.yml diff --git a/rust/ql/lib/ext/generated/once_cell.model.yml b/rust/ql/lib/ext/generated/modelgenerator/once_cell.model.yml similarity index 100% rename from rust/ql/lib/ext/generated/once_cell.model.yml rename to rust/ql/lib/ext/generated/modelgenerator/once_cell.model.yml diff --git a/rust/ql/lib/ext/generated/rand.model.yml b/rust/ql/lib/ext/generated/modelgenerator/rand.model.yml similarity index 100% rename from rust/ql/lib/ext/generated/rand.model.yml rename to rust/ql/lib/ext/generated/modelgenerator/rand.model.yml diff --git a/rust/ql/lib/ext/generated/reqwest.model.yml b/rust/ql/lib/ext/generated/modelgenerator/reqwest.model.yml similarity index 100% rename from rust/ql/lib/ext/generated/reqwest.model.yml rename to rust/ql/lib/ext/generated/modelgenerator/reqwest.model.yml diff --git a/rust/ql/lib/ext/generated/rust.model.yml b/rust/ql/lib/ext/generated/modelgenerator/rust.model.yml similarity index 100% rename from rust/ql/lib/ext/generated/rust.model.yml rename to rust/ql/lib/ext/generated/modelgenerator/rust.model.yml diff --git a/rust/ql/lib/ext/generated/serde.model.yml b/rust/ql/lib/ext/generated/modelgenerator/serde.model.yml similarity index 100% rename from rust/ql/lib/ext/generated/serde.model.yml rename to rust/ql/lib/ext/generated/modelgenerator/serde.model.yml diff --git a/rust/ql/lib/ext/generated/smallvec.model.yml b/rust/ql/lib/ext/generated/modelgenerator/smallvec.model.yml similarity index 100% rename from rust/ql/lib/ext/generated/smallvec.model.yml rename to rust/ql/lib/ext/generated/modelgenerator/smallvec.model.yml diff --git a/rust/ql/lib/ext/generated/tokio.model.yml b/rust/ql/lib/ext/generated/modelgenerator/tokio.model.yml similarity index 100% rename from rust/ql/lib/ext/generated/tokio.model.yml rename to rust/ql/lib/ext/generated/modelgenerator/tokio.model.yml From a6e052b2a031f6f5993a0ee1de50f0fca2eecb8a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jack=20N=C3=B8rskov=20J=C3=B8rgensen?= Date: Fri, 24 Apr 2026 08:41:34 +0200 Subject: [PATCH 041/260] Move generated MaDs for C# into modelgenerator/ --- .../lib/ext/generated/{ => modelgenerator}/Generators.model.yml | 0 .../ext/generated/{ => modelgenerator}/ILCompiler.IBC.model.yml | 0 .../ILCompiler.Reflection.ReadyToRun.Amd64.model.yml | 0 .../ILCompiler.Reflection.ReadyToRun.Arm.model.yml | 0 .../ILCompiler.Reflection.ReadyToRun.Arm64.model.yml | 0 .../ILCompiler.Reflection.ReadyToRun.LoongArch64.model.yml | 0 .../ILCompiler.Reflection.ReadyToRun.MachO.model.yml | 0 .../ILCompiler.Reflection.ReadyToRun.RiscV64.model.yml | 0 .../ILCompiler.Reflection.ReadyToRun.model.yml | 0 .../ILCompiler.Reflection.ReadyToRun.x86.model.yml | 0 .../lib/ext/generated/{ => modelgenerator}/ILCompiler.model.yml | 0 .../ext/generated/{ => modelgenerator}/ILLink.CodeFix.model.yml | 0 .../ILLink.RoslynAnalyzer.DataFlow.model.yml | 0 .../ILLink.RoslynAnalyzer.TrimAnalysis.model.yml | 0 .../{ => modelgenerator}/ILLink.RoslynAnalyzer.model.yml | 0 .../{ => modelgenerator}/ILLink.Shared.DataFlow.model.yml | 0 .../{ => modelgenerator}/ILLink.Shared.TrimAnalysis.model.yml | 0 .../ILLink.Shared.TypeSystemProxy.model.yml | 0 .../ext/generated/{ => modelgenerator}/ILLink.Shared.model.yml | 0 .../ext/generated/{ => modelgenerator}/ILLink.Tasks.model.yml | 0 .../generated/{ => modelgenerator}/Internal.IL.Stubs.model.yml | 0 .../ext/generated/{ => modelgenerator}/Internal.IL.model.yml | 0 .../{ => modelgenerator}/Internal.NativeFormat.model.yml | 0 .../ext/generated/{ => modelgenerator}/Internal.Pgo.model.yml | 0 .../{ => modelgenerator}/Internal.TypeSystem.Ecma.model.yml | 0 .../{ => modelgenerator}/Internal.TypeSystem.model.yml | 0 .../lib/ext/generated/{ => modelgenerator}/Internal.model.yml | 0 .../IntrinsicsInSystemPrivateCoreLib.model.yml | 0 .../Microsoft.CSharp.RuntimeBinder.model.yml | 0 .../generated/{ => modelgenerator}/Microsoft.CSharp.model.yml | 0 .../Microsoft.Diagnostics.JitTrace.model.yml | 0 .../Microsoft.Diagnostics.Tools.Pgo.TypeRefTypeSystem.model.yml | 0 .../Microsoft.Diagnostics.Tools.Pgo.model.yml | 0 .../{ => modelgenerator}/Microsoft.DotNet.Build.Tasks.model.yml | 0 .../Microsoft.DotNet.PlatformAbstractions.model.yml | 0 .../Microsoft.Extensions.Caching.Distributed.model.yml | 0 .../Microsoft.Extensions.Caching.Hybrid.model.yml | 0 .../Microsoft.Extensions.Caching.Memory.model.yml | 0 ...t.Extensions.Configuration.Binder.SourceGeneration.model.yml | 0 .../Microsoft.Extensions.Configuration.CommandLine.model.yml | 0 ...soft.Extensions.Configuration.EnvironmentVariables.model.yml | 0 .../Microsoft.Extensions.Configuration.Ini.model.yml | 0 .../Microsoft.Extensions.Configuration.Json.model.yml | 0 .../Microsoft.Extensions.Configuration.Memory.model.yml | 0 .../Microsoft.Extensions.Configuration.UserSecrets.model.yml | 0 .../Microsoft.Extensions.Configuration.Xml.model.yml | 0 .../Microsoft.Extensions.Configuration.model.yml | 0 ...icrosoft.Extensions.DependencyInjection.Extensions.model.yml | 0 ...Extensions.DependencyInjection.Specification.Fakes.model.yml | 0 ...osoft.Extensions.DependencyInjection.Specification.model.yml | 0 .../Microsoft.Extensions.DependencyInjection.model.yml | 0 .../Microsoft.Extensions.DependencyModel.Resolution.model.yml | 0 .../Microsoft.Extensions.DependencyModel.model.yml | 0 ...osoft.Extensions.Diagnostics.Metrics.Configuration.model.yml | 0 .../Microsoft.Extensions.Diagnostics.Metrics.model.yml | 0 .../Microsoft.Extensions.FileProviders.Composite.model.yml | 0 .../Microsoft.Extensions.FileProviders.Internal.model.yml | 0 .../Microsoft.Extensions.FileProviders.Physical.model.yml | 0 .../Microsoft.Extensions.FileProviders.model.yml | 0 ...crosoft.Extensions.FileSystemGlobbing.Abstractions.model.yml | 0 ...xtensions.FileSystemGlobbing.Internal.PathSegments.model.yml | 0 ...nsions.FileSystemGlobbing.Internal.PatternContexts.model.yml | 0 ...ft.Extensions.FileSystemGlobbing.Internal.Patterns.model.yml | 0 .../Microsoft.Extensions.FileSystemGlobbing.Internal.model.yml | 0 .../Microsoft.Extensions.FileSystemGlobbing.model.yml | 0 .../Microsoft.Extensions.Hosting.Internal.model.yml | 0 .../Microsoft.Extensions.Hosting.Systemd.model.yml | 0 .../Microsoft.Extensions.Hosting.WindowsServices.model.yml | 0 .../{ => modelgenerator}/Microsoft.Extensions.Hosting.model.yml | 0 .../Microsoft.Extensions.Http.Logging.model.yml | 0 .../{ => modelgenerator}/Microsoft.Extensions.Http.model.yml | 0 .../Microsoft.Extensions.Internal.model.yml | 0 .../Microsoft.Extensions.Logging.Abstractions.model.yml | 0 .../Microsoft.Extensions.Logging.Configuration.model.yml | 0 .../Microsoft.Extensions.Logging.Console.model.yml | 0 .../Microsoft.Extensions.Logging.Debug.model.yml | 0 .../Microsoft.Extensions.Logging.EventLog.model.yml | 0 .../Microsoft.Extensions.Logging.EventSource.model.yml | 0 .../Microsoft.Extensions.Logging.Generators.model.yml | 0 .../Microsoft.Extensions.Logging.TraceSource.model.yml | 0 .../{ => modelgenerator}/Microsoft.Extensions.Logging.model.yml | 0 .../Microsoft.Extensions.Options.Generators.model.yml | 0 .../{ => modelgenerator}/Microsoft.Extensions.Options.model.yml | 0 .../Microsoft.Extensions.Primitives.model.yml | 0 .../{ => modelgenerator}/Microsoft.Interop.Analyzers.model.yml | 0 .../{ => modelgenerator}/Microsoft.Interop.JavaScript.model.yml | 0 .../generated/{ => modelgenerator}/Microsoft.Interop.model.yml | 0 .../{ => modelgenerator}/Microsoft.NET.Build.Tasks.model.yml | 0 .../{ => modelgenerator}/Microsoft.NETCore.Platforms.model.yml | 0 .../Microsoft.VisualBasic.CompilerServices.model.yml | 0 .../{ => modelgenerator}/Microsoft.VisualBasic.FileIO.model.yml | 0 .../{ => modelgenerator}/Microsoft.VisualBasic.model.yml | 0 .../{ => modelgenerator}/Microsoft.Win32.SafeHandles.model.yml | 0 .../generated/{ => modelgenerator}/Microsoft.Win32.model.yml | 0 .../{ => modelgenerator}/Mono.Linker.Dataflow.model.yml | 0 .../generated/{ => modelgenerator}/Mono.Linker.Steps.model.yml | 0 .../ext/generated/{ => modelgenerator}/Mono.Linker.model.yml | 0 .../generated/{ => modelgenerator}/SourceGenerators.model.yml | 0 .../{ => modelgenerator}/System.Buffers.Binary.model.yml | 0 .../{ => modelgenerator}/System.Buffers.Text.model.yml | 0 .../ext/generated/{ => modelgenerator}/System.Buffers.model.yml | 0 .../{ => modelgenerator}/System.CodeDom.Compiler.model.yml | 0 .../ext/generated/{ => modelgenerator}/System.CodeDom.model.yml | 0 .../System.Collections.Concurrent.model.yml | 0 .../{ => modelgenerator}/System.Collections.Frozen.model.yml | 0 .../{ => modelgenerator}/System.Collections.Generic.model.yml | 0 .../{ => modelgenerator}/System.Collections.Immutable.model.yml | 0 .../System.Collections.ObjectModel.model.yml | 0 .../System.Collections.Specialized.model.yml | 0 .../generated/{ => modelgenerator}/System.Collections.model.yml | 0 .../System.ComponentModel.Composition.Hosting.model.yml | 0 .../System.ComponentModel.Composition.Primitives.model.yml | 0 .../System.ComponentModel.Composition.ReflectionModel.model.yml | 0 .../System.ComponentModel.Composition.Registration.model.yml | 0 .../System.ComponentModel.Composition.model.yml | 0 .../System.ComponentModel.DataAnnotations.Schema.model.yml | 0 .../System.ComponentModel.DataAnnotations.model.yml | 0 .../System.ComponentModel.Design.Serialization.model.yml | 0 .../{ => modelgenerator}/System.ComponentModel.Design.model.yml | 0 .../{ => modelgenerator}/System.ComponentModel.model.yml | 0 .../System.Composition.Convention.model.yml | 0 .../System.Composition.Hosting.Core.model.yml | 0 .../{ => modelgenerator}/System.Composition.Hosting.model.yml | 0 .../generated/{ => modelgenerator}/System.Composition.model.yml | 0 .../System.Configuration.Internal.model.yml | 0 .../System.Configuration.Provider.model.yml | 0 .../{ => modelgenerator}/System.Configuration.model.yml | 0 .../generated/{ => modelgenerator}/System.Data.Common.model.yml | 0 .../generated/{ => modelgenerator}/System.Data.Odbc.model.yml | 0 .../generated/{ => modelgenerator}/System.Data.OleDb.model.yml | 0 .../{ => modelgenerator}/System.Data.OracleClient.model.yml | 0 .../{ => modelgenerator}/System.Data.SqlClient.model.yml | 0 .../{ => modelgenerator}/System.Data.SqlTypes.model.yml | 0 .../ext/generated/{ => modelgenerator}/System.Data.model.yml | 0 .../System.Diagnostics.CodeAnalysis.model.yml | 0 .../{ => modelgenerator}/System.Diagnostics.Contracts.model.yml | 0 .../System.Diagnostics.Eventing.Reader.model.yml | 0 .../{ => modelgenerator}/System.Diagnostics.Metrics.model.yml | 0 .../System.Diagnostics.PerformanceData.model.yml | 0 .../System.Diagnostics.SymbolStore.model.yml | 0 .../{ => modelgenerator}/System.Diagnostics.Tracing.model.yml | 0 .../generated/{ => modelgenerator}/System.Diagnostics.model.yml | 0 .../System.DirectoryServices.AccountManagement.model.yml | 0 .../System.DirectoryServices.ActiveDirectory.model.yml | 0 .../System.DirectoryServices.Protocols.model.yml | 0 .../{ => modelgenerator}/System.DirectoryServices.model.yml | 0 .../{ => modelgenerator}/System.Drawing.Printing.model.yml | 0 .../ext/generated/{ => modelgenerator}/System.Drawing.model.yml | 0 .../ext/generated/{ => modelgenerator}/System.Dynamic.model.yml | 0 .../{ => modelgenerator}/System.Formats.Asn1.model.yml | 0 .../{ => modelgenerator}/System.Formats.Cbor.model.yml | 0 .../{ => modelgenerator}/System.Formats.Nrbf.model.yml | 0 .../generated/{ => modelgenerator}/System.Formats.Tar.model.yml | 0 .../{ => modelgenerator}/System.Globalization.model.yml | 0 .../{ => modelgenerator}/System.IO.Compression.model.yml | 0 .../{ => modelgenerator}/System.IO.Enumeration.model.yml | 0 .../generated/{ => modelgenerator}/System.IO.Hashing.model.yml | 0 .../{ => modelgenerator}/System.IO.IsolatedStorage.model.yml | 0 .../{ => modelgenerator}/System.IO.MemoryMappedFiles.model.yml | 0 .../{ => modelgenerator}/System.IO.Packaging.model.yml | 0 .../{ => modelgenerator}/System.IO.Pipelines.model.yml | 0 .../generated/{ => modelgenerator}/System.IO.Pipes.model.yml | 0 .../generated/{ => modelgenerator}/System.IO.Ports.model.yml | 0 .../lib/ext/generated/{ => modelgenerator}/System.IO.model.yml | 0 .../System.Linq.Expressions.Interpreter.model.yml | 0 .../{ => modelgenerator}/System.Linq.Expressions.model.yml | 0 .../ext/generated/{ => modelgenerator}/System.Linq.model.yml | 0 .../generated/{ => modelgenerator}/System.Management.model.yml | 0 .../ext/generated/{ => modelgenerator}/System.Media.model.yml | 0 .../generated/{ => modelgenerator}/System.Net.Cache.model.yml | 0 .../{ => modelgenerator}/System.Net.Http.Headers.model.yml | 0 .../{ => modelgenerator}/System.Net.Http.Json.model.yml | 0 .../{ => modelgenerator}/System.Net.Http.Metrics.model.yml | 0 .../generated/{ => modelgenerator}/System.Net.Http.model.yml | 0 .../generated/{ => modelgenerator}/System.Net.Mail.model.yml | 0 .../generated/{ => modelgenerator}/System.Net.Mime.model.yml | 0 .../System.Net.NetworkInformation.model.yml | 0 .../System.Net.PeerToPeer.Collaboration.model.yml | 0 .../{ => modelgenerator}/System.Net.PeerToPeer.model.yml | 0 .../generated/{ => modelgenerator}/System.Net.Quic.model.yml | 0 .../{ => modelgenerator}/System.Net.Security.model.yml | 0 .../{ => modelgenerator}/System.Net.ServerSentEvents.model.yml | 0 .../generated/{ => modelgenerator}/System.Net.Sockets.model.yml | 0 .../{ => modelgenerator}/System.Net.WebSockets.model.yml | 0 .../lib/ext/generated/{ => modelgenerator}/System.Net.model.yml | 0 .../{ => modelgenerator}/System.Numerics.Tensors.model.yml | 0 .../generated/{ => modelgenerator}/System.Numerics.model.yml | 0 .../{ => modelgenerator}/System.Reflection.Context.model.yml | 0 .../{ => modelgenerator}/System.Reflection.Emit.model.yml | 0 .../System.Reflection.Metadata.Ecma335.model.yml | 0 .../{ => modelgenerator}/System.Reflection.Metadata.model.yml | 0 .../System.Reflection.PortableExecutable.model.yml | 0 .../generated/{ => modelgenerator}/System.Reflection.model.yml | 0 .../{ => modelgenerator}/System.Resources.Extensions.model.yml | 0 .../generated/{ => modelgenerator}/System.Resources.model.yml | 0 .../System.Runtime.Caching.Hosting.model.yml | 0 .../{ => modelgenerator}/System.Runtime.Caching.model.yml | 0 .../System.Runtime.CompilerServices.model.yml | 0 .../System.Runtime.ConstrainedExecution.model.yml | 0 .../System.Runtime.ExceptionServices.model.yml | 0 .../System.Runtime.InteropServices.ComTypes.model.yml | 0 .../System.Runtime.InteropServices.Java.model.yml | 0 .../System.Runtime.InteropServices.JavaScript.model.yml | 0 .../System.Runtime.InteropServices.Marshalling.model.yml | 0 .../System.Runtime.InteropServices.ObjectiveC.model.yml | 0 .../System.Runtime.InteropServices.Swift.model.yml | 0 .../System.Runtime.InteropServices.model.yml | 0 .../System.Runtime.Intrinsics.Arm.model.yml | 0 .../System.Runtime.Intrinsics.Wasm.model.yml | 0 .../System.Runtime.Intrinsics.X86.model.yml | 0 .../{ => modelgenerator}/System.Runtime.Intrinsics.model.yml | 0 .../{ => modelgenerator}/System.Runtime.Loader.model.yml | 0 .../{ => modelgenerator}/System.Runtime.Remoting.model.yml | 0 .../System.Runtime.Serialization.DataContracts.model.yml | 0 .../System.Runtime.Serialization.Formatters.Binary.model.yml | 0 .../System.Runtime.Serialization.Json.model.yml | 0 .../{ => modelgenerator}/System.Runtime.Serialization.model.yml | 0 .../{ => modelgenerator}/System.Runtime.Versioning.model.yml | 0 .../ext/generated/{ => modelgenerator}/System.Runtime.model.yml | 0 .../System.Security.AccessControl.model.yml | 0 .../System.Security.Authentication.ExtendedProtection.model.yml | 0 .../System.Security.Authentication.model.yml | 0 .../{ => modelgenerator}/System.Security.Claims.model.yml | 0 .../System.Security.Cryptography.Cose.model.yml | 0 .../System.Security.Cryptography.Pkcs.model.yml | 0 .../System.Security.Cryptography.X509Certificates.model.yml | 0 .../System.Security.Cryptography.Xml.model.yml | 0 .../{ => modelgenerator}/System.Security.Cryptography.model.yml | 0 .../{ => modelgenerator}/System.Security.Permissions.model.yml | 0 .../{ => modelgenerator}/System.Security.Policy.model.yml | 0 .../{ => modelgenerator}/System.Security.Principal.model.yml | 0 .../generated/{ => modelgenerator}/System.Security.model.yml | 0 .../System.ServiceModel.Syndication.model.yml | 0 .../{ => modelgenerator}/System.ServiceProcess.model.yml | 0 .../{ => modelgenerator}/System.Speech.AudioFormat.model.yml | 0 .../System.Speech.Recognition.SrgsGrammar.model.yml | 0 .../{ => modelgenerator}/System.Speech.Recognition.model.yml | 0 .../System.Speech.Synthesis.TtsEngine.model.yml | 0 .../{ => modelgenerator}/System.Speech.Synthesis.model.yml | 0 .../{ => modelgenerator}/System.Text.Encodings.Web.model.yml | 0 .../{ => modelgenerator}/System.Text.Json.Nodes.model.yml | 0 .../{ => modelgenerator}/System.Text.Json.Schema.model.yml | 0 .../System.Text.Json.Serialization.Metadata.model.yml | 0 .../System.Text.Json.Serialization.model.yml | 0 .../System.Text.Json.SourceGeneration.model.yml | 0 .../generated/{ => modelgenerator}/System.Text.Json.model.yml | 0 .../System.Text.RegularExpressions.Generator.model.yml | 0 .../System.Text.RegularExpressions.model.yml | 0 .../{ => modelgenerator}/System.Text.Unicode.model.yml | 0 .../ext/generated/{ => modelgenerator}/System.Text.model.yml | 0 .../{ => modelgenerator}/System.Threading.Channels.model.yml | 0 .../System.Threading.RateLimiting.model.yml | 0 .../System.Threading.Tasks.Dataflow.model.yml | 0 .../System.Threading.Tasks.Sources.model.yml | 0 .../{ => modelgenerator}/System.Threading.Tasks.model.yml | 0 .../generated/{ => modelgenerator}/System.Threading.model.yml | 0 .../ext/generated/{ => modelgenerator}/System.Timers.model.yml | 0 .../{ => modelgenerator}/System.Transactions.model.yml | 0 .../lib/ext/generated/{ => modelgenerator}/System.Web.model.yml | 0 .../{ => modelgenerator}/System.Windows.Input.model.yml | 0 .../{ => modelgenerator}/System.Windows.Markup.model.yml | 0 .../{ => modelgenerator}/System.Xaml.Permissions.model.yml | 0 .../generated/{ => modelgenerator}/System.Xml.Linq.model.yml | 0 .../{ => modelgenerator}/System.Xml.Resolvers.model.yml | 0 .../generated/{ => modelgenerator}/System.Xml.Schema.model.yml | 0 .../{ => modelgenerator}/System.Xml.Serialization.model.yml | 0 .../generated/{ => modelgenerator}/System.Xml.XPath.model.yml | 0 .../{ => modelgenerator}/System.Xml.Xsl.Runtime.model.yml | 0 .../ext/generated/{ => modelgenerator}/System.Xml.Xsl.model.yml | 0 .../lib/ext/generated/{ => modelgenerator}/System.Xml.model.yml | 0 .../ql/lib/ext/generated/{ => modelgenerator}/System.model.yml | 0 csharp/ql/lib/qlpack.yml | 2 +- 272 files changed, 1 insertion(+), 1 deletion(-) rename csharp/ql/lib/ext/generated/{ => modelgenerator}/Generators.model.yml (100%) rename csharp/ql/lib/ext/generated/{ => modelgenerator}/ILCompiler.IBC.model.yml (100%) rename csharp/ql/lib/ext/generated/{ => modelgenerator}/ILCompiler.Reflection.ReadyToRun.Amd64.model.yml (100%) rename csharp/ql/lib/ext/generated/{ => modelgenerator}/ILCompiler.Reflection.ReadyToRun.Arm.model.yml (100%) rename csharp/ql/lib/ext/generated/{ => modelgenerator}/ILCompiler.Reflection.ReadyToRun.Arm64.model.yml (100%) rename csharp/ql/lib/ext/generated/{ => modelgenerator}/ILCompiler.Reflection.ReadyToRun.LoongArch64.model.yml (100%) rename csharp/ql/lib/ext/generated/{ => modelgenerator}/ILCompiler.Reflection.ReadyToRun.MachO.model.yml (100%) rename csharp/ql/lib/ext/generated/{ => modelgenerator}/ILCompiler.Reflection.ReadyToRun.RiscV64.model.yml (100%) rename csharp/ql/lib/ext/generated/{ => modelgenerator}/ILCompiler.Reflection.ReadyToRun.model.yml (100%) rename csharp/ql/lib/ext/generated/{ => modelgenerator}/ILCompiler.Reflection.ReadyToRun.x86.model.yml (100%) rename csharp/ql/lib/ext/generated/{ => modelgenerator}/ILCompiler.model.yml (100%) rename csharp/ql/lib/ext/generated/{ => modelgenerator}/ILLink.CodeFix.model.yml (100%) rename csharp/ql/lib/ext/generated/{ => modelgenerator}/ILLink.RoslynAnalyzer.DataFlow.model.yml (100%) rename csharp/ql/lib/ext/generated/{ => modelgenerator}/ILLink.RoslynAnalyzer.TrimAnalysis.model.yml (100%) rename csharp/ql/lib/ext/generated/{ => modelgenerator}/ILLink.RoslynAnalyzer.model.yml (100%) rename csharp/ql/lib/ext/generated/{ => modelgenerator}/ILLink.Shared.DataFlow.model.yml (100%) rename csharp/ql/lib/ext/generated/{ => modelgenerator}/ILLink.Shared.TrimAnalysis.model.yml (100%) rename csharp/ql/lib/ext/generated/{ => modelgenerator}/ILLink.Shared.TypeSystemProxy.model.yml (100%) rename csharp/ql/lib/ext/generated/{ => modelgenerator}/ILLink.Shared.model.yml (100%) rename csharp/ql/lib/ext/generated/{ => modelgenerator}/ILLink.Tasks.model.yml (100%) rename csharp/ql/lib/ext/generated/{ => modelgenerator}/Internal.IL.Stubs.model.yml (100%) rename csharp/ql/lib/ext/generated/{ => modelgenerator}/Internal.IL.model.yml (100%) rename csharp/ql/lib/ext/generated/{ => modelgenerator}/Internal.NativeFormat.model.yml (100%) rename csharp/ql/lib/ext/generated/{ => modelgenerator}/Internal.Pgo.model.yml (100%) rename csharp/ql/lib/ext/generated/{ => modelgenerator}/Internal.TypeSystem.Ecma.model.yml (100%) rename csharp/ql/lib/ext/generated/{ => modelgenerator}/Internal.TypeSystem.model.yml (100%) rename csharp/ql/lib/ext/generated/{ => modelgenerator}/Internal.model.yml (100%) rename csharp/ql/lib/ext/generated/{ => modelgenerator}/IntrinsicsInSystemPrivateCoreLib.model.yml (100%) rename csharp/ql/lib/ext/generated/{ => modelgenerator}/Microsoft.CSharp.RuntimeBinder.model.yml (100%) rename csharp/ql/lib/ext/generated/{ => modelgenerator}/Microsoft.CSharp.model.yml (100%) rename csharp/ql/lib/ext/generated/{ => modelgenerator}/Microsoft.Diagnostics.JitTrace.model.yml (100%) rename csharp/ql/lib/ext/generated/{ => modelgenerator}/Microsoft.Diagnostics.Tools.Pgo.TypeRefTypeSystem.model.yml (100%) rename csharp/ql/lib/ext/generated/{ => modelgenerator}/Microsoft.Diagnostics.Tools.Pgo.model.yml (100%) rename csharp/ql/lib/ext/generated/{ => modelgenerator}/Microsoft.DotNet.Build.Tasks.model.yml (100%) rename csharp/ql/lib/ext/generated/{ => modelgenerator}/Microsoft.DotNet.PlatformAbstractions.model.yml (100%) rename csharp/ql/lib/ext/generated/{ => modelgenerator}/Microsoft.Extensions.Caching.Distributed.model.yml (100%) rename csharp/ql/lib/ext/generated/{ => modelgenerator}/Microsoft.Extensions.Caching.Hybrid.model.yml (100%) rename csharp/ql/lib/ext/generated/{ => modelgenerator}/Microsoft.Extensions.Caching.Memory.model.yml (100%) rename csharp/ql/lib/ext/generated/{ => modelgenerator}/Microsoft.Extensions.Configuration.Binder.SourceGeneration.model.yml (100%) rename csharp/ql/lib/ext/generated/{ => modelgenerator}/Microsoft.Extensions.Configuration.CommandLine.model.yml (100%) rename csharp/ql/lib/ext/generated/{ => modelgenerator}/Microsoft.Extensions.Configuration.EnvironmentVariables.model.yml (100%) rename csharp/ql/lib/ext/generated/{ => modelgenerator}/Microsoft.Extensions.Configuration.Ini.model.yml (100%) rename csharp/ql/lib/ext/generated/{ => modelgenerator}/Microsoft.Extensions.Configuration.Json.model.yml (100%) rename csharp/ql/lib/ext/generated/{ => modelgenerator}/Microsoft.Extensions.Configuration.Memory.model.yml (100%) rename csharp/ql/lib/ext/generated/{ => modelgenerator}/Microsoft.Extensions.Configuration.UserSecrets.model.yml (100%) rename csharp/ql/lib/ext/generated/{ => modelgenerator}/Microsoft.Extensions.Configuration.Xml.model.yml (100%) rename csharp/ql/lib/ext/generated/{ => modelgenerator}/Microsoft.Extensions.Configuration.model.yml (100%) rename csharp/ql/lib/ext/generated/{ => modelgenerator}/Microsoft.Extensions.DependencyInjection.Extensions.model.yml (100%) rename csharp/ql/lib/ext/generated/{ => modelgenerator}/Microsoft.Extensions.DependencyInjection.Specification.Fakes.model.yml (100%) rename csharp/ql/lib/ext/generated/{ => modelgenerator}/Microsoft.Extensions.DependencyInjection.Specification.model.yml (100%) rename csharp/ql/lib/ext/generated/{ => modelgenerator}/Microsoft.Extensions.DependencyInjection.model.yml (100%) rename csharp/ql/lib/ext/generated/{ => modelgenerator}/Microsoft.Extensions.DependencyModel.Resolution.model.yml (100%) rename csharp/ql/lib/ext/generated/{ => modelgenerator}/Microsoft.Extensions.DependencyModel.model.yml (100%) rename csharp/ql/lib/ext/generated/{ => modelgenerator}/Microsoft.Extensions.Diagnostics.Metrics.Configuration.model.yml (100%) rename csharp/ql/lib/ext/generated/{ => modelgenerator}/Microsoft.Extensions.Diagnostics.Metrics.model.yml (100%) rename csharp/ql/lib/ext/generated/{ => modelgenerator}/Microsoft.Extensions.FileProviders.Composite.model.yml (100%) rename csharp/ql/lib/ext/generated/{ => modelgenerator}/Microsoft.Extensions.FileProviders.Internal.model.yml (100%) rename csharp/ql/lib/ext/generated/{ => modelgenerator}/Microsoft.Extensions.FileProviders.Physical.model.yml (100%) rename csharp/ql/lib/ext/generated/{ => modelgenerator}/Microsoft.Extensions.FileProviders.model.yml (100%) rename csharp/ql/lib/ext/generated/{ => modelgenerator}/Microsoft.Extensions.FileSystemGlobbing.Abstractions.model.yml (100%) rename csharp/ql/lib/ext/generated/{ => modelgenerator}/Microsoft.Extensions.FileSystemGlobbing.Internal.PathSegments.model.yml (100%) rename csharp/ql/lib/ext/generated/{ => modelgenerator}/Microsoft.Extensions.FileSystemGlobbing.Internal.PatternContexts.model.yml (100%) rename csharp/ql/lib/ext/generated/{ => modelgenerator}/Microsoft.Extensions.FileSystemGlobbing.Internal.Patterns.model.yml (100%) rename csharp/ql/lib/ext/generated/{ => modelgenerator}/Microsoft.Extensions.FileSystemGlobbing.Internal.model.yml (100%) rename csharp/ql/lib/ext/generated/{ => modelgenerator}/Microsoft.Extensions.FileSystemGlobbing.model.yml (100%) rename csharp/ql/lib/ext/generated/{ => modelgenerator}/Microsoft.Extensions.Hosting.Internal.model.yml (100%) rename csharp/ql/lib/ext/generated/{ => modelgenerator}/Microsoft.Extensions.Hosting.Systemd.model.yml (100%) rename csharp/ql/lib/ext/generated/{ => modelgenerator}/Microsoft.Extensions.Hosting.WindowsServices.model.yml (100%) rename csharp/ql/lib/ext/generated/{ => modelgenerator}/Microsoft.Extensions.Hosting.model.yml (100%) rename csharp/ql/lib/ext/generated/{ => modelgenerator}/Microsoft.Extensions.Http.Logging.model.yml (100%) rename csharp/ql/lib/ext/generated/{ => modelgenerator}/Microsoft.Extensions.Http.model.yml (100%) rename csharp/ql/lib/ext/generated/{ => modelgenerator}/Microsoft.Extensions.Internal.model.yml (100%) rename csharp/ql/lib/ext/generated/{ => modelgenerator}/Microsoft.Extensions.Logging.Abstractions.model.yml (100%) rename csharp/ql/lib/ext/generated/{ => modelgenerator}/Microsoft.Extensions.Logging.Configuration.model.yml (100%) rename csharp/ql/lib/ext/generated/{ => modelgenerator}/Microsoft.Extensions.Logging.Console.model.yml (100%) rename csharp/ql/lib/ext/generated/{ => modelgenerator}/Microsoft.Extensions.Logging.Debug.model.yml (100%) rename csharp/ql/lib/ext/generated/{ => modelgenerator}/Microsoft.Extensions.Logging.EventLog.model.yml (100%) rename csharp/ql/lib/ext/generated/{ => modelgenerator}/Microsoft.Extensions.Logging.EventSource.model.yml (100%) rename csharp/ql/lib/ext/generated/{ => modelgenerator}/Microsoft.Extensions.Logging.Generators.model.yml (100%) rename csharp/ql/lib/ext/generated/{ => modelgenerator}/Microsoft.Extensions.Logging.TraceSource.model.yml (100%) rename csharp/ql/lib/ext/generated/{ => modelgenerator}/Microsoft.Extensions.Logging.model.yml (100%) rename csharp/ql/lib/ext/generated/{ => modelgenerator}/Microsoft.Extensions.Options.Generators.model.yml (100%) rename csharp/ql/lib/ext/generated/{ => modelgenerator}/Microsoft.Extensions.Options.model.yml (100%) rename csharp/ql/lib/ext/generated/{ => modelgenerator}/Microsoft.Extensions.Primitives.model.yml (100%) rename csharp/ql/lib/ext/generated/{ => modelgenerator}/Microsoft.Interop.Analyzers.model.yml (100%) rename csharp/ql/lib/ext/generated/{ => modelgenerator}/Microsoft.Interop.JavaScript.model.yml (100%) rename csharp/ql/lib/ext/generated/{ => modelgenerator}/Microsoft.Interop.model.yml (100%) rename csharp/ql/lib/ext/generated/{ => modelgenerator}/Microsoft.NET.Build.Tasks.model.yml (100%) rename csharp/ql/lib/ext/generated/{ => modelgenerator}/Microsoft.NETCore.Platforms.model.yml (100%) rename csharp/ql/lib/ext/generated/{ => modelgenerator}/Microsoft.VisualBasic.CompilerServices.model.yml (100%) rename csharp/ql/lib/ext/generated/{ => modelgenerator}/Microsoft.VisualBasic.FileIO.model.yml (100%) rename csharp/ql/lib/ext/generated/{ => modelgenerator}/Microsoft.VisualBasic.model.yml (100%) rename csharp/ql/lib/ext/generated/{ => modelgenerator}/Microsoft.Win32.SafeHandles.model.yml (100%) rename csharp/ql/lib/ext/generated/{ => modelgenerator}/Microsoft.Win32.model.yml (100%) rename csharp/ql/lib/ext/generated/{ => modelgenerator}/Mono.Linker.Dataflow.model.yml (100%) rename csharp/ql/lib/ext/generated/{ => modelgenerator}/Mono.Linker.Steps.model.yml (100%) rename csharp/ql/lib/ext/generated/{ => modelgenerator}/Mono.Linker.model.yml (100%) rename csharp/ql/lib/ext/generated/{ => modelgenerator}/SourceGenerators.model.yml (100%) rename csharp/ql/lib/ext/generated/{ => modelgenerator}/System.Buffers.Binary.model.yml (100%) rename csharp/ql/lib/ext/generated/{ => modelgenerator}/System.Buffers.Text.model.yml (100%) rename csharp/ql/lib/ext/generated/{ => modelgenerator}/System.Buffers.model.yml (100%) rename csharp/ql/lib/ext/generated/{ => modelgenerator}/System.CodeDom.Compiler.model.yml (100%) rename csharp/ql/lib/ext/generated/{ => modelgenerator}/System.CodeDom.model.yml (100%) rename csharp/ql/lib/ext/generated/{ => modelgenerator}/System.Collections.Concurrent.model.yml (100%) rename csharp/ql/lib/ext/generated/{ => modelgenerator}/System.Collections.Frozen.model.yml (100%) rename csharp/ql/lib/ext/generated/{ => modelgenerator}/System.Collections.Generic.model.yml (100%) rename csharp/ql/lib/ext/generated/{ => modelgenerator}/System.Collections.Immutable.model.yml (100%) rename csharp/ql/lib/ext/generated/{ => modelgenerator}/System.Collections.ObjectModel.model.yml (100%) rename csharp/ql/lib/ext/generated/{ => modelgenerator}/System.Collections.Specialized.model.yml (100%) rename csharp/ql/lib/ext/generated/{ => modelgenerator}/System.Collections.model.yml (100%) rename csharp/ql/lib/ext/generated/{ => modelgenerator}/System.ComponentModel.Composition.Hosting.model.yml (100%) rename csharp/ql/lib/ext/generated/{ => modelgenerator}/System.ComponentModel.Composition.Primitives.model.yml (100%) rename csharp/ql/lib/ext/generated/{ => modelgenerator}/System.ComponentModel.Composition.ReflectionModel.model.yml (100%) rename csharp/ql/lib/ext/generated/{ => modelgenerator}/System.ComponentModel.Composition.Registration.model.yml (100%) rename csharp/ql/lib/ext/generated/{ => modelgenerator}/System.ComponentModel.Composition.model.yml (100%) rename csharp/ql/lib/ext/generated/{ => modelgenerator}/System.ComponentModel.DataAnnotations.Schema.model.yml (100%) rename csharp/ql/lib/ext/generated/{ => modelgenerator}/System.ComponentModel.DataAnnotations.model.yml (100%) rename csharp/ql/lib/ext/generated/{ => modelgenerator}/System.ComponentModel.Design.Serialization.model.yml (100%) rename csharp/ql/lib/ext/generated/{ => modelgenerator}/System.ComponentModel.Design.model.yml (100%) rename csharp/ql/lib/ext/generated/{ => modelgenerator}/System.ComponentModel.model.yml (100%) rename csharp/ql/lib/ext/generated/{ => modelgenerator}/System.Composition.Convention.model.yml (100%) rename csharp/ql/lib/ext/generated/{ => modelgenerator}/System.Composition.Hosting.Core.model.yml (100%) rename csharp/ql/lib/ext/generated/{ => modelgenerator}/System.Composition.Hosting.model.yml (100%) rename csharp/ql/lib/ext/generated/{ => modelgenerator}/System.Composition.model.yml (100%) rename csharp/ql/lib/ext/generated/{ => modelgenerator}/System.Configuration.Internal.model.yml (100%) rename csharp/ql/lib/ext/generated/{ => modelgenerator}/System.Configuration.Provider.model.yml (100%) rename csharp/ql/lib/ext/generated/{ => modelgenerator}/System.Configuration.model.yml (100%) rename csharp/ql/lib/ext/generated/{ => modelgenerator}/System.Data.Common.model.yml (100%) rename csharp/ql/lib/ext/generated/{ => modelgenerator}/System.Data.Odbc.model.yml (100%) rename csharp/ql/lib/ext/generated/{ => modelgenerator}/System.Data.OleDb.model.yml (100%) rename csharp/ql/lib/ext/generated/{ => modelgenerator}/System.Data.OracleClient.model.yml (100%) rename csharp/ql/lib/ext/generated/{ => modelgenerator}/System.Data.SqlClient.model.yml (100%) rename csharp/ql/lib/ext/generated/{ => modelgenerator}/System.Data.SqlTypes.model.yml (100%) rename csharp/ql/lib/ext/generated/{ => modelgenerator}/System.Data.model.yml (100%) rename csharp/ql/lib/ext/generated/{ => modelgenerator}/System.Diagnostics.CodeAnalysis.model.yml (100%) rename csharp/ql/lib/ext/generated/{ => modelgenerator}/System.Diagnostics.Contracts.model.yml (100%) rename csharp/ql/lib/ext/generated/{ => modelgenerator}/System.Diagnostics.Eventing.Reader.model.yml (100%) rename csharp/ql/lib/ext/generated/{ => modelgenerator}/System.Diagnostics.Metrics.model.yml (100%) rename csharp/ql/lib/ext/generated/{ => modelgenerator}/System.Diagnostics.PerformanceData.model.yml (100%) rename csharp/ql/lib/ext/generated/{ => modelgenerator}/System.Diagnostics.SymbolStore.model.yml (100%) rename csharp/ql/lib/ext/generated/{ => modelgenerator}/System.Diagnostics.Tracing.model.yml (100%) rename csharp/ql/lib/ext/generated/{ => modelgenerator}/System.Diagnostics.model.yml (100%) rename csharp/ql/lib/ext/generated/{ => modelgenerator}/System.DirectoryServices.AccountManagement.model.yml (100%) rename csharp/ql/lib/ext/generated/{ => modelgenerator}/System.DirectoryServices.ActiveDirectory.model.yml (100%) rename csharp/ql/lib/ext/generated/{ => modelgenerator}/System.DirectoryServices.Protocols.model.yml (100%) rename csharp/ql/lib/ext/generated/{ => modelgenerator}/System.DirectoryServices.model.yml (100%) rename csharp/ql/lib/ext/generated/{ => modelgenerator}/System.Drawing.Printing.model.yml (100%) rename csharp/ql/lib/ext/generated/{ => modelgenerator}/System.Drawing.model.yml (100%) rename csharp/ql/lib/ext/generated/{ => modelgenerator}/System.Dynamic.model.yml (100%) rename csharp/ql/lib/ext/generated/{ => modelgenerator}/System.Formats.Asn1.model.yml (100%) rename csharp/ql/lib/ext/generated/{ => modelgenerator}/System.Formats.Cbor.model.yml (100%) rename csharp/ql/lib/ext/generated/{ => modelgenerator}/System.Formats.Nrbf.model.yml (100%) rename csharp/ql/lib/ext/generated/{ => modelgenerator}/System.Formats.Tar.model.yml (100%) rename csharp/ql/lib/ext/generated/{ => modelgenerator}/System.Globalization.model.yml (100%) rename csharp/ql/lib/ext/generated/{ => modelgenerator}/System.IO.Compression.model.yml (100%) rename csharp/ql/lib/ext/generated/{ => modelgenerator}/System.IO.Enumeration.model.yml (100%) rename csharp/ql/lib/ext/generated/{ => modelgenerator}/System.IO.Hashing.model.yml (100%) rename csharp/ql/lib/ext/generated/{ => modelgenerator}/System.IO.IsolatedStorage.model.yml (100%) rename csharp/ql/lib/ext/generated/{ => modelgenerator}/System.IO.MemoryMappedFiles.model.yml (100%) rename csharp/ql/lib/ext/generated/{ => modelgenerator}/System.IO.Packaging.model.yml (100%) rename csharp/ql/lib/ext/generated/{ => modelgenerator}/System.IO.Pipelines.model.yml (100%) rename csharp/ql/lib/ext/generated/{ => modelgenerator}/System.IO.Pipes.model.yml (100%) rename csharp/ql/lib/ext/generated/{ => modelgenerator}/System.IO.Ports.model.yml (100%) rename csharp/ql/lib/ext/generated/{ => modelgenerator}/System.IO.model.yml (100%) rename csharp/ql/lib/ext/generated/{ => modelgenerator}/System.Linq.Expressions.Interpreter.model.yml (100%) rename csharp/ql/lib/ext/generated/{ => modelgenerator}/System.Linq.Expressions.model.yml (100%) rename csharp/ql/lib/ext/generated/{ => modelgenerator}/System.Linq.model.yml (100%) rename csharp/ql/lib/ext/generated/{ => modelgenerator}/System.Management.model.yml (100%) rename csharp/ql/lib/ext/generated/{ => modelgenerator}/System.Media.model.yml (100%) rename csharp/ql/lib/ext/generated/{ => modelgenerator}/System.Net.Cache.model.yml (100%) rename csharp/ql/lib/ext/generated/{ => modelgenerator}/System.Net.Http.Headers.model.yml (100%) rename csharp/ql/lib/ext/generated/{ => modelgenerator}/System.Net.Http.Json.model.yml (100%) rename csharp/ql/lib/ext/generated/{ => modelgenerator}/System.Net.Http.Metrics.model.yml (100%) rename csharp/ql/lib/ext/generated/{ => modelgenerator}/System.Net.Http.model.yml (100%) rename csharp/ql/lib/ext/generated/{ => modelgenerator}/System.Net.Mail.model.yml (100%) rename csharp/ql/lib/ext/generated/{ => modelgenerator}/System.Net.Mime.model.yml (100%) rename csharp/ql/lib/ext/generated/{ => modelgenerator}/System.Net.NetworkInformation.model.yml (100%) rename csharp/ql/lib/ext/generated/{ => modelgenerator}/System.Net.PeerToPeer.Collaboration.model.yml (100%) rename csharp/ql/lib/ext/generated/{ => modelgenerator}/System.Net.PeerToPeer.model.yml (100%) rename csharp/ql/lib/ext/generated/{ => modelgenerator}/System.Net.Quic.model.yml (100%) rename csharp/ql/lib/ext/generated/{ => modelgenerator}/System.Net.Security.model.yml (100%) rename csharp/ql/lib/ext/generated/{ => modelgenerator}/System.Net.ServerSentEvents.model.yml (100%) rename csharp/ql/lib/ext/generated/{ => modelgenerator}/System.Net.Sockets.model.yml (100%) rename csharp/ql/lib/ext/generated/{ => modelgenerator}/System.Net.WebSockets.model.yml (100%) rename csharp/ql/lib/ext/generated/{ => modelgenerator}/System.Net.model.yml (100%) rename csharp/ql/lib/ext/generated/{ => modelgenerator}/System.Numerics.Tensors.model.yml (100%) rename csharp/ql/lib/ext/generated/{ => modelgenerator}/System.Numerics.model.yml (100%) rename csharp/ql/lib/ext/generated/{ => modelgenerator}/System.Reflection.Context.model.yml (100%) rename csharp/ql/lib/ext/generated/{ => modelgenerator}/System.Reflection.Emit.model.yml (100%) rename csharp/ql/lib/ext/generated/{ => modelgenerator}/System.Reflection.Metadata.Ecma335.model.yml (100%) rename csharp/ql/lib/ext/generated/{ => modelgenerator}/System.Reflection.Metadata.model.yml (100%) rename csharp/ql/lib/ext/generated/{ => modelgenerator}/System.Reflection.PortableExecutable.model.yml (100%) rename csharp/ql/lib/ext/generated/{ => modelgenerator}/System.Reflection.model.yml (100%) rename csharp/ql/lib/ext/generated/{ => modelgenerator}/System.Resources.Extensions.model.yml (100%) rename csharp/ql/lib/ext/generated/{ => modelgenerator}/System.Resources.model.yml (100%) rename csharp/ql/lib/ext/generated/{ => modelgenerator}/System.Runtime.Caching.Hosting.model.yml (100%) rename csharp/ql/lib/ext/generated/{ => modelgenerator}/System.Runtime.Caching.model.yml (100%) rename csharp/ql/lib/ext/generated/{ => modelgenerator}/System.Runtime.CompilerServices.model.yml (100%) rename csharp/ql/lib/ext/generated/{ => modelgenerator}/System.Runtime.ConstrainedExecution.model.yml (100%) rename csharp/ql/lib/ext/generated/{ => modelgenerator}/System.Runtime.ExceptionServices.model.yml (100%) rename csharp/ql/lib/ext/generated/{ => modelgenerator}/System.Runtime.InteropServices.ComTypes.model.yml (100%) rename csharp/ql/lib/ext/generated/{ => modelgenerator}/System.Runtime.InteropServices.Java.model.yml (100%) rename csharp/ql/lib/ext/generated/{ => modelgenerator}/System.Runtime.InteropServices.JavaScript.model.yml (100%) rename csharp/ql/lib/ext/generated/{ => modelgenerator}/System.Runtime.InteropServices.Marshalling.model.yml (100%) rename csharp/ql/lib/ext/generated/{ => modelgenerator}/System.Runtime.InteropServices.ObjectiveC.model.yml (100%) rename csharp/ql/lib/ext/generated/{ => modelgenerator}/System.Runtime.InteropServices.Swift.model.yml (100%) rename csharp/ql/lib/ext/generated/{ => modelgenerator}/System.Runtime.InteropServices.model.yml (100%) rename csharp/ql/lib/ext/generated/{ => modelgenerator}/System.Runtime.Intrinsics.Arm.model.yml (100%) rename csharp/ql/lib/ext/generated/{ => modelgenerator}/System.Runtime.Intrinsics.Wasm.model.yml (100%) rename csharp/ql/lib/ext/generated/{ => modelgenerator}/System.Runtime.Intrinsics.X86.model.yml (100%) rename csharp/ql/lib/ext/generated/{ => modelgenerator}/System.Runtime.Intrinsics.model.yml (100%) rename csharp/ql/lib/ext/generated/{ => modelgenerator}/System.Runtime.Loader.model.yml (100%) rename csharp/ql/lib/ext/generated/{ => modelgenerator}/System.Runtime.Remoting.model.yml (100%) rename csharp/ql/lib/ext/generated/{ => modelgenerator}/System.Runtime.Serialization.DataContracts.model.yml (100%) rename csharp/ql/lib/ext/generated/{ => modelgenerator}/System.Runtime.Serialization.Formatters.Binary.model.yml (100%) rename csharp/ql/lib/ext/generated/{ => modelgenerator}/System.Runtime.Serialization.Json.model.yml (100%) rename csharp/ql/lib/ext/generated/{ => modelgenerator}/System.Runtime.Serialization.model.yml (100%) rename csharp/ql/lib/ext/generated/{ => modelgenerator}/System.Runtime.Versioning.model.yml (100%) rename csharp/ql/lib/ext/generated/{ => modelgenerator}/System.Runtime.model.yml (100%) rename csharp/ql/lib/ext/generated/{ => modelgenerator}/System.Security.AccessControl.model.yml (100%) rename csharp/ql/lib/ext/generated/{ => modelgenerator}/System.Security.Authentication.ExtendedProtection.model.yml (100%) rename csharp/ql/lib/ext/generated/{ => modelgenerator}/System.Security.Authentication.model.yml (100%) rename csharp/ql/lib/ext/generated/{ => modelgenerator}/System.Security.Claims.model.yml (100%) rename csharp/ql/lib/ext/generated/{ => modelgenerator}/System.Security.Cryptography.Cose.model.yml (100%) rename csharp/ql/lib/ext/generated/{ => modelgenerator}/System.Security.Cryptography.Pkcs.model.yml (100%) rename csharp/ql/lib/ext/generated/{ => modelgenerator}/System.Security.Cryptography.X509Certificates.model.yml (100%) rename csharp/ql/lib/ext/generated/{ => modelgenerator}/System.Security.Cryptography.Xml.model.yml (100%) rename csharp/ql/lib/ext/generated/{ => modelgenerator}/System.Security.Cryptography.model.yml (100%) rename csharp/ql/lib/ext/generated/{ => modelgenerator}/System.Security.Permissions.model.yml (100%) rename csharp/ql/lib/ext/generated/{ => modelgenerator}/System.Security.Policy.model.yml (100%) rename csharp/ql/lib/ext/generated/{ => modelgenerator}/System.Security.Principal.model.yml (100%) rename csharp/ql/lib/ext/generated/{ => modelgenerator}/System.Security.model.yml (100%) rename csharp/ql/lib/ext/generated/{ => modelgenerator}/System.ServiceModel.Syndication.model.yml (100%) rename csharp/ql/lib/ext/generated/{ => modelgenerator}/System.ServiceProcess.model.yml (100%) rename csharp/ql/lib/ext/generated/{ => modelgenerator}/System.Speech.AudioFormat.model.yml (100%) rename csharp/ql/lib/ext/generated/{ => modelgenerator}/System.Speech.Recognition.SrgsGrammar.model.yml (100%) rename csharp/ql/lib/ext/generated/{ => modelgenerator}/System.Speech.Recognition.model.yml (100%) rename csharp/ql/lib/ext/generated/{ => modelgenerator}/System.Speech.Synthesis.TtsEngine.model.yml (100%) rename csharp/ql/lib/ext/generated/{ => modelgenerator}/System.Speech.Synthesis.model.yml (100%) rename csharp/ql/lib/ext/generated/{ => modelgenerator}/System.Text.Encodings.Web.model.yml (100%) rename csharp/ql/lib/ext/generated/{ => modelgenerator}/System.Text.Json.Nodes.model.yml (100%) rename csharp/ql/lib/ext/generated/{ => modelgenerator}/System.Text.Json.Schema.model.yml (100%) rename csharp/ql/lib/ext/generated/{ => modelgenerator}/System.Text.Json.Serialization.Metadata.model.yml (100%) rename csharp/ql/lib/ext/generated/{ => modelgenerator}/System.Text.Json.Serialization.model.yml (100%) rename csharp/ql/lib/ext/generated/{ => modelgenerator}/System.Text.Json.SourceGeneration.model.yml (100%) rename csharp/ql/lib/ext/generated/{ => modelgenerator}/System.Text.Json.model.yml (100%) rename csharp/ql/lib/ext/generated/{ => modelgenerator}/System.Text.RegularExpressions.Generator.model.yml (100%) rename csharp/ql/lib/ext/generated/{ => modelgenerator}/System.Text.RegularExpressions.model.yml (100%) rename csharp/ql/lib/ext/generated/{ => modelgenerator}/System.Text.Unicode.model.yml (100%) rename csharp/ql/lib/ext/generated/{ => modelgenerator}/System.Text.model.yml (100%) rename csharp/ql/lib/ext/generated/{ => modelgenerator}/System.Threading.Channels.model.yml (100%) rename csharp/ql/lib/ext/generated/{ => modelgenerator}/System.Threading.RateLimiting.model.yml (100%) rename csharp/ql/lib/ext/generated/{ => modelgenerator}/System.Threading.Tasks.Dataflow.model.yml (100%) rename csharp/ql/lib/ext/generated/{ => modelgenerator}/System.Threading.Tasks.Sources.model.yml (100%) rename csharp/ql/lib/ext/generated/{ => modelgenerator}/System.Threading.Tasks.model.yml (100%) rename csharp/ql/lib/ext/generated/{ => modelgenerator}/System.Threading.model.yml (100%) rename csharp/ql/lib/ext/generated/{ => modelgenerator}/System.Timers.model.yml (100%) rename csharp/ql/lib/ext/generated/{ => modelgenerator}/System.Transactions.model.yml (100%) rename csharp/ql/lib/ext/generated/{ => modelgenerator}/System.Web.model.yml (100%) rename csharp/ql/lib/ext/generated/{ => modelgenerator}/System.Windows.Input.model.yml (100%) rename csharp/ql/lib/ext/generated/{ => modelgenerator}/System.Windows.Markup.model.yml (100%) rename csharp/ql/lib/ext/generated/{ => modelgenerator}/System.Xaml.Permissions.model.yml (100%) rename csharp/ql/lib/ext/generated/{ => modelgenerator}/System.Xml.Linq.model.yml (100%) rename csharp/ql/lib/ext/generated/{ => modelgenerator}/System.Xml.Resolvers.model.yml (100%) rename csharp/ql/lib/ext/generated/{ => modelgenerator}/System.Xml.Schema.model.yml (100%) rename csharp/ql/lib/ext/generated/{ => modelgenerator}/System.Xml.Serialization.model.yml (100%) rename csharp/ql/lib/ext/generated/{ => modelgenerator}/System.Xml.XPath.model.yml (100%) rename csharp/ql/lib/ext/generated/{ => modelgenerator}/System.Xml.Xsl.Runtime.model.yml (100%) rename csharp/ql/lib/ext/generated/{ => modelgenerator}/System.Xml.Xsl.model.yml (100%) rename csharp/ql/lib/ext/generated/{ => modelgenerator}/System.Xml.model.yml (100%) rename csharp/ql/lib/ext/generated/{ => modelgenerator}/System.model.yml (100%) diff --git a/csharp/ql/lib/ext/generated/Generators.model.yml b/csharp/ql/lib/ext/generated/modelgenerator/Generators.model.yml similarity index 100% rename from csharp/ql/lib/ext/generated/Generators.model.yml rename to csharp/ql/lib/ext/generated/modelgenerator/Generators.model.yml diff --git a/csharp/ql/lib/ext/generated/ILCompiler.IBC.model.yml b/csharp/ql/lib/ext/generated/modelgenerator/ILCompiler.IBC.model.yml similarity index 100% rename from csharp/ql/lib/ext/generated/ILCompiler.IBC.model.yml rename to csharp/ql/lib/ext/generated/modelgenerator/ILCompiler.IBC.model.yml diff --git a/csharp/ql/lib/ext/generated/ILCompiler.Reflection.ReadyToRun.Amd64.model.yml b/csharp/ql/lib/ext/generated/modelgenerator/ILCompiler.Reflection.ReadyToRun.Amd64.model.yml similarity index 100% rename from csharp/ql/lib/ext/generated/ILCompiler.Reflection.ReadyToRun.Amd64.model.yml rename to csharp/ql/lib/ext/generated/modelgenerator/ILCompiler.Reflection.ReadyToRun.Amd64.model.yml diff --git a/csharp/ql/lib/ext/generated/ILCompiler.Reflection.ReadyToRun.Arm.model.yml b/csharp/ql/lib/ext/generated/modelgenerator/ILCompiler.Reflection.ReadyToRun.Arm.model.yml similarity index 100% rename from csharp/ql/lib/ext/generated/ILCompiler.Reflection.ReadyToRun.Arm.model.yml rename to csharp/ql/lib/ext/generated/modelgenerator/ILCompiler.Reflection.ReadyToRun.Arm.model.yml diff --git a/csharp/ql/lib/ext/generated/ILCompiler.Reflection.ReadyToRun.Arm64.model.yml b/csharp/ql/lib/ext/generated/modelgenerator/ILCompiler.Reflection.ReadyToRun.Arm64.model.yml similarity index 100% rename from csharp/ql/lib/ext/generated/ILCompiler.Reflection.ReadyToRun.Arm64.model.yml rename to csharp/ql/lib/ext/generated/modelgenerator/ILCompiler.Reflection.ReadyToRun.Arm64.model.yml diff --git a/csharp/ql/lib/ext/generated/ILCompiler.Reflection.ReadyToRun.LoongArch64.model.yml b/csharp/ql/lib/ext/generated/modelgenerator/ILCompiler.Reflection.ReadyToRun.LoongArch64.model.yml similarity index 100% rename from csharp/ql/lib/ext/generated/ILCompiler.Reflection.ReadyToRun.LoongArch64.model.yml rename to csharp/ql/lib/ext/generated/modelgenerator/ILCompiler.Reflection.ReadyToRun.LoongArch64.model.yml diff --git a/csharp/ql/lib/ext/generated/ILCompiler.Reflection.ReadyToRun.MachO.model.yml b/csharp/ql/lib/ext/generated/modelgenerator/ILCompiler.Reflection.ReadyToRun.MachO.model.yml similarity index 100% rename from csharp/ql/lib/ext/generated/ILCompiler.Reflection.ReadyToRun.MachO.model.yml rename to csharp/ql/lib/ext/generated/modelgenerator/ILCompiler.Reflection.ReadyToRun.MachO.model.yml diff --git a/csharp/ql/lib/ext/generated/ILCompiler.Reflection.ReadyToRun.RiscV64.model.yml b/csharp/ql/lib/ext/generated/modelgenerator/ILCompiler.Reflection.ReadyToRun.RiscV64.model.yml similarity index 100% rename from csharp/ql/lib/ext/generated/ILCompiler.Reflection.ReadyToRun.RiscV64.model.yml rename to csharp/ql/lib/ext/generated/modelgenerator/ILCompiler.Reflection.ReadyToRun.RiscV64.model.yml diff --git a/csharp/ql/lib/ext/generated/ILCompiler.Reflection.ReadyToRun.model.yml b/csharp/ql/lib/ext/generated/modelgenerator/ILCompiler.Reflection.ReadyToRun.model.yml similarity index 100% rename from csharp/ql/lib/ext/generated/ILCompiler.Reflection.ReadyToRun.model.yml rename to csharp/ql/lib/ext/generated/modelgenerator/ILCompiler.Reflection.ReadyToRun.model.yml diff --git a/csharp/ql/lib/ext/generated/ILCompiler.Reflection.ReadyToRun.x86.model.yml b/csharp/ql/lib/ext/generated/modelgenerator/ILCompiler.Reflection.ReadyToRun.x86.model.yml similarity index 100% rename from csharp/ql/lib/ext/generated/ILCompiler.Reflection.ReadyToRun.x86.model.yml rename to csharp/ql/lib/ext/generated/modelgenerator/ILCompiler.Reflection.ReadyToRun.x86.model.yml diff --git a/csharp/ql/lib/ext/generated/ILCompiler.model.yml b/csharp/ql/lib/ext/generated/modelgenerator/ILCompiler.model.yml similarity index 100% rename from csharp/ql/lib/ext/generated/ILCompiler.model.yml rename to csharp/ql/lib/ext/generated/modelgenerator/ILCompiler.model.yml diff --git a/csharp/ql/lib/ext/generated/ILLink.CodeFix.model.yml b/csharp/ql/lib/ext/generated/modelgenerator/ILLink.CodeFix.model.yml similarity index 100% rename from csharp/ql/lib/ext/generated/ILLink.CodeFix.model.yml rename to csharp/ql/lib/ext/generated/modelgenerator/ILLink.CodeFix.model.yml diff --git a/csharp/ql/lib/ext/generated/ILLink.RoslynAnalyzer.DataFlow.model.yml b/csharp/ql/lib/ext/generated/modelgenerator/ILLink.RoslynAnalyzer.DataFlow.model.yml similarity index 100% rename from csharp/ql/lib/ext/generated/ILLink.RoslynAnalyzer.DataFlow.model.yml rename to csharp/ql/lib/ext/generated/modelgenerator/ILLink.RoslynAnalyzer.DataFlow.model.yml diff --git a/csharp/ql/lib/ext/generated/ILLink.RoslynAnalyzer.TrimAnalysis.model.yml b/csharp/ql/lib/ext/generated/modelgenerator/ILLink.RoslynAnalyzer.TrimAnalysis.model.yml similarity index 100% rename from csharp/ql/lib/ext/generated/ILLink.RoslynAnalyzer.TrimAnalysis.model.yml rename to csharp/ql/lib/ext/generated/modelgenerator/ILLink.RoslynAnalyzer.TrimAnalysis.model.yml diff --git a/csharp/ql/lib/ext/generated/ILLink.RoslynAnalyzer.model.yml b/csharp/ql/lib/ext/generated/modelgenerator/ILLink.RoslynAnalyzer.model.yml similarity index 100% rename from csharp/ql/lib/ext/generated/ILLink.RoslynAnalyzer.model.yml rename to csharp/ql/lib/ext/generated/modelgenerator/ILLink.RoslynAnalyzer.model.yml diff --git a/csharp/ql/lib/ext/generated/ILLink.Shared.DataFlow.model.yml b/csharp/ql/lib/ext/generated/modelgenerator/ILLink.Shared.DataFlow.model.yml similarity index 100% rename from csharp/ql/lib/ext/generated/ILLink.Shared.DataFlow.model.yml rename to csharp/ql/lib/ext/generated/modelgenerator/ILLink.Shared.DataFlow.model.yml diff --git a/csharp/ql/lib/ext/generated/ILLink.Shared.TrimAnalysis.model.yml b/csharp/ql/lib/ext/generated/modelgenerator/ILLink.Shared.TrimAnalysis.model.yml similarity index 100% rename from csharp/ql/lib/ext/generated/ILLink.Shared.TrimAnalysis.model.yml rename to csharp/ql/lib/ext/generated/modelgenerator/ILLink.Shared.TrimAnalysis.model.yml diff --git a/csharp/ql/lib/ext/generated/ILLink.Shared.TypeSystemProxy.model.yml b/csharp/ql/lib/ext/generated/modelgenerator/ILLink.Shared.TypeSystemProxy.model.yml similarity index 100% rename from csharp/ql/lib/ext/generated/ILLink.Shared.TypeSystemProxy.model.yml rename to csharp/ql/lib/ext/generated/modelgenerator/ILLink.Shared.TypeSystemProxy.model.yml diff --git a/csharp/ql/lib/ext/generated/ILLink.Shared.model.yml b/csharp/ql/lib/ext/generated/modelgenerator/ILLink.Shared.model.yml similarity index 100% rename from csharp/ql/lib/ext/generated/ILLink.Shared.model.yml rename to csharp/ql/lib/ext/generated/modelgenerator/ILLink.Shared.model.yml diff --git a/csharp/ql/lib/ext/generated/ILLink.Tasks.model.yml b/csharp/ql/lib/ext/generated/modelgenerator/ILLink.Tasks.model.yml similarity index 100% rename from csharp/ql/lib/ext/generated/ILLink.Tasks.model.yml rename to csharp/ql/lib/ext/generated/modelgenerator/ILLink.Tasks.model.yml diff --git a/csharp/ql/lib/ext/generated/Internal.IL.Stubs.model.yml b/csharp/ql/lib/ext/generated/modelgenerator/Internal.IL.Stubs.model.yml similarity index 100% rename from csharp/ql/lib/ext/generated/Internal.IL.Stubs.model.yml rename to csharp/ql/lib/ext/generated/modelgenerator/Internal.IL.Stubs.model.yml diff --git a/csharp/ql/lib/ext/generated/Internal.IL.model.yml b/csharp/ql/lib/ext/generated/modelgenerator/Internal.IL.model.yml similarity index 100% rename from csharp/ql/lib/ext/generated/Internal.IL.model.yml rename to csharp/ql/lib/ext/generated/modelgenerator/Internal.IL.model.yml diff --git a/csharp/ql/lib/ext/generated/Internal.NativeFormat.model.yml b/csharp/ql/lib/ext/generated/modelgenerator/Internal.NativeFormat.model.yml similarity index 100% rename from csharp/ql/lib/ext/generated/Internal.NativeFormat.model.yml rename to csharp/ql/lib/ext/generated/modelgenerator/Internal.NativeFormat.model.yml diff --git a/csharp/ql/lib/ext/generated/Internal.Pgo.model.yml b/csharp/ql/lib/ext/generated/modelgenerator/Internal.Pgo.model.yml similarity index 100% rename from csharp/ql/lib/ext/generated/Internal.Pgo.model.yml rename to csharp/ql/lib/ext/generated/modelgenerator/Internal.Pgo.model.yml diff --git a/csharp/ql/lib/ext/generated/Internal.TypeSystem.Ecma.model.yml b/csharp/ql/lib/ext/generated/modelgenerator/Internal.TypeSystem.Ecma.model.yml similarity index 100% rename from csharp/ql/lib/ext/generated/Internal.TypeSystem.Ecma.model.yml rename to csharp/ql/lib/ext/generated/modelgenerator/Internal.TypeSystem.Ecma.model.yml diff --git a/csharp/ql/lib/ext/generated/Internal.TypeSystem.model.yml b/csharp/ql/lib/ext/generated/modelgenerator/Internal.TypeSystem.model.yml similarity index 100% rename from csharp/ql/lib/ext/generated/Internal.TypeSystem.model.yml rename to csharp/ql/lib/ext/generated/modelgenerator/Internal.TypeSystem.model.yml diff --git a/csharp/ql/lib/ext/generated/Internal.model.yml b/csharp/ql/lib/ext/generated/modelgenerator/Internal.model.yml similarity index 100% rename from csharp/ql/lib/ext/generated/Internal.model.yml rename to csharp/ql/lib/ext/generated/modelgenerator/Internal.model.yml diff --git a/csharp/ql/lib/ext/generated/IntrinsicsInSystemPrivateCoreLib.model.yml b/csharp/ql/lib/ext/generated/modelgenerator/IntrinsicsInSystemPrivateCoreLib.model.yml similarity index 100% rename from csharp/ql/lib/ext/generated/IntrinsicsInSystemPrivateCoreLib.model.yml rename to csharp/ql/lib/ext/generated/modelgenerator/IntrinsicsInSystemPrivateCoreLib.model.yml diff --git a/csharp/ql/lib/ext/generated/Microsoft.CSharp.RuntimeBinder.model.yml b/csharp/ql/lib/ext/generated/modelgenerator/Microsoft.CSharp.RuntimeBinder.model.yml similarity index 100% rename from csharp/ql/lib/ext/generated/Microsoft.CSharp.RuntimeBinder.model.yml rename to csharp/ql/lib/ext/generated/modelgenerator/Microsoft.CSharp.RuntimeBinder.model.yml diff --git a/csharp/ql/lib/ext/generated/Microsoft.CSharp.model.yml b/csharp/ql/lib/ext/generated/modelgenerator/Microsoft.CSharp.model.yml similarity index 100% rename from csharp/ql/lib/ext/generated/Microsoft.CSharp.model.yml rename to csharp/ql/lib/ext/generated/modelgenerator/Microsoft.CSharp.model.yml diff --git a/csharp/ql/lib/ext/generated/Microsoft.Diagnostics.JitTrace.model.yml b/csharp/ql/lib/ext/generated/modelgenerator/Microsoft.Diagnostics.JitTrace.model.yml similarity index 100% rename from csharp/ql/lib/ext/generated/Microsoft.Diagnostics.JitTrace.model.yml rename to csharp/ql/lib/ext/generated/modelgenerator/Microsoft.Diagnostics.JitTrace.model.yml diff --git a/csharp/ql/lib/ext/generated/Microsoft.Diagnostics.Tools.Pgo.TypeRefTypeSystem.model.yml b/csharp/ql/lib/ext/generated/modelgenerator/Microsoft.Diagnostics.Tools.Pgo.TypeRefTypeSystem.model.yml similarity index 100% rename from csharp/ql/lib/ext/generated/Microsoft.Diagnostics.Tools.Pgo.TypeRefTypeSystem.model.yml rename to csharp/ql/lib/ext/generated/modelgenerator/Microsoft.Diagnostics.Tools.Pgo.TypeRefTypeSystem.model.yml diff --git a/csharp/ql/lib/ext/generated/Microsoft.Diagnostics.Tools.Pgo.model.yml b/csharp/ql/lib/ext/generated/modelgenerator/Microsoft.Diagnostics.Tools.Pgo.model.yml similarity index 100% rename from csharp/ql/lib/ext/generated/Microsoft.Diagnostics.Tools.Pgo.model.yml rename to csharp/ql/lib/ext/generated/modelgenerator/Microsoft.Diagnostics.Tools.Pgo.model.yml diff --git a/csharp/ql/lib/ext/generated/Microsoft.DotNet.Build.Tasks.model.yml b/csharp/ql/lib/ext/generated/modelgenerator/Microsoft.DotNet.Build.Tasks.model.yml similarity index 100% rename from csharp/ql/lib/ext/generated/Microsoft.DotNet.Build.Tasks.model.yml rename to csharp/ql/lib/ext/generated/modelgenerator/Microsoft.DotNet.Build.Tasks.model.yml diff --git a/csharp/ql/lib/ext/generated/Microsoft.DotNet.PlatformAbstractions.model.yml b/csharp/ql/lib/ext/generated/modelgenerator/Microsoft.DotNet.PlatformAbstractions.model.yml similarity index 100% rename from csharp/ql/lib/ext/generated/Microsoft.DotNet.PlatformAbstractions.model.yml rename to csharp/ql/lib/ext/generated/modelgenerator/Microsoft.DotNet.PlatformAbstractions.model.yml diff --git a/csharp/ql/lib/ext/generated/Microsoft.Extensions.Caching.Distributed.model.yml b/csharp/ql/lib/ext/generated/modelgenerator/Microsoft.Extensions.Caching.Distributed.model.yml similarity index 100% rename from csharp/ql/lib/ext/generated/Microsoft.Extensions.Caching.Distributed.model.yml rename to csharp/ql/lib/ext/generated/modelgenerator/Microsoft.Extensions.Caching.Distributed.model.yml diff --git a/csharp/ql/lib/ext/generated/Microsoft.Extensions.Caching.Hybrid.model.yml b/csharp/ql/lib/ext/generated/modelgenerator/Microsoft.Extensions.Caching.Hybrid.model.yml similarity index 100% rename from csharp/ql/lib/ext/generated/Microsoft.Extensions.Caching.Hybrid.model.yml rename to csharp/ql/lib/ext/generated/modelgenerator/Microsoft.Extensions.Caching.Hybrid.model.yml diff --git a/csharp/ql/lib/ext/generated/Microsoft.Extensions.Caching.Memory.model.yml b/csharp/ql/lib/ext/generated/modelgenerator/Microsoft.Extensions.Caching.Memory.model.yml similarity index 100% rename from csharp/ql/lib/ext/generated/Microsoft.Extensions.Caching.Memory.model.yml rename to csharp/ql/lib/ext/generated/modelgenerator/Microsoft.Extensions.Caching.Memory.model.yml diff --git a/csharp/ql/lib/ext/generated/Microsoft.Extensions.Configuration.Binder.SourceGeneration.model.yml b/csharp/ql/lib/ext/generated/modelgenerator/Microsoft.Extensions.Configuration.Binder.SourceGeneration.model.yml similarity index 100% rename from csharp/ql/lib/ext/generated/Microsoft.Extensions.Configuration.Binder.SourceGeneration.model.yml rename to csharp/ql/lib/ext/generated/modelgenerator/Microsoft.Extensions.Configuration.Binder.SourceGeneration.model.yml diff --git a/csharp/ql/lib/ext/generated/Microsoft.Extensions.Configuration.CommandLine.model.yml b/csharp/ql/lib/ext/generated/modelgenerator/Microsoft.Extensions.Configuration.CommandLine.model.yml similarity index 100% rename from csharp/ql/lib/ext/generated/Microsoft.Extensions.Configuration.CommandLine.model.yml rename to csharp/ql/lib/ext/generated/modelgenerator/Microsoft.Extensions.Configuration.CommandLine.model.yml diff --git a/csharp/ql/lib/ext/generated/Microsoft.Extensions.Configuration.EnvironmentVariables.model.yml b/csharp/ql/lib/ext/generated/modelgenerator/Microsoft.Extensions.Configuration.EnvironmentVariables.model.yml similarity index 100% rename from csharp/ql/lib/ext/generated/Microsoft.Extensions.Configuration.EnvironmentVariables.model.yml rename to csharp/ql/lib/ext/generated/modelgenerator/Microsoft.Extensions.Configuration.EnvironmentVariables.model.yml diff --git a/csharp/ql/lib/ext/generated/Microsoft.Extensions.Configuration.Ini.model.yml b/csharp/ql/lib/ext/generated/modelgenerator/Microsoft.Extensions.Configuration.Ini.model.yml similarity index 100% rename from csharp/ql/lib/ext/generated/Microsoft.Extensions.Configuration.Ini.model.yml rename to csharp/ql/lib/ext/generated/modelgenerator/Microsoft.Extensions.Configuration.Ini.model.yml diff --git a/csharp/ql/lib/ext/generated/Microsoft.Extensions.Configuration.Json.model.yml b/csharp/ql/lib/ext/generated/modelgenerator/Microsoft.Extensions.Configuration.Json.model.yml similarity index 100% rename from csharp/ql/lib/ext/generated/Microsoft.Extensions.Configuration.Json.model.yml rename to csharp/ql/lib/ext/generated/modelgenerator/Microsoft.Extensions.Configuration.Json.model.yml diff --git a/csharp/ql/lib/ext/generated/Microsoft.Extensions.Configuration.Memory.model.yml b/csharp/ql/lib/ext/generated/modelgenerator/Microsoft.Extensions.Configuration.Memory.model.yml similarity index 100% rename from csharp/ql/lib/ext/generated/Microsoft.Extensions.Configuration.Memory.model.yml rename to csharp/ql/lib/ext/generated/modelgenerator/Microsoft.Extensions.Configuration.Memory.model.yml diff --git a/csharp/ql/lib/ext/generated/Microsoft.Extensions.Configuration.UserSecrets.model.yml b/csharp/ql/lib/ext/generated/modelgenerator/Microsoft.Extensions.Configuration.UserSecrets.model.yml similarity index 100% rename from csharp/ql/lib/ext/generated/Microsoft.Extensions.Configuration.UserSecrets.model.yml rename to csharp/ql/lib/ext/generated/modelgenerator/Microsoft.Extensions.Configuration.UserSecrets.model.yml diff --git a/csharp/ql/lib/ext/generated/Microsoft.Extensions.Configuration.Xml.model.yml b/csharp/ql/lib/ext/generated/modelgenerator/Microsoft.Extensions.Configuration.Xml.model.yml similarity index 100% rename from csharp/ql/lib/ext/generated/Microsoft.Extensions.Configuration.Xml.model.yml rename to csharp/ql/lib/ext/generated/modelgenerator/Microsoft.Extensions.Configuration.Xml.model.yml diff --git a/csharp/ql/lib/ext/generated/Microsoft.Extensions.Configuration.model.yml b/csharp/ql/lib/ext/generated/modelgenerator/Microsoft.Extensions.Configuration.model.yml similarity index 100% rename from csharp/ql/lib/ext/generated/Microsoft.Extensions.Configuration.model.yml rename to csharp/ql/lib/ext/generated/modelgenerator/Microsoft.Extensions.Configuration.model.yml diff --git a/csharp/ql/lib/ext/generated/Microsoft.Extensions.DependencyInjection.Extensions.model.yml b/csharp/ql/lib/ext/generated/modelgenerator/Microsoft.Extensions.DependencyInjection.Extensions.model.yml similarity index 100% rename from csharp/ql/lib/ext/generated/Microsoft.Extensions.DependencyInjection.Extensions.model.yml rename to csharp/ql/lib/ext/generated/modelgenerator/Microsoft.Extensions.DependencyInjection.Extensions.model.yml diff --git a/csharp/ql/lib/ext/generated/Microsoft.Extensions.DependencyInjection.Specification.Fakes.model.yml b/csharp/ql/lib/ext/generated/modelgenerator/Microsoft.Extensions.DependencyInjection.Specification.Fakes.model.yml similarity index 100% rename from csharp/ql/lib/ext/generated/Microsoft.Extensions.DependencyInjection.Specification.Fakes.model.yml rename to csharp/ql/lib/ext/generated/modelgenerator/Microsoft.Extensions.DependencyInjection.Specification.Fakes.model.yml diff --git a/csharp/ql/lib/ext/generated/Microsoft.Extensions.DependencyInjection.Specification.model.yml b/csharp/ql/lib/ext/generated/modelgenerator/Microsoft.Extensions.DependencyInjection.Specification.model.yml similarity index 100% rename from csharp/ql/lib/ext/generated/Microsoft.Extensions.DependencyInjection.Specification.model.yml rename to csharp/ql/lib/ext/generated/modelgenerator/Microsoft.Extensions.DependencyInjection.Specification.model.yml diff --git a/csharp/ql/lib/ext/generated/Microsoft.Extensions.DependencyInjection.model.yml b/csharp/ql/lib/ext/generated/modelgenerator/Microsoft.Extensions.DependencyInjection.model.yml similarity index 100% rename from csharp/ql/lib/ext/generated/Microsoft.Extensions.DependencyInjection.model.yml rename to csharp/ql/lib/ext/generated/modelgenerator/Microsoft.Extensions.DependencyInjection.model.yml diff --git a/csharp/ql/lib/ext/generated/Microsoft.Extensions.DependencyModel.Resolution.model.yml b/csharp/ql/lib/ext/generated/modelgenerator/Microsoft.Extensions.DependencyModel.Resolution.model.yml similarity index 100% rename from csharp/ql/lib/ext/generated/Microsoft.Extensions.DependencyModel.Resolution.model.yml rename to csharp/ql/lib/ext/generated/modelgenerator/Microsoft.Extensions.DependencyModel.Resolution.model.yml diff --git a/csharp/ql/lib/ext/generated/Microsoft.Extensions.DependencyModel.model.yml b/csharp/ql/lib/ext/generated/modelgenerator/Microsoft.Extensions.DependencyModel.model.yml similarity index 100% rename from csharp/ql/lib/ext/generated/Microsoft.Extensions.DependencyModel.model.yml rename to csharp/ql/lib/ext/generated/modelgenerator/Microsoft.Extensions.DependencyModel.model.yml diff --git a/csharp/ql/lib/ext/generated/Microsoft.Extensions.Diagnostics.Metrics.Configuration.model.yml b/csharp/ql/lib/ext/generated/modelgenerator/Microsoft.Extensions.Diagnostics.Metrics.Configuration.model.yml similarity index 100% rename from csharp/ql/lib/ext/generated/Microsoft.Extensions.Diagnostics.Metrics.Configuration.model.yml rename to csharp/ql/lib/ext/generated/modelgenerator/Microsoft.Extensions.Diagnostics.Metrics.Configuration.model.yml diff --git a/csharp/ql/lib/ext/generated/Microsoft.Extensions.Diagnostics.Metrics.model.yml b/csharp/ql/lib/ext/generated/modelgenerator/Microsoft.Extensions.Diagnostics.Metrics.model.yml similarity index 100% rename from csharp/ql/lib/ext/generated/Microsoft.Extensions.Diagnostics.Metrics.model.yml rename to csharp/ql/lib/ext/generated/modelgenerator/Microsoft.Extensions.Diagnostics.Metrics.model.yml diff --git a/csharp/ql/lib/ext/generated/Microsoft.Extensions.FileProviders.Composite.model.yml b/csharp/ql/lib/ext/generated/modelgenerator/Microsoft.Extensions.FileProviders.Composite.model.yml similarity index 100% rename from csharp/ql/lib/ext/generated/Microsoft.Extensions.FileProviders.Composite.model.yml rename to csharp/ql/lib/ext/generated/modelgenerator/Microsoft.Extensions.FileProviders.Composite.model.yml diff --git a/csharp/ql/lib/ext/generated/Microsoft.Extensions.FileProviders.Internal.model.yml b/csharp/ql/lib/ext/generated/modelgenerator/Microsoft.Extensions.FileProviders.Internal.model.yml similarity index 100% rename from csharp/ql/lib/ext/generated/Microsoft.Extensions.FileProviders.Internal.model.yml rename to csharp/ql/lib/ext/generated/modelgenerator/Microsoft.Extensions.FileProviders.Internal.model.yml diff --git a/csharp/ql/lib/ext/generated/Microsoft.Extensions.FileProviders.Physical.model.yml b/csharp/ql/lib/ext/generated/modelgenerator/Microsoft.Extensions.FileProviders.Physical.model.yml similarity index 100% rename from csharp/ql/lib/ext/generated/Microsoft.Extensions.FileProviders.Physical.model.yml rename to csharp/ql/lib/ext/generated/modelgenerator/Microsoft.Extensions.FileProviders.Physical.model.yml diff --git a/csharp/ql/lib/ext/generated/Microsoft.Extensions.FileProviders.model.yml b/csharp/ql/lib/ext/generated/modelgenerator/Microsoft.Extensions.FileProviders.model.yml similarity index 100% rename from csharp/ql/lib/ext/generated/Microsoft.Extensions.FileProviders.model.yml rename to csharp/ql/lib/ext/generated/modelgenerator/Microsoft.Extensions.FileProviders.model.yml diff --git a/csharp/ql/lib/ext/generated/Microsoft.Extensions.FileSystemGlobbing.Abstractions.model.yml b/csharp/ql/lib/ext/generated/modelgenerator/Microsoft.Extensions.FileSystemGlobbing.Abstractions.model.yml similarity index 100% rename from csharp/ql/lib/ext/generated/Microsoft.Extensions.FileSystemGlobbing.Abstractions.model.yml rename to csharp/ql/lib/ext/generated/modelgenerator/Microsoft.Extensions.FileSystemGlobbing.Abstractions.model.yml diff --git a/csharp/ql/lib/ext/generated/Microsoft.Extensions.FileSystemGlobbing.Internal.PathSegments.model.yml b/csharp/ql/lib/ext/generated/modelgenerator/Microsoft.Extensions.FileSystemGlobbing.Internal.PathSegments.model.yml similarity index 100% rename from csharp/ql/lib/ext/generated/Microsoft.Extensions.FileSystemGlobbing.Internal.PathSegments.model.yml rename to csharp/ql/lib/ext/generated/modelgenerator/Microsoft.Extensions.FileSystemGlobbing.Internal.PathSegments.model.yml diff --git a/csharp/ql/lib/ext/generated/Microsoft.Extensions.FileSystemGlobbing.Internal.PatternContexts.model.yml b/csharp/ql/lib/ext/generated/modelgenerator/Microsoft.Extensions.FileSystemGlobbing.Internal.PatternContexts.model.yml similarity index 100% rename from csharp/ql/lib/ext/generated/Microsoft.Extensions.FileSystemGlobbing.Internal.PatternContexts.model.yml rename to csharp/ql/lib/ext/generated/modelgenerator/Microsoft.Extensions.FileSystemGlobbing.Internal.PatternContexts.model.yml diff --git a/csharp/ql/lib/ext/generated/Microsoft.Extensions.FileSystemGlobbing.Internal.Patterns.model.yml b/csharp/ql/lib/ext/generated/modelgenerator/Microsoft.Extensions.FileSystemGlobbing.Internal.Patterns.model.yml similarity index 100% rename from csharp/ql/lib/ext/generated/Microsoft.Extensions.FileSystemGlobbing.Internal.Patterns.model.yml rename to csharp/ql/lib/ext/generated/modelgenerator/Microsoft.Extensions.FileSystemGlobbing.Internal.Patterns.model.yml diff --git a/csharp/ql/lib/ext/generated/Microsoft.Extensions.FileSystemGlobbing.Internal.model.yml b/csharp/ql/lib/ext/generated/modelgenerator/Microsoft.Extensions.FileSystemGlobbing.Internal.model.yml similarity index 100% rename from csharp/ql/lib/ext/generated/Microsoft.Extensions.FileSystemGlobbing.Internal.model.yml rename to csharp/ql/lib/ext/generated/modelgenerator/Microsoft.Extensions.FileSystemGlobbing.Internal.model.yml diff --git a/csharp/ql/lib/ext/generated/Microsoft.Extensions.FileSystemGlobbing.model.yml b/csharp/ql/lib/ext/generated/modelgenerator/Microsoft.Extensions.FileSystemGlobbing.model.yml similarity index 100% rename from csharp/ql/lib/ext/generated/Microsoft.Extensions.FileSystemGlobbing.model.yml rename to csharp/ql/lib/ext/generated/modelgenerator/Microsoft.Extensions.FileSystemGlobbing.model.yml diff --git a/csharp/ql/lib/ext/generated/Microsoft.Extensions.Hosting.Internal.model.yml b/csharp/ql/lib/ext/generated/modelgenerator/Microsoft.Extensions.Hosting.Internal.model.yml similarity index 100% rename from csharp/ql/lib/ext/generated/Microsoft.Extensions.Hosting.Internal.model.yml rename to csharp/ql/lib/ext/generated/modelgenerator/Microsoft.Extensions.Hosting.Internal.model.yml diff --git a/csharp/ql/lib/ext/generated/Microsoft.Extensions.Hosting.Systemd.model.yml b/csharp/ql/lib/ext/generated/modelgenerator/Microsoft.Extensions.Hosting.Systemd.model.yml similarity index 100% rename from csharp/ql/lib/ext/generated/Microsoft.Extensions.Hosting.Systemd.model.yml rename to csharp/ql/lib/ext/generated/modelgenerator/Microsoft.Extensions.Hosting.Systemd.model.yml diff --git a/csharp/ql/lib/ext/generated/Microsoft.Extensions.Hosting.WindowsServices.model.yml b/csharp/ql/lib/ext/generated/modelgenerator/Microsoft.Extensions.Hosting.WindowsServices.model.yml similarity index 100% rename from csharp/ql/lib/ext/generated/Microsoft.Extensions.Hosting.WindowsServices.model.yml rename to csharp/ql/lib/ext/generated/modelgenerator/Microsoft.Extensions.Hosting.WindowsServices.model.yml diff --git a/csharp/ql/lib/ext/generated/Microsoft.Extensions.Hosting.model.yml b/csharp/ql/lib/ext/generated/modelgenerator/Microsoft.Extensions.Hosting.model.yml similarity index 100% rename from csharp/ql/lib/ext/generated/Microsoft.Extensions.Hosting.model.yml rename to csharp/ql/lib/ext/generated/modelgenerator/Microsoft.Extensions.Hosting.model.yml diff --git a/csharp/ql/lib/ext/generated/Microsoft.Extensions.Http.Logging.model.yml b/csharp/ql/lib/ext/generated/modelgenerator/Microsoft.Extensions.Http.Logging.model.yml similarity index 100% rename from csharp/ql/lib/ext/generated/Microsoft.Extensions.Http.Logging.model.yml rename to csharp/ql/lib/ext/generated/modelgenerator/Microsoft.Extensions.Http.Logging.model.yml diff --git a/csharp/ql/lib/ext/generated/Microsoft.Extensions.Http.model.yml b/csharp/ql/lib/ext/generated/modelgenerator/Microsoft.Extensions.Http.model.yml similarity index 100% rename from csharp/ql/lib/ext/generated/Microsoft.Extensions.Http.model.yml rename to csharp/ql/lib/ext/generated/modelgenerator/Microsoft.Extensions.Http.model.yml diff --git a/csharp/ql/lib/ext/generated/Microsoft.Extensions.Internal.model.yml b/csharp/ql/lib/ext/generated/modelgenerator/Microsoft.Extensions.Internal.model.yml similarity index 100% rename from csharp/ql/lib/ext/generated/Microsoft.Extensions.Internal.model.yml rename to csharp/ql/lib/ext/generated/modelgenerator/Microsoft.Extensions.Internal.model.yml diff --git a/csharp/ql/lib/ext/generated/Microsoft.Extensions.Logging.Abstractions.model.yml b/csharp/ql/lib/ext/generated/modelgenerator/Microsoft.Extensions.Logging.Abstractions.model.yml similarity index 100% rename from csharp/ql/lib/ext/generated/Microsoft.Extensions.Logging.Abstractions.model.yml rename to csharp/ql/lib/ext/generated/modelgenerator/Microsoft.Extensions.Logging.Abstractions.model.yml diff --git a/csharp/ql/lib/ext/generated/Microsoft.Extensions.Logging.Configuration.model.yml b/csharp/ql/lib/ext/generated/modelgenerator/Microsoft.Extensions.Logging.Configuration.model.yml similarity index 100% rename from csharp/ql/lib/ext/generated/Microsoft.Extensions.Logging.Configuration.model.yml rename to csharp/ql/lib/ext/generated/modelgenerator/Microsoft.Extensions.Logging.Configuration.model.yml diff --git a/csharp/ql/lib/ext/generated/Microsoft.Extensions.Logging.Console.model.yml b/csharp/ql/lib/ext/generated/modelgenerator/Microsoft.Extensions.Logging.Console.model.yml similarity index 100% rename from csharp/ql/lib/ext/generated/Microsoft.Extensions.Logging.Console.model.yml rename to csharp/ql/lib/ext/generated/modelgenerator/Microsoft.Extensions.Logging.Console.model.yml diff --git a/csharp/ql/lib/ext/generated/Microsoft.Extensions.Logging.Debug.model.yml b/csharp/ql/lib/ext/generated/modelgenerator/Microsoft.Extensions.Logging.Debug.model.yml similarity index 100% rename from csharp/ql/lib/ext/generated/Microsoft.Extensions.Logging.Debug.model.yml rename to csharp/ql/lib/ext/generated/modelgenerator/Microsoft.Extensions.Logging.Debug.model.yml diff --git a/csharp/ql/lib/ext/generated/Microsoft.Extensions.Logging.EventLog.model.yml b/csharp/ql/lib/ext/generated/modelgenerator/Microsoft.Extensions.Logging.EventLog.model.yml similarity index 100% rename from csharp/ql/lib/ext/generated/Microsoft.Extensions.Logging.EventLog.model.yml rename to csharp/ql/lib/ext/generated/modelgenerator/Microsoft.Extensions.Logging.EventLog.model.yml diff --git a/csharp/ql/lib/ext/generated/Microsoft.Extensions.Logging.EventSource.model.yml b/csharp/ql/lib/ext/generated/modelgenerator/Microsoft.Extensions.Logging.EventSource.model.yml similarity index 100% rename from csharp/ql/lib/ext/generated/Microsoft.Extensions.Logging.EventSource.model.yml rename to csharp/ql/lib/ext/generated/modelgenerator/Microsoft.Extensions.Logging.EventSource.model.yml diff --git a/csharp/ql/lib/ext/generated/Microsoft.Extensions.Logging.Generators.model.yml b/csharp/ql/lib/ext/generated/modelgenerator/Microsoft.Extensions.Logging.Generators.model.yml similarity index 100% rename from csharp/ql/lib/ext/generated/Microsoft.Extensions.Logging.Generators.model.yml rename to csharp/ql/lib/ext/generated/modelgenerator/Microsoft.Extensions.Logging.Generators.model.yml diff --git a/csharp/ql/lib/ext/generated/Microsoft.Extensions.Logging.TraceSource.model.yml b/csharp/ql/lib/ext/generated/modelgenerator/Microsoft.Extensions.Logging.TraceSource.model.yml similarity index 100% rename from csharp/ql/lib/ext/generated/Microsoft.Extensions.Logging.TraceSource.model.yml rename to csharp/ql/lib/ext/generated/modelgenerator/Microsoft.Extensions.Logging.TraceSource.model.yml diff --git a/csharp/ql/lib/ext/generated/Microsoft.Extensions.Logging.model.yml b/csharp/ql/lib/ext/generated/modelgenerator/Microsoft.Extensions.Logging.model.yml similarity index 100% rename from csharp/ql/lib/ext/generated/Microsoft.Extensions.Logging.model.yml rename to csharp/ql/lib/ext/generated/modelgenerator/Microsoft.Extensions.Logging.model.yml diff --git a/csharp/ql/lib/ext/generated/Microsoft.Extensions.Options.Generators.model.yml b/csharp/ql/lib/ext/generated/modelgenerator/Microsoft.Extensions.Options.Generators.model.yml similarity index 100% rename from csharp/ql/lib/ext/generated/Microsoft.Extensions.Options.Generators.model.yml rename to csharp/ql/lib/ext/generated/modelgenerator/Microsoft.Extensions.Options.Generators.model.yml diff --git a/csharp/ql/lib/ext/generated/Microsoft.Extensions.Options.model.yml b/csharp/ql/lib/ext/generated/modelgenerator/Microsoft.Extensions.Options.model.yml similarity index 100% rename from csharp/ql/lib/ext/generated/Microsoft.Extensions.Options.model.yml rename to csharp/ql/lib/ext/generated/modelgenerator/Microsoft.Extensions.Options.model.yml diff --git a/csharp/ql/lib/ext/generated/Microsoft.Extensions.Primitives.model.yml b/csharp/ql/lib/ext/generated/modelgenerator/Microsoft.Extensions.Primitives.model.yml similarity index 100% rename from csharp/ql/lib/ext/generated/Microsoft.Extensions.Primitives.model.yml rename to csharp/ql/lib/ext/generated/modelgenerator/Microsoft.Extensions.Primitives.model.yml diff --git a/csharp/ql/lib/ext/generated/Microsoft.Interop.Analyzers.model.yml b/csharp/ql/lib/ext/generated/modelgenerator/Microsoft.Interop.Analyzers.model.yml similarity index 100% rename from csharp/ql/lib/ext/generated/Microsoft.Interop.Analyzers.model.yml rename to csharp/ql/lib/ext/generated/modelgenerator/Microsoft.Interop.Analyzers.model.yml diff --git a/csharp/ql/lib/ext/generated/Microsoft.Interop.JavaScript.model.yml b/csharp/ql/lib/ext/generated/modelgenerator/Microsoft.Interop.JavaScript.model.yml similarity index 100% rename from csharp/ql/lib/ext/generated/Microsoft.Interop.JavaScript.model.yml rename to csharp/ql/lib/ext/generated/modelgenerator/Microsoft.Interop.JavaScript.model.yml diff --git a/csharp/ql/lib/ext/generated/Microsoft.Interop.model.yml b/csharp/ql/lib/ext/generated/modelgenerator/Microsoft.Interop.model.yml similarity index 100% rename from csharp/ql/lib/ext/generated/Microsoft.Interop.model.yml rename to csharp/ql/lib/ext/generated/modelgenerator/Microsoft.Interop.model.yml diff --git a/csharp/ql/lib/ext/generated/Microsoft.NET.Build.Tasks.model.yml b/csharp/ql/lib/ext/generated/modelgenerator/Microsoft.NET.Build.Tasks.model.yml similarity index 100% rename from csharp/ql/lib/ext/generated/Microsoft.NET.Build.Tasks.model.yml rename to csharp/ql/lib/ext/generated/modelgenerator/Microsoft.NET.Build.Tasks.model.yml diff --git a/csharp/ql/lib/ext/generated/Microsoft.NETCore.Platforms.model.yml b/csharp/ql/lib/ext/generated/modelgenerator/Microsoft.NETCore.Platforms.model.yml similarity index 100% rename from csharp/ql/lib/ext/generated/Microsoft.NETCore.Platforms.model.yml rename to csharp/ql/lib/ext/generated/modelgenerator/Microsoft.NETCore.Platforms.model.yml diff --git a/csharp/ql/lib/ext/generated/Microsoft.VisualBasic.CompilerServices.model.yml b/csharp/ql/lib/ext/generated/modelgenerator/Microsoft.VisualBasic.CompilerServices.model.yml similarity index 100% rename from csharp/ql/lib/ext/generated/Microsoft.VisualBasic.CompilerServices.model.yml rename to csharp/ql/lib/ext/generated/modelgenerator/Microsoft.VisualBasic.CompilerServices.model.yml diff --git a/csharp/ql/lib/ext/generated/Microsoft.VisualBasic.FileIO.model.yml b/csharp/ql/lib/ext/generated/modelgenerator/Microsoft.VisualBasic.FileIO.model.yml similarity index 100% rename from csharp/ql/lib/ext/generated/Microsoft.VisualBasic.FileIO.model.yml rename to csharp/ql/lib/ext/generated/modelgenerator/Microsoft.VisualBasic.FileIO.model.yml diff --git a/csharp/ql/lib/ext/generated/Microsoft.VisualBasic.model.yml b/csharp/ql/lib/ext/generated/modelgenerator/Microsoft.VisualBasic.model.yml similarity index 100% rename from csharp/ql/lib/ext/generated/Microsoft.VisualBasic.model.yml rename to csharp/ql/lib/ext/generated/modelgenerator/Microsoft.VisualBasic.model.yml diff --git a/csharp/ql/lib/ext/generated/Microsoft.Win32.SafeHandles.model.yml b/csharp/ql/lib/ext/generated/modelgenerator/Microsoft.Win32.SafeHandles.model.yml similarity index 100% rename from csharp/ql/lib/ext/generated/Microsoft.Win32.SafeHandles.model.yml rename to csharp/ql/lib/ext/generated/modelgenerator/Microsoft.Win32.SafeHandles.model.yml diff --git a/csharp/ql/lib/ext/generated/Microsoft.Win32.model.yml b/csharp/ql/lib/ext/generated/modelgenerator/Microsoft.Win32.model.yml similarity index 100% rename from csharp/ql/lib/ext/generated/Microsoft.Win32.model.yml rename to csharp/ql/lib/ext/generated/modelgenerator/Microsoft.Win32.model.yml diff --git a/csharp/ql/lib/ext/generated/Mono.Linker.Dataflow.model.yml b/csharp/ql/lib/ext/generated/modelgenerator/Mono.Linker.Dataflow.model.yml similarity index 100% rename from csharp/ql/lib/ext/generated/Mono.Linker.Dataflow.model.yml rename to csharp/ql/lib/ext/generated/modelgenerator/Mono.Linker.Dataflow.model.yml diff --git a/csharp/ql/lib/ext/generated/Mono.Linker.Steps.model.yml b/csharp/ql/lib/ext/generated/modelgenerator/Mono.Linker.Steps.model.yml similarity index 100% rename from csharp/ql/lib/ext/generated/Mono.Linker.Steps.model.yml rename to csharp/ql/lib/ext/generated/modelgenerator/Mono.Linker.Steps.model.yml diff --git a/csharp/ql/lib/ext/generated/Mono.Linker.model.yml b/csharp/ql/lib/ext/generated/modelgenerator/Mono.Linker.model.yml similarity index 100% rename from csharp/ql/lib/ext/generated/Mono.Linker.model.yml rename to csharp/ql/lib/ext/generated/modelgenerator/Mono.Linker.model.yml diff --git a/csharp/ql/lib/ext/generated/SourceGenerators.model.yml b/csharp/ql/lib/ext/generated/modelgenerator/SourceGenerators.model.yml similarity index 100% rename from csharp/ql/lib/ext/generated/SourceGenerators.model.yml rename to csharp/ql/lib/ext/generated/modelgenerator/SourceGenerators.model.yml diff --git a/csharp/ql/lib/ext/generated/System.Buffers.Binary.model.yml b/csharp/ql/lib/ext/generated/modelgenerator/System.Buffers.Binary.model.yml similarity index 100% rename from csharp/ql/lib/ext/generated/System.Buffers.Binary.model.yml rename to csharp/ql/lib/ext/generated/modelgenerator/System.Buffers.Binary.model.yml diff --git a/csharp/ql/lib/ext/generated/System.Buffers.Text.model.yml b/csharp/ql/lib/ext/generated/modelgenerator/System.Buffers.Text.model.yml similarity index 100% rename from csharp/ql/lib/ext/generated/System.Buffers.Text.model.yml rename to csharp/ql/lib/ext/generated/modelgenerator/System.Buffers.Text.model.yml diff --git a/csharp/ql/lib/ext/generated/System.Buffers.model.yml b/csharp/ql/lib/ext/generated/modelgenerator/System.Buffers.model.yml similarity index 100% rename from csharp/ql/lib/ext/generated/System.Buffers.model.yml rename to csharp/ql/lib/ext/generated/modelgenerator/System.Buffers.model.yml diff --git a/csharp/ql/lib/ext/generated/System.CodeDom.Compiler.model.yml b/csharp/ql/lib/ext/generated/modelgenerator/System.CodeDom.Compiler.model.yml similarity index 100% rename from csharp/ql/lib/ext/generated/System.CodeDom.Compiler.model.yml rename to csharp/ql/lib/ext/generated/modelgenerator/System.CodeDom.Compiler.model.yml diff --git a/csharp/ql/lib/ext/generated/System.CodeDom.model.yml b/csharp/ql/lib/ext/generated/modelgenerator/System.CodeDom.model.yml similarity index 100% rename from csharp/ql/lib/ext/generated/System.CodeDom.model.yml rename to csharp/ql/lib/ext/generated/modelgenerator/System.CodeDom.model.yml diff --git a/csharp/ql/lib/ext/generated/System.Collections.Concurrent.model.yml b/csharp/ql/lib/ext/generated/modelgenerator/System.Collections.Concurrent.model.yml similarity index 100% rename from csharp/ql/lib/ext/generated/System.Collections.Concurrent.model.yml rename to csharp/ql/lib/ext/generated/modelgenerator/System.Collections.Concurrent.model.yml diff --git a/csharp/ql/lib/ext/generated/System.Collections.Frozen.model.yml b/csharp/ql/lib/ext/generated/modelgenerator/System.Collections.Frozen.model.yml similarity index 100% rename from csharp/ql/lib/ext/generated/System.Collections.Frozen.model.yml rename to csharp/ql/lib/ext/generated/modelgenerator/System.Collections.Frozen.model.yml diff --git a/csharp/ql/lib/ext/generated/System.Collections.Generic.model.yml b/csharp/ql/lib/ext/generated/modelgenerator/System.Collections.Generic.model.yml similarity index 100% rename from csharp/ql/lib/ext/generated/System.Collections.Generic.model.yml rename to csharp/ql/lib/ext/generated/modelgenerator/System.Collections.Generic.model.yml diff --git a/csharp/ql/lib/ext/generated/System.Collections.Immutable.model.yml b/csharp/ql/lib/ext/generated/modelgenerator/System.Collections.Immutable.model.yml similarity index 100% rename from csharp/ql/lib/ext/generated/System.Collections.Immutable.model.yml rename to csharp/ql/lib/ext/generated/modelgenerator/System.Collections.Immutable.model.yml diff --git a/csharp/ql/lib/ext/generated/System.Collections.ObjectModel.model.yml b/csharp/ql/lib/ext/generated/modelgenerator/System.Collections.ObjectModel.model.yml similarity index 100% rename from csharp/ql/lib/ext/generated/System.Collections.ObjectModel.model.yml rename to csharp/ql/lib/ext/generated/modelgenerator/System.Collections.ObjectModel.model.yml diff --git a/csharp/ql/lib/ext/generated/System.Collections.Specialized.model.yml b/csharp/ql/lib/ext/generated/modelgenerator/System.Collections.Specialized.model.yml similarity index 100% rename from csharp/ql/lib/ext/generated/System.Collections.Specialized.model.yml rename to csharp/ql/lib/ext/generated/modelgenerator/System.Collections.Specialized.model.yml diff --git a/csharp/ql/lib/ext/generated/System.Collections.model.yml b/csharp/ql/lib/ext/generated/modelgenerator/System.Collections.model.yml similarity index 100% rename from csharp/ql/lib/ext/generated/System.Collections.model.yml rename to csharp/ql/lib/ext/generated/modelgenerator/System.Collections.model.yml diff --git a/csharp/ql/lib/ext/generated/System.ComponentModel.Composition.Hosting.model.yml b/csharp/ql/lib/ext/generated/modelgenerator/System.ComponentModel.Composition.Hosting.model.yml similarity index 100% rename from csharp/ql/lib/ext/generated/System.ComponentModel.Composition.Hosting.model.yml rename to csharp/ql/lib/ext/generated/modelgenerator/System.ComponentModel.Composition.Hosting.model.yml diff --git a/csharp/ql/lib/ext/generated/System.ComponentModel.Composition.Primitives.model.yml b/csharp/ql/lib/ext/generated/modelgenerator/System.ComponentModel.Composition.Primitives.model.yml similarity index 100% rename from csharp/ql/lib/ext/generated/System.ComponentModel.Composition.Primitives.model.yml rename to csharp/ql/lib/ext/generated/modelgenerator/System.ComponentModel.Composition.Primitives.model.yml diff --git a/csharp/ql/lib/ext/generated/System.ComponentModel.Composition.ReflectionModel.model.yml b/csharp/ql/lib/ext/generated/modelgenerator/System.ComponentModel.Composition.ReflectionModel.model.yml similarity index 100% rename from csharp/ql/lib/ext/generated/System.ComponentModel.Composition.ReflectionModel.model.yml rename to csharp/ql/lib/ext/generated/modelgenerator/System.ComponentModel.Composition.ReflectionModel.model.yml diff --git a/csharp/ql/lib/ext/generated/System.ComponentModel.Composition.Registration.model.yml b/csharp/ql/lib/ext/generated/modelgenerator/System.ComponentModel.Composition.Registration.model.yml similarity index 100% rename from csharp/ql/lib/ext/generated/System.ComponentModel.Composition.Registration.model.yml rename to csharp/ql/lib/ext/generated/modelgenerator/System.ComponentModel.Composition.Registration.model.yml diff --git a/csharp/ql/lib/ext/generated/System.ComponentModel.Composition.model.yml b/csharp/ql/lib/ext/generated/modelgenerator/System.ComponentModel.Composition.model.yml similarity index 100% rename from csharp/ql/lib/ext/generated/System.ComponentModel.Composition.model.yml rename to csharp/ql/lib/ext/generated/modelgenerator/System.ComponentModel.Composition.model.yml diff --git a/csharp/ql/lib/ext/generated/System.ComponentModel.DataAnnotations.Schema.model.yml b/csharp/ql/lib/ext/generated/modelgenerator/System.ComponentModel.DataAnnotations.Schema.model.yml similarity index 100% rename from csharp/ql/lib/ext/generated/System.ComponentModel.DataAnnotations.Schema.model.yml rename to csharp/ql/lib/ext/generated/modelgenerator/System.ComponentModel.DataAnnotations.Schema.model.yml diff --git a/csharp/ql/lib/ext/generated/System.ComponentModel.DataAnnotations.model.yml b/csharp/ql/lib/ext/generated/modelgenerator/System.ComponentModel.DataAnnotations.model.yml similarity index 100% rename from csharp/ql/lib/ext/generated/System.ComponentModel.DataAnnotations.model.yml rename to csharp/ql/lib/ext/generated/modelgenerator/System.ComponentModel.DataAnnotations.model.yml diff --git a/csharp/ql/lib/ext/generated/System.ComponentModel.Design.Serialization.model.yml b/csharp/ql/lib/ext/generated/modelgenerator/System.ComponentModel.Design.Serialization.model.yml similarity index 100% rename from csharp/ql/lib/ext/generated/System.ComponentModel.Design.Serialization.model.yml rename to csharp/ql/lib/ext/generated/modelgenerator/System.ComponentModel.Design.Serialization.model.yml diff --git a/csharp/ql/lib/ext/generated/System.ComponentModel.Design.model.yml b/csharp/ql/lib/ext/generated/modelgenerator/System.ComponentModel.Design.model.yml similarity index 100% rename from csharp/ql/lib/ext/generated/System.ComponentModel.Design.model.yml rename to csharp/ql/lib/ext/generated/modelgenerator/System.ComponentModel.Design.model.yml diff --git a/csharp/ql/lib/ext/generated/System.ComponentModel.model.yml b/csharp/ql/lib/ext/generated/modelgenerator/System.ComponentModel.model.yml similarity index 100% rename from csharp/ql/lib/ext/generated/System.ComponentModel.model.yml rename to csharp/ql/lib/ext/generated/modelgenerator/System.ComponentModel.model.yml diff --git a/csharp/ql/lib/ext/generated/System.Composition.Convention.model.yml b/csharp/ql/lib/ext/generated/modelgenerator/System.Composition.Convention.model.yml similarity index 100% rename from csharp/ql/lib/ext/generated/System.Composition.Convention.model.yml rename to csharp/ql/lib/ext/generated/modelgenerator/System.Composition.Convention.model.yml diff --git a/csharp/ql/lib/ext/generated/System.Composition.Hosting.Core.model.yml b/csharp/ql/lib/ext/generated/modelgenerator/System.Composition.Hosting.Core.model.yml similarity index 100% rename from csharp/ql/lib/ext/generated/System.Composition.Hosting.Core.model.yml rename to csharp/ql/lib/ext/generated/modelgenerator/System.Composition.Hosting.Core.model.yml diff --git a/csharp/ql/lib/ext/generated/System.Composition.Hosting.model.yml b/csharp/ql/lib/ext/generated/modelgenerator/System.Composition.Hosting.model.yml similarity index 100% rename from csharp/ql/lib/ext/generated/System.Composition.Hosting.model.yml rename to csharp/ql/lib/ext/generated/modelgenerator/System.Composition.Hosting.model.yml diff --git a/csharp/ql/lib/ext/generated/System.Composition.model.yml b/csharp/ql/lib/ext/generated/modelgenerator/System.Composition.model.yml similarity index 100% rename from csharp/ql/lib/ext/generated/System.Composition.model.yml rename to csharp/ql/lib/ext/generated/modelgenerator/System.Composition.model.yml diff --git a/csharp/ql/lib/ext/generated/System.Configuration.Internal.model.yml b/csharp/ql/lib/ext/generated/modelgenerator/System.Configuration.Internal.model.yml similarity index 100% rename from csharp/ql/lib/ext/generated/System.Configuration.Internal.model.yml rename to csharp/ql/lib/ext/generated/modelgenerator/System.Configuration.Internal.model.yml diff --git a/csharp/ql/lib/ext/generated/System.Configuration.Provider.model.yml b/csharp/ql/lib/ext/generated/modelgenerator/System.Configuration.Provider.model.yml similarity index 100% rename from csharp/ql/lib/ext/generated/System.Configuration.Provider.model.yml rename to csharp/ql/lib/ext/generated/modelgenerator/System.Configuration.Provider.model.yml diff --git a/csharp/ql/lib/ext/generated/System.Configuration.model.yml b/csharp/ql/lib/ext/generated/modelgenerator/System.Configuration.model.yml similarity index 100% rename from csharp/ql/lib/ext/generated/System.Configuration.model.yml rename to csharp/ql/lib/ext/generated/modelgenerator/System.Configuration.model.yml diff --git a/csharp/ql/lib/ext/generated/System.Data.Common.model.yml b/csharp/ql/lib/ext/generated/modelgenerator/System.Data.Common.model.yml similarity index 100% rename from csharp/ql/lib/ext/generated/System.Data.Common.model.yml rename to csharp/ql/lib/ext/generated/modelgenerator/System.Data.Common.model.yml diff --git a/csharp/ql/lib/ext/generated/System.Data.Odbc.model.yml b/csharp/ql/lib/ext/generated/modelgenerator/System.Data.Odbc.model.yml similarity index 100% rename from csharp/ql/lib/ext/generated/System.Data.Odbc.model.yml rename to csharp/ql/lib/ext/generated/modelgenerator/System.Data.Odbc.model.yml diff --git a/csharp/ql/lib/ext/generated/System.Data.OleDb.model.yml b/csharp/ql/lib/ext/generated/modelgenerator/System.Data.OleDb.model.yml similarity index 100% rename from csharp/ql/lib/ext/generated/System.Data.OleDb.model.yml rename to csharp/ql/lib/ext/generated/modelgenerator/System.Data.OleDb.model.yml diff --git a/csharp/ql/lib/ext/generated/System.Data.OracleClient.model.yml b/csharp/ql/lib/ext/generated/modelgenerator/System.Data.OracleClient.model.yml similarity index 100% rename from csharp/ql/lib/ext/generated/System.Data.OracleClient.model.yml rename to csharp/ql/lib/ext/generated/modelgenerator/System.Data.OracleClient.model.yml diff --git a/csharp/ql/lib/ext/generated/System.Data.SqlClient.model.yml b/csharp/ql/lib/ext/generated/modelgenerator/System.Data.SqlClient.model.yml similarity index 100% rename from csharp/ql/lib/ext/generated/System.Data.SqlClient.model.yml rename to csharp/ql/lib/ext/generated/modelgenerator/System.Data.SqlClient.model.yml diff --git a/csharp/ql/lib/ext/generated/System.Data.SqlTypes.model.yml b/csharp/ql/lib/ext/generated/modelgenerator/System.Data.SqlTypes.model.yml similarity index 100% rename from csharp/ql/lib/ext/generated/System.Data.SqlTypes.model.yml rename to csharp/ql/lib/ext/generated/modelgenerator/System.Data.SqlTypes.model.yml diff --git a/csharp/ql/lib/ext/generated/System.Data.model.yml b/csharp/ql/lib/ext/generated/modelgenerator/System.Data.model.yml similarity index 100% rename from csharp/ql/lib/ext/generated/System.Data.model.yml rename to csharp/ql/lib/ext/generated/modelgenerator/System.Data.model.yml diff --git a/csharp/ql/lib/ext/generated/System.Diagnostics.CodeAnalysis.model.yml b/csharp/ql/lib/ext/generated/modelgenerator/System.Diagnostics.CodeAnalysis.model.yml similarity index 100% rename from csharp/ql/lib/ext/generated/System.Diagnostics.CodeAnalysis.model.yml rename to csharp/ql/lib/ext/generated/modelgenerator/System.Diagnostics.CodeAnalysis.model.yml diff --git a/csharp/ql/lib/ext/generated/System.Diagnostics.Contracts.model.yml b/csharp/ql/lib/ext/generated/modelgenerator/System.Diagnostics.Contracts.model.yml similarity index 100% rename from csharp/ql/lib/ext/generated/System.Diagnostics.Contracts.model.yml rename to csharp/ql/lib/ext/generated/modelgenerator/System.Diagnostics.Contracts.model.yml diff --git a/csharp/ql/lib/ext/generated/System.Diagnostics.Eventing.Reader.model.yml b/csharp/ql/lib/ext/generated/modelgenerator/System.Diagnostics.Eventing.Reader.model.yml similarity index 100% rename from csharp/ql/lib/ext/generated/System.Diagnostics.Eventing.Reader.model.yml rename to csharp/ql/lib/ext/generated/modelgenerator/System.Diagnostics.Eventing.Reader.model.yml diff --git a/csharp/ql/lib/ext/generated/System.Diagnostics.Metrics.model.yml b/csharp/ql/lib/ext/generated/modelgenerator/System.Diagnostics.Metrics.model.yml similarity index 100% rename from csharp/ql/lib/ext/generated/System.Diagnostics.Metrics.model.yml rename to csharp/ql/lib/ext/generated/modelgenerator/System.Diagnostics.Metrics.model.yml diff --git a/csharp/ql/lib/ext/generated/System.Diagnostics.PerformanceData.model.yml b/csharp/ql/lib/ext/generated/modelgenerator/System.Diagnostics.PerformanceData.model.yml similarity index 100% rename from csharp/ql/lib/ext/generated/System.Diagnostics.PerformanceData.model.yml rename to csharp/ql/lib/ext/generated/modelgenerator/System.Diagnostics.PerformanceData.model.yml diff --git a/csharp/ql/lib/ext/generated/System.Diagnostics.SymbolStore.model.yml b/csharp/ql/lib/ext/generated/modelgenerator/System.Diagnostics.SymbolStore.model.yml similarity index 100% rename from csharp/ql/lib/ext/generated/System.Diagnostics.SymbolStore.model.yml rename to csharp/ql/lib/ext/generated/modelgenerator/System.Diagnostics.SymbolStore.model.yml diff --git a/csharp/ql/lib/ext/generated/System.Diagnostics.Tracing.model.yml b/csharp/ql/lib/ext/generated/modelgenerator/System.Diagnostics.Tracing.model.yml similarity index 100% rename from csharp/ql/lib/ext/generated/System.Diagnostics.Tracing.model.yml rename to csharp/ql/lib/ext/generated/modelgenerator/System.Diagnostics.Tracing.model.yml diff --git a/csharp/ql/lib/ext/generated/System.Diagnostics.model.yml b/csharp/ql/lib/ext/generated/modelgenerator/System.Diagnostics.model.yml similarity index 100% rename from csharp/ql/lib/ext/generated/System.Diagnostics.model.yml rename to csharp/ql/lib/ext/generated/modelgenerator/System.Diagnostics.model.yml diff --git a/csharp/ql/lib/ext/generated/System.DirectoryServices.AccountManagement.model.yml b/csharp/ql/lib/ext/generated/modelgenerator/System.DirectoryServices.AccountManagement.model.yml similarity index 100% rename from csharp/ql/lib/ext/generated/System.DirectoryServices.AccountManagement.model.yml rename to csharp/ql/lib/ext/generated/modelgenerator/System.DirectoryServices.AccountManagement.model.yml diff --git a/csharp/ql/lib/ext/generated/System.DirectoryServices.ActiveDirectory.model.yml b/csharp/ql/lib/ext/generated/modelgenerator/System.DirectoryServices.ActiveDirectory.model.yml similarity index 100% rename from csharp/ql/lib/ext/generated/System.DirectoryServices.ActiveDirectory.model.yml rename to csharp/ql/lib/ext/generated/modelgenerator/System.DirectoryServices.ActiveDirectory.model.yml diff --git a/csharp/ql/lib/ext/generated/System.DirectoryServices.Protocols.model.yml b/csharp/ql/lib/ext/generated/modelgenerator/System.DirectoryServices.Protocols.model.yml similarity index 100% rename from csharp/ql/lib/ext/generated/System.DirectoryServices.Protocols.model.yml rename to csharp/ql/lib/ext/generated/modelgenerator/System.DirectoryServices.Protocols.model.yml diff --git a/csharp/ql/lib/ext/generated/System.DirectoryServices.model.yml b/csharp/ql/lib/ext/generated/modelgenerator/System.DirectoryServices.model.yml similarity index 100% rename from csharp/ql/lib/ext/generated/System.DirectoryServices.model.yml rename to csharp/ql/lib/ext/generated/modelgenerator/System.DirectoryServices.model.yml diff --git a/csharp/ql/lib/ext/generated/System.Drawing.Printing.model.yml b/csharp/ql/lib/ext/generated/modelgenerator/System.Drawing.Printing.model.yml similarity index 100% rename from csharp/ql/lib/ext/generated/System.Drawing.Printing.model.yml rename to csharp/ql/lib/ext/generated/modelgenerator/System.Drawing.Printing.model.yml diff --git a/csharp/ql/lib/ext/generated/System.Drawing.model.yml b/csharp/ql/lib/ext/generated/modelgenerator/System.Drawing.model.yml similarity index 100% rename from csharp/ql/lib/ext/generated/System.Drawing.model.yml rename to csharp/ql/lib/ext/generated/modelgenerator/System.Drawing.model.yml diff --git a/csharp/ql/lib/ext/generated/System.Dynamic.model.yml b/csharp/ql/lib/ext/generated/modelgenerator/System.Dynamic.model.yml similarity index 100% rename from csharp/ql/lib/ext/generated/System.Dynamic.model.yml rename to csharp/ql/lib/ext/generated/modelgenerator/System.Dynamic.model.yml diff --git a/csharp/ql/lib/ext/generated/System.Formats.Asn1.model.yml b/csharp/ql/lib/ext/generated/modelgenerator/System.Formats.Asn1.model.yml similarity index 100% rename from csharp/ql/lib/ext/generated/System.Formats.Asn1.model.yml rename to csharp/ql/lib/ext/generated/modelgenerator/System.Formats.Asn1.model.yml diff --git a/csharp/ql/lib/ext/generated/System.Formats.Cbor.model.yml b/csharp/ql/lib/ext/generated/modelgenerator/System.Formats.Cbor.model.yml similarity index 100% rename from csharp/ql/lib/ext/generated/System.Formats.Cbor.model.yml rename to csharp/ql/lib/ext/generated/modelgenerator/System.Formats.Cbor.model.yml diff --git a/csharp/ql/lib/ext/generated/System.Formats.Nrbf.model.yml b/csharp/ql/lib/ext/generated/modelgenerator/System.Formats.Nrbf.model.yml similarity index 100% rename from csharp/ql/lib/ext/generated/System.Formats.Nrbf.model.yml rename to csharp/ql/lib/ext/generated/modelgenerator/System.Formats.Nrbf.model.yml diff --git a/csharp/ql/lib/ext/generated/System.Formats.Tar.model.yml b/csharp/ql/lib/ext/generated/modelgenerator/System.Formats.Tar.model.yml similarity index 100% rename from csharp/ql/lib/ext/generated/System.Formats.Tar.model.yml rename to csharp/ql/lib/ext/generated/modelgenerator/System.Formats.Tar.model.yml diff --git a/csharp/ql/lib/ext/generated/System.Globalization.model.yml b/csharp/ql/lib/ext/generated/modelgenerator/System.Globalization.model.yml similarity index 100% rename from csharp/ql/lib/ext/generated/System.Globalization.model.yml rename to csharp/ql/lib/ext/generated/modelgenerator/System.Globalization.model.yml diff --git a/csharp/ql/lib/ext/generated/System.IO.Compression.model.yml b/csharp/ql/lib/ext/generated/modelgenerator/System.IO.Compression.model.yml similarity index 100% rename from csharp/ql/lib/ext/generated/System.IO.Compression.model.yml rename to csharp/ql/lib/ext/generated/modelgenerator/System.IO.Compression.model.yml diff --git a/csharp/ql/lib/ext/generated/System.IO.Enumeration.model.yml b/csharp/ql/lib/ext/generated/modelgenerator/System.IO.Enumeration.model.yml similarity index 100% rename from csharp/ql/lib/ext/generated/System.IO.Enumeration.model.yml rename to csharp/ql/lib/ext/generated/modelgenerator/System.IO.Enumeration.model.yml diff --git a/csharp/ql/lib/ext/generated/System.IO.Hashing.model.yml b/csharp/ql/lib/ext/generated/modelgenerator/System.IO.Hashing.model.yml similarity index 100% rename from csharp/ql/lib/ext/generated/System.IO.Hashing.model.yml rename to csharp/ql/lib/ext/generated/modelgenerator/System.IO.Hashing.model.yml diff --git a/csharp/ql/lib/ext/generated/System.IO.IsolatedStorage.model.yml b/csharp/ql/lib/ext/generated/modelgenerator/System.IO.IsolatedStorage.model.yml similarity index 100% rename from csharp/ql/lib/ext/generated/System.IO.IsolatedStorage.model.yml rename to csharp/ql/lib/ext/generated/modelgenerator/System.IO.IsolatedStorage.model.yml diff --git a/csharp/ql/lib/ext/generated/System.IO.MemoryMappedFiles.model.yml b/csharp/ql/lib/ext/generated/modelgenerator/System.IO.MemoryMappedFiles.model.yml similarity index 100% rename from csharp/ql/lib/ext/generated/System.IO.MemoryMappedFiles.model.yml rename to csharp/ql/lib/ext/generated/modelgenerator/System.IO.MemoryMappedFiles.model.yml diff --git a/csharp/ql/lib/ext/generated/System.IO.Packaging.model.yml b/csharp/ql/lib/ext/generated/modelgenerator/System.IO.Packaging.model.yml similarity index 100% rename from csharp/ql/lib/ext/generated/System.IO.Packaging.model.yml rename to csharp/ql/lib/ext/generated/modelgenerator/System.IO.Packaging.model.yml diff --git a/csharp/ql/lib/ext/generated/System.IO.Pipelines.model.yml b/csharp/ql/lib/ext/generated/modelgenerator/System.IO.Pipelines.model.yml similarity index 100% rename from csharp/ql/lib/ext/generated/System.IO.Pipelines.model.yml rename to csharp/ql/lib/ext/generated/modelgenerator/System.IO.Pipelines.model.yml diff --git a/csharp/ql/lib/ext/generated/System.IO.Pipes.model.yml b/csharp/ql/lib/ext/generated/modelgenerator/System.IO.Pipes.model.yml similarity index 100% rename from csharp/ql/lib/ext/generated/System.IO.Pipes.model.yml rename to csharp/ql/lib/ext/generated/modelgenerator/System.IO.Pipes.model.yml diff --git a/csharp/ql/lib/ext/generated/System.IO.Ports.model.yml b/csharp/ql/lib/ext/generated/modelgenerator/System.IO.Ports.model.yml similarity index 100% rename from csharp/ql/lib/ext/generated/System.IO.Ports.model.yml rename to csharp/ql/lib/ext/generated/modelgenerator/System.IO.Ports.model.yml diff --git a/csharp/ql/lib/ext/generated/System.IO.model.yml b/csharp/ql/lib/ext/generated/modelgenerator/System.IO.model.yml similarity index 100% rename from csharp/ql/lib/ext/generated/System.IO.model.yml rename to csharp/ql/lib/ext/generated/modelgenerator/System.IO.model.yml diff --git a/csharp/ql/lib/ext/generated/System.Linq.Expressions.Interpreter.model.yml b/csharp/ql/lib/ext/generated/modelgenerator/System.Linq.Expressions.Interpreter.model.yml similarity index 100% rename from csharp/ql/lib/ext/generated/System.Linq.Expressions.Interpreter.model.yml rename to csharp/ql/lib/ext/generated/modelgenerator/System.Linq.Expressions.Interpreter.model.yml diff --git a/csharp/ql/lib/ext/generated/System.Linq.Expressions.model.yml b/csharp/ql/lib/ext/generated/modelgenerator/System.Linq.Expressions.model.yml similarity index 100% rename from csharp/ql/lib/ext/generated/System.Linq.Expressions.model.yml rename to csharp/ql/lib/ext/generated/modelgenerator/System.Linq.Expressions.model.yml diff --git a/csharp/ql/lib/ext/generated/System.Linq.model.yml b/csharp/ql/lib/ext/generated/modelgenerator/System.Linq.model.yml similarity index 100% rename from csharp/ql/lib/ext/generated/System.Linq.model.yml rename to csharp/ql/lib/ext/generated/modelgenerator/System.Linq.model.yml diff --git a/csharp/ql/lib/ext/generated/System.Management.model.yml b/csharp/ql/lib/ext/generated/modelgenerator/System.Management.model.yml similarity index 100% rename from csharp/ql/lib/ext/generated/System.Management.model.yml rename to csharp/ql/lib/ext/generated/modelgenerator/System.Management.model.yml diff --git a/csharp/ql/lib/ext/generated/System.Media.model.yml b/csharp/ql/lib/ext/generated/modelgenerator/System.Media.model.yml similarity index 100% rename from csharp/ql/lib/ext/generated/System.Media.model.yml rename to csharp/ql/lib/ext/generated/modelgenerator/System.Media.model.yml diff --git a/csharp/ql/lib/ext/generated/System.Net.Cache.model.yml b/csharp/ql/lib/ext/generated/modelgenerator/System.Net.Cache.model.yml similarity index 100% rename from csharp/ql/lib/ext/generated/System.Net.Cache.model.yml rename to csharp/ql/lib/ext/generated/modelgenerator/System.Net.Cache.model.yml diff --git a/csharp/ql/lib/ext/generated/System.Net.Http.Headers.model.yml b/csharp/ql/lib/ext/generated/modelgenerator/System.Net.Http.Headers.model.yml similarity index 100% rename from csharp/ql/lib/ext/generated/System.Net.Http.Headers.model.yml rename to csharp/ql/lib/ext/generated/modelgenerator/System.Net.Http.Headers.model.yml diff --git a/csharp/ql/lib/ext/generated/System.Net.Http.Json.model.yml b/csharp/ql/lib/ext/generated/modelgenerator/System.Net.Http.Json.model.yml similarity index 100% rename from csharp/ql/lib/ext/generated/System.Net.Http.Json.model.yml rename to csharp/ql/lib/ext/generated/modelgenerator/System.Net.Http.Json.model.yml diff --git a/csharp/ql/lib/ext/generated/System.Net.Http.Metrics.model.yml b/csharp/ql/lib/ext/generated/modelgenerator/System.Net.Http.Metrics.model.yml similarity index 100% rename from csharp/ql/lib/ext/generated/System.Net.Http.Metrics.model.yml rename to csharp/ql/lib/ext/generated/modelgenerator/System.Net.Http.Metrics.model.yml diff --git a/csharp/ql/lib/ext/generated/System.Net.Http.model.yml b/csharp/ql/lib/ext/generated/modelgenerator/System.Net.Http.model.yml similarity index 100% rename from csharp/ql/lib/ext/generated/System.Net.Http.model.yml rename to csharp/ql/lib/ext/generated/modelgenerator/System.Net.Http.model.yml diff --git a/csharp/ql/lib/ext/generated/System.Net.Mail.model.yml b/csharp/ql/lib/ext/generated/modelgenerator/System.Net.Mail.model.yml similarity index 100% rename from csharp/ql/lib/ext/generated/System.Net.Mail.model.yml rename to csharp/ql/lib/ext/generated/modelgenerator/System.Net.Mail.model.yml diff --git a/csharp/ql/lib/ext/generated/System.Net.Mime.model.yml b/csharp/ql/lib/ext/generated/modelgenerator/System.Net.Mime.model.yml similarity index 100% rename from csharp/ql/lib/ext/generated/System.Net.Mime.model.yml rename to csharp/ql/lib/ext/generated/modelgenerator/System.Net.Mime.model.yml diff --git a/csharp/ql/lib/ext/generated/System.Net.NetworkInformation.model.yml b/csharp/ql/lib/ext/generated/modelgenerator/System.Net.NetworkInformation.model.yml similarity index 100% rename from csharp/ql/lib/ext/generated/System.Net.NetworkInformation.model.yml rename to csharp/ql/lib/ext/generated/modelgenerator/System.Net.NetworkInformation.model.yml diff --git a/csharp/ql/lib/ext/generated/System.Net.PeerToPeer.Collaboration.model.yml b/csharp/ql/lib/ext/generated/modelgenerator/System.Net.PeerToPeer.Collaboration.model.yml similarity index 100% rename from csharp/ql/lib/ext/generated/System.Net.PeerToPeer.Collaboration.model.yml rename to csharp/ql/lib/ext/generated/modelgenerator/System.Net.PeerToPeer.Collaboration.model.yml diff --git a/csharp/ql/lib/ext/generated/System.Net.PeerToPeer.model.yml b/csharp/ql/lib/ext/generated/modelgenerator/System.Net.PeerToPeer.model.yml similarity index 100% rename from csharp/ql/lib/ext/generated/System.Net.PeerToPeer.model.yml rename to csharp/ql/lib/ext/generated/modelgenerator/System.Net.PeerToPeer.model.yml diff --git a/csharp/ql/lib/ext/generated/System.Net.Quic.model.yml b/csharp/ql/lib/ext/generated/modelgenerator/System.Net.Quic.model.yml similarity index 100% rename from csharp/ql/lib/ext/generated/System.Net.Quic.model.yml rename to csharp/ql/lib/ext/generated/modelgenerator/System.Net.Quic.model.yml diff --git a/csharp/ql/lib/ext/generated/System.Net.Security.model.yml b/csharp/ql/lib/ext/generated/modelgenerator/System.Net.Security.model.yml similarity index 100% rename from csharp/ql/lib/ext/generated/System.Net.Security.model.yml rename to csharp/ql/lib/ext/generated/modelgenerator/System.Net.Security.model.yml diff --git a/csharp/ql/lib/ext/generated/System.Net.ServerSentEvents.model.yml b/csharp/ql/lib/ext/generated/modelgenerator/System.Net.ServerSentEvents.model.yml similarity index 100% rename from csharp/ql/lib/ext/generated/System.Net.ServerSentEvents.model.yml rename to csharp/ql/lib/ext/generated/modelgenerator/System.Net.ServerSentEvents.model.yml diff --git a/csharp/ql/lib/ext/generated/System.Net.Sockets.model.yml b/csharp/ql/lib/ext/generated/modelgenerator/System.Net.Sockets.model.yml similarity index 100% rename from csharp/ql/lib/ext/generated/System.Net.Sockets.model.yml rename to csharp/ql/lib/ext/generated/modelgenerator/System.Net.Sockets.model.yml diff --git a/csharp/ql/lib/ext/generated/System.Net.WebSockets.model.yml b/csharp/ql/lib/ext/generated/modelgenerator/System.Net.WebSockets.model.yml similarity index 100% rename from csharp/ql/lib/ext/generated/System.Net.WebSockets.model.yml rename to csharp/ql/lib/ext/generated/modelgenerator/System.Net.WebSockets.model.yml diff --git a/csharp/ql/lib/ext/generated/System.Net.model.yml b/csharp/ql/lib/ext/generated/modelgenerator/System.Net.model.yml similarity index 100% rename from csharp/ql/lib/ext/generated/System.Net.model.yml rename to csharp/ql/lib/ext/generated/modelgenerator/System.Net.model.yml diff --git a/csharp/ql/lib/ext/generated/System.Numerics.Tensors.model.yml b/csharp/ql/lib/ext/generated/modelgenerator/System.Numerics.Tensors.model.yml similarity index 100% rename from csharp/ql/lib/ext/generated/System.Numerics.Tensors.model.yml rename to csharp/ql/lib/ext/generated/modelgenerator/System.Numerics.Tensors.model.yml diff --git a/csharp/ql/lib/ext/generated/System.Numerics.model.yml b/csharp/ql/lib/ext/generated/modelgenerator/System.Numerics.model.yml similarity index 100% rename from csharp/ql/lib/ext/generated/System.Numerics.model.yml rename to csharp/ql/lib/ext/generated/modelgenerator/System.Numerics.model.yml diff --git a/csharp/ql/lib/ext/generated/System.Reflection.Context.model.yml b/csharp/ql/lib/ext/generated/modelgenerator/System.Reflection.Context.model.yml similarity index 100% rename from csharp/ql/lib/ext/generated/System.Reflection.Context.model.yml rename to csharp/ql/lib/ext/generated/modelgenerator/System.Reflection.Context.model.yml diff --git a/csharp/ql/lib/ext/generated/System.Reflection.Emit.model.yml b/csharp/ql/lib/ext/generated/modelgenerator/System.Reflection.Emit.model.yml similarity index 100% rename from csharp/ql/lib/ext/generated/System.Reflection.Emit.model.yml rename to csharp/ql/lib/ext/generated/modelgenerator/System.Reflection.Emit.model.yml diff --git a/csharp/ql/lib/ext/generated/System.Reflection.Metadata.Ecma335.model.yml b/csharp/ql/lib/ext/generated/modelgenerator/System.Reflection.Metadata.Ecma335.model.yml similarity index 100% rename from csharp/ql/lib/ext/generated/System.Reflection.Metadata.Ecma335.model.yml rename to csharp/ql/lib/ext/generated/modelgenerator/System.Reflection.Metadata.Ecma335.model.yml diff --git a/csharp/ql/lib/ext/generated/System.Reflection.Metadata.model.yml b/csharp/ql/lib/ext/generated/modelgenerator/System.Reflection.Metadata.model.yml similarity index 100% rename from csharp/ql/lib/ext/generated/System.Reflection.Metadata.model.yml rename to csharp/ql/lib/ext/generated/modelgenerator/System.Reflection.Metadata.model.yml diff --git a/csharp/ql/lib/ext/generated/System.Reflection.PortableExecutable.model.yml b/csharp/ql/lib/ext/generated/modelgenerator/System.Reflection.PortableExecutable.model.yml similarity index 100% rename from csharp/ql/lib/ext/generated/System.Reflection.PortableExecutable.model.yml rename to csharp/ql/lib/ext/generated/modelgenerator/System.Reflection.PortableExecutable.model.yml diff --git a/csharp/ql/lib/ext/generated/System.Reflection.model.yml b/csharp/ql/lib/ext/generated/modelgenerator/System.Reflection.model.yml similarity index 100% rename from csharp/ql/lib/ext/generated/System.Reflection.model.yml rename to csharp/ql/lib/ext/generated/modelgenerator/System.Reflection.model.yml diff --git a/csharp/ql/lib/ext/generated/System.Resources.Extensions.model.yml b/csharp/ql/lib/ext/generated/modelgenerator/System.Resources.Extensions.model.yml similarity index 100% rename from csharp/ql/lib/ext/generated/System.Resources.Extensions.model.yml rename to csharp/ql/lib/ext/generated/modelgenerator/System.Resources.Extensions.model.yml diff --git a/csharp/ql/lib/ext/generated/System.Resources.model.yml b/csharp/ql/lib/ext/generated/modelgenerator/System.Resources.model.yml similarity index 100% rename from csharp/ql/lib/ext/generated/System.Resources.model.yml rename to csharp/ql/lib/ext/generated/modelgenerator/System.Resources.model.yml diff --git a/csharp/ql/lib/ext/generated/System.Runtime.Caching.Hosting.model.yml b/csharp/ql/lib/ext/generated/modelgenerator/System.Runtime.Caching.Hosting.model.yml similarity index 100% rename from csharp/ql/lib/ext/generated/System.Runtime.Caching.Hosting.model.yml rename to csharp/ql/lib/ext/generated/modelgenerator/System.Runtime.Caching.Hosting.model.yml diff --git a/csharp/ql/lib/ext/generated/System.Runtime.Caching.model.yml b/csharp/ql/lib/ext/generated/modelgenerator/System.Runtime.Caching.model.yml similarity index 100% rename from csharp/ql/lib/ext/generated/System.Runtime.Caching.model.yml rename to csharp/ql/lib/ext/generated/modelgenerator/System.Runtime.Caching.model.yml diff --git a/csharp/ql/lib/ext/generated/System.Runtime.CompilerServices.model.yml b/csharp/ql/lib/ext/generated/modelgenerator/System.Runtime.CompilerServices.model.yml similarity index 100% rename from csharp/ql/lib/ext/generated/System.Runtime.CompilerServices.model.yml rename to csharp/ql/lib/ext/generated/modelgenerator/System.Runtime.CompilerServices.model.yml diff --git a/csharp/ql/lib/ext/generated/System.Runtime.ConstrainedExecution.model.yml b/csharp/ql/lib/ext/generated/modelgenerator/System.Runtime.ConstrainedExecution.model.yml similarity index 100% rename from csharp/ql/lib/ext/generated/System.Runtime.ConstrainedExecution.model.yml rename to csharp/ql/lib/ext/generated/modelgenerator/System.Runtime.ConstrainedExecution.model.yml diff --git a/csharp/ql/lib/ext/generated/System.Runtime.ExceptionServices.model.yml b/csharp/ql/lib/ext/generated/modelgenerator/System.Runtime.ExceptionServices.model.yml similarity index 100% rename from csharp/ql/lib/ext/generated/System.Runtime.ExceptionServices.model.yml rename to csharp/ql/lib/ext/generated/modelgenerator/System.Runtime.ExceptionServices.model.yml diff --git a/csharp/ql/lib/ext/generated/System.Runtime.InteropServices.ComTypes.model.yml b/csharp/ql/lib/ext/generated/modelgenerator/System.Runtime.InteropServices.ComTypes.model.yml similarity index 100% rename from csharp/ql/lib/ext/generated/System.Runtime.InteropServices.ComTypes.model.yml rename to csharp/ql/lib/ext/generated/modelgenerator/System.Runtime.InteropServices.ComTypes.model.yml diff --git a/csharp/ql/lib/ext/generated/System.Runtime.InteropServices.Java.model.yml b/csharp/ql/lib/ext/generated/modelgenerator/System.Runtime.InteropServices.Java.model.yml similarity index 100% rename from csharp/ql/lib/ext/generated/System.Runtime.InteropServices.Java.model.yml rename to csharp/ql/lib/ext/generated/modelgenerator/System.Runtime.InteropServices.Java.model.yml diff --git a/csharp/ql/lib/ext/generated/System.Runtime.InteropServices.JavaScript.model.yml b/csharp/ql/lib/ext/generated/modelgenerator/System.Runtime.InteropServices.JavaScript.model.yml similarity index 100% rename from csharp/ql/lib/ext/generated/System.Runtime.InteropServices.JavaScript.model.yml rename to csharp/ql/lib/ext/generated/modelgenerator/System.Runtime.InteropServices.JavaScript.model.yml diff --git a/csharp/ql/lib/ext/generated/System.Runtime.InteropServices.Marshalling.model.yml b/csharp/ql/lib/ext/generated/modelgenerator/System.Runtime.InteropServices.Marshalling.model.yml similarity index 100% rename from csharp/ql/lib/ext/generated/System.Runtime.InteropServices.Marshalling.model.yml rename to csharp/ql/lib/ext/generated/modelgenerator/System.Runtime.InteropServices.Marshalling.model.yml diff --git a/csharp/ql/lib/ext/generated/System.Runtime.InteropServices.ObjectiveC.model.yml b/csharp/ql/lib/ext/generated/modelgenerator/System.Runtime.InteropServices.ObjectiveC.model.yml similarity index 100% rename from csharp/ql/lib/ext/generated/System.Runtime.InteropServices.ObjectiveC.model.yml rename to csharp/ql/lib/ext/generated/modelgenerator/System.Runtime.InteropServices.ObjectiveC.model.yml diff --git a/csharp/ql/lib/ext/generated/System.Runtime.InteropServices.Swift.model.yml b/csharp/ql/lib/ext/generated/modelgenerator/System.Runtime.InteropServices.Swift.model.yml similarity index 100% rename from csharp/ql/lib/ext/generated/System.Runtime.InteropServices.Swift.model.yml rename to csharp/ql/lib/ext/generated/modelgenerator/System.Runtime.InteropServices.Swift.model.yml diff --git a/csharp/ql/lib/ext/generated/System.Runtime.InteropServices.model.yml b/csharp/ql/lib/ext/generated/modelgenerator/System.Runtime.InteropServices.model.yml similarity index 100% rename from csharp/ql/lib/ext/generated/System.Runtime.InteropServices.model.yml rename to csharp/ql/lib/ext/generated/modelgenerator/System.Runtime.InteropServices.model.yml diff --git a/csharp/ql/lib/ext/generated/System.Runtime.Intrinsics.Arm.model.yml b/csharp/ql/lib/ext/generated/modelgenerator/System.Runtime.Intrinsics.Arm.model.yml similarity index 100% rename from csharp/ql/lib/ext/generated/System.Runtime.Intrinsics.Arm.model.yml rename to csharp/ql/lib/ext/generated/modelgenerator/System.Runtime.Intrinsics.Arm.model.yml diff --git a/csharp/ql/lib/ext/generated/System.Runtime.Intrinsics.Wasm.model.yml b/csharp/ql/lib/ext/generated/modelgenerator/System.Runtime.Intrinsics.Wasm.model.yml similarity index 100% rename from csharp/ql/lib/ext/generated/System.Runtime.Intrinsics.Wasm.model.yml rename to csharp/ql/lib/ext/generated/modelgenerator/System.Runtime.Intrinsics.Wasm.model.yml diff --git a/csharp/ql/lib/ext/generated/System.Runtime.Intrinsics.X86.model.yml b/csharp/ql/lib/ext/generated/modelgenerator/System.Runtime.Intrinsics.X86.model.yml similarity index 100% rename from csharp/ql/lib/ext/generated/System.Runtime.Intrinsics.X86.model.yml rename to csharp/ql/lib/ext/generated/modelgenerator/System.Runtime.Intrinsics.X86.model.yml diff --git a/csharp/ql/lib/ext/generated/System.Runtime.Intrinsics.model.yml b/csharp/ql/lib/ext/generated/modelgenerator/System.Runtime.Intrinsics.model.yml similarity index 100% rename from csharp/ql/lib/ext/generated/System.Runtime.Intrinsics.model.yml rename to csharp/ql/lib/ext/generated/modelgenerator/System.Runtime.Intrinsics.model.yml diff --git a/csharp/ql/lib/ext/generated/System.Runtime.Loader.model.yml b/csharp/ql/lib/ext/generated/modelgenerator/System.Runtime.Loader.model.yml similarity index 100% rename from csharp/ql/lib/ext/generated/System.Runtime.Loader.model.yml rename to csharp/ql/lib/ext/generated/modelgenerator/System.Runtime.Loader.model.yml diff --git a/csharp/ql/lib/ext/generated/System.Runtime.Remoting.model.yml b/csharp/ql/lib/ext/generated/modelgenerator/System.Runtime.Remoting.model.yml similarity index 100% rename from csharp/ql/lib/ext/generated/System.Runtime.Remoting.model.yml rename to csharp/ql/lib/ext/generated/modelgenerator/System.Runtime.Remoting.model.yml diff --git a/csharp/ql/lib/ext/generated/System.Runtime.Serialization.DataContracts.model.yml b/csharp/ql/lib/ext/generated/modelgenerator/System.Runtime.Serialization.DataContracts.model.yml similarity index 100% rename from csharp/ql/lib/ext/generated/System.Runtime.Serialization.DataContracts.model.yml rename to csharp/ql/lib/ext/generated/modelgenerator/System.Runtime.Serialization.DataContracts.model.yml diff --git a/csharp/ql/lib/ext/generated/System.Runtime.Serialization.Formatters.Binary.model.yml b/csharp/ql/lib/ext/generated/modelgenerator/System.Runtime.Serialization.Formatters.Binary.model.yml similarity index 100% rename from csharp/ql/lib/ext/generated/System.Runtime.Serialization.Formatters.Binary.model.yml rename to csharp/ql/lib/ext/generated/modelgenerator/System.Runtime.Serialization.Formatters.Binary.model.yml diff --git a/csharp/ql/lib/ext/generated/System.Runtime.Serialization.Json.model.yml b/csharp/ql/lib/ext/generated/modelgenerator/System.Runtime.Serialization.Json.model.yml similarity index 100% rename from csharp/ql/lib/ext/generated/System.Runtime.Serialization.Json.model.yml rename to csharp/ql/lib/ext/generated/modelgenerator/System.Runtime.Serialization.Json.model.yml diff --git a/csharp/ql/lib/ext/generated/System.Runtime.Serialization.model.yml b/csharp/ql/lib/ext/generated/modelgenerator/System.Runtime.Serialization.model.yml similarity index 100% rename from csharp/ql/lib/ext/generated/System.Runtime.Serialization.model.yml rename to csharp/ql/lib/ext/generated/modelgenerator/System.Runtime.Serialization.model.yml diff --git a/csharp/ql/lib/ext/generated/System.Runtime.Versioning.model.yml b/csharp/ql/lib/ext/generated/modelgenerator/System.Runtime.Versioning.model.yml similarity index 100% rename from csharp/ql/lib/ext/generated/System.Runtime.Versioning.model.yml rename to csharp/ql/lib/ext/generated/modelgenerator/System.Runtime.Versioning.model.yml diff --git a/csharp/ql/lib/ext/generated/System.Runtime.model.yml b/csharp/ql/lib/ext/generated/modelgenerator/System.Runtime.model.yml similarity index 100% rename from csharp/ql/lib/ext/generated/System.Runtime.model.yml rename to csharp/ql/lib/ext/generated/modelgenerator/System.Runtime.model.yml diff --git a/csharp/ql/lib/ext/generated/System.Security.AccessControl.model.yml b/csharp/ql/lib/ext/generated/modelgenerator/System.Security.AccessControl.model.yml similarity index 100% rename from csharp/ql/lib/ext/generated/System.Security.AccessControl.model.yml rename to csharp/ql/lib/ext/generated/modelgenerator/System.Security.AccessControl.model.yml diff --git a/csharp/ql/lib/ext/generated/System.Security.Authentication.ExtendedProtection.model.yml b/csharp/ql/lib/ext/generated/modelgenerator/System.Security.Authentication.ExtendedProtection.model.yml similarity index 100% rename from csharp/ql/lib/ext/generated/System.Security.Authentication.ExtendedProtection.model.yml rename to csharp/ql/lib/ext/generated/modelgenerator/System.Security.Authentication.ExtendedProtection.model.yml diff --git a/csharp/ql/lib/ext/generated/System.Security.Authentication.model.yml b/csharp/ql/lib/ext/generated/modelgenerator/System.Security.Authentication.model.yml similarity index 100% rename from csharp/ql/lib/ext/generated/System.Security.Authentication.model.yml rename to csharp/ql/lib/ext/generated/modelgenerator/System.Security.Authentication.model.yml diff --git a/csharp/ql/lib/ext/generated/System.Security.Claims.model.yml b/csharp/ql/lib/ext/generated/modelgenerator/System.Security.Claims.model.yml similarity index 100% rename from csharp/ql/lib/ext/generated/System.Security.Claims.model.yml rename to csharp/ql/lib/ext/generated/modelgenerator/System.Security.Claims.model.yml diff --git a/csharp/ql/lib/ext/generated/System.Security.Cryptography.Cose.model.yml b/csharp/ql/lib/ext/generated/modelgenerator/System.Security.Cryptography.Cose.model.yml similarity index 100% rename from csharp/ql/lib/ext/generated/System.Security.Cryptography.Cose.model.yml rename to csharp/ql/lib/ext/generated/modelgenerator/System.Security.Cryptography.Cose.model.yml diff --git a/csharp/ql/lib/ext/generated/System.Security.Cryptography.Pkcs.model.yml b/csharp/ql/lib/ext/generated/modelgenerator/System.Security.Cryptography.Pkcs.model.yml similarity index 100% rename from csharp/ql/lib/ext/generated/System.Security.Cryptography.Pkcs.model.yml rename to csharp/ql/lib/ext/generated/modelgenerator/System.Security.Cryptography.Pkcs.model.yml diff --git a/csharp/ql/lib/ext/generated/System.Security.Cryptography.X509Certificates.model.yml b/csharp/ql/lib/ext/generated/modelgenerator/System.Security.Cryptography.X509Certificates.model.yml similarity index 100% rename from csharp/ql/lib/ext/generated/System.Security.Cryptography.X509Certificates.model.yml rename to csharp/ql/lib/ext/generated/modelgenerator/System.Security.Cryptography.X509Certificates.model.yml diff --git a/csharp/ql/lib/ext/generated/System.Security.Cryptography.Xml.model.yml b/csharp/ql/lib/ext/generated/modelgenerator/System.Security.Cryptography.Xml.model.yml similarity index 100% rename from csharp/ql/lib/ext/generated/System.Security.Cryptography.Xml.model.yml rename to csharp/ql/lib/ext/generated/modelgenerator/System.Security.Cryptography.Xml.model.yml diff --git a/csharp/ql/lib/ext/generated/System.Security.Cryptography.model.yml b/csharp/ql/lib/ext/generated/modelgenerator/System.Security.Cryptography.model.yml similarity index 100% rename from csharp/ql/lib/ext/generated/System.Security.Cryptography.model.yml rename to csharp/ql/lib/ext/generated/modelgenerator/System.Security.Cryptography.model.yml diff --git a/csharp/ql/lib/ext/generated/System.Security.Permissions.model.yml b/csharp/ql/lib/ext/generated/modelgenerator/System.Security.Permissions.model.yml similarity index 100% rename from csharp/ql/lib/ext/generated/System.Security.Permissions.model.yml rename to csharp/ql/lib/ext/generated/modelgenerator/System.Security.Permissions.model.yml diff --git a/csharp/ql/lib/ext/generated/System.Security.Policy.model.yml b/csharp/ql/lib/ext/generated/modelgenerator/System.Security.Policy.model.yml similarity index 100% rename from csharp/ql/lib/ext/generated/System.Security.Policy.model.yml rename to csharp/ql/lib/ext/generated/modelgenerator/System.Security.Policy.model.yml diff --git a/csharp/ql/lib/ext/generated/System.Security.Principal.model.yml b/csharp/ql/lib/ext/generated/modelgenerator/System.Security.Principal.model.yml similarity index 100% rename from csharp/ql/lib/ext/generated/System.Security.Principal.model.yml rename to csharp/ql/lib/ext/generated/modelgenerator/System.Security.Principal.model.yml diff --git a/csharp/ql/lib/ext/generated/System.Security.model.yml b/csharp/ql/lib/ext/generated/modelgenerator/System.Security.model.yml similarity index 100% rename from csharp/ql/lib/ext/generated/System.Security.model.yml rename to csharp/ql/lib/ext/generated/modelgenerator/System.Security.model.yml diff --git a/csharp/ql/lib/ext/generated/System.ServiceModel.Syndication.model.yml b/csharp/ql/lib/ext/generated/modelgenerator/System.ServiceModel.Syndication.model.yml similarity index 100% rename from csharp/ql/lib/ext/generated/System.ServiceModel.Syndication.model.yml rename to csharp/ql/lib/ext/generated/modelgenerator/System.ServiceModel.Syndication.model.yml diff --git a/csharp/ql/lib/ext/generated/System.ServiceProcess.model.yml b/csharp/ql/lib/ext/generated/modelgenerator/System.ServiceProcess.model.yml similarity index 100% rename from csharp/ql/lib/ext/generated/System.ServiceProcess.model.yml rename to csharp/ql/lib/ext/generated/modelgenerator/System.ServiceProcess.model.yml diff --git a/csharp/ql/lib/ext/generated/System.Speech.AudioFormat.model.yml b/csharp/ql/lib/ext/generated/modelgenerator/System.Speech.AudioFormat.model.yml similarity index 100% rename from csharp/ql/lib/ext/generated/System.Speech.AudioFormat.model.yml rename to csharp/ql/lib/ext/generated/modelgenerator/System.Speech.AudioFormat.model.yml diff --git a/csharp/ql/lib/ext/generated/System.Speech.Recognition.SrgsGrammar.model.yml b/csharp/ql/lib/ext/generated/modelgenerator/System.Speech.Recognition.SrgsGrammar.model.yml similarity index 100% rename from csharp/ql/lib/ext/generated/System.Speech.Recognition.SrgsGrammar.model.yml rename to csharp/ql/lib/ext/generated/modelgenerator/System.Speech.Recognition.SrgsGrammar.model.yml diff --git a/csharp/ql/lib/ext/generated/System.Speech.Recognition.model.yml b/csharp/ql/lib/ext/generated/modelgenerator/System.Speech.Recognition.model.yml similarity index 100% rename from csharp/ql/lib/ext/generated/System.Speech.Recognition.model.yml rename to csharp/ql/lib/ext/generated/modelgenerator/System.Speech.Recognition.model.yml diff --git a/csharp/ql/lib/ext/generated/System.Speech.Synthesis.TtsEngine.model.yml b/csharp/ql/lib/ext/generated/modelgenerator/System.Speech.Synthesis.TtsEngine.model.yml similarity index 100% rename from csharp/ql/lib/ext/generated/System.Speech.Synthesis.TtsEngine.model.yml rename to csharp/ql/lib/ext/generated/modelgenerator/System.Speech.Synthesis.TtsEngine.model.yml diff --git a/csharp/ql/lib/ext/generated/System.Speech.Synthesis.model.yml b/csharp/ql/lib/ext/generated/modelgenerator/System.Speech.Synthesis.model.yml similarity index 100% rename from csharp/ql/lib/ext/generated/System.Speech.Synthesis.model.yml rename to csharp/ql/lib/ext/generated/modelgenerator/System.Speech.Synthesis.model.yml diff --git a/csharp/ql/lib/ext/generated/System.Text.Encodings.Web.model.yml b/csharp/ql/lib/ext/generated/modelgenerator/System.Text.Encodings.Web.model.yml similarity index 100% rename from csharp/ql/lib/ext/generated/System.Text.Encodings.Web.model.yml rename to csharp/ql/lib/ext/generated/modelgenerator/System.Text.Encodings.Web.model.yml diff --git a/csharp/ql/lib/ext/generated/System.Text.Json.Nodes.model.yml b/csharp/ql/lib/ext/generated/modelgenerator/System.Text.Json.Nodes.model.yml similarity index 100% rename from csharp/ql/lib/ext/generated/System.Text.Json.Nodes.model.yml rename to csharp/ql/lib/ext/generated/modelgenerator/System.Text.Json.Nodes.model.yml diff --git a/csharp/ql/lib/ext/generated/System.Text.Json.Schema.model.yml b/csharp/ql/lib/ext/generated/modelgenerator/System.Text.Json.Schema.model.yml similarity index 100% rename from csharp/ql/lib/ext/generated/System.Text.Json.Schema.model.yml rename to csharp/ql/lib/ext/generated/modelgenerator/System.Text.Json.Schema.model.yml diff --git a/csharp/ql/lib/ext/generated/System.Text.Json.Serialization.Metadata.model.yml b/csharp/ql/lib/ext/generated/modelgenerator/System.Text.Json.Serialization.Metadata.model.yml similarity index 100% rename from csharp/ql/lib/ext/generated/System.Text.Json.Serialization.Metadata.model.yml rename to csharp/ql/lib/ext/generated/modelgenerator/System.Text.Json.Serialization.Metadata.model.yml diff --git a/csharp/ql/lib/ext/generated/System.Text.Json.Serialization.model.yml b/csharp/ql/lib/ext/generated/modelgenerator/System.Text.Json.Serialization.model.yml similarity index 100% rename from csharp/ql/lib/ext/generated/System.Text.Json.Serialization.model.yml rename to csharp/ql/lib/ext/generated/modelgenerator/System.Text.Json.Serialization.model.yml diff --git a/csharp/ql/lib/ext/generated/System.Text.Json.SourceGeneration.model.yml b/csharp/ql/lib/ext/generated/modelgenerator/System.Text.Json.SourceGeneration.model.yml similarity index 100% rename from csharp/ql/lib/ext/generated/System.Text.Json.SourceGeneration.model.yml rename to csharp/ql/lib/ext/generated/modelgenerator/System.Text.Json.SourceGeneration.model.yml diff --git a/csharp/ql/lib/ext/generated/System.Text.Json.model.yml b/csharp/ql/lib/ext/generated/modelgenerator/System.Text.Json.model.yml similarity index 100% rename from csharp/ql/lib/ext/generated/System.Text.Json.model.yml rename to csharp/ql/lib/ext/generated/modelgenerator/System.Text.Json.model.yml diff --git a/csharp/ql/lib/ext/generated/System.Text.RegularExpressions.Generator.model.yml b/csharp/ql/lib/ext/generated/modelgenerator/System.Text.RegularExpressions.Generator.model.yml similarity index 100% rename from csharp/ql/lib/ext/generated/System.Text.RegularExpressions.Generator.model.yml rename to csharp/ql/lib/ext/generated/modelgenerator/System.Text.RegularExpressions.Generator.model.yml diff --git a/csharp/ql/lib/ext/generated/System.Text.RegularExpressions.model.yml b/csharp/ql/lib/ext/generated/modelgenerator/System.Text.RegularExpressions.model.yml similarity index 100% rename from csharp/ql/lib/ext/generated/System.Text.RegularExpressions.model.yml rename to csharp/ql/lib/ext/generated/modelgenerator/System.Text.RegularExpressions.model.yml diff --git a/csharp/ql/lib/ext/generated/System.Text.Unicode.model.yml b/csharp/ql/lib/ext/generated/modelgenerator/System.Text.Unicode.model.yml similarity index 100% rename from csharp/ql/lib/ext/generated/System.Text.Unicode.model.yml rename to csharp/ql/lib/ext/generated/modelgenerator/System.Text.Unicode.model.yml diff --git a/csharp/ql/lib/ext/generated/System.Text.model.yml b/csharp/ql/lib/ext/generated/modelgenerator/System.Text.model.yml similarity index 100% rename from csharp/ql/lib/ext/generated/System.Text.model.yml rename to csharp/ql/lib/ext/generated/modelgenerator/System.Text.model.yml diff --git a/csharp/ql/lib/ext/generated/System.Threading.Channels.model.yml b/csharp/ql/lib/ext/generated/modelgenerator/System.Threading.Channels.model.yml similarity index 100% rename from csharp/ql/lib/ext/generated/System.Threading.Channels.model.yml rename to csharp/ql/lib/ext/generated/modelgenerator/System.Threading.Channels.model.yml diff --git a/csharp/ql/lib/ext/generated/System.Threading.RateLimiting.model.yml b/csharp/ql/lib/ext/generated/modelgenerator/System.Threading.RateLimiting.model.yml similarity index 100% rename from csharp/ql/lib/ext/generated/System.Threading.RateLimiting.model.yml rename to csharp/ql/lib/ext/generated/modelgenerator/System.Threading.RateLimiting.model.yml diff --git a/csharp/ql/lib/ext/generated/System.Threading.Tasks.Dataflow.model.yml b/csharp/ql/lib/ext/generated/modelgenerator/System.Threading.Tasks.Dataflow.model.yml similarity index 100% rename from csharp/ql/lib/ext/generated/System.Threading.Tasks.Dataflow.model.yml rename to csharp/ql/lib/ext/generated/modelgenerator/System.Threading.Tasks.Dataflow.model.yml diff --git a/csharp/ql/lib/ext/generated/System.Threading.Tasks.Sources.model.yml b/csharp/ql/lib/ext/generated/modelgenerator/System.Threading.Tasks.Sources.model.yml similarity index 100% rename from csharp/ql/lib/ext/generated/System.Threading.Tasks.Sources.model.yml rename to csharp/ql/lib/ext/generated/modelgenerator/System.Threading.Tasks.Sources.model.yml diff --git a/csharp/ql/lib/ext/generated/System.Threading.Tasks.model.yml b/csharp/ql/lib/ext/generated/modelgenerator/System.Threading.Tasks.model.yml similarity index 100% rename from csharp/ql/lib/ext/generated/System.Threading.Tasks.model.yml rename to csharp/ql/lib/ext/generated/modelgenerator/System.Threading.Tasks.model.yml diff --git a/csharp/ql/lib/ext/generated/System.Threading.model.yml b/csharp/ql/lib/ext/generated/modelgenerator/System.Threading.model.yml similarity index 100% rename from csharp/ql/lib/ext/generated/System.Threading.model.yml rename to csharp/ql/lib/ext/generated/modelgenerator/System.Threading.model.yml diff --git a/csharp/ql/lib/ext/generated/System.Timers.model.yml b/csharp/ql/lib/ext/generated/modelgenerator/System.Timers.model.yml similarity index 100% rename from csharp/ql/lib/ext/generated/System.Timers.model.yml rename to csharp/ql/lib/ext/generated/modelgenerator/System.Timers.model.yml diff --git a/csharp/ql/lib/ext/generated/System.Transactions.model.yml b/csharp/ql/lib/ext/generated/modelgenerator/System.Transactions.model.yml similarity index 100% rename from csharp/ql/lib/ext/generated/System.Transactions.model.yml rename to csharp/ql/lib/ext/generated/modelgenerator/System.Transactions.model.yml diff --git a/csharp/ql/lib/ext/generated/System.Web.model.yml b/csharp/ql/lib/ext/generated/modelgenerator/System.Web.model.yml similarity index 100% rename from csharp/ql/lib/ext/generated/System.Web.model.yml rename to csharp/ql/lib/ext/generated/modelgenerator/System.Web.model.yml diff --git a/csharp/ql/lib/ext/generated/System.Windows.Input.model.yml b/csharp/ql/lib/ext/generated/modelgenerator/System.Windows.Input.model.yml similarity index 100% rename from csharp/ql/lib/ext/generated/System.Windows.Input.model.yml rename to csharp/ql/lib/ext/generated/modelgenerator/System.Windows.Input.model.yml diff --git a/csharp/ql/lib/ext/generated/System.Windows.Markup.model.yml b/csharp/ql/lib/ext/generated/modelgenerator/System.Windows.Markup.model.yml similarity index 100% rename from csharp/ql/lib/ext/generated/System.Windows.Markup.model.yml rename to csharp/ql/lib/ext/generated/modelgenerator/System.Windows.Markup.model.yml diff --git a/csharp/ql/lib/ext/generated/System.Xaml.Permissions.model.yml b/csharp/ql/lib/ext/generated/modelgenerator/System.Xaml.Permissions.model.yml similarity index 100% rename from csharp/ql/lib/ext/generated/System.Xaml.Permissions.model.yml rename to csharp/ql/lib/ext/generated/modelgenerator/System.Xaml.Permissions.model.yml diff --git a/csharp/ql/lib/ext/generated/System.Xml.Linq.model.yml b/csharp/ql/lib/ext/generated/modelgenerator/System.Xml.Linq.model.yml similarity index 100% rename from csharp/ql/lib/ext/generated/System.Xml.Linq.model.yml rename to csharp/ql/lib/ext/generated/modelgenerator/System.Xml.Linq.model.yml diff --git a/csharp/ql/lib/ext/generated/System.Xml.Resolvers.model.yml b/csharp/ql/lib/ext/generated/modelgenerator/System.Xml.Resolvers.model.yml similarity index 100% rename from csharp/ql/lib/ext/generated/System.Xml.Resolvers.model.yml rename to csharp/ql/lib/ext/generated/modelgenerator/System.Xml.Resolvers.model.yml diff --git a/csharp/ql/lib/ext/generated/System.Xml.Schema.model.yml b/csharp/ql/lib/ext/generated/modelgenerator/System.Xml.Schema.model.yml similarity index 100% rename from csharp/ql/lib/ext/generated/System.Xml.Schema.model.yml rename to csharp/ql/lib/ext/generated/modelgenerator/System.Xml.Schema.model.yml diff --git a/csharp/ql/lib/ext/generated/System.Xml.Serialization.model.yml b/csharp/ql/lib/ext/generated/modelgenerator/System.Xml.Serialization.model.yml similarity index 100% rename from csharp/ql/lib/ext/generated/System.Xml.Serialization.model.yml rename to csharp/ql/lib/ext/generated/modelgenerator/System.Xml.Serialization.model.yml diff --git a/csharp/ql/lib/ext/generated/System.Xml.XPath.model.yml b/csharp/ql/lib/ext/generated/modelgenerator/System.Xml.XPath.model.yml similarity index 100% rename from csharp/ql/lib/ext/generated/System.Xml.XPath.model.yml rename to csharp/ql/lib/ext/generated/modelgenerator/System.Xml.XPath.model.yml diff --git a/csharp/ql/lib/ext/generated/System.Xml.Xsl.Runtime.model.yml b/csharp/ql/lib/ext/generated/modelgenerator/System.Xml.Xsl.Runtime.model.yml similarity index 100% rename from csharp/ql/lib/ext/generated/System.Xml.Xsl.Runtime.model.yml rename to csharp/ql/lib/ext/generated/modelgenerator/System.Xml.Xsl.Runtime.model.yml diff --git a/csharp/ql/lib/ext/generated/System.Xml.Xsl.model.yml b/csharp/ql/lib/ext/generated/modelgenerator/System.Xml.Xsl.model.yml similarity index 100% rename from csharp/ql/lib/ext/generated/System.Xml.Xsl.model.yml rename to csharp/ql/lib/ext/generated/modelgenerator/System.Xml.Xsl.model.yml diff --git a/csharp/ql/lib/ext/generated/System.Xml.model.yml b/csharp/ql/lib/ext/generated/modelgenerator/System.Xml.model.yml similarity index 100% rename from csharp/ql/lib/ext/generated/System.Xml.model.yml rename to csharp/ql/lib/ext/generated/modelgenerator/System.Xml.model.yml diff --git a/csharp/ql/lib/ext/generated/System.model.yml b/csharp/ql/lib/ext/generated/modelgenerator/System.model.yml similarity index 100% rename from csharp/ql/lib/ext/generated/System.model.yml rename to csharp/ql/lib/ext/generated/modelgenerator/System.model.yml diff --git a/csharp/ql/lib/qlpack.yml b/csharp/ql/lib/qlpack.yml index 7c906e033ad6..26e332652cdb 100644 --- a/csharp/ql/lib/qlpack.yml +++ b/csharp/ql/lib/qlpack.yml @@ -16,6 +16,6 @@ dependencies: codeql/xml: ${workspace} dataExtensions: - ext/*.model.yml - - ext/generated/*.model.yml + - ext/generated/**/*.model.yml warnOnImplicitThis: true compileForOverlayEval: true From 7f12fb73522515dfbcdcbd9693f969e8d2c9536f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jack=20N=C3=B8rskov=20J=C3=B8rgensen?= Date: Fri, 24 Apr 2026 08:45:35 +0200 Subject: [PATCH 042/260] Change path where tool generate MaDs --- misc/scripts/models-as-data/generate_mad.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/misc/scripts/models-as-data/generate_mad.py b/misc/scripts/models-as-data/generate_mad.py index 5eeac91d8571..9e6c5516b492 100755 --- a/misc/scripts/models-as-data/generate_mad.py +++ b/misc/scripts/models-as-data/generate_mad.py @@ -31,7 +31,7 @@ def parseData(data): description = """\ This generates summary, source, sink and neutral models for the code in the database. -The files will be placed in `LANGUAGE/ql/lib/ext/generated/DIR`""" +The files will be placed in `LANGUAGE/ql/lib/ext/generated/modelgenerator/DIR`""" epilog = """\ Example invocations: @@ -67,7 +67,7 @@ def setenvironment(self, database=None, folder=None): self.database = database or self.database self.folder = folder or self.folder self.generated_frameworks = os.path.join( - self.codeql_root, f"{self.language}/ql/lib/ext/generated/{self.folder}" + self.codeql_root, f"{self.language}/ql/lib/ext/generated/modelgenerator/{self.folder}" ) self.workDir = tempfile.mkdtemp() if self.ram is None: From 8e26fa1c81d35b11330635147f49aa6eead70744 Mon Sep 17 00:00:00 2001 From: Tom Hvitved Date: Fri, 24 Apr 2026 13:01:08 +0200 Subject: [PATCH 043/260] Go: Avoid combinatorial explosion in `mostRecentSideEffect` when there are multiple entry points --- .../go/dataflow/GlobalValueNumbering.qll | 75 ++++++++++--------- 1 file changed, 41 insertions(+), 34 deletions(-) diff --git a/go/ql/lib/semmle/go/dataflow/GlobalValueNumbering.qll b/go/ql/lib/semmle/go/dataflow/GlobalValueNumbering.qll index 88a659f6f829..3e161a4d6010 100644 --- a/go/ql/lib/semmle/go/dataflow/GlobalValueNumbering.qll +++ b/go/ql/lib/semmle/go/dataflow/GlobalValueNumbering.qll @@ -127,10 +127,11 @@ private predicate sideEffectCfg(ControlFlow::Node src, ControlFlow::Node dst) { /** * Holds if `dominator` is the immediate dominator of `node` in - * the side-effect CFG. + * the side-effect CFG belonging to `entry`. */ -private predicate iDomEffect(ControlFlow::Node dominator, ControlFlow::Node node) = - idominance(entryNode/1, sideEffectCfg/2)(_, dominator, node) +private predicate iDomEffect( + ControlFlow::Node entry, ControlFlow::Node dominator, ControlFlow::Node node +) = idominance(entryNode/1, sideEffectCfg/2)(entry, dominator, node) /** * Gets the most recent side effect. To be more precise, `result` is a @@ -181,15 +182,21 @@ private predicate iDomEffect(ControlFlow::Node dominator, ControlFlow::Node node * The immediate dominator path to line 015 is 000 - 009 - 012 - 015. * Therefore, the most recent side effect for line 015 is line 009. */ -cached -private ControlFlow::Node mostRecentSideEffect(ControlFlow::Node node) { - exists(ControlFlow::Node entry | - entryNode(entry) and - iDomEffect(entry, result) and - iDomEffect*(result, node) +private ControlFlow::Node mostRecentSideEffect(ControlFlow::Node entry, ControlFlow::Node node) { + iDomEffect(entry, entry, result) and + result = node + or + exists(ControlFlow::Node mid | + result = mostRecentSideEffect(entry, mid) and + iDomEffect(entry, mid, node) ) } +cached +private ControlFlow::Node mostRecentSideEffectUnique(ControlFlow::Node node) { + result = unique( | | mostRecentSideEffect(_, node)) +} + /** Used to represent the "global value number" of an expression. */ cached private newtype GvnBase = @@ -369,10 +376,12 @@ private predicate mkMethodAccess(DataFlow::Node access, GVN qualifier, Method m) ) } -private predicate analyzableFieldRead(Read fread, DataFlow::Node base, Field f) { +private predicate analyzableFieldRead( + Read fread, DataFlow::Node base, Field f, ControlFlow::Node dominator +) { exists(IR::ReadInstruction r | r = fread.asInstruction() | r.readsField(base.asInstruction(), f) and - strictcount(mostRecentSideEffect(r)) = 1 and + dominator = mostRecentSideEffectUnique(r) and not r.isConst() ) } @@ -381,9 +390,8 @@ private predicate mkFieldRead( DataFlow::Node fread, GVN qualifier, Field v, ControlFlow::Node dominator ) { exists(DataFlow::Node base | - analyzableFieldRead(fread, base, v) and - qualifier = globalValueNumber(base) and - dominator = mostRecentSideEffect(fread.asInstruction()) + analyzableFieldRead(fread, base, v, dominator) and + qualifier = globalValueNumber(base) ) } @@ -421,18 +429,17 @@ private predicate incompleteSsa(ValueEntity v) { /** * Holds if `access` is an access to a variable `target` for which SSA information is incomplete. */ -private predicate analyzableOtherVariable(DataFlow::Node access, ValueEntity target) { +private predicate analyzableOtherVariable( + DataFlow::Node access, ValueEntity target, ControlFlow::Node dominator +) { access.asInstruction().reads(target) and incompleteSsa(target) and - strictcount(mostRecentSideEffect(access.asInstruction())) = 1 and + dominator = mostRecentSideEffectUnique(access.asInstruction()) and not access.isConst() and not target instanceof Function } -private predicate mkOtherVariable(DataFlow::Node access, ValueEntity x, ControlFlow::Node dominator) { - analyzableOtherVariable(access, x) and - dominator = mostRecentSideEffect(access.asInstruction()) -} +private predicate mkOtherVariable = analyzableOtherVariable/3; private predicate analyzableBinaryOp( DataFlow::BinaryOperationNode op, string opname, DataFlow::Node lhs, DataFlow::Node rhs @@ -463,29 +470,29 @@ private predicate mkUnaryOp(DataFlow::UnaryOperationNode op, GVN child, string o opname = op.getOperator() } -private predicate analyzableIndexExpr(DataFlow::ElementReadNode ae) { - strictcount(mostRecentSideEffect(ae.asInstruction())) = 1 and +private predicate analyzableIndexExpr(DataFlow::ElementReadNode ae, ControlFlow::Node dominator) { + dominator = mostRecentSideEffectUnique(ae.asInstruction()) and not ae.isConst() } private predicate mkIndex( DataFlow::ElementReadNode ae, GVN base, GVN offset, ControlFlow::Node dominator ) { - analyzableIndexExpr(ae) and + analyzableIndexExpr(ae, dominator) and base = globalValueNumber(ae.getBase()) and - offset = globalValueNumber(ae.getIndex()) and - dominator = mostRecentSideEffect(ae.asInstruction()) + offset = globalValueNumber(ae.getIndex()) } -private predicate analyzablePointerDereferenceExpr(DataFlow::PointerDereferenceNode deref) { - strictcount(mostRecentSideEffect(deref.asInstruction())) = 1 and +private predicate analyzablePointerDereferenceExpr( + DataFlow::PointerDereferenceNode deref, ControlFlow::Node dominator +) { + dominator = mostRecentSideEffectUnique(deref.asInstruction()) and not deref.isConst() } private predicate mkDeref(DataFlow::PointerDereferenceNode deref, GVN p, ControlFlow::Node dominator) { - analyzablePointerDereferenceExpr(deref) and - p = globalValueNumber(deref.getOperand()) and - dominator = mostRecentSideEffect(deref.asInstruction()) + analyzablePointerDereferenceExpr(deref, dominator) and + p = globalValueNumber(deref.getOperand()) } private predicate ssaInit(SsaExplicitDefinition ssa, DataFlow::Node rhs) { @@ -587,12 +594,12 @@ private predicate analyzableExpr(DataFlow::Node e) { analyzableConst(e) or any(DataFlow::SsaNode ssa).getAUse() = e or e instanceof DataFlow::SsaNode or - analyzableOtherVariable(e, _) or + analyzableOtherVariable(e, _, _) or analyzableMethodAccess(e, _, _) or - analyzableFieldRead(e, _, _) or + analyzableFieldRead(e, _, _, _) or analyzableCall(e, _) or analyzableBinaryOp(e, _, _, _) or analyzableUnaryOp(e) or - analyzableIndexExpr(e) or - analyzablePointerDereferenceExpr(e) + analyzableIndexExpr(e, _) or + analyzablePointerDereferenceExpr(e, _) } From 710c1ba05023ae70de9d28c3e79ebf2239b96b77 Mon Sep 17 00:00:00 2001 From: Owen Mansel-Chan Date: Tue, 21 Apr 2026 11:22:46 +0100 Subject: [PATCH 044/260] Make `getACallee` overlay[global] Co-authored-by: Copilot --- go/ql/lib/semmle/go/Decls.qll | 3 ++- go/ql/lib/semmle/go/Scopes.qll | 3 ++- go/ql/lib/semmle/go/dataflow/internal/DataFlowNodes.qll | 4 +++- 3 files changed, 7 insertions(+), 3 deletions(-) diff --git a/go/ql/lib/semmle/go/Decls.qll b/go/ql/lib/semmle/go/Decls.qll index 7588ab913bed..f42058cd3e88 100644 --- a/go/ql/lib/semmle/go/Decls.qll +++ b/go/ql/lib/semmle/go/Decls.qll @@ -1,7 +1,7 @@ /** * Provides classes for working with declarations. */ -overlay[local] +overlay[local?] module; import go @@ -137,6 +137,7 @@ class FuncDef extends @funcdef, StmtParent, ExprParent { /** * Gets a call to this function. */ + overlay[global] DataFlow::CallNode getACall() { result.getACallee() = this } /** Holds if this function is variadic. */ diff --git a/go/ql/lib/semmle/go/Scopes.qll b/go/ql/lib/semmle/go/Scopes.qll index 4e9a13c8ea1f..9f18290fb011 100644 --- a/go/ql/lib/semmle/go/Scopes.qll +++ b/go/ql/lib/semmle/go/Scopes.qll @@ -1,7 +1,7 @@ /** * Provides classes for working with scopes and declared objects. */ -overlay[local] +overlay[local?] module; import go @@ -418,6 +418,7 @@ class Function extends ValueEntity, @functionobject { * This includes calls that target this function indirectly, by calling an * interface method that this function implements. */ + overlay[global] pragma[nomagic] DataFlow::CallNode getACall() { this = result.getACalleeIncludingExternals().asFunction() } diff --git a/go/ql/lib/semmle/go/dataflow/internal/DataFlowNodes.qll b/go/ql/lib/semmle/go/dataflow/internal/DataFlowNodes.qll index 8fca4bec8c63..603da6364df7 100644 --- a/go/ql/lib/semmle/go/dataflow/internal/DataFlowNodes.qll +++ b/go/ql/lib/semmle/go/dataflow/internal/DataFlowNodes.qll @@ -1,4 +1,4 @@ -overlay[local] +overlay[local?] module; private import go @@ -488,6 +488,7 @@ module Public { * For virtual calls, we look up possible targets in all types that implement the receiver * interface type. */ + overlay[global] Callable getACalleeIncludingExternals() { result = this.getACalleeWithoutVirtualDispatch() or @@ -504,6 +505,7 @@ module Public { * As `getACalleeIncludingExternals`, except excluding external functions (those for which * we lack a definition, such as standard library functions). */ + overlay[global] pragma[nomagic] FuncDef getACallee() { result = this.getACalleeIncludingExternals().getFuncDef() } From f15d53f3b9e0131885cefdd1c12d9dd5a160ea86 Mon Sep 17 00:00:00 2001 From: murderteeth <89237203+murderteeth@users.noreply.github.com> Date: Sat, 25 Apr 2026 14:19:01 -0400 Subject: [PATCH 045/260] Update javascript/ql/lib/change-notes/2026-04-12-vercel-node.md Co-authored-by: Asger F --- javascript/ql/lib/change-notes/2026-04-12-vercel-node.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/javascript/ql/lib/change-notes/2026-04-12-vercel-node.md b/javascript/ql/lib/change-notes/2026-04-12-vercel-node.md index b248a4b3c45e..39802258b02f 100644 --- a/javascript/ql/lib/change-notes/2026-04-12-vercel-node.md +++ b/javascript/ql/lib/change-notes/2026-04-12-vercel-node.md @@ -1,4 +1,4 @@ --- -category: newFeature +category: feature --- * Added support for [`@vercel/node`](https://www.npmjs.com/package/@vercel/node) Vercel serverless functions. Handlers are recognized via the `VercelRequest`/`VercelResponse` TypeScript parameter types, and standard security queries (`js/reflected-xss`, `js/request-forgery`, `js/sql-injection`, `js/command-line-injection`, etc.) now detect vulnerabilities in Vercel API route files. From 9f70f718e3e314204126c8a9acb42e339db367f0 Mon Sep 17 00:00:00 2001 From: "Michael B. Gale" Date: Mon, 27 Apr 2026 09:36:56 +0100 Subject: [PATCH 046/260] Revert "Release preparation for version 2.25.3" --- actions/ql/lib/CHANGELOG.md | 6 ------ ...md => 2026-03-26-remove-false-positive-sinks.md} | 7 +++---- actions/ql/lib/codeql-pack.release.yml | 2 +- actions/ql/lib/qlpack.yml | 2 +- actions/ql/src/CHANGELOG.md | 12 +----------- .../change-notes/2026-04-02-alert-msg-poisoning.md | 4 ++++ .../ql/src/change-notes/2026-04-02-permissions.md | 4 ++++ actions/ql/src/change-notes/released/0.6.26.md | 9 --------- actions/ql/src/codeql-pack.release.yml | 2 +- actions/ql/src/qlpack.yml | 2 +- cpp/ql/lib/CHANGELOG.md | 11 ----------- cpp/ql/lib/change-notes/2026-04-07-autoconf.md | 4 ++++ cpp/ql/lib/change-notes/2026-04-14-throwing.md | 5 +++++ cpp/ql/lib/change-notes/released/10.0.0.md | 10 ---------- cpp/ql/lib/codeql-pack.release.yml | 2 +- cpp/ql/lib/qlpack.yml | 2 +- cpp/ql/src/CHANGELOG.md | 13 +------------ .../2026-03-23-implicit-function-declaration.md | 4 ++++ .../2026-04-02-comparison-with-wider-type.md | 4 ++++ .../2026-04-02-implicit-function-declaration.md | 4 ++++ ...026-04-02-integer-multiplication-cast-to-long.md | 4 ++++ .../2026-04-02-suspicious-add-sizeof.md | 4 ++++ .../2026-04-02-wrong-type-format-argument.md | 4 ++++ .../2026-04-16-add-model-for-aligned-alloc.md | 4 ++++ cpp/ql/src/change-notes/released/1.6.1.md | 10 ---------- cpp/ql/src/codeql-pack.release.yml | 2 +- cpp/ql/src/qlpack.yml | 2 +- csharp/ql/campaigns/Solorigate/lib/CHANGELOG.md | 4 ---- .../Solorigate/lib/change-notes/released/1.7.65.md | 3 --- .../Solorigate/lib/codeql-pack.release.yml | 2 +- csharp/ql/campaigns/Solorigate/lib/qlpack.yml | 2 +- csharp/ql/campaigns/Solorigate/src/CHANGELOG.md | 4 ---- .../Solorigate/src/change-notes/released/1.7.65.md | 3 --- .../Solorigate/src/codeql-pack.release.yml | 2 +- csharp/ql/campaigns/Solorigate/src/qlpack.yml | 2 +- csharp/ql/lib/CHANGELOG.md | 6 ------ .../{released/5.5.0.md => 2026-04-01-getlrvalue.md} | 7 +++---- csharp/ql/lib/codeql-pack.release.yml | 2 +- csharp/ql/lib/qlpack.yml | 2 +- csharp/ql/src/CHANGELOG.md | 9 --------- .../1.7.1.md => 2026-04-17-useless-to-string.md} | 7 +++---- csharp/ql/src/codeql-pack.release.yml | 2 +- csharp/ql/src/qlpack.yml | 2 +- go/ql/consistency-queries/CHANGELOG.md | 4 ---- .../change-notes/released/1.0.48.md | 3 --- go/ql/consistency-queries/codeql-pack.release.yml | 2 +- go/ql/consistency-queries/qlpack.yml | 2 +- go/ql/lib/CHANGELOG.md | 4 ---- go/ql/lib/change-notes/released/7.0.6.md | 3 --- go/ql/lib/codeql-pack.release.yml | 2 +- go/ql/lib/qlpack.yml | 2 +- go/ql/src/CHANGELOG.md | 4 ---- go/ql/src/change-notes/released/1.6.1.md | 3 --- go/ql/src/codeql-pack.release.yml | 2 +- go/ql/src/qlpack.yml | 2 +- java/ql/lib/CHANGELOG.md | 6 ------ .../9.0.4.md => 2026-04-16-woodstox-xxe.md} | 7 +++---- java/ql/lib/codeql-pack.release.yml | 2 +- java/ql/lib/qlpack.yml | 2 +- java/ql/src/CHANGELOG.md | 4 ---- java/ql/src/change-notes/released/1.11.1.md | 3 --- java/ql/src/codeql-pack.release.yml | 2 +- java/ql/src/qlpack.yml | 2 +- javascript/ql/lib/CHANGELOG.md | 4 ---- javascript/ql/lib/change-notes/released/2.6.28.md | 3 --- javascript/ql/lib/codeql-pack.release.yml | 2 +- javascript/ql/lib/qlpack.yml | 2 +- javascript/ql/src/CHANGELOG.md | 7 ------- ...d => 2026-04-13-fastify-per-route-rate-limit.md} | 7 +++---- javascript/ql/src/codeql-pack.release.yml | 2 +- javascript/ql/src/qlpack.yml | 2 +- misc/suite-helpers/CHANGELOG.md | 4 ---- misc/suite-helpers/change-notes/released/1.0.48.md | 3 --- misc/suite-helpers/codeql-pack.release.yml | 2 +- misc/suite-helpers/qlpack.yml | 2 +- python/ql/lib/CHANGELOG.md | 6 ------ .../7.0.5.md => 2026-04-10-support-lazy-keyword.md} | 6 +++--- python/ql/lib/codeql-pack.release.yml | 2 +- python/ql/lib/qlpack.yml | 2 +- python/ql/src/CHANGELOG.md | 6 ------ ...2026-03-26-improve-bind-all-interfaces-query.md} | 6 +++--- python/ql/src/codeql-pack.release.yml | 2 +- python/ql/src/qlpack.yml | 2 +- ruby/ql/lib/CHANGELOG.md | 4 ---- ruby/ql/lib/change-notes/released/5.1.16.md | 3 --- ruby/ql/lib/codeql-pack.release.yml | 2 +- ruby/ql/lib/qlpack.yml | 2 +- ruby/ql/src/CHANGELOG.md | 4 ---- ruby/ql/src/change-notes/released/1.6.1.md | 3 --- ruby/ql/src/codeql-pack.release.yml | 2 +- ruby/ql/src/qlpack.yml | 2 +- rust/ql/lib/CHANGELOG.md | 4 ---- rust/ql/lib/change-notes/released/0.2.12.md | 3 --- rust/ql/lib/codeql-pack.release.yml | 2 +- rust/ql/lib/qlpack.yml | 2 +- rust/ql/src/CHANGELOG.md | 4 ---- rust/ql/src/change-notes/released/0.1.33.md | 3 --- rust/ql/src/codeql-pack.release.yml | 2 +- rust/ql/src/qlpack.yml | 2 +- shared/concepts/CHANGELOG.md | 4 ---- shared/concepts/change-notes/released/0.0.22.md | 3 --- shared/concepts/codeql-pack.release.yml | 2 +- shared/concepts/qlpack.yml | 2 +- shared/controlflow/CHANGELOG.md | 4 ---- shared/controlflow/change-notes/released/2.0.32.md | 3 --- shared/controlflow/codeql-pack.release.yml | 2 +- shared/controlflow/qlpack.yml | 2 +- shared/dataflow/CHANGELOG.md | 4 ---- shared/dataflow/change-notes/released/2.1.4.md | 3 --- shared/dataflow/codeql-pack.release.yml | 2 +- shared/dataflow/qlpack.yml | 2 +- shared/mad/CHANGELOG.md | 4 ---- shared/mad/change-notes/released/1.0.48.md | 3 --- shared/mad/codeql-pack.release.yml | 2 +- shared/mad/qlpack.yml | 2 +- shared/quantum/CHANGELOG.md | 4 ---- shared/quantum/change-notes/released/0.0.26.md | 3 --- shared/quantum/codeql-pack.release.yml | 2 +- shared/quantum/qlpack.yml | 2 +- shared/rangeanalysis/CHANGELOG.md | 4 ---- .../rangeanalysis/change-notes/released/1.0.48.md | 3 --- shared/rangeanalysis/codeql-pack.release.yml | 2 +- shared/rangeanalysis/qlpack.yml | 2 +- shared/regex/CHANGELOG.md | 4 ---- shared/regex/change-notes/released/1.0.48.md | 3 --- shared/regex/codeql-pack.release.yml | 2 +- shared/regex/qlpack.yml | 2 +- shared/ssa/CHANGELOG.md | 4 ---- shared/ssa/change-notes/released/2.0.24.md | 3 --- shared/ssa/codeql-pack.release.yml | 2 +- shared/ssa/qlpack.yml | 2 +- shared/threat-models/CHANGELOG.md | 4 ---- .../threat-models/change-notes/released/1.0.48.md | 3 --- shared/threat-models/codeql-pack.release.yml | 2 +- shared/threat-models/qlpack.yml | 2 +- shared/tutorial/CHANGELOG.md | 4 ---- shared/tutorial/change-notes/released/1.0.48.md | 3 --- shared/tutorial/codeql-pack.release.yml | 2 +- shared/tutorial/qlpack.yml | 2 +- shared/typeflow/CHANGELOG.md | 4 ---- shared/typeflow/change-notes/released/1.0.48.md | 3 --- shared/typeflow/codeql-pack.release.yml | 2 +- shared/typeflow/qlpack.yml | 2 +- shared/typeinference/CHANGELOG.md | 4 ---- .../typeinference/change-notes/released/0.0.29.md | 3 --- shared/typeinference/codeql-pack.release.yml | 2 +- shared/typeinference/qlpack.yml | 2 +- shared/typetracking/CHANGELOG.md | 4 ---- shared/typetracking/change-notes/released/2.0.32.md | 3 --- shared/typetracking/codeql-pack.release.yml | 2 +- shared/typetracking/qlpack.yml | 2 +- shared/typos/CHANGELOG.md | 4 ---- shared/typos/change-notes/released/1.0.48.md | 3 --- shared/typos/codeql-pack.release.yml | 2 +- shared/typos/qlpack.yml | 2 +- shared/util/CHANGELOG.md | 4 ---- shared/util/change-notes/released/2.0.35.md | 3 --- shared/util/codeql-pack.release.yml | 2 +- shared/util/qlpack.yml | 2 +- shared/xml/CHANGELOG.md | 4 ---- shared/xml/change-notes/released/1.0.48.md | 3 --- shared/xml/codeql-pack.release.yml | 2 +- shared/xml/qlpack.yml | 2 +- shared/yaml/CHANGELOG.md | 4 ---- shared/yaml/change-notes/released/1.0.48.md | 3 --- shared/yaml/codeql-pack.release.yml | 2 +- shared/yaml/qlpack.yml | 2 +- swift/ql/lib/CHANGELOG.md | 6 ------ .../{released/6.4.0.md => 2026-04-06-swift-6.3.md} | 7 +++---- swift/ql/lib/codeql-pack.release.yml | 2 +- swift/ql/lib/qlpack.yml | 2 +- swift/ql/src/CHANGELOG.md | 4 ---- swift/ql/src/change-notes/released/1.3.1.md | 3 --- swift/ql/src/codeql-pack.release.yml | 2 +- swift/ql/src/qlpack.yml | 2 +- 175 files changed, 153 insertions(+), 437 deletions(-) rename actions/ql/lib/change-notes/{released/0.4.34.md => 2026-03-26-remove-false-positive-sinks.md} (79%) create mode 100644 actions/ql/src/change-notes/2026-04-02-alert-msg-poisoning.md create mode 100644 actions/ql/src/change-notes/2026-04-02-permissions.md delete mode 100644 actions/ql/src/change-notes/released/0.6.26.md create mode 100644 cpp/ql/lib/change-notes/2026-04-07-autoconf.md create mode 100644 cpp/ql/lib/change-notes/2026-04-14-throwing.md delete mode 100644 cpp/ql/lib/change-notes/released/10.0.0.md create mode 100644 cpp/ql/src/change-notes/2026-03-23-implicit-function-declaration.md create mode 100644 cpp/ql/src/change-notes/2026-04-02-comparison-with-wider-type.md create mode 100644 cpp/ql/src/change-notes/2026-04-02-implicit-function-declaration.md create mode 100644 cpp/ql/src/change-notes/2026-04-02-integer-multiplication-cast-to-long.md create mode 100644 cpp/ql/src/change-notes/2026-04-02-suspicious-add-sizeof.md create mode 100644 cpp/ql/src/change-notes/2026-04-02-wrong-type-format-argument.md create mode 100644 cpp/ql/src/change-notes/2026-04-16-add-model-for-aligned-alloc.md delete mode 100644 cpp/ql/src/change-notes/released/1.6.1.md delete mode 100644 csharp/ql/campaigns/Solorigate/lib/change-notes/released/1.7.65.md delete mode 100644 csharp/ql/campaigns/Solorigate/src/change-notes/released/1.7.65.md rename csharp/ql/lib/change-notes/{released/5.5.0.md => 2026-04-01-getlrvalue.md} (79%) rename csharp/ql/src/change-notes/{released/1.7.1.md => 2026-04-17-useless-to-string.md} (84%) delete mode 100644 go/ql/consistency-queries/change-notes/released/1.0.48.md delete mode 100644 go/ql/lib/change-notes/released/7.0.6.md delete mode 100644 go/ql/src/change-notes/released/1.6.1.md rename java/ql/lib/change-notes/{released/9.0.4.md => 2026-04-16-woodstox-xxe.md} (88%) delete mode 100644 java/ql/src/change-notes/released/1.11.1.md delete mode 100644 javascript/ql/lib/change-notes/released/2.6.28.md rename javascript/ql/src/change-notes/{released/2.3.8.md => 2026-04-13-fastify-per-route-rate-limit.md} (69%) delete mode 100644 misc/suite-helpers/change-notes/released/1.0.48.md rename python/ql/lib/change-notes/{released/7.0.5.md => 2026-04-10-support-lazy-keyword.md} (81%) rename python/ql/src/change-notes/{released/1.8.1.md => 2026-03-26-improve-bind-all-interfaces-query.md} (86%) delete mode 100644 ruby/ql/lib/change-notes/released/5.1.16.md delete mode 100644 ruby/ql/src/change-notes/released/1.6.1.md delete mode 100644 rust/ql/lib/change-notes/released/0.2.12.md delete mode 100644 rust/ql/src/change-notes/released/0.1.33.md delete mode 100644 shared/concepts/change-notes/released/0.0.22.md delete mode 100644 shared/controlflow/change-notes/released/2.0.32.md delete mode 100644 shared/dataflow/change-notes/released/2.1.4.md delete mode 100644 shared/mad/change-notes/released/1.0.48.md delete mode 100644 shared/quantum/change-notes/released/0.0.26.md delete mode 100644 shared/rangeanalysis/change-notes/released/1.0.48.md delete mode 100644 shared/regex/change-notes/released/1.0.48.md delete mode 100644 shared/ssa/change-notes/released/2.0.24.md delete mode 100644 shared/threat-models/change-notes/released/1.0.48.md delete mode 100644 shared/tutorial/change-notes/released/1.0.48.md delete mode 100644 shared/typeflow/change-notes/released/1.0.48.md delete mode 100644 shared/typeinference/change-notes/released/0.0.29.md delete mode 100644 shared/typetracking/change-notes/released/2.0.32.md delete mode 100644 shared/typos/change-notes/released/1.0.48.md delete mode 100644 shared/util/change-notes/released/2.0.35.md delete mode 100644 shared/xml/change-notes/released/1.0.48.md delete mode 100644 shared/yaml/change-notes/released/1.0.48.md rename swift/ql/lib/change-notes/{released/6.4.0.md => 2026-04-06-swift-6.3.md} (50%) delete mode 100644 swift/ql/src/change-notes/released/1.3.1.md diff --git a/actions/ql/lib/CHANGELOG.md b/actions/ql/lib/CHANGELOG.md index e84ba38d1801..d625bc6f619e 100644 --- a/actions/ql/lib/CHANGELOG.md +++ b/actions/ql/lib/CHANGELOG.md @@ -1,9 +1,3 @@ -## 0.4.34 - -### Minor Analysis Improvements - -* Removed false positive injection sink models for the `context` input of `docker/build-push-action` and the `allowed-endpoints` input of `step-security/harden-runner`. - ## 0.4.33 No user-facing changes. diff --git a/actions/ql/lib/change-notes/released/0.4.34.md b/actions/ql/lib/change-notes/2026-03-26-remove-false-positive-sinks.md similarity index 79% rename from actions/ql/lib/change-notes/released/0.4.34.md rename to actions/ql/lib/change-notes/2026-03-26-remove-false-positive-sinks.md index 23b06db49679..20ccc6d6c024 100644 --- a/actions/ql/lib/change-notes/released/0.4.34.md +++ b/actions/ql/lib/change-notes/2026-03-26-remove-false-positive-sinks.md @@ -1,5 +1,4 @@ -## 0.4.34 - -### Minor Analysis Improvements - +--- +category: minorAnalysis +--- * Removed false positive injection sink models for the `context` input of `docker/build-push-action` and the `allowed-endpoints` input of `step-security/harden-runner`. diff --git a/actions/ql/lib/codeql-pack.release.yml b/actions/ql/lib/codeql-pack.release.yml index 69fb16e4c39f..7581fef2abf7 100644 --- a/actions/ql/lib/codeql-pack.release.yml +++ b/actions/ql/lib/codeql-pack.release.yml @@ -1,2 +1,2 @@ --- -lastReleaseVersion: 0.4.34 +lastReleaseVersion: 0.4.33 diff --git a/actions/ql/lib/qlpack.yml b/actions/ql/lib/qlpack.yml index b7acc7a39570..fec274158000 100644 --- a/actions/ql/lib/qlpack.yml +++ b/actions/ql/lib/qlpack.yml @@ -1,5 +1,5 @@ name: codeql/actions-all -version: 0.4.34 +version: 0.4.34-dev library: true warnOnImplicitThis: true dependencies: diff --git a/actions/ql/src/CHANGELOG.md b/actions/ql/src/CHANGELOG.md index 96f8d2662060..d991237aca97 100644 --- a/actions/ql/src/CHANGELOG.md +++ b/actions/ql/src/CHANGELOG.md @@ -1,13 +1,3 @@ -## 0.6.26 - -### Major Analysis Improvements - -* Fixed alert messages in `actions/artifact-poisoning/critical` and `actions/artifact-poisoning/medium` as they previously included a redundant placeholder in the alert message that would on occasion contain a long block of yml that makes the alert difficult to understand. Also improved the wording to make it clearer that it is not the artifact that is being poisoned, but instead a potentially untrusted artifact that is consumed. Finally, changed the alert location to be the source, to align more with other queries reporting an artifact (e.g. zipslip) which is more useful. - -### Minor Analysis Improvements - -* The query `actions/missing-workflow-permissions` no longer produces false positive results on reusable workflows where all callers set permissions. - ## 0.6.25 No user-facing changes. @@ -173,7 +163,7 @@ No user-facing changes. * `actions/if-expression-always-true/critical` * `actions/if-expression-always-true/high` * `actions/unnecessary-use-of-advanced-config` - + * The following query has been moved from the `code-scanning` suite to the `security-extended` suite. Any existing alerts for this query will be closed automatically unless the analysis is configured to use the `security-extended` suite. diff --git a/actions/ql/src/change-notes/2026-04-02-alert-msg-poisoning.md b/actions/ql/src/change-notes/2026-04-02-alert-msg-poisoning.md new file mode 100644 index 000000000000..e2340f446a71 --- /dev/null +++ b/actions/ql/src/change-notes/2026-04-02-alert-msg-poisoning.md @@ -0,0 +1,4 @@ +--- +category: majorAnalysis +--- +* Fixed alert messages in `actions/artifact-poisoning/critical` and `actions/artifact-poisoning/medium` as they previously included a redundant placeholder in the alert message that would on occasion contain a long block of yml that makes the alert difficult to understand. Also clarify the wording to make it clear that it is not the artifact that is being poisoned, but instead a potentially untrusted artifact that is consumed. Also change the alert location to be the source, to align more with other queries reporting an artifact (e.g. zipslip) which is more useful. \ No newline at end of file diff --git a/actions/ql/src/change-notes/2026-04-02-permissions.md b/actions/ql/src/change-notes/2026-04-02-permissions.md new file mode 100644 index 000000000000..2672a30ef870 --- /dev/null +++ b/actions/ql/src/change-notes/2026-04-02-permissions.md @@ -0,0 +1,4 @@ +--- +category: minorAnalysis +--- +* The query `actions/missing-workflow-permissions` no longer produces false positive results on reusable workflows where all callers set permissions. \ No newline at end of file diff --git a/actions/ql/src/change-notes/released/0.6.26.md b/actions/ql/src/change-notes/released/0.6.26.md deleted file mode 100644 index 8bf43e639079..000000000000 --- a/actions/ql/src/change-notes/released/0.6.26.md +++ /dev/null @@ -1,9 +0,0 @@ -## 0.6.26 - -### Major Analysis Improvements - -* Fixed alert messages in `actions/artifact-poisoning/critical` and `actions/artifact-poisoning/medium` as they previously included a redundant placeholder in the alert message that would on occasion contain a long block of yml that makes the alert difficult to understand. Also improved the wording to make it clearer that it is not the artifact that is being poisoned, but instead a potentially untrusted artifact that is consumed. Finally, changed the alert location to be the source, to align more with other queries reporting an artifact (e.g. zipslip) which is more useful. - -### Minor Analysis Improvements - -* The query `actions/missing-workflow-permissions` no longer produces false positive results on reusable workflows where all callers set permissions. diff --git a/actions/ql/src/codeql-pack.release.yml b/actions/ql/src/codeql-pack.release.yml index e83bac0046e3..b8288b392226 100644 --- a/actions/ql/src/codeql-pack.release.yml +++ b/actions/ql/src/codeql-pack.release.yml @@ -1,2 +1,2 @@ --- -lastReleaseVersion: 0.6.26 +lastReleaseVersion: 0.6.25 diff --git a/actions/ql/src/qlpack.yml b/actions/ql/src/qlpack.yml index fc18f8052b23..3216a36f3d08 100644 --- a/actions/ql/src/qlpack.yml +++ b/actions/ql/src/qlpack.yml @@ -1,5 +1,5 @@ name: codeql/actions-queries -version: 0.6.26 +version: 0.6.26-dev library: false warnOnImplicitThis: true groups: [actions, queries] diff --git a/cpp/ql/lib/CHANGELOG.md b/cpp/ql/lib/CHANGELOG.md index 2cd1bcede35e..5b5bc748c5dd 100644 --- a/cpp/ql/lib/CHANGELOG.md +++ b/cpp/ql/lib/CHANGELOG.md @@ -1,14 +1,3 @@ -## 10.0.0 - -### Breaking Changes - -* The deprecated `NonThrowingFunction` class has been removed, use `NonCppThrowingFunction` instead. -* The deprecated `ThrowingFunction` class has been removed, use `AlwaysSehThrowingFunction` instead. - -### New Features - -* Added a subclass `AutoconfConfigureTestFile` of `ConfigurationTestFile` that represents files created by GNU autoconf configure scripts to test the build configuration. - ## 9.0.0 ### Breaking Changes diff --git a/cpp/ql/lib/change-notes/2026-04-07-autoconf.md b/cpp/ql/lib/change-notes/2026-04-07-autoconf.md new file mode 100644 index 000000000000..9f04417b8e25 --- /dev/null +++ b/cpp/ql/lib/change-notes/2026-04-07-autoconf.md @@ -0,0 +1,4 @@ +--- +category: feature +--- +* Added a subclass `AutoconfConfigureTestFile` of `ConfigurationTestFile` that represents files created by GNU autoconf configure scripts to test the build configuration. diff --git a/cpp/ql/lib/change-notes/2026-04-14-throwing.md b/cpp/ql/lib/change-notes/2026-04-14-throwing.md new file mode 100644 index 000000000000..6a15437e126e --- /dev/null +++ b/cpp/ql/lib/change-notes/2026-04-14-throwing.md @@ -0,0 +1,5 @@ +--- +category: breaking +--- +* The deprecated `NonThrowingFunction` class has been removed, use `NonCppThrowingFunction` instead. +* The deprecated `ThrowingFunction` class has been removed, use `AlwaysSehThrowingFunction` instead. diff --git a/cpp/ql/lib/change-notes/released/10.0.0.md b/cpp/ql/lib/change-notes/released/10.0.0.md deleted file mode 100644 index af591bd1a0ad..000000000000 --- a/cpp/ql/lib/change-notes/released/10.0.0.md +++ /dev/null @@ -1,10 +0,0 @@ -## 10.0.0 - -### Breaking Changes - -* The deprecated `NonThrowingFunction` class has been removed, use `NonCppThrowingFunction` instead. -* The deprecated `ThrowingFunction` class has been removed, use `AlwaysSehThrowingFunction` instead. - -### New Features - -* Added a subclass `AutoconfConfigureTestFile` of `ConfigurationTestFile` that represents files created by GNU autoconf configure scripts to test the build configuration. diff --git a/cpp/ql/lib/codeql-pack.release.yml b/cpp/ql/lib/codeql-pack.release.yml index 28758256b943..fd5f4a48b3c1 100644 --- a/cpp/ql/lib/codeql-pack.release.yml +++ b/cpp/ql/lib/codeql-pack.release.yml @@ -1,2 +1,2 @@ --- -lastReleaseVersion: 10.0.0 +lastReleaseVersion: 9.0.0 diff --git a/cpp/ql/lib/qlpack.yml b/cpp/ql/lib/qlpack.yml index 4bcb59885fa7..dbf57d2b8699 100644 --- a/cpp/ql/lib/qlpack.yml +++ b/cpp/ql/lib/qlpack.yml @@ -1,5 +1,5 @@ name: codeql/cpp-all -version: 10.0.0 +version: 9.0.1-dev groups: cpp dbscheme: semmlecode.cpp.dbscheme extractor: cpp diff --git a/cpp/ql/src/CHANGELOG.md b/cpp/ql/src/CHANGELOG.md index 80b9ad0e4753..a3f9d1836ade 100644 --- a/cpp/ql/src/CHANGELOG.md +++ b/cpp/ql/src/CHANGELOG.md @@ -1,14 +1,3 @@ -## 1.6.1 - -### Minor Analysis Improvements - -* Added `AllocationFunction` models for `aligned_alloc`, `std::aligned_alloc`, and `bsl::aligned_alloc`. -* The "Comparison of narrow type with wide type in loop condition" (`cpp/comparison-with-wider-type`) query has been upgraded to `high` precision. This query will now run in the default code scanning suite. -* The "Multiplication result converted to larger type" (`cpp/integer-multiplication-cast-to-long`) query has been upgraded to `high` precision. This query will now run in the default code scanning suite. -* The "Suspicious add with sizeof" (`cpp/suspicious-add-sizeof`) query has been upgraded to `high` precision. This query will now run in the default code scanning suite. -* The "Wrong type of arguments to formatting function" (`cpp/wrong-type-format-argument`) query has been upgraded to `high` precision. This query will now run in the default code scanning suite. -* The "Implicit function declaration" (`cpp/implicit-function-declaration`) query has been upgraded to `high` precision. However, for `build mode: none` databases, it no longer produces any results. The results in this mode were found to be very noisy and fundamentally imprecise. - ## 1.6.0 ### Query Metadata Changes @@ -366,7 +355,7 @@ No user-facing changes. ### Minor Analysis Improvements * The "non-constant format string" query (`cpp/non-constant-format`) has been updated to produce fewer false positives. -* Added dataflow models for the `gettext` function variants. +* Added dataflow models for the `gettext` function variants. ## 0.9.4 diff --git a/cpp/ql/src/change-notes/2026-03-23-implicit-function-declaration.md b/cpp/ql/src/change-notes/2026-03-23-implicit-function-declaration.md new file mode 100644 index 000000000000..8c2c431ec24c --- /dev/null +++ b/cpp/ql/src/change-notes/2026-03-23-implicit-function-declaration.md @@ -0,0 +1,4 @@ +--- +category: minorAnalysis +--- +* The "Implicit function declaration" (`cpp/implicit-function-declaration`) query no longer produces results on `build mode: none` databases. These results were found to be very noisy and fundamentally imprecise in this mode. diff --git a/cpp/ql/src/change-notes/2026-04-02-comparison-with-wider-type.md b/cpp/ql/src/change-notes/2026-04-02-comparison-with-wider-type.md new file mode 100644 index 000000000000..c84e1dba404c --- /dev/null +++ b/cpp/ql/src/change-notes/2026-04-02-comparison-with-wider-type.md @@ -0,0 +1,4 @@ +--- +category: minorAnalysis +--- +* The "Comparison of narrow type with wide type in loop condition" (`cpp/comparison-with-wider-type`) query has been upgraded to `high` precision. This query will now run in the default code scanning suite. diff --git a/cpp/ql/src/change-notes/2026-04-02-implicit-function-declaration.md b/cpp/ql/src/change-notes/2026-04-02-implicit-function-declaration.md new file mode 100644 index 000000000000..dd0dbd4bc7d9 --- /dev/null +++ b/cpp/ql/src/change-notes/2026-04-02-implicit-function-declaration.md @@ -0,0 +1,4 @@ +--- +category: minorAnalysis +--- +* The "Implicit function declaration" (`cpp/implicit-function-declaration`) query has been upgraded to `high` precision. diff --git a/cpp/ql/src/change-notes/2026-04-02-integer-multiplication-cast-to-long.md b/cpp/ql/src/change-notes/2026-04-02-integer-multiplication-cast-to-long.md new file mode 100644 index 000000000000..cd6796b408f0 --- /dev/null +++ b/cpp/ql/src/change-notes/2026-04-02-integer-multiplication-cast-to-long.md @@ -0,0 +1,4 @@ +--- +category: minorAnalysis +--- +* The "Multiplication result converted to larger type" (`cpp/integer-multiplication-cast-to-long`) query has been upgraded to `high` precision. This query will now run in the default code scanning suite. diff --git a/cpp/ql/src/change-notes/2026-04-02-suspicious-add-sizeof.md b/cpp/ql/src/change-notes/2026-04-02-suspicious-add-sizeof.md new file mode 100644 index 000000000000..040e89c13475 --- /dev/null +++ b/cpp/ql/src/change-notes/2026-04-02-suspicious-add-sizeof.md @@ -0,0 +1,4 @@ +--- +category: minorAnalysis +--- +* The "Suspicious add with sizeof" (`cpp/suspicious-add-sizeof`) query has been upgraded to `high` precision. This query will now run in the default code scanning suite. diff --git a/cpp/ql/src/change-notes/2026-04-02-wrong-type-format-argument.md b/cpp/ql/src/change-notes/2026-04-02-wrong-type-format-argument.md new file mode 100644 index 000000000000..f8b9085dacc6 --- /dev/null +++ b/cpp/ql/src/change-notes/2026-04-02-wrong-type-format-argument.md @@ -0,0 +1,4 @@ +--- +category: minorAnalysis +--- +* The "Wrong type of arguments to formatting function" (`cpp/wrong-type-format-argument`) query has been upgraded to `high` precision. This query will now run in the default code scanning suite. diff --git a/cpp/ql/src/change-notes/2026-04-16-add-model-for-aligned-alloc.md b/cpp/ql/src/change-notes/2026-04-16-add-model-for-aligned-alloc.md new file mode 100644 index 000000000000..af97cee7f9e4 --- /dev/null +++ b/cpp/ql/src/change-notes/2026-04-16-add-model-for-aligned-alloc.md @@ -0,0 +1,4 @@ +--- +category: minorAnalysis +--- +* Added `AllocationFunction` models for `aligned_alloc`, `std::aligned_alloc`, and `bsl::aligned_alloc`. diff --git a/cpp/ql/src/change-notes/released/1.6.1.md b/cpp/ql/src/change-notes/released/1.6.1.md deleted file mode 100644 index 83781b87c584..000000000000 --- a/cpp/ql/src/change-notes/released/1.6.1.md +++ /dev/null @@ -1,10 +0,0 @@ -## 1.6.1 - -### Minor Analysis Improvements - -* Added `AllocationFunction` models for `aligned_alloc`, `std::aligned_alloc`, and `bsl::aligned_alloc`. -* The "Comparison of narrow type with wide type in loop condition" (`cpp/comparison-with-wider-type`) query has been upgraded to `high` precision. This query will now run in the default code scanning suite. -* The "Multiplication result converted to larger type" (`cpp/integer-multiplication-cast-to-long`) query has been upgraded to `high` precision. This query will now run in the default code scanning suite. -* The "Suspicious add with sizeof" (`cpp/suspicious-add-sizeof`) query has been upgraded to `high` precision. This query will now run in the default code scanning suite. -* The "Wrong type of arguments to formatting function" (`cpp/wrong-type-format-argument`) query has been upgraded to `high` precision. This query will now run in the default code scanning suite. -* The "Implicit function declaration" (`cpp/implicit-function-declaration`) query has been upgraded to `high` precision. However, for `build mode: none` databases, it no longer produces any results. The results in this mode were found to be very noisy and fundamentally imprecise. diff --git a/cpp/ql/src/codeql-pack.release.yml b/cpp/ql/src/codeql-pack.release.yml index ef7a789e0cf1..c4f0b07d5336 100644 --- a/cpp/ql/src/codeql-pack.release.yml +++ b/cpp/ql/src/codeql-pack.release.yml @@ -1,2 +1,2 @@ --- -lastReleaseVersion: 1.6.1 +lastReleaseVersion: 1.6.0 diff --git a/cpp/ql/src/qlpack.yml b/cpp/ql/src/qlpack.yml index 8ec81ab6135e..4648951796cc 100644 --- a/cpp/ql/src/qlpack.yml +++ b/cpp/ql/src/qlpack.yml @@ -1,5 +1,5 @@ name: codeql/cpp-queries -version: 1.6.1 +version: 1.6.1-dev groups: - cpp - queries diff --git a/csharp/ql/campaigns/Solorigate/lib/CHANGELOG.md b/csharp/ql/campaigns/Solorigate/lib/CHANGELOG.md index 166a94bd88df..f7107d18c014 100644 --- a/csharp/ql/campaigns/Solorigate/lib/CHANGELOG.md +++ b/csharp/ql/campaigns/Solorigate/lib/CHANGELOG.md @@ -1,7 +1,3 @@ -## 1.7.65 - -No user-facing changes. - ## 1.7.64 No user-facing changes. diff --git a/csharp/ql/campaigns/Solorigate/lib/change-notes/released/1.7.65.md b/csharp/ql/campaigns/Solorigate/lib/change-notes/released/1.7.65.md deleted file mode 100644 index 12bf5dad4b08..000000000000 --- a/csharp/ql/campaigns/Solorigate/lib/change-notes/released/1.7.65.md +++ /dev/null @@ -1,3 +0,0 @@ -## 1.7.65 - -No user-facing changes. diff --git a/csharp/ql/campaigns/Solorigate/lib/codeql-pack.release.yml b/csharp/ql/campaigns/Solorigate/lib/codeql-pack.release.yml index bf581427d298..f41e954c9ae2 100644 --- a/csharp/ql/campaigns/Solorigate/lib/codeql-pack.release.yml +++ b/csharp/ql/campaigns/Solorigate/lib/codeql-pack.release.yml @@ -1,2 +1,2 @@ --- -lastReleaseVersion: 1.7.65 +lastReleaseVersion: 1.7.64 diff --git a/csharp/ql/campaigns/Solorigate/lib/qlpack.yml b/csharp/ql/campaigns/Solorigate/lib/qlpack.yml index d50eb024972c..006ef851567f 100644 --- a/csharp/ql/campaigns/Solorigate/lib/qlpack.yml +++ b/csharp/ql/campaigns/Solorigate/lib/qlpack.yml @@ -1,5 +1,5 @@ name: codeql/csharp-solorigate-all -version: 1.7.65 +version: 1.7.65-dev groups: - csharp - solorigate diff --git a/csharp/ql/campaigns/Solorigate/src/CHANGELOG.md b/csharp/ql/campaigns/Solorigate/src/CHANGELOG.md index 166a94bd88df..f7107d18c014 100644 --- a/csharp/ql/campaigns/Solorigate/src/CHANGELOG.md +++ b/csharp/ql/campaigns/Solorigate/src/CHANGELOG.md @@ -1,7 +1,3 @@ -## 1.7.65 - -No user-facing changes. - ## 1.7.64 No user-facing changes. diff --git a/csharp/ql/campaigns/Solorigate/src/change-notes/released/1.7.65.md b/csharp/ql/campaigns/Solorigate/src/change-notes/released/1.7.65.md deleted file mode 100644 index 12bf5dad4b08..000000000000 --- a/csharp/ql/campaigns/Solorigate/src/change-notes/released/1.7.65.md +++ /dev/null @@ -1,3 +0,0 @@ -## 1.7.65 - -No user-facing changes. diff --git a/csharp/ql/campaigns/Solorigate/src/codeql-pack.release.yml b/csharp/ql/campaigns/Solorigate/src/codeql-pack.release.yml index bf581427d298..f41e954c9ae2 100644 --- a/csharp/ql/campaigns/Solorigate/src/codeql-pack.release.yml +++ b/csharp/ql/campaigns/Solorigate/src/codeql-pack.release.yml @@ -1,2 +1,2 @@ --- -lastReleaseVersion: 1.7.65 +lastReleaseVersion: 1.7.64 diff --git a/csharp/ql/campaigns/Solorigate/src/qlpack.yml b/csharp/ql/campaigns/Solorigate/src/qlpack.yml index bd70b1664ac5..af5fd98f58af 100644 --- a/csharp/ql/campaigns/Solorigate/src/qlpack.yml +++ b/csharp/ql/campaigns/Solorigate/src/qlpack.yml @@ -1,5 +1,5 @@ name: codeql/csharp-solorigate-queries -version: 1.7.65 +version: 1.7.65-dev groups: - csharp - solorigate diff --git a/csharp/ql/lib/CHANGELOG.md b/csharp/ql/lib/CHANGELOG.md index 32cd8f33c650..57d99a41480b 100644 --- a/csharp/ql/lib/CHANGELOG.md +++ b/csharp/ql/lib/CHANGELOG.md @@ -1,9 +1,3 @@ -## 5.5.0 - -### Deprecated APIs - -* The predicates `get[L|R]Value` in the class `Assignment` have been deprecated. Use `get[Left|Right]Operand` instead. - ## 5.4.12 ### Minor Analysis Improvements diff --git a/csharp/ql/lib/change-notes/released/5.5.0.md b/csharp/ql/lib/change-notes/2026-04-01-getlrvalue.md similarity index 79% rename from csharp/ql/lib/change-notes/released/5.5.0.md rename to csharp/ql/lib/change-notes/2026-04-01-getlrvalue.md index b497d8ea51b4..da1a3d621481 100644 --- a/csharp/ql/lib/change-notes/released/5.5.0.md +++ b/csharp/ql/lib/change-notes/2026-04-01-getlrvalue.md @@ -1,5 +1,4 @@ -## 5.5.0 - -### Deprecated APIs - +--- +category: deprecated +--- * The predicates `get[L|R]Value` in the class `Assignment` have been deprecated. Use `get[Left|Right]Operand` instead. diff --git a/csharp/ql/lib/codeql-pack.release.yml b/csharp/ql/lib/codeql-pack.release.yml index 4b8cf9533c17..43db6e52c988 100644 --- a/csharp/ql/lib/codeql-pack.release.yml +++ b/csharp/ql/lib/codeql-pack.release.yml @@ -1,2 +1,2 @@ --- -lastReleaseVersion: 5.5.0 +lastReleaseVersion: 5.4.12 diff --git a/csharp/ql/lib/qlpack.yml b/csharp/ql/lib/qlpack.yml index f90aa010b895..02c1ccd0d33c 100644 --- a/csharp/ql/lib/qlpack.yml +++ b/csharp/ql/lib/qlpack.yml @@ -1,5 +1,5 @@ name: codeql/csharp-all -version: 5.5.0 +version: 5.4.13-dev groups: csharp dbscheme: semmlecode.csharp.dbscheme extractor: csharp diff --git a/csharp/ql/src/CHANGELOG.md b/csharp/ql/src/CHANGELOG.md index cdab71341852..fc0f8c58d794 100644 --- a/csharp/ql/src/CHANGELOG.md +++ b/csharp/ql/src/CHANGELOG.md @@ -1,12 +1,3 @@ -## 1.7.1 - -### Minor Analysis Improvements - -* The query `cs/useless-tostring-call` has been updated to avoid false - positive results in calls to `StringBuilder.AppendLine` and calls of - the form `base.ToString()`. Moreover, the alert message has been - made more precise. - ## 1.7.0 ### Query Metadata Changes diff --git a/csharp/ql/src/change-notes/released/1.7.1.md b/csharp/ql/src/change-notes/2026-04-17-useless-to-string.md similarity index 84% rename from csharp/ql/src/change-notes/released/1.7.1.md rename to csharp/ql/src/change-notes/2026-04-17-useless-to-string.md index 0b5df9629c67..9b4c81378c91 100644 --- a/csharp/ql/src/change-notes/released/1.7.1.md +++ b/csharp/ql/src/change-notes/2026-04-17-useless-to-string.md @@ -1,7 +1,6 @@ -## 1.7.1 - -### Minor Analysis Improvements - +--- +category: minorAnalysis +--- * The query `cs/useless-tostring-call` has been updated to avoid false positive results in calls to `StringBuilder.AppendLine` and calls of the form `base.ToString()`. Moreover, the alert message has been diff --git a/csharp/ql/src/codeql-pack.release.yml b/csharp/ql/src/codeql-pack.release.yml index 7bdec0d85c73..d1184cc67507 100644 --- a/csharp/ql/src/codeql-pack.release.yml +++ b/csharp/ql/src/codeql-pack.release.yml @@ -1,2 +1,2 @@ --- -lastReleaseVersion: 1.7.1 +lastReleaseVersion: 1.7.0 diff --git a/csharp/ql/src/qlpack.yml b/csharp/ql/src/qlpack.yml index c7d8eace2961..9ea341d1b38d 100644 --- a/csharp/ql/src/qlpack.yml +++ b/csharp/ql/src/qlpack.yml @@ -1,5 +1,5 @@ name: codeql/csharp-queries -version: 1.7.1 +version: 1.7.1-dev groups: - csharp - queries diff --git a/go/ql/consistency-queries/CHANGELOG.md b/go/ql/consistency-queries/CHANGELOG.md index a3aa00d4872e..34ae2fd22778 100644 --- a/go/ql/consistency-queries/CHANGELOG.md +++ b/go/ql/consistency-queries/CHANGELOG.md @@ -1,7 +1,3 @@ -## 1.0.48 - -No user-facing changes. - ## 1.0.47 No user-facing changes. diff --git a/go/ql/consistency-queries/change-notes/released/1.0.48.md b/go/ql/consistency-queries/change-notes/released/1.0.48.md deleted file mode 100644 index c484c6e8d6e2..000000000000 --- a/go/ql/consistency-queries/change-notes/released/1.0.48.md +++ /dev/null @@ -1,3 +0,0 @@ -## 1.0.48 - -No user-facing changes. diff --git a/go/ql/consistency-queries/codeql-pack.release.yml b/go/ql/consistency-queries/codeql-pack.release.yml index 6db79f2c3970..dcec0f6405ab 100644 --- a/go/ql/consistency-queries/codeql-pack.release.yml +++ b/go/ql/consistency-queries/codeql-pack.release.yml @@ -1,2 +1,2 @@ --- -lastReleaseVersion: 1.0.48 +lastReleaseVersion: 1.0.47 diff --git a/go/ql/consistency-queries/qlpack.yml b/go/ql/consistency-queries/qlpack.yml index 2a03af961527..c9dda4765dd0 100644 --- a/go/ql/consistency-queries/qlpack.yml +++ b/go/ql/consistency-queries/qlpack.yml @@ -1,5 +1,5 @@ name: codeql-go-consistency-queries -version: 1.0.48 +version: 1.0.48-dev groups: - go - queries diff --git a/go/ql/lib/CHANGELOG.md b/go/ql/lib/CHANGELOG.md index 737d08654b89..441d15a0d0e8 100644 --- a/go/ql/lib/CHANGELOG.md +++ b/go/ql/lib/CHANGELOG.md @@ -1,7 +1,3 @@ -## 7.0.6 - -No user-facing changes. - ## 7.0.5 No user-facing changes. diff --git a/go/ql/lib/change-notes/released/7.0.6.md b/go/ql/lib/change-notes/released/7.0.6.md deleted file mode 100644 index ca9a73aa64c1..000000000000 --- a/go/ql/lib/change-notes/released/7.0.6.md +++ /dev/null @@ -1,3 +0,0 @@ -## 7.0.6 - -No user-facing changes. diff --git a/go/ql/lib/codeql-pack.release.yml b/go/ql/lib/codeql-pack.release.yml index c7cff8c53789..2cff21d59fec 100644 --- a/go/ql/lib/codeql-pack.release.yml +++ b/go/ql/lib/codeql-pack.release.yml @@ -1,2 +1,2 @@ --- -lastReleaseVersion: 7.0.6 +lastReleaseVersion: 7.0.5 diff --git a/go/ql/lib/qlpack.yml b/go/ql/lib/qlpack.yml index 71a8c1c50f07..2d7338a020dc 100644 --- a/go/ql/lib/qlpack.yml +++ b/go/ql/lib/qlpack.yml @@ -1,5 +1,5 @@ name: codeql/go-all -version: 7.0.6 +version: 7.0.6-dev groups: go dbscheme: go.dbscheme extractor: go diff --git a/go/ql/src/CHANGELOG.md b/go/ql/src/CHANGELOG.md index 971d478d56e4..2bc95cc19222 100644 --- a/go/ql/src/CHANGELOG.md +++ b/go/ql/src/CHANGELOG.md @@ -1,7 +1,3 @@ -## 1.6.1 - -No user-facing changes. - ## 1.6.0 ### Query Metadata Changes diff --git a/go/ql/src/change-notes/released/1.6.1.md b/go/ql/src/change-notes/released/1.6.1.md deleted file mode 100644 index 898f6201ed73..000000000000 --- a/go/ql/src/change-notes/released/1.6.1.md +++ /dev/null @@ -1,3 +0,0 @@ -## 1.6.1 - -No user-facing changes. diff --git a/go/ql/src/codeql-pack.release.yml b/go/ql/src/codeql-pack.release.yml index ef7a789e0cf1..c4f0b07d5336 100644 --- a/go/ql/src/codeql-pack.release.yml +++ b/go/ql/src/codeql-pack.release.yml @@ -1,2 +1,2 @@ --- -lastReleaseVersion: 1.6.1 +lastReleaseVersion: 1.6.0 diff --git a/go/ql/src/qlpack.yml b/go/ql/src/qlpack.yml index 3f3d4e7cc2aa..de4e5e06d381 100644 --- a/go/ql/src/qlpack.yml +++ b/go/ql/src/qlpack.yml @@ -1,5 +1,5 @@ name: codeql/go-queries -version: 1.6.1 +version: 1.6.1-dev groups: - go - queries diff --git a/java/ql/lib/CHANGELOG.md b/java/ql/lib/CHANGELOG.md index 2d34c791c924..caa1eaecb948 100644 --- a/java/ql/lib/CHANGELOG.md +++ b/java/ql/lib/CHANGELOG.md @@ -1,9 +1,3 @@ -## 9.0.4 - -### Minor Analysis Improvements - -* The queries "Resolving XML external entity in user-controlled data" (`java/xxe`) and "Resolving XML external entity in user-controlled data from local source" (`java/xxe-local`) now recognize sinks in the Woodstox StAX library when `com.ctc.wstx.stax.WstxInputFactory` or `org.codehaus.stax2.XMLInputFactory2` are used directly. - ## 9.0.3 ### Minor Analysis Improvements diff --git a/java/ql/lib/change-notes/released/9.0.4.md b/java/ql/lib/change-notes/2026-04-16-woodstox-xxe.md similarity index 88% rename from java/ql/lib/change-notes/released/9.0.4.md rename to java/ql/lib/change-notes/2026-04-16-woodstox-xxe.md index a54996349514..891fc489e464 100644 --- a/java/ql/lib/change-notes/released/9.0.4.md +++ b/java/ql/lib/change-notes/2026-04-16-woodstox-xxe.md @@ -1,5 +1,4 @@ -## 9.0.4 - -### Minor Analysis Improvements - +--- +category: minorAnalysis +--- * The queries "Resolving XML external entity in user-controlled data" (`java/xxe`) and "Resolving XML external entity in user-controlled data from local source" (`java/xxe-local`) now recognize sinks in the Woodstox StAX library when `com.ctc.wstx.stax.WstxInputFactory` or `org.codehaus.stax2.XMLInputFactory2` are used directly. diff --git a/java/ql/lib/codeql-pack.release.yml b/java/ql/lib/codeql-pack.release.yml index 4bbe4f75b589..175658aaf53d 100644 --- a/java/ql/lib/codeql-pack.release.yml +++ b/java/ql/lib/codeql-pack.release.yml @@ -1,2 +1,2 @@ --- -lastReleaseVersion: 9.0.4 +lastReleaseVersion: 9.0.3 diff --git a/java/ql/lib/qlpack.yml b/java/ql/lib/qlpack.yml index 0a842a96b345..7f058cfb8d60 100644 --- a/java/ql/lib/qlpack.yml +++ b/java/ql/lib/qlpack.yml @@ -1,5 +1,5 @@ name: codeql/java-all -version: 9.0.4 +version: 9.0.4-dev groups: java dbscheme: config/semmlecode.dbscheme extractor: java diff --git a/java/ql/src/CHANGELOG.md b/java/ql/src/CHANGELOG.md index 1b5d2bdad8a2..2a2f8052092f 100644 --- a/java/ql/src/CHANGELOG.md +++ b/java/ql/src/CHANGELOG.md @@ -1,7 +1,3 @@ -## 1.11.1 - -No user-facing changes. - ## 1.11.0 ### Query Metadata Changes diff --git a/java/ql/src/change-notes/released/1.11.1.md b/java/ql/src/change-notes/released/1.11.1.md deleted file mode 100644 index f5047685223d..000000000000 --- a/java/ql/src/change-notes/released/1.11.1.md +++ /dev/null @@ -1,3 +0,0 @@ -## 1.11.1 - -No user-facing changes. diff --git a/java/ql/src/codeql-pack.release.yml b/java/ql/src/codeql-pack.release.yml index 4ae123153bf4..276088d81dc8 100644 --- a/java/ql/src/codeql-pack.release.yml +++ b/java/ql/src/codeql-pack.release.yml @@ -1,2 +1,2 @@ --- -lastReleaseVersion: 1.11.1 +lastReleaseVersion: 1.11.0 diff --git a/java/ql/src/qlpack.yml b/java/ql/src/qlpack.yml index 49c552ec02ac..72b4a5f94e6c 100644 --- a/java/ql/src/qlpack.yml +++ b/java/ql/src/qlpack.yml @@ -1,5 +1,5 @@ name: codeql/java-queries -version: 1.11.1 +version: 1.11.1-dev groups: - java - queries diff --git a/javascript/ql/lib/CHANGELOG.md b/javascript/ql/lib/CHANGELOG.md index 77837f46c5e8..fedb0b9b587f 100644 --- a/javascript/ql/lib/CHANGELOG.md +++ b/javascript/ql/lib/CHANGELOG.md @@ -1,7 +1,3 @@ -## 2.6.28 - -No user-facing changes. - ## 2.6.27 No user-facing changes. diff --git a/javascript/ql/lib/change-notes/released/2.6.28.md b/javascript/ql/lib/change-notes/released/2.6.28.md deleted file mode 100644 index 9c30dddcc0a7..000000000000 --- a/javascript/ql/lib/change-notes/released/2.6.28.md +++ /dev/null @@ -1,3 +0,0 @@ -## 2.6.28 - -No user-facing changes. diff --git a/javascript/ql/lib/codeql-pack.release.yml b/javascript/ql/lib/codeql-pack.release.yml index 2456457874e2..2ce86b10a85d 100644 --- a/javascript/ql/lib/codeql-pack.release.yml +++ b/javascript/ql/lib/codeql-pack.release.yml @@ -1,2 +1,2 @@ --- -lastReleaseVersion: 2.6.28 +lastReleaseVersion: 2.6.27 diff --git a/javascript/ql/lib/qlpack.yml b/javascript/ql/lib/qlpack.yml index dabbc8bd755f..e0834c056d11 100644 --- a/javascript/ql/lib/qlpack.yml +++ b/javascript/ql/lib/qlpack.yml @@ -1,5 +1,5 @@ name: codeql/javascript-all -version: 2.6.28 +version: 2.6.28-dev groups: javascript dbscheme: semmlecode.javascript.dbscheme extractor: javascript diff --git a/javascript/ql/src/CHANGELOG.md b/javascript/ql/src/CHANGELOG.md index 9b122364ffae..29e6c8e8da32 100644 --- a/javascript/ql/src/CHANGELOG.md +++ b/javascript/ql/src/CHANGELOG.md @@ -1,10 +1,3 @@ -## 2.3.8 - -### Minor Analysis Improvements - -* The query `js/missing-rate-limiting` now takes Fastify per-route - rate limiting into account. - ## 2.3.7 No user-facing changes. diff --git a/javascript/ql/src/change-notes/released/2.3.8.md b/javascript/ql/src/change-notes/2026-04-13-fastify-per-route-rate-limit.md similarity index 69% rename from javascript/ql/src/change-notes/released/2.3.8.md rename to javascript/ql/src/change-notes/2026-04-13-fastify-per-route-rate-limit.md index 5ce5cbe2f244..56d523885248 100644 --- a/javascript/ql/src/change-notes/released/2.3.8.md +++ b/javascript/ql/src/change-notes/2026-04-13-fastify-per-route-rate-limit.md @@ -1,6 +1,5 @@ -## 2.3.8 - -### Minor Analysis Improvements - +--- +category: minorAnalysis +--- * The query `js/missing-rate-limiting` now takes Fastify per-route rate limiting into account. diff --git a/javascript/ql/src/codeql-pack.release.yml b/javascript/ql/src/codeql-pack.release.yml index c68b70cb8bea..914cded08b38 100644 --- a/javascript/ql/src/codeql-pack.release.yml +++ b/javascript/ql/src/codeql-pack.release.yml @@ -1,2 +1,2 @@ --- -lastReleaseVersion: 2.3.8 +lastReleaseVersion: 2.3.7 diff --git a/javascript/ql/src/qlpack.yml b/javascript/ql/src/qlpack.yml index dd4f7c255a84..117fae183e99 100644 --- a/javascript/ql/src/qlpack.yml +++ b/javascript/ql/src/qlpack.yml @@ -1,5 +1,5 @@ name: codeql/javascript-queries -version: 2.3.8 +version: 2.3.8-dev groups: - javascript - queries diff --git a/misc/suite-helpers/CHANGELOG.md b/misc/suite-helpers/CHANGELOG.md index 897533f6450c..4b73639b1f75 100644 --- a/misc/suite-helpers/CHANGELOG.md +++ b/misc/suite-helpers/CHANGELOG.md @@ -1,7 +1,3 @@ -## 1.0.48 - -No user-facing changes. - ## 1.0.47 No user-facing changes. diff --git a/misc/suite-helpers/change-notes/released/1.0.48.md b/misc/suite-helpers/change-notes/released/1.0.48.md deleted file mode 100644 index c484c6e8d6e2..000000000000 --- a/misc/suite-helpers/change-notes/released/1.0.48.md +++ /dev/null @@ -1,3 +0,0 @@ -## 1.0.48 - -No user-facing changes. diff --git a/misc/suite-helpers/codeql-pack.release.yml b/misc/suite-helpers/codeql-pack.release.yml index 6db79f2c3970..dcec0f6405ab 100644 --- a/misc/suite-helpers/codeql-pack.release.yml +++ b/misc/suite-helpers/codeql-pack.release.yml @@ -1,2 +1,2 @@ --- -lastReleaseVersion: 1.0.48 +lastReleaseVersion: 1.0.47 diff --git a/misc/suite-helpers/qlpack.yml b/misc/suite-helpers/qlpack.yml index c18ab2bb10ed..1d8538023420 100644 --- a/misc/suite-helpers/qlpack.yml +++ b/misc/suite-helpers/qlpack.yml @@ -1,4 +1,4 @@ name: codeql/suite-helpers -version: 1.0.48 +version: 1.0.48-dev groups: shared warnOnImplicitThis: true diff --git a/python/ql/lib/CHANGELOG.md b/python/ql/lib/CHANGELOG.md index 69fa60a66758..a6833ea8db3d 100644 --- a/python/ql/lib/CHANGELOG.md +++ b/python/ql/lib/CHANGELOG.md @@ -1,9 +1,3 @@ -## 7.0.5 - -### Minor Analysis Improvements - -- The Python extractor now supports the new `lazy import ...` and `lazy from ... import ...` (as defined in [PEP-810](https://peps.python.org/pep-0810/)) that will be part of Python 3.15. - ## 7.0.4 ### Bug Fixes diff --git a/python/ql/lib/change-notes/released/7.0.5.md b/python/ql/lib/change-notes/2026-04-10-support-lazy-keyword.md similarity index 81% rename from python/ql/lib/change-notes/released/7.0.5.md rename to python/ql/lib/change-notes/2026-04-10-support-lazy-keyword.md index e205660dfde0..67de168ff47e 100644 --- a/python/ql/lib/change-notes/released/7.0.5.md +++ b/python/ql/lib/change-notes/2026-04-10-support-lazy-keyword.md @@ -1,5 +1,5 @@ -## 7.0.5 - -### Minor Analysis Improvements +--- +category: minorAnalysis +--- - The Python extractor now supports the new `lazy import ...` and `lazy from ... import ...` (as defined in [PEP-810](https://peps.python.org/pep-0810/)) that will be part of Python 3.15. diff --git a/python/ql/lib/codeql-pack.release.yml b/python/ql/lib/codeql-pack.release.yml index 2cff21d59fec..6630ee1984ad 100644 --- a/python/ql/lib/codeql-pack.release.yml +++ b/python/ql/lib/codeql-pack.release.yml @@ -1,2 +1,2 @@ --- -lastReleaseVersion: 7.0.5 +lastReleaseVersion: 7.0.4 diff --git a/python/ql/lib/qlpack.yml b/python/ql/lib/qlpack.yml index 4dc63a6f9cbe..fe87c5761cfd 100644 --- a/python/ql/lib/qlpack.yml +++ b/python/ql/lib/qlpack.yml @@ -1,5 +1,5 @@ name: codeql/python-all -version: 7.0.5 +version: 7.0.5-dev groups: python dbscheme: semmlecode.python.dbscheme extractor: python diff --git a/python/ql/src/CHANGELOG.md b/python/ql/src/CHANGELOG.md index 38018f098560..d5f5269c61d9 100644 --- a/python/ql/src/CHANGELOG.md +++ b/python/ql/src/CHANGELOG.md @@ -1,9 +1,3 @@ -## 1.8.1 - -### Minor Analysis Improvements - -- The `py/bind-socket-all-network-interfaces` query now uses the global data-flow library, leading to better precision and more results. Also, wrappers of `socket.socket` in the `eventlet` and `gevent` libraries are now also recognized as socket binding operations. - ## 1.8.0 ### Query Metadata Changes diff --git a/python/ql/src/change-notes/released/1.8.1.md b/python/ql/src/change-notes/2026-03-26-improve-bind-all-interfaces-query.md similarity index 86% rename from python/ql/src/change-notes/released/1.8.1.md rename to python/ql/src/change-notes/2026-03-26-improve-bind-all-interfaces-query.md index cafb58c11c9d..bc78b2b6f776 100644 --- a/python/ql/src/change-notes/released/1.8.1.md +++ b/python/ql/src/change-notes/2026-03-26-improve-bind-all-interfaces-query.md @@ -1,5 +1,5 @@ -## 1.8.1 - -### Minor Analysis Improvements +--- +category: minorAnalysis +--- - The `py/bind-socket-all-network-interfaces` query now uses the global data-flow library, leading to better precision and more results. Also, wrappers of `socket.socket` in the `eventlet` and `gevent` libraries are now also recognized as socket binding operations. diff --git a/python/ql/src/codeql-pack.release.yml b/python/ql/src/codeql-pack.release.yml index 28a7c123ae84..dc8a37cc443d 100644 --- a/python/ql/src/codeql-pack.release.yml +++ b/python/ql/src/codeql-pack.release.yml @@ -1,2 +1,2 @@ --- -lastReleaseVersion: 1.8.1 +lastReleaseVersion: 1.8.0 diff --git a/python/ql/src/qlpack.yml b/python/ql/src/qlpack.yml index b7d90a618e9f..aa2a2364854f 100644 --- a/python/ql/src/qlpack.yml +++ b/python/ql/src/qlpack.yml @@ -1,5 +1,5 @@ name: codeql/python-queries -version: 1.8.1 +version: 1.8.1-dev groups: - python - queries diff --git a/ruby/ql/lib/CHANGELOG.md b/ruby/ql/lib/CHANGELOG.md index 8315b6413696..40cb88d396f4 100644 --- a/ruby/ql/lib/CHANGELOG.md +++ b/ruby/ql/lib/CHANGELOG.md @@ -1,7 +1,3 @@ -## 5.1.16 - -No user-facing changes. - ## 5.1.15 No user-facing changes. diff --git a/ruby/ql/lib/change-notes/released/5.1.16.md b/ruby/ql/lib/change-notes/released/5.1.16.md deleted file mode 100644 index 42c9934011a3..000000000000 --- a/ruby/ql/lib/change-notes/released/5.1.16.md +++ /dev/null @@ -1,3 +0,0 @@ -## 5.1.16 - -No user-facing changes. diff --git a/ruby/ql/lib/codeql-pack.release.yml b/ruby/ql/lib/codeql-pack.release.yml index 735f742e9af7..840348ed924e 100644 --- a/ruby/ql/lib/codeql-pack.release.yml +++ b/ruby/ql/lib/codeql-pack.release.yml @@ -1,2 +1,2 @@ --- -lastReleaseVersion: 5.1.16 +lastReleaseVersion: 5.1.15 diff --git a/ruby/ql/lib/qlpack.yml b/ruby/ql/lib/qlpack.yml index ef68525f982b..bbf4de409093 100644 --- a/ruby/ql/lib/qlpack.yml +++ b/ruby/ql/lib/qlpack.yml @@ -1,5 +1,5 @@ name: codeql/ruby-all -version: 5.1.16 +version: 5.1.16-dev groups: ruby extractor: ruby dbscheme: ruby.dbscheme diff --git a/ruby/ql/src/CHANGELOG.md b/ruby/ql/src/CHANGELOG.md index 5266fc1d5d91..cb4c0ae7874a 100644 --- a/ruby/ql/src/CHANGELOG.md +++ b/ruby/ql/src/CHANGELOG.md @@ -1,7 +1,3 @@ -## 1.6.1 - -No user-facing changes. - ## 1.6.0 ### Query Metadata Changes diff --git a/ruby/ql/src/change-notes/released/1.6.1.md b/ruby/ql/src/change-notes/released/1.6.1.md deleted file mode 100644 index 898f6201ed73..000000000000 --- a/ruby/ql/src/change-notes/released/1.6.1.md +++ /dev/null @@ -1,3 +0,0 @@ -## 1.6.1 - -No user-facing changes. diff --git a/ruby/ql/src/codeql-pack.release.yml b/ruby/ql/src/codeql-pack.release.yml index ef7a789e0cf1..c4f0b07d5336 100644 --- a/ruby/ql/src/codeql-pack.release.yml +++ b/ruby/ql/src/codeql-pack.release.yml @@ -1,2 +1,2 @@ --- -lastReleaseVersion: 1.6.1 +lastReleaseVersion: 1.6.0 diff --git a/ruby/ql/src/qlpack.yml b/ruby/ql/src/qlpack.yml index 8964f6e51ac9..191689565de4 100644 --- a/ruby/ql/src/qlpack.yml +++ b/ruby/ql/src/qlpack.yml @@ -1,5 +1,5 @@ name: codeql/ruby-queries -version: 1.6.1 +version: 1.6.1-dev groups: - ruby - queries diff --git a/rust/ql/lib/CHANGELOG.md b/rust/ql/lib/CHANGELOG.md index 8e515660f290..eea5bd6e89d8 100644 --- a/rust/ql/lib/CHANGELOG.md +++ b/rust/ql/lib/CHANGELOG.md @@ -1,7 +1,3 @@ -## 0.2.12 - -No user-facing changes. - ## 0.2.11 No user-facing changes. diff --git a/rust/ql/lib/change-notes/released/0.2.12.md b/rust/ql/lib/change-notes/released/0.2.12.md deleted file mode 100644 index 590eb0cedd1f..000000000000 --- a/rust/ql/lib/change-notes/released/0.2.12.md +++ /dev/null @@ -1,3 +0,0 @@ -## 0.2.12 - -No user-facing changes. diff --git a/rust/ql/lib/codeql-pack.release.yml b/rust/ql/lib/codeql-pack.release.yml index da1cea933934..2ee635b99371 100644 --- a/rust/ql/lib/codeql-pack.release.yml +++ b/rust/ql/lib/codeql-pack.release.yml @@ -1,2 +1,2 @@ --- -lastReleaseVersion: 0.2.12 +lastReleaseVersion: 0.2.11 diff --git a/rust/ql/lib/qlpack.yml b/rust/ql/lib/qlpack.yml index 569930438abe..f50310200378 100644 --- a/rust/ql/lib/qlpack.yml +++ b/rust/ql/lib/qlpack.yml @@ -1,5 +1,5 @@ name: codeql/rust-all -version: 0.2.12 +version: 0.2.12-dev groups: rust extractor: rust dbscheme: rust.dbscheme diff --git a/rust/ql/src/CHANGELOG.md b/rust/ql/src/CHANGELOG.md index 14034c9877d8..eab921bcbd6b 100644 --- a/rust/ql/src/CHANGELOG.md +++ b/rust/ql/src/CHANGELOG.md @@ -1,7 +1,3 @@ -## 0.1.33 - -No user-facing changes. - ## 0.1.32 ### Query Metadata Changes diff --git a/rust/ql/src/change-notes/released/0.1.33.md b/rust/ql/src/change-notes/released/0.1.33.md deleted file mode 100644 index 5bd982edadd6..000000000000 --- a/rust/ql/src/change-notes/released/0.1.33.md +++ /dev/null @@ -1,3 +0,0 @@ -## 0.1.33 - -No user-facing changes. diff --git a/rust/ql/src/codeql-pack.release.yml b/rust/ql/src/codeql-pack.release.yml index d9c9e819daa0..21bbd752f27a 100644 --- a/rust/ql/src/codeql-pack.release.yml +++ b/rust/ql/src/codeql-pack.release.yml @@ -1,2 +1,2 @@ --- -lastReleaseVersion: 0.1.33 +lastReleaseVersion: 0.1.32 diff --git a/rust/ql/src/qlpack.yml b/rust/ql/src/qlpack.yml index 0eefe2f39325..f78504db76eb 100644 --- a/rust/ql/src/qlpack.yml +++ b/rust/ql/src/qlpack.yml @@ -1,5 +1,5 @@ name: codeql/rust-queries -version: 0.1.33 +version: 0.1.33-dev groups: - rust - queries diff --git a/shared/concepts/CHANGELOG.md b/shared/concepts/CHANGELOG.md index e8b920847e90..704ea3e8e019 100644 --- a/shared/concepts/CHANGELOG.md +++ b/shared/concepts/CHANGELOG.md @@ -1,7 +1,3 @@ -## 0.0.22 - -No user-facing changes. - ## 0.0.21 No user-facing changes. diff --git a/shared/concepts/change-notes/released/0.0.22.md b/shared/concepts/change-notes/released/0.0.22.md deleted file mode 100644 index 002267474382..000000000000 --- a/shared/concepts/change-notes/released/0.0.22.md +++ /dev/null @@ -1,3 +0,0 @@ -## 0.0.22 - -No user-facing changes. diff --git a/shared/concepts/codeql-pack.release.yml b/shared/concepts/codeql-pack.release.yml index 11aaa2243f57..0c15c351db40 100644 --- a/shared/concepts/codeql-pack.release.yml +++ b/shared/concepts/codeql-pack.release.yml @@ -1,2 +1,2 @@ --- -lastReleaseVersion: 0.0.22 +lastReleaseVersion: 0.0.21 diff --git a/shared/concepts/qlpack.yml b/shared/concepts/qlpack.yml index 2ce2978829e3..bf6e8b6018c0 100644 --- a/shared/concepts/qlpack.yml +++ b/shared/concepts/qlpack.yml @@ -1,5 +1,5 @@ name: codeql/concepts -version: 0.0.22 +version: 0.0.22-dev groups: shared library: true dependencies: diff --git a/shared/controlflow/CHANGELOG.md b/shared/controlflow/CHANGELOG.md index df00c6146d8f..baca729ddda8 100644 --- a/shared/controlflow/CHANGELOG.md +++ b/shared/controlflow/CHANGELOG.md @@ -1,7 +1,3 @@ -## 2.0.32 - -No user-facing changes. - ## 2.0.31 No user-facing changes. diff --git a/shared/controlflow/change-notes/released/2.0.32.md b/shared/controlflow/change-notes/released/2.0.32.md deleted file mode 100644 index 0930bb07f8c4..000000000000 --- a/shared/controlflow/change-notes/released/2.0.32.md +++ /dev/null @@ -1,3 +0,0 @@ -## 2.0.32 - -No user-facing changes. diff --git a/shared/controlflow/codeql-pack.release.yml b/shared/controlflow/codeql-pack.release.yml index 483a0d5db8ec..783d47207cda 100644 --- a/shared/controlflow/codeql-pack.release.yml +++ b/shared/controlflow/codeql-pack.release.yml @@ -1,2 +1,2 @@ --- -lastReleaseVersion: 2.0.32 +lastReleaseVersion: 2.0.31 diff --git a/shared/controlflow/qlpack.yml b/shared/controlflow/qlpack.yml index b293853c73bd..5573548794d0 100644 --- a/shared/controlflow/qlpack.yml +++ b/shared/controlflow/qlpack.yml @@ -1,5 +1,5 @@ name: codeql/controlflow -version: 2.0.32 +version: 2.0.32-dev groups: shared library: true dependencies: diff --git a/shared/dataflow/CHANGELOG.md b/shared/dataflow/CHANGELOG.md index ed60239f3de3..52c893f78e27 100644 --- a/shared/dataflow/CHANGELOG.md +++ b/shared/dataflow/CHANGELOG.md @@ -1,7 +1,3 @@ -## 2.1.4 - -No user-facing changes. - ## 2.1.3 No user-facing changes. diff --git a/shared/dataflow/change-notes/released/2.1.4.md b/shared/dataflow/change-notes/released/2.1.4.md deleted file mode 100644 index a1035c6b05b2..000000000000 --- a/shared/dataflow/change-notes/released/2.1.4.md +++ /dev/null @@ -1,3 +0,0 @@ -## 2.1.4 - -No user-facing changes. diff --git a/shared/dataflow/codeql-pack.release.yml b/shared/dataflow/codeql-pack.release.yml index 896b46fda9bd..345fb0c73a44 100644 --- a/shared/dataflow/codeql-pack.release.yml +++ b/shared/dataflow/codeql-pack.release.yml @@ -1,2 +1,2 @@ --- -lastReleaseVersion: 2.1.4 +lastReleaseVersion: 2.1.3 diff --git a/shared/dataflow/qlpack.yml b/shared/dataflow/qlpack.yml index e7778805c504..3b917def33db 100644 --- a/shared/dataflow/qlpack.yml +++ b/shared/dataflow/qlpack.yml @@ -1,5 +1,5 @@ name: codeql/dataflow -version: 2.1.4 +version: 2.1.4-dev groups: shared library: true dependencies: diff --git a/shared/mad/CHANGELOG.md b/shared/mad/CHANGELOG.md index ff868403d0c4..1bffb976cf8c 100644 --- a/shared/mad/CHANGELOG.md +++ b/shared/mad/CHANGELOG.md @@ -1,7 +1,3 @@ -## 1.0.48 - -No user-facing changes. - ## 1.0.47 No user-facing changes. diff --git a/shared/mad/change-notes/released/1.0.48.md b/shared/mad/change-notes/released/1.0.48.md deleted file mode 100644 index c484c6e8d6e2..000000000000 --- a/shared/mad/change-notes/released/1.0.48.md +++ /dev/null @@ -1,3 +0,0 @@ -## 1.0.48 - -No user-facing changes. diff --git a/shared/mad/codeql-pack.release.yml b/shared/mad/codeql-pack.release.yml index 6db79f2c3970..dcec0f6405ab 100644 --- a/shared/mad/codeql-pack.release.yml +++ b/shared/mad/codeql-pack.release.yml @@ -1,2 +1,2 @@ --- -lastReleaseVersion: 1.0.48 +lastReleaseVersion: 1.0.47 diff --git a/shared/mad/qlpack.yml b/shared/mad/qlpack.yml index 920ffe102676..b5583f8c55a2 100644 --- a/shared/mad/qlpack.yml +++ b/shared/mad/qlpack.yml @@ -1,5 +1,5 @@ name: codeql/mad -version: 1.0.48 +version: 1.0.48-dev groups: shared library: true dependencies: diff --git a/shared/quantum/CHANGELOG.md b/shared/quantum/CHANGELOG.md index eccc65c6041d..8d524a11a093 100644 --- a/shared/quantum/CHANGELOG.md +++ b/shared/quantum/CHANGELOG.md @@ -1,7 +1,3 @@ -## 0.0.26 - -No user-facing changes. - ## 0.0.25 No user-facing changes. diff --git a/shared/quantum/change-notes/released/0.0.26.md b/shared/quantum/change-notes/released/0.0.26.md deleted file mode 100644 index e6dc680cc11b..000000000000 --- a/shared/quantum/change-notes/released/0.0.26.md +++ /dev/null @@ -1,3 +0,0 @@ -## 0.0.26 - -No user-facing changes. diff --git a/shared/quantum/codeql-pack.release.yml b/shared/quantum/codeql-pack.release.yml index c576d2d7db2a..6d0e80a50c3f 100644 --- a/shared/quantum/codeql-pack.release.yml +++ b/shared/quantum/codeql-pack.release.yml @@ -1,2 +1,2 @@ --- -lastReleaseVersion: 0.0.26 +lastReleaseVersion: 0.0.25 diff --git a/shared/quantum/qlpack.yml b/shared/quantum/qlpack.yml index 52c78c5f963f..a19e99ef7eaa 100644 --- a/shared/quantum/qlpack.yml +++ b/shared/quantum/qlpack.yml @@ -1,5 +1,5 @@ name: codeql/quantum -version: 0.0.26 +version: 0.0.26-dev groups: shared library: true dependencies: diff --git a/shared/rangeanalysis/CHANGELOG.md b/shared/rangeanalysis/CHANGELOG.md index 9afb612f18a4..0ab7487192cb 100644 --- a/shared/rangeanalysis/CHANGELOG.md +++ b/shared/rangeanalysis/CHANGELOG.md @@ -1,7 +1,3 @@ -## 1.0.48 - -No user-facing changes. - ## 1.0.47 No user-facing changes. diff --git a/shared/rangeanalysis/change-notes/released/1.0.48.md b/shared/rangeanalysis/change-notes/released/1.0.48.md deleted file mode 100644 index c484c6e8d6e2..000000000000 --- a/shared/rangeanalysis/change-notes/released/1.0.48.md +++ /dev/null @@ -1,3 +0,0 @@ -## 1.0.48 - -No user-facing changes. diff --git a/shared/rangeanalysis/codeql-pack.release.yml b/shared/rangeanalysis/codeql-pack.release.yml index 6db79f2c3970..dcec0f6405ab 100644 --- a/shared/rangeanalysis/codeql-pack.release.yml +++ b/shared/rangeanalysis/codeql-pack.release.yml @@ -1,2 +1,2 @@ --- -lastReleaseVersion: 1.0.48 +lastReleaseVersion: 1.0.47 diff --git a/shared/rangeanalysis/qlpack.yml b/shared/rangeanalysis/qlpack.yml index 274a6160372e..d493350749ee 100644 --- a/shared/rangeanalysis/qlpack.yml +++ b/shared/rangeanalysis/qlpack.yml @@ -1,5 +1,5 @@ name: codeql/rangeanalysis -version: 1.0.48 +version: 1.0.48-dev groups: shared library: true dependencies: diff --git a/shared/regex/CHANGELOG.md b/shared/regex/CHANGELOG.md index 2375b7b56ab6..dd6f0c4cad6b 100644 --- a/shared/regex/CHANGELOG.md +++ b/shared/regex/CHANGELOG.md @@ -1,7 +1,3 @@ -## 1.0.48 - -No user-facing changes. - ## 1.0.47 No user-facing changes. diff --git a/shared/regex/change-notes/released/1.0.48.md b/shared/regex/change-notes/released/1.0.48.md deleted file mode 100644 index c484c6e8d6e2..000000000000 --- a/shared/regex/change-notes/released/1.0.48.md +++ /dev/null @@ -1,3 +0,0 @@ -## 1.0.48 - -No user-facing changes. diff --git a/shared/regex/codeql-pack.release.yml b/shared/regex/codeql-pack.release.yml index 6db79f2c3970..dcec0f6405ab 100644 --- a/shared/regex/codeql-pack.release.yml +++ b/shared/regex/codeql-pack.release.yml @@ -1,2 +1,2 @@ --- -lastReleaseVersion: 1.0.48 +lastReleaseVersion: 1.0.47 diff --git a/shared/regex/qlpack.yml b/shared/regex/qlpack.yml index abe561fb37c0..7b953dcff1cf 100644 --- a/shared/regex/qlpack.yml +++ b/shared/regex/qlpack.yml @@ -1,5 +1,5 @@ name: codeql/regex -version: 1.0.48 +version: 1.0.48-dev groups: shared library: true dependencies: diff --git a/shared/ssa/CHANGELOG.md b/shared/ssa/CHANGELOG.md index dd21ba6d38b1..3573140fc410 100644 --- a/shared/ssa/CHANGELOG.md +++ b/shared/ssa/CHANGELOG.md @@ -1,7 +1,3 @@ -## 2.0.24 - -No user-facing changes. - ## 2.0.23 No user-facing changes. diff --git a/shared/ssa/change-notes/released/2.0.24.md b/shared/ssa/change-notes/released/2.0.24.md deleted file mode 100644 index 6547901c3343..000000000000 --- a/shared/ssa/change-notes/released/2.0.24.md +++ /dev/null @@ -1,3 +0,0 @@ -## 2.0.24 - -No user-facing changes. diff --git a/shared/ssa/codeql-pack.release.yml b/shared/ssa/codeql-pack.release.yml index 1460df314d51..1bd7e296a34f 100644 --- a/shared/ssa/codeql-pack.release.yml +++ b/shared/ssa/codeql-pack.release.yml @@ -1,2 +1,2 @@ --- -lastReleaseVersion: 2.0.24 +lastReleaseVersion: 2.0.23 diff --git a/shared/ssa/qlpack.yml b/shared/ssa/qlpack.yml index 16d312b77aed..a8fa9a114243 100644 --- a/shared/ssa/qlpack.yml +++ b/shared/ssa/qlpack.yml @@ -1,5 +1,5 @@ name: codeql/ssa -version: 2.0.24 +version: 2.0.24-dev groups: shared library: true dependencies: diff --git a/shared/threat-models/CHANGELOG.md b/shared/threat-models/CHANGELOG.md index a3aa00d4872e..34ae2fd22778 100644 --- a/shared/threat-models/CHANGELOG.md +++ b/shared/threat-models/CHANGELOG.md @@ -1,7 +1,3 @@ -## 1.0.48 - -No user-facing changes. - ## 1.0.47 No user-facing changes. diff --git a/shared/threat-models/change-notes/released/1.0.48.md b/shared/threat-models/change-notes/released/1.0.48.md deleted file mode 100644 index c484c6e8d6e2..000000000000 --- a/shared/threat-models/change-notes/released/1.0.48.md +++ /dev/null @@ -1,3 +0,0 @@ -## 1.0.48 - -No user-facing changes. diff --git a/shared/threat-models/codeql-pack.release.yml b/shared/threat-models/codeql-pack.release.yml index 6db79f2c3970..dcec0f6405ab 100644 --- a/shared/threat-models/codeql-pack.release.yml +++ b/shared/threat-models/codeql-pack.release.yml @@ -1,2 +1,2 @@ --- -lastReleaseVersion: 1.0.48 +lastReleaseVersion: 1.0.47 diff --git a/shared/threat-models/qlpack.yml b/shared/threat-models/qlpack.yml index 2cf364fa3327..a4a367a990b3 100644 --- a/shared/threat-models/qlpack.yml +++ b/shared/threat-models/qlpack.yml @@ -1,5 +1,5 @@ name: codeql/threat-models -version: 1.0.48 +version: 1.0.48-dev library: true groups: shared dataExtensions: diff --git a/shared/tutorial/CHANGELOG.md b/shared/tutorial/CHANGELOG.md index 9350e8a04eb7..cf8f60d1d46a 100644 --- a/shared/tutorial/CHANGELOG.md +++ b/shared/tutorial/CHANGELOG.md @@ -1,7 +1,3 @@ -## 1.0.48 - -No user-facing changes. - ## 1.0.47 No user-facing changes. diff --git a/shared/tutorial/change-notes/released/1.0.48.md b/shared/tutorial/change-notes/released/1.0.48.md deleted file mode 100644 index c484c6e8d6e2..000000000000 --- a/shared/tutorial/change-notes/released/1.0.48.md +++ /dev/null @@ -1,3 +0,0 @@ -## 1.0.48 - -No user-facing changes. diff --git a/shared/tutorial/codeql-pack.release.yml b/shared/tutorial/codeql-pack.release.yml index 6db79f2c3970..dcec0f6405ab 100644 --- a/shared/tutorial/codeql-pack.release.yml +++ b/shared/tutorial/codeql-pack.release.yml @@ -1,2 +1,2 @@ --- -lastReleaseVersion: 1.0.48 +lastReleaseVersion: 1.0.47 diff --git a/shared/tutorial/qlpack.yml b/shared/tutorial/qlpack.yml index 5c9c6cdc47c2..f961ccdc0eb2 100644 --- a/shared/tutorial/qlpack.yml +++ b/shared/tutorial/qlpack.yml @@ -1,7 +1,7 @@ name: codeql/tutorial description: Library for the CodeQL detective tutorials, helping new users learn to write CodeQL queries. -version: 1.0.48 +version: 1.0.48-dev groups: shared library: true warnOnImplicitThis: true diff --git a/shared/typeflow/CHANGELOG.md b/shared/typeflow/CHANGELOG.md index 035c2aa456e9..8c5ee5e94864 100644 --- a/shared/typeflow/CHANGELOG.md +++ b/shared/typeflow/CHANGELOG.md @@ -1,7 +1,3 @@ -## 1.0.48 - -No user-facing changes. - ## 1.0.47 No user-facing changes. diff --git a/shared/typeflow/change-notes/released/1.0.48.md b/shared/typeflow/change-notes/released/1.0.48.md deleted file mode 100644 index c484c6e8d6e2..000000000000 --- a/shared/typeflow/change-notes/released/1.0.48.md +++ /dev/null @@ -1,3 +0,0 @@ -## 1.0.48 - -No user-facing changes. diff --git a/shared/typeflow/codeql-pack.release.yml b/shared/typeflow/codeql-pack.release.yml index 6db79f2c3970..dcec0f6405ab 100644 --- a/shared/typeflow/codeql-pack.release.yml +++ b/shared/typeflow/codeql-pack.release.yml @@ -1,2 +1,2 @@ --- -lastReleaseVersion: 1.0.48 +lastReleaseVersion: 1.0.47 diff --git a/shared/typeflow/qlpack.yml b/shared/typeflow/qlpack.yml index c9d4ec97a924..f7e111d28fde 100644 --- a/shared/typeflow/qlpack.yml +++ b/shared/typeflow/qlpack.yml @@ -1,5 +1,5 @@ name: codeql/typeflow -version: 1.0.48 +version: 1.0.48-dev groups: shared library: true dependencies: diff --git a/shared/typeinference/CHANGELOG.md b/shared/typeinference/CHANGELOG.md index c8b656e4f351..7153b9314b18 100644 --- a/shared/typeinference/CHANGELOG.md +++ b/shared/typeinference/CHANGELOG.md @@ -1,7 +1,3 @@ -## 0.0.29 - -No user-facing changes. - ## 0.0.28 No user-facing changes. diff --git a/shared/typeinference/change-notes/released/0.0.29.md b/shared/typeinference/change-notes/released/0.0.29.md deleted file mode 100644 index 4428927c79d5..000000000000 --- a/shared/typeinference/change-notes/released/0.0.29.md +++ /dev/null @@ -1,3 +0,0 @@ -## 0.0.29 - -No user-facing changes. diff --git a/shared/typeinference/codeql-pack.release.yml b/shared/typeinference/codeql-pack.release.yml index c81f18131208..3462db7d348f 100644 --- a/shared/typeinference/codeql-pack.release.yml +++ b/shared/typeinference/codeql-pack.release.yml @@ -1,2 +1,2 @@ --- -lastReleaseVersion: 0.0.29 +lastReleaseVersion: 0.0.28 diff --git a/shared/typeinference/qlpack.yml b/shared/typeinference/qlpack.yml index 57ed4da1080f..97c8df368959 100644 --- a/shared/typeinference/qlpack.yml +++ b/shared/typeinference/qlpack.yml @@ -1,5 +1,5 @@ name: codeql/typeinference -version: 0.0.29 +version: 0.0.29-dev groups: shared library: true dependencies: diff --git a/shared/typetracking/CHANGELOG.md b/shared/typetracking/CHANGELOG.md index 75d8938e6a18..f779002267aa 100644 --- a/shared/typetracking/CHANGELOG.md +++ b/shared/typetracking/CHANGELOG.md @@ -1,7 +1,3 @@ -## 2.0.32 - -No user-facing changes. - ## 2.0.31 No user-facing changes. diff --git a/shared/typetracking/change-notes/released/2.0.32.md b/shared/typetracking/change-notes/released/2.0.32.md deleted file mode 100644 index 0930bb07f8c4..000000000000 --- a/shared/typetracking/change-notes/released/2.0.32.md +++ /dev/null @@ -1,3 +0,0 @@ -## 2.0.32 - -No user-facing changes. diff --git a/shared/typetracking/codeql-pack.release.yml b/shared/typetracking/codeql-pack.release.yml index 483a0d5db8ec..783d47207cda 100644 --- a/shared/typetracking/codeql-pack.release.yml +++ b/shared/typetracking/codeql-pack.release.yml @@ -1,2 +1,2 @@ --- -lastReleaseVersion: 2.0.32 +lastReleaseVersion: 2.0.31 diff --git a/shared/typetracking/qlpack.yml b/shared/typetracking/qlpack.yml index 7d506ee6807c..aa0296875312 100644 --- a/shared/typetracking/qlpack.yml +++ b/shared/typetracking/qlpack.yml @@ -1,5 +1,5 @@ name: codeql/typetracking -version: 2.0.32 +version: 2.0.32-dev groups: shared library: true dependencies: diff --git a/shared/typos/CHANGELOG.md b/shared/typos/CHANGELOG.md index 35825098a633..b49f756fef03 100644 --- a/shared/typos/CHANGELOG.md +++ b/shared/typos/CHANGELOG.md @@ -1,7 +1,3 @@ -## 1.0.48 - -No user-facing changes. - ## 1.0.47 No user-facing changes. diff --git a/shared/typos/change-notes/released/1.0.48.md b/shared/typos/change-notes/released/1.0.48.md deleted file mode 100644 index c484c6e8d6e2..000000000000 --- a/shared/typos/change-notes/released/1.0.48.md +++ /dev/null @@ -1,3 +0,0 @@ -## 1.0.48 - -No user-facing changes. diff --git a/shared/typos/codeql-pack.release.yml b/shared/typos/codeql-pack.release.yml index 6db79f2c3970..dcec0f6405ab 100644 --- a/shared/typos/codeql-pack.release.yml +++ b/shared/typos/codeql-pack.release.yml @@ -1,2 +1,2 @@ --- -lastReleaseVersion: 1.0.48 +lastReleaseVersion: 1.0.47 diff --git a/shared/typos/qlpack.yml b/shared/typos/qlpack.yml index 5ba6ce2b43d4..37fc79bb1dfd 100644 --- a/shared/typos/qlpack.yml +++ b/shared/typos/qlpack.yml @@ -1,5 +1,5 @@ name: codeql/typos -version: 1.0.48 +version: 1.0.48-dev groups: shared library: true warnOnImplicitThis: true diff --git a/shared/util/CHANGELOG.md b/shared/util/CHANGELOG.md index d1becc8ba2c1..cb3ac7bbe797 100644 --- a/shared/util/CHANGELOG.md +++ b/shared/util/CHANGELOG.md @@ -1,7 +1,3 @@ -## 2.0.35 - -No user-facing changes. - ## 2.0.34 No user-facing changes. diff --git a/shared/util/change-notes/released/2.0.35.md b/shared/util/change-notes/released/2.0.35.md deleted file mode 100644 index 526e1fc9f4ce..000000000000 --- a/shared/util/change-notes/released/2.0.35.md +++ /dev/null @@ -1,3 +0,0 @@ -## 2.0.35 - -No user-facing changes. diff --git a/shared/util/codeql-pack.release.yml b/shared/util/codeql-pack.release.yml index 27eb8ef8ecea..339a3ce7c57a 100644 --- a/shared/util/codeql-pack.release.yml +++ b/shared/util/codeql-pack.release.yml @@ -1,2 +1,2 @@ --- -lastReleaseVersion: 2.0.35 +lastReleaseVersion: 2.0.34 diff --git a/shared/util/qlpack.yml b/shared/util/qlpack.yml index 1e765b5e42e4..02e6241dccbf 100644 --- a/shared/util/qlpack.yml +++ b/shared/util/qlpack.yml @@ -1,5 +1,5 @@ name: codeql/util -version: 2.0.35 +version: 2.0.35-dev groups: shared library: true dependencies: null diff --git a/shared/xml/CHANGELOG.md b/shared/xml/CHANGELOG.md index 131bf7afd2a2..98702251320c 100644 --- a/shared/xml/CHANGELOG.md +++ b/shared/xml/CHANGELOG.md @@ -1,7 +1,3 @@ -## 1.0.48 - -No user-facing changes. - ## 1.0.47 No user-facing changes. diff --git a/shared/xml/change-notes/released/1.0.48.md b/shared/xml/change-notes/released/1.0.48.md deleted file mode 100644 index c484c6e8d6e2..000000000000 --- a/shared/xml/change-notes/released/1.0.48.md +++ /dev/null @@ -1,3 +0,0 @@ -## 1.0.48 - -No user-facing changes. diff --git a/shared/xml/codeql-pack.release.yml b/shared/xml/codeql-pack.release.yml index 6db79f2c3970..dcec0f6405ab 100644 --- a/shared/xml/codeql-pack.release.yml +++ b/shared/xml/codeql-pack.release.yml @@ -1,2 +1,2 @@ --- -lastReleaseVersion: 1.0.48 +lastReleaseVersion: 1.0.47 diff --git a/shared/xml/qlpack.yml b/shared/xml/qlpack.yml index 45ddcffaee77..0d75859bdb9d 100644 --- a/shared/xml/qlpack.yml +++ b/shared/xml/qlpack.yml @@ -1,5 +1,5 @@ name: codeql/xml -version: 1.0.48 +version: 1.0.48-dev groups: shared library: true dependencies: diff --git a/shared/yaml/CHANGELOG.md b/shared/yaml/CHANGELOG.md index 1c420b31355d..4a41f8ee9dfe 100644 --- a/shared/yaml/CHANGELOG.md +++ b/shared/yaml/CHANGELOG.md @@ -1,7 +1,3 @@ -## 1.0.48 - -No user-facing changes. - ## 1.0.47 No user-facing changes. diff --git a/shared/yaml/change-notes/released/1.0.48.md b/shared/yaml/change-notes/released/1.0.48.md deleted file mode 100644 index c484c6e8d6e2..000000000000 --- a/shared/yaml/change-notes/released/1.0.48.md +++ /dev/null @@ -1,3 +0,0 @@ -## 1.0.48 - -No user-facing changes. diff --git a/shared/yaml/codeql-pack.release.yml b/shared/yaml/codeql-pack.release.yml index 6db79f2c3970..dcec0f6405ab 100644 --- a/shared/yaml/codeql-pack.release.yml +++ b/shared/yaml/codeql-pack.release.yml @@ -1,2 +1,2 @@ --- -lastReleaseVersion: 1.0.48 +lastReleaseVersion: 1.0.47 diff --git a/shared/yaml/qlpack.yml b/shared/yaml/qlpack.yml index 461f97ac4dba..cfea54e0b5b5 100644 --- a/shared/yaml/qlpack.yml +++ b/shared/yaml/qlpack.yml @@ -1,5 +1,5 @@ name: codeql/yaml -version: 1.0.48 +version: 1.0.48-dev groups: shared library: true warnOnImplicitThis: true diff --git a/swift/ql/lib/CHANGELOG.md b/swift/ql/lib/CHANGELOG.md index e2cb45f97693..3967689b9331 100644 --- a/swift/ql/lib/CHANGELOG.md +++ b/swift/ql/lib/CHANGELOG.md @@ -1,9 +1,3 @@ -## 6.4.0 - -### Major Analysis Improvements - -* Upgraded to allow analysis of Swift 6.3. - ## 6.3.3 No user-facing changes. diff --git a/swift/ql/lib/change-notes/released/6.4.0.md b/swift/ql/lib/change-notes/2026-04-06-swift-6.3.md similarity index 50% rename from swift/ql/lib/change-notes/released/6.4.0.md rename to swift/ql/lib/change-notes/2026-04-06-swift-6.3.md index e4b68cd2c9b8..512cb6139847 100644 --- a/swift/ql/lib/change-notes/released/6.4.0.md +++ b/swift/ql/lib/change-notes/2026-04-06-swift-6.3.md @@ -1,5 +1,4 @@ -## 6.4.0 - -### Major Analysis Improvements - +--- +category: majorAnalysis +--- * Upgraded to allow analysis of Swift 6.3. diff --git a/swift/ql/lib/codeql-pack.release.yml b/swift/ql/lib/codeql-pack.release.yml index 3098c5db6c37..83b98dcdbc38 100644 --- a/swift/ql/lib/codeql-pack.release.yml +++ b/swift/ql/lib/codeql-pack.release.yml @@ -1,2 +1,2 @@ --- -lastReleaseVersion: 6.4.0 +lastReleaseVersion: 6.3.3 diff --git a/swift/ql/lib/qlpack.yml b/swift/ql/lib/qlpack.yml index c8cc7f97a2b0..32c6458ddeae 100644 --- a/swift/ql/lib/qlpack.yml +++ b/swift/ql/lib/qlpack.yml @@ -1,5 +1,5 @@ name: codeql/swift-all -version: 6.4.0 +version: 6.3.4-dev groups: swift extractor: swift dbscheme: swift.dbscheme diff --git a/swift/ql/src/CHANGELOG.md b/swift/ql/src/CHANGELOG.md index af70cebc1e49..f880dc3366f8 100644 --- a/swift/ql/src/CHANGELOG.md +++ b/swift/ql/src/CHANGELOG.md @@ -1,7 +1,3 @@ -## 1.3.1 - -No user-facing changes. - ## 1.3.0 ### Query Metadata Changes diff --git a/swift/ql/src/change-notes/released/1.3.1.md b/swift/ql/src/change-notes/released/1.3.1.md deleted file mode 100644 index 8dd9964197cb..000000000000 --- a/swift/ql/src/change-notes/released/1.3.1.md +++ /dev/null @@ -1,3 +0,0 @@ -## 1.3.1 - -No user-facing changes. diff --git a/swift/ql/src/codeql-pack.release.yml b/swift/ql/src/codeql-pack.release.yml index e71b6d081f15..ec16350ed6fd 100644 --- a/swift/ql/src/codeql-pack.release.yml +++ b/swift/ql/src/codeql-pack.release.yml @@ -1,2 +1,2 @@ --- -lastReleaseVersion: 1.3.1 +lastReleaseVersion: 1.3.0 diff --git a/swift/ql/src/qlpack.yml b/swift/ql/src/qlpack.yml index 2bde0f317c79..5b6c7a6977a8 100644 --- a/swift/ql/src/qlpack.yml +++ b/swift/ql/src/qlpack.yml @@ -1,5 +1,5 @@ name: codeql/swift-queries -version: 1.3.1 +version: 1.3.1-dev groups: - swift - queries From 019ec0caf735dc92ee66f46ffa861564a17f3c27 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Mon, 27 Apr 2026 10:01:23 +0000 Subject: [PATCH 047/260] Release preparation for version 2.25.3 --- actions/ql/lib/CHANGELOG.md | 6 ++++++ .../0.4.34.md} | 7 ++++--- actions/ql/lib/codeql-pack.release.yml | 2 +- actions/ql/lib/qlpack.yml | 2 +- actions/ql/src/CHANGELOG.md | 10 ++++++++++ .../ql/src/change-notes/2026-04-02-permissions.md | 4 ---- .../0.6.26.md} | 13 +++++++++---- actions/ql/src/codeql-pack.release.yml | 2 +- actions/ql/src/qlpack.yml | 2 +- cpp/ql/lib/CHANGELOG.md | 11 +++++++++++ cpp/ql/lib/change-notes/2026-04-07-autoconf.md | 4 ---- cpp/ql/lib/change-notes/2026-04-14-throwing.md | 5 ----- cpp/ql/lib/change-notes/released/10.0.0.md | 10 ++++++++++ cpp/ql/lib/codeql-pack.release.yml | 2 +- cpp/ql/lib/qlpack.yml | 2 +- cpp/ql/src/CHANGELOG.md | 12 ++++++++++++ .../2026-03-23-implicit-function-declaration.md | 4 ---- .../2026-04-02-comparison-with-wider-type.md | 4 ---- .../2026-04-02-implicit-function-declaration.md | 4 ---- ...026-04-02-integer-multiplication-cast-to-long.md | 4 ---- .../2026-04-02-suspicious-add-sizeof.md | 4 ---- .../2026-04-02-wrong-type-format-argument.md | 4 ---- .../2026-04-16-add-model-for-aligned-alloc.md | 4 ---- cpp/ql/src/change-notes/released/1.6.1.md | 11 +++++++++++ cpp/ql/src/codeql-pack.release.yml | 2 +- cpp/ql/src/qlpack.yml | 2 +- csharp/ql/campaigns/Solorigate/lib/CHANGELOG.md | 4 ++++ .../Solorigate/lib/change-notes/released/1.7.65.md | 3 +++ .../Solorigate/lib/codeql-pack.release.yml | 2 +- csharp/ql/campaigns/Solorigate/lib/qlpack.yml | 2 +- csharp/ql/campaigns/Solorigate/src/CHANGELOG.md | 4 ++++ .../Solorigate/src/change-notes/released/1.7.65.md | 3 +++ .../Solorigate/src/codeql-pack.release.yml | 2 +- csharp/ql/campaigns/Solorigate/src/qlpack.yml | 2 +- csharp/ql/lib/CHANGELOG.md | 6 ++++++ .../{2026-04-01-getlrvalue.md => released/5.5.0.md} | 7 ++++--- csharp/ql/lib/codeql-pack.release.yml | 2 +- csharp/ql/lib/qlpack.yml | 2 +- csharp/ql/src/CHANGELOG.md | 9 +++++++++ .../1.7.1.md} | 7 ++++--- csharp/ql/src/codeql-pack.release.yml | 2 +- csharp/ql/src/qlpack.yml | 2 +- go/ql/consistency-queries/CHANGELOG.md | 4 ++++ .../change-notes/released/1.0.48.md | 3 +++ go/ql/consistency-queries/codeql-pack.release.yml | 2 +- go/ql/consistency-queries/qlpack.yml | 2 +- go/ql/lib/CHANGELOG.md | 4 ++++ go/ql/lib/change-notes/released/7.0.6.md | 3 +++ go/ql/lib/codeql-pack.release.yml | 2 +- go/ql/lib/qlpack.yml | 2 +- go/ql/src/CHANGELOG.md | 4 ++++ go/ql/src/change-notes/released/1.6.1.md | 3 +++ go/ql/src/codeql-pack.release.yml | 2 +- go/ql/src/qlpack.yml | 2 +- java/ql/lib/CHANGELOG.md | 6 ++++++ .../9.0.4.md} | 7 ++++--- java/ql/lib/codeql-pack.release.yml | 2 +- java/ql/lib/qlpack.yml | 2 +- java/ql/src/CHANGELOG.md | 4 ++++ java/ql/src/change-notes/released/1.11.1.md | 3 +++ java/ql/src/codeql-pack.release.yml | 2 +- java/ql/src/qlpack.yml | 2 +- javascript/ql/lib/CHANGELOG.md | 4 ++++ javascript/ql/lib/change-notes/released/2.6.28.md | 3 +++ javascript/ql/lib/codeql-pack.release.yml | 2 +- javascript/ql/lib/qlpack.yml | 2 +- javascript/ql/src/CHANGELOG.md | 7 +++++++ .../2.3.8.md} | 7 ++++--- javascript/ql/src/codeql-pack.release.yml | 2 +- javascript/ql/src/qlpack.yml | 2 +- misc/suite-helpers/CHANGELOG.md | 4 ++++ misc/suite-helpers/change-notes/released/1.0.48.md | 3 +++ misc/suite-helpers/codeql-pack.release.yml | 2 +- misc/suite-helpers/qlpack.yml | 2 +- python/ql/lib/CHANGELOG.md | 6 ++++++ .../7.0.5.md} | 6 +++--- python/ql/lib/codeql-pack.release.yml | 2 +- python/ql/lib/qlpack.yml | 2 +- python/ql/src/CHANGELOG.md | 6 ++++++ .../1.8.1.md} | 6 +++--- python/ql/src/codeql-pack.release.yml | 2 +- python/ql/src/qlpack.yml | 2 +- ruby/ql/lib/CHANGELOG.md | 4 ++++ ruby/ql/lib/change-notes/released/5.1.16.md | 3 +++ ruby/ql/lib/codeql-pack.release.yml | 2 +- ruby/ql/lib/qlpack.yml | 2 +- ruby/ql/src/CHANGELOG.md | 4 ++++ ruby/ql/src/change-notes/released/1.6.1.md | 3 +++ ruby/ql/src/codeql-pack.release.yml | 2 +- ruby/ql/src/qlpack.yml | 2 +- rust/ql/lib/CHANGELOG.md | 4 ++++ rust/ql/lib/change-notes/released/0.2.12.md | 3 +++ rust/ql/lib/codeql-pack.release.yml | 2 +- rust/ql/lib/qlpack.yml | 2 +- rust/ql/src/CHANGELOG.md | 4 ++++ rust/ql/src/change-notes/released/0.1.33.md | 3 +++ rust/ql/src/codeql-pack.release.yml | 2 +- rust/ql/src/qlpack.yml | 2 +- shared/concepts/CHANGELOG.md | 4 ++++ shared/concepts/change-notes/released/0.0.22.md | 3 +++ shared/concepts/codeql-pack.release.yml | 2 +- shared/concepts/qlpack.yml | 2 +- shared/controlflow/CHANGELOG.md | 4 ++++ shared/controlflow/change-notes/released/2.0.32.md | 3 +++ shared/controlflow/codeql-pack.release.yml | 2 +- shared/controlflow/qlpack.yml | 2 +- shared/dataflow/CHANGELOG.md | 4 ++++ shared/dataflow/change-notes/released/2.1.4.md | 3 +++ shared/dataflow/codeql-pack.release.yml | 2 +- shared/dataflow/qlpack.yml | 2 +- shared/mad/CHANGELOG.md | 4 ++++ shared/mad/change-notes/released/1.0.48.md | 3 +++ shared/mad/codeql-pack.release.yml | 2 +- shared/mad/qlpack.yml | 2 +- shared/quantum/CHANGELOG.md | 4 ++++ shared/quantum/change-notes/released/0.0.26.md | 3 +++ shared/quantum/codeql-pack.release.yml | 2 +- shared/quantum/qlpack.yml | 2 +- shared/rangeanalysis/CHANGELOG.md | 4 ++++ .../rangeanalysis/change-notes/released/1.0.48.md | 3 +++ shared/rangeanalysis/codeql-pack.release.yml | 2 +- shared/rangeanalysis/qlpack.yml | 2 +- shared/regex/CHANGELOG.md | 4 ++++ shared/regex/change-notes/released/1.0.48.md | 3 +++ shared/regex/codeql-pack.release.yml | 2 +- shared/regex/qlpack.yml | 2 +- shared/ssa/CHANGELOG.md | 4 ++++ shared/ssa/change-notes/released/2.0.24.md | 3 +++ shared/ssa/codeql-pack.release.yml | 2 +- shared/ssa/qlpack.yml | 2 +- shared/threat-models/CHANGELOG.md | 4 ++++ .../threat-models/change-notes/released/1.0.48.md | 3 +++ shared/threat-models/codeql-pack.release.yml | 2 +- shared/threat-models/qlpack.yml | 2 +- shared/tutorial/CHANGELOG.md | 4 ++++ shared/tutorial/change-notes/released/1.0.48.md | 3 +++ shared/tutorial/codeql-pack.release.yml | 2 +- shared/tutorial/qlpack.yml | 2 +- shared/typeflow/CHANGELOG.md | 4 ++++ shared/typeflow/change-notes/released/1.0.48.md | 3 +++ shared/typeflow/codeql-pack.release.yml | 2 +- shared/typeflow/qlpack.yml | 2 +- shared/typeinference/CHANGELOG.md | 4 ++++ .../typeinference/change-notes/released/0.0.29.md | 3 +++ shared/typeinference/codeql-pack.release.yml | 2 +- shared/typeinference/qlpack.yml | 2 +- shared/typetracking/CHANGELOG.md | 4 ++++ shared/typetracking/change-notes/released/2.0.32.md | 3 +++ shared/typetracking/codeql-pack.release.yml | 2 +- shared/typetracking/qlpack.yml | 2 +- shared/typos/CHANGELOG.md | 4 ++++ shared/typos/change-notes/released/1.0.48.md | 3 +++ shared/typos/codeql-pack.release.yml | 2 +- shared/typos/qlpack.yml | 2 +- shared/util/CHANGELOG.md | 4 ++++ shared/util/change-notes/released/2.0.35.md | 3 +++ shared/util/codeql-pack.release.yml | 2 +- shared/util/qlpack.yml | 2 +- shared/xml/CHANGELOG.md | 4 ++++ shared/xml/change-notes/released/1.0.48.md | 3 +++ shared/xml/codeql-pack.release.yml | 2 +- shared/xml/qlpack.yml | 2 +- shared/yaml/CHANGELOG.md | 4 ++++ shared/yaml/change-notes/released/1.0.48.md | 3 +++ shared/yaml/codeql-pack.release.yml | 2 +- shared/yaml/qlpack.yml | 2 +- swift/ql/lib/CHANGELOG.md | 6 ++++++ .../{2026-04-06-swift-6.3.md => released/6.4.0.md} | 7 ++++--- swift/ql/lib/codeql-pack.release.yml | 2 +- swift/ql/lib/qlpack.yml | 2 +- swift/ql/src/CHANGELOG.md | 4 ++++ swift/ql/src/change-notes/released/1.3.1.md | 3 +++ swift/ql/src/codeql-pack.release.yml | 2 +- swift/ql/src/qlpack.yml | 2 +- 174 files changed, 437 insertions(+), 151 deletions(-) rename actions/ql/lib/change-notes/{2026-03-26-remove-false-positive-sinks.md => released/0.4.34.md} (79%) delete mode 100644 actions/ql/src/change-notes/2026-04-02-permissions.md rename actions/ql/src/change-notes/{2026-04-02-alert-msg-poisoning.md => released/0.6.26.md} (64%) delete mode 100644 cpp/ql/lib/change-notes/2026-04-07-autoconf.md delete mode 100644 cpp/ql/lib/change-notes/2026-04-14-throwing.md create mode 100644 cpp/ql/lib/change-notes/released/10.0.0.md delete mode 100644 cpp/ql/src/change-notes/2026-03-23-implicit-function-declaration.md delete mode 100644 cpp/ql/src/change-notes/2026-04-02-comparison-with-wider-type.md delete mode 100644 cpp/ql/src/change-notes/2026-04-02-implicit-function-declaration.md delete mode 100644 cpp/ql/src/change-notes/2026-04-02-integer-multiplication-cast-to-long.md delete mode 100644 cpp/ql/src/change-notes/2026-04-02-suspicious-add-sizeof.md delete mode 100644 cpp/ql/src/change-notes/2026-04-02-wrong-type-format-argument.md delete mode 100644 cpp/ql/src/change-notes/2026-04-16-add-model-for-aligned-alloc.md create mode 100644 cpp/ql/src/change-notes/released/1.6.1.md create mode 100644 csharp/ql/campaigns/Solorigate/lib/change-notes/released/1.7.65.md create mode 100644 csharp/ql/campaigns/Solorigate/src/change-notes/released/1.7.65.md rename csharp/ql/lib/change-notes/{2026-04-01-getlrvalue.md => released/5.5.0.md} (79%) rename csharp/ql/src/change-notes/{2026-04-17-useless-to-string.md => released/1.7.1.md} (84%) create mode 100644 go/ql/consistency-queries/change-notes/released/1.0.48.md create mode 100644 go/ql/lib/change-notes/released/7.0.6.md create mode 100644 go/ql/src/change-notes/released/1.6.1.md rename java/ql/lib/change-notes/{2026-04-16-woodstox-xxe.md => released/9.0.4.md} (88%) create mode 100644 java/ql/src/change-notes/released/1.11.1.md create mode 100644 javascript/ql/lib/change-notes/released/2.6.28.md rename javascript/ql/src/change-notes/{2026-04-13-fastify-per-route-rate-limit.md => released/2.3.8.md} (69%) create mode 100644 misc/suite-helpers/change-notes/released/1.0.48.md rename python/ql/lib/change-notes/{2026-04-10-support-lazy-keyword.md => released/7.0.5.md} (81%) rename python/ql/src/change-notes/{2026-03-26-improve-bind-all-interfaces-query.md => released/1.8.1.md} (86%) create mode 100644 ruby/ql/lib/change-notes/released/5.1.16.md create mode 100644 ruby/ql/src/change-notes/released/1.6.1.md create mode 100644 rust/ql/lib/change-notes/released/0.2.12.md create mode 100644 rust/ql/src/change-notes/released/0.1.33.md create mode 100644 shared/concepts/change-notes/released/0.0.22.md create mode 100644 shared/controlflow/change-notes/released/2.0.32.md create mode 100644 shared/dataflow/change-notes/released/2.1.4.md create mode 100644 shared/mad/change-notes/released/1.0.48.md create mode 100644 shared/quantum/change-notes/released/0.0.26.md create mode 100644 shared/rangeanalysis/change-notes/released/1.0.48.md create mode 100644 shared/regex/change-notes/released/1.0.48.md create mode 100644 shared/ssa/change-notes/released/2.0.24.md create mode 100644 shared/threat-models/change-notes/released/1.0.48.md create mode 100644 shared/tutorial/change-notes/released/1.0.48.md create mode 100644 shared/typeflow/change-notes/released/1.0.48.md create mode 100644 shared/typeinference/change-notes/released/0.0.29.md create mode 100644 shared/typetracking/change-notes/released/2.0.32.md create mode 100644 shared/typos/change-notes/released/1.0.48.md create mode 100644 shared/util/change-notes/released/2.0.35.md create mode 100644 shared/xml/change-notes/released/1.0.48.md create mode 100644 shared/yaml/change-notes/released/1.0.48.md rename swift/ql/lib/change-notes/{2026-04-06-swift-6.3.md => released/6.4.0.md} (50%) create mode 100644 swift/ql/src/change-notes/released/1.3.1.md diff --git a/actions/ql/lib/CHANGELOG.md b/actions/ql/lib/CHANGELOG.md index d625bc6f619e..e84ba38d1801 100644 --- a/actions/ql/lib/CHANGELOG.md +++ b/actions/ql/lib/CHANGELOG.md @@ -1,3 +1,9 @@ +## 0.4.34 + +### Minor Analysis Improvements + +* Removed false positive injection sink models for the `context` input of `docker/build-push-action` and the `allowed-endpoints` input of `step-security/harden-runner`. + ## 0.4.33 No user-facing changes. diff --git a/actions/ql/lib/change-notes/2026-03-26-remove-false-positive-sinks.md b/actions/ql/lib/change-notes/released/0.4.34.md similarity index 79% rename from actions/ql/lib/change-notes/2026-03-26-remove-false-positive-sinks.md rename to actions/ql/lib/change-notes/released/0.4.34.md index 20ccc6d6c024..23b06db49679 100644 --- a/actions/ql/lib/change-notes/2026-03-26-remove-false-positive-sinks.md +++ b/actions/ql/lib/change-notes/released/0.4.34.md @@ -1,4 +1,5 @@ ---- -category: minorAnalysis ---- +## 0.4.34 + +### Minor Analysis Improvements + * Removed false positive injection sink models for the `context` input of `docker/build-push-action` and the `allowed-endpoints` input of `step-security/harden-runner`. diff --git a/actions/ql/lib/codeql-pack.release.yml b/actions/ql/lib/codeql-pack.release.yml index 7581fef2abf7..69fb16e4c39f 100644 --- a/actions/ql/lib/codeql-pack.release.yml +++ b/actions/ql/lib/codeql-pack.release.yml @@ -1,2 +1,2 @@ --- -lastReleaseVersion: 0.4.33 +lastReleaseVersion: 0.4.34 diff --git a/actions/ql/lib/qlpack.yml b/actions/ql/lib/qlpack.yml index fec274158000..b7acc7a39570 100644 --- a/actions/ql/lib/qlpack.yml +++ b/actions/ql/lib/qlpack.yml @@ -1,5 +1,5 @@ name: codeql/actions-all -version: 0.4.34-dev +version: 0.4.34 library: true warnOnImplicitThis: true dependencies: diff --git a/actions/ql/src/CHANGELOG.md b/actions/ql/src/CHANGELOG.md index d991237aca97..9dd234fd4836 100644 --- a/actions/ql/src/CHANGELOG.md +++ b/actions/ql/src/CHANGELOG.md @@ -1,3 +1,13 @@ +## 0.6.26 + +### Major Analysis Improvements + +* Fixed alert messages in `actions/artifact-poisoning/critical` and `actions/artifact-poisoning/medium` as they previously included a redundant placeholder in the alert message that would on occasion contain a long block of yml that makes the alert difficult to understand. Also clarify the wording to make it clear that it is not the artifact that is being poisoned, but instead a potentially untrusted artifact that is consumed. Also change the alert location to be the source, to align more with other queries reporting an artifact (e.g. zipslip) which is more useful. + +### Minor Analysis Improvements + +* The query `actions/missing-workflow-permissions` no longer produces false positive results on reusable workflows where all callers set permissions. + ## 0.6.25 No user-facing changes. diff --git a/actions/ql/src/change-notes/2026-04-02-permissions.md b/actions/ql/src/change-notes/2026-04-02-permissions.md deleted file mode 100644 index 2672a30ef870..000000000000 --- a/actions/ql/src/change-notes/2026-04-02-permissions.md +++ /dev/null @@ -1,4 +0,0 @@ ---- -category: minorAnalysis ---- -* The query `actions/missing-workflow-permissions` no longer produces false positive results on reusable workflows where all callers set permissions. \ No newline at end of file diff --git a/actions/ql/src/change-notes/2026-04-02-alert-msg-poisoning.md b/actions/ql/src/change-notes/released/0.6.26.md similarity index 64% rename from actions/ql/src/change-notes/2026-04-02-alert-msg-poisoning.md rename to actions/ql/src/change-notes/released/0.6.26.md index e2340f446a71..3147a666cdb7 100644 --- a/actions/ql/src/change-notes/2026-04-02-alert-msg-poisoning.md +++ b/actions/ql/src/change-notes/released/0.6.26.md @@ -1,4 +1,9 @@ ---- -category: majorAnalysis ---- -* Fixed alert messages in `actions/artifact-poisoning/critical` and `actions/artifact-poisoning/medium` as they previously included a redundant placeholder in the alert message that would on occasion contain a long block of yml that makes the alert difficult to understand. Also clarify the wording to make it clear that it is not the artifact that is being poisoned, but instead a potentially untrusted artifact that is consumed. Also change the alert location to be the source, to align more with other queries reporting an artifact (e.g. zipslip) which is more useful. \ No newline at end of file +## 0.6.26 + +### Major Analysis Improvements + +* Fixed alert messages in `actions/artifact-poisoning/critical` and `actions/artifact-poisoning/medium` as they previously included a redundant placeholder in the alert message that would on occasion contain a long block of yml that makes the alert difficult to understand. Also clarify the wording to make it clear that it is not the artifact that is being poisoned, but instead a potentially untrusted artifact that is consumed. Also change the alert location to be the source, to align more with other queries reporting an artifact (e.g. zipslip) which is more useful. + +### Minor Analysis Improvements + +* The query `actions/missing-workflow-permissions` no longer produces false positive results on reusable workflows where all callers set permissions. diff --git a/actions/ql/src/codeql-pack.release.yml b/actions/ql/src/codeql-pack.release.yml index b8288b392226..e83bac0046e3 100644 --- a/actions/ql/src/codeql-pack.release.yml +++ b/actions/ql/src/codeql-pack.release.yml @@ -1,2 +1,2 @@ --- -lastReleaseVersion: 0.6.25 +lastReleaseVersion: 0.6.26 diff --git a/actions/ql/src/qlpack.yml b/actions/ql/src/qlpack.yml index 3216a36f3d08..fc18f8052b23 100644 --- a/actions/ql/src/qlpack.yml +++ b/actions/ql/src/qlpack.yml @@ -1,5 +1,5 @@ name: codeql/actions-queries -version: 0.6.26-dev +version: 0.6.26 library: false warnOnImplicitThis: true groups: [actions, queries] diff --git a/cpp/ql/lib/CHANGELOG.md b/cpp/ql/lib/CHANGELOG.md index 5b5bc748c5dd..2cd1bcede35e 100644 --- a/cpp/ql/lib/CHANGELOG.md +++ b/cpp/ql/lib/CHANGELOG.md @@ -1,3 +1,14 @@ +## 10.0.0 + +### Breaking Changes + +* The deprecated `NonThrowingFunction` class has been removed, use `NonCppThrowingFunction` instead. +* The deprecated `ThrowingFunction` class has been removed, use `AlwaysSehThrowingFunction` instead. + +### New Features + +* Added a subclass `AutoconfConfigureTestFile` of `ConfigurationTestFile` that represents files created by GNU autoconf configure scripts to test the build configuration. + ## 9.0.0 ### Breaking Changes diff --git a/cpp/ql/lib/change-notes/2026-04-07-autoconf.md b/cpp/ql/lib/change-notes/2026-04-07-autoconf.md deleted file mode 100644 index 9f04417b8e25..000000000000 --- a/cpp/ql/lib/change-notes/2026-04-07-autoconf.md +++ /dev/null @@ -1,4 +0,0 @@ ---- -category: feature ---- -* Added a subclass `AutoconfConfigureTestFile` of `ConfigurationTestFile` that represents files created by GNU autoconf configure scripts to test the build configuration. diff --git a/cpp/ql/lib/change-notes/2026-04-14-throwing.md b/cpp/ql/lib/change-notes/2026-04-14-throwing.md deleted file mode 100644 index 6a15437e126e..000000000000 --- a/cpp/ql/lib/change-notes/2026-04-14-throwing.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -category: breaking ---- -* The deprecated `NonThrowingFunction` class has been removed, use `NonCppThrowingFunction` instead. -* The deprecated `ThrowingFunction` class has been removed, use `AlwaysSehThrowingFunction` instead. diff --git a/cpp/ql/lib/change-notes/released/10.0.0.md b/cpp/ql/lib/change-notes/released/10.0.0.md new file mode 100644 index 000000000000..af591bd1a0ad --- /dev/null +++ b/cpp/ql/lib/change-notes/released/10.0.0.md @@ -0,0 +1,10 @@ +## 10.0.0 + +### Breaking Changes + +* The deprecated `NonThrowingFunction` class has been removed, use `NonCppThrowingFunction` instead. +* The deprecated `ThrowingFunction` class has been removed, use `AlwaysSehThrowingFunction` instead. + +### New Features + +* Added a subclass `AutoconfConfigureTestFile` of `ConfigurationTestFile` that represents files created by GNU autoconf configure scripts to test the build configuration. diff --git a/cpp/ql/lib/codeql-pack.release.yml b/cpp/ql/lib/codeql-pack.release.yml index fd5f4a48b3c1..28758256b943 100644 --- a/cpp/ql/lib/codeql-pack.release.yml +++ b/cpp/ql/lib/codeql-pack.release.yml @@ -1,2 +1,2 @@ --- -lastReleaseVersion: 9.0.0 +lastReleaseVersion: 10.0.0 diff --git a/cpp/ql/lib/qlpack.yml b/cpp/ql/lib/qlpack.yml index dbf57d2b8699..4bcb59885fa7 100644 --- a/cpp/ql/lib/qlpack.yml +++ b/cpp/ql/lib/qlpack.yml @@ -1,5 +1,5 @@ name: codeql/cpp-all -version: 9.0.1-dev +version: 10.0.0 groups: cpp dbscheme: semmlecode.cpp.dbscheme extractor: cpp diff --git a/cpp/ql/src/CHANGELOG.md b/cpp/ql/src/CHANGELOG.md index a3f9d1836ade..aca22062e9f3 100644 --- a/cpp/ql/src/CHANGELOG.md +++ b/cpp/ql/src/CHANGELOG.md @@ -1,3 +1,15 @@ +## 1.6.1 + +### Minor Analysis Improvements + +* Added `AllocationFunction` models for `aligned_alloc`, `std::aligned_alloc`, and `bsl::aligned_alloc`. +* The "Comparison of narrow type with wide type in loop condition" (`cpp/comparison-with-wider-type`) query has been upgraded to `high` precision. This query will now run in the default code scanning suite. +* The "Implicit function declaration" (`cpp/implicit-function-declaration`) query has been upgraded to `high` precision. +* The "Multiplication result converted to larger type" (`cpp/integer-multiplication-cast-to-long`) query has been upgraded to `high` precision. This query will now run in the default code scanning suite. +* The "Suspicious add with sizeof" (`cpp/suspicious-add-sizeof`) query has been upgraded to `high` precision. This query will now run in the default code scanning suite. +* The "Wrong type of arguments to formatting function" (`cpp/wrong-type-format-argument`) query has been upgraded to `high` precision. This query will now run in the default code scanning suite. +* The "Implicit function declaration" (`cpp/implicit-function-declaration`) query no longer produces results on `build mode: none` databases. These results were found to be very noisy and fundamentally imprecise in this mode. + ## 1.6.0 ### Query Metadata Changes diff --git a/cpp/ql/src/change-notes/2026-03-23-implicit-function-declaration.md b/cpp/ql/src/change-notes/2026-03-23-implicit-function-declaration.md deleted file mode 100644 index 8c2c431ec24c..000000000000 --- a/cpp/ql/src/change-notes/2026-03-23-implicit-function-declaration.md +++ /dev/null @@ -1,4 +0,0 @@ ---- -category: minorAnalysis ---- -* The "Implicit function declaration" (`cpp/implicit-function-declaration`) query no longer produces results on `build mode: none` databases. These results were found to be very noisy and fundamentally imprecise in this mode. diff --git a/cpp/ql/src/change-notes/2026-04-02-comparison-with-wider-type.md b/cpp/ql/src/change-notes/2026-04-02-comparison-with-wider-type.md deleted file mode 100644 index c84e1dba404c..000000000000 --- a/cpp/ql/src/change-notes/2026-04-02-comparison-with-wider-type.md +++ /dev/null @@ -1,4 +0,0 @@ ---- -category: minorAnalysis ---- -* The "Comparison of narrow type with wide type in loop condition" (`cpp/comparison-with-wider-type`) query has been upgraded to `high` precision. This query will now run in the default code scanning suite. diff --git a/cpp/ql/src/change-notes/2026-04-02-implicit-function-declaration.md b/cpp/ql/src/change-notes/2026-04-02-implicit-function-declaration.md deleted file mode 100644 index dd0dbd4bc7d9..000000000000 --- a/cpp/ql/src/change-notes/2026-04-02-implicit-function-declaration.md +++ /dev/null @@ -1,4 +0,0 @@ ---- -category: minorAnalysis ---- -* The "Implicit function declaration" (`cpp/implicit-function-declaration`) query has been upgraded to `high` precision. diff --git a/cpp/ql/src/change-notes/2026-04-02-integer-multiplication-cast-to-long.md b/cpp/ql/src/change-notes/2026-04-02-integer-multiplication-cast-to-long.md deleted file mode 100644 index cd6796b408f0..000000000000 --- a/cpp/ql/src/change-notes/2026-04-02-integer-multiplication-cast-to-long.md +++ /dev/null @@ -1,4 +0,0 @@ ---- -category: minorAnalysis ---- -* The "Multiplication result converted to larger type" (`cpp/integer-multiplication-cast-to-long`) query has been upgraded to `high` precision. This query will now run in the default code scanning suite. diff --git a/cpp/ql/src/change-notes/2026-04-02-suspicious-add-sizeof.md b/cpp/ql/src/change-notes/2026-04-02-suspicious-add-sizeof.md deleted file mode 100644 index 040e89c13475..000000000000 --- a/cpp/ql/src/change-notes/2026-04-02-suspicious-add-sizeof.md +++ /dev/null @@ -1,4 +0,0 @@ ---- -category: minorAnalysis ---- -* The "Suspicious add with sizeof" (`cpp/suspicious-add-sizeof`) query has been upgraded to `high` precision. This query will now run in the default code scanning suite. diff --git a/cpp/ql/src/change-notes/2026-04-02-wrong-type-format-argument.md b/cpp/ql/src/change-notes/2026-04-02-wrong-type-format-argument.md deleted file mode 100644 index f8b9085dacc6..000000000000 --- a/cpp/ql/src/change-notes/2026-04-02-wrong-type-format-argument.md +++ /dev/null @@ -1,4 +0,0 @@ ---- -category: minorAnalysis ---- -* The "Wrong type of arguments to formatting function" (`cpp/wrong-type-format-argument`) query has been upgraded to `high` precision. This query will now run in the default code scanning suite. diff --git a/cpp/ql/src/change-notes/2026-04-16-add-model-for-aligned-alloc.md b/cpp/ql/src/change-notes/2026-04-16-add-model-for-aligned-alloc.md deleted file mode 100644 index af97cee7f9e4..000000000000 --- a/cpp/ql/src/change-notes/2026-04-16-add-model-for-aligned-alloc.md +++ /dev/null @@ -1,4 +0,0 @@ ---- -category: minorAnalysis ---- -* Added `AllocationFunction` models for `aligned_alloc`, `std::aligned_alloc`, and `bsl::aligned_alloc`. diff --git a/cpp/ql/src/change-notes/released/1.6.1.md b/cpp/ql/src/change-notes/released/1.6.1.md new file mode 100644 index 000000000000..4cba7e508bdb --- /dev/null +++ b/cpp/ql/src/change-notes/released/1.6.1.md @@ -0,0 +1,11 @@ +## 1.6.1 + +### Minor Analysis Improvements + +* Added `AllocationFunction` models for `aligned_alloc`, `std::aligned_alloc`, and `bsl::aligned_alloc`. +* The "Comparison of narrow type with wide type in loop condition" (`cpp/comparison-with-wider-type`) query has been upgraded to `high` precision. This query will now run in the default code scanning suite. +* The "Implicit function declaration" (`cpp/implicit-function-declaration`) query has been upgraded to `high` precision. +* The "Multiplication result converted to larger type" (`cpp/integer-multiplication-cast-to-long`) query has been upgraded to `high` precision. This query will now run in the default code scanning suite. +* The "Suspicious add with sizeof" (`cpp/suspicious-add-sizeof`) query has been upgraded to `high` precision. This query will now run in the default code scanning suite. +* The "Wrong type of arguments to formatting function" (`cpp/wrong-type-format-argument`) query has been upgraded to `high` precision. This query will now run in the default code scanning suite. +* The "Implicit function declaration" (`cpp/implicit-function-declaration`) query no longer produces results on `build mode: none` databases. These results were found to be very noisy and fundamentally imprecise in this mode. diff --git a/cpp/ql/src/codeql-pack.release.yml b/cpp/ql/src/codeql-pack.release.yml index c4f0b07d5336..ef7a789e0cf1 100644 --- a/cpp/ql/src/codeql-pack.release.yml +++ b/cpp/ql/src/codeql-pack.release.yml @@ -1,2 +1,2 @@ --- -lastReleaseVersion: 1.6.0 +lastReleaseVersion: 1.6.1 diff --git a/cpp/ql/src/qlpack.yml b/cpp/ql/src/qlpack.yml index 4648951796cc..8ec81ab6135e 100644 --- a/cpp/ql/src/qlpack.yml +++ b/cpp/ql/src/qlpack.yml @@ -1,5 +1,5 @@ name: codeql/cpp-queries -version: 1.6.1-dev +version: 1.6.1 groups: - cpp - queries diff --git a/csharp/ql/campaigns/Solorigate/lib/CHANGELOG.md b/csharp/ql/campaigns/Solorigate/lib/CHANGELOG.md index f7107d18c014..166a94bd88df 100644 --- a/csharp/ql/campaigns/Solorigate/lib/CHANGELOG.md +++ b/csharp/ql/campaigns/Solorigate/lib/CHANGELOG.md @@ -1,3 +1,7 @@ +## 1.7.65 + +No user-facing changes. + ## 1.7.64 No user-facing changes. diff --git a/csharp/ql/campaigns/Solorigate/lib/change-notes/released/1.7.65.md b/csharp/ql/campaigns/Solorigate/lib/change-notes/released/1.7.65.md new file mode 100644 index 000000000000..12bf5dad4b08 --- /dev/null +++ b/csharp/ql/campaigns/Solorigate/lib/change-notes/released/1.7.65.md @@ -0,0 +1,3 @@ +## 1.7.65 + +No user-facing changes. diff --git a/csharp/ql/campaigns/Solorigate/lib/codeql-pack.release.yml b/csharp/ql/campaigns/Solorigate/lib/codeql-pack.release.yml index f41e954c9ae2..bf581427d298 100644 --- a/csharp/ql/campaigns/Solorigate/lib/codeql-pack.release.yml +++ b/csharp/ql/campaigns/Solorigate/lib/codeql-pack.release.yml @@ -1,2 +1,2 @@ --- -lastReleaseVersion: 1.7.64 +lastReleaseVersion: 1.7.65 diff --git a/csharp/ql/campaigns/Solorigate/lib/qlpack.yml b/csharp/ql/campaigns/Solorigate/lib/qlpack.yml index 006ef851567f..d50eb024972c 100644 --- a/csharp/ql/campaigns/Solorigate/lib/qlpack.yml +++ b/csharp/ql/campaigns/Solorigate/lib/qlpack.yml @@ -1,5 +1,5 @@ name: codeql/csharp-solorigate-all -version: 1.7.65-dev +version: 1.7.65 groups: - csharp - solorigate diff --git a/csharp/ql/campaigns/Solorigate/src/CHANGELOG.md b/csharp/ql/campaigns/Solorigate/src/CHANGELOG.md index f7107d18c014..166a94bd88df 100644 --- a/csharp/ql/campaigns/Solorigate/src/CHANGELOG.md +++ b/csharp/ql/campaigns/Solorigate/src/CHANGELOG.md @@ -1,3 +1,7 @@ +## 1.7.65 + +No user-facing changes. + ## 1.7.64 No user-facing changes. diff --git a/csharp/ql/campaigns/Solorigate/src/change-notes/released/1.7.65.md b/csharp/ql/campaigns/Solorigate/src/change-notes/released/1.7.65.md new file mode 100644 index 000000000000..12bf5dad4b08 --- /dev/null +++ b/csharp/ql/campaigns/Solorigate/src/change-notes/released/1.7.65.md @@ -0,0 +1,3 @@ +## 1.7.65 + +No user-facing changes. diff --git a/csharp/ql/campaigns/Solorigate/src/codeql-pack.release.yml b/csharp/ql/campaigns/Solorigate/src/codeql-pack.release.yml index f41e954c9ae2..bf581427d298 100644 --- a/csharp/ql/campaigns/Solorigate/src/codeql-pack.release.yml +++ b/csharp/ql/campaigns/Solorigate/src/codeql-pack.release.yml @@ -1,2 +1,2 @@ --- -lastReleaseVersion: 1.7.64 +lastReleaseVersion: 1.7.65 diff --git a/csharp/ql/campaigns/Solorigate/src/qlpack.yml b/csharp/ql/campaigns/Solorigate/src/qlpack.yml index af5fd98f58af..bd70b1664ac5 100644 --- a/csharp/ql/campaigns/Solorigate/src/qlpack.yml +++ b/csharp/ql/campaigns/Solorigate/src/qlpack.yml @@ -1,5 +1,5 @@ name: codeql/csharp-solorigate-queries -version: 1.7.65-dev +version: 1.7.65 groups: - csharp - solorigate diff --git a/csharp/ql/lib/CHANGELOG.md b/csharp/ql/lib/CHANGELOG.md index 57d99a41480b..32cd8f33c650 100644 --- a/csharp/ql/lib/CHANGELOG.md +++ b/csharp/ql/lib/CHANGELOG.md @@ -1,3 +1,9 @@ +## 5.5.0 + +### Deprecated APIs + +* The predicates `get[L|R]Value` in the class `Assignment` have been deprecated. Use `get[Left|Right]Operand` instead. + ## 5.4.12 ### Minor Analysis Improvements diff --git a/csharp/ql/lib/change-notes/2026-04-01-getlrvalue.md b/csharp/ql/lib/change-notes/released/5.5.0.md similarity index 79% rename from csharp/ql/lib/change-notes/2026-04-01-getlrvalue.md rename to csharp/ql/lib/change-notes/released/5.5.0.md index da1a3d621481..b497d8ea51b4 100644 --- a/csharp/ql/lib/change-notes/2026-04-01-getlrvalue.md +++ b/csharp/ql/lib/change-notes/released/5.5.0.md @@ -1,4 +1,5 @@ ---- -category: deprecated ---- +## 5.5.0 + +### Deprecated APIs + * The predicates `get[L|R]Value` in the class `Assignment` have been deprecated. Use `get[Left|Right]Operand` instead. diff --git a/csharp/ql/lib/codeql-pack.release.yml b/csharp/ql/lib/codeql-pack.release.yml index 43db6e52c988..4b8cf9533c17 100644 --- a/csharp/ql/lib/codeql-pack.release.yml +++ b/csharp/ql/lib/codeql-pack.release.yml @@ -1,2 +1,2 @@ --- -lastReleaseVersion: 5.4.12 +lastReleaseVersion: 5.5.0 diff --git a/csharp/ql/lib/qlpack.yml b/csharp/ql/lib/qlpack.yml index 02c1ccd0d33c..f90aa010b895 100644 --- a/csharp/ql/lib/qlpack.yml +++ b/csharp/ql/lib/qlpack.yml @@ -1,5 +1,5 @@ name: codeql/csharp-all -version: 5.4.13-dev +version: 5.5.0 groups: csharp dbscheme: semmlecode.csharp.dbscheme extractor: csharp diff --git a/csharp/ql/src/CHANGELOG.md b/csharp/ql/src/CHANGELOG.md index fc0f8c58d794..cdab71341852 100644 --- a/csharp/ql/src/CHANGELOG.md +++ b/csharp/ql/src/CHANGELOG.md @@ -1,3 +1,12 @@ +## 1.7.1 + +### Minor Analysis Improvements + +* The query `cs/useless-tostring-call` has been updated to avoid false + positive results in calls to `StringBuilder.AppendLine` and calls of + the form `base.ToString()`. Moreover, the alert message has been + made more precise. + ## 1.7.0 ### Query Metadata Changes diff --git a/csharp/ql/src/change-notes/2026-04-17-useless-to-string.md b/csharp/ql/src/change-notes/released/1.7.1.md similarity index 84% rename from csharp/ql/src/change-notes/2026-04-17-useless-to-string.md rename to csharp/ql/src/change-notes/released/1.7.1.md index 9b4c81378c91..0b5df9629c67 100644 --- a/csharp/ql/src/change-notes/2026-04-17-useless-to-string.md +++ b/csharp/ql/src/change-notes/released/1.7.1.md @@ -1,6 +1,7 @@ ---- -category: minorAnalysis ---- +## 1.7.1 + +### Minor Analysis Improvements + * The query `cs/useless-tostring-call` has been updated to avoid false positive results in calls to `StringBuilder.AppendLine` and calls of the form `base.ToString()`. Moreover, the alert message has been diff --git a/csharp/ql/src/codeql-pack.release.yml b/csharp/ql/src/codeql-pack.release.yml index d1184cc67507..7bdec0d85c73 100644 --- a/csharp/ql/src/codeql-pack.release.yml +++ b/csharp/ql/src/codeql-pack.release.yml @@ -1,2 +1,2 @@ --- -lastReleaseVersion: 1.7.0 +lastReleaseVersion: 1.7.1 diff --git a/csharp/ql/src/qlpack.yml b/csharp/ql/src/qlpack.yml index 9ea341d1b38d..c7d8eace2961 100644 --- a/csharp/ql/src/qlpack.yml +++ b/csharp/ql/src/qlpack.yml @@ -1,5 +1,5 @@ name: codeql/csharp-queries -version: 1.7.1-dev +version: 1.7.1 groups: - csharp - queries diff --git a/go/ql/consistency-queries/CHANGELOG.md b/go/ql/consistency-queries/CHANGELOG.md index 34ae2fd22778..a3aa00d4872e 100644 --- a/go/ql/consistency-queries/CHANGELOG.md +++ b/go/ql/consistency-queries/CHANGELOG.md @@ -1,3 +1,7 @@ +## 1.0.48 + +No user-facing changes. + ## 1.0.47 No user-facing changes. diff --git a/go/ql/consistency-queries/change-notes/released/1.0.48.md b/go/ql/consistency-queries/change-notes/released/1.0.48.md new file mode 100644 index 000000000000..c484c6e8d6e2 --- /dev/null +++ b/go/ql/consistency-queries/change-notes/released/1.0.48.md @@ -0,0 +1,3 @@ +## 1.0.48 + +No user-facing changes. diff --git a/go/ql/consistency-queries/codeql-pack.release.yml b/go/ql/consistency-queries/codeql-pack.release.yml index dcec0f6405ab..6db79f2c3970 100644 --- a/go/ql/consistency-queries/codeql-pack.release.yml +++ b/go/ql/consistency-queries/codeql-pack.release.yml @@ -1,2 +1,2 @@ --- -lastReleaseVersion: 1.0.47 +lastReleaseVersion: 1.0.48 diff --git a/go/ql/consistency-queries/qlpack.yml b/go/ql/consistency-queries/qlpack.yml index c9dda4765dd0..2a03af961527 100644 --- a/go/ql/consistency-queries/qlpack.yml +++ b/go/ql/consistency-queries/qlpack.yml @@ -1,5 +1,5 @@ name: codeql-go-consistency-queries -version: 1.0.48-dev +version: 1.0.48 groups: - go - queries diff --git a/go/ql/lib/CHANGELOG.md b/go/ql/lib/CHANGELOG.md index 441d15a0d0e8..737d08654b89 100644 --- a/go/ql/lib/CHANGELOG.md +++ b/go/ql/lib/CHANGELOG.md @@ -1,3 +1,7 @@ +## 7.0.6 + +No user-facing changes. + ## 7.0.5 No user-facing changes. diff --git a/go/ql/lib/change-notes/released/7.0.6.md b/go/ql/lib/change-notes/released/7.0.6.md new file mode 100644 index 000000000000..ca9a73aa64c1 --- /dev/null +++ b/go/ql/lib/change-notes/released/7.0.6.md @@ -0,0 +1,3 @@ +## 7.0.6 + +No user-facing changes. diff --git a/go/ql/lib/codeql-pack.release.yml b/go/ql/lib/codeql-pack.release.yml index 2cff21d59fec..c7cff8c53789 100644 --- a/go/ql/lib/codeql-pack.release.yml +++ b/go/ql/lib/codeql-pack.release.yml @@ -1,2 +1,2 @@ --- -lastReleaseVersion: 7.0.5 +lastReleaseVersion: 7.0.6 diff --git a/go/ql/lib/qlpack.yml b/go/ql/lib/qlpack.yml index 2d7338a020dc..71a8c1c50f07 100644 --- a/go/ql/lib/qlpack.yml +++ b/go/ql/lib/qlpack.yml @@ -1,5 +1,5 @@ name: codeql/go-all -version: 7.0.6-dev +version: 7.0.6 groups: go dbscheme: go.dbscheme extractor: go diff --git a/go/ql/src/CHANGELOG.md b/go/ql/src/CHANGELOG.md index 2bc95cc19222..971d478d56e4 100644 --- a/go/ql/src/CHANGELOG.md +++ b/go/ql/src/CHANGELOG.md @@ -1,3 +1,7 @@ +## 1.6.1 + +No user-facing changes. + ## 1.6.0 ### Query Metadata Changes diff --git a/go/ql/src/change-notes/released/1.6.1.md b/go/ql/src/change-notes/released/1.6.1.md new file mode 100644 index 000000000000..898f6201ed73 --- /dev/null +++ b/go/ql/src/change-notes/released/1.6.1.md @@ -0,0 +1,3 @@ +## 1.6.1 + +No user-facing changes. diff --git a/go/ql/src/codeql-pack.release.yml b/go/ql/src/codeql-pack.release.yml index c4f0b07d5336..ef7a789e0cf1 100644 --- a/go/ql/src/codeql-pack.release.yml +++ b/go/ql/src/codeql-pack.release.yml @@ -1,2 +1,2 @@ --- -lastReleaseVersion: 1.6.0 +lastReleaseVersion: 1.6.1 diff --git a/go/ql/src/qlpack.yml b/go/ql/src/qlpack.yml index de4e5e06d381..3f3d4e7cc2aa 100644 --- a/go/ql/src/qlpack.yml +++ b/go/ql/src/qlpack.yml @@ -1,5 +1,5 @@ name: codeql/go-queries -version: 1.6.1-dev +version: 1.6.1 groups: - go - queries diff --git a/java/ql/lib/CHANGELOG.md b/java/ql/lib/CHANGELOG.md index caa1eaecb948..2d34c791c924 100644 --- a/java/ql/lib/CHANGELOG.md +++ b/java/ql/lib/CHANGELOG.md @@ -1,3 +1,9 @@ +## 9.0.4 + +### Minor Analysis Improvements + +* The queries "Resolving XML external entity in user-controlled data" (`java/xxe`) and "Resolving XML external entity in user-controlled data from local source" (`java/xxe-local`) now recognize sinks in the Woodstox StAX library when `com.ctc.wstx.stax.WstxInputFactory` or `org.codehaus.stax2.XMLInputFactory2` are used directly. + ## 9.0.3 ### Minor Analysis Improvements diff --git a/java/ql/lib/change-notes/2026-04-16-woodstox-xxe.md b/java/ql/lib/change-notes/released/9.0.4.md similarity index 88% rename from java/ql/lib/change-notes/2026-04-16-woodstox-xxe.md rename to java/ql/lib/change-notes/released/9.0.4.md index 891fc489e464..a54996349514 100644 --- a/java/ql/lib/change-notes/2026-04-16-woodstox-xxe.md +++ b/java/ql/lib/change-notes/released/9.0.4.md @@ -1,4 +1,5 @@ ---- -category: minorAnalysis ---- +## 9.0.4 + +### Minor Analysis Improvements + * The queries "Resolving XML external entity in user-controlled data" (`java/xxe`) and "Resolving XML external entity in user-controlled data from local source" (`java/xxe-local`) now recognize sinks in the Woodstox StAX library when `com.ctc.wstx.stax.WstxInputFactory` or `org.codehaus.stax2.XMLInputFactory2` are used directly. diff --git a/java/ql/lib/codeql-pack.release.yml b/java/ql/lib/codeql-pack.release.yml index 175658aaf53d..4bbe4f75b589 100644 --- a/java/ql/lib/codeql-pack.release.yml +++ b/java/ql/lib/codeql-pack.release.yml @@ -1,2 +1,2 @@ --- -lastReleaseVersion: 9.0.3 +lastReleaseVersion: 9.0.4 diff --git a/java/ql/lib/qlpack.yml b/java/ql/lib/qlpack.yml index 7f058cfb8d60..0a842a96b345 100644 --- a/java/ql/lib/qlpack.yml +++ b/java/ql/lib/qlpack.yml @@ -1,5 +1,5 @@ name: codeql/java-all -version: 9.0.4-dev +version: 9.0.4 groups: java dbscheme: config/semmlecode.dbscheme extractor: java diff --git a/java/ql/src/CHANGELOG.md b/java/ql/src/CHANGELOG.md index 2a2f8052092f..1b5d2bdad8a2 100644 --- a/java/ql/src/CHANGELOG.md +++ b/java/ql/src/CHANGELOG.md @@ -1,3 +1,7 @@ +## 1.11.1 + +No user-facing changes. + ## 1.11.0 ### Query Metadata Changes diff --git a/java/ql/src/change-notes/released/1.11.1.md b/java/ql/src/change-notes/released/1.11.1.md new file mode 100644 index 000000000000..f5047685223d --- /dev/null +++ b/java/ql/src/change-notes/released/1.11.1.md @@ -0,0 +1,3 @@ +## 1.11.1 + +No user-facing changes. diff --git a/java/ql/src/codeql-pack.release.yml b/java/ql/src/codeql-pack.release.yml index 276088d81dc8..4ae123153bf4 100644 --- a/java/ql/src/codeql-pack.release.yml +++ b/java/ql/src/codeql-pack.release.yml @@ -1,2 +1,2 @@ --- -lastReleaseVersion: 1.11.0 +lastReleaseVersion: 1.11.1 diff --git a/java/ql/src/qlpack.yml b/java/ql/src/qlpack.yml index 72b4a5f94e6c..49c552ec02ac 100644 --- a/java/ql/src/qlpack.yml +++ b/java/ql/src/qlpack.yml @@ -1,5 +1,5 @@ name: codeql/java-queries -version: 1.11.1-dev +version: 1.11.1 groups: - java - queries diff --git a/javascript/ql/lib/CHANGELOG.md b/javascript/ql/lib/CHANGELOG.md index fedb0b9b587f..77837f46c5e8 100644 --- a/javascript/ql/lib/CHANGELOG.md +++ b/javascript/ql/lib/CHANGELOG.md @@ -1,3 +1,7 @@ +## 2.6.28 + +No user-facing changes. + ## 2.6.27 No user-facing changes. diff --git a/javascript/ql/lib/change-notes/released/2.6.28.md b/javascript/ql/lib/change-notes/released/2.6.28.md new file mode 100644 index 000000000000..9c30dddcc0a7 --- /dev/null +++ b/javascript/ql/lib/change-notes/released/2.6.28.md @@ -0,0 +1,3 @@ +## 2.6.28 + +No user-facing changes. diff --git a/javascript/ql/lib/codeql-pack.release.yml b/javascript/ql/lib/codeql-pack.release.yml index 2ce86b10a85d..2456457874e2 100644 --- a/javascript/ql/lib/codeql-pack.release.yml +++ b/javascript/ql/lib/codeql-pack.release.yml @@ -1,2 +1,2 @@ --- -lastReleaseVersion: 2.6.27 +lastReleaseVersion: 2.6.28 diff --git a/javascript/ql/lib/qlpack.yml b/javascript/ql/lib/qlpack.yml index e0834c056d11..dabbc8bd755f 100644 --- a/javascript/ql/lib/qlpack.yml +++ b/javascript/ql/lib/qlpack.yml @@ -1,5 +1,5 @@ name: codeql/javascript-all -version: 2.6.28-dev +version: 2.6.28 groups: javascript dbscheme: semmlecode.javascript.dbscheme extractor: javascript diff --git a/javascript/ql/src/CHANGELOG.md b/javascript/ql/src/CHANGELOG.md index 29e6c8e8da32..9b122364ffae 100644 --- a/javascript/ql/src/CHANGELOG.md +++ b/javascript/ql/src/CHANGELOG.md @@ -1,3 +1,10 @@ +## 2.3.8 + +### Minor Analysis Improvements + +* The query `js/missing-rate-limiting` now takes Fastify per-route + rate limiting into account. + ## 2.3.7 No user-facing changes. diff --git a/javascript/ql/src/change-notes/2026-04-13-fastify-per-route-rate-limit.md b/javascript/ql/src/change-notes/released/2.3.8.md similarity index 69% rename from javascript/ql/src/change-notes/2026-04-13-fastify-per-route-rate-limit.md rename to javascript/ql/src/change-notes/released/2.3.8.md index 56d523885248..5ce5cbe2f244 100644 --- a/javascript/ql/src/change-notes/2026-04-13-fastify-per-route-rate-limit.md +++ b/javascript/ql/src/change-notes/released/2.3.8.md @@ -1,5 +1,6 @@ ---- -category: minorAnalysis ---- +## 2.3.8 + +### Minor Analysis Improvements + * The query `js/missing-rate-limiting` now takes Fastify per-route rate limiting into account. diff --git a/javascript/ql/src/codeql-pack.release.yml b/javascript/ql/src/codeql-pack.release.yml index 914cded08b38..c68b70cb8bea 100644 --- a/javascript/ql/src/codeql-pack.release.yml +++ b/javascript/ql/src/codeql-pack.release.yml @@ -1,2 +1,2 @@ --- -lastReleaseVersion: 2.3.7 +lastReleaseVersion: 2.3.8 diff --git a/javascript/ql/src/qlpack.yml b/javascript/ql/src/qlpack.yml index 117fae183e99..dd4f7c255a84 100644 --- a/javascript/ql/src/qlpack.yml +++ b/javascript/ql/src/qlpack.yml @@ -1,5 +1,5 @@ name: codeql/javascript-queries -version: 2.3.8-dev +version: 2.3.8 groups: - javascript - queries diff --git a/misc/suite-helpers/CHANGELOG.md b/misc/suite-helpers/CHANGELOG.md index 4b73639b1f75..897533f6450c 100644 --- a/misc/suite-helpers/CHANGELOG.md +++ b/misc/suite-helpers/CHANGELOG.md @@ -1,3 +1,7 @@ +## 1.0.48 + +No user-facing changes. + ## 1.0.47 No user-facing changes. diff --git a/misc/suite-helpers/change-notes/released/1.0.48.md b/misc/suite-helpers/change-notes/released/1.0.48.md new file mode 100644 index 000000000000..c484c6e8d6e2 --- /dev/null +++ b/misc/suite-helpers/change-notes/released/1.0.48.md @@ -0,0 +1,3 @@ +## 1.0.48 + +No user-facing changes. diff --git a/misc/suite-helpers/codeql-pack.release.yml b/misc/suite-helpers/codeql-pack.release.yml index dcec0f6405ab..6db79f2c3970 100644 --- a/misc/suite-helpers/codeql-pack.release.yml +++ b/misc/suite-helpers/codeql-pack.release.yml @@ -1,2 +1,2 @@ --- -lastReleaseVersion: 1.0.47 +lastReleaseVersion: 1.0.48 diff --git a/misc/suite-helpers/qlpack.yml b/misc/suite-helpers/qlpack.yml index 1d8538023420..c18ab2bb10ed 100644 --- a/misc/suite-helpers/qlpack.yml +++ b/misc/suite-helpers/qlpack.yml @@ -1,4 +1,4 @@ name: codeql/suite-helpers -version: 1.0.48-dev +version: 1.0.48 groups: shared warnOnImplicitThis: true diff --git a/python/ql/lib/CHANGELOG.md b/python/ql/lib/CHANGELOG.md index a6833ea8db3d..69fa60a66758 100644 --- a/python/ql/lib/CHANGELOG.md +++ b/python/ql/lib/CHANGELOG.md @@ -1,3 +1,9 @@ +## 7.0.5 + +### Minor Analysis Improvements + +- The Python extractor now supports the new `lazy import ...` and `lazy from ... import ...` (as defined in [PEP-810](https://peps.python.org/pep-0810/)) that will be part of Python 3.15. + ## 7.0.4 ### Bug Fixes diff --git a/python/ql/lib/change-notes/2026-04-10-support-lazy-keyword.md b/python/ql/lib/change-notes/released/7.0.5.md similarity index 81% rename from python/ql/lib/change-notes/2026-04-10-support-lazy-keyword.md rename to python/ql/lib/change-notes/released/7.0.5.md index 67de168ff47e..e205660dfde0 100644 --- a/python/ql/lib/change-notes/2026-04-10-support-lazy-keyword.md +++ b/python/ql/lib/change-notes/released/7.0.5.md @@ -1,5 +1,5 @@ ---- -category: minorAnalysis ---- +## 7.0.5 + +### Minor Analysis Improvements - The Python extractor now supports the new `lazy import ...` and `lazy from ... import ...` (as defined in [PEP-810](https://peps.python.org/pep-0810/)) that will be part of Python 3.15. diff --git a/python/ql/lib/codeql-pack.release.yml b/python/ql/lib/codeql-pack.release.yml index 6630ee1984ad..2cff21d59fec 100644 --- a/python/ql/lib/codeql-pack.release.yml +++ b/python/ql/lib/codeql-pack.release.yml @@ -1,2 +1,2 @@ --- -lastReleaseVersion: 7.0.4 +lastReleaseVersion: 7.0.5 diff --git a/python/ql/lib/qlpack.yml b/python/ql/lib/qlpack.yml index fe87c5761cfd..4dc63a6f9cbe 100644 --- a/python/ql/lib/qlpack.yml +++ b/python/ql/lib/qlpack.yml @@ -1,5 +1,5 @@ name: codeql/python-all -version: 7.0.5-dev +version: 7.0.5 groups: python dbscheme: semmlecode.python.dbscheme extractor: python diff --git a/python/ql/src/CHANGELOG.md b/python/ql/src/CHANGELOG.md index d5f5269c61d9..38018f098560 100644 --- a/python/ql/src/CHANGELOG.md +++ b/python/ql/src/CHANGELOG.md @@ -1,3 +1,9 @@ +## 1.8.1 + +### Minor Analysis Improvements + +- The `py/bind-socket-all-network-interfaces` query now uses the global data-flow library, leading to better precision and more results. Also, wrappers of `socket.socket` in the `eventlet` and `gevent` libraries are now also recognized as socket binding operations. + ## 1.8.0 ### Query Metadata Changes diff --git a/python/ql/src/change-notes/2026-03-26-improve-bind-all-interfaces-query.md b/python/ql/src/change-notes/released/1.8.1.md similarity index 86% rename from python/ql/src/change-notes/2026-03-26-improve-bind-all-interfaces-query.md rename to python/ql/src/change-notes/released/1.8.1.md index bc78b2b6f776..cafb58c11c9d 100644 --- a/python/ql/src/change-notes/2026-03-26-improve-bind-all-interfaces-query.md +++ b/python/ql/src/change-notes/released/1.8.1.md @@ -1,5 +1,5 @@ ---- -category: minorAnalysis ---- +## 1.8.1 + +### Minor Analysis Improvements - The `py/bind-socket-all-network-interfaces` query now uses the global data-flow library, leading to better precision and more results. Also, wrappers of `socket.socket` in the `eventlet` and `gevent` libraries are now also recognized as socket binding operations. diff --git a/python/ql/src/codeql-pack.release.yml b/python/ql/src/codeql-pack.release.yml index dc8a37cc443d..28a7c123ae84 100644 --- a/python/ql/src/codeql-pack.release.yml +++ b/python/ql/src/codeql-pack.release.yml @@ -1,2 +1,2 @@ --- -lastReleaseVersion: 1.8.0 +lastReleaseVersion: 1.8.1 diff --git a/python/ql/src/qlpack.yml b/python/ql/src/qlpack.yml index aa2a2364854f..b7d90a618e9f 100644 --- a/python/ql/src/qlpack.yml +++ b/python/ql/src/qlpack.yml @@ -1,5 +1,5 @@ name: codeql/python-queries -version: 1.8.1-dev +version: 1.8.1 groups: - python - queries diff --git a/ruby/ql/lib/CHANGELOG.md b/ruby/ql/lib/CHANGELOG.md index 40cb88d396f4..8315b6413696 100644 --- a/ruby/ql/lib/CHANGELOG.md +++ b/ruby/ql/lib/CHANGELOG.md @@ -1,3 +1,7 @@ +## 5.1.16 + +No user-facing changes. + ## 5.1.15 No user-facing changes. diff --git a/ruby/ql/lib/change-notes/released/5.1.16.md b/ruby/ql/lib/change-notes/released/5.1.16.md new file mode 100644 index 000000000000..42c9934011a3 --- /dev/null +++ b/ruby/ql/lib/change-notes/released/5.1.16.md @@ -0,0 +1,3 @@ +## 5.1.16 + +No user-facing changes. diff --git a/ruby/ql/lib/codeql-pack.release.yml b/ruby/ql/lib/codeql-pack.release.yml index 840348ed924e..735f742e9af7 100644 --- a/ruby/ql/lib/codeql-pack.release.yml +++ b/ruby/ql/lib/codeql-pack.release.yml @@ -1,2 +1,2 @@ --- -lastReleaseVersion: 5.1.15 +lastReleaseVersion: 5.1.16 diff --git a/ruby/ql/lib/qlpack.yml b/ruby/ql/lib/qlpack.yml index bbf4de409093..ef68525f982b 100644 --- a/ruby/ql/lib/qlpack.yml +++ b/ruby/ql/lib/qlpack.yml @@ -1,5 +1,5 @@ name: codeql/ruby-all -version: 5.1.16-dev +version: 5.1.16 groups: ruby extractor: ruby dbscheme: ruby.dbscheme diff --git a/ruby/ql/src/CHANGELOG.md b/ruby/ql/src/CHANGELOG.md index cb4c0ae7874a..5266fc1d5d91 100644 --- a/ruby/ql/src/CHANGELOG.md +++ b/ruby/ql/src/CHANGELOG.md @@ -1,3 +1,7 @@ +## 1.6.1 + +No user-facing changes. + ## 1.6.0 ### Query Metadata Changes diff --git a/ruby/ql/src/change-notes/released/1.6.1.md b/ruby/ql/src/change-notes/released/1.6.1.md new file mode 100644 index 000000000000..898f6201ed73 --- /dev/null +++ b/ruby/ql/src/change-notes/released/1.6.1.md @@ -0,0 +1,3 @@ +## 1.6.1 + +No user-facing changes. diff --git a/ruby/ql/src/codeql-pack.release.yml b/ruby/ql/src/codeql-pack.release.yml index c4f0b07d5336..ef7a789e0cf1 100644 --- a/ruby/ql/src/codeql-pack.release.yml +++ b/ruby/ql/src/codeql-pack.release.yml @@ -1,2 +1,2 @@ --- -lastReleaseVersion: 1.6.0 +lastReleaseVersion: 1.6.1 diff --git a/ruby/ql/src/qlpack.yml b/ruby/ql/src/qlpack.yml index 191689565de4..8964f6e51ac9 100644 --- a/ruby/ql/src/qlpack.yml +++ b/ruby/ql/src/qlpack.yml @@ -1,5 +1,5 @@ name: codeql/ruby-queries -version: 1.6.1-dev +version: 1.6.1 groups: - ruby - queries diff --git a/rust/ql/lib/CHANGELOG.md b/rust/ql/lib/CHANGELOG.md index eea5bd6e89d8..8e515660f290 100644 --- a/rust/ql/lib/CHANGELOG.md +++ b/rust/ql/lib/CHANGELOG.md @@ -1,3 +1,7 @@ +## 0.2.12 + +No user-facing changes. + ## 0.2.11 No user-facing changes. diff --git a/rust/ql/lib/change-notes/released/0.2.12.md b/rust/ql/lib/change-notes/released/0.2.12.md new file mode 100644 index 000000000000..590eb0cedd1f --- /dev/null +++ b/rust/ql/lib/change-notes/released/0.2.12.md @@ -0,0 +1,3 @@ +## 0.2.12 + +No user-facing changes. diff --git a/rust/ql/lib/codeql-pack.release.yml b/rust/ql/lib/codeql-pack.release.yml index 2ee635b99371..da1cea933934 100644 --- a/rust/ql/lib/codeql-pack.release.yml +++ b/rust/ql/lib/codeql-pack.release.yml @@ -1,2 +1,2 @@ --- -lastReleaseVersion: 0.2.11 +lastReleaseVersion: 0.2.12 diff --git a/rust/ql/lib/qlpack.yml b/rust/ql/lib/qlpack.yml index f50310200378..569930438abe 100644 --- a/rust/ql/lib/qlpack.yml +++ b/rust/ql/lib/qlpack.yml @@ -1,5 +1,5 @@ name: codeql/rust-all -version: 0.2.12-dev +version: 0.2.12 groups: rust extractor: rust dbscheme: rust.dbscheme diff --git a/rust/ql/src/CHANGELOG.md b/rust/ql/src/CHANGELOG.md index eab921bcbd6b..14034c9877d8 100644 --- a/rust/ql/src/CHANGELOG.md +++ b/rust/ql/src/CHANGELOG.md @@ -1,3 +1,7 @@ +## 0.1.33 + +No user-facing changes. + ## 0.1.32 ### Query Metadata Changes diff --git a/rust/ql/src/change-notes/released/0.1.33.md b/rust/ql/src/change-notes/released/0.1.33.md new file mode 100644 index 000000000000..5bd982edadd6 --- /dev/null +++ b/rust/ql/src/change-notes/released/0.1.33.md @@ -0,0 +1,3 @@ +## 0.1.33 + +No user-facing changes. diff --git a/rust/ql/src/codeql-pack.release.yml b/rust/ql/src/codeql-pack.release.yml index 21bbd752f27a..d9c9e819daa0 100644 --- a/rust/ql/src/codeql-pack.release.yml +++ b/rust/ql/src/codeql-pack.release.yml @@ -1,2 +1,2 @@ --- -lastReleaseVersion: 0.1.32 +lastReleaseVersion: 0.1.33 diff --git a/rust/ql/src/qlpack.yml b/rust/ql/src/qlpack.yml index f78504db76eb..0eefe2f39325 100644 --- a/rust/ql/src/qlpack.yml +++ b/rust/ql/src/qlpack.yml @@ -1,5 +1,5 @@ name: codeql/rust-queries -version: 0.1.33-dev +version: 0.1.33 groups: - rust - queries diff --git a/shared/concepts/CHANGELOG.md b/shared/concepts/CHANGELOG.md index 704ea3e8e019..e8b920847e90 100644 --- a/shared/concepts/CHANGELOG.md +++ b/shared/concepts/CHANGELOG.md @@ -1,3 +1,7 @@ +## 0.0.22 + +No user-facing changes. + ## 0.0.21 No user-facing changes. diff --git a/shared/concepts/change-notes/released/0.0.22.md b/shared/concepts/change-notes/released/0.0.22.md new file mode 100644 index 000000000000..002267474382 --- /dev/null +++ b/shared/concepts/change-notes/released/0.0.22.md @@ -0,0 +1,3 @@ +## 0.0.22 + +No user-facing changes. diff --git a/shared/concepts/codeql-pack.release.yml b/shared/concepts/codeql-pack.release.yml index 0c15c351db40..11aaa2243f57 100644 --- a/shared/concepts/codeql-pack.release.yml +++ b/shared/concepts/codeql-pack.release.yml @@ -1,2 +1,2 @@ --- -lastReleaseVersion: 0.0.21 +lastReleaseVersion: 0.0.22 diff --git a/shared/concepts/qlpack.yml b/shared/concepts/qlpack.yml index bf6e8b6018c0..2ce2978829e3 100644 --- a/shared/concepts/qlpack.yml +++ b/shared/concepts/qlpack.yml @@ -1,5 +1,5 @@ name: codeql/concepts -version: 0.0.22-dev +version: 0.0.22 groups: shared library: true dependencies: diff --git a/shared/controlflow/CHANGELOG.md b/shared/controlflow/CHANGELOG.md index baca729ddda8..df00c6146d8f 100644 --- a/shared/controlflow/CHANGELOG.md +++ b/shared/controlflow/CHANGELOG.md @@ -1,3 +1,7 @@ +## 2.0.32 + +No user-facing changes. + ## 2.0.31 No user-facing changes. diff --git a/shared/controlflow/change-notes/released/2.0.32.md b/shared/controlflow/change-notes/released/2.0.32.md new file mode 100644 index 000000000000..0930bb07f8c4 --- /dev/null +++ b/shared/controlflow/change-notes/released/2.0.32.md @@ -0,0 +1,3 @@ +## 2.0.32 + +No user-facing changes. diff --git a/shared/controlflow/codeql-pack.release.yml b/shared/controlflow/codeql-pack.release.yml index 783d47207cda..483a0d5db8ec 100644 --- a/shared/controlflow/codeql-pack.release.yml +++ b/shared/controlflow/codeql-pack.release.yml @@ -1,2 +1,2 @@ --- -lastReleaseVersion: 2.0.31 +lastReleaseVersion: 2.0.32 diff --git a/shared/controlflow/qlpack.yml b/shared/controlflow/qlpack.yml index 5573548794d0..b293853c73bd 100644 --- a/shared/controlflow/qlpack.yml +++ b/shared/controlflow/qlpack.yml @@ -1,5 +1,5 @@ name: codeql/controlflow -version: 2.0.32-dev +version: 2.0.32 groups: shared library: true dependencies: diff --git a/shared/dataflow/CHANGELOG.md b/shared/dataflow/CHANGELOG.md index 52c893f78e27..ed60239f3de3 100644 --- a/shared/dataflow/CHANGELOG.md +++ b/shared/dataflow/CHANGELOG.md @@ -1,3 +1,7 @@ +## 2.1.4 + +No user-facing changes. + ## 2.1.3 No user-facing changes. diff --git a/shared/dataflow/change-notes/released/2.1.4.md b/shared/dataflow/change-notes/released/2.1.4.md new file mode 100644 index 000000000000..a1035c6b05b2 --- /dev/null +++ b/shared/dataflow/change-notes/released/2.1.4.md @@ -0,0 +1,3 @@ +## 2.1.4 + +No user-facing changes. diff --git a/shared/dataflow/codeql-pack.release.yml b/shared/dataflow/codeql-pack.release.yml index 345fb0c73a44..896b46fda9bd 100644 --- a/shared/dataflow/codeql-pack.release.yml +++ b/shared/dataflow/codeql-pack.release.yml @@ -1,2 +1,2 @@ --- -lastReleaseVersion: 2.1.3 +lastReleaseVersion: 2.1.4 diff --git a/shared/dataflow/qlpack.yml b/shared/dataflow/qlpack.yml index 3b917def33db..e7778805c504 100644 --- a/shared/dataflow/qlpack.yml +++ b/shared/dataflow/qlpack.yml @@ -1,5 +1,5 @@ name: codeql/dataflow -version: 2.1.4-dev +version: 2.1.4 groups: shared library: true dependencies: diff --git a/shared/mad/CHANGELOG.md b/shared/mad/CHANGELOG.md index 1bffb976cf8c..ff868403d0c4 100644 --- a/shared/mad/CHANGELOG.md +++ b/shared/mad/CHANGELOG.md @@ -1,3 +1,7 @@ +## 1.0.48 + +No user-facing changes. + ## 1.0.47 No user-facing changes. diff --git a/shared/mad/change-notes/released/1.0.48.md b/shared/mad/change-notes/released/1.0.48.md new file mode 100644 index 000000000000..c484c6e8d6e2 --- /dev/null +++ b/shared/mad/change-notes/released/1.0.48.md @@ -0,0 +1,3 @@ +## 1.0.48 + +No user-facing changes. diff --git a/shared/mad/codeql-pack.release.yml b/shared/mad/codeql-pack.release.yml index dcec0f6405ab..6db79f2c3970 100644 --- a/shared/mad/codeql-pack.release.yml +++ b/shared/mad/codeql-pack.release.yml @@ -1,2 +1,2 @@ --- -lastReleaseVersion: 1.0.47 +lastReleaseVersion: 1.0.48 diff --git a/shared/mad/qlpack.yml b/shared/mad/qlpack.yml index b5583f8c55a2..920ffe102676 100644 --- a/shared/mad/qlpack.yml +++ b/shared/mad/qlpack.yml @@ -1,5 +1,5 @@ name: codeql/mad -version: 1.0.48-dev +version: 1.0.48 groups: shared library: true dependencies: diff --git a/shared/quantum/CHANGELOG.md b/shared/quantum/CHANGELOG.md index 8d524a11a093..eccc65c6041d 100644 --- a/shared/quantum/CHANGELOG.md +++ b/shared/quantum/CHANGELOG.md @@ -1,3 +1,7 @@ +## 0.0.26 + +No user-facing changes. + ## 0.0.25 No user-facing changes. diff --git a/shared/quantum/change-notes/released/0.0.26.md b/shared/quantum/change-notes/released/0.0.26.md new file mode 100644 index 000000000000..e6dc680cc11b --- /dev/null +++ b/shared/quantum/change-notes/released/0.0.26.md @@ -0,0 +1,3 @@ +## 0.0.26 + +No user-facing changes. diff --git a/shared/quantum/codeql-pack.release.yml b/shared/quantum/codeql-pack.release.yml index 6d0e80a50c3f..c576d2d7db2a 100644 --- a/shared/quantum/codeql-pack.release.yml +++ b/shared/quantum/codeql-pack.release.yml @@ -1,2 +1,2 @@ --- -lastReleaseVersion: 0.0.25 +lastReleaseVersion: 0.0.26 diff --git a/shared/quantum/qlpack.yml b/shared/quantum/qlpack.yml index a19e99ef7eaa..52c78c5f963f 100644 --- a/shared/quantum/qlpack.yml +++ b/shared/quantum/qlpack.yml @@ -1,5 +1,5 @@ name: codeql/quantum -version: 0.0.26-dev +version: 0.0.26 groups: shared library: true dependencies: diff --git a/shared/rangeanalysis/CHANGELOG.md b/shared/rangeanalysis/CHANGELOG.md index 0ab7487192cb..9afb612f18a4 100644 --- a/shared/rangeanalysis/CHANGELOG.md +++ b/shared/rangeanalysis/CHANGELOG.md @@ -1,3 +1,7 @@ +## 1.0.48 + +No user-facing changes. + ## 1.0.47 No user-facing changes. diff --git a/shared/rangeanalysis/change-notes/released/1.0.48.md b/shared/rangeanalysis/change-notes/released/1.0.48.md new file mode 100644 index 000000000000..c484c6e8d6e2 --- /dev/null +++ b/shared/rangeanalysis/change-notes/released/1.0.48.md @@ -0,0 +1,3 @@ +## 1.0.48 + +No user-facing changes. diff --git a/shared/rangeanalysis/codeql-pack.release.yml b/shared/rangeanalysis/codeql-pack.release.yml index dcec0f6405ab..6db79f2c3970 100644 --- a/shared/rangeanalysis/codeql-pack.release.yml +++ b/shared/rangeanalysis/codeql-pack.release.yml @@ -1,2 +1,2 @@ --- -lastReleaseVersion: 1.0.47 +lastReleaseVersion: 1.0.48 diff --git a/shared/rangeanalysis/qlpack.yml b/shared/rangeanalysis/qlpack.yml index d493350749ee..274a6160372e 100644 --- a/shared/rangeanalysis/qlpack.yml +++ b/shared/rangeanalysis/qlpack.yml @@ -1,5 +1,5 @@ name: codeql/rangeanalysis -version: 1.0.48-dev +version: 1.0.48 groups: shared library: true dependencies: diff --git a/shared/regex/CHANGELOG.md b/shared/regex/CHANGELOG.md index dd6f0c4cad6b..2375b7b56ab6 100644 --- a/shared/regex/CHANGELOG.md +++ b/shared/regex/CHANGELOG.md @@ -1,3 +1,7 @@ +## 1.0.48 + +No user-facing changes. + ## 1.0.47 No user-facing changes. diff --git a/shared/regex/change-notes/released/1.0.48.md b/shared/regex/change-notes/released/1.0.48.md new file mode 100644 index 000000000000..c484c6e8d6e2 --- /dev/null +++ b/shared/regex/change-notes/released/1.0.48.md @@ -0,0 +1,3 @@ +## 1.0.48 + +No user-facing changes. diff --git a/shared/regex/codeql-pack.release.yml b/shared/regex/codeql-pack.release.yml index dcec0f6405ab..6db79f2c3970 100644 --- a/shared/regex/codeql-pack.release.yml +++ b/shared/regex/codeql-pack.release.yml @@ -1,2 +1,2 @@ --- -lastReleaseVersion: 1.0.47 +lastReleaseVersion: 1.0.48 diff --git a/shared/regex/qlpack.yml b/shared/regex/qlpack.yml index 7b953dcff1cf..abe561fb37c0 100644 --- a/shared/regex/qlpack.yml +++ b/shared/regex/qlpack.yml @@ -1,5 +1,5 @@ name: codeql/regex -version: 1.0.48-dev +version: 1.0.48 groups: shared library: true dependencies: diff --git a/shared/ssa/CHANGELOG.md b/shared/ssa/CHANGELOG.md index 3573140fc410..dd21ba6d38b1 100644 --- a/shared/ssa/CHANGELOG.md +++ b/shared/ssa/CHANGELOG.md @@ -1,3 +1,7 @@ +## 2.0.24 + +No user-facing changes. + ## 2.0.23 No user-facing changes. diff --git a/shared/ssa/change-notes/released/2.0.24.md b/shared/ssa/change-notes/released/2.0.24.md new file mode 100644 index 000000000000..6547901c3343 --- /dev/null +++ b/shared/ssa/change-notes/released/2.0.24.md @@ -0,0 +1,3 @@ +## 2.0.24 + +No user-facing changes. diff --git a/shared/ssa/codeql-pack.release.yml b/shared/ssa/codeql-pack.release.yml index 1bd7e296a34f..1460df314d51 100644 --- a/shared/ssa/codeql-pack.release.yml +++ b/shared/ssa/codeql-pack.release.yml @@ -1,2 +1,2 @@ --- -lastReleaseVersion: 2.0.23 +lastReleaseVersion: 2.0.24 diff --git a/shared/ssa/qlpack.yml b/shared/ssa/qlpack.yml index a8fa9a114243..16d312b77aed 100644 --- a/shared/ssa/qlpack.yml +++ b/shared/ssa/qlpack.yml @@ -1,5 +1,5 @@ name: codeql/ssa -version: 2.0.24-dev +version: 2.0.24 groups: shared library: true dependencies: diff --git a/shared/threat-models/CHANGELOG.md b/shared/threat-models/CHANGELOG.md index 34ae2fd22778..a3aa00d4872e 100644 --- a/shared/threat-models/CHANGELOG.md +++ b/shared/threat-models/CHANGELOG.md @@ -1,3 +1,7 @@ +## 1.0.48 + +No user-facing changes. + ## 1.0.47 No user-facing changes. diff --git a/shared/threat-models/change-notes/released/1.0.48.md b/shared/threat-models/change-notes/released/1.0.48.md new file mode 100644 index 000000000000..c484c6e8d6e2 --- /dev/null +++ b/shared/threat-models/change-notes/released/1.0.48.md @@ -0,0 +1,3 @@ +## 1.0.48 + +No user-facing changes. diff --git a/shared/threat-models/codeql-pack.release.yml b/shared/threat-models/codeql-pack.release.yml index dcec0f6405ab..6db79f2c3970 100644 --- a/shared/threat-models/codeql-pack.release.yml +++ b/shared/threat-models/codeql-pack.release.yml @@ -1,2 +1,2 @@ --- -lastReleaseVersion: 1.0.47 +lastReleaseVersion: 1.0.48 diff --git a/shared/threat-models/qlpack.yml b/shared/threat-models/qlpack.yml index a4a367a990b3..2cf364fa3327 100644 --- a/shared/threat-models/qlpack.yml +++ b/shared/threat-models/qlpack.yml @@ -1,5 +1,5 @@ name: codeql/threat-models -version: 1.0.48-dev +version: 1.0.48 library: true groups: shared dataExtensions: diff --git a/shared/tutorial/CHANGELOG.md b/shared/tutorial/CHANGELOG.md index cf8f60d1d46a..9350e8a04eb7 100644 --- a/shared/tutorial/CHANGELOG.md +++ b/shared/tutorial/CHANGELOG.md @@ -1,3 +1,7 @@ +## 1.0.48 + +No user-facing changes. + ## 1.0.47 No user-facing changes. diff --git a/shared/tutorial/change-notes/released/1.0.48.md b/shared/tutorial/change-notes/released/1.0.48.md new file mode 100644 index 000000000000..c484c6e8d6e2 --- /dev/null +++ b/shared/tutorial/change-notes/released/1.0.48.md @@ -0,0 +1,3 @@ +## 1.0.48 + +No user-facing changes. diff --git a/shared/tutorial/codeql-pack.release.yml b/shared/tutorial/codeql-pack.release.yml index dcec0f6405ab..6db79f2c3970 100644 --- a/shared/tutorial/codeql-pack.release.yml +++ b/shared/tutorial/codeql-pack.release.yml @@ -1,2 +1,2 @@ --- -lastReleaseVersion: 1.0.47 +lastReleaseVersion: 1.0.48 diff --git a/shared/tutorial/qlpack.yml b/shared/tutorial/qlpack.yml index f961ccdc0eb2..5c9c6cdc47c2 100644 --- a/shared/tutorial/qlpack.yml +++ b/shared/tutorial/qlpack.yml @@ -1,7 +1,7 @@ name: codeql/tutorial description: Library for the CodeQL detective tutorials, helping new users learn to write CodeQL queries. -version: 1.0.48-dev +version: 1.0.48 groups: shared library: true warnOnImplicitThis: true diff --git a/shared/typeflow/CHANGELOG.md b/shared/typeflow/CHANGELOG.md index 8c5ee5e94864..035c2aa456e9 100644 --- a/shared/typeflow/CHANGELOG.md +++ b/shared/typeflow/CHANGELOG.md @@ -1,3 +1,7 @@ +## 1.0.48 + +No user-facing changes. + ## 1.0.47 No user-facing changes. diff --git a/shared/typeflow/change-notes/released/1.0.48.md b/shared/typeflow/change-notes/released/1.0.48.md new file mode 100644 index 000000000000..c484c6e8d6e2 --- /dev/null +++ b/shared/typeflow/change-notes/released/1.0.48.md @@ -0,0 +1,3 @@ +## 1.0.48 + +No user-facing changes. diff --git a/shared/typeflow/codeql-pack.release.yml b/shared/typeflow/codeql-pack.release.yml index dcec0f6405ab..6db79f2c3970 100644 --- a/shared/typeflow/codeql-pack.release.yml +++ b/shared/typeflow/codeql-pack.release.yml @@ -1,2 +1,2 @@ --- -lastReleaseVersion: 1.0.47 +lastReleaseVersion: 1.0.48 diff --git a/shared/typeflow/qlpack.yml b/shared/typeflow/qlpack.yml index f7e111d28fde..c9d4ec97a924 100644 --- a/shared/typeflow/qlpack.yml +++ b/shared/typeflow/qlpack.yml @@ -1,5 +1,5 @@ name: codeql/typeflow -version: 1.0.48-dev +version: 1.0.48 groups: shared library: true dependencies: diff --git a/shared/typeinference/CHANGELOG.md b/shared/typeinference/CHANGELOG.md index 7153b9314b18..c8b656e4f351 100644 --- a/shared/typeinference/CHANGELOG.md +++ b/shared/typeinference/CHANGELOG.md @@ -1,3 +1,7 @@ +## 0.0.29 + +No user-facing changes. + ## 0.0.28 No user-facing changes. diff --git a/shared/typeinference/change-notes/released/0.0.29.md b/shared/typeinference/change-notes/released/0.0.29.md new file mode 100644 index 000000000000..4428927c79d5 --- /dev/null +++ b/shared/typeinference/change-notes/released/0.0.29.md @@ -0,0 +1,3 @@ +## 0.0.29 + +No user-facing changes. diff --git a/shared/typeinference/codeql-pack.release.yml b/shared/typeinference/codeql-pack.release.yml index 3462db7d348f..c81f18131208 100644 --- a/shared/typeinference/codeql-pack.release.yml +++ b/shared/typeinference/codeql-pack.release.yml @@ -1,2 +1,2 @@ --- -lastReleaseVersion: 0.0.28 +lastReleaseVersion: 0.0.29 diff --git a/shared/typeinference/qlpack.yml b/shared/typeinference/qlpack.yml index 97c8df368959..57ed4da1080f 100644 --- a/shared/typeinference/qlpack.yml +++ b/shared/typeinference/qlpack.yml @@ -1,5 +1,5 @@ name: codeql/typeinference -version: 0.0.29-dev +version: 0.0.29 groups: shared library: true dependencies: diff --git a/shared/typetracking/CHANGELOG.md b/shared/typetracking/CHANGELOG.md index f779002267aa..75d8938e6a18 100644 --- a/shared/typetracking/CHANGELOG.md +++ b/shared/typetracking/CHANGELOG.md @@ -1,3 +1,7 @@ +## 2.0.32 + +No user-facing changes. + ## 2.0.31 No user-facing changes. diff --git a/shared/typetracking/change-notes/released/2.0.32.md b/shared/typetracking/change-notes/released/2.0.32.md new file mode 100644 index 000000000000..0930bb07f8c4 --- /dev/null +++ b/shared/typetracking/change-notes/released/2.0.32.md @@ -0,0 +1,3 @@ +## 2.0.32 + +No user-facing changes. diff --git a/shared/typetracking/codeql-pack.release.yml b/shared/typetracking/codeql-pack.release.yml index 783d47207cda..483a0d5db8ec 100644 --- a/shared/typetracking/codeql-pack.release.yml +++ b/shared/typetracking/codeql-pack.release.yml @@ -1,2 +1,2 @@ --- -lastReleaseVersion: 2.0.31 +lastReleaseVersion: 2.0.32 diff --git a/shared/typetracking/qlpack.yml b/shared/typetracking/qlpack.yml index aa0296875312..7d506ee6807c 100644 --- a/shared/typetracking/qlpack.yml +++ b/shared/typetracking/qlpack.yml @@ -1,5 +1,5 @@ name: codeql/typetracking -version: 2.0.32-dev +version: 2.0.32 groups: shared library: true dependencies: diff --git a/shared/typos/CHANGELOG.md b/shared/typos/CHANGELOG.md index b49f756fef03..35825098a633 100644 --- a/shared/typos/CHANGELOG.md +++ b/shared/typos/CHANGELOG.md @@ -1,3 +1,7 @@ +## 1.0.48 + +No user-facing changes. + ## 1.0.47 No user-facing changes. diff --git a/shared/typos/change-notes/released/1.0.48.md b/shared/typos/change-notes/released/1.0.48.md new file mode 100644 index 000000000000..c484c6e8d6e2 --- /dev/null +++ b/shared/typos/change-notes/released/1.0.48.md @@ -0,0 +1,3 @@ +## 1.0.48 + +No user-facing changes. diff --git a/shared/typos/codeql-pack.release.yml b/shared/typos/codeql-pack.release.yml index dcec0f6405ab..6db79f2c3970 100644 --- a/shared/typos/codeql-pack.release.yml +++ b/shared/typos/codeql-pack.release.yml @@ -1,2 +1,2 @@ --- -lastReleaseVersion: 1.0.47 +lastReleaseVersion: 1.0.48 diff --git a/shared/typos/qlpack.yml b/shared/typos/qlpack.yml index 37fc79bb1dfd..5ba6ce2b43d4 100644 --- a/shared/typos/qlpack.yml +++ b/shared/typos/qlpack.yml @@ -1,5 +1,5 @@ name: codeql/typos -version: 1.0.48-dev +version: 1.0.48 groups: shared library: true warnOnImplicitThis: true diff --git a/shared/util/CHANGELOG.md b/shared/util/CHANGELOG.md index cb3ac7bbe797..d1becc8ba2c1 100644 --- a/shared/util/CHANGELOG.md +++ b/shared/util/CHANGELOG.md @@ -1,3 +1,7 @@ +## 2.0.35 + +No user-facing changes. + ## 2.0.34 No user-facing changes. diff --git a/shared/util/change-notes/released/2.0.35.md b/shared/util/change-notes/released/2.0.35.md new file mode 100644 index 000000000000..526e1fc9f4ce --- /dev/null +++ b/shared/util/change-notes/released/2.0.35.md @@ -0,0 +1,3 @@ +## 2.0.35 + +No user-facing changes. diff --git a/shared/util/codeql-pack.release.yml b/shared/util/codeql-pack.release.yml index 339a3ce7c57a..27eb8ef8ecea 100644 --- a/shared/util/codeql-pack.release.yml +++ b/shared/util/codeql-pack.release.yml @@ -1,2 +1,2 @@ --- -lastReleaseVersion: 2.0.34 +lastReleaseVersion: 2.0.35 diff --git a/shared/util/qlpack.yml b/shared/util/qlpack.yml index 02e6241dccbf..1e765b5e42e4 100644 --- a/shared/util/qlpack.yml +++ b/shared/util/qlpack.yml @@ -1,5 +1,5 @@ name: codeql/util -version: 2.0.35-dev +version: 2.0.35 groups: shared library: true dependencies: null diff --git a/shared/xml/CHANGELOG.md b/shared/xml/CHANGELOG.md index 98702251320c..131bf7afd2a2 100644 --- a/shared/xml/CHANGELOG.md +++ b/shared/xml/CHANGELOG.md @@ -1,3 +1,7 @@ +## 1.0.48 + +No user-facing changes. + ## 1.0.47 No user-facing changes. diff --git a/shared/xml/change-notes/released/1.0.48.md b/shared/xml/change-notes/released/1.0.48.md new file mode 100644 index 000000000000..c484c6e8d6e2 --- /dev/null +++ b/shared/xml/change-notes/released/1.0.48.md @@ -0,0 +1,3 @@ +## 1.0.48 + +No user-facing changes. diff --git a/shared/xml/codeql-pack.release.yml b/shared/xml/codeql-pack.release.yml index dcec0f6405ab..6db79f2c3970 100644 --- a/shared/xml/codeql-pack.release.yml +++ b/shared/xml/codeql-pack.release.yml @@ -1,2 +1,2 @@ --- -lastReleaseVersion: 1.0.47 +lastReleaseVersion: 1.0.48 diff --git a/shared/xml/qlpack.yml b/shared/xml/qlpack.yml index 0d75859bdb9d..45ddcffaee77 100644 --- a/shared/xml/qlpack.yml +++ b/shared/xml/qlpack.yml @@ -1,5 +1,5 @@ name: codeql/xml -version: 1.0.48-dev +version: 1.0.48 groups: shared library: true dependencies: diff --git a/shared/yaml/CHANGELOG.md b/shared/yaml/CHANGELOG.md index 4a41f8ee9dfe..1c420b31355d 100644 --- a/shared/yaml/CHANGELOG.md +++ b/shared/yaml/CHANGELOG.md @@ -1,3 +1,7 @@ +## 1.0.48 + +No user-facing changes. + ## 1.0.47 No user-facing changes. diff --git a/shared/yaml/change-notes/released/1.0.48.md b/shared/yaml/change-notes/released/1.0.48.md new file mode 100644 index 000000000000..c484c6e8d6e2 --- /dev/null +++ b/shared/yaml/change-notes/released/1.0.48.md @@ -0,0 +1,3 @@ +## 1.0.48 + +No user-facing changes. diff --git a/shared/yaml/codeql-pack.release.yml b/shared/yaml/codeql-pack.release.yml index dcec0f6405ab..6db79f2c3970 100644 --- a/shared/yaml/codeql-pack.release.yml +++ b/shared/yaml/codeql-pack.release.yml @@ -1,2 +1,2 @@ --- -lastReleaseVersion: 1.0.47 +lastReleaseVersion: 1.0.48 diff --git a/shared/yaml/qlpack.yml b/shared/yaml/qlpack.yml index cfea54e0b5b5..461f97ac4dba 100644 --- a/shared/yaml/qlpack.yml +++ b/shared/yaml/qlpack.yml @@ -1,5 +1,5 @@ name: codeql/yaml -version: 1.0.48-dev +version: 1.0.48 groups: shared library: true warnOnImplicitThis: true diff --git a/swift/ql/lib/CHANGELOG.md b/swift/ql/lib/CHANGELOG.md index 3967689b9331..e2cb45f97693 100644 --- a/swift/ql/lib/CHANGELOG.md +++ b/swift/ql/lib/CHANGELOG.md @@ -1,3 +1,9 @@ +## 6.4.0 + +### Major Analysis Improvements + +* Upgraded to allow analysis of Swift 6.3. + ## 6.3.3 No user-facing changes. diff --git a/swift/ql/lib/change-notes/2026-04-06-swift-6.3.md b/swift/ql/lib/change-notes/released/6.4.0.md similarity index 50% rename from swift/ql/lib/change-notes/2026-04-06-swift-6.3.md rename to swift/ql/lib/change-notes/released/6.4.0.md index 512cb6139847..e4b68cd2c9b8 100644 --- a/swift/ql/lib/change-notes/2026-04-06-swift-6.3.md +++ b/swift/ql/lib/change-notes/released/6.4.0.md @@ -1,4 +1,5 @@ ---- -category: majorAnalysis ---- +## 6.4.0 + +### Major Analysis Improvements + * Upgraded to allow analysis of Swift 6.3. diff --git a/swift/ql/lib/codeql-pack.release.yml b/swift/ql/lib/codeql-pack.release.yml index 83b98dcdbc38..3098c5db6c37 100644 --- a/swift/ql/lib/codeql-pack.release.yml +++ b/swift/ql/lib/codeql-pack.release.yml @@ -1,2 +1,2 @@ --- -lastReleaseVersion: 6.3.3 +lastReleaseVersion: 6.4.0 diff --git a/swift/ql/lib/qlpack.yml b/swift/ql/lib/qlpack.yml index 32c6458ddeae..c8cc7f97a2b0 100644 --- a/swift/ql/lib/qlpack.yml +++ b/swift/ql/lib/qlpack.yml @@ -1,5 +1,5 @@ name: codeql/swift-all -version: 6.3.4-dev +version: 6.4.0 groups: swift extractor: swift dbscheme: swift.dbscheme diff --git a/swift/ql/src/CHANGELOG.md b/swift/ql/src/CHANGELOG.md index f880dc3366f8..af70cebc1e49 100644 --- a/swift/ql/src/CHANGELOG.md +++ b/swift/ql/src/CHANGELOG.md @@ -1,3 +1,7 @@ +## 1.3.1 + +No user-facing changes. + ## 1.3.0 ### Query Metadata Changes diff --git a/swift/ql/src/change-notes/released/1.3.1.md b/swift/ql/src/change-notes/released/1.3.1.md new file mode 100644 index 000000000000..8dd9964197cb --- /dev/null +++ b/swift/ql/src/change-notes/released/1.3.1.md @@ -0,0 +1,3 @@ +## 1.3.1 + +No user-facing changes. diff --git a/swift/ql/src/codeql-pack.release.yml b/swift/ql/src/codeql-pack.release.yml index ec16350ed6fd..e71b6d081f15 100644 --- a/swift/ql/src/codeql-pack.release.yml +++ b/swift/ql/src/codeql-pack.release.yml @@ -1,2 +1,2 @@ --- -lastReleaseVersion: 1.3.0 +lastReleaseVersion: 1.3.1 diff --git a/swift/ql/src/qlpack.yml b/swift/ql/src/qlpack.yml index 5b6c7a6977a8..2bde0f317c79 100644 --- a/swift/ql/src/qlpack.yml +++ b/swift/ql/src/qlpack.yml @@ -1,5 +1,5 @@ name: codeql/swift-queries -version: 1.3.1-dev +version: 1.3.1 groups: - swift - queries From 03c3b3f4c4aec8214ded9c5c0e6ca7a3c2b94bbe Mon Sep 17 00:00:00 2001 From: "Michael B. Gale" Date: Mon, 20 Apr 2026 11:40:32 +0200 Subject: [PATCH 048/260] Improve wording of `actions` note --- actions/ql/src/CHANGELOG.md | 4 ++-- actions/ql/src/change-notes/released/0.6.26.md | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/actions/ql/src/CHANGELOG.md b/actions/ql/src/CHANGELOG.md index 9dd234fd4836..96f8d2662060 100644 --- a/actions/ql/src/CHANGELOG.md +++ b/actions/ql/src/CHANGELOG.md @@ -2,7 +2,7 @@ ### Major Analysis Improvements -* Fixed alert messages in `actions/artifact-poisoning/critical` and `actions/artifact-poisoning/medium` as they previously included a redundant placeholder in the alert message that would on occasion contain a long block of yml that makes the alert difficult to understand. Also clarify the wording to make it clear that it is not the artifact that is being poisoned, but instead a potentially untrusted artifact that is consumed. Also change the alert location to be the source, to align more with other queries reporting an artifact (e.g. zipslip) which is more useful. +* Fixed alert messages in `actions/artifact-poisoning/critical` and `actions/artifact-poisoning/medium` as they previously included a redundant placeholder in the alert message that would on occasion contain a long block of yml that makes the alert difficult to understand. Also improved the wording to make it clearer that it is not the artifact that is being poisoned, but instead a potentially untrusted artifact that is consumed. Finally, changed the alert location to be the source, to align more with other queries reporting an artifact (e.g. zipslip) which is more useful. ### Minor Analysis Improvements @@ -173,7 +173,7 @@ No user-facing changes. * `actions/if-expression-always-true/critical` * `actions/if-expression-always-true/high` * `actions/unnecessary-use-of-advanced-config` - + * The following query has been moved from the `code-scanning` suite to the `security-extended` suite. Any existing alerts for this query will be closed automatically unless the analysis is configured to use the `security-extended` suite. diff --git a/actions/ql/src/change-notes/released/0.6.26.md b/actions/ql/src/change-notes/released/0.6.26.md index 3147a666cdb7..8bf43e639079 100644 --- a/actions/ql/src/change-notes/released/0.6.26.md +++ b/actions/ql/src/change-notes/released/0.6.26.md @@ -2,7 +2,7 @@ ### Major Analysis Improvements -* Fixed alert messages in `actions/artifact-poisoning/critical` and `actions/artifact-poisoning/medium` as they previously included a redundant placeholder in the alert message that would on occasion contain a long block of yml that makes the alert difficult to understand. Also clarify the wording to make it clear that it is not the artifact that is being poisoned, but instead a potentially untrusted artifact that is consumed. Also change the alert location to be the source, to align more with other queries reporting an artifact (e.g. zipslip) which is more useful. +* Fixed alert messages in `actions/artifact-poisoning/critical` and `actions/artifact-poisoning/medium` as they previously included a redundant placeholder in the alert message that would on occasion contain a long block of yml that makes the alert difficult to understand. Also improved the wording to make it clearer that it is not the artifact that is being poisoned, but instead a potentially untrusted artifact that is consumed. Finally, changed the alert location to be the source, to align more with other queries reporting an artifact (e.g. zipslip) which is more useful. ### Minor Analysis Improvements From f817bd4924665099296dec89614c62ebe401f32b Mon Sep 17 00:00:00 2001 From: "Michael B. Gale" Date: Mon, 20 Apr 2026 12:24:05 +0200 Subject: [PATCH 049/260] Merge changelog entries for `cpp/implicit-function-declaration` --- cpp/ql/src/CHANGELOG.md | 5 ++--- cpp/ql/src/change-notes/released/1.6.1.md | 3 +-- 2 files changed, 3 insertions(+), 5 deletions(-) diff --git a/cpp/ql/src/CHANGELOG.md b/cpp/ql/src/CHANGELOG.md index aca22062e9f3..80b9ad0e4753 100644 --- a/cpp/ql/src/CHANGELOG.md +++ b/cpp/ql/src/CHANGELOG.md @@ -4,11 +4,10 @@ * Added `AllocationFunction` models for `aligned_alloc`, `std::aligned_alloc`, and `bsl::aligned_alloc`. * The "Comparison of narrow type with wide type in loop condition" (`cpp/comparison-with-wider-type`) query has been upgraded to `high` precision. This query will now run in the default code scanning suite. -* The "Implicit function declaration" (`cpp/implicit-function-declaration`) query has been upgraded to `high` precision. * The "Multiplication result converted to larger type" (`cpp/integer-multiplication-cast-to-long`) query has been upgraded to `high` precision. This query will now run in the default code scanning suite. * The "Suspicious add with sizeof" (`cpp/suspicious-add-sizeof`) query has been upgraded to `high` precision. This query will now run in the default code scanning suite. * The "Wrong type of arguments to formatting function" (`cpp/wrong-type-format-argument`) query has been upgraded to `high` precision. This query will now run in the default code scanning suite. -* The "Implicit function declaration" (`cpp/implicit-function-declaration`) query no longer produces results on `build mode: none` databases. These results were found to be very noisy and fundamentally imprecise in this mode. +* The "Implicit function declaration" (`cpp/implicit-function-declaration`) query has been upgraded to `high` precision. However, for `build mode: none` databases, it no longer produces any results. The results in this mode were found to be very noisy and fundamentally imprecise. ## 1.6.0 @@ -367,7 +366,7 @@ No user-facing changes. ### Minor Analysis Improvements * The "non-constant format string" query (`cpp/non-constant-format`) has been updated to produce fewer false positives. -* Added dataflow models for the `gettext` function variants. +* Added dataflow models for the `gettext` function variants. ## 0.9.4 diff --git a/cpp/ql/src/change-notes/released/1.6.1.md b/cpp/ql/src/change-notes/released/1.6.1.md index 4cba7e508bdb..83781b87c584 100644 --- a/cpp/ql/src/change-notes/released/1.6.1.md +++ b/cpp/ql/src/change-notes/released/1.6.1.md @@ -4,8 +4,7 @@ * Added `AllocationFunction` models for `aligned_alloc`, `std::aligned_alloc`, and `bsl::aligned_alloc`. * The "Comparison of narrow type with wide type in loop condition" (`cpp/comparison-with-wider-type`) query has been upgraded to `high` precision. This query will now run in the default code scanning suite. -* The "Implicit function declaration" (`cpp/implicit-function-declaration`) query has been upgraded to `high` precision. * The "Multiplication result converted to larger type" (`cpp/integer-multiplication-cast-to-long`) query has been upgraded to `high` precision. This query will now run in the default code scanning suite. * The "Suspicious add with sizeof" (`cpp/suspicious-add-sizeof`) query has been upgraded to `high` precision. This query will now run in the default code scanning suite. * The "Wrong type of arguments to formatting function" (`cpp/wrong-type-format-argument`) query has been upgraded to `high` precision. This query will now run in the default code scanning suite. -* The "Implicit function declaration" (`cpp/implicit-function-declaration`) query no longer produces results on `build mode: none` databases. These results were found to be very noisy and fundamentally imprecise in this mode. +* The "Implicit function declaration" (`cpp/implicit-function-declaration`) query has been upgraded to `high` precision. However, for `build mode: none` databases, it no longer produces any results. The results in this mode were found to be very noisy and fundamentally imprecise. From 24edae5e7499ad1a99eb2e2045599f9c7713f196 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Mon, 27 Apr 2026 10:27:45 +0000 Subject: [PATCH 050/260] Post-release preparation for codeql-cli-2.25.3 --- actions/ql/lib/qlpack.yml | 2 +- actions/ql/src/qlpack.yml | 2 +- cpp/ql/lib/qlpack.yml | 2 +- cpp/ql/src/qlpack.yml | 2 +- csharp/ql/campaigns/Solorigate/lib/qlpack.yml | 2 +- csharp/ql/campaigns/Solorigate/src/qlpack.yml | 2 +- csharp/ql/lib/qlpack.yml | 2 +- csharp/ql/src/qlpack.yml | 2 +- go/ql/consistency-queries/qlpack.yml | 2 +- go/ql/lib/qlpack.yml | 2 +- go/ql/src/qlpack.yml | 2 +- java/ql/lib/qlpack.yml | 2 +- java/ql/src/qlpack.yml | 2 +- javascript/ql/lib/qlpack.yml | 2 +- javascript/ql/src/qlpack.yml | 2 +- misc/suite-helpers/qlpack.yml | 2 +- python/ql/lib/qlpack.yml | 2 +- python/ql/src/qlpack.yml | 2 +- ruby/ql/lib/qlpack.yml | 2 +- ruby/ql/src/qlpack.yml | 2 +- rust/ql/lib/qlpack.yml | 2 +- rust/ql/src/qlpack.yml | 2 +- shared/concepts/qlpack.yml | 2 +- shared/controlflow/qlpack.yml | 2 +- shared/dataflow/qlpack.yml | 2 +- shared/mad/qlpack.yml | 2 +- shared/quantum/qlpack.yml | 2 +- shared/rangeanalysis/qlpack.yml | 2 +- shared/regex/qlpack.yml | 2 +- shared/ssa/qlpack.yml | 2 +- shared/threat-models/qlpack.yml | 2 +- shared/tutorial/qlpack.yml | 2 +- shared/typeflow/qlpack.yml | 2 +- shared/typeinference/qlpack.yml | 2 +- shared/typetracking/qlpack.yml | 2 +- shared/typos/qlpack.yml | 2 +- shared/util/qlpack.yml | 2 +- shared/xml/qlpack.yml | 2 +- shared/yaml/qlpack.yml | 2 +- swift/ql/lib/qlpack.yml | 2 +- swift/ql/src/qlpack.yml | 2 +- 41 files changed, 41 insertions(+), 41 deletions(-) diff --git a/actions/ql/lib/qlpack.yml b/actions/ql/lib/qlpack.yml index b7acc7a39570..6e78fc546b33 100644 --- a/actions/ql/lib/qlpack.yml +++ b/actions/ql/lib/qlpack.yml @@ -1,5 +1,5 @@ name: codeql/actions-all -version: 0.4.34 +version: 0.4.35-dev library: true warnOnImplicitThis: true dependencies: diff --git a/actions/ql/src/qlpack.yml b/actions/ql/src/qlpack.yml index fc18f8052b23..c815afc498c8 100644 --- a/actions/ql/src/qlpack.yml +++ b/actions/ql/src/qlpack.yml @@ -1,5 +1,5 @@ name: codeql/actions-queries -version: 0.6.26 +version: 0.6.27-dev library: false warnOnImplicitThis: true groups: [actions, queries] diff --git a/cpp/ql/lib/qlpack.yml b/cpp/ql/lib/qlpack.yml index 4bcb59885fa7..8a9d60a7fa94 100644 --- a/cpp/ql/lib/qlpack.yml +++ b/cpp/ql/lib/qlpack.yml @@ -1,5 +1,5 @@ name: codeql/cpp-all -version: 10.0.0 +version: 10.0.1-dev groups: cpp dbscheme: semmlecode.cpp.dbscheme extractor: cpp diff --git a/cpp/ql/src/qlpack.yml b/cpp/ql/src/qlpack.yml index 8ec81ab6135e..714167434c8a 100644 --- a/cpp/ql/src/qlpack.yml +++ b/cpp/ql/src/qlpack.yml @@ -1,5 +1,5 @@ name: codeql/cpp-queries -version: 1.6.1 +version: 1.6.2-dev groups: - cpp - queries diff --git a/csharp/ql/campaigns/Solorigate/lib/qlpack.yml b/csharp/ql/campaigns/Solorigate/lib/qlpack.yml index d50eb024972c..9d0e0ffd4f96 100644 --- a/csharp/ql/campaigns/Solorigate/lib/qlpack.yml +++ b/csharp/ql/campaigns/Solorigate/lib/qlpack.yml @@ -1,5 +1,5 @@ name: codeql/csharp-solorigate-all -version: 1.7.65 +version: 1.7.66-dev groups: - csharp - solorigate diff --git a/csharp/ql/campaigns/Solorigate/src/qlpack.yml b/csharp/ql/campaigns/Solorigate/src/qlpack.yml index bd70b1664ac5..f5203f4e4434 100644 --- a/csharp/ql/campaigns/Solorigate/src/qlpack.yml +++ b/csharp/ql/campaigns/Solorigate/src/qlpack.yml @@ -1,5 +1,5 @@ name: codeql/csharp-solorigate-queries -version: 1.7.65 +version: 1.7.66-dev groups: - csharp - solorigate diff --git a/csharp/ql/lib/qlpack.yml b/csharp/ql/lib/qlpack.yml index f90aa010b895..7c906e033ad6 100644 --- a/csharp/ql/lib/qlpack.yml +++ b/csharp/ql/lib/qlpack.yml @@ -1,5 +1,5 @@ name: codeql/csharp-all -version: 5.5.0 +version: 5.5.1-dev groups: csharp dbscheme: semmlecode.csharp.dbscheme extractor: csharp diff --git a/csharp/ql/src/qlpack.yml b/csharp/ql/src/qlpack.yml index c7d8eace2961..25b04cf2dc66 100644 --- a/csharp/ql/src/qlpack.yml +++ b/csharp/ql/src/qlpack.yml @@ -1,5 +1,5 @@ name: codeql/csharp-queries -version: 1.7.1 +version: 1.7.2-dev groups: - csharp - queries diff --git a/go/ql/consistency-queries/qlpack.yml b/go/ql/consistency-queries/qlpack.yml index 2a03af961527..a82ec95583b6 100644 --- a/go/ql/consistency-queries/qlpack.yml +++ b/go/ql/consistency-queries/qlpack.yml @@ -1,5 +1,5 @@ name: codeql-go-consistency-queries -version: 1.0.48 +version: 1.0.49-dev groups: - go - queries diff --git a/go/ql/lib/qlpack.yml b/go/ql/lib/qlpack.yml index 71a8c1c50f07..e191e0da6884 100644 --- a/go/ql/lib/qlpack.yml +++ b/go/ql/lib/qlpack.yml @@ -1,5 +1,5 @@ name: codeql/go-all -version: 7.0.6 +version: 7.0.7-dev groups: go dbscheme: go.dbscheme extractor: go diff --git a/go/ql/src/qlpack.yml b/go/ql/src/qlpack.yml index 3f3d4e7cc2aa..fa7e934382a8 100644 --- a/go/ql/src/qlpack.yml +++ b/go/ql/src/qlpack.yml @@ -1,5 +1,5 @@ name: codeql/go-queries -version: 1.6.1 +version: 1.6.2-dev groups: - go - queries diff --git a/java/ql/lib/qlpack.yml b/java/ql/lib/qlpack.yml index 0a842a96b345..efa1d011ea57 100644 --- a/java/ql/lib/qlpack.yml +++ b/java/ql/lib/qlpack.yml @@ -1,5 +1,5 @@ name: codeql/java-all -version: 9.0.4 +version: 9.0.5-dev groups: java dbscheme: config/semmlecode.dbscheme extractor: java diff --git a/java/ql/src/qlpack.yml b/java/ql/src/qlpack.yml index 49c552ec02ac..2f2233460bac 100644 --- a/java/ql/src/qlpack.yml +++ b/java/ql/src/qlpack.yml @@ -1,5 +1,5 @@ name: codeql/java-queries -version: 1.11.1 +version: 1.11.2-dev groups: - java - queries diff --git a/javascript/ql/lib/qlpack.yml b/javascript/ql/lib/qlpack.yml index dabbc8bd755f..b62abbbe1016 100644 --- a/javascript/ql/lib/qlpack.yml +++ b/javascript/ql/lib/qlpack.yml @@ -1,5 +1,5 @@ name: codeql/javascript-all -version: 2.6.28 +version: 2.6.29-dev groups: javascript dbscheme: semmlecode.javascript.dbscheme extractor: javascript diff --git a/javascript/ql/src/qlpack.yml b/javascript/ql/src/qlpack.yml index dd4f7c255a84..9081791d0e0d 100644 --- a/javascript/ql/src/qlpack.yml +++ b/javascript/ql/src/qlpack.yml @@ -1,5 +1,5 @@ name: codeql/javascript-queries -version: 2.3.8 +version: 2.3.9-dev groups: - javascript - queries diff --git a/misc/suite-helpers/qlpack.yml b/misc/suite-helpers/qlpack.yml index c18ab2bb10ed..778284fbe9a3 100644 --- a/misc/suite-helpers/qlpack.yml +++ b/misc/suite-helpers/qlpack.yml @@ -1,4 +1,4 @@ name: codeql/suite-helpers -version: 1.0.48 +version: 1.0.49-dev groups: shared warnOnImplicitThis: true diff --git a/python/ql/lib/qlpack.yml b/python/ql/lib/qlpack.yml index 4dc63a6f9cbe..8564a098594b 100644 --- a/python/ql/lib/qlpack.yml +++ b/python/ql/lib/qlpack.yml @@ -1,5 +1,5 @@ name: codeql/python-all -version: 7.0.5 +version: 7.0.6-dev groups: python dbscheme: semmlecode.python.dbscheme extractor: python diff --git a/python/ql/src/qlpack.yml b/python/ql/src/qlpack.yml index b7d90a618e9f..2d99bcd0c7a3 100644 --- a/python/ql/src/qlpack.yml +++ b/python/ql/src/qlpack.yml @@ -1,5 +1,5 @@ name: codeql/python-queries -version: 1.8.1 +version: 1.8.2-dev groups: - python - queries diff --git a/ruby/ql/lib/qlpack.yml b/ruby/ql/lib/qlpack.yml index ef68525f982b..1ac5090098a3 100644 --- a/ruby/ql/lib/qlpack.yml +++ b/ruby/ql/lib/qlpack.yml @@ -1,5 +1,5 @@ name: codeql/ruby-all -version: 5.1.16 +version: 5.1.17-dev groups: ruby extractor: ruby dbscheme: ruby.dbscheme diff --git a/ruby/ql/src/qlpack.yml b/ruby/ql/src/qlpack.yml index 8964f6e51ac9..978102bb82a6 100644 --- a/ruby/ql/src/qlpack.yml +++ b/ruby/ql/src/qlpack.yml @@ -1,5 +1,5 @@ name: codeql/ruby-queries -version: 1.6.1 +version: 1.6.2-dev groups: - ruby - queries diff --git a/rust/ql/lib/qlpack.yml b/rust/ql/lib/qlpack.yml index 569930438abe..7eb159e4b505 100644 --- a/rust/ql/lib/qlpack.yml +++ b/rust/ql/lib/qlpack.yml @@ -1,5 +1,5 @@ name: codeql/rust-all -version: 0.2.12 +version: 0.2.13-dev groups: rust extractor: rust dbscheme: rust.dbscheme diff --git a/rust/ql/src/qlpack.yml b/rust/ql/src/qlpack.yml index 0eefe2f39325..7b2bd73728ae 100644 --- a/rust/ql/src/qlpack.yml +++ b/rust/ql/src/qlpack.yml @@ -1,5 +1,5 @@ name: codeql/rust-queries -version: 0.1.33 +version: 0.1.34-dev groups: - rust - queries diff --git a/shared/concepts/qlpack.yml b/shared/concepts/qlpack.yml index 2ce2978829e3..947826f7dfd7 100644 --- a/shared/concepts/qlpack.yml +++ b/shared/concepts/qlpack.yml @@ -1,5 +1,5 @@ name: codeql/concepts -version: 0.0.22 +version: 0.0.23-dev groups: shared library: true dependencies: diff --git a/shared/controlflow/qlpack.yml b/shared/controlflow/qlpack.yml index b293853c73bd..adc4aedc5c37 100644 --- a/shared/controlflow/qlpack.yml +++ b/shared/controlflow/qlpack.yml @@ -1,5 +1,5 @@ name: codeql/controlflow -version: 2.0.32 +version: 2.0.33-dev groups: shared library: true dependencies: diff --git a/shared/dataflow/qlpack.yml b/shared/dataflow/qlpack.yml index e7778805c504..a18b746e4b44 100644 --- a/shared/dataflow/qlpack.yml +++ b/shared/dataflow/qlpack.yml @@ -1,5 +1,5 @@ name: codeql/dataflow -version: 2.1.4 +version: 2.1.5-dev groups: shared library: true dependencies: diff --git a/shared/mad/qlpack.yml b/shared/mad/qlpack.yml index 920ffe102676..dd5fcf54034b 100644 --- a/shared/mad/qlpack.yml +++ b/shared/mad/qlpack.yml @@ -1,5 +1,5 @@ name: codeql/mad -version: 1.0.48 +version: 1.0.49-dev groups: shared library: true dependencies: diff --git a/shared/quantum/qlpack.yml b/shared/quantum/qlpack.yml index 52c78c5f963f..c4e5d41dfaa3 100644 --- a/shared/quantum/qlpack.yml +++ b/shared/quantum/qlpack.yml @@ -1,5 +1,5 @@ name: codeql/quantum -version: 0.0.26 +version: 0.0.27-dev groups: shared library: true dependencies: diff --git a/shared/rangeanalysis/qlpack.yml b/shared/rangeanalysis/qlpack.yml index 274a6160372e..ed3b4a66239c 100644 --- a/shared/rangeanalysis/qlpack.yml +++ b/shared/rangeanalysis/qlpack.yml @@ -1,5 +1,5 @@ name: codeql/rangeanalysis -version: 1.0.48 +version: 1.0.49-dev groups: shared library: true dependencies: diff --git a/shared/regex/qlpack.yml b/shared/regex/qlpack.yml index abe561fb37c0..3d569c7d429f 100644 --- a/shared/regex/qlpack.yml +++ b/shared/regex/qlpack.yml @@ -1,5 +1,5 @@ name: codeql/regex -version: 1.0.48 +version: 1.0.49-dev groups: shared library: true dependencies: diff --git a/shared/ssa/qlpack.yml b/shared/ssa/qlpack.yml index 16d312b77aed..c1fd261e070e 100644 --- a/shared/ssa/qlpack.yml +++ b/shared/ssa/qlpack.yml @@ -1,5 +1,5 @@ name: codeql/ssa -version: 2.0.24 +version: 2.0.25-dev groups: shared library: true dependencies: diff --git a/shared/threat-models/qlpack.yml b/shared/threat-models/qlpack.yml index 2cf364fa3327..59ce8c067277 100644 --- a/shared/threat-models/qlpack.yml +++ b/shared/threat-models/qlpack.yml @@ -1,5 +1,5 @@ name: codeql/threat-models -version: 1.0.48 +version: 1.0.49-dev library: true groups: shared dataExtensions: diff --git a/shared/tutorial/qlpack.yml b/shared/tutorial/qlpack.yml index 5c9c6cdc47c2..36b8181e0bf7 100644 --- a/shared/tutorial/qlpack.yml +++ b/shared/tutorial/qlpack.yml @@ -1,7 +1,7 @@ name: codeql/tutorial description: Library for the CodeQL detective tutorials, helping new users learn to write CodeQL queries. -version: 1.0.48 +version: 1.0.49-dev groups: shared library: true warnOnImplicitThis: true diff --git a/shared/typeflow/qlpack.yml b/shared/typeflow/qlpack.yml index c9d4ec97a924..0734b2b722ed 100644 --- a/shared/typeflow/qlpack.yml +++ b/shared/typeflow/qlpack.yml @@ -1,5 +1,5 @@ name: codeql/typeflow -version: 1.0.48 +version: 1.0.49-dev groups: shared library: true dependencies: diff --git a/shared/typeinference/qlpack.yml b/shared/typeinference/qlpack.yml index 57ed4da1080f..2bf5c49d97e5 100644 --- a/shared/typeinference/qlpack.yml +++ b/shared/typeinference/qlpack.yml @@ -1,5 +1,5 @@ name: codeql/typeinference -version: 0.0.29 +version: 0.0.30-dev groups: shared library: true dependencies: diff --git a/shared/typetracking/qlpack.yml b/shared/typetracking/qlpack.yml index 7d506ee6807c..fe35cf5955b6 100644 --- a/shared/typetracking/qlpack.yml +++ b/shared/typetracking/qlpack.yml @@ -1,5 +1,5 @@ name: codeql/typetracking -version: 2.0.32 +version: 2.0.33-dev groups: shared library: true dependencies: diff --git a/shared/typos/qlpack.yml b/shared/typos/qlpack.yml index 5ba6ce2b43d4..a8c85168f20f 100644 --- a/shared/typos/qlpack.yml +++ b/shared/typos/qlpack.yml @@ -1,5 +1,5 @@ name: codeql/typos -version: 1.0.48 +version: 1.0.49-dev groups: shared library: true warnOnImplicitThis: true diff --git a/shared/util/qlpack.yml b/shared/util/qlpack.yml index 1e765b5e42e4..99f8c5374dce 100644 --- a/shared/util/qlpack.yml +++ b/shared/util/qlpack.yml @@ -1,5 +1,5 @@ name: codeql/util -version: 2.0.35 +version: 2.0.36-dev groups: shared library: true dependencies: null diff --git a/shared/xml/qlpack.yml b/shared/xml/qlpack.yml index 45ddcffaee77..2c44df63e7e5 100644 --- a/shared/xml/qlpack.yml +++ b/shared/xml/qlpack.yml @@ -1,5 +1,5 @@ name: codeql/xml -version: 1.0.48 +version: 1.0.49-dev groups: shared library: true dependencies: diff --git a/shared/yaml/qlpack.yml b/shared/yaml/qlpack.yml index 461f97ac4dba..6778ee5a156c 100644 --- a/shared/yaml/qlpack.yml +++ b/shared/yaml/qlpack.yml @@ -1,5 +1,5 @@ name: codeql/yaml -version: 1.0.48 +version: 1.0.49-dev groups: shared library: true warnOnImplicitThis: true diff --git a/swift/ql/lib/qlpack.yml b/swift/ql/lib/qlpack.yml index c8cc7f97a2b0..595a2804df50 100644 --- a/swift/ql/lib/qlpack.yml +++ b/swift/ql/lib/qlpack.yml @@ -1,5 +1,5 @@ name: codeql/swift-all -version: 6.4.0 +version: 6.4.1-dev groups: swift extractor: swift dbscheme: swift.dbscheme diff --git a/swift/ql/src/qlpack.yml b/swift/ql/src/qlpack.yml index 2bde0f317c79..6b4dc1f65e51 100644 --- a/swift/ql/src/qlpack.yml +++ b/swift/ql/src/qlpack.yml @@ -1,5 +1,5 @@ name: codeql/swift-queries -version: 1.3.1 +version: 1.3.2-dev groups: - swift - queries From 2e94b09e6f9442a87b7c510dab22eda3832d7284 Mon Sep 17 00:00:00 2001 From: Tom Hvitved Date: Mon, 27 Apr 2026 14:18:41 +0200 Subject: [PATCH 051/260] Address review comments --- go/ql/lib/semmle/go/dataflow/GlobalValueNumbering.qll | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/go/ql/lib/semmle/go/dataflow/GlobalValueNumbering.qll b/go/ql/lib/semmle/go/dataflow/GlobalValueNumbering.qll index 3e161a4d6010..3547e70b858a 100644 --- a/go/ql/lib/semmle/go/dataflow/GlobalValueNumbering.qll +++ b/go/ql/lib/semmle/go/dataflow/GlobalValueNumbering.qll @@ -138,6 +138,8 @@ private predicate iDomEffect( * dominator of `node` and no side-effects can occur between `result` and * `node`. * + * `entry` is the entry node for the function containing `node` and `result`. + * * `sideEffectCFG` has an edge from the function entry to every node with a * side-effect. This means that every node with a side-effect has the * function entry as its immediate dominator. So if node `x` dominates node @@ -181,6 +183,10 @@ private predicate iDomEffect( * * The immediate dominator path to line 015 is 000 - 009 - 012 - 015. * Therefore, the most recent side effect for line 015 is line 009. + * (Note that line 009 is not a side-effect itself. Instead, it is the + * point where the control flow paths from the side-effects at 004 and 007 + * merge. Because its immediate dominator is the entry node 000, it serves + * as the safe root for expressions evaluated after those side-effects.) */ private ControlFlow::Node mostRecentSideEffect(ControlFlow::Node entry, ControlFlow::Node node) { iDomEffect(entry, entry, result) and From 909d9cb8051f0f16817b7bcb24eaec5fa8fa97d3 Mon Sep 17 00:00:00 2001 From: Florin Coada Date: Mon, 27 Apr 2026 15:50:28 +0100 Subject: [PATCH 052/260] Update docs/codeql/codeql-language-guides/customizing-library-models-for-rust.rst Co-authored-by: Sarita Iyer <66540150+saritai@users.noreply.github.com> --- .../customizing-library-models-for-rust.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/codeql/codeql-language-guides/customizing-library-models-for-rust.rst b/docs/codeql/codeql-language-guides/customizing-library-models-for-rust.rst index bf1b44994dd9..b0d29b2cc50e 100644 --- a/docs/codeql/codeql-language-guides/customizing-library-models-for-rust.rst +++ b/docs/codeql/codeql-language-guides/customizing-library-models-for-rust.rst @@ -97,7 +97,7 @@ This example shows how the Rust query pack models the first argument of the ``sq .unwrap(); } -We need to add a tuple to the ``sinkModel``\(path, input, kind, provenance) extensible predicate by updating a data extension file. +We need to add a tuple to the ``sinkModel(path, input, kind, provenance)`` extensible predicate by updating a data extension file. .. code-block:: yaml From 96926712138f51be02a00edc20539f9eb75cf5d4 Mon Sep 17 00:00:00 2001 From: Florin Coada Date: Mon, 27 Apr 2026 15:50:41 +0100 Subject: [PATCH 053/260] Update docs/codeql/codeql-language-guides/customizing-library-models-for-rust.rst Co-authored-by: Sarita Iyer <66540150+saritai@users.noreply.github.com> --- .../customizing-library-models-for-rust.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/codeql/codeql-language-guides/customizing-library-models-for-rust.rst b/docs/codeql/codeql-language-guides/customizing-library-models-for-rust.rst index b0d29b2cc50e..175710298968 100644 --- a/docs/codeql/codeql-language-guides/customizing-library-models-for-rust.rst +++ b/docs/codeql/codeql-language-guides/customizing-library-models-for-rust.rst @@ -127,7 +127,7 @@ This example shows how the Rust query pack models the return value of the ``reqw Ok(response) } -We need to add a tuple to the ``sourceModel``\(path, output, kind, provenance) extensible predicate by updating a data extension file. +We need to add a tuple to the ``sourceModel(path, output, kind, provenance)`` extensible predicate by updating a data extension file. .. code-block:: yaml From e3fa8b031bb56dd14ed3ae2f0a4a3538b71ef27f Mon Sep 17 00:00:00 2001 From: Florin Coada Date: Mon, 27 Apr 2026 15:50:55 +0100 Subject: [PATCH 054/260] Update docs/codeql/codeql-language-guides/customizing-library-models-for-rust.rst Co-authored-by: Sarita Iyer <66540150+saritai@users.noreply.github.com> --- .../customizing-library-models-for-rust.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/codeql/codeql-language-guides/customizing-library-models-for-rust.rst b/docs/codeql/codeql-language-guides/customizing-library-models-for-rust.rst index 175710298968..b3c9f2ceedeb 100644 --- a/docs/codeql/codeql-language-guides/customizing-library-models-for-rust.rst +++ b/docs/codeql/codeql-language-guides/customizing-library-models-for-rust.rst @@ -162,7 +162,7 @@ This example shows how the Rust query pack models the return value of ``std::env // ... } -We need to add a tuple to the ``sourceModel``\(path, output, kind, provenance) extensible predicate by updating a data extension file. +We need to add a tuple to the ``sourceModel(path, output, kind, provenance)`` extensible predicate by updating a data extension file. .. code-block:: yaml From 81d7fc261150ce83637dfadac90a80d8a6da51a6 Mon Sep 17 00:00:00 2001 From: Florin Coada Date: Mon, 27 Apr 2026 15:51:12 +0100 Subject: [PATCH 055/260] Update docs/codeql/codeql-language-guides/customizing-library-models-for-rust.rst Co-authored-by: Sarita Iyer <66540150+saritai@users.noreply.github.com> --- .../customizing-library-models-for-rust.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/codeql/codeql-language-guides/customizing-library-models-for-rust.rst b/docs/codeql/codeql-language-guides/customizing-library-models-for-rust.rst index b3c9f2ceedeb..836bd7502798 100644 --- a/docs/codeql/codeql-language-guides/customizing-library-models-for-rust.rst +++ b/docs/codeql/codeql-language-guides/customizing-library-models-for-rust.rst @@ -190,7 +190,7 @@ This example shows how the Rust query pack models taint flow through the ``text` // ... } -We need to add a tuple to the ``summaryModel``\(path, input, output, kind, provenance) extensible predicate by updating a data extension file: +We need to add a tuple to the ``summaryModel(path, input, output, kind, provenance)`` extensible predicate by updating a data extension file: .. code-block:: yaml From dbd851e64d9c4ceb0f5e9b86f9af754e799d5bee Mon Sep 17 00:00:00 2001 From: Florin Coada Date: Mon, 27 Apr 2026 15:52:32 +0100 Subject: [PATCH 056/260] Update docs/codeql/codeql-language-guides/customizing-library-models-for-rust.rst Co-authored-by: Sarita Iyer <66540150+saritai@users.noreply.github.com> --- .../customizing-library-models-for-rust.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/codeql/codeql-language-guides/customizing-library-models-for-rust.rst b/docs/codeql/codeql-language-guides/customizing-library-models-for-rust.rst index 836bd7502798..4301278f0c94 100644 --- a/docs/codeql/codeql-language-guides/customizing-library-models-for-rust.rst +++ b/docs/codeql/codeql-language-guides/customizing-library-models-for-rust.rst @@ -223,7 +223,7 @@ This example shows how the Rust query pack models taint flow through the ``join` // ... } -We need to add tuples to the ``summaryModel``\(path, input, output, kind, provenance) extensible predicate by updating a data extension file: +We need to add tuples to the ``summaryModel(path, input, output, kind, provenance)`` extensible predicate by updating a data extension file: .. code-block:: yaml From 870ce1be5c26050289c085598654a380e8c02e18 Mon Sep 17 00:00:00 2001 From: Florin Coada Date: Mon, 27 Apr 2026 15:53:06 +0100 Subject: [PATCH 057/260] Update docs/codeql/codeql-language-guides/customizing-library-models-for-rust.rst Co-authored-by: Sarita Iyer <66540150+saritai@users.noreply.github.com> --- .../customizing-library-models-for-rust.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/codeql/codeql-language-guides/customizing-library-models-for-rust.rst b/docs/codeql/codeql-language-guides/customizing-library-models-for-rust.rst index 4301278f0c94..55cb61796a7f 100644 --- a/docs/codeql/codeql-language-guides/customizing-library-models-for-rust.rst +++ b/docs/codeql/codeql-language-guides/customizing-library-models-for-rust.rst @@ -264,7 +264,7 @@ This example shows how the Rust query pack models a more complex flow through a }).collect(); } -We need to add tuples to the ``summaryModel``\(path, input, output, kind, provenance) extensible predicate by updating a data extension file: +We need to add tuples to the ``summaryModel(path, input, output, kind, provenance)`` extensible predicate by updating a data extension file: .. code-block:: yaml From d5b690caf8dc175776ca95353cacee828d9d2e26 Mon Sep 17 00:00:00 2001 From: Florin Coada Date: Mon, 27 Apr 2026 15:54:20 +0100 Subject: [PATCH 058/260] Apply suggestions from code review Co-authored-by: Sarita Iyer <66540150+saritai@users.noreply.github.com> --- .../customizing-library-models-for-rust.rst | 10 ++-------- 1 file changed, 2 insertions(+), 8 deletions(-) diff --git a/docs/codeql/codeql-language-guides/customizing-library-models-for-rust.rst b/docs/codeql/codeql-language-guides/customizing-library-models-for-rust.rst index 55cb61796a7f..56a9a063de6f 100644 --- a/docs/codeql/codeql-language-guides/customizing-library-models-for-rust.rst +++ b/docs/codeql/codeql-language-guides/customizing-library-models-for-rust.rst @@ -108,7 +108,6 @@ We need to add a tuple to the ``sinkModel(path, input, kind, provenance)`` exten data: - ["sqlx_core::query::query", "Argument[0]", "sql-injection", "manual"] -Since we want to add a new sink, we need to add a tuple to the ``sinkModel`` extensible predicate. - The first value ``sqlx_core::query::query`` is the canonical path of the function to model. Note that this is the internal module path (``sqlx_core::query::query``), not the public re-export path (``sqlx::query``). - The second value ``Argument[0]`` is the access path to the first argument of the function call, which is the SQL query string. This is the location of the sink. @@ -138,7 +137,6 @@ We need to add a tuple to the ``sourceModel(path, output, kind, provenance)`` ex data: - ["reqwest::get", "ReturnValue.Future.Field[core::result::Result::Ok(0)]", "remote", "manual"] -Since we are adding a new source, we need to add a tuple to the ``sourceModel`` extensible predicate. - The first value ``reqwest::get`` is the canonical path of the function. - The second value ``ReturnValue.Future.Field[core::result::Result::Ok(0)]`` is the access path to the output. This compound path is read left to right: @@ -201,7 +199,6 @@ We need to add a tuple to the ``summaryModel(path, input, output, kind, provenan data: - ["::text", "Argument[self]", "ReturnValue.Future.Field[core::result::Result::Ok(0)]", "taint", "manual"] -Since we are adding flow through a method, we need to add a tuple to the ``summaryModel`` extensible predicate. - The first value ``::text`` is the canonical path. Note the format ``::method`` used for inherent methods. Also note that the canonical path uses the internal module path ``reqwest::response::Response``, not just ``reqwest::Response``. - The second value ``Argument[self]`` is the access path to the input. ``Argument[self]`` refers to the receiver of the method call (``response`` in the example). @@ -275,7 +272,6 @@ We need to add tuples to the ``summaryModel(path, input, output, kind, provenanc data: - ["<_ as core::iter::traits::iterator::Iterator>::map", "Argument[self].Element", "Argument[0].Parameter[0]", "value", "manual"] -Since we are adding flow through a trait method, we need to add a tuple to the ``summaryModel`` extensible predicate. - The first value ``<_ as core::iter::traits::iterator::Iterator>::map`` is the canonical path. The ``<_ as Trait>::method`` form uses a wildcard type (``_``) to match any type that implements the ``Iterator`` trait. - The second value ``Argument[self].Element`` is the access path to the input — the elements of the iterator (the receiver). @@ -324,7 +320,7 @@ Consider a hypothetical function ``my_crate::sanitize::escape_sql`` which escape // ... } -We need to add a tuple to the ``barrierModel``\(path, output, kind, provenance) extensible predicate by updating a data extension file. +We need to add a tuple to the ``barrierModel(path, output, kind, provenance)`` extensible predicate by updating a data extension file. .. code-block:: yaml @@ -335,7 +331,6 @@ We need to add a tuple to the ``barrierModel``\(path, output, kind, provenance) data: - ["my_crate::sanitize::escape_sql", "ReturnValue", "sql-injection", "manual"] -Since we are adding a barrier, we need to add a tuple to the ``barrierModel`` extensible predicate. - The first value ``my_crate::sanitize::escape_sql`` is the canonical path of the function. - The second value ``ReturnValue`` is the access path to the output of the barrier, which means that the return value is considered sanitized. @@ -359,7 +354,7 @@ Consider a hypothetical function ``my_crate::validate::is_safe_path`` which retu } } -We need to add a tuple to the ``barrierGuardModel``\(path, input, acceptingValue, kind, provenance) extensible predicate by updating a data extension file. +We need to add a tuple to the ``barrierGuardModel(path, input, acceptingValue, kind, provenance)`` extensible predicate by updating a data extension file. .. code-block:: yaml @@ -370,7 +365,6 @@ We need to add a tuple to the ``barrierGuardModel``\(path, input, acceptingValue data: - ["my_crate::validate::is_safe_path", "Argument[0]", "true", "path-injection", "manual"] -Since we are adding a barrier guard, we need to add a tuple to the ``barrierGuardModel`` extensible predicate. - The first value ``my_crate::validate::is_safe_path`` is the canonical path of the function. - The second value ``Argument[0]`` is the access path to the input whose flow is blocked. In this case, the first argument to the function (``user_path`` in the example). From d22381a9436626b548696208d06d1f2a8d58104f Mon Sep 17 00:00:00 2001 From: "Michael B. Gale" Date: Fri, 27 Feb 2026 14:17:29 +0000 Subject: [PATCH 059/260] Refactor `GetReachableNuGetFeeds` out of `GetReachableFallbackNugetFeeds` --- .../NugetPackageRestorer.cs | 44 ++++++++++++------- 1 file changed, 29 insertions(+), 15 deletions(-) diff --git a/csharp/extractor/Semmle.Extraction.CSharp.DependencyFetching/NugetPackageRestorer.cs b/csharp/extractor/Semmle.Extraction.CSharp.DependencyFetching/NugetPackageRestorer.cs index 1d01412ee051..33e8db19eab4 100644 --- a/csharp/extractor/Semmle.Extraction.CSharp.DependencyFetching/NugetPackageRestorer.cs +++ b/csharp/extractor/Semmle.Extraction.CSharp.DependencyFetching/NugetPackageRestorer.cs @@ -192,6 +192,34 @@ public HashSet Restore() return assemblyLookupLocations; } + /// + /// Tests which of the feeds given by are reachable. + /// + /// The feeds to check. + /// Whether the feeds are fallback feeds or not. + /// The list of feeds that could be reached. + private List GetReachableNuGetFeeds(HashSet feedsToCheck, bool isFallback) + { + var fallbackStr = isFallback ? "fallback " : ""; + logger.LogInfo($"Checking {fallbackStr}NuGet feed reachability on feeds: {string.Join(", ", feedsToCheck.OrderBy(f => f))}"); + + var (initialTimeout, tryCount) = GetFeedRequestSettings(isFallback); + var reachableFeeds = feedsToCheck + .Where(feed => IsFeedReachable(feed, initialTimeout, tryCount, allowExceptions: false)) + .ToList(); + + if (reachableFeeds.Count == 0) + { + logger.LogWarning($"No {fallbackStr}NuGet feeds are reachable."); + } + else + { + logger.LogInfo($"Reachable {fallbackStr}NuGet feeds: {string.Join(", ", reachableFeeds.OrderBy(f => f))}"); + } + + return reachableFeeds; + } + private List GetReachableFallbackNugetFeeds(HashSet? feedsFromNugetConfigs) { var fallbackFeeds = EnvironmentVariables.GetURLs(EnvironmentVariableNames.FallbackNugetFeeds).ToHashSet(); @@ -212,21 +240,7 @@ private List GetReachableFallbackNugetFeeds(HashSet? feedsFromNu } } - logger.LogInfo($"Checking fallback NuGet feed reachability on feeds: {string.Join(", ", fallbackFeeds.OrderBy(f => f))}"); - var (initialTimeout, tryCount) = GetFeedRequestSettings(isFallback: true); - var reachableFallbackFeeds = fallbackFeeds.Where(feed => IsFeedReachable(feed, initialTimeout, tryCount, allowExceptions: false)).ToList(); - if (reachableFallbackFeeds.Count == 0) - { - logger.LogWarning("No fallback NuGet feeds are reachable."); - } - else - { - logger.LogInfo($"Reachable fallback NuGet feeds: {string.Join(", ", reachableFallbackFeeds.OrderBy(f => f))}"); - } - - compilationInfoContainer.CompilationInfos.Add(("Reachable fallback NuGet feed count", reachableFallbackFeeds.Count.ToString())); - - return reachableFallbackFeeds; + return GetReachableNuGetFeeds(fallbackFeeds, isFallback: true); } /// From 439e37a1984febc49d63e9eb8d900e48d126f8db Mon Sep 17 00:00:00 2001 From: "Michael B. Gale" Date: Fri, 27 Feb 2026 14:23:03 +0000 Subject: [PATCH 060/260] Use `GetReachableNuGetFeeds` in `CheckSpecifiedFeeds` --- .../NugetPackageRestorer.cs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/csharp/extractor/Semmle.Extraction.CSharp.DependencyFetching/NugetPackageRestorer.cs b/csharp/extractor/Semmle.Extraction.CSharp.DependencyFetching/NugetPackageRestorer.cs index 33e8db19eab4..5d7ad8f6124a 100644 --- a/csharp/extractor/Semmle.Extraction.CSharp.DependencyFetching/NugetPackageRestorer.cs +++ b/csharp/extractor/Semmle.Extraction.CSharp.DependencyFetching/NugetPackageRestorer.cs @@ -767,8 +767,7 @@ private bool CheckFeeds(out HashSet explicitFeeds, out HashSet a /// True if all feeds are reachable or false otherwise. private bool CheckSpecifiedFeeds(HashSet feeds) { - logger.LogInfo("Checking that NuGet feeds are reachable..."); - + // Exclude any feeds that are configured by the corresponding environment variable. var excludedFeeds = EnvironmentVariables.GetURLs(EnvironmentVariableNames.ExcludedNugetFeedsFromResponsivenessCheck) .ToHashSet(); @@ -777,9 +776,10 @@ private bool CheckSpecifiedFeeds(HashSet feeds) logger.LogInfo($"Excluded NuGet feeds from responsiveness check: {string.Join(", ", excludedFeeds.OrderBy(f => f))}"); } - var (initialTimeout, tryCount) = GetFeedRequestSettings(isFallback: false); + var feedsToCheck = feeds.Where(feed => !excludedFeeds.Contains(feed)).ToHashSet(); + var reachableFeeds = this.GetReachableNuGetFeeds(feedsToCheck, isFallback: false); + var allFeedsReachable = reachableFeeds.Count == feedsToCheck.Count; - var allFeedsReachable = feeds.All(feed => excludedFeeds.Contains(feed) || IsFeedReachable(feed, initialTimeout, tryCount)); if (!allFeedsReachable) { logger.LogWarning("Found unreachable NuGet feed in C# analysis with build-mode 'none'. This may cause missing dependencies in the analysis."); From 8215737db907034b3784aa80737bbf0cd56dc2ed Mon Sep 17 00:00:00 2001 From: "Michael B. Gale" Date: Fri, 27 Feb 2026 14:24:55 +0000 Subject: [PATCH 061/260] Inline `CheckFeeds` --- .../NugetPackageRestorer.cs | 64 +++++++++---------- 1 file changed, 30 insertions(+), 34 deletions(-) diff --git a/csharp/extractor/Semmle.Extraction.CSharp.DependencyFetching/NugetPackageRestorer.cs b/csharp/extractor/Semmle.Extraction.CSharp.DependencyFetching/NugetPackageRestorer.cs index 5d7ad8f6124a..7bdec255ab4f 100644 --- a/csharp/extractor/Semmle.Extraction.CSharp.DependencyFetching/NugetPackageRestorer.cs +++ b/csharp/extractor/Semmle.Extraction.CSharp.DependencyFetching/NugetPackageRestorer.cs @@ -119,13 +119,37 @@ public HashSet Restore() try { - if (checkNugetFeedResponsiveness && !CheckFeeds(out explicitFeeds, out allFeeds)) + if (checkNugetFeedResponsiveness) { - // todo: we could also check the reachability of the inherited nuget feeds, but to use those in the fallback we would need to handle authentication too. - var unresponsiveMissingPackageLocation = DownloadMissingPackagesFromSpecificFeeds([], explicitFeeds); - return unresponsiveMissingPackageLocation is null - ? [] - : [unresponsiveMissingPackageLocation]; + // Find feeds that are configured in NuGet.config files and divide them into ones that + // are explicitly configured for the project, and "all feeds" (including inherited ones) + // from other locations on the host outside of the working directory. + (explicitFeeds, allFeeds) = GetAllFeeds(); + var inheritedFeeds = allFeeds.Except(explicitFeeds).ToHashSet(); + + // Check whether the explicit feeds can be reached. + HashSet feedsToCheck = explicitFeeds; + + // If private package registries are configured for C#, then check those + // in addition to the ones that are configured in `nuget.config` files. + this.dependabotProxy?.RegistryURLs.ForEach(url => feedsToCheck.Add(url)); + + var explicitFeedsReachable = this.CheckSpecifiedFeeds(feedsToCheck); + + if (inheritedFeeds.Count > 0) + { + logger.LogInfo($"Inherited NuGet feeds (not checked for reachability): {string.Join(", ", inheritedFeeds.OrderBy(f => f))}"); + compilationInfoContainer.CompilationInfos.Add(("Inherited NuGet feed count", inheritedFeeds.Count.ToString())); + } + + if (!explicitFeedsReachable) + { + // todo: we could also check the reachability of the inherited nuget feeds, but to use those in the fallback we would need to handle authentication too. + var unresponsiveMissingPackageLocation = DownloadMissingPackagesFromSpecificFeeds([], explicitFeeds); + return unresponsiveMissingPackageLocation is null + ? [] + : [unresponsiveMissingPackageLocation]; + } } using (var nuget = new NugetExeWrapper(fileProvider, legacyPackageDirectory, logger)) @@ -732,34 +756,6 @@ private bool IsFeedReachable(string feed, int timeoutMilliSeconds, int tryCount, return (timeoutMilliSeconds, tryCount); } - /// - /// Checks that we can connect to all NuGet feeds that are explicitly configured in configuration files - /// as well as any private package registry feeds that are configured. - /// - /// Outputs the set of explicit feeds. - /// Outputs the set of all feeds (explicit and inherited). - /// True if all feeds are reachable or false otherwise. - private bool CheckFeeds(out HashSet explicitFeeds, out HashSet allFeeds) - { - (explicitFeeds, allFeeds) = GetAllFeeds(); - HashSet feedsToCheck = explicitFeeds; - - // If private package registries are configured for C#, then check those - // in addition to the ones that are configured in `nuget.config` files. - this.dependabotProxy?.RegistryURLs.ForEach(url => feedsToCheck.Add(url)); - - var allFeedsReachable = this.CheckSpecifiedFeeds(feedsToCheck); - - var inheritedFeeds = allFeeds.Except(explicitFeeds).ToHashSet(); - if (inheritedFeeds.Count > 0) - { - logger.LogInfo($"Inherited NuGet feeds (not checked for reachability): {string.Join(", ", inheritedFeeds.OrderBy(f => f))}"); - compilationInfoContainer.CompilationInfos.Add(("Inherited NuGet feed count", inheritedFeeds.Count.ToString())); - } - - return allFeedsReachable; - } - /// /// Checks that we can connect to the specified NuGet feeds. /// From fdbaba896f47421c457e5a42b9c02d65e5a9ad02 Mon Sep 17 00:00:00 2001 From: "Michael B. Gale" Date: Fri, 27 Feb 2026 14:25:58 +0000 Subject: [PATCH 062/260] Use `explicitFeeds` directly --- .../NugetPackageRestorer.cs | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/csharp/extractor/Semmle.Extraction.CSharp.DependencyFetching/NugetPackageRestorer.cs b/csharp/extractor/Semmle.Extraction.CSharp.DependencyFetching/NugetPackageRestorer.cs index 7bdec255ab4f..4a4029507d18 100644 --- a/csharp/extractor/Semmle.Extraction.CSharp.DependencyFetching/NugetPackageRestorer.cs +++ b/csharp/extractor/Semmle.Extraction.CSharp.DependencyFetching/NugetPackageRestorer.cs @@ -127,14 +127,11 @@ public HashSet Restore() (explicitFeeds, allFeeds) = GetAllFeeds(); var inheritedFeeds = allFeeds.Except(explicitFeeds).ToHashSet(); - // Check whether the explicit feeds can be reached. - HashSet feedsToCheck = explicitFeeds; - - // If private package registries are configured for C#, then check those + // If private package registries are configured for C#, then consider those // in addition to the ones that are configured in `nuget.config` files. - this.dependabotProxy?.RegistryURLs.ForEach(url => feedsToCheck.Add(url)); + this.dependabotProxy?.RegistryURLs.ForEach(url => explicitFeeds.Add(url)); - var explicitFeedsReachable = this.CheckSpecifiedFeeds(feedsToCheck); + var explicitFeedsReachable = this.CheckSpecifiedFeeds(explicitFeeds); if (inheritedFeeds.Count > 0) { @@ -191,6 +188,7 @@ public HashSet Restore() logger.LogError($"Failed to restore NuGet packages with nuget.exe: {exc.Message}"); } + // Restore project dependencies with `dotnet restore`. var restoredProjects = RestoreSolutions(out var container); var projects = fileProvider.Projects.Except(restoredProjects); RestoreProjects(projects, allFeeds, out var containers); From 9898e21ce76b43235ede568124b1e62c5ac6b555 Mon Sep 17 00:00:00 2001 From: "Michael B. Gale" Date: Fri, 27 Feb 2026 14:30:57 +0000 Subject: [PATCH 063/260] Divide up `CheckSpecifiedFeeds` --- .../NugetPackageRestorer.cs | 34 +++++++++++++++---- 1 file changed, 27 insertions(+), 7 deletions(-) diff --git a/csharp/extractor/Semmle.Extraction.CSharp.DependencyFetching/NugetPackageRestorer.cs b/csharp/extractor/Semmle.Extraction.CSharp.DependencyFetching/NugetPackageRestorer.cs index 4a4029507d18..f300865d2aeb 100644 --- a/csharp/extractor/Semmle.Extraction.CSharp.DependencyFetching/NugetPackageRestorer.cs +++ b/csharp/extractor/Semmle.Extraction.CSharp.DependencyFetching/NugetPackageRestorer.cs @@ -755,13 +755,10 @@ private bool IsFeedReachable(string feed, int timeoutMilliSeconds, int tryCount, } /// - /// Checks that we can connect to the specified NuGet feeds. + /// Retrieves a list of excluded NuGet feeds from the corresponding environment variable. /// - /// The set of package feeds to check. - /// True if all feeds are reachable or false otherwise. - private bool CheckSpecifiedFeeds(HashSet feeds) + private HashSet GetExcludedFeeds() { - // Exclude any feeds that are configured by the corresponding environment variable. var excludedFeeds = EnvironmentVariables.GetURLs(EnvironmentVariableNames.ExcludedNugetFeedsFromResponsivenessCheck) .ToHashSet(); @@ -770,10 +767,35 @@ private bool CheckSpecifiedFeeds(HashSet feeds) logger.LogInfo($"Excluded NuGet feeds from responsiveness check: {string.Join(", ", excludedFeeds.OrderBy(f => f))}"); } + return excludedFeeds; + } + + /// + /// Checks that we can connect to the specified NuGet feeds. + /// + /// The set of package feeds to check. + /// True if all feeds are reachable or false otherwise. + private bool CheckSpecifiedFeeds(HashSet feeds) + { + // Exclude any feeds that are configured by the corresponding environment variable. + var excludedFeeds = GetExcludedFeeds(); + var feedsToCheck = feeds.Where(feed => !excludedFeeds.Contains(feed)).ToHashSet(); var reachableFeeds = this.GetReachableNuGetFeeds(feedsToCheck, isFallback: false); var allFeedsReachable = reachableFeeds.Count == feedsToCheck.Count; + this.EmitUnreachableFeedsDiagnostics(allFeedsReachable); + + return allFeedsReachable; + } + + /// + /// If is `false`, logs this and emits a diagnostic. + /// Adds a `CompilationInfos` entry either way. + /// + /// Whether all feeds were reachable or not. + private void EmitUnreachableFeedsDiagnostics(bool allFeedsReachable) + { if (!allFeedsReachable) { logger.LogWarning("Found unreachable NuGet feed in C# analysis with build-mode 'none'. This may cause missing dependencies in the analysis."); @@ -787,8 +809,6 @@ private bool CheckSpecifiedFeeds(HashSet feeds) )); } compilationInfoContainer.CompilationInfos.Add(("All NuGet feeds reachable", allFeedsReachable ? "1" : "0")); - - return allFeedsReachable; } private IEnumerable GetFeeds(Func> getNugetFeeds) From 17c45fcd75d847d8be6f0941280bb348f5e17699 Mon Sep 17 00:00:00 2001 From: "Michael B. Gale" Date: Fri, 27 Feb 2026 14:32:01 +0000 Subject: [PATCH 064/260] Check reachability of inherited feeds --- .../NugetPackageRestorer.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/csharp/extractor/Semmle.Extraction.CSharp.DependencyFetching/NugetPackageRestorer.cs b/csharp/extractor/Semmle.Extraction.CSharp.DependencyFetching/NugetPackageRestorer.cs index f300865d2aeb..474b3f6c7f2c 100644 --- a/csharp/extractor/Semmle.Extraction.CSharp.DependencyFetching/NugetPackageRestorer.cs +++ b/csharp/extractor/Semmle.Extraction.CSharp.DependencyFetching/NugetPackageRestorer.cs @@ -132,10 +132,10 @@ public HashSet Restore() this.dependabotProxy?.RegistryURLs.ForEach(url => explicitFeeds.Add(url)); var explicitFeedsReachable = this.CheckSpecifiedFeeds(explicitFeeds); + this.GetReachableNuGetFeeds(inheritedFeeds, isFallback: false); if (inheritedFeeds.Count > 0) { - logger.LogInfo($"Inherited NuGet feeds (not checked for reachability): {string.Join(", ", inheritedFeeds.OrderBy(f => f))}"); compilationInfoContainer.CompilationInfos.Add(("Inherited NuGet feed count", inheritedFeeds.Count.ToString())); } From cce5f06086b19cc489ce3c804f30b83d305ce125 Mon Sep 17 00:00:00 2001 From: "Michael B. Gale" Date: Fri, 27 Feb 2026 14:38:01 +0000 Subject: [PATCH 065/260] Only use reachable feeds when private registries are configured --- .../NugetPackageRestorer.cs | 19 +++++++++++++------ 1 file changed, 13 insertions(+), 6 deletions(-) diff --git a/csharp/extractor/Semmle.Extraction.CSharp.DependencyFetching/NugetPackageRestorer.cs b/csharp/extractor/Semmle.Extraction.CSharp.DependencyFetching/NugetPackageRestorer.cs index 474b3f6c7f2c..0e8134bd19ba 100644 --- a/csharp/extractor/Semmle.Extraction.CSharp.DependencyFetching/NugetPackageRestorer.cs +++ b/csharp/extractor/Semmle.Extraction.CSharp.DependencyFetching/NugetPackageRestorer.cs @@ -116,6 +116,7 @@ public HashSet Restore() HashSet? explicitFeeds = null; HashSet? allFeeds = null; + HashSet? reachableFeeds = []; try { @@ -131,8 +132,11 @@ public HashSet Restore() // in addition to the ones that are configured in `nuget.config` files. this.dependabotProxy?.RegistryURLs.ForEach(url => explicitFeeds.Add(url)); - var explicitFeedsReachable = this.CheckSpecifiedFeeds(explicitFeeds); - this.GetReachableNuGetFeeds(inheritedFeeds, isFallback: false); + var (explicitFeedsReachable, reachableExplicitFeeds) = + this.CheckSpecifiedFeeds(explicitFeeds); + reachableFeeds.UnionWith(reachableExplicitFeeds); + + reachableFeeds.UnionWith(this.GetReachableNuGetFeeds(inheritedFeeds, isFallback: false)); if (inheritedFeeds.Count > 0) { @@ -191,7 +195,7 @@ public HashSet Restore() // Restore project dependencies with `dotnet restore`. var restoredProjects = RestoreSolutions(out var container); var projects = fileProvider.Projects.Except(restoredProjects); - RestoreProjects(projects, allFeeds, out var containers); + RestoreProjects(projects, reachableFeeds, out var containers); var dependencies = containers.Flatten(container); @@ -774,8 +778,11 @@ private HashSet GetExcludedFeeds() /// Checks that we can connect to the specified NuGet feeds. /// /// The set of package feeds to check. - /// True if all feeds are reachable or false otherwise. - private bool CheckSpecifiedFeeds(HashSet feeds) + /// + /// True if all feeds are reachable or false otherwise. + /// Also returns the list of reachable feeds. + /// + private (bool, List) CheckSpecifiedFeeds(HashSet feeds) { // Exclude any feeds that are configured by the corresponding environment variable. var excludedFeeds = GetExcludedFeeds(); @@ -786,7 +793,7 @@ private bool CheckSpecifiedFeeds(HashSet feeds) this.EmitUnreachableFeedsDiagnostics(allFeedsReachable); - return allFeedsReachable; + return (allFeedsReachable, reachableFeeds); } /// From 132dc1fa26ffb797a99a56fd6f2cc3adb3fa4701 Mon Sep 17 00:00:00 2001 From: Michael Nebel Date: Thu, 9 Apr 2026 13:06:32 +0200 Subject: [PATCH 066/260] C#: Turn checkNugetFeedResponsiveness into a field and remove some explicit this qualifiers. --- .../NugetPackageRestorer.cs | 32 +++++++++---------- 1 file changed, 16 insertions(+), 16 deletions(-) diff --git a/csharp/extractor/Semmle.Extraction.CSharp.DependencyFetching/NugetPackageRestorer.cs b/csharp/extractor/Semmle.Extraction.CSharp.DependencyFetching/NugetPackageRestorer.cs index 0e8134bd19ba..9ccf550a8aab 100644 --- a/csharp/extractor/Semmle.Extraction.CSharp.DependencyFetching/NugetPackageRestorer.cs +++ b/csharp/extractor/Semmle.Extraction.CSharp.DependencyFetching/NugetPackageRestorer.cs @@ -20,6 +20,7 @@ internal sealed partial class NugetPackageRestorer : IDisposable { internal const string PublicNugetOrgFeed = "https://api.nuget.org/v3/index.json"; + private readonly bool checkNugetFeedResponsiveness = EnvironmentVariables.GetBooleanOptOut(EnvironmentVariableNames.CheckNugetFeedResponsiveness); private readonly FileProvider fileProvider; private readonly FileContent fileContent; private readonly IDotNet dotnet; @@ -110,7 +111,6 @@ public DirectoryInfo[] GetOrderedPackageVersionSubDirectories(string packagePath public HashSet Restore() { var assemblyLookupLocations = new HashSet(); - var checkNugetFeedResponsiveness = EnvironmentVariables.GetBooleanOptOut(EnvironmentVariableNames.CheckNugetFeedResponsiveness); logger.LogInfo($"Checking NuGet feed responsiveness: {checkNugetFeedResponsiveness}"); compilationInfoContainer.CompilationInfos.Add(("NuGet feed responsiveness checked", checkNugetFeedResponsiveness ? "1" : "0")); @@ -130,13 +130,12 @@ public HashSet Restore() // If private package registries are configured for C#, then consider those // in addition to the ones that are configured in `nuget.config` files. - this.dependabotProxy?.RegistryURLs.ForEach(url => explicitFeeds.Add(url)); + dependabotProxy?.RegistryURLs.ForEach(url => explicitFeeds.Add(url)); - var (explicitFeedsReachable, reachableExplicitFeeds) = - this.CheckSpecifiedFeeds(explicitFeeds); + var (explicitFeedsReachable, reachableExplicitFeeds) = CheckSpecifiedFeeds(explicitFeeds); reachableFeeds.UnionWith(reachableExplicitFeeds); - reachableFeeds.UnionWith(this.GetReachableNuGetFeeds(inheritedFeeds, isFallback: false)); + reachableFeeds.UnionWith(GetReachableNuGetFeeds(inheritedFeeds, isFallback: false)); if (inheritedFeeds.Count > 0) { @@ -193,6 +192,7 @@ public HashSet Restore() } // Restore project dependencies with `dotnet restore`. + // TODO: We also need to respect reachable feeds for resolution restore. var restoredProjects = RestoreSolutions(out var container); var projects = fileProvider.Projects.Except(restoredProjects); RestoreProjects(projects, reachableFeeds, out var containers); @@ -320,14 +320,14 @@ private void RestoreProjects(IEnumerable projects, HashSet? conf // `nuget.config` files instead of the command-line arguments. string? extraArgs = null; - if (this.dependabotProxy is not null) + if (dependabotProxy is not null) { // If the Dependabot proxy is configured, then our main goal is to make `dotnet` aware // of the private registry feeds. However, since providing them as command-line arguments // to `dotnet` ignores other feeds that may be configured, we also need to add the feeds // we have discovered from analysing `nuget.config` files. var sources = configuredSources ?? new(); - this.dependabotProxy.RegistryURLs.ForEach(url => sources.Add(url)); + dependabotProxy.RegistryURLs.ForEach(url => sources.Add(url)); // Add package sources. If any are present, they override all sources specified in // the configuration file(s). @@ -680,11 +680,11 @@ private bool IsFeedReachable(string feed, int timeoutMilliSeconds, int tryCount, // Configure the HttpClient to be aware of the Dependabot Proxy, if used. HttpClientHandler httpClientHandler = new(); - if (this.dependabotProxy != null) + if (dependabotProxy != null) { - httpClientHandler.Proxy = new WebProxy(this.dependabotProxy.Address); + httpClientHandler.Proxy = new WebProxy(dependabotProxy.Address); - if (this.dependabotProxy.Certificate != null) + if (dependabotProxy.Certificate != null) { httpClientHandler.ServerCertificateCustomValidationCallback = (message, cert, chain, _) => { @@ -699,7 +699,7 @@ private bool IsFeedReachable(string feed, int timeoutMilliSeconds, int tryCount, return false; } chain.ChainPolicy.TrustMode = X509ChainTrustMode.CustomRootTrust; - chain.ChainPolicy.CustomTrustStore.Add(this.dependabotProxy.Certificate); + chain.ChainPolicy.CustomTrustStore.Add(dependabotProxy.Certificate); return chain.Build(cert); }; } @@ -788,10 +788,10 @@ private HashSet GetExcludedFeeds() var excludedFeeds = GetExcludedFeeds(); var feedsToCheck = feeds.Where(feed => !excludedFeeds.Contains(feed)).ToHashSet(); - var reachableFeeds = this.GetReachableNuGetFeeds(feedsToCheck, isFallback: false); + var reachableFeeds = GetReachableNuGetFeeds(feedsToCheck, isFallback: false); var allFeedsReachable = reachableFeeds.Count == feedsToCheck.Count; - this.EmitUnreachableFeedsDiagnostics(allFeedsReachable); + EmitUnreachableFeedsDiagnostics(allFeedsReachable); return (allFeedsReachable, reachableFeeds); } @@ -863,11 +863,11 @@ private IEnumerable GetFeeds(Func> getNugetFeeds) if (invalidNugetConfigs.Count() > 0) { - this.logger.LogWarning(string.Format( + logger.LogWarning(string.Format( "Found incorrectly named NuGet configuration files: {0}", string.Join(", ", invalidNugetConfigs) )); - this.diagnosticsWriter.AddEntry(new DiagnosticMessage( + diagnosticsWriter.AddEntry(new DiagnosticMessage( Language.CSharp, "buildless/case-sensitive-nuget-config", "Found NuGet configuration files which are not correctly named", @@ -933,7 +933,7 @@ private IEnumerable GetFeeds(Func> getNugetFeeds) else { // If we haven't found any `nuget.config` files, then obtain a list of feeds from the root source directory. - allFeeds = GetFeeds(() => dotnet.GetNugetFeedsFromFolder(this.fileProvider.SourceDir.FullName)).ToHashSet(); + allFeeds = GetFeeds(() => dotnet.GetNugetFeedsFromFolder(fileProvider.SourceDir.FullName)).ToHashSet(); } logger.LogInfo($"Found {allFeeds.Count} NuGet feeds (with inherited ones) in nuget.config files: {string.Join(", ", allFeeds.OrderBy(f => f))}"); From 365b419b5e19077f22a2063a68aa0c5c07c46bf8 Mon Sep 17 00:00:00 2001 From: Michael Nebel Date: Thu, 9 Apr 2026 14:32:30 +0200 Subject: [PATCH 067/260] C#: Add private registries to the set of explicit feeds. Always use specific sources for restoring if private registries are used of if nuget feed reachability check is performed. --- .../NugetPackageRestorer.cs | 131 +++++++++--------- 1 file changed, 67 insertions(+), 64 deletions(-) diff --git a/csharp/extractor/Semmle.Extraction.CSharp.DependencyFetching/NugetPackageRestorer.cs b/csharp/extractor/Semmle.Extraction.CSharp.DependencyFetching/NugetPackageRestorer.cs index 9ccf550a8aab..127c9b04f694 100644 --- a/csharp/extractor/Semmle.Extraction.CSharp.DependencyFetching/NugetPackageRestorer.cs +++ b/csharp/extractor/Semmle.Extraction.CSharp.DependencyFetching/NugetPackageRestorer.cs @@ -30,6 +30,8 @@ internal sealed partial class NugetPackageRestorer : IDisposable private readonly DependencyDirectory missingPackageDirectory; private readonly ILogger logger; private readonly ICompilationInfoContainer compilationInfoContainer; + private HashSet PrivateRegistryFeeds => dependabotProxy?.RegistryURLs ?? []; + private bool HasPrivateRegistryFeeds => PrivateRegistryFeeds.Any(); public DependencyDirectory PackageDirectory { get; } @@ -114,34 +116,32 @@ public HashSet Restore() logger.LogInfo($"Checking NuGet feed responsiveness: {checkNugetFeedResponsiveness}"); compilationInfoContainer.CompilationInfos.Add(("NuGet feed responsiveness checked", checkNugetFeedResponsiveness ? "1" : "0")); - HashSet? explicitFeeds = null; - HashSet? allFeeds = null; - HashSet? reachableFeeds = []; + HashSet explicitFeeds = []; + string? explicitRestoreSources = null; try { + HashSet reachableFeeds = []; + HashSet allFeeds = []; + + // Find feeds that are configured in NuGet.config files and divide them into ones that + // are explicitly configured for the project or by a private registry, and "all feeds" + // (including inherited ones) from other locations on the host outside of the working directory. + (explicitFeeds, allFeeds) = GetAllFeeds(); + if (checkNugetFeedResponsiveness) { - // Find feeds that are configured in NuGet.config files and divide them into ones that - // are explicitly configured for the project, and "all feeds" (including inherited ones) - // from other locations on the host outside of the working directory. - (explicitFeeds, allFeeds) = GetAllFeeds(); var inheritedFeeds = allFeeds.Except(explicitFeeds).ToHashSet(); - // If private package registries are configured for C#, then consider those - // in addition to the ones that are configured in `nuget.config` files. - dependabotProxy?.RegistryURLs.ForEach(url => explicitFeeds.Add(url)); - - var (explicitFeedsReachable, reachableExplicitFeeds) = CheckSpecifiedFeeds(explicitFeeds); - reachableFeeds.UnionWith(reachableExplicitFeeds); - - reachableFeeds.UnionWith(GetReachableNuGetFeeds(inheritedFeeds, isFallback: false)); - if (inheritedFeeds.Count > 0) { compilationInfoContainer.CompilationInfos.Add(("Inherited NuGet feed count", inheritedFeeds.Count.ToString())); } + var explicitFeedsReachable = CheckSpecifiedFeeds(explicitFeeds, out var reachableExplicitFeeds); + reachableFeeds.UnionWith(reachableExplicitFeeds); + reachableFeeds.UnionWith(GetReachableNuGetFeeds(inheritedFeeds, isFallback: false)); + if (!explicitFeedsReachable) { // todo: we could also check the reachability of the inherited nuget feeds, but to use those in the fallback we would need to handle authentication too. @@ -150,6 +150,16 @@ public HashSet Restore() ? [] : [unresponsiveMissingPackageLocation]; } + + // If feed responsiveness is being checked, we only want to use the feeds that are reachable (note this set includes private + // registry feeds if they are reachable). + explicitRestoreSources = MakeRestoreSourcesArgument(reachableFeeds); + } + else if (HasPrivateRegistryFeeds) + { + // If private registries are configured they need to be included as sources for the restore, which requires that + // they are provided as source arguments for the restore. The private registries are included in the `allFeeds` set. + explicitRestoreSources = MakeRestoreSourcesArgument(allFeeds); } using (var nuget = new NugetExeWrapper(fileProvider, legacyPackageDirectory, logger)) @@ -192,10 +202,9 @@ public HashSet Restore() } // Restore project dependencies with `dotnet restore`. - // TODO: We also need to respect reachable feeds for resolution restore. - var restoredProjects = RestoreSolutions(out var container); + var restoredProjects = RestoreSolutions(explicitRestoreSources, out var container); var projects = fileProvider.Projects.Except(restoredProjects); - RestoreProjects(projects, reachableFeeds, out var containers); + RestoreProjects(projects, explicitRestoreSources, out var containers); var dependencies = containers.Flatten(container); @@ -277,7 +286,7 @@ private List GetReachableFallbackNugetFeeds(HashSet? feedsFromNu /// Populates dependencies with the relevant dependencies from the assets files generated by the restore. /// Returns a list of projects that are up to date with respect to restore. /// - private IEnumerable RestoreSolutions(out DependencyContainer dependencies) + private IEnumerable RestoreSolutions(string? explicitRestoreSources, out DependencyContainer dependencies) { var successCount = 0; var nugetSourceFailures = 0; @@ -288,7 +297,7 @@ private IEnumerable RestoreSolutions(out DependencyContainer dependencie var projects = fileProvider.Solutions.SelectMany(solution => { logger.LogInfo($"Restoring solution {solution}..."); - var res = dotnet.Restore(new(solution, PackageDirectory.DirInfo.FullName, ForceDotnetRefAssemblyFetching: true, TargetWindows: isWindows)); + var res = dotnet.Restore(new(solution, PackageDirectory.DirInfo.FullName, ForceDotnetRefAssemblyFetching: true, ExtraArgs: explicitRestoreSources, TargetWindows: isWindows)); if (res.Success) { successCount++; @@ -307,39 +316,28 @@ private IEnumerable RestoreSolutions(out DependencyContainer dependencie return projects; } + private string? MakeRestoreSourcesArgument(IEnumerable feeds) + { + // Add package sources. If any are present, they override all sources specified in + // the configuration file(s). + var feedArgs = new StringBuilder(); + foreach (var feed in feeds) + { + feedArgs.Append($" -s {feed}"); + } + + return feedArgs.ToString(); + } + /// /// Executes `dotnet restore` on all projects in projects. /// This is done in parallel for performance reasons. /// Populates dependencies with the relative paths to the assets files generated by the restore. /// /// A list of paths to project files. - private void RestoreProjects(IEnumerable projects, HashSet? configuredSources, out ConcurrentBag dependencies) - { - // Conservatively, we only set this to a non-null value if a Dependabot proxy is enabled. - // This ensures that we continue to get the old behaviour where feeds are taken from - // `nuget.config` files instead of the command-line arguments. - string? extraArgs = null; - - if (dependabotProxy is not null) - { - // If the Dependabot proxy is configured, then our main goal is to make `dotnet` aware - // of the private registry feeds. However, since providing them as command-line arguments - // to `dotnet` ignores other feeds that may be configured, we also need to add the feeds - // we have discovered from analysing `nuget.config` files. - var sources = configuredSources ?? new(); - dependabotProxy.RegistryURLs.ForEach(url => sources.Add(url)); - - // Add package sources. If any are present, they override all sources specified in - // the configuration file(s). - var feedArgs = new StringBuilder(); - foreach (string source in sources) - { - feedArgs.Append($" -s {source}"); - } - - extraArgs = feedArgs.ToString(); - } - + /// The explicit restore sources argument. + private void RestoreProjects(IEnumerable projects, string? explicitRestoreSources, out ConcurrentBag dependencies) + { var successCount = 0; var nugetSourceFailures = 0; ConcurrentBag collectedDependencies = []; @@ -354,7 +352,7 @@ private void RestoreProjects(IEnumerable projects, HashSet? conf foreach (var project in projectGroup) { logger.LogInfo($"Restoring project {project}..."); - var res = dotnet.Restore(new(project, PackageDirectory.DirInfo.FullName, ForceDotnetRefAssemblyFetching: true, extraArgs, TargetWindows: isWindows)); + var res = dotnet.Restore(new(project, PackageDirectory.DirInfo.FullName, ForceDotnetRefAssemblyFetching: true, ExtraArgs: explicitRestoreSources, TargetWindows: isWindows)); assets.AddDependenciesRange(res.AssetsFilePaths); lock (sync) { @@ -780,20 +778,20 @@ private HashSet GetExcludedFeeds() /// The set of package feeds to check. /// /// True if all feeds are reachable or false otherwise. - /// Also returns the list of reachable feeds. + /// Also returns the list of reachable feeds as an out parameter. /// - private (bool, List) CheckSpecifiedFeeds(HashSet feeds) + private bool CheckSpecifiedFeeds(HashSet feeds, out List reachableFeeds) { // Exclude any feeds that are configured by the corresponding environment variable. var excludedFeeds = GetExcludedFeeds(); var feedsToCheck = feeds.Where(feed => !excludedFeeds.Contains(feed)).ToHashSet(); - var reachableFeeds = GetReachableNuGetFeeds(feedsToCheck, isFallback: false); + reachableFeeds = GetReachableNuGetFeeds(feedsToCheck, isFallback: false); var allFeedsReachable = reachableFeeds.Count == feedsToCheck.Count; EmitUnreachableFeedsDiagnostics(allFeedsReachable); - return (allFeedsReachable, reachableFeeds); + return allFeedsReachable; } /// @@ -899,13 +897,23 @@ private IEnumerable GetFeeds(Func> getNugetFeeds) logger.LogDebug("No NuGet feeds found in nuget.config files."); } - // todo: this could be improved. - HashSet? allFeeds = null; + // If private package registries are configured for C#, then consider those + // in addition to the ones that are configured in `nuget.config` files. + if (HasPrivateRegistryFeeds) + { + logger.LogInfo($"Found {PrivateRegistryFeeds.Count} private registry feeds configured for C#: {string.Join(", ", PrivateRegistryFeeds.OrderBy(f => f))}"); + explicitFeeds.UnionWith(PrivateRegistryFeeds); + } + + HashSet allFeeds = []; + + // Add all explicitFeeds to the set of all feeds. + allFeeds.UnionWith(explicitFeeds); if (nugetConfigs.Count > 0) { // We don't have to get the feeds from each of the folders from below, it would be enought to check the folders that recursively contain the others. - allFeeds = nugetConfigs + var nugetConfigFeeds = nugetConfigs .Select(config => { try @@ -922,18 +930,13 @@ private IEnumerable GetFeeds(Func> getNugetFeeds) .SelectMany(folder => GetFeeds(() => dotnet.GetNugetFeedsFromFolder(folder!))) .ToHashSet(); - // If we have discovered any explicit feeds, then we also expect these to be in the set of all feeds. - // Normally, it is a safe assumption to make that `GetNugetFeedsFromFolder` will include the feeds configured - // in a NuGet configuration file in the given directory. There is one exception: on a system with case-sensitive - // file systems, we may discover a configuration file such as `Nuget.Config` which is not recognised by `dotnet nuget`. - // In that case, our call to `GetNugetFeeds` will retrieve the feeds from that file (because it is accepted when - // provided explicitly as `--configfile` argument), but the call to `GetNugetFeedsFromFolder` will not. - allFeeds.UnionWith(explicitFeeds); + allFeeds.UnionWith(nugetConfigFeeds); } else { // If we haven't found any `nuget.config` files, then obtain a list of feeds from the root source directory. - allFeeds = GetFeeds(() => dotnet.GetNugetFeedsFromFolder(fileProvider.SourceDir.FullName)).ToHashSet(); + var nugetFeedsFromRoot = GetFeeds(() => dotnet.GetNugetFeedsFromFolder(fileProvider.SourceDir.FullName)); + allFeeds.UnionWith(nugetFeedsFromRoot); } logger.LogInfo($"Found {allFeeds.Count} NuGet feeds (with inherited ones) in nuget.config files: {string.Join(", ", allFeeds.OrderBy(f => f))}"); From 4dad62c481cce5b966c8480e19b06d8e93d25cf6 Mon Sep 17 00:00:00 2001 From: Michael Nebel Date: Thu, 9 Apr 2026 15:06:40 +0200 Subject: [PATCH 068/260] C#: Make sure that the feeds that excluded for the feed check (based on an environment variable setting) are still used as sources. --- .../NugetPackageRestorer.cs | 51 ++++++++++++------- 1 file changed, 33 insertions(+), 18 deletions(-) diff --git a/csharp/extractor/Semmle.Extraction.CSharp.DependencyFetching/NugetPackageRestorer.cs b/csharp/extractor/Semmle.Extraction.CSharp.DependencyFetching/NugetPackageRestorer.cs index 127c9b04f694..b534a2b697ce 100644 --- a/csharp/extractor/Semmle.Extraction.CSharp.DependencyFetching/NugetPackageRestorer.cs +++ b/csharp/extractor/Semmle.Extraction.CSharp.DependencyFetching/NugetPackageRestorer.cs @@ -20,7 +20,6 @@ internal sealed partial class NugetPackageRestorer : IDisposable { internal const string PublicNugetOrgFeed = "https://api.nuget.org/v3/index.json"; - private readonly bool checkNugetFeedResponsiveness = EnvironmentVariables.GetBooleanOptOut(EnvironmentVariableNames.CheckNugetFeedResponsiveness); private readonly FileProvider fileProvider; private readonly FileContent fileContent; private readonly IDotNet dotnet; @@ -30,6 +29,8 @@ internal sealed partial class NugetPackageRestorer : IDisposable private readonly DependencyDirectory missingPackageDirectory; private readonly ILogger logger; private readonly ICompilationInfoContainer compilationInfoContainer; + private readonly Lazy lazyCheckNugetFeedResponsiveness = new(() => EnvironmentVariables.GetBooleanOptOut(EnvironmentVariableNames.CheckNugetFeedResponsiveness)); + private bool CheckNugetFeedResponsiveness => lazyCheckNugetFeedResponsiveness.Value; private HashSet PrivateRegistryFeeds => dependabotProxy?.RegistryURLs ?? []; private bool HasPrivateRegistryFeeds => PrivateRegistryFeeds.Any(); @@ -113,15 +114,14 @@ public DirectoryInfo[] GetOrderedPackageVersionSubDirectories(string packagePath public HashSet Restore() { var assemblyLookupLocations = new HashSet(); - logger.LogInfo($"Checking NuGet feed responsiveness: {checkNugetFeedResponsiveness}"); - compilationInfoContainer.CompilationInfos.Add(("NuGet feed responsiveness checked", checkNugetFeedResponsiveness ? "1" : "0")); + logger.LogInfo($"Checking NuGet feed responsiveness: {CheckNugetFeedResponsiveness}"); + compilationInfoContainer.CompilationInfos.Add(("NuGet feed responsiveness checked", CheckNugetFeedResponsiveness ? "1" : "0")); HashSet explicitFeeds = []; string? explicitRestoreSources = null; try { - HashSet reachableFeeds = []; HashSet allFeeds = []; // Find feeds that are configured in NuGet.config files and divide them into ones that @@ -129,7 +129,7 @@ public HashSet Restore() // (including inherited ones) from other locations on the host outside of the working directory. (explicitFeeds, allFeeds) = GetAllFeeds(); - if (checkNugetFeedResponsiveness) + if (CheckNugetFeedResponsiveness) { var inheritedFeeds = allFeeds.Except(explicitFeeds).ToHashSet(); @@ -138,11 +138,7 @@ public HashSet Restore() compilationInfoContainer.CompilationInfos.Add(("Inherited NuGet feed count", inheritedFeeds.Count.ToString())); } - var explicitFeedsReachable = CheckSpecifiedFeeds(explicitFeeds, out var reachableExplicitFeeds); - reachableFeeds.UnionWith(reachableExplicitFeeds); - reachableFeeds.UnionWith(GetReachableNuGetFeeds(inheritedFeeds, isFallback: false)); - - if (!explicitFeedsReachable) + if (!CheckSpecifiedFeeds(explicitFeeds, out var reachableFeeds)) { // todo: we could also check the reachability of the inherited nuget feeds, but to use those in the fallback we would need to handle authentication too. var unresponsiveMissingPackageLocation = DownloadMissingPackagesFromSpecificFeeds([], explicitFeeds); @@ -151,6 +147,8 @@ public HashSet Restore() : [unresponsiveMissingPackageLocation]; } + reachableFeeds.UnionWith(GetReachableNuGetFeeds(inheritedFeeds, isFallback: false)); + // If feed responsiveness is being checked, we only want to use the feeds that are reachable (note this set includes private // registry feeds if they are reachable). explicitRestoreSources = MakeRestoreSourcesArgument(reachableFeeds); @@ -216,7 +214,7 @@ public HashSet Restore() var usedPackageNames = GetAllUsedPackageDirNames(dependencies); - var missingPackageLocation = checkNugetFeedResponsiveness + var missingPackageLocation = CheckNugetFeedResponsiveness ? DownloadMissingPackagesFromSpecificFeeds(usedPackageNames, explicitFeeds) : DownloadMissingPackages(usedPackageNames); @@ -233,7 +231,7 @@ public HashSet Restore() /// The feeds to check. /// Whether the feeds are fallback feeds or not. /// The list of feeds that could be reached. - private List GetReachableNuGetFeeds(HashSet feedsToCheck, bool isFallback) + private HashSet GetReachableNuGetFeeds(HashSet feedsToCheck, bool isFallback) { var fallbackStr = isFallback ? "fallback " : ""; logger.LogInfo($"Checking {fallbackStr}NuGet feed reachability on feeds: {string.Join(", ", feedsToCheck.OrderBy(f => f))}"); @@ -241,7 +239,7 @@ private List GetReachableNuGetFeeds(HashSet feedsToCheck, bool i var (initialTimeout, tryCount) = GetFeedRequestSettings(isFallback); var reachableFeeds = feedsToCheck .Where(feed => IsFeedReachable(feed, initialTimeout, tryCount, allowExceptions: false)) - .ToList(); + .ToHashSet(); if (reachableFeeds.Count == 0) { @@ -255,7 +253,7 @@ private List GetReachableNuGetFeeds(HashSet feedsToCheck, bool i return reachableFeeds; } - private List GetReachableFallbackNugetFeeds(HashSet? feedsFromNugetConfigs) + private HashSet GetReachableFallbackNugetFeeds(HashSet? feedsFromNugetConfigs) { var fallbackFeeds = EnvironmentVariables.GetURLs(EnvironmentVariableNames.FallbackNugetFeeds).ToHashSet(); if (fallbackFeeds.Count == 0) @@ -778,19 +776,36 @@ private HashSet GetExcludedFeeds() /// The set of package feeds to check. /// /// True if all feeds are reachable or false otherwise. - /// Also returns the list of reachable feeds as an out parameter. + /// Also returns the set of reachable feeds as an out parameter. /// - private bool CheckSpecifiedFeeds(HashSet feeds, out List reachableFeeds) + private bool CheckSpecifiedFeeds(HashSet feeds, out HashSet reachableFeeds) { - // Exclude any feeds that are configured by the corresponding environment variable. + // Exclude any feeds from the feed check that are configured by the corresponding environment variable. + // These feeds are always assumed to be reachable. var excludedFeeds = GetExcludedFeeds(); - var feedsToCheck = feeds.Where(feed => !excludedFeeds.Contains(feed)).ToHashSet(); + HashSet feedsToCheck = []; + HashSet feedsNotToCheck = []; + foreach (var feed in feeds) + { + if (excludedFeeds.Contains(feed)) + { + logger.LogInfo($"Not checking reachability of NuGet feed '{feed}' as it is in the list of excluded feeds."); + feedsNotToCheck.Add(feed); + } + else + { + feedsToCheck.Add(feed); + } + } + reachableFeeds = GetReachableNuGetFeeds(feedsToCheck, isFallback: false); var allFeedsReachable = reachableFeeds.Count == feedsToCheck.Count; EmitUnreachableFeedsDiagnostics(allFeedsReachable); + reachableFeeds.UnionWith(feedsNotToCheck); + return allFeedsReachable; } From c53b2f589b137a3c7674644dac0afba6c3e3c5f4 Mon Sep 17 00:00:00 2001 From: Michael Nebel Date: Thu, 9 Apr 2026 15:24:37 +0200 Subject: [PATCH 069/260] C#: Remove redundant out parameter from CheckSpecifiedFeeds. --- .../NugetPackageRestorer.cs | 33 ++++++++----------- 1 file changed, 14 insertions(+), 19 deletions(-) diff --git a/csharp/extractor/Semmle.Extraction.CSharp.DependencyFetching/NugetPackageRestorer.cs b/csharp/extractor/Semmle.Extraction.CSharp.DependencyFetching/NugetPackageRestorer.cs index b534a2b697ce..e508184563f4 100644 --- a/csharp/extractor/Semmle.Extraction.CSharp.DependencyFetching/NugetPackageRestorer.cs +++ b/csharp/extractor/Semmle.Extraction.CSharp.DependencyFetching/NugetPackageRestorer.cs @@ -138,7 +138,7 @@ public HashSet Restore() compilationInfoContainer.CompilationInfos.Add(("Inherited NuGet feed count", inheritedFeeds.Count.ToString())); } - if (!CheckSpecifiedFeeds(explicitFeeds, out var reachableFeeds)) + if (!CheckSpecifiedFeeds(explicitFeeds)) { // todo: we could also check the reachability of the inherited nuget feeds, but to use those in the fallback we would need to handle authentication too. var unresponsiveMissingPackageLocation = DownloadMissingPackagesFromSpecificFeeds([], explicitFeeds); @@ -147,6 +147,9 @@ public HashSet Restore() : [unresponsiveMissingPackageLocation]; } + // All explicit feeds can be considered reachable + HashSet reachableFeeds = []; + reachableFeeds.UnionWith(explicitFeeds); reachableFeeds.UnionWith(GetReachableNuGetFeeds(inheritedFeeds, isFallback: false)); // If feed responsiveness is being checked, we only want to use the feeds that are reachable (note this set includes private @@ -231,7 +234,7 @@ public HashSet Restore() /// The feeds to check. /// Whether the feeds are fallback feeds or not. /// The list of feeds that could be reached. - private HashSet GetReachableNuGetFeeds(HashSet feedsToCheck, bool isFallback) + private List GetReachableNuGetFeeds(HashSet feedsToCheck, bool isFallback) { var fallbackStr = isFallback ? "fallback " : ""; logger.LogInfo($"Checking {fallbackStr}NuGet feed reachability on feeds: {string.Join(", ", feedsToCheck.OrderBy(f => f))}"); @@ -239,7 +242,7 @@ private HashSet GetReachableNuGetFeeds(HashSet feedsToCheck, boo var (initialTimeout, tryCount) = GetFeedRequestSettings(isFallback); var reachableFeeds = feedsToCheck .Where(feed => IsFeedReachable(feed, initialTimeout, tryCount, allowExceptions: false)) - .ToHashSet(); + .ToList(); if (reachableFeeds.Count == 0) { @@ -253,7 +256,7 @@ private HashSet GetReachableNuGetFeeds(HashSet feedsToCheck, boo return reachableFeeds; } - private HashSet GetReachableFallbackNugetFeeds(HashSet? feedsFromNugetConfigs) + private List GetReachableFallbackNugetFeeds(HashSet? feedsFromNugetConfigs) { var fallbackFeeds = EnvironmentVariables.GetURLs(EnvironmentVariableNames.FallbackNugetFeeds).ToHashSet(); if (fallbackFeeds.Count == 0) @@ -775,37 +778,29 @@ private HashSet GetExcludedFeeds() /// /// The set of package feeds to check. /// - /// True if all feeds are reachable or false otherwise. - /// Also returns the set of reachable feeds as an out parameter. + /// True if all feeds are reachable (excluding any feeds that are configured to be excluded from the check) or false otherwise. /// - private bool CheckSpecifiedFeeds(HashSet feeds, out HashSet reachableFeeds) + private bool CheckSpecifiedFeeds(HashSet feeds) { // Exclude any feeds from the feed check that are configured by the corresponding environment variable. // These feeds are always assumed to be reachable. var excludedFeeds = GetExcludedFeeds(); - HashSet feedsToCheck = []; - HashSet feedsNotToCheck = []; - foreach (var feed in feeds) + HashSet feedsToCheck = feeds.Where(feed => { if (excludedFeeds.Contains(feed)) { logger.LogInfo($"Not checking reachability of NuGet feed '{feed}' as it is in the list of excluded feeds."); - feedsNotToCheck.Add(feed); - } - else - { - feedsToCheck.Add(feed); + return false; } - } + return true; + }).ToHashSet(); - reachableFeeds = GetReachableNuGetFeeds(feedsToCheck, isFallback: false); + var reachableFeeds = GetReachableNuGetFeeds(feedsToCheck, isFallback: false); var allFeedsReachable = reachableFeeds.Count == feedsToCheck.Count; EmitUnreachableFeedsDiagnostics(allFeedsReachable); - reachableFeeds.UnionWith(feedsNotToCheck); - return allFeedsReachable; } From b95a8aa3786c2d8cb217a90a1ee95dd0439decef Mon Sep 17 00:00:00 2001 From: Michael Nebel Date: Thu, 9 Apr 2026 15:39:43 +0200 Subject: [PATCH 070/260] C#: Address review comments. --- .../NugetPackageRestorer.cs | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/csharp/extractor/Semmle.Extraction.CSharp.DependencyFetching/NugetPackageRestorer.cs b/csharp/extractor/Semmle.Extraction.CSharp.DependencyFetching/NugetPackageRestorer.cs index e508184563f4..d2bcd6167ba1 100644 --- a/csharp/extractor/Semmle.Extraction.CSharp.DependencyFetching/NugetPackageRestorer.cs +++ b/csharp/extractor/Semmle.Extraction.CSharp.DependencyFetching/NugetPackageRestorer.cs @@ -122,12 +122,10 @@ public HashSet Restore() try { - HashSet allFeeds = []; - // Find feeds that are configured in NuGet.config files and divide them into ones that // are explicitly configured for the project or by a private registry, and "all feeds" // (including inherited ones) from other locations on the host outside of the working directory. - (explicitFeeds, allFeeds) = GetAllFeeds(); + (explicitFeeds, var allFeeds) = GetAllFeeds(); if (CheckNugetFeedResponsiveness) { From 21fb44d0bad7680dfb0b91255cb83e35a6e8faa7 Mon Sep 17 00:00:00 2001 From: Michael Nebel Date: Thu, 9 Apr 2026 15:49:53 +0200 Subject: [PATCH 071/260] C#: Re-add the compilation information on reachable fallback NuGet feed count. --- .../NugetPackageRestorer.cs | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/csharp/extractor/Semmle.Extraction.CSharp.DependencyFetching/NugetPackageRestorer.cs b/csharp/extractor/Semmle.Extraction.CSharp.DependencyFetching/NugetPackageRestorer.cs index d2bcd6167ba1..601de70695de 100644 --- a/csharp/extractor/Semmle.Extraction.CSharp.DependencyFetching/NugetPackageRestorer.cs +++ b/csharp/extractor/Semmle.Extraction.CSharp.DependencyFetching/NugetPackageRestorer.cs @@ -274,7 +274,11 @@ private List GetReachableFallbackNugetFeeds(HashSet? feedsFromNu } } - return GetReachableNuGetFeeds(fallbackFeeds, isFallback: true); + var reachableFallbackFeeds = GetReachableNuGetFeeds(fallbackFeeds, isFallback: true); + + compilationInfoContainer.CompilationInfos.Add(("Reachable fallback NuGet feed count", reachableFallbackFeeds.Count.ToString())); + + return reachableFallbackFeeds; } /// From 1dfe30deaf3fd1f0574795d344e8f500179272d8 Mon Sep 17 00:00:00 2001 From: Michael Nebel Date: Fri, 10 Apr 2026 09:02:59 +0200 Subject: [PATCH 072/260] C#: For specific listed nuget feeds in a project, still allow their use unless there is a timeout when trying to reach them. --- .../NugetPackageRestorer.cs | 18 ++++++++++-------- 1 file changed, 10 insertions(+), 8 deletions(-) diff --git a/csharp/extractor/Semmle.Extraction.CSharp.DependencyFetching/NugetPackageRestorer.cs b/csharp/extractor/Semmle.Extraction.CSharp.DependencyFetching/NugetPackageRestorer.cs index 601de70695de..f0e8fed7b424 100644 --- a/csharp/extractor/Semmle.Extraction.CSharp.DependencyFetching/NugetPackageRestorer.cs +++ b/csharp/extractor/Semmle.Extraction.CSharp.DependencyFetching/NugetPackageRestorer.cs @@ -148,7 +148,8 @@ public HashSet Restore() // All explicit feeds can be considered reachable HashSet reachableFeeds = []; reachableFeeds.UnionWith(explicitFeeds); - reachableFeeds.UnionWith(GetReachableNuGetFeeds(inheritedFeeds, isFallback: false)); + // Inherited feeds should only be used, if they are indeed reachable (as they may be environment specific). + reachableFeeds.UnionWith(GetReachableNuGetFeeds(inheritedFeeds, isFallback: false, allowNonTimeoutExceptions: false)); // If feed responsiveness is being checked, we only want to use the feeds that are reachable (note this set includes private // registry feeds if they are reachable). @@ -231,15 +232,16 @@ public HashSet Restore() /// /// The feeds to check. /// Whether the feeds are fallback feeds or not. + /// Whether to allow non-timeout exceptions. /// The list of feeds that could be reached. - private List GetReachableNuGetFeeds(HashSet feedsToCheck, bool isFallback) + private List GetReachableNuGetFeeds(HashSet feedsToCheck, bool isFallback, bool allowNonTimeoutExceptions) { var fallbackStr = isFallback ? "fallback " : ""; logger.LogInfo($"Checking {fallbackStr}NuGet feed reachability on feeds: {string.Join(", ", feedsToCheck.OrderBy(f => f))}"); var (initialTimeout, tryCount) = GetFeedRequestSettings(isFallback); var reachableFeeds = feedsToCheck - .Where(feed => IsFeedReachable(feed, initialTimeout, tryCount, allowExceptions: false)) + .Where(feed => IsFeedReachable(feed, initialTimeout, tryCount, allowNonTimeoutExceptions)) .ToList(); if (reachableFeeds.Count == 0) @@ -274,7 +276,7 @@ private List GetReachableFallbackNugetFeeds(HashSet? feedsFromNu } } - var reachableFallbackFeeds = GetReachableNuGetFeeds(fallbackFeeds, isFallback: true); + var reachableFallbackFeeds = GetReachableNuGetFeeds(fallbackFeeds, isFallback: true, allowNonTimeoutExceptions: false); compilationInfoContainer.CompilationInfos.Add(("Reachable fallback NuGet feed count", reachableFallbackFeeds.Count.ToString())); @@ -675,7 +677,7 @@ private static async Task ExecuteGetRequest(string address, HttpClient httpClien } } - private bool IsFeedReachable(string feed, int timeoutMilliSeconds, int tryCount, bool allowExceptions = true) + private bool IsFeedReachable(string feed, int timeoutMilliSeconds, int tryCount, bool allowNonTimeoutExceptions) { logger.LogInfo($"Checking if NuGet feed '{feed}' is reachable..."); @@ -730,9 +732,9 @@ private bool IsFeedReachable(string feed, int timeoutMilliSeconds, int tryCount, } // We're only interested in timeouts. - var start = allowExceptions ? "Considering" : "Not considering"; + var start = allowNonTimeoutExceptions ? "Considering" : "Not considering"; logger.LogInfo($"Querying NuGet feed '{feed}' failed in a timely manner. {start} the feed for use. The reason for the failure: {exc.Message}"); - return allowExceptions; + return allowNonTimeoutExceptions; } } @@ -798,7 +800,7 @@ private bool CheckSpecifiedFeeds(HashSet feeds) return true; }).ToHashSet(); - var reachableFeeds = GetReachableNuGetFeeds(feedsToCheck, isFallback: false); + var reachableFeeds = GetReachableNuGetFeeds(feedsToCheck, isFallback: false, allowNonTimeoutExceptions: true); var allFeedsReachable = reachableFeeds.Count == feedsToCheck.Count; EmitUnreachableFeedsDiagnostics(allFeedsReachable); From 8369c926b1886cca760ceb66af36e6e98bd9ae0f Mon Sep 17 00:00:00 2001 From: Michael Nebel Date: Fri, 10 Apr 2026 10:02:13 +0200 Subject: [PATCH 073/260] C#: Simplify and improve the reachability check and improve the logging. --- .../NugetPackageRestorer.cs | 22 +++++++++---------- 1 file changed, 10 insertions(+), 12 deletions(-) diff --git a/csharp/extractor/Semmle.Extraction.CSharp.DependencyFetching/NugetPackageRestorer.cs b/csharp/extractor/Semmle.Extraction.CSharp.DependencyFetching/NugetPackageRestorer.cs index f0e8fed7b424..4c196b5d627f 100644 --- a/csharp/extractor/Semmle.Extraction.CSharp.DependencyFetching/NugetPackageRestorer.cs +++ b/csharp/extractor/Semmle.Extraction.CSharp.DependencyFetching/NugetPackageRestorer.cs @@ -666,15 +666,9 @@ private void TryChangeProjectFile(DirectoryInfo projectDir, Regex pattern, strin } } - private static async Task ExecuteGetRequest(string address, HttpClient httpClient, CancellationToken cancellationToken) + private static async Task ExecuteGetRequest(string address, HttpClient httpClient, CancellationToken cancellationToken) { - using var stream = await httpClient.GetStreamAsync(address, cancellationToken); - var buffer = new byte[1024]; - int bytesRead; - while ((bytesRead = stream.Read(buffer, 0, buffer.Length)) > 0) - { - // do nothing - } + return await httpClient.GetAsync(address, cancellationToken); } private bool IsFeedReachable(string feed, int timeoutMilliSeconds, int tryCount, bool allowNonTimeoutExceptions) @@ -716,7 +710,9 @@ private bool IsFeedReachable(string feed, int timeoutMilliSeconds, int tryCount, cts.CancelAfter(timeoutMilliSeconds); try { - ExecuteGetRequest(feed, client, cts.Token).GetAwaiter().GetResult(); + logger.LogInfo($"Attempt {i + 1}/{tryCount} to reach NuGet feed '{feed}'."); + var response = ExecuteGetRequest(feed, client, cts.Token).GetAwaiter().GetResult(); + response.EnsureSuccessStatusCode(); logger.LogInfo($"Querying NuGet feed '{feed}' succeeded."); return true; } @@ -731,9 +727,11 @@ private bool IsFeedReachable(string feed, int timeoutMilliSeconds, int tryCount, continue; } - // We're only interested in timeouts. - var start = allowNonTimeoutExceptions ? "Considering" : "Not considering"; - logger.LogInfo($"Querying NuGet feed '{feed}' failed in a timely manner. {start} the feed for use. The reason for the failure: {exc.Message}"); + // Adjust the message based on whether non-timeout exceptions are allowed. + var useMessage = allowNonTimeoutExceptions + ? "Considering the feed for use despite of the failure as it wasn't a timeout." + : "Not considering the feed for use."; + logger.LogInfo($"Querying NuGet feed '{feed}' failed. {useMessage} The reason for the failure: {exc.Message}"); return allowNonTimeoutExceptions; } } From 1ee6d631c6614aa4b33f81800c625175b2f415bf Mon Sep 17 00:00:00 2001 From: Michael Nebel Date: Fri, 10 Apr 2026 11:47:12 +0200 Subject: [PATCH 074/260] C#: Rename ExtraArgs to NugetSources. --- .../DotNet.cs | 4 ++-- .../IDotNet.cs | 2 +- .../NugetPackageRestorer.cs | 16 ++++++++-------- 3 files changed, 11 insertions(+), 11 deletions(-) diff --git a/csharp/extractor/Semmle.Extraction.CSharp.DependencyFetching/DotNet.cs b/csharp/extractor/Semmle.Extraction.CSharp.DependencyFetching/DotNet.cs index 9d3d79e4c4ff..699e06d273c8 100644 --- a/csharp/extractor/Semmle.Extraction.CSharp.DependencyFetching/DotNet.cs +++ b/csharp/extractor/Semmle.Extraction.CSharp.DependencyFetching/DotNet.cs @@ -95,9 +95,9 @@ private string GetRestoreArgs(RestoreSettings restoreSettings) args += " /p:EnableWindowsTargeting=true"; } - if (restoreSettings.ExtraArgs is not null) + if (restoreSettings.NugetSources is not null) { - args += $" {restoreSettings.ExtraArgs}"; + args += $" {restoreSettings.NugetSources}"; } return args; diff --git a/csharp/extractor/Semmle.Extraction.CSharp.DependencyFetching/IDotNet.cs b/csharp/extractor/Semmle.Extraction.CSharp.DependencyFetching/IDotNet.cs index eec6a2b8d3b2..58d4f9b550b9 100644 --- a/csharp/extractor/Semmle.Extraction.CSharp.DependencyFetching/IDotNet.cs +++ b/csharp/extractor/Semmle.Extraction.CSharp.DependencyFetching/IDotNet.cs @@ -17,7 +17,7 @@ public interface IDotNet IList GetNugetFeedsFromFolder(string folderPath); } - public record class RestoreSettings(string File, string PackageDirectory, bool ForceDotnetRefAssemblyFetching, string? ExtraArgs = null, string? PathToNugetConfig = null, bool ForceReevaluation = false, bool TargetWindows = false); + public record class RestoreSettings(string File, string PackageDirectory, bool ForceDotnetRefAssemblyFetching, string? NugetSources = null, string? PathToNugetConfig = null, bool ForceReevaluation = false, bool TargetWindows = false); public partial record class RestoreResult(bool Success, IList Output) { diff --git a/csharp/extractor/Semmle.Extraction.CSharp.DependencyFetching/NugetPackageRestorer.cs b/csharp/extractor/Semmle.Extraction.CSharp.DependencyFetching/NugetPackageRestorer.cs index 4c196b5d627f..9c4073e78b7d 100644 --- a/csharp/extractor/Semmle.Extraction.CSharp.DependencyFetching/NugetPackageRestorer.cs +++ b/csharp/extractor/Semmle.Extraction.CSharp.DependencyFetching/NugetPackageRestorer.cs @@ -118,7 +118,7 @@ public HashSet Restore() compilationInfoContainer.CompilationInfos.Add(("NuGet feed responsiveness checked", CheckNugetFeedResponsiveness ? "1" : "0")); HashSet explicitFeeds = []; - string? explicitRestoreSources = null; + string? explicitNugetSources = null; try { @@ -153,13 +153,13 @@ public HashSet Restore() // If feed responsiveness is being checked, we only want to use the feeds that are reachable (note this set includes private // registry feeds if they are reachable). - explicitRestoreSources = MakeRestoreSourcesArgument(reachableFeeds); + explicitNugetSources = MakeRestoreSourcesArgument(reachableFeeds); } else if (HasPrivateRegistryFeeds) { // If private registries are configured they need to be included as sources for the restore, which requires that // they are provided as source arguments for the restore. The private registries are included in the `allFeeds` set. - explicitRestoreSources = MakeRestoreSourcesArgument(allFeeds); + explicitNugetSources = MakeRestoreSourcesArgument(allFeeds); } using (var nuget = new NugetExeWrapper(fileProvider, legacyPackageDirectory, logger)) @@ -202,9 +202,9 @@ public HashSet Restore() } // Restore project dependencies with `dotnet restore`. - var restoredProjects = RestoreSolutions(explicitRestoreSources, out var container); + var restoredProjects = RestoreSolutions(explicitNugetSources, out var container); var projects = fileProvider.Projects.Except(restoredProjects); - RestoreProjects(projects, explicitRestoreSources, out var containers); + RestoreProjects(projects, explicitNugetSources, out var containers); var dependencies = containers.Flatten(container); @@ -291,7 +291,7 @@ private List GetReachableFallbackNugetFeeds(HashSet? feedsFromNu /// Populates dependencies with the relevant dependencies from the assets files generated by the restore. /// Returns a list of projects that are up to date with respect to restore. /// - private IEnumerable RestoreSolutions(string? explicitRestoreSources, out DependencyContainer dependencies) + private IEnumerable RestoreSolutions(string? nugetSources, out DependencyContainer dependencies) { var successCount = 0; var nugetSourceFailures = 0; @@ -302,7 +302,7 @@ private IEnumerable RestoreSolutions(string? explicitRestoreSources, out var projects = fileProvider.Solutions.SelectMany(solution => { logger.LogInfo($"Restoring solution {solution}..."); - var res = dotnet.Restore(new(solution, PackageDirectory.DirInfo.FullName, ForceDotnetRefAssemblyFetching: true, ExtraArgs: explicitRestoreSources, TargetWindows: isWindows)); + var res = dotnet.Restore(new(solution, PackageDirectory.DirInfo.FullName, ForceDotnetRefAssemblyFetching: true, NugetSources: nugetSources, TargetWindows: isWindows)); if (res.Success) { successCount++; @@ -357,7 +357,7 @@ private void RestoreProjects(IEnumerable projects, string? explicitResto foreach (var project in projectGroup) { logger.LogInfo($"Restoring project {project}..."); - var res = dotnet.Restore(new(project, PackageDirectory.DirInfo.FullName, ForceDotnetRefAssemblyFetching: true, ExtraArgs: explicitRestoreSources, TargetWindows: isWindows)); + var res = dotnet.Restore(new(project, PackageDirectory.DirInfo.FullName, ForceDotnetRefAssemblyFetching: true, NugetSources: explicitRestoreSources, TargetWindows: isWindows)); assets.AddDependenciesRange(res.AssetsFilePaths); lock (sync) { From e6df1d8d8ac7ace329549df346b5e47f9a2a6f89 Mon Sep 17 00:00:00 2001 From: Michael Nebel Date: Fri, 10 Apr 2026 13:11:47 +0200 Subject: [PATCH 075/260] C#: Handle special case when no feeds are reachable. --- .../NugetPackageRestorer.cs | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/csharp/extractor/Semmle.Extraction.CSharp.DependencyFetching/NugetPackageRestorer.cs b/csharp/extractor/Semmle.Extraction.CSharp.DependencyFetching/NugetPackageRestorer.cs index 9c4073e78b7d..39852bcab2fa 100644 --- a/csharp/extractor/Semmle.Extraction.CSharp.DependencyFetching/NugetPackageRestorer.cs +++ b/csharp/extractor/Semmle.Extraction.CSharp.DependencyFetching/NugetPackageRestorer.cs @@ -27,6 +27,7 @@ internal sealed partial class NugetPackageRestorer : IDisposable private readonly IDiagnosticsWriter diagnosticsWriter; private readonly DependencyDirectory legacyPackageDirectory; private readonly DependencyDirectory missingPackageDirectory; + private readonly DependencyDirectory emptyPackageDirectory; private readonly ILogger logger; private readonly ICompilationInfoContainer compilationInfoContainer; private readonly Lazy lazyCheckNugetFeedResponsiveness = new(() => EnvironmentVariables.GetBooleanOptOut(EnvironmentVariableNames.CheckNugetFeedResponsiveness)); @@ -56,6 +57,7 @@ public NugetPackageRestorer( PackageDirectory = new DependencyDirectory("packages", "package", logger); legacyPackageDirectory = new DependencyDirectory("legacypackages", "legacy package", logger); missingPackageDirectory = new DependencyDirectory("missingpackages", "missing package", logger); + emptyPackageDirectory = new DependencyDirectory("empty", "empty package", logger); } public string? TryRestore(string package) @@ -323,6 +325,12 @@ private IEnumerable RestoreSolutions(string? nugetSources, out Dependenc private string? MakeRestoreSourcesArgument(IEnumerable feeds) { + // If there are no feeds, we want to override any default feeds that `dotnet restore` would use by passing a dummy source argument. + if (!feeds.Any()) + { + return $" -s \"{emptyPackageDirectory.DirInfo.FullName}\""; + } + // Add package sources. If any are present, they override all sources specified in // the configuration file(s). var feedArgs = new StringBuilder(); @@ -973,6 +981,7 @@ public void Dispose() PackageDirectory?.Dispose(); legacyPackageDirectory?.Dispose(); missingPackageDirectory?.Dispose(); + emptyPackageDirectory?.Dispose(); } /// From c0a1dd0524f90b2f29e767a0157471784c4ad9ab Mon Sep 17 00:00:00 2001 From: Michael Nebel Date: Fri, 10 Apr 2026 13:38:03 +0200 Subject: [PATCH 076/260] C#: Only use the default package source when using nuget.exe if it is reachable. --- .../NugetExeWrapper.cs | 4 ++-- .../NugetPackageRestorer.cs | 13 ++++++++++++- 2 files changed, 14 insertions(+), 3 deletions(-) diff --git a/csharp/extractor/Semmle.Extraction.CSharp.DependencyFetching/NugetExeWrapper.cs b/csharp/extractor/Semmle.Extraction.CSharp.DependencyFetching/NugetExeWrapper.cs index b90b388e865c..e97b0b118c68 100644 --- a/csharp/extractor/Semmle.Extraction.CSharp.DependencyFetching/NugetExeWrapper.cs +++ b/csharp/extractor/Semmle.Extraction.CSharp.DependencyFetching/NugetExeWrapper.cs @@ -33,7 +33,7 @@ internal class NugetExeWrapper : IDisposable /// /// Create the package manager for a specified source tree. /// - public NugetExeWrapper(FileProvider fileProvider, DependencyDirectory packageDirectory, Semmle.Util.Logging.ILogger logger) + public NugetExeWrapper(FileProvider fileProvider, DependencyDirectory packageDirectory, Semmle.Util.Logging.ILogger logger, Func useDefaultFeed) { this.fileProvider = fileProvider; this.packageDirectory = packageDirectory; @@ -43,7 +43,7 @@ public NugetExeWrapper(FileProvider fileProvider, DependencyDirectory packageDir { logger.LogInfo($"Found packages.config files, trying to use nuget.exe for package restore"); nugetExe = ResolveNugetExe(); - if (HasNoPackageSource()) + if (HasNoPackageSource() && useDefaultFeed()) { // We only modify or add a top level nuget.config file nugetConfigPath = Path.Combine(fileProvider.SourceDir.FullName, "nuget.config"); diff --git a/csharp/extractor/Semmle.Extraction.CSharp.DependencyFetching/NugetPackageRestorer.cs b/csharp/extractor/Semmle.Extraction.CSharp.DependencyFetching/NugetPackageRestorer.cs index 39852bcab2fa..d3a8020543ce 100644 --- a/csharp/extractor/Semmle.Extraction.CSharp.DependencyFetching/NugetPackageRestorer.cs +++ b/csharp/extractor/Semmle.Extraction.CSharp.DependencyFetching/NugetPackageRestorer.cs @@ -164,7 +164,7 @@ public HashSet Restore() explicitNugetSources = MakeRestoreSourcesArgument(allFeeds); } - using (var nuget = new NugetExeWrapper(fileProvider, legacyPackageDirectory, logger)) + using (var nuget = new NugetExeWrapper(fileProvider, legacyPackageDirectory, logger, IsDefaultFeedReachable)) { var count = nuget.InstallPackages(); @@ -258,6 +258,17 @@ private List GetReachableNuGetFeeds(HashSet feedsToCheck, bool i return reachableFeeds; } + private bool IsDefaultFeedReachable() + { + if (CheckNugetFeedResponsiveness) + { + var (initialTimeout, tryCount) = GetFeedRequestSettings(isFallback: false); + return IsFeedReachable(PublicNugetOrgFeed, initialTimeout, tryCount, allowNonTimeoutExceptions: false); + } + + return true; + } + private List GetReachableFallbackNugetFeeds(HashSet? feedsFromNugetConfigs) { var fallbackFeeds = EnvironmentVariables.GetURLs(EnvironmentVariableNames.FallbackNugetFeeds).ToHashSet(); From 8372a37f74206ca8f4a022d9873e783d9418e043 Mon Sep 17 00:00:00 2001 From: Michael Nebel Date: Fri, 10 Apr 2026 16:13:12 +0200 Subject: [PATCH 077/260] C#: Only include feeds that we can connect to. --- .../NugetPackageRestorer.cs | 53 ++++++++++--------- 1 file changed, 29 insertions(+), 24 deletions(-) diff --git a/csharp/extractor/Semmle.Extraction.CSharp.DependencyFetching/NugetPackageRestorer.cs b/csharp/extractor/Semmle.Extraction.CSharp.DependencyFetching/NugetPackageRestorer.cs index d3a8020543ce..e6eb7320e34f 100644 --- a/csharp/extractor/Semmle.Extraction.CSharp.DependencyFetching/NugetPackageRestorer.cs +++ b/csharp/extractor/Semmle.Extraction.CSharp.DependencyFetching/NugetPackageRestorer.cs @@ -138,8 +138,9 @@ public HashSet Restore() compilationInfoContainer.CompilationInfos.Add(("Inherited NuGet feed count", inheritedFeeds.Count.ToString())); } - if (!CheckSpecifiedFeeds(explicitFeeds)) + if (!CheckSpecifiedFeeds(explicitFeeds, out var reachableFeeds)) { + // If we experience a timeout, we use this fallback. // todo: we could also check the reachability of the inherited nuget feeds, but to use those in the fallback we would need to handle authentication too. var unresponsiveMissingPackageLocation = DownloadMissingPackagesFromSpecificFeeds([], explicitFeeds); return unresponsiveMissingPackageLocation is null @@ -147,11 +148,8 @@ public HashSet Restore() : [unresponsiveMissingPackageLocation]; } - // All explicit feeds can be considered reachable - HashSet reachableFeeds = []; - reachableFeeds.UnionWith(explicitFeeds); // Inherited feeds should only be used, if they are indeed reachable (as they may be environment specific). - reachableFeeds.UnionWith(GetReachableNuGetFeeds(inheritedFeeds, isFallback: false, allowNonTimeoutExceptions: false)); + reachableFeeds.UnionWith(GetReachableNuGetFeeds(inheritedFeeds, isFallback: false, out var _)); // If feed responsiveness is being checked, we only want to use the feeds that are reachable (note this set includes private // registry feeds if they are reachable). @@ -234,16 +232,22 @@ public HashSet Restore() /// /// The feeds to check. /// Whether the feeds are fallback feeds or not. - /// Whether to allow non-timeout exceptions. + /// Whether a timeout occurred while checking the feeds. /// The list of feeds that could be reached. - private List GetReachableNuGetFeeds(HashSet feedsToCheck, bool isFallback, bool allowNonTimeoutExceptions) + private List GetReachableNuGetFeeds(HashSet feedsToCheck, bool isFallback, out bool isTimeout) { var fallbackStr = isFallback ? "fallback " : ""; logger.LogInfo($"Checking {fallbackStr}NuGet feed reachability on feeds: {string.Join(", ", feedsToCheck.OrderBy(f => f))}"); var (initialTimeout, tryCount) = GetFeedRequestSettings(isFallback); + var timeout = false; var reachableFeeds = feedsToCheck - .Where(feed => IsFeedReachable(feed, initialTimeout, tryCount, allowNonTimeoutExceptions)) + .Where(feed => + { + var reachable = IsFeedReachable(feed, initialTimeout, tryCount, out var feedTimeout); + timeout |= feedTimeout; + return reachable; + }) .ToList(); if (reachableFeeds.Count == 0) @@ -255,6 +259,7 @@ private List GetReachableNuGetFeeds(HashSet feedsToCheck, bool i logger.LogInfo($"Reachable {fallbackStr}NuGet feeds: {string.Join(", ", reachableFeeds.OrderBy(f => f))}"); } + isTimeout = timeout; return reachableFeeds; } @@ -263,7 +268,7 @@ private bool IsDefaultFeedReachable() if (CheckNugetFeedResponsiveness) { var (initialTimeout, tryCount) = GetFeedRequestSettings(isFallback: false); - return IsFeedReachable(PublicNugetOrgFeed, initialTimeout, tryCount, allowNonTimeoutExceptions: false); + return IsFeedReachable(PublicNugetOrgFeed, initialTimeout, tryCount, out var _); } return true; @@ -289,7 +294,7 @@ private List GetReachableFallbackNugetFeeds(HashSet? feedsFromNu } } - var reachableFallbackFeeds = GetReachableNuGetFeeds(fallbackFeeds, isFallback: true, allowNonTimeoutExceptions: false); + var reachableFallbackFeeds = GetReachableNuGetFeeds(fallbackFeeds, isFallback: true, out var _); compilationInfoContainer.CompilationInfos.Add(("Reachable fallback NuGet feed count", reachableFallbackFeeds.Count.ToString())); @@ -690,7 +695,7 @@ private static async Task ExecuteGetRequest(string address, return await httpClient.GetAsync(address, cancellationToken); } - private bool IsFeedReachable(string feed, int timeoutMilliSeconds, int tryCount, bool allowNonTimeoutExceptions) + private bool IsFeedReachable(string feed, int timeoutMilliSeconds, int tryCount, out bool isTimeout) { logger.LogInfo($"Checking if NuGet feed '{feed}' is reachable..."); @@ -723,6 +728,8 @@ private bool IsFeedReachable(string feed, int timeoutMilliSeconds, int tryCount, using HttpClient client = new(httpClientHandler); + isTimeout = false; + for (var i = 0; i < tryCount; i++) { using var cts = new CancellationTokenSource(); @@ -746,16 +753,13 @@ private bool IsFeedReachable(string feed, int timeoutMilliSeconds, int tryCount, continue; } - // Adjust the message based on whether non-timeout exceptions are allowed. - var useMessage = allowNonTimeoutExceptions - ? "Considering the feed for use despite of the failure as it wasn't a timeout." - : "Not considering the feed for use."; - logger.LogInfo($"Querying NuGet feed '{feed}' failed. {useMessage} The reason for the failure: {exc.Message}"); - return allowNonTimeoutExceptions; + logger.LogInfo($"Querying NuGet feed '{feed}' failed. The reason for the failure: {exc.Message}"); + return false; } } logger.LogWarning($"Didn't receive answer from NuGet feed '{feed}'. Tried it {tryCount} times."); + isTimeout = true; return false; } @@ -798,10 +802,12 @@ private HashSet GetExcludedFeeds() /// Checks that we can connect to the specified NuGet feeds. /// /// The set of package feeds to check. + /// The list of feeds that were reachable. /// - /// True if all feeds are reachable (excluding any feeds that are configured to be excluded from the check) or false otherwise. + /// True if there is no timeout when trying to reach the feeds (excluding any feeds that are configured + /// to be excluded from the check) or false otherwise. /// - private bool CheckSpecifiedFeeds(HashSet feeds) + private bool CheckSpecifiedFeeds(HashSet feeds, out HashSet reachableFeeds) { // Exclude any feeds from the feed check that are configured by the corresponding environment variable. // These feeds are always assumed to be reachable. @@ -817,12 +823,11 @@ private bool CheckSpecifiedFeeds(HashSet feeds) return true; }).ToHashSet(); - var reachableFeeds = GetReachableNuGetFeeds(feedsToCheck, isFallback: false, allowNonTimeoutExceptions: true); - var allFeedsReachable = reachableFeeds.Count == feedsToCheck.Count; - - EmitUnreachableFeedsDiagnostics(allFeedsReachable); + reachableFeeds = GetReachableNuGetFeeds(feedsToCheck, isFallback: false, out var isTimeout).ToHashSet(); - return allFeedsReachable; + var noTimeout = !isTimeout; + EmitUnreachableFeedsDiagnostics(noTimeout); + return noTimeout; } /// From 6f888f1544903ceea24e579c18da691f472fee82 Mon Sep 17 00:00:00 2001 From: Michael Nebel Date: Mon, 13 Apr 2026 11:00:48 +0200 Subject: [PATCH 078/260] C#: Change the All NuGet feed reachable telemetry. --- .../NugetPackageRestorer.cs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/csharp/extractor/Semmle.Extraction.CSharp.DependencyFetching/NugetPackageRestorer.cs b/csharp/extractor/Semmle.Extraction.CSharp.DependencyFetching/NugetPackageRestorer.cs index e6eb7320e34f..0888cf9d1580 100644 --- a/csharp/extractor/Semmle.Extraction.CSharp.DependencyFetching/NugetPackageRestorer.cs +++ b/csharp/extractor/Semmle.Extraction.CSharp.DependencyFetching/NugetPackageRestorer.cs @@ -825,9 +825,9 @@ private bool CheckSpecifiedFeeds(HashSet feeds, out HashSet reac reachableFeeds = GetReachableNuGetFeeds(feedsToCheck, isFallback: false, out var isTimeout).ToHashSet(); - var noTimeout = !isTimeout; - EmitUnreachableFeedsDiagnostics(noTimeout); - return noTimeout; + var allReachable = reachableFeeds.Count == feedsToCheck.Count; + EmitUnreachableFeedsDiagnostics(allReachable); + return !isTimeout; } /// From 597f3fa727f2437c1c820fcd5fda7a153c26f48e Mon Sep 17 00:00:00 2001 From: Michael Nebel Date: Mon, 13 Apr 2026 11:25:05 +0200 Subject: [PATCH 079/260] C#: Update integration test expected output. --- .../CompilationInfo.expected | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/csharp/ql/integration-tests/posix/standalone_dependencies_nuget_config_error/CompilationInfo.expected b/csharp/ql/integration-tests/posix/standalone_dependencies_nuget_config_error/CompilationInfo.expected index 3a74bcbd56ed..4cd316ce1e84 100644 --- a/csharp/ql/integration-tests/posix/standalone_dependencies_nuget_config_error/CompilationInfo.expected +++ b/csharp/ql/integration-tests/posix/standalone_dependencies_nuget_config_error/CompilationInfo.expected @@ -1,5 +1,5 @@ -| All NuGet feeds reachable | 1.0 | -| Failed project restore with package source error | 1.0 | +| All NuGet feeds reachable | 0.0 | +| Failed project restore with package source error | 0.0 | | Failed solution restore with package source error | 0.0 | | Fallback nuget restore | 1.0 | | NuGet feed responsiveness checked | 1.0 | From b7e3e6c5ca8e3e4d3cd82f94f305c3150b396275 Mon Sep 17 00:00:00 2001 From: Michael Nebel Date: Fri, 10 Apr 2026 13:50:27 +0200 Subject: [PATCH 080/260] C#: Add change-note. --- .../ql/lib/change-notes/2026-04-10-nuget-feed-usage-in-bmn.md | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 csharp/ql/lib/change-notes/2026-04-10-nuget-feed-usage-in-bmn.md diff --git a/csharp/ql/lib/change-notes/2026-04-10-nuget-feed-usage-in-bmn.md b/csharp/ql/lib/change-notes/2026-04-10-nuget-feed-usage-in-bmn.md new file mode 100644 index 000000000000..6247527b3372 --- /dev/null +++ b/csharp/ql/lib/change-notes/2026-04-10-nuget-feed-usage-in-bmn.md @@ -0,0 +1,4 @@ +--- +category: majorAnalysis +--- +* When resolving dependencies in `build-mode: none`, `dotnet restore` now always receives the NuGet feeds configured in `nuget.config` (if reachable) and any private registries directly, improving reliability when default feeds are unavailable or restricted. From ca0c2746fc8ea2f81e43e5f55c3011ac9ccbbcd3 Mon Sep 17 00:00:00 2001 From: Michael Nebel Date: Mon, 13 Apr 2026 13:07:59 +0200 Subject: [PATCH 081/260] C#: Address Copilots review comments. --- .../NugetPackageRestorer.cs | 11 +++++++---- .../2026-04-10-nuget-feed-usage-in-bmn.md | 2 +- 2 files changed, 8 insertions(+), 5 deletions(-) diff --git a/csharp/extractor/Semmle.Extraction.CSharp.DependencyFetching/NugetPackageRestorer.cs b/csharp/extractor/Semmle.Extraction.CSharp.DependencyFetching/NugetPackageRestorer.cs index 0888cf9d1580..bfd4abfa848d 100644 --- a/csharp/extractor/Semmle.Extraction.CSharp.DependencyFetching/NugetPackageRestorer.cs +++ b/csharp/extractor/Semmle.Extraction.CSharp.DependencyFetching/NugetPackageRestorer.cs @@ -352,7 +352,7 @@ private IEnumerable RestoreSolutions(string? nugetSources, out Dependenc var feedArgs = new StringBuilder(); foreach (var feed in feeds) { - feedArgs.Append($" -s {feed}"); + feedArgs.Append($" -s \"{feed}\""); } return feedArgs.ToString(); @@ -692,7 +692,7 @@ private void TryChangeProjectFile(DirectoryInfo projectDir, Regex pattern, strin private static async Task ExecuteGetRequest(string address, HttpClient httpClient, CancellationToken cancellationToken) { - return await httpClient.GetAsync(address, cancellationToken); + return await httpClient.GetAsync(address, HttpCompletionOption.ResponseHeadersRead, cancellationToken); } private bool IsFeedReachable(string feed, int timeoutMilliSeconds, int tryCount, out bool isTimeout) @@ -737,7 +737,7 @@ private bool IsFeedReachable(string feed, int timeoutMilliSeconds, int tryCount, try { logger.LogInfo($"Attempt {i + 1}/{tryCount} to reach NuGet feed '{feed}'."); - var response = ExecuteGetRequest(feed, client, cts.Token).GetAwaiter().GetResult(); + using var response = ExecuteGetRequest(feed, client, cts.Token).GetAwaiter().GetResult(); response.EnsureSuccessStatusCode(); logger.LogInfo($"Querying NuGet feed '{feed}' succeeded."); return true; @@ -824,9 +824,12 @@ private bool CheckSpecifiedFeeds(HashSet feeds, out HashSet reac }).ToHashSet(); reachableFeeds = GetReachableNuGetFeeds(feedsToCheck, isFallback: false, out var isTimeout).ToHashSet(); - var allReachable = reachableFeeds.Count == feedsToCheck.Count; EmitUnreachableFeedsDiagnostics(allReachable); + + // Always consider feeds excluded for the reachability check as reachable. + reachableFeeds.UnionWith(feeds.Where(feed => excludedFeeds.Contains(feed))); + return !isTimeout; } diff --git a/csharp/ql/lib/change-notes/2026-04-10-nuget-feed-usage-in-bmn.md b/csharp/ql/lib/change-notes/2026-04-10-nuget-feed-usage-in-bmn.md index 6247527b3372..a4282d0468da 100644 --- a/csharp/ql/lib/change-notes/2026-04-10-nuget-feed-usage-in-bmn.md +++ b/csharp/ql/lib/change-notes/2026-04-10-nuget-feed-usage-in-bmn.md @@ -1,4 +1,4 @@ --- category: majorAnalysis --- -* When resolving dependencies in `build-mode: none`, `dotnet restore` now always receives the NuGet feeds configured in `nuget.config` (if reachable) and any private registries directly, improving reliability when default feeds are unavailable or restricted. +* When resolving dependencies in `build-mode: none`, `dotnet restore` now explicitly receives reachable NuGet feeds configured in `nuget.config` when feed responsiveness checking is enabled (the default), and any private registries directly, improving reliability when default feeds are unavailable or restricted. From 5ff4b437321b2350e48d28ab172571525ea9ec78 Mon Sep 17 00:00:00 2001 From: Michael Nebel Date: Wed, 22 Apr 2026 10:21:10 +0200 Subject: [PATCH 082/260] C#: Address review comment. --- .../NugetPackageRestorer.cs | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/csharp/extractor/Semmle.Extraction.CSharp.DependencyFetching/NugetPackageRestorer.cs b/csharp/extractor/Semmle.Extraction.CSharp.DependencyFetching/NugetPackageRestorer.cs index bfd4abfa848d..9135587abb46 100644 --- a/csharp/extractor/Semmle.Extraction.CSharp.DependencyFetching/NugetPackageRestorer.cs +++ b/csharp/extractor/Semmle.Extraction.CSharp.DependencyFetching/NugetPackageRestorer.cs @@ -30,8 +30,7 @@ internal sealed partial class NugetPackageRestorer : IDisposable private readonly DependencyDirectory emptyPackageDirectory; private readonly ILogger logger; private readonly ICompilationInfoContainer compilationInfoContainer; - private readonly Lazy lazyCheckNugetFeedResponsiveness = new(() => EnvironmentVariables.GetBooleanOptOut(EnvironmentVariableNames.CheckNugetFeedResponsiveness)); - private bool CheckNugetFeedResponsiveness => lazyCheckNugetFeedResponsiveness.Value; + private bool CheckNugetFeedResponsiveness { get; } = EnvironmentVariables.GetBooleanOptOut(EnvironmentVariableNames.CheckNugetFeedResponsiveness); private HashSet PrivateRegistryFeeds => dependabotProxy?.RegistryURLs ?? []; private bool HasPrivateRegistryFeeds => PrivateRegistryFeeds.Any(); From 9bd4f654631f4365afec90db470d0341b31818d8 Mon Sep 17 00:00:00 2001 From: Michael Nebel Date: Wed, 22 Apr 2026 10:29:42 +0200 Subject: [PATCH 083/260] C#: Also apply feed exclusions to inherited feeds. --- .../NugetPackageRestorer.cs | 15 +++++++++------ 1 file changed, 9 insertions(+), 6 deletions(-) diff --git a/csharp/extractor/Semmle.Extraction.CSharp.DependencyFetching/NugetPackageRestorer.cs b/csharp/extractor/Semmle.Extraction.CSharp.DependencyFetching/NugetPackageRestorer.cs index 9135587abb46..3c3b00907f8c 100644 --- a/csharp/extractor/Semmle.Extraction.CSharp.DependencyFetching/NugetPackageRestorer.cs +++ b/csharp/extractor/Semmle.Extraction.CSharp.DependencyFetching/NugetPackageRestorer.cs @@ -137,7 +137,11 @@ public HashSet Restore() compilationInfoContainer.CompilationInfos.Add(("Inherited NuGet feed count", inheritedFeeds.Count.ToString())); } - if (!CheckSpecifiedFeeds(explicitFeeds, out var reachableFeeds)) + var timeout = CheckSpecifiedFeeds(explicitFeeds, out var reachableFeeds); + var allReachable = explicitFeeds.Count == reachableFeeds.Count; + EmitUnreachableFeedsDiagnostics(allReachable); + + if (timeout) { // If we experience a timeout, we use this fallback. // todo: we could also check the reachability of the inherited nuget feeds, but to use those in the fallback we would need to handle authentication too. @@ -148,7 +152,8 @@ public HashSet Restore() } // Inherited feeds should only be used, if they are indeed reachable (as they may be environment specific). - reachableFeeds.UnionWith(GetReachableNuGetFeeds(inheritedFeeds, isFallback: false, out var _)); + CheckSpecifiedFeeds(inheritedFeeds, out var reachableInheritedFeeds); + reachableFeeds.UnionWith(reachableInheritedFeeds); // If feed responsiveness is being checked, we only want to use the feeds that are reachable (note this set includes private // registry feeds if they are reachable). @@ -803,7 +808,7 @@ private HashSet GetExcludedFeeds() /// The set of package feeds to check. /// The list of feeds that were reachable. /// - /// True if there is no timeout when trying to reach the feeds (excluding any feeds that are configured + /// True if there is a timeout when trying to reach the feeds (excluding any feeds that are configured /// to be excluded from the check) or false otherwise. /// private bool CheckSpecifiedFeeds(HashSet feeds, out HashSet reachableFeeds) @@ -823,13 +828,11 @@ private bool CheckSpecifiedFeeds(HashSet feeds, out HashSet reac }).ToHashSet(); reachableFeeds = GetReachableNuGetFeeds(feedsToCheck, isFallback: false, out var isTimeout).ToHashSet(); - var allReachable = reachableFeeds.Count == feedsToCheck.Count; - EmitUnreachableFeedsDiagnostics(allReachable); // Always consider feeds excluded for the reachability check as reachable. reachableFeeds.UnionWith(feeds.Where(feed => excludedFeeds.Contains(feed))); - return !isTimeout; + return isTimeout; } /// From 831b4d6cebf960a10a2cfe288f5ca13c8476a4ae Mon Sep 17 00:00:00 2001 From: Michael Nebel Date: Wed, 22 Apr 2026 10:54:25 +0200 Subject: [PATCH 084/260] C#: Add NuGet package missing failures to the compilation info. --- .../IDotNet.cs | 3 +++ .../NugetPackageRestorer.cs | 13 +++++++++++++ 2 files changed, 16 insertions(+) diff --git a/csharp/extractor/Semmle.Extraction.CSharp.DependencyFetching/IDotNet.cs b/csharp/extractor/Semmle.Extraction.CSharp.DependencyFetching/IDotNet.cs index 58d4f9b550b9..d14dee506524 100644 --- a/csharp/extractor/Semmle.Extraction.CSharp.DependencyFetching/IDotNet.cs +++ b/csharp/extractor/Semmle.Extraction.CSharp.DependencyFetching/IDotNet.cs @@ -33,6 +33,9 @@ public partial record class RestoreResult(bool Success, IList Output) private readonly Lazy hasNugetNoStablePackageVersionError = new(() => Output.Any(s => s.Contains("NU1103"))); public bool HasNugetNoStablePackageVersionError => hasNugetNoStablePackageVersionError.Value; + private readonly Lazy hasNugetPackageMissingError = new(() => Output.Any(s => s.Contains("NU1101"))); + public bool HasNugetPackageMissingError => hasNugetPackageMissingError.Value; + private static IEnumerable GetFirstGroupOnMatch(Regex regex, IEnumerable lines) => lines .Select(line => regex.Match(line)) diff --git a/csharp/extractor/Semmle.Extraction.CSharp.DependencyFetching/NugetPackageRestorer.cs b/csharp/extractor/Semmle.Extraction.CSharp.DependencyFetching/NugetPackageRestorer.cs index 3c3b00907f8c..ab4fd27a7e7f 100644 --- a/csharp/extractor/Semmle.Extraction.CSharp.DependencyFetching/NugetPackageRestorer.cs +++ b/csharp/extractor/Semmle.Extraction.CSharp.DependencyFetching/NugetPackageRestorer.cs @@ -317,6 +317,8 @@ private IEnumerable RestoreSolutions(string? nugetSources, out Dependenc { var successCount = 0; var nugetSourceFailures = 0; + var nugetMissingPackageFailures = 0; + var assets = new Assets(logger); var isWindows = fileContent.UseWindowsForms || fileContent.UseWpf; @@ -333,12 +335,17 @@ private IEnumerable RestoreSolutions(string? nugetSources, out Dependenc { nugetSourceFailures++; } + if (res.HasNugetPackageMissingError) + { + nugetMissingPackageFailures++; + } assets.AddDependenciesRange(res.AssetsFilePaths); return res.RestoredProjects; }).ToList(); dependencies = assets.Dependencies; compilationInfoContainer.CompilationInfos.Add(("Successfully restored solution files", successCount.ToString())); compilationInfoContainer.CompilationInfos.Add(("Failed solution restore with package source error", nugetSourceFailures.ToString())); + compilationInfoContainer.CompilationInfos.Add(("Failed solution restore with missing package error", nugetMissingPackageFailures.ToString())); compilationInfoContainer.CompilationInfos.Add(("Restored projects through solution files", projects.Count.ToString())); return projects; } @@ -373,6 +380,7 @@ private void RestoreProjects(IEnumerable projects, string? explicitResto { var successCount = 0; var nugetSourceFailures = 0; + var nugetMissingPackageFailures = 0; ConcurrentBag collectedDependencies = []; var isWindows = fileContent.UseWindowsForms || fileContent.UseWpf; @@ -397,6 +405,10 @@ private void RestoreProjects(IEnumerable projects, string? explicitResto { nugetSourceFailures++; } + if (res.HasNugetPackageMissingError) + { + nugetMissingPackageFailures++; + } } } collectedDependencies.Add(assets.Dependencies); @@ -404,6 +416,7 @@ private void RestoreProjects(IEnumerable projects, string? explicitResto dependencies = collectedDependencies; compilationInfoContainer.CompilationInfos.Add(("Successfully restored project files", successCount.ToString())); compilationInfoContainer.CompilationInfos.Add(("Failed project restore with package source error", nugetSourceFailures.ToString())); + compilationInfoContainer.CompilationInfos.Add(("Failed project restore with missing package error", nugetMissingPackageFailures.ToString())); } private AssemblyLookupLocation? DownloadMissingPackagesFromSpecificFeeds(IEnumerable usedPackageNames, HashSet? feedsFromNugetConfigs) From a6d1ccae8e4e94bb7aab52bd0f9e237a4a3b1f3d Mon Sep 17 00:00:00 2001 From: Michael Nebel Date: Wed, 22 Apr 2026 11:36:55 +0200 Subject: [PATCH 085/260] C#: Update integration test expected output. --- .../all-platforms/standalone_resx/CompilationInfo.expected | 2 ++ .../all-platforms/standalone_slnx/CompilationInfo.expected | 2 ++ .../all-platforms/standalone_winforms/CompilationInfo.expected | 2 ++ .../CompilationInfo.expected | 2 ++ 4 files changed, 8 insertions(+) diff --git a/csharp/ql/integration-tests/all-platforms/standalone_resx/CompilationInfo.expected b/csharp/ql/integration-tests/all-platforms/standalone_resx/CompilationInfo.expected index dfab1016a6b2..6d91b2700226 100644 --- a/csharp/ql/integration-tests/all-platforms/standalone_resx/CompilationInfo.expected +++ b/csharp/ql/integration-tests/all-platforms/standalone_resx/CompilationInfo.expected @@ -1,5 +1,7 @@ | All NuGet feeds reachable | 1.0 | +| Failed project restore with missing package error | 0.0 | | Failed project restore with package source error | 0.0 | +| Failed solution restore with missing package error | 0.0 | | Failed solution restore with package source error | 0.0 | | Inherited NuGet feed count | 1.0 | | NuGet feed responsiveness checked | 1.0 | diff --git a/csharp/ql/integration-tests/all-platforms/standalone_slnx/CompilationInfo.expected b/csharp/ql/integration-tests/all-platforms/standalone_slnx/CompilationInfo.expected index 3bd3941b27c5..82cf0509d345 100644 --- a/csharp/ql/integration-tests/all-platforms/standalone_slnx/CompilationInfo.expected +++ b/csharp/ql/integration-tests/all-platforms/standalone_slnx/CompilationInfo.expected @@ -1,5 +1,7 @@ | All NuGet feeds reachable | 1.0 | +| Failed project restore with missing package error | 0.0 | | Failed project restore with package source error | 0.0 | +| Failed solution restore with missing package error | 0.0 | | Failed solution restore with package source error | 0.0 | | Inherited NuGet feed count | 1.0 | | NuGet feed responsiveness checked | 1.0 | diff --git a/csharp/ql/integration-tests/all-platforms/standalone_winforms/CompilationInfo.expected b/csharp/ql/integration-tests/all-platforms/standalone_winforms/CompilationInfo.expected index 6b06566033c3..63ddd4903f3e 100644 --- a/csharp/ql/integration-tests/all-platforms/standalone_winforms/CompilationInfo.expected +++ b/csharp/ql/integration-tests/all-platforms/standalone_winforms/CompilationInfo.expected @@ -1,5 +1,7 @@ | All NuGet feeds reachable | 1.0 | +| Failed project restore with missing package error | 0.0 | | Failed project restore with package source error | 0.0 | +| Failed solution restore with missing package error | 0.0 | | Failed solution restore with package source error | 0.0 | | Inherited NuGet feed count | 1.0 | | NuGet feed responsiveness checked | 1.0 | diff --git a/csharp/ql/integration-tests/posix/standalone_dependencies_nuget_config_error/CompilationInfo.expected b/csharp/ql/integration-tests/posix/standalone_dependencies_nuget_config_error/CompilationInfo.expected index 4cd316ce1e84..20fd0cdfba89 100644 --- a/csharp/ql/integration-tests/posix/standalone_dependencies_nuget_config_error/CompilationInfo.expected +++ b/csharp/ql/integration-tests/posix/standalone_dependencies_nuget_config_error/CompilationInfo.expected @@ -1,5 +1,7 @@ | All NuGet feeds reachable | 0.0 | +| Failed project restore with missing package error | 1.0 | | Failed project restore with package source error | 0.0 | +| Failed solution restore with missing package error | 0.0 | | Failed solution restore with package source error | 0.0 | | Fallback nuget restore | 1.0 | | NuGet feed responsiveness checked | 1.0 | From ed857ad6e029a4d0ad2b329de9a210c9c8159b6d Mon Sep 17 00:00:00 2001 From: Michael Nebel Date: Fri, 24 Apr 2026 15:22:17 +0200 Subject: [PATCH 086/260] C#: Make the restore sources project/solution specific. --- .../NugetPackageRestorer.cs | 94 ++++++++++++------- 1 file changed, 61 insertions(+), 33 deletions(-) diff --git a/csharp/extractor/Semmle.Extraction.CSharp.DependencyFetching/NugetPackageRestorer.cs b/csharp/extractor/Semmle.Extraction.CSharp.DependencyFetching/NugetPackageRestorer.cs index ab4fd27a7e7f..9f0ac2f17de9 100644 --- a/csharp/extractor/Semmle.Extraction.CSharp.DependencyFetching/NugetPackageRestorer.cs +++ b/csharp/extractor/Semmle.Extraction.CSharp.DependencyFetching/NugetPackageRestorer.cs @@ -119,7 +119,7 @@ public HashSet Restore() compilationInfoContainer.CompilationInfos.Add(("NuGet feed responsiveness checked", CheckNugetFeedResponsiveness ? "1" : "0")); HashSet explicitFeeds = []; - string? explicitNugetSources = null; + HashSet reachableFeeds = []; try { @@ -137,9 +137,11 @@ public HashSet Restore() compilationInfoContainer.CompilationInfos.Add(("Inherited NuGet feed count", inheritedFeeds.Count.ToString())); } - var timeout = CheckSpecifiedFeeds(explicitFeeds, out var reachableFeeds); - var allReachable = explicitFeeds.Count == reachableFeeds.Count; - EmitUnreachableFeedsDiagnostics(allReachable); + var timeout = CheckSpecifiedFeeds(explicitFeeds, out var reachableExplicitFeeds); + reachableFeeds.UnionWith(reachableExplicitFeeds); + + var allExplicitReachable = explicitFeeds.Count == reachableExplicitFeeds.Count; + EmitUnreachableFeedsDiagnostics(allExplicitReachable); if (timeout) { @@ -154,16 +156,6 @@ public HashSet Restore() // Inherited feeds should only be used, if they are indeed reachable (as they may be environment specific). CheckSpecifiedFeeds(inheritedFeeds, out var reachableInheritedFeeds); reachableFeeds.UnionWith(reachableInheritedFeeds); - - // If feed responsiveness is being checked, we only want to use the feeds that are reachable (note this set includes private - // registry feeds if they are reachable). - explicitNugetSources = MakeRestoreSourcesArgument(reachableFeeds); - } - else if (HasPrivateRegistryFeeds) - { - // If private registries are configured they need to be included as sources for the restore, which requires that - // they are provided as source arguments for the restore. The private registries are included in the `allFeeds` set. - explicitNugetSources = MakeRestoreSourcesArgument(allFeeds); } using (var nuget = new NugetExeWrapper(fileProvider, legacyPackageDirectory, logger, IsDefaultFeedReachable)) @@ -206,9 +198,9 @@ public HashSet Restore() } // Restore project dependencies with `dotnet restore`. - var restoredProjects = RestoreSolutions(explicitNugetSources, out var container); + var restoredProjects = RestoreSolutions(reachableFeeds, out var container); var projects = fileProvider.Projects.Except(restoredProjects); - RestoreProjects(projects, explicitNugetSources, out var containers); + RestoreProjects(projects, reachableFeeds, out var containers); var dependencies = containers.Flatten(container); @@ -313,7 +305,7 @@ private List GetReachableFallbackNugetFeeds(HashSet? feedsFromNu /// Populates dependencies with the relevant dependencies from the assets files generated by the restore. /// Returns a list of projects that are up to date with respect to restore. /// - private IEnumerable RestoreSolutions(string? nugetSources, out DependencyContainer dependencies) + private IEnumerable RestoreSolutions(HashSet reachableFeeds, out DependencyContainer dependencies) { var successCount = 0; var nugetSourceFailures = 0; @@ -326,6 +318,7 @@ private IEnumerable RestoreSolutions(string? nugetSources, out Dependenc var projects = fileProvider.Solutions.SelectMany(solution => { logger.LogInfo($"Restoring solution {solution}..."); + var nugetSources = MakeRestoreSourcesArgument(solution, reachableFeeds); var res = dotnet.Restore(new(solution, PackageDirectory.DirInfo.FullName, ForceDotnetRefAssemblyFetching: true, NugetSources: nugetSources, TargetWindows: isWindows)); if (res.Success) { @@ -350,7 +343,7 @@ private IEnumerable RestoreSolutions(string? nugetSources, out Dependenc return projects; } - private string? MakeRestoreSourcesArgument(IEnumerable feeds) + private string FeedsToRestoreArgument(IEnumerable feeds) { // If there are no feeds, we want to override any default feeds that `dotnet restore` would use by passing a dummy source argument. if (!feeds.Any()) @@ -369,14 +362,46 @@ private IEnumerable RestoreSolutions(string? nugetSources, out Dependenc return feedArgs.ToString(); } + /// + /// Constructs the list of NuGet sources to use for this restore. + // (1) Use the feeds we get from `dotnet nuget list source` + // (2) Use private registries, if they are configured + /// + /// Path to project/solution + /// The set of reachable NuGet feeds. + /// A string representing the NuGet sources argument for the restore command. + private string? MakeRestoreSourcesArgument(string path, HashSet reachableFeeds) + { + // Do not construct an set of explicit NuGet sources to use for restore. + if (!CheckNugetFeedResponsiveness && !HasPrivateRegistryFeeds) + { + return null; + } + + // Find the path specific feeds. + var folder = GetDirectoryName(path); + var feedsToConsider = folder is not null ? GetFeeds(() => dotnet.GetNugetFeedsFromFolder(folder)).ToHashSet() : []; + + if (HasPrivateRegistryFeeds) + { + feedsToConsider.UnionWith(PrivateRegistryFeeds); + } + + var feedsToUse = CheckNugetFeedResponsiveness + ? feedsToConsider.Where(reachableFeeds.Contains) + : feedsToConsider; + + return FeedsToRestoreArgument(feedsToUse); + } + /// /// Executes `dotnet restore` on all projects in projects. /// This is done in parallel for performance reasons. /// Populates dependencies with the relative paths to the assets files generated by the restore. /// /// A list of paths to project files. - /// The explicit restore sources argument. - private void RestoreProjects(IEnumerable projects, string? explicitRestoreSources, out ConcurrentBag dependencies) + /// The set of reachable NuGet feeds. + private void RestoreProjects(IEnumerable projects, HashSet reachableFeeds, out ConcurrentBag dependencies) { var successCount = 0; var nugetSourceFailures = 0; @@ -393,7 +418,8 @@ private void RestoreProjects(IEnumerable projects, string? explicitResto foreach (var project in projectGroup) { logger.LogInfo($"Restoring project {project}..."); - var res = dotnet.Restore(new(project, PackageDirectory.DirInfo.FullName, ForceDotnetRefAssemblyFetching: true, NugetSources: explicitRestoreSources, TargetWindows: isWindows)); + var nugetSources = MakeRestoreSourcesArgument(project, reachableFeeds); + var res = dotnet.Restore(new(project, PackageDirectory.DirInfo.FullName, ForceDotnetRefAssemblyFetching: true, NugetSources: nugetSources, TargetWindows: isWindows)); assets.AddDependenciesRange(res.AssetsFilePaths); lock (sync) { @@ -898,6 +924,19 @@ private IEnumerable GetFeeds(Func> getNugetFeeds) } } + private string? GetDirectoryName(string path) + { + try + { + return new FileInfo(path).Directory?.FullName; + } + catch (Exception exc) + { + logger.LogWarning($"Failed to get directory of '{path}': {exc}"); + } + return null; + } + private (HashSet explicitFeeds, HashSet allFeeds) GetAllFeeds() { var nugetConfigs = fileProvider.NugetConfigs; @@ -968,18 +1007,7 @@ private IEnumerable GetFeeds(Func> getNugetFeeds) { // We don't have to get the feeds from each of the folders from below, it would be enought to check the folders that recursively contain the others. var nugetConfigFeeds = nugetConfigs - .Select(config => - { - try - { - return new FileInfo(config).Directory?.FullName; - } - catch (Exception exc) - { - logger.LogWarning($"Failed to get directory of '{config}': {exc}"); - } - return null; - }) + .Select(GetDirectoryName) .Where(folder => folder != null) .SelectMany(folder => GetFeeds(() => dotnet.GetNugetFeedsFromFolder(folder!))) .ToHashSet(); From ae81f3a00f7459d59e21fe8d4b15d9d08c70c35a Mon Sep 17 00:00:00 2001 From: Michael Nebel Date: Fri, 24 Apr 2026 15:24:34 +0200 Subject: [PATCH 087/260] C#: Inherited feeds may not get properly computed if a nuget.config file contains a clear. This has been fixed. --- .../NugetPackageRestorer.cs | 12 +++++------- 1 file changed, 5 insertions(+), 7 deletions(-) diff --git a/csharp/extractor/Semmle.Extraction.CSharp.DependencyFetching/NugetPackageRestorer.cs b/csharp/extractor/Semmle.Extraction.CSharp.DependencyFetching/NugetPackageRestorer.cs index 9f0ac2f17de9..b80126adf040 100644 --- a/csharp/extractor/Semmle.Extraction.CSharp.DependencyFetching/NugetPackageRestorer.cs +++ b/csharp/extractor/Semmle.Extraction.CSharp.DependencyFetching/NugetPackageRestorer.cs @@ -1003,9 +1003,13 @@ private IEnumerable GetFeeds(Func> getNugetFeeds) // Add all explicitFeeds to the set of all feeds. allFeeds.UnionWith(explicitFeeds); + // Obtain the list of feeds from the root source directory. + // If a NuGet file is present it will be respected, otherwise we will just get the machine/environment specific feeds. + var nugetFeedsFromRoot = GetFeeds(() => dotnet.GetNugetFeedsFromFolder(fileProvider.SourceDir.FullName)); + allFeeds.UnionWith(nugetFeedsFromRoot); + if (nugetConfigs.Count > 0) { - // We don't have to get the feeds from each of the folders from below, it would be enought to check the folders that recursively contain the others. var nugetConfigFeeds = nugetConfigs .Select(GetDirectoryName) .Where(folder => folder != null) @@ -1014,12 +1018,6 @@ private IEnumerable GetFeeds(Func> getNugetFeeds) allFeeds.UnionWith(nugetConfigFeeds); } - else - { - // If we haven't found any `nuget.config` files, then obtain a list of feeds from the root source directory. - var nugetFeedsFromRoot = GetFeeds(() => dotnet.GetNugetFeedsFromFolder(fileProvider.SourceDir.FullName)); - allFeeds.UnionWith(nugetFeedsFromRoot); - } logger.LogInfo($"Found {allFeeds.Count} NuGet feeds (with inherited ones) in nuget.config files: {string.Join(", ", allFeeds.OrderBy(f => f))}"); From 615ae41e67f561010ff8f2d4df3d44b554fa6483 Mon Sep 17 00:00:00 2001 From: Michael Nebel Date: Mon, 27 Apr 2026 16:03:13 +0200 Subject: [PATCH 088/260] C#: Address review comments. --- .../NugetPackageRestorer.cs | 33 ++++++++++--------- 1 file changed, 18 insertions(+), 15 deletions(-) diff --git a/csharp/extractor/Semmle.Extraction.CSharp.DependencyFetching/NugetPackageRestorer.cs b/csharp/extractor/Semmle.Extraction.CSharp.DependencyFetching/NugetPackageRestorer.cs index b80126adf040..6cc74349cb96 100644 --- a/csharp/extractor/Semmle.Extraction.CSharp.DependencyFetching/NugetPackageRestorer.cs +++ b/csharp/extractor/Semmle.Extraction.CSharp.DependencyFetching/NugetPackageRestorer.cs @@ -1,6 +1,7 @@ using System; using System.Collections.Concurrent; using System.Collections.Generic; +using System.Collections.Immutable; using System.IO; using System.Linq; using System.Net; @@ -30,9 +31,9 @@ internal sealed partial class NugetPackageRestorer : IDisposable private readonly DependencyDirectory emptyPackageDirectory; private readonly ILogger logger; private readonly ICompilationInfoContainer compilationInfoContainer; - private bool CheckNugetFeedResponsiveness { get; } = EnvironmentVariables.GetBooleanOptOut(EnvironmentVariableNames.CheckNugetFeedResponsiveness); - private HashSet PrivateRegistryFeeds => dependabotProxy?.RegistryURLs ?? []; - private bool HasPrivateRegistryFeeds => PrivateRegistryFeeds.Any(); + private readonly bool checkNugetFeedResponsiveness = EnvironmentVariables.GetBooleanOptOut(EnvironmentVariableNames.CheckNugetFeedResponsiveness); + private readonly ImmutableHashSet privateRegistryFeeds; + private readonly bool hasPrivateRegistryFeeds; public DependencyDirectory PackageDirectory { get; } @@ -49,6 +50,8 @@ public NugetPackageRestorer( this.fileContent = fileContent; this.dotnet = dotnet; this.dependabotProxy = dependabotProxy; + this.privateRegistryFeeds = dependabotProxy?.RegistryURLs.ToImmutableHashSet() ?? []; + this.hasPrivateRegistryFeeds = privateRegistryFeeds.Count > 0; this.diagnosticsWriter = diagnosticsWriter; this.logger = logger; this.compilationInfoContainer = compilationInfoContainer; @@ -115,8 +118,8 @@ public DirectoryInfo[] GetOrderedPackageVersionSubDirectories(string packagePath public HashSet Restore() { var assemblyLookupLocations = new HashSet(); - logger.LogInfo($"Checking NuGet feed responsiveness: {CheckNugetFeedResponsiveness}"); - compilationInfoContainer.CompilationInfos.Add(("NuGet feed responsiveness checked", CheckNugetFeedResponsiveness ? "1" : "0")); + logger.LogInfo($"Checking NuGet feed responsiveness: {checkNugetFeedResponsiveness}"); + compilationInfoContainer.CompilationInfos.Add(("NuGet feed responsiveness checked", checkNugetFeedResponsiveness ? "1" : "0")); HashSet explicitFeeds = []; HashSet reachableFeeds = []; @@ -128,7 +131,7 @@ public HashSet Restore() // (including inherited ones) from other locations on the host outside of the working directory. (explicitFeeds, var allFeeds) = GetAllFeeds(); - if (CheckNugetFeedResponsiveness) + if (checkNugetFeedResponsiveness) { var inheritedFeeds = allFeeds.Except(explicitFeeds).ToHashSet(); @@ -212,7 +215,7 @@ public HashSet Restore() var usedPackageNames = GetAllUsedPackageDirNames(dependencies); - var missingPackageLocation = CheckNugetFeedResponsiveness + var missingPackageLocation = checkNugetFeedResponsiveness ? DownloadMissingPackagesFromSpecificFeeds(usedPackageNames, explicitFeeds) : DownloadMissingPackages(usedPackageNames); @@ -261,7 +264,7 @@ private List GetReachableNuGetFeeds(HashSet feedsToCheck, bool i private bool IsDefaultFeedReachable() { - if (CheckNugetFeedResponsiveness) + if (checkNugetFeedResponsiveness) { var (initialTimeout, tryCount) = GetFeedRequestSettings(isFallback: false); return IsFeedReachable(PublicNugetOrgFeed, initialTimeout, tryCount, out var _); @@ -373,7 +376,7 @@ private string FeedsToRestoreArgument(IEnumerable feeds) private string? MakeRestoreSourcesArgument(string path, HashSet reachableFeeds) { // Do not construct an set of explicit NuGet sources to use for restore. - if (!CheckNugetFeedResponsiveness && !HasPrivateRegistryFeeds) + if (!checkNugetFeedResponsiveness && !hasPrivateRegistryFeeds) { return null; } @@ -382,12 +385,12 @@ private string FeedsToRestoreArgument(IEnumerable feeds) var folder = GetDirectoryName(path); var feedsToConsider = folder is not null ? GetFeeds(() => dotnet.GetNugetFeedsFromFolder(folder)).ToHashSet() : []; - if (HasPrivateRegistryFeeds) + if (hasPrivateRegistryFeeds) { - feedsToConsider.UnionWith(PrivateRegistryFeeds); + feedsToConsider.UnionWith(privateRegistryFeeds); } - var feedsToUse = CheckNugetFeedResponsiveness + var feedsToUse = checkNugetFeedResponsiveness ? feedsToConsider.Where(reachableFeeds.Contains) : feedsToConsider; @@ -992,10 +995,10 @@ private IEnumerable GetFeeds(Func> getNugetFeeds) // If private package registries are configured for C#, then consider those // in addition to the ones that are configured in `nuget.config` files. - if (HasPrivateRegistryFeeds) + if (hasPrivateRegistryFeeds) { - logger.LogInfo($"Found {PrivateRegistryFeeds.Count} private registry feeds configured for C#: {string.Join(", ", PrivateRegistryFeeds.OrderBy(f => f))}"); - explicitFeeds.UnionWith(PrivateRegistryFeeds); + logger.LogInfo($"Found {privateRegistryFeeds.Count} private registry feeds configured for C#: {string.Join(", ", privateRegistryFeeds.OrderBy(f => f))}"); + explicitFeeds.UnionWith(privateRegistryFeeds); } HashSet allFeeds = []; From e29efc7d2cfe13d69e1d78695b1f1eb75b5396da Mon Sep 17 00:00:00 2001 From: Mathias Vorreiter Pedersen Date: Tue, 28 Apr 2026 10:50:39 +0100 Subject: [PATCH 089/260] C++: Add tests with missing flow. --- .../source-sink-tests/sources-and-sinks.cpp | 16 ++ .../dataflow/taint-tests/localTaint.expected | 168 ++++++++++++++++++ .../dataflow/taint-tests/taint.cpp | 133 ++++++++++++++ .../taint-tests/test_mad-signatures.expected | 112 ++++++++++++ 4 files changed, 429 insertions(+) diff --git a/cpp/ql/test/library-tests/dataflow/source-sink-tests/sources-and-sinks.cpp b/cpp/ql/test/library-tests/dataflow/source-sink-tests/sources-and-sinks.cpp index c515a199f077..1df2923d3064 100644 --- a/cpp/ql/test/library-tests/dataflow/source-sink-tests/sources-and-sinks.cpp +++ b/cpp/ql/test/library-tests/dataflow/source-sink-tests/sources-and-sinks.cpp @@ -115,3 +115,19 @@ void test_zmc(void *socket) { // ... } } + +long StringCchGetsA(char *, size_t); +long StringCchGetsExA(char *, size_t, char **, size_t *, unsigned long); + +void test_strsafe_gets() { + { + char dest[256] = {0}; + StringCchGetsA(dest, sizeof(dest)); // $ MISSING: local_source + } + { + char dest[256] = {0}; + char *end; + size_t remaining; + StringCchGetsExA(dest, sizeof(dest), &end, &remaining, 0); // $ MISSING: local_source + } +} diff --git a/cpp/ql/test/library-tests/dataflow/taint-tests/localTaint.expected b/cpp/ql/test/library-tests/dataflow/taint-tests/localTaint.expected index 0f4d67f2695f..9224cd62e82f 100644 --- a/cpp/ql/test/library-tests/dataflow/taint-tests/localTaint.expected +++ b/cpp/ql/test/library-tests/dataflow/taint-tests/localTaint.expected @@ -8008,6 +8008,174 @@ WARNING: module 'TaintTracking' has been deprecated and may be removed in future | taint.cpp:866:26:866:34 | ref arg & ... | taint.cpp:866:27:866:34 | size_out [inner post update] | | | taint.cpp:866:27:866:34 | size_out | taint.cpp:866:26:866:34 | & ... | | | taint.cpp:867:8:867:8 | p | taint.cpp:867:7:867:8 | * ... | TAINT | +| taint.cpp:892:17:892:31 | call to indirect_source | taint.cpp:897:38:897:43 | source | | +| taint.cpp:892:17:892:31 | call to indirect_source | taint.cpp:907:37:907:42 | source | | +| taint.cpp:892:17:892:31 | call to indirect_source | taint.cpp:914:40:914:45 | source | | +| taint.cpp:892:17:892:31 | call to indirect_source | taint.cpp:919:39:919:44 | source | | +| taint.cpp:892:17:892:31 | call to indirect_source | taint.cpp:926:41:926:46 | source | | +| taint.cpp:892:17:892:31 | call to indirect_source | taint.cpp:931:37:931:42 | source | | +| taint.cpp:892:17:892:31 | call to indirect_source | taint.cpp:941:36:941:41 | source | | +| taint.cpp:892:17:892:31 | call to indirect_source | taint.cpp:948:39:948:44 | source | | +| taint.cpp:892:17:892:31 | call to indirect_source | taint.cpp:953:38:953:43 | source | | +| taint.cpp:892:17:892:31 | call to indirect_source | taint.cpp:960:40:960:45 | source | | +| taint.cpp:892:17:892:31 | call to indirect_source | taint.cpp:965:46:965:51 | source | | +| taint.cpp:892:17:892:31 | call to indirect_source | taint.cpp:975:45:975:50 | source | | +| taint.cpp:892:17:892:31 | call to indirect_source | taint.cpp:982:69:982:74 | source | | +| taint.cpp:893:32:893:46 | call to indirect_source | taint.cpp:902:38:902:44 | wsource | | +| taint.cpp:893:32:893:46 | call to indirect_source | taint.cpp:936:37:936:43 | wsource | | +| taint.cpp:893:32:893:46 | call to indirect_source | taint.cpp:970:47:970:53 | wsource | | +| taint.cpp:896:19:896:22 | {...} | taint.cpp:897:18:897:21 | dest | | +| taint.cpp:896:19:896:22 | {...} | taint.cpp:897:31:897:34 | dest | | +| taint.cpp:896:19:896:22 | {...} | taint.cpp:898:9:898:12 | dest | | +| taint.cpp:896:21:896:21 | 0 | taint.cpp:896:19:896:22 | {...} | TAINT | +| taint.cpp:897:18:897:21 | ref arg dest | taint.cpp:898:9:898:12 | dest | | +| taint.cpp:898:9:898:12 | dest | taint.cpp:898:8:898:12 | * ... | | +| taint.cpp:901:22:901:25 | {...} | taint.cpp:902:18:902:21 | dest | | +| taint.cpp:901:22:901:25 | {...} | taint.cpp:902:31:902:34 | dest | | +| taint.cpp:901:22:901:25 | {...} | taint.cpp:903:9:903:12 | dest | | +| taint.cpp:901:24:901:24 | 0 | taint.cpp:901:22:901:25 | {...} | TAINT | +| taint.cpp:902:18:902:21 | ref arg dest | taint.cpp:903:9:903:12 | dest | | +| taint.cpp:903:9:903:12 | dest | taint.cpp:903:8:903:12 | * ... | | +| taint.cpp:906:19:906:22 | {...} | taint.cpp:907:17:907:20 | dest | | +| taint.cpp:906:19:906:22 | {...} | taint.cpp:907:30:907:33 | dest | | +| taint.cpp:906:19:906:22 | {...} | taint.cpp:908:9:908:12 | dest | | +| taint.cpp:906:21:906:21 | 0 | taint.cpp:906:19:906:22 | {...} | TAINT | +| taint.cpp:907:17:907:20 | ref arg dest | taint.cpp:908:9:908:12 | dest | | +| taint.cpp:908:9:908:12 | dest | taint.cpp:908:8:908:12 | * ... | | +| taint.cpp:911:19:911:22 | {...} | taint.cpp:914:20:914:23 | dest | | +| taint.cpp:911:19:911:22 | {...} | taint.cpp:914:33:914:36 | dest | | +| taint.cpp:911:19:911:22 | {...} | taint.cpp:915:9:915:12 | dest | | +| taint.cpp:911:21:911:21 | 0 | taint.cpp:911:19:911:22 | {...} | TAINT | +| taint.cpp:912:9:912:11 | end | taint.cpp:914:49:914:51 | end | | +| taint.cpp:913:10:913:18 | remaining | taint.cpp:914:55:914:63 | remaining | | +| taint.cpp:914:20:914:23 | ref arg dest | taint.cpp:915:9:915:12 | dest | | +| taint.cpp:914:48:914:51 | ref arg & ... | taint.cpp:914:49:914:51 | end [inner post update] | | +| taint.cpp:914:49:914:51 | end | taint.cpp:914:48:914:51 | & ... | | +| taint.cpp:914:54:914:63 | ref arg & ... | taint.cpp:914:55:914:63 | remaining [inner post update] | | +| taint.cpp:914:55:914:63 | remaining | taint.cpp:914:54:914:63 | & ... | | +| taint.cpp:915:9:915:12 | dest | taint.cpp:915:8:915:12 | * ... | | +| taint.cpp:918:19:918:22 | {...} | taint.cpp:919:19:919:22 | dest | | +| taint.cpp:918:19:918:22 | {...} | taint.cpp:919:32:919:35 | dest | | +| taint.cpp:918:19:918:22 | {...} | taint.cpp:920:9:920:12 | dest | | +| taint.cpp:918:21:918:21 | 0 | taint.cpp:918:19:918:22 | {...} | TAINT | +| taint.cpp:919:19:919:22 | ref arg dest | taint.cpp:920:9:920:12 | dest | | +| taint.cpp:920:9:920:12 | dest | taint.cpp:920:8:920:12 | * ... | | +| taint.cpp:923:19:923:22 | {...} | taint.cpp:926:21:926:24 | dest | | +| taint.cpp:923:19:923:22 | {...} | taint.cpp:926:34:926:37 | dest | | +| taint.cpp:923:19:923:22 | {...} | taint.cpp:927:8:927:11 | dest | | +| taint.cpp:923:21:923:21 | 0 | taint.cpp:923:19:923:22 | {...} | TAINT | +| taint.cpp:924:9:924:11 | end | taint.cpp:926:55:926:57 | end | | +| taint.cpp:925:10:925:18 | remaining | taint.cpp:926:61:926:69 | remaining | | +| taint.cpp:926:21:926:24 | ref arg dest | taint.cpp:927:8:927:11 | dest | | +| taint.cpp:926:54:926:57 | ref arg & ... | taint.cpp:926:55:926:57 | end [inner post update] | | +| taint.cpp:926:55:926:57 | end | taint.cpp:926:54:926:57 | & ... | | +| taint.cpp:926:60:926:69 | ref arg & ... | taint.cpp:926:61:926:69 | remaining [inner post update] | | +| taint.cpp:926:61:926:69 | remaining | taint.cpp:926:60:926:69 | & ... | | +| taint.cpp:930:20:930:27 | prefix | taint.cpp:931:17:931:20 | dest | | +| taint.cpp:930:20:930:27 | prefix | taint.cpp:931:30:931:33 | dest | | +| taint.cpp:930:20:930:27 | prefix | taint.cpp:932:9:932:12 | dest | | +| taint.cpp:931:17:931:20 | ref arg dest | taint.cpp:932:9:932:12 | dest | | +| taint.cpp:932:9:932:12 | dest | taint.cpp:932:8:932:12 | * ... | | +| taint.cpp:935:23:935:31 | prefix | taint.cpp:936:17:936:20 | dest | | +| taint.cpp:935:23:935:31 | prefix | taint.cpp:936:30:936:33 | dest | | +| taint.cpp:935:23:935:31 | prefix | taint.cpp:937:9:937:12 | dest | | +| taint.cpp:936:17:936:20 | ref arg dest | taint.cpp:937:9:937:12 | dest | | +| taint.cpp:937:9:937:12 | dest | taint.cpp:937:8:937:12 | * ... | | +| taint.cpp:940:20:940:27 | prefix | taint.cpp:941:16:941:19 | dest | | +| taint.cpp:940:20:940:27 | prefix | taint.cpp:941:29:941:32 | dest | | +| taint.cpp:940:20:940:27 | prefix | taint.cpp:942:9:942:12 | dest | | +| taint.cpp:941:16:941:19 | ref arg dest | taint.cpp:942:9:942:12 | dest | | +| taint.cpp:942:9:942:12 | dest | taint.cpp:942:8:942:12 | * ... | | +| taint.cpp:945:20:945:27 | prefix | taint.cpp:948:19:948:22 | dest | | +| taint.cpp:945:20:945:27 | prefix | taint.cpp:948:32:948:35 | dest | | +| taint.cpp:945:20:945:27 | prefix | taint.cpp:949:9:949:12 | dest | | +| taint.cpp:946:9:946:11 | end | taint.cpp:948:48:948:50 | end | | +| taint.cpp:947:10:947:18 | remaining | taint.cpp:948:54:948:62 | remaining | | +| taint.cpp:948:19:948:22 | ref arg dest | taint.cpp:949:9:949:12 | dest | | +| taint.cpp:948:47:948:50 | ref arg & ... | taint.cpp:948:48:948:50 | end [inner post update] | | +| taint.cpp:948:48:948:50 | end | taint.cpp:948:47:948:50 | & ... | | +| taint.cpp:948:53:948:62 | ref arg & ... | taint.cpp:948:54:948:62 | remaining [inner post update] | | +| taint.cpp:948:54:948:62 | remaining | taint.cpp:948:53:948:62 | & ... | | +| taint.cpp:949:9:949:12 | dest | taint.cpp:949:8:949:12 | * ... | | +| taint.cpp:952:20:952:27 | prefix | taint.cpp:953:18:953:21 | dest | | +| taint.cpp:952:20:952:27 | prefix | taint.cpp:953:31:953:34 | dest | | +| taint.cpp:952:20:952:27 | prefix | taint.cpp:954:9:954:12 | dest | | +| taint.cpp:953:18:953:21 | ref arg dest | taint.cpp:954:9:954:12 | dest | | +| taint.cpp:954:9:954:12 | dest | taint.cpp:954:8:954:12 | * ... | | +| taint.cpp:957:20:957:27 | prefix | taint.cpp:960:20:960:23 | dest | | +| taint.cpp:957:20:957:27 | prefix | taint.cpp:960:33:960:36 | dest | | +| taint.cpp:957:20:957:27 | prefix | taint.cpp:961:9:961:12 | dest | | +| taint.cpp:958:9:958:11 | end | taint.cpp:960:54:960:56 | end | | +| taint.cpp:959:10:959:18 | remaining | taint.cpp:960:60:960:68 | remaining | | +| taint.cpp:960:20:960:23 | ref arg dest | taint.cpp:961:9:961:12 | dest | | +| taint.cpp:960:53:960:56 | ref arg & ... | taint.cpp:960:54:960:56 | end [inner post update] | | +| taint.cpp:960:54:960:56 | end | taint.cpp:960:53:960:56 | & ... | | +| taint.cpp:960:59:960:68 | ref arg & ... | taint.cpp:960:60:960:68 | remaining [inner post update] | | +| taint.cpp:960:60:960:68 | remaining | taint.cpp:960:59:960:68 | & ... | | +| taint.cpp:961:9:961:12 | dest | taint.cpp:961:8:961:12 | * ... | | +| taint.cpp:964:19:964:22 | {...} | taint.cpp:965:20:965:23 | dest | | +| taint.cpp:964:19:964:22 | {...} | taint.cpp:965:33:965:36 | dest | | +| taint.cpp:964:19:964:22 | {...} | taint.cpp:966:9:966:12 | dest | | +| taint.cpp:964:21:964:21 | 0 | taint.cpp:964:19:964:22 | {...} | TAINT | +| taint.cpp:965:20:965:23 | ref arg dest | taint.cpp:966:9:966:12 | dest | | +| taint.cpp:965:40:965:43 | %s | taint.cpp:965:20:965:23 | ref arg dest | TAINT | +| taint.cpp:965:46:965:51 | ref arg source | taint.cpp:975:45:975:50 | source | | +| taint.cpp:965:46:965:51 | ref arg source | taint.cpp:982:69:982:74 | source | | +| taint.cpp:965:46:965:51 | source | taint.cpp:965:20:965:23 | ref arg dest | TAINT | +| taint.cpp:966:9:966:12 | dest | taint.cpp:966:8:966:12 | * ... | | +| taint.cpp:969:22:969:25 | {...} | taint.cpp:970:20:970:23 | dest | | +| taint.cpp:969:22:969:25 | {...} | taint.cpp:970:33:970:36 | dest | | +| taint.cpp:969:22:969:25 | {...} | taint.cpp:971:9:971:12 | dest | | +| taint.cpp:969:24:969:24 | 0 | taint.cpp:969:22:969:25 | {...} | TAINT | +| taint.cpp:970:20:970:23 | ref arg dest | taint.cpp:971:9:971:12 | dest | | +| taint.cpp:970:40:970:44 | %s | taint.cpp:970:20:970:23 | ref arg dest | TAINT | +| taint.cpp:970:47:970:53 | wsource | taint.cpp:970:20:970:23 | ref arg dest | TAINT | +| taint.cpp:971:9:971:12 | dest | taint.cpp:971:8:971:12 | * ... | | +| taint.cpp:974:19:974:22 | {...} | taint.cpp:975:19:975:22 | dest | | +| taint.cpp:974:19:974:22 | {...} | taint.cpp:975:32:975:35 | dest | | +| taint.cpp:974:19:974:22 | {...} | taint.cpp:976:9:976:12 | dest | | +| taint.cpp:974:21:974:21 | 0 | taint.cpp:974:19:974:22 | {...} | TAINT | +| taint.cpp:975:19:975:22 | ref arg dest | taint.cpp:976:9:976:12 | dest | | +| taint.cpp:975:39:975:42 | %s | taint.cpp:975:19:975:22 | ref arg dest | TAINT | +| taint.cpp:975:45:975:50 | ref arg source | taint.cpp:982:69:982:74 | source | | +| taint.cpp:975:45:975:50 | source | taint.cpp:975:19:975:22 | ref arg dest | TAINT | +| taint.cpp:976:9:976:12 | dest | taint.cpp:976:8:976:12 | * ... | | +| taint.cpp:979:19:979:22 | {...} | taint.cpp:982:22:982:25 | dest | | +| taint.cpp:979:19:979:22 | {...} | taint.cpp:982:35:982:38 | dest | | +| taint.cpp:979:19:979:22 | {...} | taint.cpp:983:9:983:12 | dest | | +| taint.cpp:979:21:979:21 | 0 | taint.cpp:979:19:979:22 | {...} | TAINT | +| taint.cpp:980:9:980:11 | end | taint.cpp:982:43:982:45 | end | | +| taint.cpp:981:10:981:18 | remaining | taint.cpp:982:49:982:57 | remaining | | +| taint.cpp:982:22:982:25 | ref arg dest | taint.cpp:983:9:983:12 | dest | | +| taint.cpp:982:42:982:45 | ref arg & ... | taint.cpp:982:43:982:45 | end [inner post update] | | +| taint.cpp:982:43:982:45 | end | taint.cpp:982:42:982:45 | & ... | | +| taint.cpp:982:48:982:57 | ref arg & ... | taint.cpp:982:49:982:57 | remaining [inner post update] | | +| taint.cpp:982:49:982:57 | remaining | taint.cpp:982:48:982:57 | & ... | | +| taint.cpp:982:63:982:66 | %s | taint.cpp:982:22:982:25 | ref arg dest | TAINT | +| taint.cpp:982:69:982:74 | source | taint.cpp:982:22:982:25 | ref arg dest | TAINT | +| taint.cpp:983:9:983:12 | dest | taint.cpp:983:8:983:12 | * ... | | +| taint.cpp:986:19:986:22 | {...} | taint.cpp:988:20:988:23 | dest | | +| taint.cpp:986:19:986:22 | {...} | taint.cpp:988:33:988:36 | dest | | +| taint.cpp:986:19:986:22 | {...} | taint.cpp:989:9:989:12 | dest | | +| taint.cpp:986:21:986:21 | 0 | taint.cpp:986:19:986:22 | {...} | TAINT | +| taint.cpp:987:15:987:29 | call to indirect_source | taint.cpp:988:40:988:42 | fmt | | +| taint.cpp:988:20:988:23 | ref arg dest | taint.cpp:989:9:989:12 | dest | | +| taint.cpp:988:40:988:42 | fmt | taint.cpp:988:20:988:23 | ref arg dest | TAINT | +| taint.cpp:989:9:989:12 | dest | taint.cpp:989:8:989:12 | * ... | | +| taint.cpp:992:19:992:22 | {...} | taint.cpp:993:20:993:23 | dest | | +| taint.cpp:992:19:992:22 | {...} | taint.cpp:993:33:993:36 | dest | | +| taint.cpp:992:19:992:22 | {...} | taint.cpp:994:9:994:12 | dest | | +| taint.cpp:992:21:992:21 | 0 | taint.cpp:992:19:992:22 | {...} | TAINT | +| taint.cpp:993:20:993:23 | ref arg dest | taint.cpp:994:9:994:12 | dest | | +| taint.cpp:993:40:993:43 | %d | taint.cpp:993:20:993:23 | ref arg dest | TAINT | +| taint.cpp:993:46:993:47 | 42 | taint.cpp:993:20:993:23 | ref arg dest | TAINT | +| taint.cpp:994:9:994:12 | dest | taint.cpp:994:8:994:12 | * ... | | +| taint.cpp:997:19:997:22 | {...} | taint.cpp:998:18:998:21 | dest | | +| taint.cpp:997:19:997:22 | {...} | taint.cpp:998:31:998:34 | dest | | +| taint.cpp:997:19:997:22 | {...} | taint.cpp:999:9:999:12 | dest | | +| taint.cpp:997:21:997:21 | 0 | taint.cpp:997:19:997:22 | {...} | TAINT | +| taint.cpp:998:18:998:21 | ref arg dest | taint.cpp:999:9:999:12 | dest | | +| taint.cpp:999:9:999:12 | dest | taint.cpp:999:8:999:12 | * ... | | | thread.cpp:10:27:10:27 | s | thread.cpp:10:27:10:27 | s | | | thread.cpp:10:27:10:27 | s | thread.cpp:11:8:11:8 | s | | | thread.cpp:14:26:14:26 | s | thread.cpp:15:8:15:8 | s | | diff --git a/cpp/ql/test/library-tests/dataflow/taint-tests/taint.cpp b/cpp/ql/test/library-tests/dataflow/taint-tests/taint.cpp index fa32e192239b..d1745fcd5e43 100644 --- a/cpp/ql/test/library-tests/dataflow/taint-tests/taint.cpp +++ b/cpp/ql/test/library-tests/dataflow/taint-tests/taint.cpp @@ -866,3 +866,136 @@ void test_iconv(size_t size) { iconv(0, &s, &size, &p, &size_out); sink(*p); // $ ast,ir } + +using va_list = void*; + +long StringCchCopyA(char *, size_t, const char *); +long StringCchCopyW(wchar_t *, size_t, const wchar_t *); +long StringCbCopyA(char *, size_t, const char *); +long StringCchCopyExA(char *, size_t, const char *, char **, size_t *, unsigned long); +long StringCchCopyNA(char *, size_t, const char *, size_t); +long StringCchCopyNExA(char *, size_t, const char *, size_t, char **, size_t *, unsigned long); +long StringCchCatA(char *, size_t, const char *); +long StringCchCatW(wchar_t *, size_t, const wchar_t *); +long StringCbCatA(char *, size_t, const char *); +long StringCchCatExA(char *, size_t, const char *, char **, size_t *, unsigned long); +long StringCchCatNA(char *, size_t, const char *, size_t); +long StringCchCatNExA(char *, size_t, const char *, size_t, char **, size_t *, unsigned long); +long StringCchPrintfA(char *, size_t, const char *, ...); +long StringCchPrintfW(wchar_t *, size_t, const wchar_t *, ...); +long StringCbPrintfA(char *, size_t, const char *, ...); +long StringCchPrintfExA(char *, size_t, char **, size_t *, unsigned long, const char *, ...); +long StringCchVPrintfA(char *, size_t, const char *, va_list); +long StringCchVPrintfExA(char *, size_t, char **, size_t *, unsigned long, const char *, va_list); + +void test_strsafe() { + char *source = indirect_source(); + wchar_t *wsource = (wchar_t *)indirect_source(); + + { + char dest[256] = {0}; + StringCchCopyA(dest, sizeof(dest), source); + sink(*dest); // $ MISSING: ir,ast + } + { + wchar_t dest[256] = {0}; + StringCchCopyW(dest, sizeof(dest), wsource); + sink(*dest); // $ MISSING: ir,ast + } + { + char dest[256] = {0}; + StringCbCopyA(dest, sizeof(dest), source); + sink(*dest); // $ MISSING: ir,ast + } + { + char dest[256] = {0}; + char *end; + size_t remaining; + StringCchCopyExA(dest, sizeof(dest), source, &end, &remaining, 0); + sink(*dest); // $ MISSING: ir,ast + } + { + char dest[256] = {0}; + StringCchCopyNA(dest, sizeof(dest), source, 128); + sink(*dest); // $ MISSING: ir,ast + } + { + char dest[256] = {0}; + char *end; + size_t remaining; + StringCchCopyNExA(dest, sizeof(dest), source, 128, &end, &remaining, 0); + sink(dest); // $ MISSING: ir,ast + } + { + char dest[256] = "prefix"; + StringCchCatA(dest, sizeof(dest), source); + sink(*dest); // $ MISSING: ir,ast + } + { + wchar_t dest[256] = L"prefix"; + StringCchCatW(dest, sizeof(dest), wsource); + sink(*dest); // $ MISSING: ir,ast + } + { + char dest[256] = "prefix"; + StringCbCatA(dest, sizeof(dest), source); + sink(*dest); // $ MISSING: ir,ast + } + { + char dest[256] = "prefix"; + char *end; + size_t remaining; + StringCchCatExA(dest, sizeof(dest), source, &end, &remaining, 0); + sink(*dest); // $ MISSING: ir,ast + } + { + char dest[256] = "prefix"; + StringCchCatNA(dest, sizeof(dest), source, 128); + sink(*dest); // $ MISSING: ir,ast + } + { + char dest[256] = "prefix"; + char *end; + size_t remaining; + StringCchCatNExA(dest, sizeof(dest), source, 128, &end, &remaining, 0); + sink(*dest); // $ MISSING: ir,ast + } + { + char dest[256] = {0}; + StringCchPrintfA(dest, sizeof(dest), "%s", source); + sink(*dest); // $ MISSING: ir,ast + } + { + wchar_t dest[256] = {0}; + StringCchPrintfW(dest, sizeof(dest), L"%s", wsource); + sink(*dest); // $ MISSING: ir,ast + } + { + char dest[256] = {0}; + StringCbPrintfA(dest, sizeof(dest), "%s", source); + sink(*dest); // $ MISSING: ir,ast + } + { + char dest[256] = {0}; + char *end; + size_t remaining; + StringCchPrintfExA(dest, sizeof(dest), &end, &remaining, 0, "%s", source); + sink(*dest); // $ MISSING: ir,ast + } + { + char dest[256] = {0}; + char *fmt = indirect_source(); + StringCchPrintfA(dest, sizeof(dest), fmt); + sink(*dest); // $ MISSING: ir,ast + } + { + char dest[256] = {0}; + StringCchPrintfA(dest, sizeof(dest), "%d", 42); + sink(*dest); // clean + } + { + char dest[256] = {0}; + StringCchCopyA(dest, sizeof(dest), "hello"); + sink(*dest); // clean + } +} diff --git a/cpp/ql/test/library-tests/dataflow/taint-tests/test_mad-signatures.expected b/cpp/ql/test/library-tests/dataflow/taint-tests/test_mad-signatures.expected index e0002aa9c03f..5ad32759da58 100644 --- a/cpp/ql/test/library-tests/dataflow/taint-tests/test_mad-signatures.expected +++ b/cpp/ql/test/library-tests/dataflow/taint-tests/test_mad-signatures.expected @@ -28044,6 +28044,118 @@ getParameterTypeName | taint.cpp:859:8:859:12 | iconv | 4 | unsigned long * | | taint.cpp:861:6:861:15 | test_iconv | 0 | size_t | | taint.cpp:861:6:861:15 | test_iconv | 0 | unsigned long | +| taint.cpp:872:6:872:19 | StringCchCopyA | 0 | char * | +| taint.cpp:872:6:872:19 | StringCchCopyA | 1 | size_t | +| taint.cpp:872:6:872:19 | StringCchCopyA | 1 | unsigned long | +| taint.cpp:872:6:872:19 | StringCchCopyA | 2 | const char * | +| taint.cpp:873:6:873:19 | StringCchCopyW | 0 | wchar_t * | +| taint.cpp:873:6:873:19 | StringCchCopyW | 1 | size_t | +| taint.cpp:873:6:873:19 | StringCchCopyW | 1 | unsigned long | +| taint.cpp:873:6:873:19 | StringCchCopyW | 2 | const wchar_t * | +| taint.cpp:874:6:874:18 | StringCbCopyA | 0 | char * | +| taint.cpp:874:6:874:18 | StringCbCopyA | 1 | size_t | +| taint.cpp:874:6:874:18 | StringCbCopyA | 1 | unsigned long | +| taint.cpp:874:6:874:18 | StringCbCopyA | 2 | const char * | +| taint.cpp:875:6:875:21 | StringCchCopyExA | 0 | char * | +| taint.cpp:875:6:875:21 | StringCchCopyExA | 1 | size_t | +| taint.cpp:875:6:875:21 | StringCchCopyExA | 1 | unsigned long | +| taint.cpp:875:6:875:21 | StringCchCopyExA | 2 | const char * | +| taint.cpp:875:6:875:21 | StringCchCopyExA | 3 | char ** | +| taint.cpp:875:6:875:21 | StringCchCopyExA | 4 | size_t * | +| taint.cpp:875:6:875:21 | StringCchCopyExA | 4 | unsigned long * | +| taint.cpp:875:6:875:21 | StringCchCopyExA | 5 | unsigned long | +| taint.cpp:876:6:876:20 | StringCchCopyNA | 0 | char * | +| taint.cpp:876:6:876:20 | StringCchCopyNA | 1 | size_t | +| taint.cpp:876:6:876:20 | StringCchCopyNA | 1 | unsigned long | +| taint.cpp:876:6:876:20 | StringCchCopyNA | 2 | const char * | +| taint.cpp:876:6:876:20 | StringCchCopyNA | 3 | size_t | +| taint.cpp:876:6:876:20 | StringCchCopyNA | 3 | unsigned long | +| taint.cpp:877:6:877:22 | StringCchCopyNExA | 0 | char * | +| taint.cpp:877:6:877:22 | StringCchCopyNExA | 1 | size_t | +| taint.cpp:877:6:877:22 | StringCchCopyNExA | 1 | unsigned long | +| taint.cpp:877:6:877:22 | StringCchCopyNExA | 2 | const char * | +| taint.cpp:877:6:877:22 | StringCchCopyNExA | 3 | size_t | +| taint.cpp:877:6:877:22 | StringCchCopyNExA | 3 | unsigned long | +| taint.cpp:877:6:877:22 | StringCchCopyNExA | 4 | char ** | +| taint.cpp:877:6:877:22 | StringCchCopyNExA | 5 | size_t * | +| taint.cpp:877:6:877:22 | StringCchCopyNExA | 5 | unsigned long * | +| taint.cpp:877:6:877:22 | StringCchCopyNExA | 6 | unsigned long | +| taint.cpp:878:6:878:18 | StringCchCatA | 0 | char * | +| taint.cpp:878:6:878:18 | StringCchCatA | 1 | size_t | +| taint.cpp:878:6:878:18 | StringCchCatA | 1 | unsigned long | +| taint.cpp:878:6:878:18 | StringCchCatA | 2 | const char * | +| taint.cpp:879:6:879:18 | StringCchCatW | 0 | wchar_t * | +| taint.cpp:879:6:879:18 | StringCchCatW | 1 | size_t | +| taint.cpp:879:6:879:18 | StringCchCatW | 1 | unsigned long | +| taint.cpp:879:6:879:18 | StringCchCatW | 2 | const wchar_t * | +| taint.cpp:880:6:880:17 | StringCbCatA | 0 | char * | +| taint.cpp:880:6:880:17 | StringCbCatA | 1 | size_t | +| taint.cpp:880:6:880:17 | StringCbCatA | 1 | unsigned long | +| taint.cpp:880:6:880:17 | StringCbCatA | 2 | const char * | +| taint.cpp:881:6:881:20 | StringCchCatExA | 0 | char * | +| taint.cpp:881:6:881:20 | StringCchCatExA | 1 | size_t | +| taint.cpp:881:6:881:20 | StringCchCatExA | 1 | unsigned long | +| taint.cpp:881:6:881:20 | StringCchCatExA | 2 | const char * | +| taint.cpp:881:6:881:20 | StringCchCatExA | 3 | char ** | +| taint.cpp:881:6:881:20 | StringCchCatExA | 4 | size_t * | +| taint.cpp:881:6:881:20 | StringCchCatExA | 4 | unsigned long * | +| taint.cpp:881:6:881:20 | StringCchCatExA | 5 | unsigned long | +| taint.cpp:882:6:882:19 | StringCchCatNA | 0 | char * | +| taint.cpp:882:6:882:19 | StringCchCatNA | 1 | size_t | +| taint.cpp:882:6:882:19 | StringCchCatNA | 1 | unsigned long | +| taint.cpp:882:6:882:19 | StringCchCatNA | 2 | const char * | +| taint.cpp:882:6:882:19 | StringCchCatNA | 3 | size_t | +| taint.cpp:882:6:882:19 | StringCchCatNA | 3 | unsigned long | +| taint.cpp:883:6:883:21 | StringCchCatNExA | 0 | char * | +| taint.cpp:883:6:883:21 | StringCchCatNExA | 1 | size_t | +| taint.cpp:883:6:883:21 | StringCchCatNExA | 1 | unsigned long | +| taint.cpp:883:6:883:21 | StringCchCatNExA | 2 | const char * | +| taint.cpp:883:6:883:21 | StringCchCatNExA | 3 | size_t | +| taint.cpp:883:6:883:21 | StringCchCatNExA | 3 | unsigned long | +| taint.cpp:883:6:883:21 | StringCchCatNExA | 4 | char ** | +| taint.cpp:883:6:883:21 | StringCchCatNExA | 5 | size_t * | +| taint.cpp:883:6:883:21 | StringCchCatNExA | 5 | unsigned long * | +| taint.cpp:883:6:883:21 | StringCchCatNExA | 6 | unsigned long | +| taint.cpp:884:6:884:21 | StringCchPrintfA | 0 | char * | +| taint.cpp:884:6:884:21 | StringCchPrintfA | 1 | size_t | +| taint.cpp:884:6:884:21 | StringCchPrintfA | 1 | unsigned long | +| taint.cpp:884:6:884:21 | StringCchPrintfA | 2 | const char * | +| taint.cpp:884:6:884:21 | StringCchPrintfA | 3 | ... | +| taint.cpp:885:6:885:21 | StringCchPrintfW | 0 | wchar_t * | +| taint.cpp:885:6:885:21 | StringCchPrintfW | 1 | size_t | +| taint.cpp:885:6:885:21 | StringCchPrintfW | 1 | unsigned long | +| taint.cpp:885:6:885:21 | StringCchPrintfW | 2 | const wchar_t * | +| taint.cpp:885:6:885:21 | StringCchPrintfW | 3 | ... | +| taint.cpp:886:6:886:20 | StringCbPrintfA | 0 | char * | +| taint.cpp:886:6:886:20 | StringCbPrintfA | 1 | size_t | +| taint.cpp:886:6:886:20 | StringCbPrintfA | 1 | unsigned long | +| taint.cpp:886:6:886:20 | StringCbPrintfA | 2 | const char * | +| taint.cpp:886:6:886:20 | StringCbPrintfA | 3 | ... | +| taint.cpp:887:6:887:23 | StringCchPrintfExA | 0 | char * | +| taint.cpp:887:6:887:23 | StringCchPrintfExA | 1 | size_t | +| taint.cpp:887:6:887:23 | StringCchPrintfExA | 1 | unsigned long | +| taint.cpp:887:6:887:23 | StringCchPrintfExA | 2 | char ** | +| taint.cpp:887:6:887:23 | StringCchPrintfExA | 3 | size_t * | +| taint.cpp:887:6:887:23 | StringCchPrintfExA | 3 | unsigned long * | +| taint.cpp:887:6:887:23 | StringCchPrintfExA | 4 | unsigned long | +| taint.cpp:887:6:887:23 | StringCchPrintfExA | 5 | const char * | +| taint.cpp:887:6:887:23 | StringCchPrintfExA | 6 | ... | +| taint.cpp:888:6:888:22 | StringCchVPrintfA | 0 | char * | +| taint.cpp:888:6:888:22 | StringCchVPrintfA | 1 | size_t | +| taint.cpp:888:6:888:22 | StringCchVPrintfA | 1 | unsigned long | +| taint.cpp:888:6:888:22 | StringCchVPrintfA | 2 | const char * | +| taint.cpp:888:6:888:22 | StringCchVPrintfA | 3 | va_list | +| taint.cpp:888:6:888:22 | StringCchVPrintfA | 3 | void * | +| taint.cpp:889:6:889:24 | StringCchVPrintfExA | 0 | char * | +| taint.cpp:889:6:889:24 | StringCchVPrintfExA | 1 | size_t | +| taint.cpp:889:6:889:24 | StringCchVPrintfExA | 1 | unsigned long | +| taint.cpp:889:6:889:24 | StringCchVPrintfExA | 2 | char ** | +| taint.cpp:889:6:889:24 | StringCchVPrintfExA | 3 | size_t * | +| taint.cpp:889:6:889:24 | StringCchVPrintfExA | 3 | unsigned long * | +| taint.cpp:889:6:889:24 | StringCchVPrintfExA | 4 | unsigned long | +| taint.cpp:889:6:889:24 | StringCchVPrintfExA | 5 | const char * | +| taint.cpp:889:6:889:24 | StringCchVPrintfExA | 6 | va_list | +| taint.cpp:889:6:889:24 | StringCchVPrintfExA | 6 | void * | | thread.cpp:4:6:4:9 | sink | 0 | int | | thread.cpp:6:8:6:8 | operator= | 0 | S && | | thread.cpp:6:8:6:8 | operator= | 0 | const S & | From 2805f788ee30285fba24f04a0a7d4119fa489064 Mon Sep 17 00:00:00 2001 From: Mathias Vorreiter Pedersen Date: Tue, 28 Apr 2026 10:28:05 +0100 Subject: [PATCH 090/260] C++: Add strsafe.h model. --- cpp/ql/lib/ext/Strsafe.model.yml | 94 ++++++++++++++++++++++++++++++++ 1 file changed, 94 insertions(+) create mode 100644 cpp/ql/lib/ext/Strsafe.model.yml diff --git a/cpp/ql/lib/ext/Strsafe.model.yml b/cpp/ql/lib/ext/Strsafe.model.yml new file mode 100644 index 000000000000..44013854a067 --- /dev/null +++ b/cpp/ql/lib/ext/Strsafe.model.yml @@ -0,0 +1,94 @@ +# Models for strsafe.h safe string functions +extensions: + - addsTo: + pack: codeql/cpp-all + extensible: sourceModel + data: # namespace, type, subtypes, name, signature, ext, output, kind, provenance + # StringCchGets: (pszDest, cchDest) + - ["", "", False, "StringCchGetsA", "", "", "Argument[*0]", "local", "manual"] + - ["", "", False, "StringCchGetsW", "", "", "Argument[*0]", "local", "manual"] + # StringCbGets: (pszDest, cbDest) + - ["", "", False, "StringCbGetsA", "", "", "Argument[*0]", "local", "manual"] + - ["", "", False, "StringCbGetsW", "", "", "Argument[*0]", "local", "manual"] + # StringCchGetsEx: (pszDest, cchDest, ppszDestEnd, pcchRemaining, dwFlags) + - ["", "", False, "StringCchGetsExA", "", "", "Argument[*0]", "local", "manual"] + - ["", "", False, "StringCchGetsExW", "", "", "Argument[*0]", "local", "manual"] + # StringCbGetsEx: (pszDest, cbDest, ppszDestEnd, pcbRemaining, dwFlags) + - ["", "", False, "StringCbGetsExA", "", "", "Argument[*0]", "local", "manual"] + - ["", "", False, "StringCbGetsExW", "", "", "Argument[*0]", "local", "manual"] + - addsTo: + pack: codeql/cpp-all + extensible: summaryModel + data: # namespace, type, subtypes, name, signature, ext, input, output, kind, provenance + # StringCchCopy: (pszDest, cchDest, pszSrc) + - ["", "", False, "StringCchCopyA", "", "", "Argument[*2]", "Argument[*0]", "taint", "manual"] + - ["", "", False, "StringCchCopyW", "", "", "Argument[*2]", "Argument[*0]", "taint", "manual"] + # StringCbCopy: (pszDest, cbDest, pszSrc) + - ["", "", False, "StringCbCopyA", "", "", "Argument[*2]", "Argument[*0]", "taint", "manual"] + - ["", "", False, "StringCbCopyW", "", "", "Argument[*2]", "Argument[*0]", "taint", "manual"] + # StringCchCopyEx: (pszDest, cchDest, pszSrc, ppszDestEnd, pcchRemaining, dwFlags) + - ["", "", False, "StringCchCopyExA", "", "", "Argument[*2]", "Argument[*0]", "taint", "manual"] + - ["", "", False, "StringCchCopyExW", "", "", "Argument[*2]", "Argument[*0]", "taint", "manual"] + # StringCbCopyEx: (pszDest, cbDest, pszSrc, ppszDestEnd, pcbRemaining, dwFlags) + - ["", "", False, "StringCbCopyExA", "", "", "Argument[*2]", "Argument[*0]", "taint", "manual"] + - ["", "", False, "StringCbCopyExW", "", "", "Argument[*2]", "Argument[*0]", "taint", "manual"] + # StringCchCopyN: (pszDest, cchDest, pszSrc, cchToCopy) + - ["", "", False, "StringCchCopyNA", "", "", "Argument[*2]", "Argument[*0]", "taint", "manual"] + - ["", "", False, "StringCchCopyNW", "", "", "Argument[*2]", "Argument[*0]", "taint", "manual"] + # StringCbCopyN: (pszDest, cbDest, pszSrc, cbToCopy) + - ["", "", False, "StringCbCopyNA", "", "", "Argument[*2]", "Argument[*0]", "taint", "manual"] + - ["", "", False, "StringCbCopyNW", "", "", "Argument[*2]", "Argument[*0]", "taint", "manual"] + # StringCchCopyNEx: (pszDest, cchDest, pszSrc, cchToCopy, ppszDestEnd, pcchRemaining, dwFlags) + - ["", "", False, "StringCchCopyNExA", "", "", "Argument[*2]", "Argument[*0]", "taint", "manual"] + - ["", "", False, "StringCchCopyNExW", "", "", "Argument[*2]", "Argument[*0]", "taint", "manual"] + # StringCbCopyNEx: (pszDest, cbDest, pszSrc, cbToCopy, ppszDestEnd, pcbRemaining, dwFlags) + - ["", "", False, "StringCbCopyNExA", "", "", "Argument[*2]", "Argument[*0]", "taint", "manual"] + - ["", "", False, "StringCbCopyNExW", "", "", "Argument[*2]", "Argument[*0]", "taint", "manual"] + # StringCchCat: (pszDest, cchDest, pszSrc) + - ["", "", False, "StringCchCatA", "", "", "Argument[*2]", "Argument[*0]", "taint", "manual"] + - ["", "", False, "StringCchCatW", "", "", "Argument[*2]", "Argument[*0]", "taint", "manual"] + # StringCbCat: (pszDest, cbDest, pszSrc) + - ["", "", False, "StringCbCatA", "", "", "Argument[*2]", "Argument[*0]", "taint", "manual"] + - ["", "", False, "StringCbCatW", "", "", "Argument[*2]", "Argument[*0]", "taint", "manual"] + # StringCchCatEx: (pszDest, cchDest, pszSrc, ppszDestEnd, pcchRemaining, dwFlags) + - ["", "", False, "StringCchCatExA", "", "", "Argument[*2]", "Argument[*0]", "taint", "manual"] + - ["", "", False, "StringCchCatExW", "", "", "Argument[*2]", "Argument[*0]", "taint", "manual"] + # StringCbCatEx: (pszDest, cbDest, pszSrc, ppszDestEnd, pcbRemaining, dwFlags) + - ["", "", False, "StringCbCatExA", "", "", "Argument[*2]", "Argument[*0]", "taint", "manual"] + - ["", "", False, "StringCbCatExW", "", "", "Argument[*2]", "Argument[*0]", "taint", "manual"] + # StringCchCatN: (pszDest, cchDest, pszSrc, cchToAppend) + - ["", "", False, "StringCchCatNA", "", "", "Argument[*2]", "Argument[*0]", "taint", "manual"] + - ["", "", False, "StringCchCatNW", "", "", "Argument[*2]", "Argument[*0]", "taint", "manual"] + # StringCbCatN: (pszDest, cbDest, pszSrc, cbToAppend) + - ["", "", False, "StringCbCatNA", "", "", "Argument[*2]", "Argument[*0]", "taint", "manual"] + - ["", "", False, "StringCbCatNW", "", "", "Argument[*2]", "Argument[*0]", "taint", "manual"] + # StringCchCatNEx: (pszDest, cchDest, pszSrc, cchToAppend, ppszDestEnd, pcchRemaining, dwFlags) + - ["", "", False, "StringCchCatNExA", "", "", "Argument[*2]", "Argument[*0]", "taint", "manual"] + - ["", "", False, "StringCchCatNExW", "", "", "Argument[*2]", "Argument[*0]", "taint", "manual"] + # StringCbCatNEx: (pszDest, cbDest, pszSrc, cbToAppend, ppszDestEnd, pcbRemaining, dwFlags) + - ["", "", False, "StringCbCatNExA", "", "", "Argument[*2]", "Argument[*0]", "taint", "manual"] + - ["", "", False, "StringCbCatNExW", "", "", "Argument[*2]", "Argument[*0]", "taint", "manual"] + # StringCchPrintf: (pszDest, cchDest, pszFormat, ...) + - ["", "", False, "StringCchPrintfA", "", "", "Argument[*2..8]", "Argument[*0]", "taint", "manual"] + - ["", "", False, "StringCchPrintfW", "", "", "Argument[*2..8]", "Argument[*0]", "taint", "manual"] + # StringCbPrintf: (pszDest, cbDest, pszFormat, ...) + - ["", "", False, "StringCbPrintfA", "", "", "Argument[*2..8]", "Argument[*0]", "taint", "manual"] + - ["", "", False, "StringCbPrintfW", "", "", "Argument[*2..8]", "Argument[*0]", "taint", "manual"] + # StringCchPrintfEx: (pszDest, cchDest, ppszDestEnd, pcchRemaining, dwFlags, pszFormat, ...) + - ["", "", False, "StringCchPrintfExA", "", "", "Argument[*5..11]", "Argument[*0]", "taint", "manual"] + - ["", "", False, "StringCchPrintfExW", "", "", "Argument[*5..11]", "Argument[*0]", "taint", "manual"] + # StringCbPrintfEx: (pszDest, cbDest, ppszDestEnd, pcbRemaining, dwFlags, pszFormat, ...) + - ["", "", False, "StringCbPrintfExA", "", "", "Argument[*5..11]", "Argument[*0]", "taint", "manual"] + - ["", "", False, "StringCbPrintfExW", "", "", "Argument[*5..11]", "Argument[*0]", "taint", "manual"] + # StringCchVPrintf: (pszDest, cchDest, pszFormat, argList) + - ["", "", False, "StringCchVPrintfA", "", "", "Argument[*2]", "Argument[*0]", "taint", "manual"] + - ["", "", False, "StringCchVPrintfW", "", "", "Argument[*2]", "Argument[*0]", "taint", "manual"] + # StringCbVPrintf: (pszDest, cbDest, pszFormat, argList) + - ["", "", False, "StringCbVPrintfA", "", "", "Argument[*2]", "Argument[*0]", "taint", "manual"] + - ["", "", False, "StringCbVPrintfW", "", "", "Argument[*2]", "Argument[*0]", "taint", "manual"] + # StringCchVPrintfEx: (pszDest, cchDest, ppszDestEnd, pcchRemaining, dwFlags, pszFormat, argList) + - ["", "", False, "StringCchVPrintfExA", "", "", "Argument[*5]", "Argument[*0]", "taint", "manual"] + - ["", "", False, "StringCchVPrintfExW", "", "", "Argument[*5]", "Argument[*0]", "taint", "manual"] + # StringCbVPrintfEx: (pszDest, cbDest, ppszDestEnd, pcbRemaining, dwFlags, pszFormat, argList) + - ["", "", False, "StringCbVPrintfExA", "", "", "Argument[*5]", "Argument[*0]", "taint", "manual"] + - ["", "", False, "StringCbVPrintfExW", "", "", "Argument[*5]", "Argument[*0]", "taint", "manual"] From 86d8e362a11b33f9096bc0781b8ae4a00f1f542c Mon Sep 17 00:00:00 2001 From: Mathias Vorreiter Pedersen Date: Tue, 28 Apr 2026 10:28:13 +0100 Subject: [PATCH 091/260] C++: Accept test changes. --- .../source-sink-tests/sources-and-sinks.cpp | 4 +-- .../dataflow/taint-tests/taint.cpp | 34 +++++++++---------- 2 files changed, 19 insertions(+), 19 deletions(-) diff --git a/cpp/ql/test/library-tests/dataflow/source-sink-tests/sources-and-sinks.cpp b/cpp/ql/test/library-tests/dataflow/source-sink-tests/sources-and-sinks.cpp index 1df2923d3064..e4947a112f8d 100644 --- a/cpp/ql/test/library-tests/dataflow/source-sink-tests/sources-and-sinks.cpp +++ b/cpp/ql/test/library-tests/dataflow/source-sink-tests/sources-and-sinks.cpp @@ -122,12 +122,12 @@ long StringCchGetsExA(char *, size_t, char **, size_t *, unsigned long); void test_strsafe_gets() { { char dest[256] = {0}; - StringCchGetsA(dest, sizeof(dest)); // $ MISSING: local_source + StringCchGetsA(dest, sizeof(dest)); // $ local_source } { char dest[256] = {0}; char *end; size_t remaining; - StringCchGetsExA(dest, sizeof(dest), &end, &remaining, 0); // $ MISSING: local_source + StringCchGetsExA(dest, sizeof(dest), &end, &remaining, 0); // $ local_source } } diff --git a/cpp/ql/test/library-tests/dataflow/taint-tests/taint.cpp b/cpp/ql/test/library-tests/dataflow/taint-tests/taint.cpp index d1745fcd5e43..3168fb3a96f8 100644 --- a/cpp/ql/test/library-tests/dataflow/taint-tests/taint.cpp +++ b/cpp/ql/test/library-tests/dataflow/taint-tests/taint.cpp @@ -895,98 +895,98 @@ void test_strsafe() { { char dest[256] = {0}; StringCchCopyA(dest, sizeof(dest), source); - sink(*dest); // $ MISSING: ir,ast + sink(*dest); // $ ir MISSING: ast } { wchar_t dest[256] = {0}; StringCchCopyW(dest, sizeof(dest), wsource); - sink(*dest); // $ MISSING: ir,ast + sink(*dest); // $ ir MISSING: ast } { char dest[256] = {0}; StringCbCopyA(dest, sizeof(dest), source); - sink(*dest); // $ MISSING: ir,ast + sink(*dest); // $ ir MISSING: ast } { char dest[256] = {0}; char *end; size_t remaining; StringCchCopyExA(dest, sizeof(dest), source, &end, &remaining, 0); - sink(*dest); // $ MISSING: ir,ast + sink(*dest); // $ ir MISSING: ast } { char dest[256] = {0}; StringCchCopyNA(dest, sizeof(dest), source, 128); - sink(*dest); // $ MISSING: ir,ast + sink(*dest); // $ ir MISSING: ast } { char dest[256] = {0}; char *end; size_t remaining; StringCchCopyNExA(dest, sizeof(dest), source, 128, &end, &remaining, 0); - sink(dest); // $ MISSING: ir,ast + sink(dest); // $ ir MISSING: ast } { char dest[256] = "prefix"; StringCchCatA(dest, sizeof(dest), source); - sink(*dest); // $ MISSING: ir,ast + sink(*dest); // $ ir MISSING: ast } { wchar_t dest[256] = L"prefix"; StringCchCatW(dest, sizeof(dest), wsource); - sink(*dest); // $ MISSING: ir,ast + sink(*dest); // $ ir MISSING: ast } { char dest[256] = "prefix"; StringCbCatA(dest, sizeof(dest), source); - sink(*dest); // $ MISSING: ir,ast + sink(*dest); // $ ir MISSING: ast } { char dest[256] = "prefix"; char *end; size_t remaining; StringCchCatExA(dest, sizeof(dest), source, &end, &remaining, 0); - sink(*dest); // $ MISSING: ir,ast + sink(*dest); // $ ir MISSING: ast } { char dest[256] = "prefix"; StringCchCatNA(dest, sizeof(dest), source, 128); - sink(*dest); // $ MISSING: ir,ast + sink(*dest); // $ ir MISSING: ast } { char dest[256] = "prefix"; char *end; size_t remaining; StringCchCatNExA(dest, sizeof(dest), source, 128, &end, &remaining, 0); - sink(*dest); // $ MISSING: ir,ast + sink(*dest); // $ ir MISSING: ast } { char dest[256] = {0}; StringCchPrintfA(dest, sizeof(dest), "%s", source); - sink(*dest); // $ MISSING: ir,ast + sink(*dest); // $ ir MISSING: ast } { wchar_t dest[256] = {0}; StringCchPrintfW(dest, sizeof(dest), L"%s", wsource); - sink(*dest); // $ MISSING: ir,ast + sink(*dest); // $ ir MISSING: ast } { char dest[256] = {0}; StringCbPrintfA(dest, sizeof(dest), "%s", source); - sink(*dest); // $ MISSING: ir,ast + sink(*dest); // $ ir MISSING: ast } { char dest[256] = {0}; char *end; size_t remaining; StringCchPrintfExA(dest, sizeof(dest), &end, &remaining, 0, "%s", source); - sink(*dest); // $ MISSING: ir,ast + sink(*dest); // $ ir MISSING: ast } { char dest[256] = {0}; char *fmt = indirect_source(); StringCchPrintfA(dest, sizeof(dest), fmt); - sink(*dest); // $ MISSING: ir,ast + sink(*dest); // $ ir MISSING: ast } { char dest[256] = {0}; From f28d5d2f593dfbbb9db9528a89cbde21f0a09724 Mon Sep 17 00:00:00 2001 From: Mathias Vorreiter Pedersen Date: Tue, 28 Apr 2026 10:57:04 +0100 Subject: [PATCH 092/260] C++: Add change note. --- cpp/ql/lib/change-notes/2026-04-28-strsafe.md | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 cpp/ql/lib/change-notes/2026-04-28-strsafe.md diff --git a/cpp/ql/lib/change-notes/2026-04-28-strsafe.md b/cpp/ql/lib/change-notes/2026-04-28-strsafe.md new file mode 100644 index 000000000000..9ef3fab08537 --- /dev/null +++ b/cpp/ql/lib/change-notes/2026-04-28-strsafe.md @@ -0,0 +1,4 @@ +--- +category: minorAnalysis +--- +* Added taint flow models for the `Strsafe.h` header from the Windows SDK. \ No newline at end of file From c59d6cb2a7b0020fc3fb91605a7381911365f05c Mon Sep 17 00:00:00 2001 From: Mathias Vorreiter Pedersen Date: Tue, 28 Apr 2026 11:35:08 +0100 Subject: [PATCH 093/260] C++: Accept query test change. --- .../NonConstantFormat/NonConstantFormat.expected | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/cpp/ql/test/query-tests/Likely Bugs/Format/NonConstantFormat/NonConstantFormat.expected b/cpp/ql/test/query-tests/Likely Bugs/Format/NonConstantFormat/NonConstantFormat.expected index 9424c731765e..63851030bba5 100644 --- a/cpp/ql/test/query-tests/Likely Bugs/Format/NonConstantFormat/NonConstantFormat.expected +++ b/cpp/ql/test/query-tests/Likely Bugs/Format/NonConstantFormat/NonConstantFormat.expected @@ -11,8 +11,13 @@ edges | nested.cpp:86:19:86:46 | *call to __builtin_alloca | nested.cpp:87:18:87:20 | *fmt | provenance | | | test.cpp:46:27:46:30 | **argv | test.cpp:130:20:130:26 | *access to array | provenance | | | test.cpp:167:31:167:34 | *data | test.cpp:170:12:170:14 | *res | provenance | DataFlowFunction | +| test.cpp:179:6:179:21 | [summary param] *2 in StringCchPrintfW | test.cpp:179:6:179:21 | [summary param] *0 in StringCchPrintfW [Return] | provenance | MaD:403 | +| test.cpp:193:32:193:34 | *str | test.cpp:195:31:195:33 | *str | provenance | | | test.cpp:193:32:193:34 | *str | test.cpp:195:31:195:33 | *str | provenance | | | test.cpp:193:32:193:34 | *str | test.cpp:197:11:197:14 | *wstr | provenance | TaintFunction | +| test.cpp:195:20:195:23 | StringCchPrintfW output argument | test.cpp:197:11:197:14 | *wstr | provenance | | +| test.cpp:195:31:195:33 | *str | test.cpp:179:6:179:21 | [summary param] *2 in StringCchPrintfW | provenance | | +| test.cpp:195:31:195:33 | *str | test.cpp:195:20:195:23 | StringCchPrintfW output argument | provenance | MaD:403 | | test.cpp:204:25:204:36 | *call to get_string | test.cpp:204:25:204:36 | *call to get_string | provenance | | | test.cpp:204:25:204:36 | *call to get_string | test.cpp:205:12:205:20 | *... + ... | provenance | | | test.cpp:204:25:204:36 | *call to get_string | test.cpp:206:12:206:16 | *hello | provenance | | @@ -55,7 +60,11 @@ nodes | test.cpp:130:20:130:26 | *access to array | semmle.label | *access to array | | test.cpp:167:31:167:34 | *data | semmle.label | *data | | test.cpp:170:12:170:14 | *res | semmle.label | *res | +| test.cpp:179:6:179:21 | [summary param] *0 in StringCchPrintfW [Return] | semmle.label | [summary param] *0 in StringCchPrintfW [Return] | +| test.cpp:179:6:179:21 | [summary param] *2 in StringCchPrintfW | semmle.label | [summary param] *2 in StringCchPrintfW | | test.cpp:193:32:193:34 | *str | semmle.label | *str | +| test.cpp:195:20:195:23 | StringCchPrintfW output argument | semmle.label | StringCchPrintfW output argument | +| test.cpp:195:31:195:33 | *str | semmle.label | *str | | test.cpp:195:31:195:33 | *str | semmle.label | *str | | test.cpp:197:11:197:14 | *wstr | semmle.label | *wstr | | test.cpp:204:25:204:36 | *call to get_string | semmle.label | *call to get_string | @@ -88,6 +97,7 @@ nodes | test.cpp:245:25:245:36 | *call to get_string | semmle.label | *call to get_string | | test.cpp:247:12:247:16 | *hello | semmle.label | *hello | subpaths +| test.cpp:195:31:195:33 | *str | test.cpp:179:6:179:21 | [summary param] *2 in StringCchPrintfW | test.cpp:179:6:179:21 | [summary param] *0 in StringCchPrintfW [Return] | test.cpp:195:20:195:23 | StringCchPrintfW output argument | #select | NonConstantFormat.c:30:10:30:16 | *access to array | NonConstantFormat.c:28:27:28:30 | **argv | NonConstantFormat.c:30:10:30:16 | *access to array | The format string argument to $@ has a source which cannot be verified to originate from a string literal. | NonConstantFormat.c:30:3:30:8 | call to printf | printf | | NonConstantFormat.c:41:9:41:45 | *call to any_random_function | NonConstantFormat.c:41:9:41:45 | *call to any_random_function | NonConstantFormat.c:41:9:41:45 | *call to any_random_function | The format string argument to $@ has a source which cannot be verified to originate from a string literal. | NonConstantFormat.c:41:2:41:7 | call to printf | printf | From 67aa342fe5482a2480abbb96720ee8adc56ffabe Mon Sep 17 00:00:00 2001 From: Michael Nebel Date: Tue, 28 Apr 2026 12:46:41 +0200 Subject: [PATCH 094/260] C#: Update test expected output for integration tests. --- .../CompilationInfo.expected | 1 + .../CompilationInfo.expected | 1 + 2 files changed, 2 insertions(+) diff --git a/csharp/ql/integration-tests/posix/standalone_dependencies_nuget_config_error/CompilationInfo.expected b/csharp/ql/integration-tests/posix/standalone_dependencies_nuget_config_error/CompilationInfo.expected index 20fd0cdfba89..4acd4f54e8a6 100644 --- a/csharp/ql/integration-tests/posix/standalone_dependencies_nuget_config_error/CompilationInfo.expected +++ b/csharp/ql/integration-tests/posix/standalone_dependencies_nuget_config_error/CompilationInfo.expected @@ -4,6 +4,7 @@ | Failed solution restore with missing package error | 0.0 | | Failed solution restore with package source error | 0.0 | | Fallback nuget restore | 1.0 | +| Inherited NuGet feed count | 1.0 | | NuGet feed responsiveness checked | 1.0 | | Project files on filesystem | 1.0 | | Reachable fallback NuGet feed count | 1.0 | diff --git a/csharp/ql/integration-tests/posix/standalone_dependencies_nuget_config_fallback/CompilationInfo.expected b/csharp/ql/integration-tests/posix/standalone_dependencies_nuget_config_fallback/CompilationInfo.expected index c53a17f0300d..9cc03f2f5372 100644 --- a/csharp/ql/integration-tests/posix/standalone_dependencies_nuget_config_fallback/CompilationInfo.expected +++ b/csharp/ql/integration-tests/posix/standalone_dependencies_nuget_config_fallback/CompilationInfo.expected @@ -1,5 +1,6 @@ | All NuGet feeds reachable | 0.0 | | Fallback nuget restore | 1.0 | +| Inherited NuGet feed count | 1.0 | | NuGet feed responsiveness checked | 1.0 | | Project files on filesystem | 1.0 | | Reachable fallback NuGet feed count | 2.0 | From fa8c1d62264fc11c6f63c88a10150b629e8c5bd4 Mon Sep 17 00:00:00 2001 From: Jeroen Ketema Date: Tue, 28 Apr 2026 15:44:12 +0200 Subject: [PATCH 095/260] C++: Add a `getSwitchCase` predicate to `SwitchStmt` --- .../change-notes/2026-03-28-switch-stmt.md | 4 ++++ cpp/ql/lib/semmle/code/cpp/stmts/Stmt.qll | 20 +++++++++++++++++++ 2 files changed, 24 insertions(+) create mode 100644 cpp/ql/lib/change-notes/2026-03-28-switch-stmt.md diff --git a/cpp/ql/lib/change-notes/2026-03-28-switch-stmt.md b/cpp/ql/lib/change-notes/2026-03-28-switch-stmt.md new file mode 100644 index 000000000000..4b0d7528d479 --- /dev/null +++ b/cpp/ql/lib/change-notes/2026-03-28-switch-stmt.md @@ -0,0 +1,4 @@ +--- +category: feature +--- +* A new predicate `getSwitchCase` was added to the `SwitchStmt` class, which yields the `n`th `case` statement from a `switch` statement. diff --git a/cpp/ql/lib/semmle/code/cpp/stmts/Stmt.qll b/cpp/ql/lib/semmle/code/cpp/stmts/Stmt.qll index cd7504612444..c974353bc7a1 100644 --- a/cpp/ql/lib/semmle/code/cpp/stmts/Stmt.qll +++ b/cpp/ql/lib/semmle/code/cpp/stmts/Stmt.qll @@ -1827,6 +1827,26 @@ class SwitchStmt extends ConditionalStmt, @stmt_switch { */ SwitchCase getASwitchCase() { switch_case(underlyingElement(this), _, unresolveElement(result)) } + /** + * Gets the `n`th 'switch case' statement of this 'switch' statement, where + * `n` is 0-based. + * + * For example, for + * ``` + * switch(i) { + * case 1: + * case 2: + * break; + * default: + * break; + * } + * ``` + * 0 yields `case 5:`, 1 yields `case 6:`, and 2 yields `default:`. + */ + SwitchCase getSwitchCase(int n) { + switch_case(underlyingElement(this), n, unresolveElement(result)) + } + /** * Gets the 'default case' statement of this 'switch' statement, * if any. From f634b328eeba3ea359dc52b1d570f458182fc875 Mon Sep 17 00:00:00 2001 From: Jeroen Ketema Date: Tue, 28 Apr 2026 15:44:53 +0200 Subject: [PATCH 096/260] C++: Fix join-order problem in `getNextSwitchCase` Before on `neovim`: ``` [2026-04-28 14:54:20] Evaluated non-recursive predicate Stmt::SwitchCase.getNextSwitchCase/0#dispred#2d3cb6d3@ac8178o2 in 68ms (size: 20848). Evaluated relational algebra for predicate Stmt::SwitchCase.getNextSwitchCase/0#dispred#2d3cb6d3@ac8178o2 with tuple counts: 21888 ~0% {2} r1 = SCAN switch_case OUTPUT In.2, In.0 21888 ~0% {4} | JOIN WITH #switch_caseMerge_21#join_rhs ON FIRST 1 OUTPUT Lhs.1, Lhs.0, _, Rhs.1 21888 ~4% {3} | REWRITE WITH Tmp.2 := 1, Out.2 := (In.3 - Tmp.2) KEEPING 3 24091916 ~0% {3} | JOIN WITH switch_case ON FIRST 1 OUTPUT Lhs.2, Rhs.2, Lhs.1 20848 ~2% {2} | JOIN WITH #switch_caseMerge_12#join_rhs ON FIRST 2 OUTPUT Lhs.1, Lhs.2 return r1 ``` After: ``` [2026-04-28 15:30:53] Evaluated non-recursive predicate Stmt::SwitchCase.getNextSwitchCase/0#dispred#2d3cb6d3@bf9801oj in 0ms (size: 20848). Evaluated relational algebra for predicate Stmt::SwitchCase.getNextSwitchCase/0#dispred#2d3cb6d3@bf9801oj with tuple counts: 21888 ~0% {4} r1 = SCAN switch_case OUTPUT In.0, _, In.2, In.1 21888 ~1% {3} | REWRITE WITH Tmp.1 := 1, Out.1 := (In.3 + Tmp.1) KEEPING 3 20848 ~2% {2} | JOIN WITH switch_case ON FIRST 2 OUTPUT Lhs.2, Rhs.2 return r1 ``` --- cpp/ql/lib/semmle/code/cpp/stmts/Stmt.qll | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/cpp/ql/lib/semmle/code/cpp/stmts/Stmt.qll b/cpp/ql/lib/semmle/code/cpp/stmts/Stmt.qll index c974353bc7a1..b7905a9d23fc 100644 --- a/cpp/ql/lib/semmle/code/cpp/stmts/Stmt.qll +++ b/cpp/ql/lib/semmle/code/cpp/stmts/Stmt.qll @@ -1516,8 +1516,10 @@ class SwitchCase extends Stmt, @stmt_switch_case { * which has result `default:`, which has no result. */ SwitchCase getNextSwitchCase() { - result.getSwitchStmt() = this.getSwitchStmt() and - result.getChildNum() = this.getChildNum() + 1 + exists(SwitchStmt s, int n | + this = s.getSwitchCase(n) and + result = s.getSwitchCase(n + 1) + ) } /** From 0bc23c3af1b7bb5a374e3988ae30476717607346 Mon Sep 17 00:00:00 2001 From: Jeroen Ketema Date: Tue, 28 Apr 2026 16:33:17 +0200 Subject: [PATCH 097/260] C++: Match example with text --- cpp/ql/lib/semmle/code/cpp/stmts/Stmt.qll | 11 ++++------- 1 file changed, 4 insertions(+), 7 deletions(-) diff --git a/cpp/ql/lib/semmle/code/cpp/stmts/Stmt.qll b/cpp/ql/lib/semmle/code/cpp/stmts/Stmt.qll index b7905a9d23fc..c4bd6088d26e 100644 --- a/cpp/ql/lib/semmle/code/cpp/stmts/Stmt.qll +++ b/cpp/ql/lib/semmle/code/cpp/stmts/Stmt.qll @@ -1836,13 +1836,10 @@ class SwitchStmt extends ConditionalStmt, @stmt_switch { * For example, for * ``` * switch(i) { - * case 1: - * case 2: - * break; - * default: - * break; - * } - * ``` + * case 5: + * case 6: + * default: + * } * ``` * 0 yields `case 5:`, 1 yields `case 6:`, and 2 yields `default:`. */ SwitchCase getSwitchCase(int n) { From 29dd56f83fc3ad4965a446a8e873ea583822a005 Mon Sep 17 00:00:00 2001 From: Jeroen Ketema Date: Tue, 28 Apr 2026 16:36:54 +0200 Subject: [PATCH 098/260] C++: Make formatting of `switch` statement examples more uniform --- cpp/ql/lib/semmle/code/cpp/stmts/Stmt.qll | 56 +++++++++++------------ 1 file changed, 28 insertions(+), 28 deletions(-) diff --git a/cpp/ql/lib/semmle/code/cpp/stmts/Stmt.qll b/cpp/ql/lib/semmle/code/cpp/stmts/Stmt.qll index c4bd6088d26e..ccda6c4d592d 100644 --- a/cpp/ql/lib/semmle/code/cpp/stmts/Stmt.qll +++ b/cpp/ql/lib/semmle/code/cpp/stmts/Stmt.qll @@ -1412,9 +1412,9 @@ private int indexOfSwitchCaseRank(BlockStmt b, int rnk) { * switch (i) * { * case 5: - * ... + * ... * default: - * ... + * ... * } * ``` */ @@ -1709,9 +1709,9 @@ class SwitchCase extends Stmt, @stmt_switch_case { * switch (i) * { * case 5: - * ... + * ... * default: - * ... + * ... * } * ``` */ @@ -1733,9 +1733,9 @@ class DefaultCase extends SwitchCase { * switch (i) * { * case 5: - * ... + * ... * default: - * ... + * ... * } * ``` */ @@ -1770,10 +1770,10 @@ class SwitchStmt extends ConditionalStmt, @stmt_switch { * For example, for * ``` * switch(i) { - * case 1: - * case 2: + * case 1: + * case 2: * break; - * default: + * default: * break; * } * ``` @@ -1792,20 +1792,20 @@ class SwitchStmt extends ConditionalStmt, @stmt_switch { * For example, for * ``` * switch(i) { - * case 1: - * case 2: + * case 1: + * case 2: * break; - * default: + * default: * break; * } * ``` * the result is * ``` * { - * case 1: - * case 2: + * case 1: + * case 2: * break; - * default: + * default: * break; * } * ``` @@ -1818,10 +1818,10 @@ class SwitchStmt extends ConditionalStmt, @stmt_switch { * For example, for * ``` * switch(i) { - * case 1: - * case 2: + * case 1: + * case 2: * break; - * default: + * default: * break; * } * ``` @@ -1853,18 +1853,18 @@ class SwitchStmt extends ConditionalStmt, @stmt_switch { * For example, for * ``` * switch(i) { - * case 1: - * case 2: + * case 1: + * case 2: * break; - * default: + * default: * break; * } * ``` * the result is `default:`, but there is no result for * ``` * switch(i) { - * case 1: - * case 2: + * case 1: + * case 2: * break; * } * ``` @@ -1877,18 +1877,18 @@ class SwitchStmt extends ConditionalStmt, @stmt_switch { * For example, this holds for * ``` * switch(i) { - * case 1: - * case 2: + * case 1: + * case 2: * break; - * default: + * default: * break; * } * ``` * but not for * ``` * switch(i) { - * case 1: - * case 2: + * case 1: + * case 2: * break; * } * ``` From 1b87140ce7def7442f46cd11ee5fc09483aba5d3 Mon Sep 17 00:00:00 2001 From: murderteeth <89237203+murderteeth@users.noreply.github.com> Date: Tue, 28 Apr 2026 15:57:06 +0000 Subject: [PATCH 099/260] Regenerate DatabaseAccesses.expected for new vercel.ts fixture The CWE-089/untyped/vercel.ts fixture added in this PR introduces a conn.query(...) call that DatabaseAccesses.ql reports, so its .expected baseline needs the corresponding entry. Output produced by `codeql test accept`. Co-Authored-By: Claude Opus 4.7 (1M context) --- .../Security/CWE-089/untyped/DatabaseAccesses.expected | 1 + 1 file changed, 1 insertion(+) diff --git a/javascript/ql/test/query-tests/Security/CWE-089/untyped/DatabaseAccesses.expected b/javascript/ql/test/query-tests/Security/CWE-089/untyped/DatabaseAccesses.expected index 52ce3076ba70..4a4fe13b3231 100644 --- a/javascript/ql/test/query-tests/Security/CWE-089/untyped/DatabaseAccesses.expected +++ b/javascript/ql/test/query-tests/Security/CWE-089/untyped/DatabaseAccesses.expected @@ -93,3 +93,4 @@ | tst3.js:16:3:18:4 | pool.qu ... ts\\n }) | | tst4.js:8:3:8:67 | db.get( ... + '"') | | tst.js:10:3:10:65 | db.get( ... + '"') | +| vercel.ts:7:3:9:4 | conn.qu ... );\\n }) | From 18b06f1cf465962d70915378e36188747c5f748c Mon Sep 17 00:00:00 2001 From: murderteeth <89237203+murderteeth@users.noreply.github.com> Date: Tue, 28 Apr 2026 16:14:53 +0000 Subject: [PATCH 100/260] Model res.json and res.jsonp as Vercel response sinks Vercel API handlers more often return JSON than HTML, so res.send is not the only response body sink that matters. Mirror Express's ResponseJsonCall by also matching res.json(...) and res.jsonp(...) on the response (direct and chained), and exercise the new behavior in the library-test fixture. Co-Authored-By: Claude Opus 4.7 (1M context) --- .../javascript/frameworks/VercelNode.qll | 6 ++-- .../frameworks/vercel/src/vercel.ts | 5 +++ .../frameworks/vercel/tests.expected | 34 +++++++++++-------- 3 files changed, 27 insertions(+), 18 deletions(-) diff --git a/javascript/ql/lib/semmle/javascript/frameworks/VercelNode.qll b/javascript/ql/lib/semmle/javascript/frameworks/VercelNode.qll index ae206c9f9151..9dcb25cf5db6 100644 --- a/javascript/ql/lib/semmle/javascript/frameworks/VercelNode.qll +++ b/javascript/ql/lib/semmle/javascript/frameworks/VercelNode.qll @@ -141,8 +141,8 @@ module VercelNode { } /** - * An argument to `res.send(...)` on a Vercel response, including chained - * calls such as `res.status(200).send(...)`. + * An argument to `res.send(...)`, `res.json(...)`, or `res.jsonp(...)` on a + * Vercel response, including chained calls such as `res.status(200).json(...)`. */ private class ResponseSendArgument extends Http::ResponseSendArgument { RouteHandler rh; @@ -150,7 +150,7 @@ module VercelNode { ResponseSendArgument() { exists(Http::Servers::ResponseSource src | (src instanceof ResponseSource or src instanceof ChainedResponseSource) and - this = src.ref().getAMethodCall("send").getArgument(0) and + this = src.ref().getAMethodCall(["send", "json", "jsonp"]).getArgument(0) and rh = src.getRouteHandler() ) } diff --git a/javascript/ql/test/library-tests/frameworks/vercel/src/vercel.ts b/javascript/ql/test/library-tests/frameworks/vercel/src/vercel.ts index 0dae664e2c44..23956251ef45 100644 --- a/javascript/ql/test/library-tests/frameworks/vercel/src/vercel.ts +++ b/javascript/ql/test/library-tests/frameworks/vercel/src/vercel.ts @@ -22,6 +22,11 @@ export default function handler(req: VercelRequest, res: VercelResponse) { res.send(q); res.status(200).send(b); + // JSON response (direct and chained) + res.json(c); + res.status(200).json(u); + res.jsonp(host); + // Redirect res.redirect(req.query.url as string); } diff --git a/javascript/ql/test/library-tests/frameworks/vercel/tests.expected b/javascript/ql/test/library-tests/frameworks/vercel/tests.expected index a2929999f235..92d309cc02fe 100644 --- a/javascript/ql/test/library-tests/frameworks/vercel/tests.expected +++ b/javascript/ql/test/library-tests/frameworks/vercel/tests.expected @@ -1,27 +1,31 @@ test_RouteHandler | src/now.ts:5:16:7:1 | functio ... ame);\\n} | -| src/vercel.ts:9:16:27:1 | functio ... ing);\\n} | +| src/vercel.ts:9:16:32:1 | functio ... ing);\\n} | test_RequestSource | src/now.ts:5:33:5:35 | req | src/now.ts:5:16:7:1 | functio ... ame);\\n} | -| src/vercel.ts:9:33:9:35 | req | src/vercel.ts:9:16:27:1 | functio ... ing);\\n} | +| src/vercel.ts:9:33:9:35 | req | src/vercel.ts:9:16:32:1 | functio ... ing);\\n} | test_ResponseSource | src/now.ts:5:50:5:52 | res | src/now.ts:5:16:7:1 | functio ... ame);\\n} | -| src/vercel.ts:9:53:9:55 | res | src/vercel.ts:9:16:27:1 | functio ... ing);\\n} | -| src/vercel.ts:23:3:23:17 | res.status(200) | src/vercel.ts:9:16:27:1 | functio ... ing);\\n} | +| src/vercel.ts:9:53:9:55 | res | src/vercel.ts:9:16:32:1 | functio ... ing);\\n} | +| src/vercel.ts:23:3:23:17 | res.status(200) | src/vercel.ts:9:16:32:1 | functio ... ing);\\n} | +| src/vercel.ts:27:3:27:17 | res.status(200) | src/vercel.ts:9:16:32:1 | functio ... ing);\\n} | test_HeaderDefinition -| src/vercel.ts:19:3:19:44 | res.set ... /html") | content-type | src/vercel.ts:9:16:27:1 | functio ... ing);\\n} | +| src/vercel.ts:19:3:19:44 | res.set ... /html") | content-type | src/vercel.ts:9:16:32:1 | functio ... ing);\\n} | test_RedirectInvocation -| src/vercel.ts:26:3:26:39 | res.red ... string) | src/vercel.ts:26:16:26:38 | req.que ... string | src/vercel.ts:9:16:27:1 | functio ... ing);\\n} | +| src/vercel.ts:31:3:31:39 | res.red ... string) | src/vercel.ts:31:16:31:38 | req.que ... string | src/vercel.ts:9:16:32:1 | functio ... ing);\\n} | test_RequestInputAccess | src/now.ts:6:12:6:20 | req.query | parameter | src/now.ts:5:16:7:1 | functio ... ame);\\n} | -| src/vercel.ts:11:13:11:21 | req.query | parameter | src/vercel.ts:9:16:27:1 | functio ... ing);\\n} | -| src/vercel.ts:12:13:12:20 | req.body | body | src/vercel.ts:9:16:27:1 | functio ... ing);\\n} | -| src/vercel.ts:13:13:13:23 | req.cookies | cookie | src/vercel.ts:9:16:27:1 | functio ... ing);\\n} | -| src/vercel.ts:14:13:14:19 | req.url | url | src/vercel.ts:9:16:27:1 | functio ... ing);\\n} | -| src/vercel.ts:15:16:15:31 | req.headers.host | header | src/vercel.ts:9:16:27:1 | functio ... ing);\\n} | -| src/vercel.ts:16:15:16:33 | req.headers.referer | header | src/vercel.ts:9:16:27:1 | functio ... ing);\\n} | -| src/vercel.ts:26:16:26:24 | req.query | parameter | src/vercel.ts:9:16:27:1 | functio ... ing);\\n} | +| src/vercel.ts:11:13:11:21 | req.query | parameter | src/vercel.ts:9:16:32:1 | functio ... ing);\\n} | +| src/vercel.ts:12:13:12:20 | req.body | body | src/vercel.ts:9:16:32:1 | functio ... ing);\\n} | +| src/vercel.ts:13:13:13:23 | req.cookies | cookie | src/vercel.ts:9:16:32:1 | functio ... ing);\\n} | +| src/vercel.ts:14:13:14:19 | req.url | url | src/vercel.ts:9:16:32:1 | functio ... ing);\\n} | +| src/vercel.ts:15:16:15:31 | req.headers.host | header | src/vercel.ts:9:16:32:1 | functio ... ing);\\n} | +| src/vercel.ts:16:15:16:33 | req.headers.referer | header | src/vercel.ts:9:16:32:1 | functio ... ing);\\n} | +| src/vercel.ts:31:16:31:24 | req.query | parameter | src/vercel.ts:9:16:32:1 | functio ... ing);\\n} | test_ResponseSendArgument | src/now.ts:6:12:6:25 | req.query.name | src/now.ts:5:16:7:1 | functio ... ame);\\n} | -| src/vercel.ts:22:12:22:12 | q | src/vercel.ts:9:16:27:1 | functio ... ing);\\n} | -| src/vercel.ts:23:24:23:24 | b | src/vercel.ts:9:16:27:1 | functio ... ing);\\n} | +| src/vercel.ts:22:12:22:12 | q | src/vercel.ts:9:16:32:1 | functio ... ing);\\n} | +| src/vercel.ts:23:24:23:24 | b | src/vercel.ts:9:16:32:1 | functio ... ing);\\n} | +| src/vercel.ts:26:12:26:12 | c | src/vercel.ts:9:16:32:1 | functio ... ing);\\n} | +| src/vercel.ts:27:24:27:24 | u | src/vercel.ts:9:16:32:1 | functio ... ing);\\n} | +| src/vercel.ts:28:13:28:16 | host | src/vercel.ts:9:16:32:1 | functio ... ing);\\n} | From bb18bb084c063287d27f90a4855dabb1fdb68e63 Mon Sep 17 00:00:00 2001 From: Josef Svenningsson Date: Thu, 2 Apr 2026 17:42:37 +0100 Subject: [PATCH 101/260] Improve prompt inject for Python --- .../python/frameworks/anthropic.model.yml | 17 +++++++++++ .../semmle/python/frameworks/openai.model.yml | 3 ++ .../semmle/python/frameworks/OpenAI.qll | 30 +++++++++++++++++++ .../PromptInjectionCustomizations.qll | 3 ++ 4 files changed, 53 insertions(+) create mode 100644 python/ql/lib/semmle/python/frameworks/anthropic.model.yml diff --git a/python/ql/lib/semmle/python/frameworks/anthropic.model.yml b/python/ql/lib/semmle/python/frameworks/anthropic.model.yml new file mode 100644 index 000000000000..b7ef32218ad7 --- /dev/null +++ b/python/ql/lib/semmle/python/frameworks/anthropic.model.yml @@ -0,0 +1,17 @@ +extensions: + - addsTo: + pack: codeql/python-all + extensible: sinkModel + data: + - ['Anthropic', 'Member[messages].Member[create].Argument[system:]', 'prompt-injection'] + - ['Anthropic', 'Member[messages].Member[stream].Argument[system:]', 'prompt-injection'] + - ['Anthropic', 'Member[beta].Member[messages].Member[create].Argument[system:]', 'prompt-injection'] + - ['Anthropic', 'Member[messages].Member[create].Argument[messages:].ListElement.DictionaryElement[content]', 'prompt-injection'] + - ['Anthropic', 'Member[messages].Member[stream].Argument[messages:].ListElement.DictionaryElement[content]', 'prompt-injection'] + - ['Anthropic', 'Member[beta].Member[messages].Member[create].Argument[messages:].ListElement.DictionaryElement[content]', 'prompt-injection'] + + - addsTo: + pack: codeql/python-all + extensible: typeModel + data: + - ['Anthropic', 'anthropic', 'Member[Anthropic,AsyncAnthropic].ReturnValue'] diff --git a/python/ql/lib/semmle/python/frameworks/openai.model.yml b/python/ql/lib/semmle/python/frameworks/openai.model.yml index 245d390ab8eb..358039595e9d 100644 --- a/python/ql/lib/semmle/python/frameworks/openai.model.yml +++ b/python/ql/lib/semmle/python/frameworks/openai.model.yml @@ -4,6 +4,9 @@ extensions: extensible: sinkModel data: - ['OpenAI', 'Member[beta].Member[assistants].Member[create].Argument[instructions:]', 'prompt-injection'] + - ['OpenAI', 'Member[chat].Member[completions].Member[create].Argument[messages:].ListElement.DictionaryElement[content]', 'prompt-injection'] + - ['OpenAI', 'Member[responses].Member[create].Argument[instructions:]', 'prompt-injection'] + - ['OpenAI', 'Member[responses].Member[create].Argument[input:]', 'prompt-injection'] - addsTo: pack: codeql/python-all diff --git a/python/ql/src/experimental/semmle/python/frameworks/OpenAI.qll b/python/ql/src/experimental/semmle/python/frameworks/OpenAI.qll index 74614a739aa4..e5649716c8af 100644 --- a/python/ql/src/experimental/semmle/python/frameworks/OpenAI.qll +++ b/python/ql/src/experimental/semmle/python/frameworks/OpenAI.qll @@ -7,6 +7,7 @@ private import python private import semmle.python.ApiGraphs +private import semmle.python.dataflow.new.DataFlow /** * Provides models for agents SDK (instances of the `agents.Runner` class etc). @@ -86,3 +87,32 @@ module OpenAI { ) } } + +/** + * Provides attribute-name-based sink detection for `chat.completions.create` calls. + * This does not rely on API graph type resolution and thus works even when + * the receiver cannot be traced back to a known constructor (e.g. due to `or` expressions). + */ +module ChatCompletionsCreate { + /** + * Gets a `DataFlow::Node` that is the `content` value inside a message dict + * passed to a `*.chat.completions.create(messages=[{..., "content": }])` call, + * matched purely by attribute names in the call chain. + */ + DataFlow::Node getAMessageContentSink() { + exists( + DataFlow::MethodCallNode createCall, DataFlow::AttrRead completionsAttr, + DataFlow::AttrRead chatAttr + | + // Match *.chat.completions.create(...) + createCall.getMethodName() = "create" and + completionsAttr = createCall.getObject().getALocalSource() and + completionsAttr.getAttributeName() = "completions" and + chatAttr = completionsAttr.getObject().getALocalSource() and + chatAttr.getAttributeName() = "chat" + | + // The messages keyword argument value (the list itself, or individual dict content values) + result = createCall.getArgByName("messages") + ) + } +} diff --git a/python/ql/src/experimental/semmle/python/security/dataflow/PromptInjectionCustomizations.qll b/python/ql/src/experimental/semmle/python/security/dataflow/PromptInjectionCustomizations.qll index 181be6393956..fd2cfe4478fa 100644 --- a/python/ql/src/experimental/semmle/python/security/dataflow/PromptInjectionCustomizations.qll +++ b/python/ql/src/experimental/semmle/python/security/dataflow/PromptInjectionCustomizations.qll @@ -8,6 +8,7 @@ import python private import semmle.python.dataflow.new.DataFlow private import semmle.python.Concepts private import experimental.semmle.python.Concepts +private import semmle.python.Frameworks private import semmle.python.dataflow.new.RemoteFlowSources private import semmle.python.dataflow.new.BarrierGuards private import semmle.python.frameworks.data.ModelsAsData @@ -55,6 +56,8 @@ module PromptInjection { this = OpenAI::getContentNode().asSink() or this = AgentSDK::getContentNode().asSink() + or + this = ChatCompletionsCreate::getAMessageContentSink() } } From e069c9c2eec3555dd908ffe55de4e7f9bc872ad4 Mon Sep 17 00:00:00 2001 From: Josef Svenningsson Date: Thu, 2 Apr 2026 19:17:48 +0100 Subject: [PATCH 102/260] Fix tests --- .../PromptInjection.expected | 50 ++++++++++++++----- .../CWE-1427-PromptInjection/openai_test.py | 6 +-- 2 files changed, 41 insertions(+), 15 deletions(-) diff --git a/python/ql/test/experimental/query-tests/Security/CWE-1427-PromptInjection/PromptInjection.expected b/python/ql/test/experimental/query-tests/Security/CWE-1427-PromptInjection/PromptInjection.expected index 1a899e7c82fe..b65cc3ceb0d5 100644 --- a/python/ql/test/experimental/query-tests/Security/CWE-1427-PromptInjection/PromptInjection.expected +++ b/python/ql/test/experimental/query-tests/Security/CWE-1427-PromptInjection/PromptInjection.expected @@ -5,14 +5,17 @@ | openai_test.py:17:22:17:46 | ControlFlowNode for BinaryExpr | openai_test.py:2:26:2:32 | ControlFlowNode for ImportMember | openai_test.py:17:22:17:46 | ControlFlowNode for BinaryExpr | This prompt construction depends on a $@. | openai_test.py:2:26:2:32 | ControlFlowNode for ImportMember | user-provided value | | openai_test.py:18:15:18:19 | ControlFlowNode for query | openai_test.py:2:26:2:32 | ControlFlowNode for ImportMember | openai_test.py:18:15:18:19 | ControlFlowNode for query | This prompt construction depends on a $@. | openai_test.py:2:26:2:32 | ControlFlowNode for ImportMember | user-provided value | | openai_test.py:22:22:22:46 | ControlFlowNode for BinaryExpr | openai_test.py:2:26:2:32 | ControlFlowNode for ImportMember | openai_test.py:22:22:22:46 | ControlFlowNode for BinaryExpr | This prompt construction depends on a $@. | openai_test.py:2:26:2:32 | ControlFlowNode for ImportMember | user-provided value | +| openai_test.py:23:15:37:9 | ControlFlowNode for List | openai_test.py:2:26:2:32 | ControlFlowNode for ImportMember | openai_test.py:23:15:37:9 | ControlFlowNode for List | This prompt construction depends on a $@. | openai_test.py:2:26:2:32 | ControlFlowNode for ImportMember | user-provided value | | openai_test.py:26:28:26:51 | ControlFlowNode for BinaryExpr | openai_test.py:2:26:2:32 | ControlFlowNode for ImportMember | openai_test.py:26:28:26:51 | ControlFlowNode for BinaryExpr | This prompt construction depends on a $@. | openai_test.py:2:26:2:32 | ControlFlowNode for ImportMember | user-provided value | | openai_test.py:33:33:33:37 | ControlFlowNode for query | openai_test.py:2:26:2:32 | ControlFlowNode for ImportMember | openai_test.py:33:33:33:37 | ControlFlowNode for query | This prompt construction depends on a $@. | openai_test.py:2:26:2:32 | ControlFlowNode for ImportMember | user-provided value | | openai_test.py:41:22:41:46 | ControlFlowNode for BinaryExpr | openai_test.py:2:26:2:32 | ControlFlowNode for ImportMember | openai_test.py:41:22:41:46 | ControlFlowNode for BinaryExpr | This prompt construction depends on a $@. | openai_test.py:2:26:2:32 | ControlFlowNode for ImportMember | user-provided value | | openai_test.py:42:15:42:19 | ControlFlowNode for query | openai_test.py:2:26:2:32 | ControlFlowNode for ImportMember | openai_test.py:42:15:42:19 | ControlFlowNode for query | This prompt construction depends on a $@. | openai_test.py:2:26:2:32 | ControlFlowNode for ImportMember | user-provided value | | openai_test.py:53:33:53:37 | ControlFlowNode for query | openai_test.py:2:26:2:32 | ControlFlowNode for ImportMember | openai_test.py:53:33:53:37 | ControlFlowNode for query | This prompt construction depends on a $@. | openai_test.py:2:26:2:32 | ControlFlowNode for ImportMember | user-provided value | +| openai_test.py:60:18:73:9 | ControlFlowNode for List | openai_test.py:2:26:2:32 | ControlFlowNode for ImportMember | openai_test.py:60:18:73:9 | ControlFlowNode for List | This prompt construction depends on a $@. | openai_test.py:2:26:2:32 | ControlFlowNode for ImportMember | user-provided value | | openai_test.py:63:28:63:51 | ControlFlowNode for BinaryExpr | openai_test.py:2:26:2:32 | ControlFlowNode for ImportMember | openai_test.py:63:28:63:51 | ControlFlowNode for BinaryExpr | This prompt construction depends on a $@. | openai_test.py:2:26:2:32 | ControlFlowNode for ImportMember | user-provided value | | openai_test.py:67:28:67:32 | ControlFlowNode for query | openai_test.py:2:26:2:32 | ControlFlowNode for ImportMember | openai_test.py:67:28:67:32 | ControlFlowNode for query | This prompt construction depends on a $@. | openai_test.py:2:26:2:32 | ControlFlowNode for ImportMember | user-provided value | | openai_test.py:71:28:71:32 | ControlFlowNode for query | openai_test.py:2:26:2:32 | ControlFlowNode for ImportMember | openai_test.py:71:28:71:32 | ControlFlowNode for query | This prompt construction depends on a $@. | openai_test.py:2:26:2:32 | ControlFlowNode for ImportMember | user-provided value | +| openai_test.py:77:18:86:9 | ControlFlowNode for List | openai_test.py:2:26:2:32 | ControlFlowNode for ImportMember | openai_test.py:77:18:86:9 | ControlFlowNode for List | This prompt construction depends on a $@. | openai_test.py:2:26:2:32 | ControlFlowNode for ImportMember | user-provided value | | openai_test.py:80:28:80:51 | ControlFlowNode for BinaryExpr | openai_test.py:2:26:2:32 | ControlFlowNode for ImportMember | openai_test.py:80:28:80:51 | ControlFlowNode for BinaryExpr | This prompt construction depends on a $@. | openai_test.py:2:26:2:32 | ControlFlowNode for ImportMember | user-provided value | | openai_test.py:84:28:84:32 | ControlFlowNode for query | openai_test.py:2:26:2:32 | ControlFlowNode for ImportMember | openai_test.py:84:28:84:32 | ControlFlowNode for query | This prompt construction depends on a $@. | openai_test.py:2:26:2:32 | ControlFlowNode for ImportMember | user-provided value | | openai_test.py:92:22:92:46 | ControlFlowNode for BinaryExpr | openai_test.py:2:26:2:32 | ControlFlowNode for ImportMember | openai_test.py:92:22:92:46 | ControlFlowNode for BinaryExpr | This prompt construction depends on a $@. | openai_test.py:2:26:2:32 | ControlFlowNode for ImportMember | user-provided value | @@ -20,7 +23,7 @@ edges | agent_instructions.py:2:26:2:32 | ControlFlowNode for ImportMember | agent_instructions.py:2:26:2:32 | ControlFlowNode for request | provenance | | | agent_instructions.py:2:26:2:32 | ControlFlowNode for request | agent_instructions.py:7:13:7:19 | ControlFlowNode for request | provenance | | | agent_instructions.py:2:26:2:32 | ControlFlowNode for request | agent_instructions.py:17:13:17:19 | ControlFlowNode for request | provenance | | -| agent_instructions.py:7:5:7:9 | ControlFlowNode for input | agent_instructions.py:9:50:9:89 | ControlFlowNode for BinaryExpr | provenance | Sink:MaD:2 | +| agent_instructions.py:7:5:7:9 | ControlFlowNode for input | agent_instructions.py:9:50:9:89 | ControlFlowNode for BinaryExpr | provenance | Sink:MaD:5 | | agent_instructions.py:7:13:7:19 | ControlFlowNode for request | agent_instructions.py:7:13:7:24 | ControlFlowNode for Attribute | provenance | AdditionalTaintStep | | agent_instructions.py:7:13:7:24 | ControlFlowNode for Attribute | agent_instructions.py:7:13:7:37 | ControlFlowNode for Attribute() | provenance | dict.get | | agent_instructions.py:7:13:7:37 | ControlFlowNode for Attribute() | agent_instructions.py:7:5:7:9 | ControlFlowNode for input | provenance | | @@ -32,30 +35,46 @@ edges | openai_test.py:2:26:2:32 | ControlFlowNode for ImportMember | openai_test.py:2:26:2:32 | ControlFlowNode for request | provenance | | | openai_test.py:2:26:2:32 | ControlFlowNode for request | openai_test.py:12:15:12:21 | ControlFlowNode for request | provenance | | | openai_test.py:2:26:2:32 | ControlFlowNode for request | openai_test.py:13:13:13:19 | ControlFlowNode for request | provenance | | -| openai_test.py:12:5:12:11 | ControlFlowNode for persona | openai_test.py:17:22:17:46 | ControlFlowNode for BinaryExpr | provenance | | -| openai_test.py:12:5:12:11 | ControlFlowNode for persona | openai_test.py:22:22:22:46 | ControlFlowNode for BinaryExpr | provenance | | +| openai_test.py:2:26:2:32 | ControlFlowNode for request | openai_test.py:14:12:14:18 | ControlFlowNode for request | provenance | | +| openai_test.py:12:5:12:11 | ControlFlowNode for persona | openai_test.py:17:22:17:46 | ControlFlowNode for BinaryExpr | provenance | Sink:MaD:4 | +| openai_test.py:12:5:12:11 | ControlFlowNode for persona | openai_test.py:22:22:22:46 | ControlFlowNode for BinaryExpr | provenance | Sink:MaD:4 | +| openai_test.py:12:5:12:11 | ControlFlowNode for persona | openai_test.py:23:15:37:9 | ControlFlowNode for List | provenance | Sink:MaD:3 | | openai_test.py:12:5:12:11 | ControlFlowNode for persona | openai_test.py:26:28:26:51 | ControlFlowNode for BinaryExpr | provenance | | -| openai_test.py:12:5:12:11 | ControlFlowNode for persona | openai_test.py:41:22:41:46 | ControlFlowNode for BinaryExpr | provenance | | -| openai_test.py:12:5:12:11 | ControlFlowNode for persona | openai_test.py:63:28:63:51 | ControlFlowNode for BinaryExpr | provenance | | -| openai_test.py:12:5:12:11 | ControlFlowNode for persona | openai_test.py:80:28:80:51 | ControlFlowNode for BinaryExpr | provenance | | +| openai_test.py:12:5:12:11 | ControlFlowNode for persona | openai_test.py:41:22:41:46 | ControlFlowNode for BinaryExpr | provenance | Sink:MaD:4 | +| openai_test.py:12:5:12:11 | ControlFlowNode for persona | openai_test.py:60:18:73:9 | ControlFlowNode for List | provenance | | +| openai_test.py:12:5:12:11 | ControlFlowNode for persona | openai_test.py:63:28:63:51 | ControlFlowNode for BinaryExpr | provenance | Sink:MaD:2 | +| openai_test.py:12:5:12:11 | ControlFlowNode for persona | openai_test.py:77:18:86:9 | ControlFlowNode for List | provenance | | +| openai_test.py:12:5:12:11 | ControlFlowNode for persona | openai_test.py:80:28:80:51 | ControlFlowNode for BinaryExpr | provenance | Sink:MaD:2 | | openai_test.py:12:5:12:11 | ControlFlowNode for persona | openai_test.py:92:22:92:46 | ControlFlowNode for BinaryExpr | provenance | Sink:MaD:1 | | openai_test.py:12:15:12:21 | ControlFlowNode for request | openai_test.py:12:15:12:26 | ControlFlowNode for Attribute | provenance | AdditionalTaintStep | | openai_test.py:12:15:12:21 | ControlFlowNode for request | openai_test.py:13:13:13:24 | ControlFlowNode for Attribute | provenance | AdditionalTaintStep | +| openai_test.py:12:15:12:21 | ControlFlowNode for request | openai_test.py:14:12:14:23 | ControlFlowNode for Attribute | provenance | AdditionalTaintStep | | openai_test.py:12:15:12:26 | ControlFlowNode for Attribute | openai_test.py:12:15:12:41 | ControlFlowNode for Attribute() | provenance | dict.get | | openai_test.py:12:15:12:41 | ControlFlowNode for Attribute() | openai_test.py:12:5:12:11 | ControlFlowNode for persona | provenance | | -| openai_test.py:13:5:13:9 | ControlFlowNode for query | openai_test.py:18:15:18:19 | ControlFlowNode for query | provenance | | +| openai_test.py:13:5:13:9 | ControlFlowNode for query | openai_test.py:18:15:18:19 | ControlFlowNode for query | provenance | Sink:MaD:3 | +| openai_test.py:13:5:13:9 | ControlFlowNode for query | openai_test.py:23:15:37:9 | ControlFlowNode for List | provenance | Sink:MaD:3 | | openai_test.py:13:5:13:9 | ControlFlowNode for query | openai_test.py:33:33:33:37 | ControlFlowNode for query | provenance | | -| openai_test.py:13:5:13:9 | ControlFlowNode for query | openai_test.py:42:15:42:19 | ControlFlowNode for query | provenance | | +| openai_test.py:13:5:13:9 | ControlFlowNode for query | openai_test.py:42:15:42:19 | ControlFlowNode for query | provenance | Sink:MaD:3 | | openai_test.py:13:5:13:9 | ControlFlowNode for query | openai_test.py:53:33:53:37 | ControlFlowNode for query | provenance | | -| openai_test.py:13:5:13:9 | ControlFlowNode for query | openai_test.py:67:28:67:32 | ControlFlowNode for query | provenance | | -| openai_test.py:13:5:13:9 | ControlFlowNode for query | openai_test.py:71:28:71:32 | ControlFlowNode for query | provenance | | -| openai_test.py:13:5:13:9 | ControlFlowNode for query | openai_test.py:84:28:84:32 | ControlFlowNode for query | provenance | | +| openai_test.py:13:5:13:9 | ControlFlowNode for query | openai_test.py:60:18:73:9 | ControlFlowNode for List | provenance | | +| openai_test.py:13:5:13:9 | ControlFlowNode for query | openai_test.py:67:28:67:32 | ControlFlowNode for query | provenance | Sink:MaD:2 | +| openai_test.py:13:5:13:9 | ControlFlowNode for query | openai_test.py:71:28:71:32 | ControlFlowNode for query | provenance | Sink:MaD:2 | +| openai_test.py:13:5:13:9 | ControlFlowNode for query | openai_test.py:77:18:86:9 | ControlFlowNode for List | provenance | | +| openai_test.py:13:5:13:9 | ControlFlowNode for query | openai_test.py:84:28:84:32 | ControlFlowNode for query | provenance | Sink:MaD:2 | | openai_test.py:13:13:13:19 | ControlFlowNode for request | openai_test.py:13:13:13:24 | ControlFlowNode for Attribute | provenance | AdditionalTaintStep | +| openai_test.py:13:13:13:19 | ControlFlowNode for request | openai_test.py:14:12:14:23 | ControlFlowNode for Attribute | provenance | AdditionalTaintStep | | openai_test.py:13:13:13:24 | ControlFlowNode for Attribute | openai_test.py:13:13:13:37 | ControlFlowNode for Attribute() | provenance | dict.get | | openai_test.py:13:13:13:37 | ControlFlowNode for Attribute() | openai_test.py:13:5:13:9 | ControlFlowNode for query | provenance | | +| openai_test.py:14:5:14:8 | ControlFlowNode for role | openai_test.py:60:18:73:9 | ControlFlowNode for List | provenance | | +| openai_test.py:14:12:14:18 | ControlFlowNode for request | openai_test.py:14:12:14:23 | ControlFlowNode for Attribute | provenance | AdditionalTaintStep | +| openai_test.py:14:12:14:23 | ControlFlowNode for Attribute | openai_test.py:14:12:14:35 | ControlFlowNode for Attribute() | provenance | dict.get | +| openai_test.py:14:12:14:35 | ControlFlowNode for Attribute() | openai_test.py:14:5:14:8 | ControlFlowNode for role | provenance | | models | 1 | Sink: OpenAI; Member[beta].Member[assistants].Member[create].Argument[instructions:]; prompt-injection | -| 2 | Sink: agents; Member[Agent].Argument[instructions:]; prompt-injection | +| 2 | Sink: OpenAI; Member[chat].Member[completions].Member[create].Argument[messages:].ListElement.DictionaryElement[content]; prompt-injection | +| 3 | Sink: OpenAI; Member[responses].Member[create].Argument[input:]; prompt-injection | +| 4 | Sink: OpenAI; Member[responses].Member[create].Argument[instructions:]; prompt-injection | +| 5 | Sink: agents; Member[Agent].Argument[instructions:]; prompt-injection | nodes | agent_instructions.py:2:26:2:32 | ControlFlowNode for ImportMember | semmle.label | ControlFlowNode for ImportMember | | agent_instructions.py:2:26:2:32 | ControlFlowNode for request | semmle.label | ControlFlowNode for request | @@ -80,17 +99,24 @@ nodes | openai_test.py:13:13:13:19 | ControlFlowNode for request | semmle.label | ControlFlowNode for request | | openai_test.py:13:13:13:24 | ControlFlowNode for Attribute | semmle.label | ControlFlowNode for Attribute | | openai_test.py:13:13:13:37 | ControlFlowNode for Attribute() | semmle.label | ControlFlowNode for Attribute() | +| openai_test.py:14:5:14:8 | ControlFlowNode for role | semmle.label | ControlFlowNode for role | +| openai_test.py:14:12:14:18 | ControlFlowNode for request | semmle.label | ControlFlowNode for request | +| openai_test.py:14:12:14:23 | ControlFlowNode for Attribute | semmle.label | ControlFlowNode for Attribute | +| openai_test.py:14:12:14:35 | ControlFlowNode for Attribute() | semmle.label | ControlFlowNode for Attribute() | | openai_test.py:17:22:17:46 | ControlFlowNode for BinaryExpr | semmle.label | ControlFlowNode for BinaryExpr | | openai_test.py:18:15:18:19 | ControlFlowNode for query | semmle.label | ControlFlowNode for query | | openai_test.py:22:22:22:46 | ControlFlowNode for BinaryExpr | semmle.label | ControlFlowNode for BinaryExpr | +| openai_test.py:23:15:37:9 | ControlFlowNode for List | semmle.label | ControlFlowNode for List | | openai_test.py:26:28:26:51 | ControlFlowNode for BinaryExpr | semmle.label | ControlFlowNode for BinaryExpr | | openai_test.py:33:33:33:37 | ControlFlowNode for query | semmle.label | ControlFlowNode for query | | openai_test.py:41:22:41:46 | ControlFlowNode for BinaryExpr | semmle.label | ControlFlowNode for BinaryExpr | | openai_test.py:42:15:42:19 | ControlFlowNode for query | semmle.label | ControlFlowNode for query | | openai_test.py:53:33:53:37 | ControlFlowNode for query | semmle.label | ControlFlowNode for query | +| openai_test.py:60:18:73:9 | ControlFlowNode for List | semmle.label | ControlFlowNode for List | | openai_test.py:63:28:63:51 | ControlFlowNode for BinaryExpr | semmle.label | ControlFlowNode for BinaryExpr | | openai_test.py:67:28:67:32 | ControlFlowNode for query | semmle.label | ControlFlowNode for query | | openai_test.py:71:28:71:32 | ControlFlowNode for query | semmle.label | ControlFlowNode for query | +| openai_test.py:77:18:86:9 | ControlFlowNode for List | semmle.label | ControlFlowNode for List | | openai_test.py:80:28:80:51 | ControlFlowNode for BinaryExpr | semmle.label | ControlFlowNode for BinaryExpr | | openai_test.py:84:28:84:32 | ControlFlowNode for query | semmle.label | ControlFlowNode for query | | openai_test.py:92:22:92:46 | ControlFlowNode for BinaryExpr | semmle.label | ControlFlowNode for BinaryExpr | diff --git a/python/ql/test/experimental/query-tests/Security/CWE-1427-PromptInjection/openai_test.py b/python/ql/test/experimental/query-tests/Security/CWE-1427-PromptInjection/openai_test.py index 2b25609670c5..f074b203a135 100644 --- a/python/ql/test/experimental/query-tests/Security/CWE-1427-PromptInjection/openai_test.py +++ b/python/ql/test/experimental/query-tests/Security/CWE-1427-PromptInjection/openai_test.py @@ -20,7 +20,7 @@ async def get_input_openai(): response2 = client.responses.create( instructions="Talks like a " + persona, # $ Alert[py/prompt-injection] - input=[ + input=[ # $ Alert[py/prompt-injection] { "role": "developer", "content": "Talk like a " + persona # $ Alert[py/prompt-injection] @@ -57,7 +57,7 @@ async def get_input_openai(): ) completion1 = client.chat.completions.create( - messages=[ + messages=[ # $ Alert[py/prompt-injection] { "role": "developer", "content": "Talk like a " + persona # $ Alert[py/prompt-injection] @@ -74,7 +74,7 @@ async def get_input_openai(): ) completion2 = azure_client.chat.completions.create( - messages=[ + messages=[ # $ Alert[py/prompt-injection] { "role": "developer", "content": "Talk like a " + persona # $ Alert[py/prompt-injection] From a05e19151811efa40ba60605bc8744c08a8e002f Mon Sep 17 00:00:00 2001 From: Josef Svenningsson Date: Tue, 28 Apr 2026 15:51:45 +0100 Subject: [PATCH 103/260] Add tests for anthropic prompt injection models --- .../anthropic_test.py | 63 +++++++++++++++++++ 1 file changed, 63 insertions(+) create mode 100644 python/ql/test/experimental/query-tests/Security/CWE-1427-PromptInjection/anthropic_test.py diff --git a/python/ql/test/experimental/query-tests/Security/CWE-1427-PromptInjection/anthropic_test.py b/python/ql/test/experimental/query-tests/Security/CWE-1427-PromptInjection/anthropic_test.py new file mode 100644 index 000000000000..f9e37e31b3c5 --- /dev/null +++ b/python/ql/test/experimental/query-tests/Security/CWE-1427-PromptInjection/anthropic_test.py @@ -0,0 +1,63 @@ +from anthropic import Anthropic, AsyncAnthropic +from flask import Flask, request # $ Source + +app = Flask(__name__) +client = Anthropic() +async_client = AsyncAnthropic() + + +@app.route("/anthropic") +async def get_input_anthropic(): + persona = request.args.get("persona") + query = request.args.get("query") + + response1 = client.messages.create( + model="claude-sonnet-4-20250514", + max_tokens=256, + system="Talk like " + persona, # $ Alert[py/prompt-injection] + messages=[ + { + "role": "user", + "content": query, # $ Alert[py/prompt-injection] + } + ], + ) + + response2 = client.messages.stream( + model="claude-sonnet-4-20250514", + max_tokens=256, + system="Talk like " + persona, # $ Alert[py/prompt-injection] + messages=[ + { + "role": "user", + "content": query, # $ Alert[py/prompt-injection] + } + ], + ) + + response3 = await async_client.messages.create( + model="claude-sonnet-4-20250514", + max_tokens=256, + system="Talk like " + persona, # $ Alert[py/prompt-injection] + messages=[ + { + "role": "user", + "content": query, # $ Alert[py/prompt-injection] + } + ], + ) + + response4 = client.beta.messages.create( + model="claude-sonnet-4-20250514", + max_tokens=256, + system="Talk like " + persona, # $ Alert[py/prompt-injection] + messages=[ + { + "role": "user", + "content": query, # $ Alert[py/prompt-injection] + } + ], + betas=["prompt-caching-2024-07-31"], + ) + + print(response1, response2, response3, response4) \ No newline at end of file From 691aeb08150ff3a83e5642762581e069fb258993 Mon Sep 17 00:00:00 2001 From: Josef Svenningsson Date: Tue, 28 Apr 2026 18:13:45 +0100 Subject: [PATCH 104/260] Remove the chat completion create logic. --- .../semmle/python/frameworks/OpenAI.qll | 30 ------------------- .../PromptInjectionCustomizations.qll | 3 -- 2 files changed, 33 deletions(-) diff --git a/python/ql/src/experimental/semmle/python/frameworks/OpenAI.qll b/python/ql/src/experimental/semmle/python/frameworks/OpenAI.qll index e5649716c8af..74614a739aa4 100644 --- a/python/ql/src/experimental/semmle/python/frameworks/OpenAI.qll +++ b/python/ql/src/experimental/semmle/python/frameworks/OpenAI.qll @@ -7,7 +7,6 @@ private import python private import semmle.python.ApiGraphs -private import semmle.python.dataflow.new.DataFlow /** * Provides models for agents SDK (instances of the `agents.Runner` class etc). @@ -87,32 +86,3 @@ module OpenAI { ) } } - -/** - * Provides attribute-name-based sink detection for `chat.completions.create` calls. - * This does not rely on API graph type resolution and thus works even when - * the receiver cannot be traced back to a known constructor (e.g. due to `or` expressions). - */ -module ChatCompletionsCreate { - /** - * Gets a `DataFlow::Node` that is the `content` value inside a message dict - * passed to a `*.chat.completions.create(messages=[{..., "content": }])` call, - * matched purely by attribute names in the call chain. - */ - DataFlow::Node getAMessageContentSink() { - exists( - DataFlow::MethodCallNode createCall, DataFlow::AttrRead completionsAttr, - DataFlow::AttrRead chatAttr - | - // Match *.chat.completions.create(...) - createCall.getMethodName() = "create" and - completionsAttr = createCall.getObject().getALocalSource() and - completionsAttr.getAttributeName() = "completions" and - chatAttr = completionsAttr.getObject().getALocalSource() and - chatAttr.getAttributeName() = "chat" - | - // The messages keyword argument value (the list itself, or individual dict content values) - result = createCall.getArgByName("messages") - ) - } -} diff --git a/python/ql/src/experimental/semmle/python/security/dataflow/PromptInjectionCustomizations.qll b/python/ql/src/experimental/semmle/python/security/dataflow/PromptInjectionCustomizations.qll index fd2cfe4478fa..181be6393956 100644 --- a/python/ql/src/experimental/semmle/python/security/dataflow/PromptInjectionCustomizations.qll +++ b/python/ql/src/experimental/semmle/python/security/dataflow/PromptInjectionCustomizations.qll @@ -8,7 +8,6 @@ import python private import semmle.python.dataflow.new.DataFlow private import semmle.python.Concepts private import experimental.semmle.python.Concepts -private import semmle.python.Frameworks private import semmle.python.dataflow.new.RemoteFlowSources private import semmle.python.dataflow.new.BarrierGuards private import semmle.python.frameworks.data.ModelsAsData @@ -56,8 +55,6 @@ module PromptInjection { this = OpenAI::getContentNode().asSink() or this = AgentSDK::getContentNode().asSink() - or - this = ChatCompletionsCreate::getAMessageContentSink() } } From 25a8aa97b24865d768768d3c2d3c72f4d668aaaa Mon Sep 17 00:00:00 2001 From: Josef Svenningsson Date: Tue, 28 Apr 2026 18:23:42 +0100 Subject: [PATCH 105/260] Fix openai prompt injection tests --- .../PromptInjection.expected | 107 +++++++++++------- .../CWE-1427-PromptInjection/openai_test.py | 8 +- 2 files changed, 73 insertions(+), 42 deletions(-) diff --git a/python/ql/test/experimental/query-tests/Security/CWE-1427-PromptInjection/PromptInjection.expected b/python/ql/test/experimental/query-tests/Security/CWE-1427-PromptInjection/PromptInjection.expected index b65cc3ceb0d5..6acb03ce7f51 100644 --- a/python/ql/test/experimental/query-tests/Security/CWE-1427-PromptInjection/PromptInjection.expected +++ b/python/ql/test/experimental/query-tests/Security/CWE-1427-PromptInjection/PromptInjection.expected @@ -2,6 +2,14 @@ | agent_instructions.py:9:50:9:89 | ControlFlowNode for BinaryExpr | agent_instructions.py:2:26:2:32 | ControlFlowNode for ImportMember | agent_instructions.py:9:50:9:89 | ControlFlowNode for BinaryExpr | This prompt construction depends on a $@. | agent_instructions.py:2:26:2:32 | ControlFlowNode for ImportMember | user-provided value | | agent_instructions.py:25:28:25:32 | ControlFlowNode for input | agent_instructions.py:2:26:2:32 | ControlFlowNode for ImportMember | agent_instructions.py:25:28:25:32 | ControlFlowNode for input | This prompt construction depends on a $@. | agent_instructions.py:2:26:2:32 | ControlFlowNode for ImportMember | user-provided value | | agent_instructions.py:35:28:35:32 | ControlFlowNode for input | agent_instructions.py:2:26:2:32 | ControlFlowNode for ImportMember | agent_instructions.py:35:28:35:32 | ControlFlowNode for input | This prompt construction depends on a $@. | agent_instructions.py:2:26:2:32 | ControlFlowNode for ImportMember | user-provided value | +| anthropic_test.py:17:16:17:37 | ControlFlowNode for BinaryExpr | anthropic_test.py:2:26:2:32 | ControlFlowNode for ImportMember | anthropic_test.py:17:16:17:37 | ControlFlowNode for BinaryExpr | This prompt construction depends on a $@. | anthropic_test.py:2:26:2:32 | ControlFlowNode for ImportMember | user-provided value | +| anthropic_test.py:21:28:21:32 | ControlFlowNode for query | anthropic_test.py:2:26:2:32 | ControlFlowNode for ImportMember | anthropic_test.py:21:28:21:32 | ControlFlowNode for query | This prompt construction depends on a $@. | anthropic_test.py:2:26:2:32 | ControlFlowNode for ImportMember | user-provided value | +| anthropic_test.py:29:16:29:37 | ControlFlowNode for BinaryExpr | anthropic_test.py:2:26:2:32 | ControlFlowNode for ImportMember | anthropic_test.py:29:16:29:37 | ControlFlowNode for BinaryExpr | This prompt construction depends on a $@. | anthropic_test.py:2:26:2:32 | ControlFlowNode for ImportMember | user-provided value | +| anthropic_test.py:33:28:33:32 | ControlFlowNode for query | anthropic_test.py:2:26:2:32 | ControlFlowNode for ImportMember | anthropic_test.py:33:28:33:32 | ControlFlowNode for query | This prompt construction depends on a $@. | anthropic_test.py:2:26:2:32 | ControlFlowNode for ImportMember | user-provided value | +| anthropic_test.py:41:16:41:37 | ControlFlowNode for BinaryExpr | anthropic_test.py:2:26:2:32 | ControlFlowNode for ImportMember | anthropic_test.py:41:16:41:37 | ControlFlowNode for BinaryExpr | This prompt construction depends on a $@. | anthropic_test.py:2:26:2:32 | ControlFlowNode for ImportMember | user-provided value | +| anthropic_test.py:45:28:45:32 | ControlFlowNode for query | anthropic_test.py:2:26:2:32 | ControlFlowNode for ImportMember | anthropic_test.py:45:28:45:32 | ControlFlowNode for query | This prompt construction depends on a $@. | anthropic_test.py:2:26:2:32 | ControlFlowNode for ImportMember | user-provided value | +| anthropic_test.py:53:16:53:37 | ControlFlowNode for BinaryExpr | anthropic_test.py:2:26:2:32 | ControlFlowNode for ImportMember | anthropic_test.py:53:16:53:37 | ControlFlowNode for BinaryExpr | This prompt construction depends on a $@. | anthropic_test.py:2:26:2:32 | ControlFlowNode for ImportMember | user-provided value | +| anthropic_test.py:57:28:57:32 | ControlFlowNode for query | anthropic_test.py:2:26:2:32 | ControlFlowNode for ImportMember | anthropic_test.py:57:28:57:32 | ControlFlowNode for query | This prompt construction depends on a $@. | anthropic_test.py:2:26:2:32 | ControlFlowNode for ImportMember | user-provided value | | openai_test.py:17:22:17:46 | ControlFlowNode for BinaryExpr | openai_test.py:2:26:2:32 | ControlFlowNode for ImportMember | openai_test.py:17:22:17:46 | ControlFlowNode for BinaryExpr | This prompt construction depends on a $@. | openai_test.py:2:26:2:32 | ControlFlowNode for ImportMember | user-provided value | | openai_test.py:18:15:18:19 | ControlFlowNode for query | openai_test.py:2:26:2:32 | ControlFlowNode for ImportMember | openai_test.py:18:15:18:19 | ControlFlowNode for query | This prompt construction depends on a $@. | openai_test.py:2:26:2:32 | ControlFlowNode for ImportMember | user-provided value | | openai_test.py:22:22:22:46 | ControlFlowNode for BinaryExpr | openai_test.py:2:26:2:32 | ControlFlowNode for ImportMember | openai_test.py:22:22:22:46 | ControlFlowNode for BinaryExpr | This prompt construction depends on a $@. | openai_test.py:2:26:2:32 | ControlFlowNode for ImportMember | user-provided value | @@ -11,11 +19,9 @@ | openai_test.py:41:22:41:46 | ControlFlowNode for BinaryExpr | openai_test.py:2:26:2:32 | ControlFlowNode for ImportMember | openai_test.py:41:22:41:46 | ControlFlowNode for BinaryExpr | This prompt construction depends on a $@. | openai_test.py:2:26:2:32 | ControlFlowNode for ImportMember | user-provided value | | openai_test.py:42:15:42:19 | ControlFlowNode for query | openai_test.py:2:26:2:32 | ControlFlowNode for ImportMember | openai_test.py:42:15:42:19 | ControlFlowNode for query | This prompt construction depends on a $@. | openai_test.py:2:26:2:32 | ControlFlowNode for ImportMember | user-provided value | | openai_test.py:53:33:53:37 | ControlFlowNode for query | openai_test.py:2:26:2:32 | ControlFlowNode for ImportMember | openai_test.py:53:33:53:37 | ControlFlowNode for query | This prompt construction depends on a $@. | openai_test.py:2:26:2:32 | ControlFlowNode for ImportMember | user-provided value | -| openai_test.py:60:18:73:9 | ControlFlowNode for List | openai_test.py:2:26:2:32 | ControlFlowNode for ImportMember | openai_test.py:60:18:73:9 | ControlFlowNode for List | This prompt construction depends on a $@. | openai_test.py:2:26:2:32 | ControlFlowNode for ImportMember | user-provided value | | openai_test.py:63:28:63:51 | ControlFlowNode for BinaryExpr | openai_test.py:2:26:2:32 | ControlFlowNode for ImportMember | openai_test.py:63:28:63:51 | ControlFlowNode for BinaryExpr | This prompt construction depends on a $@. | openai_test.py:2:26:2:32 | ControlFlowNode for ImportMember | user-provided value | | openai_test.py:67:28:67:32 | ControlFlowNode for query | openai_test.py:2:26:2:32 | ControlFlowNode for ImportMember | openai_test.py:67:28:67:32 | ControlFlowNode for query | This prompt construction depends on a $@. | openai_test.py:2:26:2:32 | ControlFlowNode for ImportMember | user-provided value | | openai_test.py:71:28:71:32 | ControlFlowNode for query | openai_test.py:2:26:2:32 | ControlFlowNode for ImportMember | openai_test.py:71:28:71:32 | ControlFlowNode for query | This prompt construction depends on a $@. | openai_test.py:2:26:2:32 | ControlFlowNode for ImportMember | user-provided value | -| openai_test.py:77:18:86:9 | ControlFlowNode for List | openai_test.py:2:26:2:32 | ControlFlowNode for ImportMember | openai_test.py:77:18:86:9 | ControlFlowNode for List | This prompt construction depends on a $@. | openai_test.py:2:26:2:32 | ControlFlowNode for ImportMember | user-provided value | | openai_test.py:80:28:80:51 | ControlFlowNode for BinaryExpr | openai_test.py:2:26:2:32 | ControlFlowNode for ImportMember | openai_test.py:80:28:80:51 | ControlFlowNode for BinaryExpr | This prompt construction depends on a $@. | openai_test.py:2:26:2:32 | ControlFlowNode for ImportMember | user-provided value | | openai_test.py:84:28:84:32 | ControlFlowNode for query | openai_test.py:2:26:2:32 | ControlFlowNode for ImportMember | openai_test.py:84:28:84:32 | ControlFlowNode for query | This prompt construction depends on a $@. | openai_test.py:2:26:2:32 | ControlFlowNode for ImportMember | user-provided value | | openai_test.py:92:22:92:46 | ControlFlowNode for BinaryExpr | openai_test.py:2:26:2:32 | ControlFlowNode for ImportMember | openai_test.py:92:22:92:46 | ControlFlowNode for BinaryExpr | This prompt construction depends on a $@. | openai_test.py:2:26:2:32 | ControlFlowNode for ImportMember | user-provided value | @@ -23,7 +29,7 @@ edges | agent_instructions.py:2:26:2:32 | ControlFlowNode for ImportMember | agent_instructions.py:2:26:2:32 | ControlFlowNode for request | provenance | | | agent_instructions.py:2:26:2:32 | ControlFlowNode for request | agent_instructions.py:7:13:7:19 | ControlFlowNode for request | provenance | | | agent_instructions.py:2:26:2:32 | ControlFlowNode for request | agent_instructions.py:17:13:17:19 | ControlFlowNode for request | provenance | | -| agent_instructions.py:7:5:7:9 | ControlFlowNode for input | agent_instructions.py:9:50:9:89 | ControlFlowNode for BinaryExpr | provenance | Sink:MaD:5 | +| agent_instructions.py:7:5:7:9 | ControlFlowNode for input | agent_instructions.py:9:50:9:89 | ControlFlowNode for BinaryExpr | provenance | Sink:MaD:11 | | agent_instructions.py:7:13:7:19 | ControlFlowNode for request | agent_instructions.py:7:13:7:24 | ControlFlowNode for Attribute | provenance | AdditionalTaintStep | | agent_instructions.py:7:13:7:24 | ControlFlowNode for Attribute | agent_instructions.py:7:13:7:37 | ControlFlowNode for Attribute() | provenance | dict.get | | agent_instructions.py:7:13:7:37 | ControlFlowNode for Attribute() | agent_instructions.py:7:5:7:9 | ControlFlowNode for input | provenance | | @@ -32,49 +38,62 @@ edges | agent_instructions.py:17:13:17:19 | ControlFlowNode for request | agent_instructions.py:17:13:17:24 | ControlFlowNode for Attribute | provenance | AdditionalTaintStep | | agent_instructions.py:17:13:17:24 | ControlFlowNode for Attribute | agent_instructions.py:17:13:17:37 | ControlFlowNode for Attribute() | provenance | dict.get | | agent_instructions.py:17:13:17:37 | ControlFlowNode for Attribute() | agent_instructions.py:17:5:17:9 | ControlFlowNode for input | provenance | | +| anthropic_test.py:2:26:2:32 | ControlFlowNode for ImportMember | anthropic_test.py:2:26:2:32 | ControlFlowNode for request | provenance | | +| anthropic_test.py:2:26:2:32 | ControlFlowNode for request | anthropic_test.py:11:15:11:21 | ControlFlowNode for request | provenance | | +| anthropic_test.py:2:26:2:32 | ControlFlowNode for request | anthropic_test.py:12:13:12:19 | ControlFlowNode for request | provenance | | +| anthropic_test.py:11:5:11:11 | ControlFlowNode for persona | anthropic_test.py:17:16:17:37 | ControlFlowNode for BinaryExpr | provenance | Sink:MaD:4 | +| anthropic_test.py:11:5:11:11 | ControlFlowNode for persona | anthropic_test.py:29:16:29:37 | ControlFlowNode for BinaryExpr | provenance | Sink:MaD:6 | +| anthropic_test.py:11:5:11:11 | ControlFlowNode for persona | anthropic_test.py:41:16:41:37 | ControlFlowNode for BinaryExpr | provenance | Sink:MaD:4 | +| anthropic_test.py:11:5:11:11 | ControlFlowNode for persona | anthropic_test.py:53:16:53:37 | ControlFlowNode for BinaryExpr | provenance | Sink:MaD:2 | +| anthropic_test.py:11:15:11:21 | ControlFlowNode for request | anthropic_test.py:11:15:11:26 | ControlFlowNode for Attribute | provenance | AdditionalTaintStep | +| anthropic_test.py:11:15:11:21 | ControlFlowNode for request | anthropic_test.py:12:13:12:24 | ControlFlowNode for Attribute | provenance | AdditionalTaintStep | +| anthropic_test.py:11:15:11:26 | ControlFlowNode for Attribute | anthropic_test.py:11:15:11:41 | ControlFlowNode for Attribute() | provenance | dict.get | +| anthropic_test.py:11:15:11:41 | ControlFlowNode for Attribute() | anthropic_test.py:11:5:11:11 | ControlFlowNode for persona | provenance | | +| anthropic_test.py:12:5:12:9 | ControlFlowNode for query | anthropic_test.py:21:28:21:32 | ControlFlowNode for query | provenance | Sink:MaD:3 | +| anthropic_test.py:12:5:12:9 | ControlFlowNode for query | anthropic_test.py:33:28:33:32 | ControlFlowNode for query | provenance | Sink:MaD:5 | +| anthropic_test.py:12:5:12:9 | ControlFlowNode for query | anthropic_test.py:45:28:45:32 | ControlFlowNode for query | provenance | Sink:MaD:3 | +| anthropic_test.py:12:5:12:9 | ControlFlowNode for query | anthropic_test.py:57:28:57:32 | ControlFlowNode for query | provenance | Sink:MaD:1 | +| anthropic_test.py:12:13:12:19 | ControlFlowNode for request | anthropic_test.py:12:13:12:24 | ControlFlowNode for Attribute | provenance | AdditionalTaintStep | +| anthropic_test.py:12:13:12:24 | ControlFlowNode for Attribute | anthropic_test.py:12:13:12:37 | ControlFlowNode for Attribute() | provenance | dict.get | +| anthropic_test.py:12:13:12:37 | ControlFlowNode for Attribute() | anthropic_test.py:12:5:12:9 | ControlFlowNode for query | provenance | | | openai_test.py:2:26:2:32 | ControlFlowNode for ImportMember | openai_test.py:2:26:2:32 | ControlFlowNode for request | provenance | | | openai_test.py:2:26:2:32 | ControlFlowNode for request | openai_test.py:12:15:12:21 | ControlFlowNode for request | provenance | | | openai_test.py:2:26:2:32 | ControlFlowNode for request | openai_test.py:13:13:13:19 | ControlFlowNode for request | provenance | | -| openai_test.py:2:26:2:32 | ControlFlowNode for request | openai_test.py:14:12:14:18 | ControlFlowNode for request | provenance | | -| openai_test.py:12:5:12:11 | ControlFlowNode for persona | openai_test.py:17:22:17:46 | ControlFlowNode for BinaryExpr | provenance | Sink:MaD:4 | -| openai_test.py:12:5:12:11 | ControlFlowNode for persona | openai_test.py:22:22:22:46 | ControlFlowNode for BinaryExpr | provenance | Sink:MaD:4 | -| openai_test.py:12:5:12:11 | ControlFlowNode for persona | openai_test.py:23:15:37:9 | ControlFlowNode for List | provenance | Sink:MaD:3 | +| openai_test.py:12:5:12:11 | ControlFlowNode for persona | openai_test.py:17:22:17:46 | ControlFlowNode for BinaryExpr | provenance | Sink:MaD:10 | +| openai_test.py:12:5:12:11 | ControlFlowNode for persona | openai_test.py:22:22:22:46 | ControlFlowNode for BinaryExpr | provenance | Sink:MaD:10 | +| openai_test.py:12:5:12:11 | ControlFlowNode for persona | openai_test.py:23:15:37:9 | ControlFlowNode for List | provenance | Sink:MaD:9 | | openai_test.py:12:5:12:11 | ControlFlowNode for persona | openai_test.py:26:28:26:51 | ControlFlowNode for BinaryExpr | provenance | | -| openai_test.py:12:5:12:11 | ControlFlowNode for persona | openai_test.py:41:22:41:46 | ControlFlowNode for BinaryExpr | provenance | Sink:MaD:4 | -| openai_test.py:12:5:12:11 | ControlFlowNode for persona | openai_test.py:60:18:73:9 | ControlFlowNode for List | provenance | | -| openai_test.py:12:5:12:11 | ControlFlowNode for persona | openai_test.py:63:28:63:51 | ControlFlowNode for BinaryExpr | provenance | Sink:MaD:2 | -| openai_test.py:12:5:12:11 | ControlFlowNode for persona | openai_test.py:77:18:86:9 | ControlFlowNode for List | provenance | | -| openai_test.py:12:5:12:11 | ControlFlowNode for persona | openai_test.py:80:28:80:51 | ControlFlowNode for BinaryExpr | provenance | Sink:MaD:2 | -| openai_test.py:12:5:12:11 | ControlFlowNode for persona | openai_test.py:92:22:92:46 | ControlFlowNode for BinaryExpr | provenance | Sink:MaD:1 | +| openai_test.py:12:5:12:11 | ControlFlowNode for persona | openai_test.py:41:22:41:46 | ControlFlowNode for BinaryExpr | provenance | Sink:MaD:10 | +| openai_test.py:12:5:12:11 | ControlFlowNode for persona | openai_test.py:63:28:63:51 | ControlFlowNode for BinaryExpr | provenance | Sink:MaD:8 | +| openai_test.py:12:5:12:11 | ControlFlowNode for persona | openai_test.py:80:28:80:51 | ControlFlowNode for BinaryExpr | provenance | Sink:MaD:8 | +| openai_test.py:12:5:12:11 | ControlFlowNode for persona | openai_test.py:92:22:92:46 | ControlFlowNode for BinaryExpr | provenance | Sink:MaD:7 | | openai_test.py:12:15:12:21 | ControlFlowNode for request | openai_test.py:12:15:12:26 | ControlFlowNode for Attribute | provenance | AdditionalTaintStep | | openai_test.py:12:15:12:21 | ControlFlowNode for request | openai_test.py:13:13:13:24 | ControlFlowNode for Attribute | provenance | AdditionalTaintStep | -| openai_test.py:12:15:12:21 | ControlFlowNode for request | openai_test.py:14:12:14:23 | ControlFlowNode for Attribute | provenance | AdditionalTaintStep | | openai_test.py:12:15:12:26 | ControlFlowNode for Attribute | openai_test.py:12:15:12:41 | ControlFlowNode for Attribute() | provenance | dict.get | | openai_test.py:12:15:12:41 | ControlFlowNode for Attribute() | openai_test.py:12:5:12:11 | ControlFlowNode for persona | provenance | | -| openai_test.py:13:5:13:9 | ControlFlowNode for query | openai_test.py:18:15:18:19 | ControlFlowNode for query | provenance | Sink:MaD:3 | -| openai_test.py:13:5:13:9 | ControlFlowNode for query | openai_test.py:23:15:37:9 | ControlFlowNode for List | provenance | Sink:MaD:3 | +| openai_test.py:13:5:13:9 | ControlFlowNode for query | openai_test.py:18:15:18:19 | ControlFlowNode for query | provenance | Sink:MaD:9 | +| openai_test.py:13:5:13:9 | ControlFlowNode for query | openai_test.py:23:15:37:9 | ControlFlowNode for List | provenance | Sink:MaD:9 | | openai_test.py:13:5:13:9 | ControlFlowNode for query | openai_test.py:33:33:33:37 | ControlFlowNode for query | provenance | | -| openai_test.py:13:5:13:9 | ControlFlowNode for query | openai_test.py:42:15:42:19 | ControlFlowNode for query | provenance | Sink:MaD:3 | +| openai_test.py:13:5:13:9 | ControlFlowNode for query | openai_test.py:42:15:42:19 | ControlFlowNode for query | provenance | Sink:MaD:9 | | openai_test.py:13:5:13:9 | ControlFlowNode for query | openai_test.py:53:33:53:37 | ControlFlowNode for query | provenance | | -| openai_test.py:13:5:13:9 | ControlFlowNode for query | openai_test.py:60:18:73:9 | ControlFlowNode for List | provenance | | -| openai_test.py:13:5:13:9 | ControlFlowNode for query | openai_test.py:67:28:67:32 | ControlFlowNode for query | provenance | Sink:MaD:2 | -| openai_test.py:13:5:13:9 | ControlFlowNode for query | openai_test.py:71:28:71:32 | ControlFlowNode for query | provenance | Sink:MaD:2 | -| openai_test.py:13:5:13:9 | ControlFlowNode for query | openai_test.py:77:18:86:9 | ControlFlowNode for List | provenance | | -| openai_test.py:13:5:13:9 | ControlFlowNode for query | openai_test.py:84:28:84:32 | ControlFlowNode for query | provenance | Sink:MaD:2 | +| openai_test.py:13:5:13:9 | ControlFlowNode for query | openai_test.py:67:28:67:32 | ControlFlowNode for query | provenance | Sink:MaD:8 | +| openai_test.py:13:5:13:9 | ControlFlowNode for query | openai_test.py:71:28:71:32 | ControlFlowNode for query | provenance | Sink:MaD:8 | +| openai_test.py:13:5:13:9 | ControlFlowNode for query | openai_test.py:84:28:84:32 | ControlFlowNode for query | provenance | Sink:MaD:8 | | openai_test.py:13:13:13:19 | ControlFlowNode for request | openai_test.py:13:13:13:24 | ControlFlowNode for Attribute | provenance | AdditionalTaintStep | -| openai_test.py:13:13:13:19 | ControlFlowNode for request | openai_test.py:14:12:14:23 | ControlFlowNode for Attribute | provenance | AdditionalTaintStep | | openai_test.py:13:13:13:24 | ControlFlowNode for Attribute | openai_test.py:13:13:13:37 | ControlFlowNode for Attribute() | provenance | dict.get | | openai_test.py:13:13:13:37 | ControlFlowNode for Attribute() | openai_test.py:13:5:13:9 | ControlFlowNode for query | provenance | | -| openai_test.py:14:5:14:8 | ControlFlowNode for role | openai_test.py:60:18:73:9 | ControlFlowNode for List | provenance | | -| openai_test.py:14:12:14:18 | ControlFlowNode for request | openai_test.py:14:12:14:23 | ControlFlowNode for Attribute | provenance | AdditionalTaintStep | -| openai_test.py:14:12:14:23 | ControlFlowNode for Attribute | openai_test.py:14:12:14:35 | ControlFlowNode for Attribute() | provenance | dict.get | -| openai_test.py:14:12:14:35 | ControlFlowNode for Attribute() | openai_test.py:14:5:14:8 | ControlFlowNode for role | provenance | | models -| 1 | Sink: OpenAI; Member[beta].Member[assistants].Member[create].Argument[instructions:]; prompt-injection | -| 2 | Sink: OpenAI; Member[chat].Member[completions].Member[create].Argument[messages:].ListElement.DictionaryElement[content]; prompt-injection | -| 3 | Sink: OpenAI; Member[responses].Member[create].Argument[input:]; prompt-injection | -| 4 | Sink: OpenAI; Member[responses].Member[create].Argument[instructions:]; prompt-injection | -| 5 | Sink: agents; Member[Agent].Argument[instructions:]; prompt-injection | +| 1 | Sink: Anthropic; Member[beta].Member[messages].Member[create].Argument[messages:].ListElement.DictionaryElement[content]; prompt-injection | +| 2 | Sink: Anthropic; Member[beta].Member[messages].Member[create].Argument[system:]; prompt-injection | +| 3 | Sink: Anthropic; Member[messages].Member[create].Argument[messages:].ListElement.DictionaryElement[content]; prompt-injection | +| 4 | Sink: Anthropic; Member[messages].Member[create].Argument[system:]; prompt-injection | +| 5 | Sink: Anthropic; Member[messages].Member[stream].Argument[messages:].ListElement.DictionaryElement[content]; prompt-injection | +| 6 | Sink: Anthropic; Member[messages].Member[stream].Argument[system:]; prompt-injection | +| 7 | Sink: OpenAI; Member[beta].Member[assistants].Member[create].Argument[instructions:]; prompt-injection | +| 8 | Sink: OpenAI; Member[chat].Member[completions].Member[create].Argument[messages:].ListElement.DictionaryElement[content]; prompt-injection | +| 9 | Sink: OpenAI; Member[responses].Member[create].Argument[input:]; prompt-injection | +| 10 | Sink: OpenAI; Member[responses].Member[create].Argument[instructions:]; prompt-injection | +| 11 | Sink: agents; Member[Agent].Argument[instructions:]; prompt-injection | nodes | agent_instructions.py:2:26:2:32 | ControlFlowNode for ImportMember | semmle.label | ControlFlowNode for ImportMember | | agent_instructions.py:2:26:2:32 | ControlFlowNode for request | semmle.label | ControlFlowNode for request | @@ -89,6 +108,24 @@ nodes | agent_instructions.py:17:13:17:37 | ControlFlowNode for Attribute() | semmle.label | ControlFlowNode for Attribute() | | agent_instructions.py:25:28:25:32 | ControlFlowNode for input | semmle.label | ControlFlowNode for input | | agent_instructions.py:35:28:35:32 | ControlFlowNode for input | semmle.label | ControlFlowNode for input | +| anthropic_test.py:2:26:2:32 | ControlFlowNode for ImportMember | semmle.label | ControlFlowNode for ImportMember | +| anthropic_test.py:2:26:2:32 | ControlFlowNode for request | semmle.label | ControlFlowNode for request | +| anthropic_test.py:11:5:11:11 | ControlFlowNode for persona | semmle.label | ControlFlowNode for persona | +| anthropic_test.py:11:15:11:21 | ControlFlowNode for request | semmle.label | ControlFlowNode for request | +| anthropic_test.py:11:15:11:26 | ControlFlowNode for Attribute | semmle.label | ControlFlowNode for Attribute | +| anthropic_test.py:11:15:11:41 | ControlFlowNode for Attribute() | semmle.label | ControlFlowNode for Attribute() | +| anthropic_test.py:12:5:12:9 | ControlFlowNode for query | semmle.label | ControlFlowNode for query | +| anthropic_test.py:12:13:12:19 | ControlFlowNode for request | semmle.label | ControlFlowNode for request | +| anthropic_test.py:12:13:12:24 | ControlFlowNode for Attribute | semmle.label | ControlFlowNode for Attribute | +| anthropic_test.py:12:13:12:37 | ControlFlowNode for Attribute() | semmle.label | ControlFlowNode for Attribute() | +| anthropic_test.py:17:16:17:37 | ControlFlowNode for BinaryExpr | semmle.label | ControlFlowNode for BinaryExpr | +| anthropic_test.py:21:28:21:32 | ControlFlowNode for query | semmle.label | ControlFlowNode for query | +| anthropic_test.py:29:16:29:37 | ControlFlowNode for BinaryExpr | semmle.label | ControlFlowNode for BinaryExpr | +| anthropic_test.py:33:28:33:32 | ControlFlowNode for query | semmle.label | ControlFlowNode for query | +| anthropic_test.py:41:16:41:37 | ControlFlowNode for BinaryExpr | semmle.label | ControlFlowNode for BinaryExpr | +| anthropic_test.py:45:28:45:32 | ControlFlowNode for query | semmle.label | ControlFlowNode for query | +| anthropic_test.py:53:16:53:37 | ControlFlowNode for BinaryExpr | semmle.label | ControlFlowNode for BinaryExpr | +| anthropic_test.py:57:28:57:32 | ControlFlowNode for query | semmle.label | ControlFlowNode for query | | openai_test.py:2:26:2:32 | ControlFlowNode for ImportMember | semmle.label | ControlFlowNode for ImportMember | | openai_test.py:2:26:2:32 | ControlFlowNode for request | semmle.label | ControlFlowNode for request | | openai_test.py:12:5:12:11 | ControlFlowNode for persona | semmle.label | ControlFlowNode for persona | @@ -99,10 +136,6 @@ nodes | openai_test.py:13:13:13:19 | ControlFlowNode for request | semmle.label | ControlFlowNode for request | | openai_test.py:13:13:13:24 | ControlFlowNode for Attribute | semmle.label | ControlFlowNode for Attribute | | openai_test.py:13:13:13:37 | ControlFlowNode for Attribute() | semmle.label | ControlFlowNode for Attribute() | -| openai_test.py:14:5:14:8 | ControlFlowNode for role | semmle.label | ControlFlowNode for role | -| openai_test.py:14:12:14:18 | ControlFlowNode for request | semmle.label | ControlFlowNode for request | -| openai_test.py:14:12:14:23 | ControlFlowNode for Attribute | semmle.label | ControlFlowNode for Attribute | -| openai_test.py:14:12:14:35 | ControlFlowNode for Attribute() | semmle.label | ControlFlowNode for Attribute() | | openai_test.py:17:22:17:46 | ControlFlowNode for BinaryExpr | semmle.label | ControlFlowNode for BinaryExpr | | openai_test.py:18:15:18:19 | ControlFlowNode for query | semmle.label | ControlFlowNode for query | | openai_test.py:22:22:22:46 | ControlFlowNode for BinaryExpr | semmle.label | ControlFlowNode for BinaryExpr | @@ -112,11 +145,9 @@ nodes | openai_test.py:41:22:41:46 | ControlFlowNode for BinaryExpr | semmle.label | ControlFlowNode for BinaryExpr | | openai_test.py:42:15:42:19 | ControlFlowNode for query | semmle.label | ControlFlowNode for query | | openai_test.py:53:33:53:37 | ControlFlowNode for query | semmle.label | ControlFlowNode for query | -| openai_test.py:60:18:73:9 | ControlFlowNode for List | semmle.label | ControlFlowNode for List | | openai_test.py:63:28:63:51 | ControlFlowNode for BinaryExpr | semmle.label | ControlFlowNode for BinaryExpr | | openai_test.py:67:28:67:32 | ControlFlowNode for query | semmle.label | ControlFlowNode for query | | openai_test.py:71:28:71:32 | ControlFlowNode for query | semmle.label | ControlFlowNode for query | -| openai_test.py:77:18:86:9 | ControlFlowNode for List | semmle.label | ControlFlowNode for List | | openai_test.py:80:28:80:51 | ControlFlowNode for BinaryExpr | semmle.label | ControlFlowNode for BinaryExpr | | openai_test.py:84:28:84:32 | ControlFlowNode for query | semmle.label | ControlFlowNode for query | | openai_test.py:92:22:92:46 | ControlFlowNode for BinaryExpr | semmle.label | ControlFlowNode for BinaryExpr | diff --git a/python/ql/test/experimental/query-tests/Security/CWE-1427-PromptInjection/openai_test.py b/python/ql/test/experimental/query-tests/Security/CWE-1427-PromptInjection/openai_test.py index f074b203a135..8ea014c62b49 100644 --- a/python/ql/test/experimental/query-tests/Security/CWE-1427-PromptInjection/openai_test.py +++ b/python/ql/test/experimental/query-tests/Security/CWE-1427-PromptInjection/openai_test.py @@ -20,7 +20,7 @@ async def get_input_openai(): response2 = client.responses.create( instructions="Talks like a " + persona, # $ Alert[py/prompt-injection] - input=[ # $ Alert[py/prompt-injection] + input=[ { "role": "developer", "content": "Talk like a " + persona # $ Alert[py/prompt-injection] @@ -34,7 +34,7 @@ async def get_input_openai(): } ] } - ] + ] # $ Alert[py/prompt-injection] ) response3 = await async_client.responses.create( @@ -57,7 +57,7 @@ async def get_input_openai(): ) completion1 = client.chat.completions.create( - messages=[ # $ Alert[py/prompt-injection] + messages=[ { "role": "developer", "content": "Talk like a " + persona # $ Alert[py/prompt-injection] @@ -74,7 +74,7 @@ async def get_input_openai(): ) completion2 = azure_client.chat.completions.create( - messages=[ # $ Alert[py/prompt-injection] + messages=[ { "role": "developer", "content": "Talk like a " + persona # $ Alert[py/prompt-injection] From dfd85c321ca8c99f1986f4ab0179304a85232a12 Mon Sep 17 00:00:00 2001 From: Mathias Vorreiter Pedersen Date: Tue, 28 Apr 2026 22:02:32 +0100 Subject: [PATCH 106/260] C++: Compute 'IgnorableOperationToOperationSourceCandidateConfig' after an initial round of the query to reduce the number of sinks. --- .../UncheckedLeapYearAfterYearModification.ql | 144 +++++++++++------- 1 file changed, 87 insertions(+), 57 deletions(-) diff --git a/cpp/ql/src/Likely Bugs/Leap Year/UncheckedLeapYearAfterYearModification.ql b/cpp/ql/src/Likely Bugs/Leap Year/UncheckedLeapYearAfterYearModification.ql index 0a52a2b0ff4c..1320069bb1ca 100644 --- a/cpp/ql/src/Likely Bugs/Leap Year/UncheckedLeapYearAfterYearModification.ql +++ b/cpp/ql/src/Likely Bugs/Leap Year/UncheckedLeapYearAfterYearModification.ql @@ -227,6 +227,30 @@ class IgnorableUnaryBitwiseOperation extends IgnorableOperation instanceof Unary class IgnorableAssignmentBitwiseOperation extends IgnorableOperation instanceof AssignBitwiseOperation { } +class YearFieldAssignmentNode extends DataFlow::Node { + YearFieldAccess access; + + YearFieldAssignmentNode() { + exists(Function f | + f = this.getEnclosingCallable().getUnderlyingCallable() and not f instanceof IgnorableFunction + | + this.asDefinition().(Assignment).getLValue() = access + or + this.asDefinition().(CrementOperation).getOperand() = access + or + exists(Call c | c.getAnArgument() = access and this.asDefiningArgument() = access) + or + exists(Call c, AddressOfExpr aoe | + c.getAnArgument() = aoe and + aoe.getOperand() = access and + this.asDefiningArgument() = aoe + ) + ) + } + + YearFieldAccess getYearFieldAccess() { result = access } +} + /** * An arithmetic operation where one of the operands is a pointer or char type, ignore it */ @@ -287,24 +311,7 @@ predicate isOperationSourceCandidate(Expr e) { } /** - * A data flow that tracks an ignorable operation (such as a bitwise operation) to an operation source, so we may disqualify it. - */ -module IgnorableOperationToOperationSourceCandidateConfig implements DataFlow::ConfigSig { - predicate isSource(DataFlow::Node n) { n.asExpr() instanceof IgnorableOperation } - - predicate isSink(DataFlow::Node n) { isOperationSourceCandidate(n.asExpr()) } - - // looking for sources and sinks in the same function - DataFlow::FlowFeature getAFeature() { - result instanceof DataFlow::FeatureEqualSourceSinkCallContext - } -} - -module IgnorableOperationToOperationSourceCandidateFlow = - TaintTracking::Global; - -/** - * The set of all expressions which is a candidate expression and also does not flow from to to some ignorable expression (eg. bitwise op) + * The set of all expressions which is a candidate expression. * ``` * a = something <<< 2; * myDate.year = a + 1; // invalid @@ -314,49 +321,16 @@ module IgnorableOperationToOperationSourceCandidateFlow = * ``` */ class OperationSource extends Expr { - OperationSource() { - isOperationSourceCandidate(this) and - // If the candidate came from an ignorable operation, ignore the candidate - // NOTE: we cannot easily flow the candidate to an ignorable operation as that can - // be tricky in practice, e.g., a mod operation on a year would be part of a leap year check - // but a mod operation ending in a year is more indicative of something to ignore (a conversion) - not exists(IgnorableOperationToOperationSourceCandidateFlow::PathNode sink | - sink.getNode().asExpr() = this and - sink.isSink() - ) - } -} - -class YearFieldAssignmentNode extends DataFlow::Node { - YearFieldAccess access; - - YearFieldAssignmentNode() { - exists(Function f | - f = this.getEnclosingCallable().getUnderlyingCallable() and not f instanceof IgnorableFunction - ) and - ( - this.asDefinition().(Assignment).getLValue() = access - or - this.asDefinition().(CrementOperation).getOperand() = access - or - exists(Call c | c.getAnArgument() = access and this.asDefiningArgument() = access) - or - exists(Call c, AddressOfExpr aoe | - c.getAnArgument() = aoe and - aoe.getOperand() = access and - this.asDefiningArgument() = aoe - ) - ) - } - - YearFieldAccess getYearFieldAccess() { result = access } + OperationSource() { isOperationSourceCandidate(this) } } /** - * A DataFlow configuration for identifying flows from an identified source - * to the Year field of a date object. + * An initial DataFlow configuration for identifying flows from an identified source + * to the Year field of a date object. This is used to restrict the sinks of + * `IgnorableOperationToOperationSourceCandidateConfig` and the sinks of the + * final `OperationToYearAssignmentConfig`. */ -module OperationToYearAssignmentConfig implements DataFlow::ConfigSig { +module OperationToYearAssignmentConfig0 implements DataFlow::ConfigSig { predicate isSource(DataFlow::Node n) { n.asExpr() instanceof OperationSource } predicate isSink(DataFlow::Node n) { @@ -411,6 +385,62 @@ module OperationToYearAssignmentConfig implements DataFlow::ConfigSig { predicate isBarrierOut(DataFlow::Node n) { isSink(n) } } +module OperationToYearAssignmentFlow0 = TaintTracking::Global; + +predicate yearAssignmentFlowsFromSource(DataFlow::Node source, DataFlow::Node sink) { + OperationToYearAssignmentFlow0::flow(source, sink) +} + +/** + * A data flow that tracks an ignorable operation (such as a bitwise operation) to an operation source, so we may disqualify it. + * Sinks are restricted to operation source candidates that have a flow to a year assignment in `OperationToYearAssignmentFlow0`. + */ +module IgnorableOperationToOperationSourceCandidateConfig implements DataFlow::ConfigSig { + predicate isSource(DataFlow::Node n) { n.asExpr() instanceof IgnorableOperation } + + predicate isSink(DataFlow::Node n) { + isOperationSourceCandidate(n.asExpr()) and + yearAssignmentFlowsFromSource(n, _) + } + + // looking for sources and sinks in the same function + DataFlow::FlowFeature getAFeature() { + result instanceof DataFlow::FeatureEqualSourceSinkCallContext + } +} + +module IgnorableOperationToOperationSourceCandidateFlow = + TaintTracking::Global; + +/** + * The final DataFlow configuration that refines `OperationToYearAssignmentConfig0` by + * additionally filtering out operation sources that flow from an ignorable operation + * (via `IgnorableOperationToOperationSourceCandidateFlow`). + */ +module OperationToYearAssignmentConfig implements DataFlow::ConfigSig { + predicate isSource(DataFlow::Node n) { yearAssignmentFlowsFromSource(n, _) } + + predicate isSink(DataFlow::Node n) { + exists(DataFlow::Node operation | + yearAssignmentFlowsFromSource(operation, n) and + // If the candidate came from an ignorable operation, ignore the candidate + // NOTE: we cannot easily flow the candidate to an ignorable operation as that can + // be tricky in practice, e.g., a mod operation on a year would be part of a leap year check + // but a mod operation ending in a year is more indicative of something to ignore (a conversion) + not exists(IgnorableOperationToOperationSourceCandidateFlow::PathNode sink | + sink.getNode() = operation and + sink.isSink() + ) + ) + } + + predicate isBarrier(DataFlow::Node n) { OperationToYearAssignmentConfig0::isBarrier(n) } + + predicate isBarrierIn(DataFlow::Node n) { isSource(n) } + + predicate isBarrierOut(DataFlow::Node n) { isSink(n) } +} + module OperationToYearAssignmentFlow = TaintTracking::Global; predicate isLeapYearCheckSink(DataFlow::Node sink) { From 96d6ee61ffde3ce28df1feec97b1e0200ed5bc13 Mon Sep 17 00:00:00 2001 From: Mathias Vorreiter Pedersen Date: Wed, 29 Apr 2026 10:55:02 +0100 Subject: [PATCH 107/260] Update cpp/ql/src/Likely Bugs/Leap Year/UncheckedLeapYearAfterYearModification.ql Co-authored-by: Jeroen Ketema <93738568+jketema@users.noreply.github.com> --- .../Leap Year/UncheckedLeapYearAfterYearModification.ql | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cpp/ql/src/Likely Bugs/Leap Year/UncheckedLeapYearAfterYearModification.ql b/cpp/ql/src/Likely Bugs/Leap Year/UncheckedLeapYearAfterYearModification.ql index 1320069bb1ca..4bc58eb08540 100644 --- a/cpp/ql/src/Likely Bugs/Leap Year/UncheckedLeapYearAfterYearModification.ql +++ b/cpp/ql/src/Likely Bugs/Leap Year/UncheckedLeapYearAfterYearModification.ql @@ -311,7 +311,7 @@ predicate isOperationSourceCandidate(Expr e) { } /** - * The set of all expressions which is a candidate expression. + * The set of all expressions that are candidate expression. * ``` * a = something <<< 2; * myDate.year = a + 1; // invalid From 77639817fe37d3493ce8ab6c966e1346541625c5 Mon Sep 17 00:00:00 2001 From: Tom Hvitved Date: Tue, 28 Apr 2026 10:45:53 +0200 Subject: [PATCH 108/260] C#: Remove unintended CP --- .../code/csharp/dataflow/internal/DataFlowPrivate.qll | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/csharp/ql/lib/semmle/code/csharp/dataflow/internal/DataFlowPrivate.qll b/csharp/ql/lib/semmle/code/csharp/dataflow/internal/DataFlowPrivate.qll index 5b3bf5f2dae0..67901fdb4b21 100644 --- a/csharp/ql/lib/semmle/code/csharp/dataflow/internal/DataFlowPrivate.qll +++ b/csharp/ql/lib/semmle/code/csharp/dataflow/internal/DataFlowPrivate.qll @@ -918,8 +918,6 @@ private Gvn::GvnType getANonTypeParameterSubTypeRestricted(RelevantGvnType t) { /** A callable with an implicit `this` parameter. */ private class InstanceCallable extends Callable { - private Location l; - InstanceCallable() { not this.(Modifiable).isStatic() and // local functions and delegate capture `this` and should therefore @@ -927,8 +925,6 @@ private class InstanceCallable extends Callable { not this instanceof LocalFunction and not this instanceof AnonymousFunctionExpr } - - Location getARelevantLocation() { result = l } } /** @@ -1019,8 +1015,7 @@ private module Cached { } or TInstanceParameterNode(InstanceCallable c, Location l) { c = any(DataFlowCallable dfc).asCallable(l) and - c instanceof CallableUsedInSource and - l = c.getARelevantLocation() + c instanceof CallableUsedInSource } or TDelegateSelfReferenceNode(Callable c) { lambdaCreationExpr(_, c) } or TLocalFunctionCreationNode(ControlFlowNodes::ElementNode cfn, Boolean isPostUpdate) { From d792e11b7f95fee7343e22c0602b8c5acc232a02 Mon Sep 17 00:00:00 2001 From: Tom Hvitved Date: Tue, 21 Apr 2026 13:42:33 +0200 Subject: [PATCH 109/260] C#: Add tests for methods with default parameters --- .../controlflow/graph/BasicBlock.expected | 2 + .../controlflow/graph/DefaultParam.cs | 7 ++ .../controlflow/graph/Dominance.expected | 64 +++++++++++++++++++ .../graph/EnclosingCallable.expected | 34 ++++++++++ .../controlflow/graph/EntryElement.expected | 13 ++++ .../controlflow/graph/NodeGraph.expected | 30 +++++++++ .../controlflow/graph/Nodes.expected | 1 + .../dataflow/local/DataFlowStep.expected | 2 + .../dataflow/local/LocalDataFlow.cs | 5 ++ .../dataflow/local/TaintTrackingStep.expected | 2 + .../dataflow/ssa/DefAdjacentRead.expected | 3 + .../dataflow/ssa/DefaultParam.cs | 7 ++ .../dataflow/ssa/SsaDef.expected | 3 + .../dataflow/ssa/SsaDefElement.expected | 3 + .../ssa/SsaImplicitParameterDef.expected | 3 + .../dataflow/ssa/SsaRead.expected | 3 + .../dataflow/ssa/SsaUltimateDef.expected | 3 + 17 files changed, 185 insertions(+) create mode 100644 csharp/ql/test/library-tests/controlflow/graph/DefaultParam.cs create mode 100644 csharp/ql/test/library-tests/dataflow/ssa/DefaultParam.cs diff --git a/csharp/ql/test/library-tests/controlflow/graph/BasicBlock.expected b/csharp/ql/test/library-tests/controlflow/graph/BasicBlock.expected index 19aa44a84477..e9a7cae7a564 100644 --- a/csharp/ql/test/library-tests/controlflow/graph/BasicBlock.expected +++ b/csharp/ql/test/library-tests/controlflow/graph/BasicBlock.expected @@ -433,6 +433,8 @@ | Conditions.cs:146:9:149:49 | After if (...) ... | Conditions.cs:143:10:143:12 | Exit | 4 | | Conditions.cs:146:13:146:13 | After access to parameter b [false] | Conditions.cs:149:13:149:49 | After ...; | 14 | | Conditions.cs:146:13:146:13 | After access to parameter b [true] | Conditions.cs:147:13:147:49 | After ...; | 14 | +| DefaultParam.cs:1:7:1:18 | Entry | DefaultParam.cs:1:7:1:18 | Exit | 11 | +| DefaultParam.cs:3:12:3:13 | Entry | DefaultParam.cs:3:12:3:13 | Exit | 21 | | ExitMethods.cs:6:7:6:17 | Entry | ExitMethods.cs:6:7:6:17 | Exit | 11 | | ExitMethods.cs:8:10:8:11 | Entry | ExitMethods.cs:8:10:8:11 | Exit | 12 | | ExitMethods.cs:14:10:14:11 | Entry | ExitMethods.cs:14:10:14:11 | Exit | 12 | diff --git a/csharp/ql/test/library-tests/controlflow/graph/DefaultParam.cs b/csharp/ql/test/library-tests/controlflow/graph/DefaultParam.cs new file mode 100644 index 000000000000..6ef844582e58 --- /dev/null +++ b/csharp/ql/test/library-tests/controlflow/graph/DefaultParam.cs @@ -0,0 +1,7 @@ +class DefaultParam +{ + string M1(bool b, string s = "", int i = 0) + { + return b + s + i; + } +} diff --git a/csharp/ql/test/library-tests/controlflow/graph/Dominance.expected b/csharp/ql/test/library-tests/controlflow/graph/Dominance.expected index 127e4b61b633..f942240086ae 100644 --- a/csharp/ql/test/library-tests/controlflow/graph/Dominance.expected +++ b/csharp/ql/test/library-tests/controlflow/graph/Dominance.expected @@ -2642,6 +2642,36 @@ dominance | Conditions.cs:149:44:149:46 | Before {...} | Conditions.cs:149:45:149:45 | access to local variable s | | Conditions.cs:149:44:149:46 | {...} | Conditions.cs:149:44:149:46 | After {...} | | Conditions.cs:149:45:149:45 | access to local variable s | Conditions.cs:149:44:149:46 | {...} | +| DefaultParam.cs:1:7:1:18 | After call to constructor Object | DefaultParam.cs:1:7:1:18 | {...} | +| DefaultParam.cs:1:7:1:18 | After call to method | DefaultParam.cs:1:7:1:18 | Before call to constructor Object | +| DefaultParam.cs:1:7:1:18 | Before call to constructor Object | DefaultParam.cs:1:7:1:18 | call to constructor Object | +| DefaultParam.cs:1:7:1:18 | Before call to method | DefaultParam.cs:1:7:1:18 | this access | +| DefaultParam.cs:1:7:1:18 | Entry | DefaultParam.cs:1:7:1:18 | Before call to method | +| DefaultParam.cs:1:7:1:18 | Normal Exit | DefaultParam.cs:1:7:1:18 | Exit | +| DefaultParam.cs:1:7:1:18 | call to constructor Object | DefaultParam.cs:1:7:1:18 | After call to constructor Object | +| DefaultParam.cs:1:7:1:18 | call to method | DefaultParam.cs:1:7:1:18 | After call to method | +| DefaultParam.cs:1:7:1:18 | this access | DefaultParam.cs:1:7:1:18 | call to method | +| DefaultParam.cs:1:7:1:18 | {...} | DefaultParam.cs:1:7:1:18 | Normal Exit | +| DefaultParam.cs:3:12:3:13 | Entry | DefaultParam.cs:4:5:6:5 | {...} | +| DefaultParam.cs:3:12:3:13 | Normal Exit | DefaultParam.cs:3:12:3:13 | Exit | +| DefaultParam.cs:4:5:6:5 | {...} | DefaultParam.cs:5:9:5:25 | Before return ...; | +| DefaultParam.cs:5:9:5:25 | Before return ...; | DefaultParam.cs:5:16:5:24 | Before ... + ... | +| DefaultParam.cs:5:9:5:25 | return ...; | DefaultParam.cs:3:12:3:13 | Normal Exit | +| DefaultParam.cs:5:16:5:16 | (...) ... | DefaultParam.cs:5:16:5:16 | After (...) ... | +| DefaultParam.cs:5:16:5:16 | After (...) ... | DefaultParam.cs:5:20:5:20 | access to parameter s | +| DefaultParam.cs:5:16:5:16 | Before (...) ... | DefaultParam.cs:5:16:5:16 | access to parameter b | +| DefaultParam.cs:5:16:5:16 | access to parameter b | DefaultParam.cs:5:16:5:16 | (...) ... | +| DefaultParam.cs:5:16:5:20 | ... + ... | DefaultParam.cs:5:16:5:20 | After ... + ... | +| DefaultParam.cs:5:16:5:20 | After ... + ... | DefaultParam.cs:5:24:5:24 | Before (...) ... | +| DefaultParam.cs:5:16:5:20 | Before ... + ... | DefaultParam.cs:5:16:5:16 | Before (...) ... | +| DefaultParam.cs:5:16:5:24 | ... + ... | DefaultParam.cs:5:16:5:24 | After ... + ... | +| DefaultParam.cs:5:16:5:24 | After ... + ... | DefaultParam.cs:5:9:5:25 | return ...; | +| DefaultParam.cs:5:16:5:24 | Before ... + ... | DefaultParam.cs:5:16:5:20 | Before ... + ... | +| DefaultParam.cs:5:20:5:20 | access to parameter s | DefaultParam.cs:5:16:5:20 | ... + ... | +| DefaultParam.cs:5:24:5:24 | (...) ... | DefaultParam.cs:5:24:5:24 | After (...) ... | +| DefaultParam.cs:5:24:5:24 | After (...) ... | DefaultParam.cs:5:16:5:24 | ... + ... | +| DefaultParam.cs:5:24:5:24 | Before (...) ... | DefaultParam.cs:5:24:5:24 | access to parameter i | +| DefaultParam.cs:5:24:5:24 | access to parameter i | DefaultParam.cs:5:24:5:24 | (...) ... | | ExitMethods.cs:6:7:6:17 | After call to constructor Object | ExitMethods.cs:6:7:6:17 | {...} | | ExitMethods.cs:6:7:6:17 | After call to method | ExitMethods.cs:6:7:6:17 | Before call to constructor Object | | ExitMethods.cs:6:7:6:17 | Before call to constructor Object | ExitMethods.cs:6:7:6:17 | call to constructor Object | @@ -10119,6 +10149,36 @@ postDominance | Conditions.cs:149:44:149:46 | Before {...} | Conditions.cs:149:40:149:43 | "b = " | | Conditions.cs:149:44:149:46 | {...} | Conditions.cs:149:45:149:45 | access to local variable s | | Conditions.cs:149:45:149:45 | access to local variable s | Conditions.cs:149:44:149:46 | Before {...} | +| DefaultParam.cs:1:7:1:18 | After call to constructor Object | DefaultParam.cs:1:7:1:18 | call to constructor Object | +| DefaultParam.cs:1:7:1:18 | After call to method | DefaultParam.cs:1:7:1:18 | call to method | +| DefaultParam.cs:1:7:1:18 | Before call to constructor Object | DefaultParam.cs:1:7:1:18 | After call to method | +| DefaultParam.cs:1:7:1:18 | Before call to method | DefaultParam.cs:1:7:1:18 | Entry | +| DefaultParam.cs:1:7:1:18 | Exit | DefaultParam.cs:1:7:1:18 | Normal Exit | +| DefaultParam.cs:1:7:1:18 | Normal Exit | DefaultParam.cs:1:7:1:18 | {...} | +| DefaultParam.cs:1:7:1:18 | call to constructor Object | DefaultParam.cs:1:7:1:18 | Before call to constructor Object | +| DefaultParam.cs:1:7:1:18 | call to method | DefaultParam.cs:1:7:1:18 | this access | +| DefaultParam.cs:1:7:1:18 | this access | DefaultParam.cs:1:7:1:18 | Before call to method | +| DefaultParam.cs:1:7:1:18 | {...} | DefaultParam.cs:1:7:1:18 | After call to constructor Object | +| DefaultParam.cs:3:12:3:13 | Exit | DefaultParam.cs:3:12:3:13 | Normal Exit | +| DefaultParam.cs:3:12:3:13 | Normal Exit | DefaultParam.cs:5:9:5:25 | return ...; | +| DefaultParam.cs:4:5:6:5 | {...} | DefaultParam.cs:3:12:3:13 | Entry | +| DefaultParam.cs:5:9:5:25 | Before return ...; | DefaultParam.cs:4:5:6:5 | {...} | +| DefaultParam.cs:5:9:5:25 | return ...; | DefaultParam.cs:5:16:5:24 | After ... + ... | +| DefaultParam.cs:5:16:5:16 | (...) ... | DefaultParam.cs:5:16:5:16 | access to parameter b | +| DefaultParam.cs:5:16:5:16 | After (...) ... | DefaultParam.cs:5:16:5:16 | (...) ... | +| DefaultParam.cs:5:16:5:16 | Before (...) ... | DefaultParam.cs:5:16:5:20 | Before ... + ... | +| DefaultParam.cs:5:16:5:16 | access to parameter b | DefaultParam.cs:5:16:5:16 | Before (...) ... | +| DefaultParam.cs:5:16:5:20 | ... + ... | DefaultParam.cs:5:20:5:20 | access to parameter s | +| DefaultParam.cs:5:16:5:20 | After ... + ... | DefaultParam.cs:5:16:5:20 | ... + ... | +| DefaultParam.cs:5:16:5:20 | Before ... + ... | DefaultParam.cs:5:16:5:24 | Before ... + ... | +| DefaultParam.cs:5:16:5:24 | ... + ... | DefaultParam.cs:5:24:5:24 | After (...) ... | +| DefaultParam.cs:5:16:5:24 | After ... + ... | DefaultParam.cs:5:16:5:24 | ... + ... | +| DefaultParam.cs:5:16:5:24 | Before ... + ... | DefaultParam.cs:5:9:5:25 | Before return ...; | +| DefaultParam.cs:5:20:5:20 | access to parameter s | DefaultParam.cs:5:16:5:16 | After (...) ... | +| DefaultParam.cs:5:24:5:24 | (...) ... | DefaultParam.cs:5:24:5:24 | access to parameter i | +| DefaultParam.cs:5:24:5:24 | After (...) ... | DefaultParam.cs:5:24:5:24 | (...) ... | +| DefaultParam.cs:5:24:5:24 | Before (...) ... | DefaultParam.cs:5:16:5:20 | After ... + ... | +| DefaultParam.cs:5:24:5:24 | access to parameter i | DefaultParam.cs:5:24:5:24 | Before (...) ... | | ExitMethods.cs:6:7:6:17 | After call to constructor Object | ExitMethods.cs:6:7:6:17 | call to constructor Object | | ExitMethods.cs:6:7:6:17 | After call to method | ExitMethods.cs:6:7:6:17 | call to method | | ExitMethods.cs:6:7:6:17 | Before call to constructor Object | ExitMethods.cs:6:7:6:17 | After call to method | @@ -16742,6 +16802,8 @@ blockDominance | Conditions.cs:146:9:149:49 | After if (...) ... | Conditions.cs:146:9:149:49 | After if (...) ... | | Conditions.cs:146:13:146:13 | After access to parameter b [false] | Conditions.cs:146:13:146:13 | After access to parameter b [false] | | Conditions.cs:146:13:146:13 | After access to parameter b [true] | Conditions.cs:146:13:146:13 | After access to parameter b [true] | +| DefaultParam.cs:1:7:1:18 | Entry | DefaultParam.cs:1:7:1:18 | Entry | +| DefaultParam.cs:3:12:3:13 | Entry | DefaultParam.cs:3:12:3:13 | Entry | | ExitMethods.cs:6:7:6:17 | Entry | ExitMethods.cs:6:7:6:17 | Entry | | ExitMethods.cs:8:10:8:11 | Entry | ExitMethods.cs:8:10:8:11 | Entry | | ExitMethods.cs:14:10:14:11 | Entry | ExitMethods.cs:14:10:14:11 | Entry | @@ -20977,6 +21039,8 @@ postBlockDominance | Conditions.cs:146:9:149:49 | After if (...) ... | Conditions.cs:146:13:146:13 | After access to parameter b [true] | | Conditions.cs:146:13:146:13 | After access to parameter b [false] | Conditions.cs:146:13:146:13 | After access to parameter b [false] | | Conditions.cs:146:13:146:13 | After access to parameter b [true] | Conditions.cs:146:13:146:13 | After access to parameter b [true] | +| DefaultParam.cs:1:7:1:18 | Entry | DefaultParam.cs:1:7:1:18 | Entry | +| DefaultParam.cs:3:12:3:13 | Entry | DefaultParam.cs:3:12:3:13 | Entry | | ExitMethods.cs:6:7:6:17 | Entry | ExitMethods.cs:6:7:6:17 | Entry | | ExitMethods.cs:8:10:8:11 | Entry | ExitMethods.cs:8:10:8:11 | Entry | | ExitMethods.cs:14:10:14:11 | Entry | ExitMethods.cs:14:10:14:11 | Entry | diff --git a/csharp/ql/test/library-tests/controlflow/graph/EnclosingCallable.expected b/csharp/ql/test/library-tests/controlflow/graph/EnclosingCallable.expected index 34f56adc0295..2df18eac6cb5 100644 --- a/csharp/ql/test/library-tests/controlflow/graph/EnclosingCallable.expected +++ b/csharp/ql/test/library-tests/controlflow/graph/EnclosingCallable.expected @@ -2829,6 +2829,38 @@ nodeEnclosing | Conditions.cs:149:44:149:46 | Before {...} | Conditions.cs:143:10:143:12 | M11 | | Conditions.cs:149:44:149:46 | {...} | Conditions.cs:143:10:143:12 | M11 | | Conditions.cs:149:45:149:45 | access to local variable s | Conditions.cs:143:10:143:12 | M11 | +| DefaultParam.cs:1:7:1:18 | After call to constructor Object | DefaultParam.cs:1:7:1:18 | DefaultParam | +| DefaultParam.cs:1:7:1:18 | After call to method | DefaultParam.cs:1:7:1:18 | DefaultParam | +| DefaultParam.cs:1:7:1:18 | Before call to constructor Object | DefaultParam.cs:1:7:1:18 | DefaultParam | +| DefaultParam.cs:1:7:1:18 | Before call to method | DefaultParam.cs:1:7:1:18 | DefaultParam | +| DefaultParam.cs:1:7:1:18 | Entry | DefaultParam.cs:1:7:1:18 | DefaultParam | +| DefaultParam.cs:1:7:1:18 | Exit | DefaultParam.cs:1:7:1:18 | DefaultParam | +| DefaultParam.cs:1:7:1:18 | Normal Exit | DefaultParam.cs:1:7:1:18 | DefaultParam | +| DefaultParam.cs:1:7:1:18 | call to constructor Object | DefaultParam.cs:1:7:1:18 | DefaultParam | +| DefaultParam.cs:1:7:1:18 | call to method | DefaultParam.cs:1:7:1:18 | DefaultParam | +| DefaultParam.cs:1:7:1:18 | this access | DefaultParam.cs:1:7:1:18 | DefaultParam | +| DefaultParam.cs:1:7:1:18 | {...} | DefaultParam.cs:1:7:1:18 | DefaultParam | +| DefaultParam.cs:3:12:3:13 | Entry | DefaultParam.cs:3:12:3:13 | M1 | +| DefaultParam.cs:3:12:3:13 | Exit | DefaultParam.cs:3:12:3:13 | M1 | +| DefaultParam.cs:3:12:3:13 | Normal Exit | DefaultParam.cs:3:12:3:13 | M1 | +| DefaultParam.cs:4:5:6:5 | {...} | DefaultParam.cs:3:12:3:13 | M1 | +| DefaultParam.cs:5:9:5:25 | Before return ...; | DefaultParam.cs:3:12:3:13 | M1 | +| DefaultParam.cs:5:9:5:25 | return ...; | DefaultParam.cs:3:12:3:13 | M1 | +| DefaultParam.cs:5:16:5:16 | (...) ... | DefaultParam.cs:3:12:3:13 | M1 | +| DefaultParam.cs:5:16:5:16 | After (...) ... | DefaultParam.cs:3:12:3:13 | M1 | +| DefaultParam.cs:5:16:5:16 | Before (...) ... | DefaultParam.cs:3:12:3:13 | M1 | +| DefaultParam.cs:5:16:5:16 | access to parameter b | DefaultParam.cs:3:12:3:13 | M1 | +| DefaultParam.cs:5:16:5:20 | ... + ... | DefaultParam.cs:3:12:3:13 | M1 | +| DefaultParam.cs:5:16:5:20 | After ... + ... | DefaultParam.cs:3:12:3:13 | M1 | +| DefaultParam.cs:5:16:5:20 | Before ... + ... | DefaultParam.cs:3:12:3:13 | M1 | +| DefaultParam.cs:5:16:5:24 | ... + ... | DefaultParam.cs:3:12:3:13 | M1 | +| DefaultParam.cs:5:16:5:24 | After ... + ... | DefaultParam.cs:3:12:3:13 | M1 | +| DefaultParam.cs:5:16:5:24 | Before ... + ... | DefaultParam.cs:3:12:3:13 | M1 | +| DefaultParam.cs:5:20:5:20 | access to parameter s | DefaultParam.cs:3:12:3:13 | M1 | +| DefaultParam.cs:5:24:5:24 | (...) ... | DefaultParam.cs:3:12:3:13 | M1 | +| DefaultParam.cs:5:24:5:24 | After (...) ... | DefaultParam.cs:3:12:3:13 | M1 | +| DefaultParam.cs:5:24:5:24 | Before (...) ... | DefaultParam.cs:3:12:3:13 | M1 | +| DefaultParam.cs:5:24:5:24 | access to parameter i | DefaultParam.cs:3:12:3:13 | M1 | | ExitMethods.cs:6:7:6:17 | After call to constructor Object | ExitMethods.cs:6:7:6:17 | ExitMethods | | ExitMethods.cs:6:7:6:17 | After call to method | ExitMethods.cs:6:7:6:17 | ExitMethods | | ExitMethods.cs:6:7:6:17 | Before call to constructor Object | ExitMethods.cs:6:7:6:17 | ExitMethods | @@ -8487,6 +8519,8 @@ blockEnclosing | Conditions.cs:146:9:149:49 | After if (...) ... | Conditions.cs:143:10:143:12 | M11 | | Conditions.cs:146:13:146:13 | After access to parameter b [false] | Conditions.cs:143:10:143:12 | M11 | | Conditions.cs:146:13:146:13 | After access to parameter b [true] | Conditions.cs:143:10:143:12 | M11 | +| DefaultParam.cs:1:7:1:18 | Entry | DefaultParam.cs:1:7:1:18 | DefaultParam | +| DefaultParam.cs:3:12:3:13 | Entry | DefaultParam.cs:3:12:3:13 | M1 | | ExitMethods.cs:6:7:6:17 | Entry | ExitMethods.cs:6:7:6:17 | ExitMethods | | ExitMethods.cs:8:10:8:11 | Entry | ExitMethods.cs:8:10:8:11 | M1 | | ExitMethods.cs:14:10:14:11 | Entry | ExitMethods.cs:14:10:14:11 | M2 | diff --git a/csharp/ql/test/library-tests/controlflow/graph/EntryElement.expected b/csharp/ql/test/library-tests/controlflow/graph/EntryElement.expected index ea8c1df43634..4451a8fb1aa7 100644 --- a/csharp/ql/test/library-tests/controlflow/graph/EntryElement.expected +++ b/csharp/ql/test/library-tests/controlflow/graph/EntryElement.expected @@ -1271,6 +1271,19 @@ | Conditions.cs:149:40:149:43 | "b = " | Conditions.cs:149:40:149:43 | "b = " | | Conditions.cs:149:44:149:46 | {...} | Conditions.cs:149:45:149:45 | access to local variable s | | Conditions.cs:149:45:149:45 | access to local variable s | Conditions.cs:149:45:149:45 | access to local variable s | +| DefaultParam.cs:1:7:1:18 | call to constructor Object | DefaultParam.cs:1:7:1:18 | call to constructor Object | +| DefaultParam.cs:1:7:1:18 | call to method | DefaultParam.cs:1:7:1:18 | this access | +| DefaultParam.cs:1:7:1:18 | this access | DefaultParam.cs:1:7:1:18 | this access | +| DefaultParam.cs:1:7:1:18 | {...} | DefaultParam.cs:1:7:1:18 | {...} | +| DefaultParam.cs:4:5:6:5 | {...} | DefaultParam.cs:4:5:6:5 | {...} | +| DefaultParam.cs:5:9:5:25 | return ...; | DefaultParam.cs:5:16:5:16 | access to parameter b | +| DefaultParam.cs:5:16:5:16 | (...) ... | DefaultParam.cs:5:16:5:16 | access to parameter b | +| DefaultParam.cs:5:16:5:16 | access to parameter b | DefaultParam.cs:5:16:5:16 | access to parameter b | +| DefaultParam.cs:5:16:5:20 | ... + ... | DefaultParam.cs:5:16:5:16 | access to parameter b | +| DefaultParam.cs:5:16:5:24 | ... + ... | DefaultParam.cs:5:16:5:16 | access to parameter b | +| DefaultParam.cs:5:20:5:20 | access to parameter s | DefaultParam.cs:5:20:5:20 | access to parameter s | +| DefaultParam.cs:5:24:5:24 | (...) ... | DefaultParam.cs:5:24:5:24 | access to parameter i | +| DefaultParam.cs:5:24:5:24 | access to parameter i | DefaultParam.cs:5:24:5:24 | access to parameter i | | ExitMethods.cs:6:7:6:17 | call to constructor Object | ExitMethods.cs:6:7:6:17 | call to constructor Object | | ExitMethods.cs:6:7:6:17 | call to method | ExitMethods.cs:6:7:6:17 | this access | | ExitMethods.cs:6:7:6:17 | this access | ExitMethods.cs:6:7:6:17 | this access | diff --git a/csharp/ql/test/library-tests/controlflow/graph/NodeGraph.expected b/csharp/ql/test/library-tests/controlflow/graph/NodeGraph.expected index f555d3a24e27..7c138f5c38fc 100644 --- a/csharp/ql/test/library-tests/controlflow/graph/NodeGraph.expected +++ b/csharp/ql/test/library-tests/controlflow/graph/NodeGraph.expected @@ -2882,6 +2882,36 @@ | Conditions.cs:149:44:149:46 | Before {...} | Conditions.cs:149:45:149:45 | access to local variable s | | | Conditions.cs:149:44:149:46 | {...} | Conditions.cs:149:44:149:46 | After {...} | | | Conditions.cs:149:45:149:45 | access to local variable s | Conditions.cs:149:44:149:46 | {...} | | +| DefaultParam.cs:1:7:1:18 | After call to constructor Object | DefaultParam.cs:1:7:1:18 | {...} | | +| DefaultParam.cs:1:7:1:18 | After call to method | DefaultParam.cs:1:7:1:18 | Before call to constructor Object | | +| DefaultParam.cs:1:7:1:18 | Before call to constructor Object | DefaultParam.cs:1:7:1:18 | call to constructor Object | | +| DefaultParam.cs:1:7:1:18 | Before call to method | DefaultParam.cs:1:7:1:18 | this access | | +| DefaultParam.cs:1:7:1:18 | Entry | DefaultParam.cs:1:7:1:18 | Before call to method | | +| DefaultParam.cs:1:7:1:18 | Normal Exit | DefaultParam.cs:1:7:1:18 | Exit | | +| DefaultParam.cs:1:7:1:18 | call to constructor Object | DefaultParam.cs:1:7:1:18 | After call to constructor Object | | +| DefaultParam.cs:1:7:1:18 | call to method | DefaultParam.cs:1:7:1:18 | After call to method | | +| DefaultParam.cs:1:7:1:18 | this access | DefaultParam.cs:1:7:1:18 | call to method | | +| DefaultParam.cs:1:7:1:18 | {...} | DefaultParam.cs:1:7:1:18 | Normal Exit | | +| DefaultParam.cs:3:12:3:13 | Entry | DefaultParam.cs:4:5:6:5 | {...} | | +| DefaultParam.cs:3:12:3:13 | Normal Exit | DefaultParam.cs:3:12:3:13 | Exit | | +| DefaultParam.cs:4:5:6:5 | {...} | DefaultParam.cs:5:9:5:25 | Before return ...; | | +| DefaultParam.cs:5:9:5:25 | Before return ...; | DefaultParam.cs:5:16:5:24 | Before ... + ... | | +| DefaultParam.cs:5:9:5:25 | return ...; | DefaultParam.cs:3:12:3:13 | Normal Exit | return | +| DefaultParam.cs:5:16:5:16 | (...) ... | DefaultParam.cs:5:16:5:16 | After (...) ... | | +| DefaultParam.cs:5:16:5:16 | After (...) ... | DefaultParam.cs:5:20:5:20 | access to parameter s | | +| DefaultParam.cs:5:16:5:16 | Before (...) ... | DefaultParam.cs:5:16:5:16 | access to parameter b | | +| DefaultParam.cs:5:16:5:16 | access to parameter b | DefaultParam.cs:5:16:5:16 | (...) ... | | +| DefaultParam.cs:5:16:5:20 | ... + ... | DefaultParam.cs:5:16:5:20 | After ... + ... | | +| DefaultParam.cs:5:16:5:20 | After ... + ... | DefaultParam.cs:5:24:5:24 | Before (...) ... | | +| DefaultParam.cs:5:16:5:20 | Before ... + ... | DefaultParam.cs:5:16:5:16 | Before (...) ... | | +| DefaultParam.cs:5:16:5:24 | ... + ... | DefaultParam.cs:5:16:5:24 | After ... + ... | | +| DefaultParam.cs:5:16:5:24 | After ... + ... | DefaultParam.cs:5:9:5:25 | return ...; | | +| DefaultParam.cs:5:16:5:24 | Before ... + ... | DefaultParam.cs:5:16:5:20 | Before ... + ... | | +| DefaultParam.cs:5:20:5:20 | access to parameter s | DefaultParam.cs:5:16:5:20 | ... + ... | | +| DefaultParam.cs:5:24:5:24 | (...) ... | DefaultParam.cs:5:24:5:24 | After (...) ... | | +| DefaultParam.cs:5:24:5:24 | After (...) ... | DefaultParam.cs:5:16:5:24 | ... + ... | | +| DefaultParam.cs:5:24:5:24 | Before (...) ... | DefaultParam.cs:5:24:5:24 | access to parameter i | | +| DefaultParam.cs:5:24:5:24 | access to parameter i | DefaultParam.cs:5:24:5:24 | (...) ... | | | ExitMethods.cs:6:7:6:17 | After call to constructor Object | ExitMethods.cs:6:7:6:17 | {...} | | | ExitMethods.cs:6:7:6:17 | After call to method | ExitMethods.cs:6:7:6:17 | Before call to constructor Object | | | ExitMethods.cs:6:7:6:17 | Before call to constructor Object | ExitMethods.cs:6:7:6:17 | call to constructor Object | | diff --git a/csharp/ql/test/library-tests/controlflow/graph/Nodes.expected b/csharp/ql/test/library-tests/controlflow/graph/Nodes.expected index 896b4cb0613c..f64038d21588 100644 --- a/csharp/ql/test/library-tests/controlflow/graph/Nodes.expected +++ b/csharp/ql/test/library-tests/controlflow/graph/Nodes.expected @@ -59,6 +59,7 @@ | Conditions.cs:113:10:113:11 | M9 | Conditions.cs:114:5:124:5 | {...} | | Conditions.cs:129:10:129:12 | M10 | Conditions.cs:130:5:141:5 | {...} | | Conditions.cs:143:10:143:12 | M11 | Conditions.cs:144:5:150:5 | {...} | +| DefaultParam.cs:3:12:3:13 | M1 | DefaultParam.cs:4:5:6:5 | {...} | | ExitMethods.cs:8:10:8:11 | M1 | ExitMethods.cs:9:5:12:5 | {...} | | ExitMethods.cs:14:10:14:11 | M2 | ExitMethods.cs:15:5:18:5 | {...} | | ExitMethods.cs:20:10:20:11 | M3 | ExitMethods.cs:21:5:24:5 | {...} | diff --git a/csharp/ql/test/library-tests/dataflow/local/DataFlowStep.expected b/csharp/ql/test/library-tests/dataflow/local/DataFlowStep.expected index 8dcf5e1778cc..a22e56b0dd82 100644 --- a/csharp/ql/test/library-tests/dataflow/local/DataFlowStep.expected +++ b/csharp/ql/test/library-tests/dataflow/local/DataFlowStep.expected @@ -527,6 +527,8 @@ | LocalDataFlow.cs:381:13:381:13 | access to local variable x | LocalDataFlow.cs:381:13:381:29 | SSA def(x) | | LocalDataFlow.cs:381:13:381:29 | SSA def(x) | LocalDataFlow.cs:382:15:382:15 | access to local variable x | | LocalDataFlow.cs:381:17:381:29 | "not tainted" | LocalDataFlow.cs:381:13:381:13 | access to local variable x | +| LocalDataFlow.cs:385:34:385:34 | SSA param(s) | LocalDataFlow.cs:387:15:387:15 | access to parameter s | +| LocalDataFlow.cs:385:34:385:34 | s | LocalDataFlow.cs:385:34:385:34 | SSA param(s) | | SSA.cs:3:14:3:16 | this | SSA.cs:3:14:3:16 | this access | | SSA.cs:5:17:5:17 | SSA entry def(this.S) | SSA.cs:67:9:67:14 | access to field S | | SSA.cs:5:17:5:17 | this | SSA.cs:67:9:67:12 | this access | diff --git a/csharp/ql/test/library-tests/dataflow/local/LocalDataFlow.cs b/csharp/ql/test/library-tests/dataflow/local/LocalDataFlow.cs index 53b6165dd754..34f471e522fe 100644 --- a/csharp/ql/test/library-tests/dataflow/local/LocalDataFlow.cs +++ b/csharp/ql/test/library-tests/dataflow/local/LocalDataFlow.cs @@ -381,4 +381,9 @@ void PhiFlow(bool b1, bool b2) x = "not tainted"; Check(x); } + + void DefaultParamFlow(string s = "taint source") + { + Check(s); + } } diff --git a/csharp/ql/test/library-tests/dataflow/local/TaintTrackingStep.expected b/csharp/ql/test/library-tests/dataflow/local/TaintTrackingStep.expected index 56621390ff31..87cd14bd25b2 100644 --- a/csharp/ql/test/library-tests/dataflow/local/TaintTrackingStep.expected +++ b/csharp/ql/test/library-tests/dataflow/local/TaintTrackingStep.expected @@ -639,6 +639,8 @@ | LocalDataFlow.cs:381:13:381:13 | access to local variable x | LocalDataFlow.cs:381:13:381:29 | SSA def(x) | | LocalDataFlow.cs:381:13:381:29 | SSA def(x) | LocalDataFlow.cs:382:15:382:15 | access to local variable x | | LocalDataFlow.cs:381:17:381:29 | "not tainted" | LocalDataFlow.cs:381:13:381:13 | access to local variable x | +| LocalDataFlow.cs:385:34:385:34 | SSA param(s) | LocalDataFlow.cs:387:15:387:15 | access to parameter s | +| LocalDataFlow.cs:385:34:385:34 | s | LocalDataFlow.cs:385:34:385:34 | SSA param(s) | | SSA.cs:3:14:3:16 | this | SSA.cs:3:14:3:16 | this access | | SSA.cs:5:17:5:17 | SSA entry def(this.S) | SSA.cs:67:9:67:14 | access to field S | | SSA.cs:5:17:5:17 | this | SSA.cs:67:9:67:12 | this access | diff --git a/csharp/ql/test/library-tests/dataflow/ssa/DefAdjacentRead.expected b/csharp/ql/test/library-tests/dataflow/ssa/DefAdjacentRead.expected index 9246392b6621..a6833b789f78 100644 --- a/csharp/ql/test/library-tests/dataflow/ssa/DefAdjacentRead.expected +++ b/csharp/ql/test/library-tests/dataflow/ssa/DefAdjacentRead.expected @@ -61,6 +61,9 @@ | DefUse.cs:166:9:166:14 | Field5 | DefUse.cs:188:13:188:22 | ... = ... | DefUse.cs:189:17:189:22 | access to field Field5 | | DefUse.cs:171:23:171:23 | a | DefUse.cs:171:23:180:9 | Action a = ... | DefUse.cs:181:9:181:9 | access to local variable a | | DefUse.cs:171:23:171:23 | a | DefUse.cs:186:9:190:9 | ... = ... | DefUse.cs:191:9:191:9 | access to local variable a | +| DefaultParam.cs:3:20:3:20 | b | DefaultParam.cs:3:20:3:20 | b | DefaultParam.cs:5:16:5:16 | access to parameter b | +| DefaultParam.cs:3:30:3:30 | s | DefaultParam.cs:3:30:3:30 | s | DefaultParam.cs:5:20:5:20 | access to parameter s | +| DefaultParam.cs:3:42:3:42 | i | DefaultParam.cs:3:42:3:42 | i | DefaultParam.cs:5:24:5:24 | access to parameter i | | Example.cs:4:9:4:13 | Field | Example.cs:8:9:8:22 | ... = ... | Example.cs:9:13:9:22 | access to field Field | | Example.cs:6:23:6:23 | i | Example.cs:6:23:6:23 | i | Example.cs:8:22:8:22 | access to parameter i | | Example.cs:18:16:18:16 | p | Example.cs:18:16:18:16 | p | Example.cs:22:17:22:17 | access to parameter p | diff --git a/csharp/ql/test/library-tests/dataflow/ssa/DefaultParam.cs b/csharp/ql/test/library-tests/dataflow/ssa/DefaultParam.cs new file mode 100644 index 000000000000..6ef844582e58 --- /dev/null +++ b/csharp/ql/test/library-tests/dataflow/ssa/DefaultParam.cs @@ -0,0 +1,7 @@ +class DefaultParam +{ + string M1(bool b, string s = "", int i = 0) + { + return b + s + i; + } +} diff --git a/csharp/ql/test/library-tests/dataflow/ssa/SsaDef.expected b/csharp/ql/test/library-tests/dataflow/ssa/SsaDef.expected index 9fe8df76f181..8f4af9a3aac2 100644 --- a/csharp/ql/test/library-tests/dataflow/ssa/SsaDef.expected +++ b/csharp/ql/test/library-tests/dataflow/ssa/SsaDef.expected @@ -93,6 +93,9 @@ | DefUse.cs:184:9:184:14 | this.Field5 | DefUse.cs:184:9:184:18 | SSA def(this.Field5) | | DefUse.cs:184:9:184:14 | this.Field5 | DefUse.cs:191:9:191:11 | SSA call def(this.Field5) | | DefUse.cs:188:13:188:18 | this.Field5 | DefUse.cs:188:13:188:22 | SSA def(this.Field5) | +| DefaultParam.cs:3:20:3:20 | b | DefaultParam.cs:3:20:3:20 | SSA param(b) | +| DefaultParam.cs:3:30:3:30 | s | DefaultParam.cs:3:30:3:30 | SSA param(s) | +| DefaultParam.cs:3:42:3:42 | i | DefaultParam.cs:3:42:3:42 | SSA param(i) | | Example.cs:6:23:6:23 | i | Example.cs:6:23:6:23 | SSA param(i) | | Example.cs:8:9:8:18 | this.Field | Example.cs:8:9:8:22 | SSA def(this.Field) | | Example.cs:8:9:8:18 | this.Field | Example.cs:10:9:13:24 | SSA phi(this.Field) | diff --git a/csharp/ql/test/library-tests/dataflow/ssa/SsaDefElement.expected b/csharp/ql/test/library-tests/dataflow/ssa/SsaDefElement.expected index 874b9aecfb52..d0e2984050d1 100644 --- a/csharp/ql/test/library-tests/dataflow/ssa/SsaDefElement.expected +++ b/csharp/ql/test/library-tests/dataflow/ssa/SsaDefElement.expected @@ -88,6 +88,9 @@ | DefUse.cs:186:9:190:9 | SSA def(a) | DefUse.cs:186:9:190:9 | ... = ... | | DefUse.cs:188:13:188:22 | SSA def(this.Field5) | DefUse.cs:188:13:188:22 | ... = ... | | DefUse.cs:191:9:191:11 | SSA call def(this.Field5) | DefUse.cs:191:9:191:11 | delegate call | +| DefaultParam.cs:3:20:3:20 | SSA param(b) | DefaultParam.cs:3:20:3:20 | b | +| DefaultParam.cs:3:30:3:30 | SSA param(s) | DefaultParam.cs:3:30:3:30 | s | +| DefaultParam.cs:3:42:3:42 | SSA param(i) | DefaultParam.cs:3:42:3:42 | i | | Example.cs:6:23:6:23 | SSA param(i) | Example.cs:6:23:6:23 | i | | Example.cs:8:9:8:22 | SSA def(this.Field) | Example.cs:8:9:8:22 | ... = ... | | Example.cs:11:13:11:30 | SSA def(this.Field) | Example.cs:11:13:11:30 | ... = ... | diff --git a/csharp/ql/test/library-tests/dataflow/ssa/SsaImplicitParameterDef.expected b/csharp/ql/test/library-tests/dataflow/ssa/SsaImplicitParameterDef.expected index 3ba88d1dd175..db7e7e4ae223 100644 --- a/csharp/ql/test/library-tests/dataflow/ssa/SsaImplicitParameterDef.expected +++ b/csharp/ql/test/library-tests/dataflow/ssa/SsaImplicitParameterDef.expected @@ -15,6 +15,9 @@ | DefUse.cs:128:19:128:19 | i | DefUse.cs:128:19:128:19 | SSA param(i) | DefUse.cs:128:19:128:19 | i | | DefUse.cs:134:22:134:22 | d | DefUse.cs:134:22:134:22 | SSA param(d) | DefUse.cs:134:22:134:22 | d | | DefUse.cs:142:68:142:69 | ie | DefUse.cs:142:68:142:69 | SSA param(ie) | DefUse.cs:142:68:142:69 | ie | +| DefaultParam.cs:3:20:3:20 | b | DefaultParam.cs:3:20:3:20 | SSA param(b) | DefaultParam.cs:3:20:3:20 | b | +| DefaultParam.cs:3:30:3:30 | s | DefaultParam.cs:3:30:3:30 | SSA param(s) | DefaultParam.cs:3:30:3:30 | s | +| DefaultParam.cs:3:42:3:42 | i | DefaultParam.cs:3:42:3:42 | SSA param(i) | DefaultParam.cs:3:42:3:42 | i | | Example.cs:6:23:6:23 | i | Example.cs:6:23:6:23 | SSA param(i) | Example.cs:6:23:6:23 | i | | Example.cs:18:16:18:16 | p | Example.cs:18:16:18:16 | SSA param(p) | Example.cs:18:16:18:16 | p | | Example.cs:18:24:18:24 | b | Example.cs:18:24:18:24 | SSA param(b) | Example.cs:18:24:18:24 | b | diff --git a/csharp/ql/test/library-tests/dataflow/ssa/SsaRead.expected b/csharp/ql/test/library-tests/dataflow/ssa/SsaRead.expected index 625ce3c79a35..96ae63b34fb6 100644 --- a/csharp/ql/test/library-tests/dataflow/ssa/SsaRead.expected +++ b/csharp/ql/test/library-tests/dataflow/ssa/SsaRead.expected @@ -99,6 +99,9 @@ | DefUse.cs:184:9:184:14 | this.Field5 | DefUse.cs:184:9:184:18 | SSA def(this.Field5) | DefUse.cs:185:13:185:18 | access to field Field5 | | DefUse.cs:184:9:184:14 | this.Field5 | DefUse.cs:191:9:191:11 | SSA call def(this.Field5) | DefUse.cs:192:13:192:18 | access to field Field5 | | DefUse.cs:188:13:188:18 | this.Field5 | DefUse.cs:188:13:188:22 | SSA def(this.Field5) | DefUse.cs:189:17:189:22 | access to field Field5 | +| DefaultParam.cs:3:20:3:20 | b | DefaultParam.cs:3:20:3:20 | SSA param(b) | DefaultParam.cs:5:16:5:16 | access to parameter b | +| DefaultParam.cs:3:30:3:30 | s | DefaultParam.cs:3:30:3:30 | SSA param(s) | DefaultParam.cs:5:20:5:20 | access to parameter s | +| DefaultParam.cs:3:42:3:42 | i | DefaultParam.cs:3:42:3:42 | SSA param(i) | DefaultParam.cs:5:24:5:24 | access to parameter i | | Example.cs:6:23:6:23 | i | Example.cs:6:23:6:23 | SSA param(i) | Example.cs:8:22:8:22 | access to parameter i | | Example.cs:6:23:6:23 | i | Example.cs:6:23:6:23 | SSA param(i) | Example.cs:10:13:10:13 | access to parameter i | | Example.cs:6:23:6:23 | i | Example.cs:6:23:6:23 | SSA param(i) | Example.cs:11:26:11:26 | access to parameter i | diff --git a/csharp/ql/test/library-tests/dataflow/ssa/SsaUltimateDef.expected b/csharp/ql/test/library-tests/dataflow/ssa/SsaUltimateDef.expected index 75ad81d4ef1a..c3ccef11a447 100644 --- a/csharp/ql/test/library-tests/dataflow/ssa/SsaUltimateDef.expected +++ b/csharp/ql/test/library-tests/dataflow/ssa/SsaUltimateDef.expected @@ -99,6 +99,9 @@ | DefUse.cs:184:9:184:14 | this.Field5 | DefUse.cs:191:9:191:11 | SSA call def(this.Field5) | DefUse.cs:184:9:184:18 | SSA def(this.Field5) | | DefUse.cs:184:9:184:14 | this.Field5 | DefUse.cs:191:9:191:11 | SSA call def(this.Field5) | DefUse.cs:191:9:191:11 | SSA call def(this.Field5) | | DefUse.cs:188:13:188:18 | this.Field5 | DefUse.cs:188:13:188:22 | SSA def(this.Field5) | DefUse.cs:188:13:188:22 | SSA def(this.Field5) | +| DefaultParam.cs:3:20:3:20 | b | DefaultParam.cs:3:20:3:20 | SSA param(b) | DefaultParam.cs:3:20:3:20 | SSA param(b) | +| DefaultParam.cs:3:30:3:30 | s | DefaultParam.cs:3:30:3:30 | SSA param(s) | DefaultParam.cs:3:30:3:30 | SSA param(s) | +| DefaultParam.cs:3:42:3:42 | i | DefaultParam.cs:3:42:3:42 | SSA param(i) | DefaultParam.cs:3:42:3:42 | SSA param(i) | | Example.cs:6:23:6:23 | i | Example.cs:6:23:6:23 | SSA param(i) | Example.cs:6:23:6:23 | SSA param(i) | | Example.cs:8:9:8:18 | this.Field | Example.cs:8:9:8:22 | SSA def(this.Field) | Example.cs:8:9:8:22 | SSA def(this.Field) | | Example.cs:8:9:8:18 | this.Field | Example.cs:10:9:13:24 | SSA phi(this.Field) | Example.cs:8:9:8:22 | SSA def(this.Field) | From cbe207ab65bdaba1fa050beeeb194f33c4adae47 Mon Sep 17 00:00:00 2001 From: Tom Hvitved Date: Tue, 28 Apr 2026 10:45:47 +0200 Subject: [PATCH 110/260] C#: Include parameters and their defaults in the CFG --- csharp/ql/lib/printCfg.ql | 4 +- .../semmle/code/csharp/ExprOrStmtParent.qll | 10 +- csharp/ql/lib/semmle/code/csharp/PrintAst.qll | 4 +- csharp/ql/lib/semmle/code/csharp/Variable.qll | 4 +- .../csharp/controlflow/ControlFlowGraph.qll | 59 +- .../dataflow/internal/DataFlowPrivate.qll | 44 +- .../code/csharp/dataflow/internal/SsaImpl.qll | 35 +- csharp/ql/lib/semmlecode.csharp.dbscheme | 2 +- .../controlflow/graph/BasicBlock.expected | 302 ++--- .../controlflow/graph/Condition.expected | 4 + .../controlflow/graph/Dominance.expected | 1020 ++++++++++++----- .../graph/EnclosingCallable.expected | 202 ++++ .../controlflow/graph/EntryElement.expected | 192 ++++ .../controlflow/graph/NodeGraph.expected | 508 +++++--- .../controlflow/graph/Nodes.expected | 279 ++--- .../csharp8/switchexprcontrolflow.expected | 6 +- .../dataflow/defuse/defUseEquivalence.ql | 7 +- .../test/library-tests/obinit/ObInit.expected | 37 +- .../codeql/controlflow/ControlFlowGraph.qll | 137 ++- 19 files changed, 2032 insertions(+), 824 deletions(-) diff --git a/csharp/ql/lib/printCfg.ql b/csharp/ql/lib/printCfg.ql index c418446b2164..c80b9b84ee05 100644 --- a/csharp/ql/lib/printCfg.ql +++ b/csharp/ql/lib/printCfg.ql @@ -22,6 +22,8 @@ external int selectedSourceColumn(); private predicate selectedSourceColumnAlias = selectedSourceColumn/0; module ViewCfgQueryInput implements ControlFlow::ViewCfgQueryInputSig { + private import semmle.code.csharp.controlflow.ControlFlowGraph + predicate selectedSourceFile = selectedSourceFileAlias/0; predicate selectedSourceLine = selectedSourceLineAlias/0; @@ -29,7 +31,7 @@ module ViewCfgQueryInput implements ControlFlow::ViewCfgQueryInputSig { predicate selectedSourceColumn = selectedSourceColumnAlias/0; predicate cfgScopeSpan( - Callable scope, File file, int startLine, int startColumn, int endLine, int endColumn + Ast::Callable scope, File file, int startLine, int startColumn, int endLine, int endColumn ) { file = scope.getFile() and scope.getLocation().getStartLine() = startLine and diff --git a/csharp/ql/lib/semmle/code/csharp/ExprOrStmtParent.qll b/csharp/ql/lib/semmle/code/csharp/ExprOrStmtParent.qll index 1aa558194e3a..2cf09707459d 100644 --- a/csharp/ql/lib/semmle/code/csharp/ExprOrStmtParent.qll +++ b/csharp/ql/lib/semmle/code/csharp/ExprOrStmtParent.qll @@ -13,7 +13,7 @@ private import internal.Location * An element that can have a child statement or expression. */ class ExprOrStmtParent extends Element, @exprorstmt_parent { - final override ControlFlowElement getChild(int i) { + override ControlFlowElement getChild(int i) { result = this.getChildExpr(i) or result = this.getChildStmt(i) } @@ -42,14 +42,8 @@ class ExprOrStmtParent extends Element, @exprorstmt_parent { * * An element that can have a child top-level expression. */ -class TopLevelExprParent extends Element, @top_level_expr_parent { +class TopLevelExprParent extends ExprOrStmtParent, @top_level_expr_parent { final override Expr getChild(int i) { result = this.getChildExpr(i) } - - /** Gets the `i`th child expression of this element (zero-based). */ - final Expr getChildExpr(int i) { expr_parent_top_level_adjusted(result, i, this) } - - /** Gets a child expression of this element, if any. */ - final Expr getAChildExpr() { result = this.getChildExpr(_) } } /** INTERNAL: Do not use. */ diff --git a/csharp/ql/lib/semmle/code/csharp/PrintAst.qll b/csharp/ql/lib/semmle/code/csharp/PrintAst.qll index 1fab6b0f8c45..3b328c8393e6 100644 --- a/csharp/ql/lib/semmle/code/csharp/PrintAst.qll +++ b/csharp/ql/lib/semmle/code/csharp/PrintAst.qll @@ -299,7 +299,9 @@ class ControlFlowElementNode extends ElementNode { not isNotNeeded(element.getParent+()) and // LambdaExpr is both a Callable and a ControlFlowElement, // print it with the more specific CallableNode - not element instanceof Callable + not element instanceof Callable and + // Handled in `ParameterNode` + not element instanceof Parameter } override PrintAstNode getChild(int childIndex) { diff --git a/csharp/ql/lib/semmle/code/csharp/Variable.qll b/csharp/ql/lib/semmle/code/csharp/Variable.qll index 6d59816373d2..2d4cf578436d 100644 --- a/csharp/ql/lib/semmle/code/csharp/Variable.qll +++ b/csharp/ql/lib/semmle/code/csharp/Variable.qll @@ -87,7 +87,9 @@ class LocalScopeVariable extends Variable, @local_scope_variable { * } * ``` */ -class Parameter extends LocalScopeVariable, Attributable, TopLevelExprParent, @parameter { +class Parameter extends LocalScopeVariable, Attributable, TopLevelExprParent, ControlFlowElement, + @parameter +{ /** Gets the raw position of this parameter, including the `this` parameter at index 0. */ final int getRawPosition() { this = this.getDeclaringElement().getRawParameter(result) } diff --git a/csharp/ql/lib/semmle/code/csharp/controlflow/ControlFlowGraph.qll b/csharp/ql/lib/semmle/code/csharp/controlflow/ControlFlowGraph.qll index 09f65034f6d6..f2ed17187150 100644 --- a/csharp/ql/lib/semmle/code/csharp/controlflow/ControlFlowGraph.qll +++ b/csharp/ql/lib/semmle/code/csharp/controlflow/ControlFlowGraph.qll @@ -19,8 +19,12 @@ private import Cfg1 private import Cfg2 import Public -/** Provides an implementation of the AST signature for C#. */ -private module Ast implements AstSig { +/** + * INTERNAL: Do not use. + * + * Provides an implementation of the AST signature for C#. + */ +module Ast implements AstSig { private import csharp as CS class AstNode = ControlFlowElementOrCallable; @@ -73,18 +77,41 @@ private module Ast implements AstSig { private AstNode getParent(AstNode n) { n = getChild(result, _) } Callable getEnclosingCallable(AstNode node) { - result = node.(ControlFlowElement).getEnclosingCallable() or - result.(ObjectInitMethod).initializes(getParent*(node)) or + result = node.(ControlFlowElement).getEnclosingCallable() + or + result.(ObjectInitMethod).initializes(getParent*(node)) + or Initializers::staticMemberInitializer(result, getParent*(node)) + or + result = node.(Parameter).getCallable() + or + not skipControlFlow(node) and + getParent*(node) = any(Parameter p | result = p.getCallable()).getDefaultValue() } - class Callable = CS::Callable; + class Callable extends CS::Callable { + Callable() { this.isUnboundDeclaration() } + } AstNode callableGetBody(Callable c) { not skipControlFlow(result) and result = c.getBody() } + final private class ParameterFinal = CS::Parameter; + + class Parameter extends ParameterFinal { + Expr getDefaultValue() { + // Avoid combinatorial explosions for callables with multiple bodies + result = unique( | | super.getDefaultValue()) + } + } + + Parameter callableGetParameter(Callable c, int i) { + not skipControlFlow(result) and + result = c.getParameter(i) + } + class Stmt = CS::Stmt; class Expr = CS::Expr; @@ -232,9 +259,11 @@ private class CompilationExt extends TCompilationExt { } /** Gets the compilation that source file `f` belongs to. */ -private CompilationExt getCompilation(File f) { +bindingset[e] +pragma[inline_late] +private CompilationExt getCompilation(Element e) { exists(Compilation c | - f = c.getAFileCompiled() and + e.getALocation().getFile() = c.getAFileCompiled() and result = TCompilation(c) ) or @@ -415,12 +444,12 @@ private module Input implements InputSig1, InputSig2 { l = TLblGoto(n.(LabelStmt).getLabel()) } - class CallableBodyPartContext = CompilationExt; + class CallableContext = CompilationExt; pragma[nomagic] - Ast::AstNode callableGetBodyPart(Callable c, CallableBodyPartContext ctx, int index) { + Ast::AstNode callableGetBodyPart(Ast::Callable c, CallableContext ctx, int index) { not Ast::skipControlFlow(result) and - ctx = getCompilation(result.getFile()) and + ctx = getCompilation(result) and ( result = Initializers::initializedInstanceMemberOrder(c, index) or @@ -437,9 +466,19 @@ private module Input implements InputSig1, InputSig2 { or i = 2 and result = ctor.getBody() ) + or + not c instanceof Constructor and + result = c.getBody() and + index = 0 ) } + pragma[nomagic] + Ast::Parameter callableGetParameter(Ast::Callable c, CallableContext ctx, int index) { + result = Ast::callableGetParameter(c, index) and + ctx = getCompilation(result) + } + private Expr getQualifier(QualifiableExpr qe) { result = qe.getQualifier() or result = qe.(ExtensionMethodCall).getArgument(0) diff --git a/csharp/ql/lib/semmle/code/csharp/dataflow/internal/DataFlowPrivate.qll b/csharp/ql/lib/semmle/code/csharp/dataflow/internal/DataFlowPrivate.qll index 67901fdb4b21..1352f6e9f9f3 100644 --- a/csharp/ql/lib/semmle/code/csharp/dataflow/internal/DataFlowPrivate.qll +++ b/csharp/ql/lib/semmle/code/csharp/dataflow/internal/DataFlowPrivate.qll @@ -175,6 +175,18 @@ private module ThisFlow { result = strictcount(int primaryParamPos | primaryConstructorThisAccess(_, bb, primaryParamPos)) } + private module BodyNearestLocationInput implements NearestLocationInputSig { + class C = ControlFlowElement; + + predicate relevantLocations(ControlFlowElement body, Location l1, Location l2) { + exists(DataFlowCallable c | + any(InstanceParameterNode p).isParameterOf(c, _) and + body = c.asCallable(l1).getBody() and + l2 = body.getLocation() + ) + } + } + private predicate thisAccess(Node n, BasicBlock bb, int i) { thisAccess(n, bb.getNode(i)) or @@ -183,21 +195,29 @@ private module ThisFlow { i = ppos - numberOfPrimaryConstructorParameters(bb) ) or - exists(DataFlowCallable c, EntryBasicBlock entry | - n.(InstanceParameterNode).isParameterOf(c, _) and - exists(ControlFlowNode succ | - succ = c.getAControlFlowNode() and - succ = entry.getFirstNode().getASuccessor() and + exists(Callable c, InstanceParameterNode p, Location l | + p = n and + c = p.getCallable(l) and + ( // In case `c` has multiple bodies, we want each body to gets its own implicit - // entry definition. In case `c` doesn't have multiple bodies, the line below - // is simply the same as `bb = entry`, because `entry.getFirstNode().getASuccessor()` - // will be in the entry block. - bb = succ.getBasicBlock() - | - i = -1 - numberOfPrimaryConstructorParameters(bb) + // entry definition. + exists(ControlFlowElement body | + body = c.getBody() and + bb.getANode().isBefore(body) and + NearestLocation::nearestLocation(body, l, _) + ) or - not exists(numberOfPrimaryConstructorParameters(bb)) and i = -1 + not c.hasBody() and + exists(EntryBasicBlock entry, ControlFlowNode succ | + succ = p.getEnclosingCallableImpl().getAControlFlowNode() and + succ = entry.getFirstNode().getASuccessor() and + bb = succ.getBasicBlock() + ) ) + | + i = -1 - numberOfPrimaryConstructorParameters(bb) + or + not exists(numberOfPrimaryConstructorParameters(bb)) and i = -1 ) } diff --git a/csharp/ql/lib/semmle/code/csharp/dataflow/internal/SsaImpl.qll b/csharp/ql/lib/semmle/code/csharp/dataflow/internal/SsaImpl.qll index 6e933c6a8e0c..b2c445985245 100644 --- a/csharp/ql/lib/semmle/code/csharp/dataflow/internal/SsaImpl.qll +++ b/csharp/ql/lib/semmle/code/csharp/dataflow/internal/SsaImpl.qll @@ -753,26 +753,25 @@ private module Cached { cached predicate implicitEntryDefinition(BasicBlock bb, Ssa::SourceVariable v) { - exists(EntryBasicBlock entry, Callable c | - c = entry.getEnclosingCallable() and - // In case `c` has multiple bodies, we want each body to get its own implicit - // entry definition. In case `c` doesn't have multiple bodies, the line below - // is simply the same as `bb = entry`, because `entry.getFirstNode().getASuccessor()` - // will be in the entry block. - bb = entry.getFirstNode().getASuccessor().getBasicBlock() and - c = v.getEnclosingCallable() - | - // Captured variable - exists(LocalScopeVariable lsv | - v = any(LocalScopeSourceVariable lv | lsv = lv.getAssignable()) - | - lsv.getCallable() != c + exists(Callable c | c = v.getEnclosingCallable() | + c = bb.(EntryBasicBlock).getEnclosingCallable() and + ( + // Captured variable + exists(LocalScopeVariable lsv | + v = any(LocalScopeSourceVariable lv | lsv = lv.getAssignable()) + | + lsv.getCallable() != c + ) + or + // Each tracked field and property has an implicit entry definition + v instanceof PlainFieldOrPropSourceVariable ) or - // Each tracked field and property has an implicit entry definition - v instanceof PlainFieldOrPropSourceVariable - or - v.getAssignable() instanceof Parameter + // In case `c` has multiple bodies, we want each body to get its own implicit + // entry definition, so we use the basic block containing the body instead of + // the entry block. + v.getAssignable() instanceof Parameter and + bb.getANode().isBefore(c.getBody()) ) } diff --git a/csharp/ql/lib/semmlecode.csharp.dbscheme b/csharp/ql/lib/semmlecode.csharp.dbscheme index ea7ad33252e5..3cabc77473cb 100644 --- a/csharp/ql/lib/semmlecode.csharp.dbscheme +++ b/csharp/ql/lib/semmlecode.csharp.dbscheme @@ -1363,7 +1363,7 @@ compiler_generated(unique int id: @element ref); /** CONTROL/DATA FLOW **/ -@control_flow_element = @stmt | @expr; +@control_flow_element = @stmt | @expr | @parameter; /* XML Files */ diff --git a/csharp/ql/test/library-tests/controlflow/graph/BasicBlock.expected b/csharp/ql/test/library-tests/controlflow/graph/BasicBlock.expected index e9a7cae7a564..50fb2c695313 100644 --- a/csharp/ql/test/library-tests/controlflow/graph/BasicBlock.expected +++ b/csharp/ql/test/library-tests/controlflow/graph/BasicBlock.expected @@ -1,73 +1,73 @@ | AccessorCalls.cs:1:7:1:19 | Entry | AccessorCalls.cs:1:7:1:19 | Exit | 11 | -| AccessorCalls.cs:5:23:5:25 | Entry | AccessorCalls.cs:5:23:5:25 | Exit | 4 | -| AccessorCalls.cs:5:33:5:35 | Entry | AccessorCalls.cs:5:33:5:35 | Exit | 4 | -| AccessorCalls.cs:7:32:7:34 | Entry | AccessorCalls.cs:7:32:7:34 | Exit | 4 | -| AccessorCalls.cs:7:40:7:45 | Entry | AccessorCalls.cs:7:40:7:45 | Exit | 4 | -| AccessorCalls.cs:10:10:10:11 | Entry | AccessorCalls.cs:10:10:10:11 | Exit | 66 | -| AccessorCalls.cs:19:10:19:11 | Entry | AccessorCalls.cs:19:10:19:11 | Exit | 90 | +| AccessorCalls.cs:5:23:5:25 | Entry | AccessorCalls.cs:5:23:5:25 | Exit | 5 | +| AccessorCalls.cs:5:33:5:35 | Entry | AccessorCalls.cs:5:33:5:35 | Exit | 6 | +| AccessorCalls.cs:7:32:7:34 | Entry | AccessorCalls.cs:7:32:7:34 | Exit | 5 | +| AccessorCalls.cs:7:40:7:45 | Entry | AccessorCalls.cs:7:40:7:45 | Exit | 5 | +| AccessorCalls.cs:10:10:10:11 | Entry | AccessorCalls.cs:10:10:10:11 | Exit | 67 | +| AccessorCalls.cs:19:10:19:11 | Entry | AccessorCalls.cs:19:10:19:11 | Exit | 91 | | AccessorCalls.cs:28:10:28:11 | Entry | AccessorCalls.cs:28:10:28:11 | Exit | 33 | | AccessorCalls.cs:35:10:35:11 | Entry | AccessorCalls.cs:35:10:35:11 | Exit | 42 | | AccessorCalls.cs:42:10:42:11 | Entry | AccessorCalls.cs:42:10:42:11 | Exit | 46 | | AccessorCalls.cs:49:10:49:11 | Entry | AccessorCalls.cs:49:10:49:11 | Exit | 64 | -| AccessorCalls.cs:56:10:56:11 | Entry | AccessorCalls.cs:56:10:56:11 | Exit | 50 | -| AccessorCalls.cs:61:10:61:11 | Entry | AccessorCalls.cs:61:10:61:11 | Exit | 68 | -| AccessorCalls.cs:66:10:66:11 | Entry | AccessorCalls.cs:66:10:66:11 | Exit | 104 | +| AccessorCalls.cs:56:10:56:11 | Entry | AccessorCalls.cs:56:10:56:11 | Exit | 51 | +| AccessorCalls.cs:61:10:61:11 | Entry | AccessorCalls.cs:61:10:61:11 | Exit | 69 | +| AccessorCalls.cs:66:10:66:11 | Entry | AccessorCalls.cs:66:10:66:11 | Exit | 107 | | ArrayCreation.cs:1:7:1:19 | Entry | ArrayCreation.cs:1:7:1:19 | Exit | 11 | | ArrayCreation.cs:3:11:3:12 | Entry | ArrayCreation.cs:3:11:3:12 | Exit | 7 | | ArrayCreation.cs:5:12:5:13 | Entry | ArrayCreation.cs:5:12:5:13 | Exit | 8 | | ArrayCreation.cs:7:11:7:12 | Entry | ArrayCreation.cs:7:11:7:12 | Exit | 12 | | ArrayCreation.cs:9:12:9:13 | Entry | ArrayCreation.cs:9:12:9:13 | Exit | 21 | | Assert.cs:5:7:5:17 | Entry | Assert.cs:5:7:5:17 | Exit | 11 | -| Assert.cs:7:10:7:11 | Entry | Assert.cs:9:20:9:20 | access to parameter b | 7 | +| Assert.cs:7:10:7:11 | Entry | Assert.cs:9:20:9:20 | access to parameter b | 8 | | Assert.cs:7:10:7:11 | Exceptional Exit | Assert.cs:7:10:7:11 | Exceptional Exit | 1 | | Assert.cs:7:10:7:11 | Exit | Assert.cs:7:10:7:11 | Exit | 1 | | Assert.cs:9:20:9:20 | After access to parameter b [false] | Assert.cs:9:31:9:32 | "" | 2 | | Assert.cs:9:20:9:20 | After access to parameter b [true] | Assert.cs:9:24:9:27 | null | 2 | | Assert.cs:9:20:9:32 | After ... ? ... : ... | Assert.cs:10:9:10:31 | call to method Assert | 12 | | Assert.cs:10:9:10:31 | After call to method Assert | Assert.cs:7:10:7:11 | Normal Exit | 13 | -| Assert.cs:14:10:14:11 | Entry | Assert.cs:16:20:16:20 | access to parameter b | 7 | +| Assert.cs:14:10:14:11 | Entry | Assert.cs:16:20:16:20 | access to parameter b | 8 | | Assert.cs:14:10:14:11 | Exceptional Exit | Assert.cs:14:10:14:11 | Exceptional Exit | 1 | | Assert.cs:14:10:14:11 | Exit | Assert.cs:14:10:14:11 | Exit | 1 | | Assert.cs:16:20:16:20 | After access to parameter b [false] | Assert.cs:16:31:16:32 | "" | 2 | | Assert.cs:16:20:16:20 | After access to parameter b [true] | Assert.cs:16:24:16:27 | null | 2 | | Assert.cs:16:20:16:32 | After ... ? ... : ... | Assert.cs:17:9:17:24 | call to method IsNull | 8 | | Assert.cs:17:9:17:24 | After call to method IsNull | Assert.cs:14:10:14:11 | Normal Exit | 13 | -| Assert.cs:21:10:21:11 | Entry | Assert.cs:23:20:23:20 | access to parameter b | 7 | +| Assert.cs:21:10:21:11 | Entry | Assert.cs:23:20:23:20 | access to parameter b | 8 | | Assert.cs:21:10:21:11 | Exceptional Exit | Assert.cs:21:10:21:11 | Exceptional Exit | 1 | | Assert.cs:21:10:21:11 | Exit | Assert.cs:21:10:21:11 | Exit | 1 | | Assert.cs:23:20:23:20 | After access to parameter b [false] | Assert.cs:23:31:23:32 | "" | 2 | | Assert.cs:23:20:23:20 | After access to parameter b [true] | Assert.cs:23:24:23:27 | null | 2 | | Assert.cs:23:20:23:32 | After ... ? ... : ... | Assert.cs:24:9:24:27 | call to method IsNotNull | 8 | | Assert.cs:24:9:24:27 | After call to method IsNotNull | Assert.cs:21:10:21:11 | Normal Exit | 13 | -| Assert.cs:28:10:28:11 | Entry | Assert.cs:30:20:30:20 | access to parameter b | 7 | +| Assert.cs:28:10:28:11 | Entry | Assert.cs:30:20:30:20 | access to parameter b | 8 | | Assert.cs:28:10:28:11 | Exceptional Exit | Assert.cs:28:10:28:11 | Exceptional Exit | 1 | | Assert.cs:28:10:28:11 | Exit | Assert.cs:28:10:28:11 | Exit | 1 | | Assert.cs:30:20:30:20 | After access to parameter b [false] | Assert.cs:30:31:30:32 | "" | 2 | | Assert.cs:30:20:30:20 | After access to parameter b [true] | Assert.cs:30:24:30:27 | null | 2 | | Assert.cs:30:20:30:32 | After ... ? ... : ... | Assert.cs:31:9:31:32 | call to method IsTrue | 12 | | Assert.cs:31:9:31:32 | After call to method IsTrue | Assert.cs:28:10:28:11 | Normal Exit | 13 | -| Assert.cs:35:10:35:11 | Entry | Assert.cs:37:20:37:20 | access to parameter b | 7 | +| Assert.cs:35:10:35:11 | Entry | Assert.cs:37:20:37:20 | access to parameter b | 8 | | Assert.cs:35:10:35:11 | Exceptional Exit | Assert.cs:35:10:35:11 | Exceptional Exit | 1 | | Assert.cs:35:10:35:11 | Exit | Assert.cs:35:10:35:11 | Exit | 1 | | Assert.cs:37:20:37:20 | After access to parameter b [false] | Assert.cs:37:31:37:32 | "" | 2 | | Assert.cs:37:20:37:20 | After access to parameter b [true] | Assert.cs:37:24:37:27 | null | 2 | | Assert.cs:37:20:37:32 | After ... ? ... : ... | Assert.cs:38:9:38:32 | call to method IsTrue | 12 | | Assert.cs:38:9:38:32 | After call to method IsTrue | Assert.cs:35:10:35:11 | Normal Exit | 13 | -| Assert.cs:42:10:42:11 | Entry | Assert.cs:44:20:44:20 | access to parameter b | 7 | +| Assert.cs:42:10:42:11 | Entry | Assert.cs:44:20:44:20 | access to parameter b | 8 | | Assert.cs:42:10:42:11 | Exceptional Exit | Assert.cs:42:10:42:11 | Exceptional Exit | 1 | | Assert.cs:42:10:42:11 | Exit | Assert.cs:42:10:42:11 | Exit | 1 | | Assert.cs:44:20:44:20 | After access to parameter b [false] | Assert.cs:44:31:44:32 | "" | 2 | | Assert.cs:44:20:44:20 | After access to parameter b [true] | Assert.cs:44:24:44:27 | null | 2 | | Assert.cs:44:20:44:32 | After ... ? ... : ... | Assert.cs:45:9:45:33 | call to method IsFalse | 12 | | Assert.cs:45:9:45:33 | After call to method IsFalse | Assert.cs:42:10:42:11 | Normal Exit | 13 | -| Assert.cs:49:10:49:11 | Entry | Assert.cs:51:20:51:20 | access to parameter b | 7 | +| Assert.cs:49:10:49:11 | Entry | Assert.cs:51:20:51:20 | access to parameter b | 8 | | Assert.cs:49:10:49:11 | Exceptional Exit | Assert.cs:49:10:49:11 | Exceptional Exit | 1 | | Assert.cs:49:10:49:11 | Exit | Assert.cs:49:10:49:11 | Exit | 1 | | Assert.cs:51:20:51:20 | After access to parameter b [false] | Assert.cs:51:31:51:32 | "" | 2 | | Assert.cs:51:20:51:20 | After access to parameter b [true] | Assert.cs:51:24:51:27 | null | 2 | | Assert.cs:51:20:51:32 | After ... ? ... : ... | Assert.cs:52:9:52:33 | call to method IsFalse | 12 | | Assert.cs:52:9:52:33 | After call to method IsFalse | Assert.cs:49:10:49:11 | Normal Exit | 13 | -| Assert.cs:56:10:56:11 | Entry | Assert.cs:58:20:58:20 | access to parameter b | 7 | +| Assert.cs:56:10:56:11 | Entry | Assert.cs:58:20:58:20 | access to parameter b | 8 | | Assert.cs:56:10:56:11 | Exceptional Exit | Assert.cs:56:10:56:11 | Exceptional Exit | 1 | | Assert.cs:56:10:56:11 | Exit | Assert.cs:56:10:56:11 | Exit | 1 | | Assert.cs:58:20:58:20 | After access to parameter b [false] | Assert.cs:58:31:58:32 | "" | 2 | @@ -77,7 +77,7 @@ | Assert.cs:59:23:59:31 | After ... != ... [false] | Assert.cs:59:23:59:31 | After ... != ... [false] | 1 | | Assert.cs:59:23:59:31 | After ... != ... [true] | Assert.cs:59:36:59:36 | access to parameter b | 2 | | Assert.cs:59:23:59:36 | After ... && ... | Assert.cs:59:9:59:37 | call to method IsTrue | 2 | -| Assert.cs:63:10:63:11 | Entry | Assert.cs:65:20:65:20 | access to parameter b | 7 | +| Assert.cs:63:10:63:11 | Entry | Assert.cs:65:20:65:20 | access to parameter b | 8 | | Assert.cs:63:10:63:11 | Exceptional Exit | Assert.cs:63:10:63:11 | Exceptional Exit | 1 | | Assert.cs:63:10:63:11 | Exit | Assert.cs:63:10:63:11 | Exit | 1 | | Assert.cs:65:20:65:20 | After access to parameter b [false] | Assert.cs:65:31:65:32 | "" | 2 | @@ -87,7 +87,7 @@ | Assert.cs:66:24:66:32 | After ... == ... [false] | Assert.cs:66:37:66:37 | access to parameter b | 2 | | Assert.cs:66:24:66:32 | After ... == ... [true] | Assert.cs:66:24:66:32 | After ... == ... [true] | 1 | | Assert.cs:66:24:66:37 | After ... \|\| ... | Assert.cs:66:9:66:38 | call to method IsFalse | 2 | -| Assert.cs:70:10:70:12 | Entry | Assert.cs:72:20:72:20 | access to parameter b | 7 | +| Assert.cs:70:10:70:12 | Entry | Assert.cs:72:20:72:20 | access to parameter b | 8 | | Assert.cs:70:10:70:12 | Exceptional Exit | Assert.cs:70:10:70:12 | Exceptional Exit | 1 | | Assert.cs:70:10:70:12 | Exit | Assert.cs:70:10:70:12 | Exit | 1 | | Assert.cs:72:20:72:20 | After access to parameter b [false] | Assert.cs:72:31:72:32 | "" | 2 | @@ -97,7 +97,7 @@ | Assert.cs:73:23:73:31 | After ... == ... [false] | Assert.cs:73:23:73:31 | After ... == ... [false] | 1 | | Assert.cs:73:23:73:31 | After ... == ... [true] | Assert.cs:73:36:73:36 | access to parameter b | 2 | | Assert.cs:73:23:73:36 | After ... && ... | Assert.cs:73:9:73:37 | call to method IsTrue | 2 | -| Assert.cs:77:10:77:12 | Entry | Assert.cs:79:20:79:20 | access to parameter b | 7 | +| Assert.cs:77:10:77:12 | Entry | Assert.cs:79:20:79:20 | access to parameter b | 8 | | Assert.cs:77:10:77:12 | Exceptional Exit | Assert.cs:77:10:77:12 | Exceptional Exit | 1 | | Assert.cs:77:10:77:12 | Exit | Assert.cs:77:10:77:12 | Exit | 1 | | Assert.cs:79:20:79:20 | After access to parameter b [false] | Assert.cs:79:31:79:32 | "" | 2 | @@ -107,7 +107,7 @@ | Assert.cs:80:24:80:32 | After ... != ... [false] | Assert.cs:80:37:80:37 | access to parameter b | 2 | | Assert.cs:80:24:80:32 | After ... != ... [true] | Assert.cs:80:24:80:32 | After ... != ... [true] | 1 | | Assert.cs:80:24:80:37 | After ... \|\| ... | Assert.cs:80:9:80:38 | call to method IsFalse | 2 | -| Assert.cs:84:10:84:12 | Entry | Assert.cs:86:20:86:20 | access to parameter b | 7 | +| Assert.cs:84:10:84:12 | Entry | Assert.cs:86:20:86:20 | access to parameter b | 8 | | Assert.cs:84:10:84:12 | Exceptional Exit | Assert.cs:84:10:84:12 | Exceptional Exit | 1 | | Assert.cs:84:10:84:12 | Exit | Assert.cs:84:10:84:12 | Exit | 1 | | Assert.cs:86:20:86:20 | After access to parameter b [false] | Assert.cs:86:31:86:32 | "" | 2 | @@ -166,20 +166,20 @@ | Assert.cs:127:24:127:32 | After ... != ... [false] | Assert.cs:127:37:127:38 | After !... | 4 | | Assert.cs:127:24:127:32 | After ... != ... [true] | Assert.cs:127:24:127:32 | After ... != ... [true] | 1 | | Assert.cs:127:24:127:38 | After ... \|\| ... | Assert.cs:127:9:127:39 | call to method IsFalse | 2 | -| Assert.cs:131:18:131:32 | Entry | Assert.cs:131:18:131:32 | Exit | 4 | -| Assert.cs:138:10:138:12 | Entry | Assert.cs:140:9:140:35 | call to method AssertTrueFalse | 9 | +| Assert.cs:131:18:131:32 | Entry | Assert.cs:131:18:131:32 | Exit | 7 | +| Assert.cs:138:10:138:12 | Entry | Assert.cs:140:9:140:35 | call to method AssertTrueFalse | 12 | | Assert.cs:138:10:138:12 | Exceptional Exit | Assert.cs:138:10:138:12 | Exceptional Exit | 1 | | Assert.cs:138:10:138:12 | Exit | Assert.cs:138:10:138:12 | Exit | 1 | | Assert.cs:140:9:140:35 | After call to method AssertTrueFalse | Assert.cs:138:10:138:12 | Normal Exit | 5 | | Assignments.cs:1:7:1:17 | Entry | Assignments.cs:1:7:1:17 | Exit | 11 | | Assignments.cs:3:10:3:10 | Entry | Assignments.cs:3:10:3:10 | Exit | 62 | -| Assignments.cs:14:18:14:35 | Entry | Assignments.cs:14:18:14:35 | Exit | 4 | -| Assignments.cs:17:40:17:40 | Entry | Assignments.cs:17:40:17:40 | Exit | 7 | -| Assignments.cs:27:10:27:23 | Entry | Assignments.cs:27:10:27:23 | Exit | 12 | -| Assignments.cs:32:10:32:22 | Entry | Assignments.cs:32:10:32:22 | Exit | 19 | +| Assignments.cs:14:18:14:35 | Entry | Assignments.cs:14:18:14:35 | Exit | 6 | +| Assignments.cs:17:40:17:40 | Entry | Assignments.cs:17:40:17:40 | Exit | 9 | +| Assignments.cs:27:10:27:23 | Entry | Assignments.cs:27:10:27:23 | Exit | 13 | +| Assignments.cs:32:10:32:22 | Entry | Assignments.cs:32:10:32:22 | Exit | 22 | | Assignments.cs:38:10:38:11 | Entry | Assignments.cs:38:10:38:11 | Exit | 52 | | BreakInTry.cs:1:7:1:16 | Entry | BreakInTry.cs:1:7:1:16 | Exit | 11 | -| BreakInTry.cs:3:10:3:11 | Entry | BreakInTry.cs:7:33:7:36 | access to parameter args | 6 | +| BreakInTry.cs:3:10:3:11 | Entry | BreakInTry.cs:7:33:7:36 | access to parameter args | 7 | | BreakInTry.cs:7:13:11:13 | After foreach (... ... in ...) ... | BreakInTry.cs:15:17:15:28 | ... == ... | 8 | | BreakInTry.cs:7:26:7:28 | String arg | BreakInTry.cs:9:21:9:31 | ... == ... | 7 | | BreakInTry.cs:7:33:7:36 | After access to parameter args [empty] | BreakInTry.cs:7:33:7:36 | After access to parameter args [empty] | 1 | @@ -189,7 +189,7 @@ | BreakInTry.cs:15:13:16:17 | After if (...) ... | BreakInTry.cs:3:10:3:11 | Exit | 6 | | BreakInTry.cs:15:17:15:28 | After ... == ... [false] | BreakInTry.cs:15:17:15:28 | After ... == ... [false] | 1 | | BreakInTry.cs:15:17:15:28 | After ... == ... [true] | BreakInTry.cs:16:17:16:17 | ; | 2 | -| BreakInTry.cs:20:10:20:11 | Entry | BreakInTry.cs:22:29:22:32 | access to parameter args | 4 | +| BreakInTry.cs:20:10:20:11 | Entry | BreakInTry.cs:22:29:22:32 | access to parameter args | 5 | | BreakInTry.cs:22:9:34:9 | After foreach (... ... in ...) ... | BreakInTry.cs:20:10:20:11 | Exit | 5 | | BreakInTry.cs:22:22:22:24 | String arg | BreakInTry.cs:26:21:26:31 | ... == ... | 9 | | BreakInTry.cs:22:29:22:32 | After access to parameter args [empty] | BreakInTry.cs:22:29:22:32 | After access to parameter args [empty] | 1 | @@ -201,7 +201,7 @@ | BreakInTry.cs:31:17:32:21 | After if (...) ... | BreakInTry.cs:30:13:33:13 | After {...} | 2 | | BreakInTry.cs:31:21:31:32 | After ... == ... [false] | BreakInTry.cs:31:21:31:32 | After ... == ... [false] | 1 | | BreakInTry.cs:31:21:31:32 | After ... == ... [true] | BreakInTry.cs:32:21:32:21 | ; | 2 | -| BreakInTry.cs:38:10:38:11 | Entry | BreakInTry.cs:42:17:42:28 | ... == ... | 9 | +| BreakInTry.cs:38:10:38:11 | Entry | BreakInTry.cs:42:17:42:28 | ... == ... | 10 | | BreakInTry.cs:38:10:38:11 | Normal Exit | BreakInTry.cs:38:10:38:11 | Exit | 2 | | BreakInTry.cs:40:9:52:9 | After try {...} ... | BreakInTry.cs:39:5:54:5 | After {...} | 3 | | BreakInTry.cs:42:17:42:28 | After ... == ... [false] | BreakInTry.cs:41:9:44:9 | After {...} | 3 | @@ -213,7 +213,7 @@ | BreakInTry.cs:47:33:47:36 | After access to parameter args [non-empty] | BreakInTry.cs:47:33:47:36 | After access to parameter args [non-empty] | 1 | | BreakInTry.cs:49:21:49:31 | After ... == ... [false] | BreakInTry.cs:47:13:51:13 | [LoopHeader] foreach (... ... in ...) ... | 4 | | BreakInTry.cs:49:21:49:31 | After ... == ... [true] | BreakInTry.cs:50:21:50:26 | break; | 3 | -| BreakInTry.cs:56:10:56:11 | Entry | BreakInTry.cs:60:17:60:28 | ... == ... | 9 | +| BreakInTry.cs:56:10:56:11 | Entry | BreakInTry.cs:60:17:60:28 | ... == ... | 10 | | BreakInTry.cs:56:10:56:11 | Normal Exit | BreakInTry.cs:56:10:56:11 | Exit | 2 | | BreakInTry.cs:58:9:70:9 | After try {...} ... | BreakInTry.cs:57:5:71:5 | After {...} | 2 | | BreakInTry.cs:60:17:60:28 | After ... == ... [false] | BreakInTry.cs:59:9:62:9 | After {...} | 3 | @@ -229,7 +229,7 @@ | CompileTimeOperators.cs:5:9:5:15 | Entry | CompileTimeOperators.cs:5:9:5:15 | Exit | 7 | | CompileTimeOperators.cs:10:9:10:14 | Entry | CompileTimeOperators.cs:10:9:10:14 | Exit | 7 | | CompileTimeOperators.cs:15:10:15:15 | Entry | CompileTimeOperators.cs:15:10:15:15 | Exit | 7 | -| CompileTimeOperators.cs:20:12:20:17 | Entry | CompileTimeOperators.cs:20:12:20:17 | Exit | 7 | +| CompileTimeOperators.cs:20:12:20:17 | Entry | CompileTimeOperators.cs:20:12:20:17 | Exit | 8 | | CompileTimeOperators.cs:26:7:26:22 | Entry | CompileTimeOperators.cs:26:7:26:22 | Exit | 11 | | CompileTimeOperators.cs:28:10:28:10 | Entry | CompileTimeOperators.cs:36:9:38:9 | After {...} | 14 | | CompileTimeOperators.cs:28:10:28:10 | Exceptional Exit | CompileTimeOperators.cs:28:10:28:10 | Exceptional Exit | 1 | @@ -237,41 +237,41 @@ | CompileTimeOperators.cs:30:9:38:9 | After try {...} ... | CompileTimeOperators.cs:39:9:39:34 | After ...; | 7 | | CompileTimeOperators.cs:40:9:40:11 | End: | CompileTimeOperators.cs:28:10:28:10 | Normal Exit | 9 | | ConditionalAccess.cs:1:7:1:23 | Entry | ConditionalAccess.cs:1:7:1:23 | Exit | 11 | -| ConditionalAccess.cs:3:12:3:13 | Entry | ConditionalAccess.cs:3:26:3:26 | access to parameter i | 4 | +| ConditionalAccess.cs:3:12:3:13 | Entry | ConditionalAccess.cs:3:26:3:26 | access to parameter i | 5 | | ConditionalAccess.cs:3:26:3:26 | After access to parameter i [non-null] | ConditionalAccess.cs:3:26:3:38 | call to method ToString | 2 | | ConditionalAccess.cs:3:26:3:26 | After access to parameter i [null] | ConditionalAccess.cs:3:26:3:26 | After access to parameter i [null] | 1 | | ConditionalAccess.cs:3:26:3:38 | After call to method ToString [non-null] | ConditionalAccess.cs:3:26:3:49 | call to method ToLower | 2 | | ConditionalAccess.cs:3:26:3:38 | After call to method ToString [null] | ConditionalAccess.cs:3:26:3:38 | After call to method ToString [null] | 1 | | ConditionalAccess.cs:3:26:3:49 | After call to method ToLower | ConditionalAccess.cs:3:12:3:13 | Exit | 3 | -| ConditionalAccess.cs:5:10:5:11 | Entry | ConditionalAccess.cs:5:26:5:26 | access to parameter s | 3 | +| ConditionalAccess.cs:5:10:5:11 | Entry | ConditionalAccess.cs:5:26:5:26 | access to parameter s | 4 | | ConditionalAccess.cs:5:26:5:26 | After access to parameter s [non-null] | ConditionalAccess.cs:5:26:5:34 | access to property Length | 2 | | ConditionalAccess.cs:5:26:5:26 | After access to parameter s [null] | ConditionalAccess.cs:5:26:5:26 | After access to parameter s [null] | 1 | | ConditionalAccess.cs:5:26:5:34 | After access to property Length | ConditionalAccess.cs:5:10:5:11 | Exit | 3 | -| ConditionalAccess.cs:7:10:7:11 | Entry | ConditionalAccess.cs:7:39:7:40 | access to parameter s1 | 4 | +| ConditionalAccess.cs:7:10:7:11 | Entry | ConditionalAccess.cs:7:39:7:40 | access to parameter s1 | 6 | | ConditionalAccess.cs:7:38:7:55 | After access to property Length | ConditionalAccess.cs:7:10:7:11 | Exit | 3 | | ConditionalAccess.cs:7:39:7:40 | After access to parameter s1 [non-null] | ConditionalAccess.cs:7:39:7:40 | After access to parameter s1 [non-null] | 1 | | ConditionalAccess.cs:7:39:7:40 | After access to parameter s1 [null] | ConditionalAccess.cs:7:45:7:46 | access to parameter s2 | 2 | | ConditionalAccess.cs:7:39:7:46 | After ... ?? ... [non-null] | ConditionalAccess.cs:7:38:7:55 | access to property Length | 2 | | ConditionalAccess.cs:7:45:7:46 | After access to parameter s2 [non-null] | ConditionalAccess.cs:7:45:7:46 | After access to parameter s2 [non-null] | 1 | | ConditionalAccess.cs:7:45:7:46 | After access to parameter s2 [null] | ConditionalAccess.cs:7:39:7:46 | After ... ?? ... [null] | 2 | -| ConditionalAccess.cs:9:9:9:10 | Entry | ConditionalAccess.cs:9:25:9:25 | access to parameter s | 4 | +| ConditionalAccess.cs:9:9:9:10 | Entry | ConditionalAccess.cs:9:25:9:25 | access to parameter s | 5 | | ConditionalAccess.cs:9:25:9:25 | After access to parameter s [non-null] | ConditionalAccess.cs:9:25:9:33 | access to property Length | 2 | | ConditionalAccess.cs:9:25:9:25 | After access to parameter s [null] | ConditionalAccess.cs:9:25:9:25 | After access to parameter s [null] | 1 | | ConditionalAccess.cs:9:25:9:33 | After access to property Length [non-null] | ConditionalAccess.cs:9:25:9:33 | After access to property Length [non-null] | 1 | | ConditionalAccess.cs:9:25:9:33 | After access to property Length [null] | ConditionalAccess.cs:9:38:9:38 | 0 | 2 | | ConditionalAccess.cs:9:25:9:38 | After ... ?? ... | ConditionalAccess.cs:9:9:9:10 | Exit | 3 | -| ConditionalAccess.cs:11:9:11:10 | Entry | ConditionalAccess.cs:13:13:13:13 | access to parameter s | 6 | +| ConditionalAccess.cs:11:9:11:10 | Entry | ConditionalAccess.cs:13:13:13:13 | access to parameter s | 7 | | ConditionalAccess.cs:11:9:11:10 | Normal Exit | ConditionalAccess.cs:11:9:11:10 | Exit | 2 | | ConditionalAccess.cs:13:13:13:13 | After access to parameter s [non-null] | ConditionalAccess.cs:13:13:13:21 | access to property Length | 2 | | ConditionalAccess.cs:13:13:13:13 | After access to parameter s [null] | ConditionalAccess.cs:13:13:13:13 | After access to parameter s [null] | 1 | | ConditionalAccess.cs:13:13:13:21 | After access to property Length | ConditionalAccess.cs:13:13:13:25 | ... > ... | 6 | | ConditionalAccess.cs:13:13:13:25 | After ... > ... [false] | ConditionalAccess.cs:16:13:16:21 | return ...; | 4 | | ConditionalAccess.cs:13:13:13:25 | After ... > ... [true] | ConditionalAccess.cs:14:13:14:21 | return ...; | 4 | -| ConditionalAccess.cs:19:12:19:13 | Entry | ConditionalAccess.cs:19:40:19:41 | access to parameter s1 | 3 | +| ConditionalAccess.cs:19:12:19:13 | Entry | ConditionalAccess.cs:19:40:19:41 | access to parameter s1 | 5 | | ConditionalAccess.cs:19:40:19:41 | After access to parameter s1 [non-null] | ConditionalAccess.cs:19:40:19:60 | call to method CommaJoinWith | 3 | | ConditionalAccess.cs:19:40:19:41 | After access to parameter s1 [null] | ConditionalAccess.cs:19:40:19:41 | After access to parameter s1 [null] | 1 | | ConditionalAccess.cs:19:40:19:60 | After call to method CommaJoinWith | ConditionalAccess.cs:19:12:19:13 | Exit | 3 | -| ConditionalAccess.cs:21:10:21:11 | Entry | ConditionalAccess.cs:23:18:23:29 | (...) ... | 9 | +| ConditionalAccess.cs:21:10:21:11 | Entry | ConditionalAccess.cs:23:18:23:29 | (...) ... | 10 | | ConditionalAccess.cs:23:17:23:38 | After access to property Length | ConditionalAccess.cs:24:18:24:24 | (...) ... | 11 | | ConditionalAccess.cs:23:18:23:29 | After (...) ... [non-null] | ConditionalAccess.cs:23:17:23:38 | access to property Length | 2 | | ConditionalAccess.cs:23:18:23:29 | After (...) ... [null] | ConditionalAccess.cs:23:18:23:29 | After (...) ... [null] | 1 | @@ -281,14 +281,14 @@ | ConditionalAccess.cs:25:13:25:14 | After "" [non-null] | ConditionalAccess.cs:25:13:25:32 | call to method CommaJoinWith | 3 | | ConditionalAccess.cs:25:13:25:14 | After "" [null] | ConditionalAccess.cs:25:13:25:14 | After "" [null] | 1 | | ConditionalAccess.cs:25:13:25:32 | After call to method CommaJoinWith | ConditionalAccess.cs:21:10:21:11 | Exit | 7 | -| ConditionalAccess.cs:30:10:30:12 | Entry | ConditionalAccess.cs:30:10:30:12 | Exit | 8 | -| ConditionalAccess.cs:32:10:32:11 | Entry | ConditionalAccess.cs:35:9:35:12 | access to property Prop | 14 | +| ConditionalAccess.cs:30:10:30:12 | Entry | ConditionalAccess.cs:30:10:30:12 | Exit | 9 | +| ConditionalAccess.cs:32:10:32:11 | Entry | ConditionalAccess.cs:35:9:35:12 | access to property Prop | 16 | | ConditionalAccess.cs:35:9:35:12 | After access to property Prop [non-null] | ConditionalAccess.cs:35:9:35:24 | call to method Out | 3 | | ConditionalAccess.cs:35:9:35:12 | After access to property Prop [null] | ConditionalAccess.cs:35:9:35:12 | After access to property Prop [null] | 1 | | ConditionalAccess.cs:35:9:35:24 | After call to method Out | ConditionalAccess.cs:32:10:32:11 | Exit | 5 | -| ConditionalAccess.cs:42:9:42:11 | Entry | ConditionalAccess.cs:42:9:42:11 | Exit | 7 | -| ConditionalAccess.cs:43:9:43:11 | Entry | ConditionalAccess.cs:43:9:43:11 | Exit | 4 | -| ConditionalAccess.cs:46:10:46:11 | Entry | ConditionalAccess.cs:48:9:48:10 | access to parameter ca | 6 | +| ConditionalAccess.cs:42:9:42:11 | Entry | ConditionalAccess.cs:42:9:42:11 | Exit | 8 | +| ConditionalAccess.cs:43:9:43:11 | Entry | ConditionalAccess.cs:43:9:43:11 | Exit | 6 | +| ConditionalAccess.cs:46:10:46:11 | Entry | ConditionalAccess.cs:48:9:48:10 | access to parameter ca | 7 | | ConditionalAccess.cs:48:9:48:10 | After access to parameter ca [non-null] | ConditionalAccess.cs:48:12:48:25 | ... = ... | 5 | | ConditionalAccess.cs:48:9:48:10 | After access to parameter ca [null] | ConditionalAccess.cs:48:9:48:10 | After access to parameter ca [null] | 1 | | ConditionalAccess.cs:48:12:48:25 | After ... = ... | ConditionalAccess.cs:49:9:49:10 | access to parameter ca | 6 | @@ -314,16 +314,16 @@ | ConditionalAccess.cs:54:9:54:10 | After access to parameter ca [non-null] | ConditionalAccess.cs:54:12:54:29 | ... += ... | 5 | | ConditionalAccess.cs:54:9:54:10 | After access to parameter ca [null] | ConditionalAccess.cs:54:9:54:10 | After access to parameter ca [null] | 1 | | ConditionalAccess.cs:54:12:54:29 | After ... += ... | ConditionalAccess.cs:46:10:46:11 | Exit | 5 | -| ConditionalAccess.cs:60:26:60:38 | Entry | ConditionalAccess.cs:60:26:60:38 | Exit | 12 | +| ConditionalAccess.cs:60:26:60:38 | Entry | ConditionalAccess.cs:60:26:60:38 | Exit | 14 | | Conditions.cs:1:7:1:16 | Entry | Conditions.cs:1:7:1:16 | Exit | 11 | -| Conditions.cs:3:10:3:19 | Entry | Conditions.cs:5:13:5:15 | access to parameter inc | 4 | +| Conditions.cs:3:10:3:19 | Entry | Conditions.cs:5:13:5:15 | access to parameter inc | 6 | | Conditions.cs:5:9:6:16 | After if (...) ... | Conditions.cs:7:14:7:16 | access to parameter inc | 4 | | Conditions.cs:5:13:5:15 | After access to parameter inc [false] | Conditions.cs:5:13:5:15 | After access to parameter inc [false] | 1 | | Conditions.cs:5:13:5:15 | After access to parameter inc [true] | Conditions.cs:6:13:6:16 | After ...; | 7 | | Conditions.cs:7:9:8:16 | After if (...) ... | Conditions.cs:3:10:3:19 | Exit | 4 | | Conditions.cs:7:14:7:16 | After access to parameter inc [false] | Conditions.cs:8:13:8:16 | After ...; | 8 | | Conditions.cs:7:14:7:16 | After access to parameter inc [true] | Conditions.cs:7:13:7:16 | After !... [false] | 2 | -| Conditions.cs:11:9:11:10 | Entry | Conditions.cs:14:13:14:13 | access to parameter b | 11 | +| Conditions.cs:11:9:11:10 | Entry | Conditions.cs:14:13:14:13 | access to parameter b | 12 | | Conditions.cs:14:9:15:16 | After if (...) ... | Conditions.cs:16:13:16:17 | ... > ... | 6 | | Conditions.cs:14:13:14:13 | After access to parameter b [false] | Conditions.cs:14:13:14:13 | After access to parameter b [false] | 1 | | Conditions.cs:14:13:14:13 | After access to parameter b [true] | Conditions.cs:15:13:15:16 | After ...; | 7 | @@ -333,7 +333,7 @@ | Conditions.cs:17:13:18:20 | After if (...) ... | Conditions.cs:17:13:18:20 | After if (...) ... | 1 | | Conditions.cs:17:18:17:18 | After access to parameter b [false] | Conditions.cs:18:17:18:20 | After ...; | 8 | | Conditions.cs:17:18:17:18 | After access to parameter b [true] | Conditions.cs:17:17:17:18 | After !... [false] | 2 | -| Conditions.cs:22:9:22:10 | Entry | Conditions.cs:25:13:25:14 | access to parameter b1 | 11 | +| Conditions.cs:22:9:22:10 | Entry | Conditions.cs:25:13:25:14 | access to parameter b1 | 13 | | Conditions.cs:25:9:27:20 | After if (...) ... | Conditions.cs:28:13:28:14 | access to parameter b2 | 3 | | Conditions.cs:25:13:25:14 | After access to parameter b1 [false] | Conditions.cs:25:13:25:14 | After access to parameter b1 [false] | 1 | | Conditions.cs:25:13:25:14 | After access to parameter b1 [true] | Conditions.cs:26:17:26:18 | access to parameter b2 | 3 | @@ -343,7 +343,7 @@ | Conditions.cs:28:9:29:16 | After if (...) ... | Conditions.cs:22:9:22:10 | Exit | 6 | | Conditions.cs:28:13:28:14 | After access to parameter b2 [false] | Conditions.cs:28:13:28:14 | After access to parameter b2 [false] | 1 | | Conditions.cs:28:13:28:14 | After access to parameter b2 [true] | Conditions.cs:29:13:29:16 | After ...; | 7 | -| Conditions.cs:33:9:33:10 | Entry | Conditions.cs:37:13:37:14 | access to parameter b1 | 18 | +| Conditions.cs:33:9:33:10 | Entry | Conditions.cs:37:13:37:14 | access to parameter b1 | 19 | | Conditions.cs:37:9:38:20 | After if (...) ... | Conditions.cs:39:13:39:14 | access to local variable b2 | 3 | | Conditions.cs:37:13:37:14 | After access to parameter b1 [false] | Conditions.cs:37:13:37:14 | After access to parameter b1 [false] | 1 | | Conditions.cs:37:13:37:14 | After access to parameter b1 [true] | Conditions.cs:38:13:38:20 | After ...; | 8 | @@ -353,14 +353,14 @@ | Conditions.cs:41:9:42:16 | After if (...) ... | Conditions.cs:33:9:33:10 | Exit | 6 | | Conditions.cs:41:13:41:14 | After access to local variable b2 [false] | Conditions.cs:41:13:41:14 | After access to local variable b2 [false] | 1 | | Conditions.cs:41:13:41:14 | After access to local variable b2 [true] | Conditions.cs:42:13:42:16 | After ...; | 7 | -| Conditions.cs:46:9:46:10 | Entry | Conditions.cs:49:9:53:9 | while (...) ... | 10 | +| Conditions.cs:46:9:46:10 | Entry | Conditions.cs:49:9:53:9 | while (...) ... | 12 | | Conditions.cs:49:9:53:9 | [LoopHeader] while (...) ... | Conditions.cs:49:16:49:22 | ... > ... | 8 | | Conditions.cs:49:16:49:22 | After ... > ... [false] | Conditions.cs:46:9:46:10 | Exit | 7 | | Conditions.cs:49:16:49:22 | After ... > ... [true] | Conditions.cs:51:17:51:17 | access to parameter b | 4 | | Conditions.cs:51:13:52:20 | After if (...) ... | Conditions.cs:50:9:53:9 | After {...} | 2 | | Conditions.cs:51:17:51:17 | After access to parameter b [false] | Conditions.cs:51:17:51:17 | After access to parameter b [false] | 1 | | Conditions.cs:51:17:51:17 | After access to parameter b [true] | Conditions.cs:52:17:52:20 | After ...; | 7 | -| Conditions.cs:57:9:57:10 | Entry | Conditions.cs:60:9:64:9 | while (...) ... | 10 | +| Conditions.cs:57:9:57:10 | Entry | Conditions.cs:60:9:64:9 | while (...) ... | 12 | | Conditions.cs:60:9:64:9 | [LoopHeader] while (...) ... | Conditions.cs:60:16:60:22 | ... > ... | 8 | | Conditions.cs:60:16:60:22 | After ... > ... [false] | Conditions.cs:65:13:65:13 | access to parameter b | 4 | | Conditions.cs:60:16:60:22 | After ... > ... [true] | Conditions.cs:62:17:62:17 | access to parameter b | 4 | @@ -370,7 +370,7 @@ | Conditions.cs:65:9:66:16 | After if (...) ... | Conditions.cs:57:9:57:10 | Exit | 6 | | Conditions.cs:65:13:65:13 | After access to parameter b [false] | Conditions.cs:65:13:65:13 | After access to parameter b [false] | 1 | | Conditions.cs:65:13:65:13 | After access to parameter b [true] | Conditions.cs:66:13:66:16 | After ...; | 7 | -| Conditions.cs:70:9:70:10 | Entry | Conditions.cs:74:27:74:28 | access to parameter ss | 25 | +| Conditions.cs:70:9:70:10 | Entry | Conditions.cs:74:27:74:28 | access to parameter ss | 26 | | Conditions.cs:74:9:80:9 | After foreach (... ... in ...) ... | Conditions.cs:81:13:81:13 | access to local variable b | 3 | | Conditions.cs:74:22:74:22 | String _ | Conditions.cs:76:17:76:17 | access to local variable b | 4 | | Conditions.cs:74:27:74:28 | After access to parameter ss [empty] | Conditions.cs:74:27:74:28 | After access to parameter ss [empty] | 1 | @@ -384,7 +384,7 @@ | Conditions.cs:81:9:82:16 | After if (...) ... | Conditions.cs:70:9:70:10 | Exit | 6 | | Conditions.cs:81:13:81:13 | After access to local variable b [false] | Conditions.cs:81:13:81:13 | After access to local variable b [false] | 1 | | Conditions.cs:81:13:81:13 | After access to local variable b [true] | Conditions.cs:82:13:82:16 | After ...; | 7 | -| Conditions.cs:86:9:86:10 | Entry | Conditions.cs:90:27:90:28 | access to parameter ss | 25 | +| Conditions.cs:86:9:86:10 | Entry | Conditions.cs:90:27:90:28 | access to parameter ss | 26 | | Conditions.cs:90:9:98:9 | After foreach (... ... in ...) ... | Conditions.cs:86:9:86:10 | Exit | 6 | | Conditions.cs:90:22:90:22 | String _ | Conditions.cs:92:17:92:17 | access to local variable b | 4 | | Conditions.cs:90:27:90:28 | After access to parameter ss [empty] | Conditions.cs:90:27:90:28 | After access to parameter ss [empty] | 1 | @@ -398,7 +398,7 @@ | Conditions.cs:96:13:97:20 | After if (...) ... | Conditions.cs:90:9:98:9 | [LoopHeader] foreach (... ... in ...) ... | 3 | | Conditions.cs:96:17:96:17 | After access to local variable b [false] | Conditions.cs:96:17:96:17 | After access to local variable b [false] | 1 | | Conditions.cs:96:17:96:17 | After access to local variable b [true] | Conditions.cs:97:17:97:20 | After ...; | 7 | -| Conditions.cs:102:12:102:13 | Entry | Conditions.cs:105:13:105:13 | access to parameter b | 14 | +| Conditions.cs:102:12:102:13 | Entry | Conditions.cs:105:13:105:13 | access to parameter b | 15 | | Conditions.cs:105:9:106:20 | After if (...) ... | Conditions.cs:107:13:107:24 | ... > ... | 9 | | Conditions.cs:105:13:105:13 | After access to parameter b [false] | Conditions.cs:105:13:105:13 | After access to parameter b [false] | 1 | | Conditions.cs:105:13:105:13 | After access to parameter b [true] | Conditions.cs:106:13:106:20 | After ...; | 8 | @@ -408,7 +408,7 @@ | Conditions.cs:108:13:109:24 | After if (...) ... | Conditions.cs:108:13:109:24 | After if (...) ... | 1 | | Conditions.cs:108:18:108:18 | After access to parameter b [false] | Conditions.cs:109:17:109:24 | After ...; | 9 | | Conditions.cs:108:18:108:18 | After access to parameter b [true] | Conditions.cs:108:17:108:18 | After !... [false] | 2 | -| Conditions.cs:113:10:113:11 | Entry | Conditions.cs:116:18:116:22 | After Int32 i = ... | 15 | +| Conditions.cs:113:10:113:11 | Entry | Conditions.cs:116:18:116:22 | After Int32 i = ... | 16 | | Conditions.cs:116:25:116:39 | After ... < ... [false] | Conditions.cs:113:10:113:11 | Exit | 5 | | Conditions.cs:116:25:116:39 | After ... < ... [true] | Conditions.cs:119:18:119:21 | access to local variable last | 23 | | Conditions.cs:116:25:116:39 | Before ... < ... | Conditions.cs:116:25:116:39 | ... < ... | 7 | @@ -426,7 +426,7 @@ | Conditions.cs:135:17:138:17 | After if (...) ... | Conditions.cs:134:13:139:13 | After {...} | 2 | | Conditions.cs:135:21:135:26 | After access to field Field2 [false] | Conditions.cs:135:21:135:26 | After access to field Field2 [false] | 1 | | Conditions.cs:135:21:135:26 | After access to field Field2 [true] | Conditions.cs:136:17:138:17 | After {...} | 12 | -| Conditions.cs:143:10:143:12 | Entry | Conditions.cs:145:17:145:17 | access to parameter b | 7 | +| Conditions.cs:143:10:143:12 | Entry | Conditions.cs:145:17:145:17 | access to parameter b | 8 | | Conditions.cs:145:17:145:17 | After access to parameter b [false] | Conditions.cs:145:27:145:29 | "b" | 2 | | Conditions.cs:145:17:145:17 | After access to parameter b [true] | Conditions.cs:145:21:145:23 | "a" | 2 | | Conditions.cs:145:17:145:29 | After ... ? ... : ... | Conditions.cs:146:13:146:13 | access to parameter b | 6 | @@ -434,7 +434,13 @@ | Conditions.cs:146:13:146:13 | After access to parameter b [false] | Conditions.cs:149:13:149:49 | After ...; | 14 | | Conditions.cs:146:13:146:13 | After access to parameter b [true] | Conditions.cs:147:13:147:49 | After ...; | 14 | | DefaultParam.cs:1:7:1:18 | Entry | DefaultParam.cs:1:7:1:18 | Exit | 11 | -| DefaultParam.cs:3:12:3:13 | Entry | DefaultParam.cs:3:12:3:13 | Exit | 21 | +| DefaultParam.cs:3:12:3:13 | Entry | DefaultParam.cs:3:30:3:30 | s | 3 | +| DefaultParam.cs:3:30:3:30 | After s [match] | DefaultParam.cs:3:30:3:30 | After s [match] | 1 | +| DefaultParam.cs:3:30:3:30 | After s [no-match] | DefaultParam.cs:3:34:3:35 | "" | 2 | +| DefaultParam.cs:3:42:3:42 | After i [match] | DefaultParam.cs:3:42:3:42 | After i [match] | 1 | +| DefaultParam.cs:3:42:3:42 | After i [no-match] | DefaultParam.cs:3:46:3:46 | 0 | 2 | +| DefaultParam.cs:3:42:3:42 | i | DefaultParam.cs:3:42:3:42 | i | 1 | +| DefaultParam.cs:4:5:6:5 | {...} | DefaultParam.cs:3:12:3:13 | Exit | 20 | | ExitMethods.cs:6:7:6:17 | Entry | ExitMethods.cs:6:7:6:17 | Exit | 11 | | ExitMethods.cs:8:10:8:11 | Entry | ExitMethods.cs:8:10:8:11 | Exit | 12 | | ExitMethods.cs:14:10:14:11 | Entry | ExitMethods.cs:14:10:14:11 | Exit | 12 | @@ -450,11 +456,11 @@ | ExitMethods.cs:48:9:51:9 | After catch (...) {...} [no-match] | ExitMethods.cs:38:10:38:11 | Exceptional Exit | 2 | | ExitMethods.cs:54:10:54:11 | Entry | ExitMethods.cs:54:10:54:11 | Exit | 7 | | ExitMethods.cs:60:10:60:11 | Entry | ExitMethods.cs:60:10:60:11 | Exit | 7 | -| ExitMethods.cs:66:17:66:26 | Entry | ExitMethods.cs:68:13:68:13 | access to parameter b | 4 | +| ExitMethods.cs:66:17:66:26 | Entry | ExitMethods.cs:68:13:68:13 | access to parameter b | 5 | | ExitMethods.cs:66:17:66:26 | Exit | ExitMethods.cs:66:17:66:26 | Exit | 1 | | ExitMethods.cs:68:13:68:13 | After access to parameter b [false] | ExitMethods.cs:66:17:66:26 | Normal Exit | 4 | | ExitMethods.cs:68:13:68:13 | After access to parameter b [true] | ExitMethods.cs:66:17:66:26 | Exceptional Exit | 7 | -| ExitMethods.cs:72:17:72:27 | Entry | ExitMethods.cs:74:13:74:13 | access to parameter b | 4 | +| ExitMethods.cs:72:17:72:27 | Entry | ExitMethods.cs:74:13:74:13 | access to parameter b | 5 | | ExitMethods.cs:72:17:72:27 | Exceptional Exit | ExitMethods.cs:72:17:72:27 | Exit | 2 | | ExitMethods.cs:74:13:74:13 | After access to parameter b [false] | ExitMethods.cs:77:13:77:45 | throw ...; | 7 | | ExitMethods.cs:74:13:74:13 | After access to parameter b [true] | ExitMethods.cs:75:13:75:34 | throw ...; | 6 | @@ -466,29 +472,29 @@ | ExitMethods.cs:92:10:92:18 | Exit | ExitMethods.cs:92:10:92:18 | Exit | 1 | | ExitMethods.cs:94:9:102:9 | After try {...} ... | ExitMethods.cs:92:10:92:18 | Normal Exit | 3 | | ExitMethods.cs:105:10:105:24 | Entry | ExitMethods.cs:105:10:105:24 | Exit | 7 | -| ExitMethods.cs:110:13:110:21 | Entry | ExitMethods.cs:112:16:112:25 | ... != ... | 11 | +| ExitMethods.cs:110:13:110:21 | Entry | ExitMethods.cs:112:16:112:25 | ... != ... | 12 | | ExitMethods.cs:110:13:110:21 | Exit | ExitMethods.cs:110:13:110:21 | Exit | 1 | | ExitMethods.cs:112:16:112:25 | After ... != ... [false] | ExitMethods.cs:110:13:110:21 | Exceptional Exit | 8 | | ExitMethods.cs:112:16:112:25 | After ... != ... [true] | ExitMethods.cs:110:13:110:21 | Normal Exit | 12 | -| ExitMethods.cs:115:16:115:34 | Entry | ExitMethods.cs:117:16:117:30 | call to method Contains | 8 | +| ExitMethods.cs:115:16:115:34 | Entry | ExitMethods.cs:117:16:117:30 | call to method Contains | 9 | | ExitMethods.cs:117:16:117:30 | After call to method Contains [false] | ExitMethods.cs:117:38:117:38 | 1 | 2 | | ExitMethods.cs:117:16:117:30 | After call to method Contains [true] | ExitMethods.cs:117:34:117:34 | 0 | 2 | | ExitMethods.cs:117:16:117:38 | After ... ? ... : ... | ExitMethods.cs:115:16:115:34 | Exit | 4 | | ExitMethods.cs:120:17:120:32 | Entry | ExitMethods.cs:120:17:120:32 | Exit | 8 | | ExitMethods.cs:126:17:126:33 | Entry | ExitMethods.cs:126:17:126:33 | Exit | 8 | -| ExitMethods.cs:132:10:132:20 | Entry | ExitMethods.cs:132:33:132:49 | call to method IsFalse | 4 | +| ExitMethods.cs:132:10:132:20 | Entry | ExitMethods.cs:132:33:132:49 | call to method IsFalse | 5 | | ExitMethods.cs:132:10:132:20 | Exceptional Exit | ExitMethods.cs:132:10:132:20 | Exceptional Exit | 1 | | ExitMethods.cs:132:10:132:20 | Exit | ExitMethods.cs:132:10:132:20 | Exit | 1 | | ExitMethods.cs:132:33:132:49 | After call to method IsFalse | ExitMethods.cs:132:10:132:20 | Normal Exit | 2 | | ExitMethods.cs:134:17:134:33 | Entry | ExitMethods.cs:134:17:134:33 | Exit | 9 | -| ExitMethods.cs:140:17:140:42 | Entry | ExitMethods.cs:142:13:142:13 | access to parameter b | 4 | +| ExitMethods.cs:140:17:140:42 | Entry | ExitMethods.cs:142:13:142:13 | access to parameter b | 6 | | ExitMethods.cs:140:17:140:42 | Exceptional Exit | ExitMethods.cs:140:17:140:42 | Exit | 2 | | ExitMethods.cs:142:13:142:13 | After access to parameter b [false] | ExitMethods.cs:145:13:145:52 | call to method Throw | 8 | | ExitMethods.cs:142:13:142:13 | After access to parameter b [true] | ExitMethods.cs:143:13:143:42 | call to method Throw | 5 | -| Extensions.cs:5:23:5:29 | Entry | Extensions.cs:5:23:5:29 | Exit | 10 | -| Extensions.cs:10:24:10:29 | Entry | Extensions.cs:10:24:10:29 | Exit | 11 | +| Extensions.cs:5:23:5:29 | Entry | Extensions.cs:5:23:5:29 | Exit | 11 | +| Extensions.cs:10:24:10:29 | Entry | Extensions.cs:10:24:10:29 | Exit | 13 | | Extensions.cs:15:23:15:33 | Entry | Extensions.cs:15:23:15:33 | Exit | 7 | -| Extensions.cs:20:17:20:20 | Entry | Extensions.cs:20:17:20:20 | Exit | 37 | +| Extensions.cs:20:17:20:20 | Entry | Extensions.cs:20:17:20:20 | Exit | 38 | | Finally.cs:3:14:3:20 | Entry | Finally.cs:3:14:3:20 | Exit | 11 | | Finally.cs:7:10:7:11 | Entry | Finally.cs:11:13:11:37 | call to method WriteLine | 8 | | Finally.cs:7:10:7:11 | Exceptional Exit | Finally.cs:7:10:7:11 | Exceptional Exit | 1 | @@ -570,7 +576,7 @@ | Finally.cs:133:10:133:11 | Entry | Finally.cs:137:13:137:36 | call to method WriteLine | 8 | | Finally.cs:137:13:137:36 | After call to method WriteLine | Finally.cs:136:9:138:9 | After {...} | 3 | | Finally.cs:140:9:143:9 | {...} | Finally.cs:133:10:133:11 | Exit | 9 | -| Finally.cs:147:10:147:11 | Entry | Finally.cs:151:17:151:28 | ... == ... | 9 | +| Finally.cs:147:10:147:11 | Entry | Finally.cs:151:17:151:28 | ... == ... | 10 | | Finally.cs:147:10:147:11 | Exceptional Exit | Finally.cs:147:10:147:11 | Exceptional Exit | 1 | | Finally.cs:147:10:147:11 | Exit | Finally.cs:147:10:147:11 | Exit | 1 | | Finally.cs:149:9:169:9 | After try {...} ... | Finally.cs:147:10:147:11 | Normal Exit | 3 | @@ -591,7 +597,7 @@ | Finally.cs:172:11:172:20 | Entry | Finally.cs:172:11:172:20 | Exit | 11 | | Finally.cs:173:11:173:20 | Entry | Finally.cs:173:11:173:20 | Exit | 11 | | Finally.cs:174:11:174:20 | Entry | Finally.cs:174:11:174:20 | Exit | 11 | -| Finally.cs:176:10:176:11 | Entry | Finally.cs:180:17:180:18 | access to parameter b1 | 6 | +| Finally.cs:176:10:176:11 | Entry | Finally.cs:180:17:180:18 | access to parameter b1 | 8 | | Finally.cs:176:10:176:11 | Exceptional Exit | Finally.cs:176:10:176:11 | Exceptional Exit | 1 | | Finally.cs:176:10:176:11 | Exit | Finally.cs:176:10:176:11 | Exit | 1 | | Finally.cs:178:9:192:9 | After try {...} ... | Finally.cs:176:10:176:11 | Normal Exit | 3 | @@ -610,7 +616,7 @@ | Finally.cs:188:38:188:39 | After access to parameter b2 [true] | Finally.cs:190:21:190:22 | access to parameter b1 | 4 | | Finally.cs:190:21:190:22 | After access to parameter b1 [false] | Finally.cs:189:13:191:13 | After {...} | 3 | | Finally.cs:190:21:190:22 | After access to parameter b1 [true] | Finally.cs:190:25:190:47 | throw ...; | 6 | -| Finally.cs:195:10:195:12 | Entry | Finally.cs:199:17:199:18 | access to parameter b1 | 6 | +| Finally.cs:195:10:195:12 | Entry | Finally.cs:199:17:199:18 | access to parameter b1 | 9 | | Finally.cs:195:10:195:12 | Exceptional Exit | Finally.cs:195:10:195:12 | Exceptional Exit | 1 | | Finally.cs:195:10:195:12 | Exit | Finally.cs:195:10:195:12 | Exit | 1 | | Finally.cs:197:9:212:9 | After try {...} ... | Finally.cs:195:10:195:12 | Normal Exit | 13 | @@ -629,7 +635,7 @@ | Finally.cs:220:13:220:36 | After call to method WriteLine | Finally.cs:219:9:221:9 | After {...} | 3 | | Finally.cs:222:9:225:9 | catch {...} | Finally.cs:223:9:225:9 | After {...} | 10 | | Finally.cs:227:9:229:9 | {...} | Finally.cs:216:10:216:12 | Exit | 18 | -| Finally.cs:233:10:233:12 | Entry | Finally.cs:239:21:239:22 | access to parameter b1 | 8 | +| Finally.cs:233:10:233:12 | Entry | Finally.cs:239:21:239:22 | access to parameter b1 | 10 | | Finally.cs:233:10:233:12 | Exceptional Exit | Finally.cs:233:10:233:12 | Exceptional Exit | 1 | | Finally.cs:233:10:233:12 | Exit | Finally.cs:233:10:233:12 | Exit | 1 | | Finally.cs:235:9:259:9 | After try {...} ... | Finally.cs:233:10:233:12 | Normal Exit | 9 | @@ -645,24 +651,24 @@ | Finally.cs:250:17:252:17 | {...} | Finally.cs:250:17:252:17 | After {...} | 8 | | Finally.cs:254:13:254:44 | After call to method WriteLine | Finally.cs:236:9:255:9 | After {...} | 3 | | Finally.cs:257:9:259:9 | {...} | Finally.cs:257:9:259:9 | After {...} | 8 | -| Finally.cs:263:10:263:12 | Entry | Finally.cs:267:13:267:34 | call to method WriteLine | 8 | +| Finally.cs:263:10:263:12 | Entry | Finally.cs:267:13:267:34 | call to method WriteLine | 9 | | Finally.cs:263:10:263:12 | Exceptional Exit | Finally.cs:263:10:263:12 | Exceptional Exit | 1 | | Finally.cs:263:10:263:12 | Exit | Finally.cs:263:10:263:12 | Exit | 1 | | Finally.cs:265:9:273:9 | After try {...} ... | Finally.cs:263:10:263:12 | Normal Exit | 3 | | Finally.cs:267:13:267:34 | After call to method WriteLine | Finally.cs:266:9:268:9 | After {...} | 3 | | Finally.cs:270:9:273:9 | {...} | Finally.cs:270:9:273:9 | After {...} | 15 | | Foreach.cs:4:7:4:13 | Entry | Foreach.cs:4:7:4:13 | Exit | 11 | -| Foreach.cs:6:10:6:11 | Entry | Foreach.cs:8:29:8:32 | access to parameter args | 4 | +| Foreach.cs:6:10:6:11 | Entry | Foreach.cs:8:29:8:32 | access to parameter args | 5 | | Foreach.cs:8:9:9:13 | After foreach (... ... in ...) ... | Foreach.cs:6:10:6:11 | Exit | 4 | | Foreach.cs:8:22:8:24 | String arg | Foreach.cs:8:9:9:13 | [LoopHeader] foreach (... ... in ...) ... | 3 | | Foreach.cs:8:29:8:32 | After access to parameter args [empty] | Foreach.cs:8:29:8:32 | After access to parameter args [empty] | 1 | | Foreach.cs:8:29:8:32 | After access to parameter args [non-empty] | Foreach.cs:8:29:8:32 | After access to parameter args [non-empty] | 1 | -| Foreach.cs:12:10:12:11 | Entry | Foreach.cs:14:27:14:30 | access to parameter args | 4 | +| Foreach.cs:12:10:12:11 | Entry | Foreach.cs:14:27:14:30 | access to parameter args | 5 | | Foreach.cs:14:9:15:13 | After foreach (... ... in ...) ... | Foreach.cs:12:10:12:11 | Exit | 4 | | Foreach.cs:14:22:14:22 | String _ | Foreach.cs:14:9:15:13 | [LoopHeader] foreach (... ... in ...) ... | 3 | | Foreach.cs:14:27:14:30 | After access to parameter args [empty] | Foreach.cs:14:27:14:30 | After access to parameter args [empty] | 1 | | Foreach.cs:14:27:14:30 | After access to parameter args [non-empty] | Foreach.cs:14:27:14:30 | After access to parameter args [non-empty] | 1 | -| Foreach.cs:18:10:18:11 | Entry | Foreach.cs:20:27:20:27 | access to parameter e | 6 | +| Foreach.cs:18:10:18:11 | Entry | Foreach.cs:20:27:20:27 | access to parameter e | 7 | | Foreach.cs:20:9:21:11 | After foreach (... ... in ...) ... | Foreach.cs:18:10:18:11 | Exit | 4 | | Foreach.cs:20:22:20:22 | String x | Foreach.cs:20:9:21:11 | [LoopHeader] foreach (... ... in ...) ... | 3 | | Foreach.cs:20:27:20:27 | After access to parameter e [non-null] | Foreach.cs:20:27:20:38 | call to method ToArray | 2 | @@ -673,17 +679,17 @@ | Foreach.cs:20:27:20:68 | After ... ?? ... [non-empty] | Foreach.cs:20:27:20:68 | After ... ?? ... [non-empty] | 1 | | Foreach.cs:20:43:20:68 | After call to method Empty [empty] | Foreach.cs:20:43:20:68 | After call to method Empty [empty] | 1 | | Foreach.cs:20:43:20:68 | After call to method Empty [non-empty] | Foreach.cs:20:43:20:68 | After call to method Empty [non-empty] | 1 | -| Foreach.cs:24:10:24:11 | Entry | Foreach.cs:26:36:26:39 | access to parameter args | 4 | +| Foreach.cs:24:10:24:11 | Entry | Foreach.cs:26:36:26:39 | access to parameter args | 5 | | Foreach.cs:26:9:27:11 | After foreach (... ... in ...) ... | Foreach.cs:24:10:24:11 | Exit | 4 | | Foreach.cs:26:18:26:31 | Before (..., ...) | Foreach.cs:26:9:27:11 | [LoopHeader] foreach (... ... in ...) ... | 7 | | Foreach.cs:26:36:26:39 | After access to parameter args [empty] | Foreach.cs:26:36:26:39 | After access to parameter args [empty] | 1 | | Foreach.cs:26:36:26:39 | After access to parameter args [non-empty] | Foreach.cs:26:36:26:39 | After access to parameter args [non-empty] | 1 | -| Foreach.cs:30:10:30:11 | Entry | Foreach.cs:32:32:32:35 | access to parameter args | 4 | +| Foreach.cs:30:10:30:11 | Entry | Foreach.cs:32:32:32:35 | access to parameter args | 5 | | Foreach.cs:32:9:33:11 | After foreach (... ... in ...) ... | Foreach.cs:30:10:30:11 | Exit | 4 | | Foreach.cs:32:18:32:27 | Before (..., ...) | Foreach.cs:32:9:33:11 | [LoopHeader] foreach (... ... in ...) ... | 7 | | Foreach.cs:32:32:32:35 | After access to parameter args [empty] | Foreach.cs:32:32:32:35 | After access to parameter args [empty] | 1 | | Foreach.cs:32:32:32:35 | After access to parameter args [non-empty] | Foreach.cs:32:32:32:35 | After access to parameter args [non-empty] | 1 | -| Foreach.cs:36:10:36:11 | Entry | Foreach.cs:38:39:38:42 | access to parameter args | 4 | +| Foreach.cs:36:10:36:11 | Entry | Foreach.cs:38:39:38:42 | access to parameter args | 5 | | Foreach.cs:38:9:39:11 | After foreach (... ... in ...) ... | Foreach.cs:36:10:36:11 | Exit | 4 | | Foreach.cs:38:18:38:34 | Before (..., ...) | Foreach.cs:38:9:39:11 | [LoopHeader] foreach (... ... in ...) ... | 7 | | Foreach.cs:38:39:38:42 | After access to parameter args [empty] | Foreach.cs:38:39:38:42 | After access to parameter args [empty] | 1 | @@ -691,19 +697,19 @@ | Initializers.cs:3:7:3:18 | Entry | Initializers.cs:3:7:3:18 | Exit | 9 | | Initializers.cs:3:7:3:18 | Entry | Initializers.cs:3:7:3:18 | Exit | 27 | | Initializers.cs:8:5:8:16 | Entry | Initializers.cs:8:5:8:16 | Exit | 11 | -| Initializers.cs:10:5:10:16 | Entry | Initializers.cs:10:5:10:16 | Exit | 11 | +| Initializers.cs:10:5:10:16 | Entry | Initializers.cs:10:5:10:16 | Exit | 12 | | Initializers.cs:12:10:12:10 | Entry | Initializers.cs:12:10:12:10 | Exit | 48 | | Initializers.cs:20:11:20:23 | Entry | Initializers.cs:20:11:20:23 | Exit | 11 | | Initializers.cs:20:11:20:23 | Entry | Initializers.cs:20:11:20:23 | Exit | 19 | | Initializers.cs:26:11:26:13 | Entry | Initializers.cs:26:11:26:13 | Exit | 11 | | Initializers.cs:31:9:31:11 | Entry | Initializers.cs:31:9:31:11 | Exit | 22 | -| Initializers.cs:33:9:33:11 | Entry | Initializers.cs:33:9:33:11 | Exit | 18 | -| Initializers.cs:35:9:35:11 | Entry | Initializers.cs:35:9:35:11 | Exit | 26 | +| Initializers.cs:33:9:33:11 | Entry | Initializers.cs:33:9:33:11 | Exit | 19 | +| Initializers.cs:35:9:35:11 | Entry | Initializers.cs:35:9:35:11 | Exit | 28 | | Initializers.cs:39:7:39:23 | Entry | Initializers.cs:39:7:39:23 | Exit | 11 | | Initializers.cs:41:11:41:18 | Entry | Initializers.cs:41:11:41:18 | Exit | 11 | -| Initializers.cs:51:10:51:13 | Entry | Initializers.cs:51:10:51:13 | Exit | 245 | +| Initializers.cs:51:10:51:13 | Entry | Initializers.cs:51:10:51:13 | Exit | 246 | | LoopUnrolling.cs:5:7:5:19 | Entry | LoopUnrolling.cs:5:7:5:19 | Exit | 11 | -| LoopUnrolling.cs:7:10:7:11 | Entry | LoopUnrolling.cs:9:13:9:28 | ... == ... | 10 | +| LoopUnrolling.cs:7:10:7:11 | Entry | LoopUnrolling.cs:9:13:9:28 | ... == ... | 11 | | LoopUnrolling.cs:7:10:7:11 | Normal Exit | LoopUnrolling.cs:7:10:7:11 | Exit | 2 | | LoopUnrolling.cs:9:13:9:28 | After ... == ... [false] | LoopUnrolling.cs:11:29:11:32 | access to parameter args | 4 | | LoopUnrolling.cs:9:13:9:28 | After ... == ... [true] | LoopUnrolling.cs:10:13:10:19 | return ...; | 3 | @@ -716,7 +722,7 @@ | LoopUnrolling.cs:18:22:18:22 | String x | LoopUnrolling.cs:18:9:19:33 | [LoopHeader] foreach (... ... in ...) ... | 8 | | LoopUnrolling.cs:18:27:18:28 | After access to local variable xs [empty] | LoopUnrolling.cs:18:27:18:28 | After access to local variable xs [empty] | 1 | | LoopUnrolling.cs:18:27:18:28 | After access to local variable xs [non-empty] | LoopUnrolling.cs:18:27:18:28 | After access to local variable xs [non-empty] | 1 | -| LoopUnrolling.cs:22:10:22:11 | Entry | LoopUnrolling.cs:24:29:24:32 | access to parameter args | 4 | +| LoopUnrolling.cs:22:10:22:11 | Entry | LoopUnrolling.cs:24:29:24:32 | access to parameter args | 5 | | LoopUnrolling.cs:24:9:26:40 | After foreach (... ... in ...) ... | LoopUnrolling.cs:22:10:22:11 | Exit | 4 | | LoopUnrolling.cs:24:22:24:24 | Char arg | LoopUnrolling.cs:25:34:25:37 | access to parameter args | 3 | | LoopUnrolling.cs:24:29:24:32 | After access to parameter args [empty] | LoopUnrolling.cs:24:29:24:32 | After access to parameter args [empty] | 1 | @@ -743,7 +749,7 @@ | LoopUnrolling.cs:48:27:48:28 | After access to local variable xs [empty] | LoopUnrolling.cs:45:10:45:11 | Exit | 5 | | LoopUnrolling.cs:48:27:48:28 | After access to local variable xs [non-empty] | LoopUnrolling.cs:49:9:52:9 | {...} | 3 | | LoopUnrolling.cs:50:9:50:13 | Label: | LoopUnrolling.cs:51:13:51:23 | goto ...; | 9 | -| LoopUnrolling.cs:55:10:55:11 | Entry | LoopUnrolling.cs:58:27:58:28 | access to local variable xs | 20 | +| LoopUnrolling.cs:55:10:55:11 | Entry | LoopUnrolling.cs:58:27:58:28 | access to local variable xs | 21 | | LoopUnrolling.cs:58:9:64:9 | After foreach (... ... in ...) ... | LoopUnrolling.cs:55:10:55:11 | Exit | 4 | | LoopUnrolling.cs:58:22:58:22 | String x | LoopUnrolling.cs:60:17:60:17 | access to parameter b | 4 | | LoopUnrolling.cs:58:27:58:28 | After access to local variable xs [empty] | LoopUnrolling.cs:58:27:58:28 | After access to local variable xs [empty] | 1 | @@ -754,7 +760,7 @@ | LoopUnrolling.cs:62:13:63:37 | After if (...) ... | LoopUnrolling.cs:58:9:64:9 | [LoopHeader] foreach (... ... in ...) ... | 3 | | LoopUnrolling.cs:62:17:62:17 | After access to parameter b [false] | LoopUnrolling.cs:62:17:62:17 | After access to parameter b [false] | 1 | | LoopUnrolling.cs:62:17:62:17 | After access to parameter b [true] | LoopUnrolling.cs:63:17:63:37 | After ...; | 7 | -| LoopUnrolling.cs:67:10:67:11 | Entry | LoopUnrolling.cs:69:14:69:23 | call to method Any | 7 | +| LoopUnrolling.cs:67:10:67:11 | Entry | LoopUnrolling.cs:69:14:69:23 | call to method Any | 8 | | LoopUnrolling.cs:67:10:67:11 | Normal Exit | LoopUnrolling.cs:67:10:67:11 | Exit | 2 | | LoopUnrolling.cs:69:14:69:23 | After call to method Any [false] | LoopUnrolling.cs:70:13:70:19 | return ...; | 4 | | LoopUnrolling.cs:69:14:69:23 | After call to method Any [true] | LoopUnrolling.cs:72:29:72:32 | access to parameter args | 11 | @@ -786,7 +792,7 @@ | MultiImplementationA.cs:7:21:7:23 | Entry | MultiImplementationA.cs:7:21:7:23 | Entry | 1 | | MultiImplementationA.cs:7:21:7:23 | Exit | MultiImplementationA.cs:7:21:7:23 | Exit | 1 | | MultiImplementationA.cs:7:25:7:39 | {...} | MultiImplementationA.cs:7:21:7:23 | Exceptional Exit | 5 | -| MultiImplementationA.cs:7:41:7:43 | Entry | MultiImplementationA.cs:7:41:7:43 | Entry | 1 | +| MultiImplementationA.cs:7:41:7:43 | Entry | MultiImplementationA.cs:7:41:7:43 | value | 2 | | MultiImplementationA.cs:7:41:7:43 | Exit | MultiImplementationA.cs:7:41:7:43 | Exit | 1 | | MultiImplementationA.cs:7:45:7:59 | {...} | MultiImplementationA.cs:7:41:7:43 | Exceptional Exit | 5 | | MultiImplementationA.cs:8:16:8:16 | Entry | MultiImplementationA.cs:8:16:8:16 | Entry | 1 | @@ -795,21 +801,21 @@ | MultiImplementationA.cs:11:7:11:8 | Entry | MultiImplementationA.cs:11:7:11:8 | Entry | 1 | | MultiImplementationA.cs:11:7:11:8 | Normal Exit | MultiImplementationA.cs:11:7:11:8 | Exit | 2 | | MultiImplementationA.cs:13:16:13:20 | Before ... = ... | MultiImplementationA.cs:24:32:24:34 | After ... = ... | 16 | -| MultiImplementationA.cs:14:31:14:31 | Entry | MultiImplementationA.cs:14:31:14:31 | Entry | 1 | +| MultiImplementationA.cs:14:31:14:31 | Entry | MultiImplementationA.cs:14:25:14:25 | i | 2 | | MultiImplementationA.cs:14:31:14:31 | Exit | MultiImplementationA.cs:14:31:14:31 | Exit | 1 | | MultiImplementationA.cs:14:31:14:31 | access to parameter i | MultiImplementationA.cs:14:31:14:31 | Normal Exit | 2 | -| MultiImplementationA.cs:15:36:15:38 | Entry | MultiImplementationA.cs:15:36:15:38 | Entry | 1 | +| MultiImplementationA.cs:15:36:15:38 | Entry | MultiImplementationA.cs:15:31:15:31 | s | 2 | | MultiImplementationA.cs:15:36:15:38 | Exit | MultiImplementationA.cs:15:36:15:38 | Exit | 1 | | MultiImplementationA.cs:15:40:15:52 | {...} | MultiImplementationA.cs:15:36:15:38 | Normal Exit | 5 | -| MultiImplementationA.cs:15:54:15:56 | Entry | MultiImplementationA.cs:15:54:15:56 | Entry | 1 | +| MultiImplementationA.cs:15:54:15:56 | Entry | MultiImplementationA.cs:15:54:15:56 | value | 3 | | MultiImplementationA.cs:15:54:15:56 | Normal Exit | MultiImplementationA.cs:15:54:15:56 | Exit | 2 | | MultiImplementationA.cs:15:58:15:60 | {...} | MultiImplementationA.cs:15:58:15:60 | {...} | 1 | -| MultiImplementationA.cs:16:17:16:18 | Entry | MultiImplementationA.cs:16:17:16:18 | Entry | 1 | +| MultiImplementationA.cs:16:17:16:18 | Entry | MultiImplementationA.cs:16:24:16:24 | i | 2 | | MultiImplementationA.cs:16:17:16:18 | Normal Exit | MultiImplementationA.cs:16:17:16:18 | Exit | 2 | | MultiImplementationA.cs:17:5:19:5 | {...} | MultiImplementationA.cs:17:5:19:5 | After {...} | 3 | | MultiImplementationA.cs:18:9:18:22 | Entry | MultiImplementationA.cs:18:9:18:22 | Exit | 4 | | MultiImplementationA.cs:20:12:20:13 | Before call to method | MultiImplementationA.cs:20:12:20:13 | Normal Exit | 20 | -| MultiImplementationA.cs:20:12:20:13 | Entry | MultiImplementationA.cs:20:12:20:13 | Entry | 1 | +| MultiImplementationA.cs:20:12:20:13 | Entry | MultiImplementationA.cs:20:19:20:19 | i | 2 | | MultiImplementationA.cs:20:12:20:13 | Exit | MultiImplementationA.cs:20:12:20:13 | Exit | 1 | | MultiImplementationA.cs:21:12:21:13 | Entry | MultiImplementationA.cs:21:12:21:13 | Entry | 1 | | MultiImplementationA.cs:21:12:21:13 | Normal Exit | MultiImplementationA.cs:21:12:21:13 | Exit | 2 | @@ -817,7 +823,7 @@ | MultiImplementationA.cs:22:6:22:7 | Entry | MultiImplementationA.cs:22:6:22:7 | Entry | 1 | | MultiImplementationA.cs:22:6:22:7 | Exit | MultiImplementationA.cs:22:6:22:7 | Exit | 1 | | MultiImplementationA.cs:22:11:22:13 | {...} | MultiImplementationA.cs:22:6:22:7 | Normal Exit | 2 | -| MultiImplementationA.cs:23:28:23:35 | Entry | MultiImplementationA.cs:23:28:23:35 | Entry | 1 | +| MultiImplementationA.cs:23:28:23:35 | Entry | MultiImplementationA.cs:23:44:23:44 | i | 2 | | MultiImplementationA.cs:23:28:23:35 | Exit | MultiImplementationA.cs:23:28:23:35 | Exit | 1 | | MultiImplementationA.cs:23:50:23:53 | null | MultiImplementationA.cs:23:28:23:35 | Normal Exit | 2 | | MultiImplementationA.cs:28:7:28:8 | Before call to method | MultiImplementationA.cs:28:7:28:8 | {...} | 8 | @@ -850,24 +856,24 @@ | MultiImplementationB.cs:30:15:30:16 | Before call to method | MultiImplementationB.cs:30:15:30:16 | {...} | 8 | | MultiImplementationB.cs:32:17:32:17 | 0 | MultiImplementationA.cs:36:9:36:10 | Normal Exit | 2 | | NullCoalescing.cs:1:7:1:20 | Entry | NullCoalescing.cs:1:7:1:20 | Exit | 11 | -| NullCoalescing.cs:3:9:3:10 | Entry | NullCoalescing.cs:3:23:3:23 | access to parameter i | 3 | +| NullCoalescing.cs:3:9:3:10 | Entry | NullCoalescing.cs:3:23:3:23 | access to parameter i | 4 | | NullCoalescing.cs:3:23:3:23 | After access to parameter i [non-null] | NullCoalescing.cs:3:23:3:23 | After access to parameter i [non-null] | 1 | | NullCoalescing.cs:3:23:3:23 | After access to parameter i [null] | NullCoalescing.cs:3:28:3:28 | 0 | 2 | | NullCoalescing.cs:3:23:3:28 | After ... ?? ... | NullCoalescing.cs:3:9:3:10 | Exit | 3 | -| NullCoalescing.cs:5:9:5:10 | Entry | NullCoalescing.cs:5:25:5:25 | access to parameter b | 4 | +| NullCoalescing.cs:5:9:5:10 | Entry | NullCoalescing.cs:5:25:5:25 | access to parameter b | 5 | | NullCoalescing.cs:5:24:5:43 | After ... ? ... : ... | NullCoalescing.cs:5:9:5:10 | Exit | 3 | | NullCoalescing.cs:5:25:5:25 | After access to parameter b [non-null] | NullCoalescing.cs:5:25:5:25 | After access to parameter b [non-null] | 1 | | NullCoalescing.cs:5:25:5:25 | After access to parameter b [null] | NullCoalescing.cs:5:30:5:34 | After false [false] | 3 | | NullCoalescing.cs:5:25:5:34 | After ... ?? ... [false] | NullCoalescing.cs:5:43:5:43 | 1 | 2 | | NullCoalescing.cs:5:25:5:34 | After ... ?? ... [true] | NullCoalescing.cs:5:39:5:39 | 0 | 2 | -| NullCoalescing.cs:7:12:7:13 | Entry | NullCoalescing.cs:7:40:7:41 | access to parameter s1 | 3 | +| NullCoalescing.cs:7:12:7:13 | Entry | NullCoalescing.cs:7:40:7:41 | access to parameter s1 | 5 | | NullCoalescing.cs:7:40:7:41 | After access to parameter s1 [non-null] | NullCoalescing.cs:7:40:7:41 | After access to parameter s1 [non-null] | 1 | | NullCoalescing.cs:7:40:7:41 | After access to parameter s1 [null] | NullCoalescing.cs:7:46:7:47 | access to parameter s2 | 3 | | NullCoalescing.cs:7:40:7:53 | After ... ?? ... | NullCoalescing.cs:7:12:7:13 | Exit | 3 | | NullCoalescing.cs:7:46:7:47 | After access to parameter s2 [non-null] | NullCoalescing.cs:7:46:7:47 | After access to parameter s2 [non-null] | 1 | | NullCoalescing.cs:7:46:7:47 | After access to parameter s2 [null] | NullCoalescing.cs:7:52:7:53 | "" | 2 | | NullCoalescing.cs:7:46:7:53 | After ... ?? ... | NullCoalescing.cs:7:46:7:53 | After ... ?? ... | 1 | -| NullCoalescing.cs:9:12:9:13 | Entry | NullCoalescing.cs:9:37:9:37 | access to parameter b | 4 | +| NullCoalescing.cs:9:12:9:13 | Entry | NullCoalescing.cs:9:37:9:37 | access to parameter b | 6 | | NullCoalescing.cs:9:36:9:58 | After ... ?? ... | NullCoalescing.cs:9:12:9:13 | Exit | 3 | | NullCoalescing.cs:9:37:9:37 | After access to parameter b [false] | NullCoalescing.cs:9:45:9:45 | access to parameter s | 2 | | NullCoalescing.cs:9:37:9:37 | After access to parameter b [true] | NullCoalescing.cs:9:41:9:41 | access to parameter s | 2 | @@ -880,7 +886,7 @@ | NullCoalescing.cs:9:51:9:52 | After "" [non-null] | NullCoalescing.cs:9:51:9:52 | After "" [non-null] | 1 | | NullCoalescing.cs:9:51:9:52 | After "" [null] | NullCoalescing.cs:9:57:9:58 | "" | 2 | | NullCoalescing.cs:9:51:9:58 | After ... ?? ... | NullCoalescing.cs:9:51:9:58 | After ... ?? ... | 1 | -| NullCoalescing.cs:11:9:11:10 | Entry | NullCoalescing.cs:11:44:11:45 | access to parameter b1 | 4 | +| NullCoalescing.cs:11:9:11:10 | Entry | NullCoalescing.cs:11:44:11:45 | access to parameter b1 | 7 | | NullCoalescing.cs:11:43:11:68 | After ... ? ... : ... | NullCoalescing.cs:11:9:11:10 | Exit | 3 | | NullCoalescing.cs:11:44:11:45 | After access to parameter b1 [non-null] | NullCoalescing.cs:11:44:11:45 | After access to parameter b1 [non-null] | 1 | | NullCoalescing.cs:11:44:11:45 | After access to parameter b1 [null] | NullCoalescing.cs:11:51:11:52 | access to parameter b2 | 3 | @@ -891,7 +897,7 @@ | NullCoalescing.cs:11:51:11:58 | After ... && ... [false] | NullCoalescing.cs:11:51:11:58 | After ... && ... [false] | 1 | | NullCoalescing.cs:11:57:11:58 | After access to parameter b3 [false] | NullCoalescing.cs:11:57:11:58 | After access to parameter b3 [false] | 1 | | NullCoalescing.cs:11:57:11:58 | After access to parameter b3 [true] | NullCoalescing.cs:11:51:11:58 | After ... && ... [true] | 2 | -| NullCoalescing.cs:13:10:13:11 | Entry | NullCoalescing.cs:15:17:15:26 | (...) ... | 9 | +| NullCoalescing.cs:13:10:13:11 | Entry | NullCoalescing.cs:15:17:15:26 | (...) ... | 10 | | NullCoalescing.cs:15:17:15:26 | After (...) ... [non-null] | NullCoalescing.cs:15:17:15:26 | After (...) ... [non-null] | 1 | | NullCoalescing.cs:15:17:15:26 | After (...) ... [null] | NullCoalescing.cs:15:31:15:31 | 0 | 2 | | NullCoalescing.cs:15:17:15:31 | After ... ?? ... | NullCoalescing.cs:16:17:16:18 | "" | 9 | @@ -902,7 +908,7 @@ | NullCoalescing.cs:17:13:17:19 | After (...) ... [null] | NullCoalescing.cs:17:24:17:24 | 1 | 2 | | NullCoalescing.cs:17:13:17:24 | After ... ?? ... | NullCoalescing.cs:13:10:13:11 | Exit | 7 | | PartialImplementationA.cs:1:15:1:21 | Entry | PartialImplementationA.cs:1:15:1:21 | Exit | 19 | -| PartialImplementationA.cs:3:12:3:18 | Entry | PartialImplementationA.cs:3:12:3:18 | Exit | 11 | +| PartialImplementationA.cs:3:12:3:18 | Entry | PartialImplementationA.cs:3:12:3:18 | Exit | 12 | | PartialImplementationB.cs:4:12:4:18 | Entry | PartialImplementationB.cs:4:12:4:18 | Exit | 11 | | Patterns.cs:3:7:3:14 | Entry | Patterns.cs:3:7:3:14 | Exit | 11 | | Patterns.cs:5:10:5:11 | Entry | Patterns.cs:8:13:8:23 | ... is ... | 13 | @@ -929,10 +935,10 @@ | Patterns.cs:30:13:30:27 | After case ...: [no-match] | Patterns.cs:33:13:33:24 | case ...: | 2 | | Patterns.cs:33:13:33:24 | After case ...: [match] | Patterns.cs:34:17:34:22 | break; | 4 | | Patterns.cs:33:13:33:24 | After case ...: [no-match] | Patterns.cs:37:17:37:22 | break; | 11 | -| Patterns.cs:47:24:47:25 | Entry | Patterns.cs:48:9:48:20 | ... is ... | 4 | +| Patterns.cs:47:24:47:25 | Entry | Patterns.cs:48:9:48:20 | ... is ... | 5 | | Patterns.cs:48:9:48:20 | After ... is ... | Patterns.cs:47:24:47:25 | Exit | 3 | | Patterns.cs:48:9:48:20 | [MatchTrue] ... is ... | Patterns.cs:48:14:48:20 | After not ... | 5 | -| Patterns.cs:50:24:50:25 | Entry | Patterns.cs:51:9:51:21 | ... is ... | 5 | +| Patterns.cs:50:24:50:25 | Entry | Patterns.cs:51:9:51:21 | ... is ... | 6 | | Patterns.cs:51:9:51:21 | After ... is ... [false] | Patterns.cs:51:34:51:39 | ... is ... | 4 | | Patterns.cs:51:9:51:21 | [MatchTrue] ... is ... | Patterns.cs:51:25:51:30 | ... is ... | 9 | | Patterns.cs:51:9:51:39 | After ... ? ... : ... | Patterns.cs:50:24:50:25 | Exit | 3 | @@ -940,10 +946,10 @@ | Patterns.cs:51:25:51:30 | [MatchTrue] ... is ... | Patterns.cs:51:30:51:30 | 1 | 2 | | Patterns.cs:51:34:51:39 | After ... is ... | Patterns.cs:51:34:51:39 | After ... is ... | 1 | | Patterns.cs:51:34:51:39 | [MatchTrue] ... is ... | Patterns.cs:51:39:51:39 | 2 | 2 | -| Patterns.cs:53:24:53:25 | Entry | Patterns.cs:54:9:54:37 | ... is ... | 4 | +| Patterns.cs:53:24:53:25 | Entry | Patterns.cs:54:9:54:37 | ... is ... | 5 | | Patterns.cs:54:9:54:37 | After ... is ... | Patterns.cs:53:24:53:25 | Exit | 3 | | Patterns.cs:54:9:54:37 | [MatchTrue] ... is ... | Patterns.cs:54:14:54:37 | After not ... | 13 | -| Patterns.cs:56:26:56:27 | Entry | Patterns.cs:60:13:60:28 | ... => ... | 6 | +| Patterns.cs:56:26:56:27 | Entry | Patterns.cs:60:13:60:28 | ... => ... | 7 | | Patterns.cs:58:16:62:9 | After ... switch { ... } | Patterns.cs:56:26:56:27 | Exit | 4 | | Patterns.cs:60:13:60:28 | After ... => ... [match] | Patterns.cs:60:22:60:28 | "not 1" | 6 | | Patterns.cs:60:13:60:28 | After ... => ... [no-match] | Patterns.cs:61:18:61:24 | "other" | 5 | @@ -953,7 +959,7 @@ | Patterns.cs:69:13:69:33 | After ... => ... [no-match] | Patterns.cs:70:13:70:27 | ... => ... | 2 | | Patterns.cs:70:13:70:27 | After ... => ... [match] | Patterns.cs:70:18:70:27 | "possible" | 3 | | Patterns.cs:70:13:70:27 | After ... => ... [no-match] | Patterns.cs:70:13:70:27 | After ... => ... [no-match] | 1 | -| Patterns.cs:74:26:74:27 | Entry | Patterns.cs:78:13:78:24 | ... => ... | 6 | +| Patterns.cs:74:26:74:27 | Entry | Patterns.cs:78:13:78:24 | ... => ... | 7 | | Patterns.cs:76:16:82:9 | After ... switch { ... } | Patterns.cs:74:26:74:27 | Exit | 4 | | Patterns.cs:78:13:78:24 | After ... => ... [match] | Patterns.cs:78:20:78:24 | "> 1" | 6 | | Patterns.cs:78:13:78:24 | After ... => ... [no-match] | Patterns.cs:79:13:79:24 | ... => ... | 2 | @@ -961,11 +967,11 @@ | Patterns.cs:79:13:79:24 | After ... => ... [no-match] | Patterns.cs:80:13:80:20 | ... => ... | 2 | | Patterns.cs:80:13:80:20 | After ... => ... [match] | Patterns.cs:80:18:80:20 | "1" | 3 | | Patterns.cs:80:13:80:20 | After ... => ... [no-match] | Patterns.cs:81:18:81:20 | "0" | 5 | -| Patterns.cs:85:26:85:27 | Entry | Patterns.cs:85:39:85:53 | ... is ... | 5 | +| Patterns.cs:85:26:85:27 | Entry | Patterns.cs:85:39:85:53 | ... is ... | 6 | | Patterns.cs:85:39:85:53 | After ... is ... [false] | Patterns.cs:85:67:85:69 | "2" | 2 | | Patterns.cs:85:39:85:53 | [MatchTrue] ... is ... | Patterns.cs:85:57:85:63 | "not 2" | 11 | | Patterns.cs:85:39:85:69 | After ... ? ... : ... | Patterns.cs:85:26:85:27 | Exit | 3 | -| Patterns.cs:87:26:87:27 | Entry | Patterns.cs:87:39:87:54 | ... is ... | 5 | +| Patterns.cs:87:26:87:27 | Entry | Patterns.cs:87:39:87:54 | ... is ... | 6 | | Patterns.cs:87:39:87:54 | After ... is ... [false] | Patterns.cs:87:64:87:70 | "not 1" | 2 | | Patterns.cs:87:39:87:54 | [MatchTrue] ... is ... | Patterns.cs:87:58:87:60 | "1" | 11 | | Patterns.cs:87:39:87:70 | After ... ? ... : ... | Patterns.cs:87:26:87:27 | Exit | 3 | @@ -974,12 +980,12 @@ | Patterns.cs:95:13:95:40 | After ... is ... [false] | Patterns.cs:95:13:95:40 | After ... is ... [false] | 1 | | Patterns.cs:95:13:95:40 | [MatchTrue] ... is ... | Patterns.cs:96:9:98:9 | After {...} | 21 | | PostDominance.cs:3:7:3:19 | Entry | PostDominance.cs:3:7:3:19 | Exit | 11 | -| PostDominance.cs:5:10:5:11 | Entry | PostDominance.cs:5:10:5:11 | Exit | 11 | -| PostDominance.cs:10:10:10:11 | Entry | PostDominance.cs:12:13:12:21 | ... is ... | 6 | +| PostDominance.cs:5:10:5:11 | Entry | PostDominance.cs:5:10:5:11 | Exit | 12 | +| PostDominance.cs:10:10:10:11 | Entry | PostDominance.cs:12:13:12:21 | ... is ... | 7 | | PostDominance.cs:10:10:10:11 | Normal Exit | PostDominance.cs:10:10:10:11 | Exit | 2 | | PostDominance.cs:12:13:12:21 | After ... is ... [false] | PostDominance.cs:11:5:15:5 | After {...} | 9 | | PostDominance.cs:12:13:12:21 | [MatchTrue] ... is ... | PostDominance.cs:13:13:13:19 | return ...; | 5 | -| PostDominance.cs:17:10:17:11 | Entry | PostDominance.cs:19:13:19:21 | ... is ... | 6 | +| PostDominance.cs:17:10:17:11 | Entry | PostDominance.cs:19:13:19:21 | ... is ... | 7 | | PostDominance.cs:17:10:17:11 | Exit | PostDominance.cs:17:10:17:11 | Exit | 1 | | PostDominance.cs:19:13:19:21 | After ... is ... [false] | PostDominance.cs:17:10:17:11 | Normal Exit | 10 | | PostDominance.cs:19:13:19:21 | [MatchTrue] ... is ... | PostDominance.cs:17:10:17:11 | Exceptional Exit | 10 | @@ -988,8 +994,8 @@ | Qualifiers.cs:8:23:8:34 | Entry | Qualifiers.cs:8:23:8:34 | Exit | 4 | | Qualifiers.cs:10:10:10:10 | Entry | Qualifiers.cs:10:10:10:10 | Exit | 149 | | Switch.cs:3:7:3:12 | Entry | Switch.cs:3:7:3:12 | Exit | 11 | -| Switch.cs:5:10:5:11 | Entry | Switch.cs:5:10:5:11 | Exit | 8 | -| Switch.cs:10:10:10:11 | Entry | Switch.cs:14:13:14:21 | case ...: | 5 | +| Switch.cs:5:10:5:11 | Entry | Switch.cs:5:10:5:11 | Exit | 9 | +| Switch.cs:10:10:10:11 | Entry | Switch.cs:14:13:14:21 | case ...: | 6 | | Switch.cs:10:10:10:11 | Exceptional Exit | Switch.cs:10:10:10:11 | Exceptional Exit | 1 | | Switch.cs:10:10:10:11 | Exit | Switch.cs:10:10:10:11 | Exit | 1 | | Switch.cs:10:10:10:11 | Normal Exit | Switch.cs:10:10:10:11 | Normal Exit | 1 | @@ -1015,7 +1021,7 @@ | Switch.cs:27:13:27:39 | case ...: | Switch.cs:27:13:27:39 | case ...: | 1 | | Switch.cs:30:13:30:20 | After default: [match] | Switch.cs:29:17:29:23 | return ...; | 6 | | Switch.cs:35:10:35:11 | Entry | Switch.cs:35:10:35:11 | Exit | 7 | -| Switch.cs:44:10:44:11 | Entry | Switch.cs:48:13:48:23 | case ...: | 5 | +| Switch.cs:44:10:44:11 | Entry | Switch.cs:48:13:48:23 | case ...: | 6 | | Switch.cs:46:9:52:9 | After switch (...) {...} | Switch.cs:44:10:44:11 | Exit | 4 | | Switch.cs:48:13:48:23 | After case ...: [match] | Switch.cs:49:17:49:22 | break; | 4 | | Switch.cs:48:13:48:23 | After case ...: [no-match] | Switch.cs:50:13:50:39 | case ...: | 2 | @@ -1029,13 +1035,13 @@ | Switch.cs:59:13:59:19 | After case ...: [no-match] | Switch.cs:61:13:61:19 | case ...: | 2 | | Switch.cs:61:13:61:19 | After case ...: [match] | Switch.cs:62:17:62:22 | break; | 4 | | Switch.cs:61:13:61:19 | After case ...: [no-match] | Switch.cs:61:13:61:19 | After case ...: [no-match] | 1 | -| Switch.cs:66:10:66:11 | Entry | Switch.cs:70:13:70:23 | case ...: | 8 | +| Switch.cs:66:10:66:11 | Entry | Switch.cs:70:13:70:23 | case ...: | 9 | | Switch.cs:68:9:74:9 | After switch (...) {...} | Switch.cs:66:10:66:11 | Exit | 4 | | Switch.cs:70:13:70:23 | After case ...: [match] | Switch.cs:71:17:71:22 | break; | 4 | | Switch.cs:70:13:70:23 | After case ...: [no-match] | Switch.cs:72:13:72:20 | case ...: | 2 | | Switch.cs:72:13:72:20 | After case ...: [match] | Switch.cs:73:17:73:22 | break; | 4 | | Switch.cs:72:13:72:20 | After case ...: [no-match] | Switch.cs:72:13:72:20 | After case ...: [no-match] | 1 | -| Switch.cs:77:10:77:11 | Entry | Switch.cs:81:13:81:19 | case ...: | 5 | +| Switch.cs:77:10:77:11 | Entry | Switch.cs:81:13:81:19 | case ...: | 7 | | Switch.cs:77:10:77:11 | Normal Exit | Switch.cs:77:10:77:11 | Exit | 2 | | Switch.cs:79:9:87:9 | After switch (...) {...} | Switch.cs:88:9:88:21 | return ...; | 4 | | Switch.cs:81:13:81:19 | After case ...: [match] | Switch.cs:82:17:82:28 | return ...; | 5 | @@ -1044,11 +1050,11 @@ | Switch.cs:83:13:83:19 | After case ...: [no-match] | Switch.cs:83:13:83:19 | After case ...: [no-match] | 1 | | Switch.cs:84:21:84:25 | After ... > ... [false] | Switch.cs:86:17:86:28 | return ...; | 5 | | Switch.cs:84:21:84:25 | After ... > ... [true] | Switch.cs:85:21:85:26 | break; | 3 | -| Switch.cs:91:10:91:11 | Entry | Switch.cs:95:13:95:23 | case ...: | 5 | +| Switch.cs:91:10:91:11 | Entry | Switch.cs:95:13:95:23 | case ...: | 6 | | Switch.cs:91:10:91:11 | Normal Exit | Switch.cs:91:10:91:11 | Exit | 2 | | Switch.cs:95:13:95:23 | After case ...: [match] | Switch.cs:96:17:96:28 | return ...; | 5 | | Switch.cs:95:13:95:23 | After case ...: [no-match] | Switch.cs:98:9:98:21 | return ...; | 5 | -| Switch.cs:101:9:101:10 | Entry | Switch.cs:103:17:103:17 | access to parameter s | 5 | +| Switch.cs:101:9:101:10 | Entry | Switch.cs:103:17:103:17 | access to parameter s | 6 | | Switch.cs:101:9:101:10 | Normal Exit | Switch.cs:101:9:101:10 | Exit | 2 | | Switch.cs:103:17:103:17 | After access to parameter s [non-null] | Switch.cs:103:17:103:25 | access to property Length | 2 | | Switch.cs:103:17:103:17 | After access to parameter s [null] | Switch.cs:103:17:103:17 | After access to parameter s [null] | 1 | @@ -1058,7 +1064,7 @@ | Switch.cs:106:13:106:19 | After case ...: [match] | Switch.cs:106:21:106:29 | return ...; | 5 | | Switch.cs:106:13:106:19 | After case ...: [no-match] | Switch.cs:108:9:108:18 | return ...; | 8 | | Switch.cs:111:17:111:21 | Entry | Switch.cs:111:17:111:21 | Exit | 8 | -| Switch.cs:113:9:113:11 | Entry | Switch.cs:117:13:117:35 | case ...: | 8 | +| Switch.cs:113:9:113:11 | Entry | Switch.cs:117:13:117:35 | case ...: | 9 | | Switch.cs:113:9:113:11 | Normal Exit | Switch.cs:113:9:113:11 | Exit | 2 | | Switch.cs:115:9:119:9 | After switch (...) {...} | Switch.cs:120:9:120:18 | return ...; | 7 | | Switch.cs:117:13:117:35 | After case ...: [match] | Switch.cs:117:25:117:34 | ... == ... | 6 | @@ -1070,31 +1076,31 @@ | Switch.cs:118:13:118:34 | case ...: | Switch.cs:118:13:118:34 | case ...: | 1 | | Switch.cs:118:25:118:33 | After ... == ... [false] | Switch.cs:118:25:118:33 | After ... == ... [false] | 1 | | Switch.cs:118:25:118:33 | After ... == ... [true] | Switch.cs:118:36:118:44 | return ...; | 4 | -| Switch.cs:123:10:123:12 | Entry | Switch.cs:125:24:125:34 | ... => ... | 6 | +| Switch.cs:123:10:123:12 | Entry | Switch.cs:125:24:125:34 | ... => ... | 7 | | Switch.cs:123:10:123:12 | Normal Exit | Switch.cs:123:10:123:12 | Exit | 2 | | Switch.cs:125:13:125:48 | After ... switch { ... } [false] | Switch.cs:124:5:127:5 | After {...} | 3 | | Switch.cs:125:13:125:48 | After ... switch { ... } [true] | Switch.cs:126:13:126:19 | return ...; | 3 | | Switch.cs:125:24:125:34 | After ... => ... [match] | Switch.cs:125:34:125:34 | access to local variable b | 3 | | Switch.cs:125:24:125:34 | After ... => ... [no-match] | Switch.cs:125:42:125:46 | false | 5 | -| Switch.cs:129:12:129:14 | Entry | Switch.cs:131:28:131:40 | ... => ... | 7 | +| Switch.cs:129:12:129:14 | Entry | Switch.cs:131:28:131:40 | ... => ... | 8 | | Switch.cs:131:16:131:66 | After call to method ToString | Switch.cs:129:12:129:14 | Exit | 4 | | Switch.cs:131:17:131:53 | After ... switch { ... } [non-null] | Switch.cs:131:16:131:66 | call to method ToString | 2 | | Switch.cs:131:17:131:53 | After ... switch { ... } [null] | Switch.cs:131:17:131:53 | After ... switch { ... } [null] | 1 | | Switch.cs:131:28:131:40 | After ... => ... [match] | Switch.cs:131:40:131:40 | access to local variable s | 3 | | Switch.cs:131:28:131:40 | After ... => ... [no-match] | Switch.cs:131:48:131:51 | null | 5 | -| Switch.cs:134:9:134:11 | Entry | Switch.cs:139:13:139:19 | case ...: | 5 | +| Switch.cs:134:9:134:11 | Entry | Switch.cs:139:13:139:19 | case ...: | 6 | | Switch.cs:134:9:134:11 | Normal Exit | Switch.cs:134:9:134:11 | Exit | 2 | | Switch.cs:139:13:139:19 | After case ...: [match] | Switch.cs:139:21:139:29 | return ...; | 5 | | Switch.cs:139:13:139:19 | After case ...: [no-match] | Switch.cs:140:13:140:19 | case ...: | 2 | | Switch.cs:140:13:140:19 | After case ...: [match] | Switch.cs:140:21:140:29 | return ...; | 5 | | Switch.cs:140:13:140:19 | After case ...: [no-match] | Switch.cs:138:22:138:31 | return ...; | 9 | -| Switch.cs:144:9:144:11 | Entry | Switch.cs:148:13:148:19 | case ...: | 5 | +| Switch.cs:144:9:144:11 | Entry | Switch.cs:148:13:148:19 | case ...: | 6 | | Switch.cs:144:9:144:11 | Normal Exit | Switch.cs:144:9:144:11 | Exit | 2 | | Switch.cs:148:13:148:19 | After case ...: [match] | Switch.cs:148:21:148:29 | return ...; | 5 | | Switch.cs:148:13:148:19 | After case ...: [no-match] | Switch.cs:150:13:150:19 | case ...: | 2 | | Switch.cs:150:13:150:19 | After case ...: [match] | Switch.cs:150:21:150:29 | return ...; | 5 | | Switch.cs:150:13:150:19 | After case ...: [no-match] | Switch.cs:149:22:149:31 | return ...; | 9 | -| Switch.cs:154:10:154:12 | Entry | Switch.cs:156:28:156:38 | ... => ... | 8 | +| Switch.cs:154:10:154:12 | Entry | Switch.cs:156:28:156:38 | ... => ... | 9 | | Switch.cs:156:17:156:54 | After ... switch { ... } | Switch.cs:157:13:157:13 | access to parameter b | 6 | | Switch.cs:156:28:156:38 | After ... => ... [match] | Switch.cs:156:36:156:38 | "a" | 3 | | Switch.cs:156:28:156:38 | After ... => ... [no-match] | Switch.cs:156:41:156:52 | ... => ... | 2 | @@ -1103,7 +1109,7 @@ | Switch.cs:157:9:160:49 | After if (...) ... | Switch.cs:154:10:154:12 | Exit | 4 | | Switch.cs:157:13:157:13 | After access to parameter b [false] | Switch.cs:160:13:160:49 | After ...; | 14 | | Switch.cs:157:13:157:13 | After access to parameter b [true] | Switch.cs:158:13:158:49 | After ...; | 14 | -| Switch.cs:163:10:163:12 | Entry | Switch.cs:167:13:167:19 | case ...: | 5 | +| Switch.cs:163:10:163:12 | Entry | Switch.cs:167:13:167:19 | case ...: | 6 | | Switch.cs:165:9:177:9 | After switch (...) {...} | Switch.cs:163:10:163:12 | Exit | 4 | | Switch.cs:167:13:167:19 | After case ...: [match] | Switch.cs:167:18:167:18 | 1 | 2 | | Switch.cs:167:13:167:19 | After case ...: [no-match] | Switch.cs:168:13:168:19 | case ...: | 2 | @@ -1113,20 +1119,20 @@ | Switch.cs:171:13:171:19 | After case ...: [match] | Switch.cs:173:17:173:22 | break; | 10 | | Switch.cs:171:13:171:19 | After case ...: [no-match] | Switch.cs:176:17:176:22 | break; | 11 | | TypeAccesses.cs:1:7:1:18 | Entry | TypeAccesses.cs:1:7:1:18 | Exit | 11 | -| TypeAccesses.cs:3:10:3:10 | Entry | TypeAccesses.cs:7:13:7:22 | ... is ... | 26 | +| TypeAccesses.cs:3:10:3:10 | Entry | TypeAccesses.cs:7:13:7:22 | ... is ... | 27 | | TypeAccesses.cs:7:9:7:25 | After if (...) ... | TypeAccesses.cs:3:10:3:10 | Exit | 11 | | TypeAccesses.cs:7:13:7:22 | After ... is ... [false] | TypeAccesses.cs:7:13:7:22 | After ... is ... [false] | 1 | | TypeAccesses.cs:7:13:7:22 | [MatchTrue] ... is ... | TypeAccesses.cs:7:25:7:25 | ; | 4 | | VarDecls.cs:3:7:3:14 | Entry | VarDecls.cs:3:7:3:14 | Exit | 11 | -| VarDecls.cs:5:18:5:19 | Entry | VarDecls.cs:5:18:5:19 | Exit | 36 | -| VarDecls.cs:13:12:13:13 | Entry | VarDecls.cs:13:12:13:13 | Exit | 23 | -| VarDecls.cs:19:7:19:8 | Entry | VarDecls.cs:25:20:25:20 | access to parameter b | 26 | +| VarDecls.cs:5:18:5:19 | Entry | VarDecls.cs:5:18:5:19 | Exit | 37 | +| VarDecls.cs:13:12:13:13 | Entry | VarDecls.cs:13:12:13:13 | Exit | 24 | +| VarDecls.cs:19:7:19:8 | Entry | VarDecls.cs:25:20:25:20 | access to parameter b | 27 | | VarDecls.cs:25:20:25:20 | After access to parameter b [false] | VarDecls.cs:25:28:25:28 | access to local variable y | 2 | | VarDecls.cs:25:20:25:20 | After access to parameter b [true] | VarDecls.cs:25:24:25:24 | access to local variable x | 2 | | VarDecls.cs:25:20:25:28 | After ... ? ... : ... | VarDecls.cs:19:7:19:8 | Exit | 4 | | VarDecls.cs:28:11:28:11 | Entry | VarDecls.cs:28:11:28:11 | Exit | 11 | | VarDecls.cs:28:41:28:47 | Entry | VarDecls.cs:28:41:28:47 | Exit | 4 | -| cflow.cs:5:17:5:20 | Entry | cflow.cs:11:13:11:17 | ... > ... | 30 | +| cflow.cs:5:17:5:20 | Entry | cflow.cs:11:13:11:17 | ... > ... | 31 | | cflow.cs:11:9:12:49 | After if (...) ... | cflow.cs:14:9:17:9 | while (...) ... | 2 | | cflow.cs:11:13:11:17 | After ... > ... [false] | cflow.cs:11:13:11:17 | After ... > ... [false] | 1 | | cflow.cs:11:13:11:17 | After ... > ... [true] | cflow.cs:12:13:12:49 | After ...; | 7 | @@ -1151,7 +1157,7 @@ | cflow.cs:30:18:33:37 | After if (...) ... | cflow.cs:30:18:33:37 | After if (...) ... | 1 | | cflow.cs:30:22:30:31 | After ... == ... [false] | cflow.cs:33:17:33:37 | After ...; | 7 | | cflow.cs:30:22:30:31 | After ... == ... [true] | cflow.cs:31:17:31:42 | After ...; | 7 | -| cflow.cs:37:17:37:22 | Entry | cflow.cs:41:13:41:19 | case ...: | 5 | +| cflow.cs:37:17:37:22 | Entry | cflow.cs:41:13:41:19 | case ...: | 6 | | cflow.cs:37:17:37:22 | Exit | cflow.cs:37:17:37:22 | Exit | 1 | | cflow.cs:39:9:50:9 | After switch (...) {...} | cflow.cs:53:13:53:20 | case ...: | 4 | | cflow.cs:41:13:41:19 | After case ...: [match] | cflow.cs:43:17:43:28 | goto case ...; | 11 | @@ -1168,21 +1174,21 @@ | cflow.cs:62:13:62:19 | After case ...: [no-match] | cflow.cs:62:13:62:19 | After case ...: [no-match] | 1 | | cflow.cs:63:23:63:33 | After ... == ... [false] | cflow.cs:37:17:37:22 | Exceptional Exit | 8 | | cflow.cs:63:23:63:33 | After ... == ... [true] | cflow.cs:65:17:65:22 | break; | 5 | -| cflow.cs:70:18:70:18 | Entry | cflow.cs:72:13:72:21 | ... == ... | 7 | +| cflow.cs:70:18:70:18 | Entry | cflow.cs:72:13:72:21 | ... == ... | 8 | | cflow.cs:70:18:70:18 | Normal Exit | cflow.cs:70:18:70:18 | Exit | 2 | | cflow.cs:72:13:72:21 | After ... == ... [false] | cflow.cs:74:13:74:24 | ... > ... | 10 | | cflow.cs:72:13:72:21 | After ... == ... [true] | cflow.cs:73:13:73:19 | return ...; | 3 | | cflow.cs:74:9:81:9 | After if (...) ... | cflow.cs:71:5:82:5 | After {...} | 2 | | cflow.cs:74:13:74:24 | After ... > ... [false] | cflow.cs:79:9:81:9 | After {...} | 9 | | cflow.cs:74:13:74:24 | After ... > ... [true] | cflow.cs:75:9:77:9 | After {...} | 9 | -| cflow.cs:84:18:84:19 | Entry | cflow.cs:86:13:86:21 | ... != ... | 8 | +| cflow.cs:84:18:84:19 | Entry | cflow.cs:86:13:86:21 | ... != ... | 9 | | cflow.cs:86:9:87:33 | After if (...) ... | cflow.cs:84:18:84:19 | Exit | 4 | | cflow.cs:86:13:86:21 | After ... != ... [false] | cflow.cs:86:13:86:21 | After ... != ... [false] | 1 | | cflow.cs:86:13:86:21 | After ... != ... [true] | cflow.cs:86:26:86:37 | ... > ... | 8 | | cflow.cs:86:13:86:37 | After ... && ... [false] | cflow.cs:86:13:86:37 | After ... && ... [false] | 1 | | cflow.cs:86:26:86:37 | After ... > ... [false] | cflow.cs:86:26:86:37 | After ... > ... [false] | 1 | | cflow.cs:86:26:86:37 | After ... > ... [true] | cflow.cs:87:13:87:33 | After ...; | 8 | -| cflow.cs:90:18:90:19 | Entry | cflow.cs:92:13:92:27 | call to method Equals | 7 | +| cflow.cs:90:18:90:19 | Entry | cflow.cs:92:13:92:27 | call to method Equals | 8 | | cflow.cs:90:18:90:19 | Exit | cflow.cs:90:18:90:19 | Exit | 1 | | cflow.cs:92:13:92:27 | After call to method Equals [false] | cflow.cs:96:13:96:25 | ... != ... | 16 | | cflow.cs:92:13:92:27 | After call to method Equals [true] | cflow.cs:90:18:90:19 | Exceptional Exit | 8 | @@ -1195,22 +1201,22 @@ | cflow.cs:102:9:103:36 | After if (...) ... | cflow.cs:90:18:90:19 | Normal Exit | 3 | | cflow.cs:102:13:102:29 | After ... != ... [false] | cflow.cs:102:13:102:29 | After ... != ... [false] | 1 | | cflow.cs:102:13:102:29 | After ... != ... [true] | cflow.cs:103:13:103:36 | After ...; | 10 | -| cflow.cs:106:18:106:19 | Entry | cflow.cs:108:13:108:21 | ... != ... | 7 | +| cflow.cs:106:18:106:19 | Entry | cflow.cs:108:13:108:21 | ... != ... | 8 | | cflow.cs:108:13:108:21 | After ... != ... [false] | cflow.cs:106:18:106:19 | Exit | 11 | | cflow.cs:108:13:108:21 | After ... != ... [true] | cflow.cs:110:13:113:13 | while (...) ... | 3 | | cflow.cs:110:13:113:13 | [LoopHeader] while (...) ... | cflow.cs:111:13:113:13 | After {...} | 11 | -| cflow.cs:119:20:119:21 | Entry | cflow.cs:119:20:119:21 | Exit | 25 | +| cflow.cs:119:20:119:21 | Entry | cflow.cs:119:20:119:21 | Exit | 26 | | cflow.cs:127:19:127:21 | Entry | cflow.cs:127:32:127:44 | ... == ... | 11 | | cflow.cs:127:32:127:44 | After ... == ... [false] | cflow.cs:127:53:127:57 | After access to field Field | 5 | | cflow.cs:127:32:127:44 | After ... == ... [true] | cflow.cs:127:48:127:49 | "" | 2 | | cflow.cs:127:32:127:57 | After ... ? ... : ... | cflow.cs:127:19:127:21 | Exit | 4 | -| cflow.cs:127:62:127:64 | Entry | cflow.cs:127:62:127:64 | Exit | 15 | -| cflow.cs:129:5:129:15 | Entry | cflow.cs:129:5:129:15 | Exit | 22 | -| cflow.cs:134:5:134:15 | Entry | cflow.cs:134:5:134:15 | Exit | 15 | +| cflow.cs:127:62:127:64 | Entry | cflow.cs:127:62:127:64 | Exit | 16 | +| cflow.cs:129:5:129:15 | Entry | cflow.cs:129:5:129:15 | Exit | 23 | +| cflow.cs:134:5:134:15 | Entry | cflow.cs:134:5:134:15 | Exit | 16 | | cflow.cs:136:12:136:22 | Entry | cflow.cs:136:12:136:22 | Exit | 12 | -| cflow.cs:138:40:138:40 | Entry | cflow.cs:138:40:138:40 | Exit | 13 | -| cflow.cs:144:33:144:35 | Entry | cflow.cs:144:33:144:35 | Exit | 14 | -| cflow.cs:144:56:144:58 | Entry | cflow.cs:144:56:144:58 | Exit | 4 | +| cflow.cs:138:40:138:40 | Entry | cflow.cs:138:40:138:40 | Exit | 15 | +| cflow.cs:144:33:144:35 | Entry | cflow.cs:144:33:144:35 | Exit | 15 | +| cflow.cs:144:56:144:58 | Entry | cflow.cs:144:56:144:58 | Exit | 6 | | cflow.cs:146:10:146:12 | Entry | cflow.cs:149:9:150:33 | for (...;...;...) ... | 10 | | cflow.cs:149:16:149:21 | After ... < ... [false] | cflow.cs:152:9:157:9 | for (...;...;...) ... | 3 | | cflow.cs:149:16:149:21 | After ... < ... [true] | cflow.cs:149:24:149:26 | After ++... | 12 | @@ -1228,8 +1234,8 @@ | cflow.cs:173:32:173:41 | After ... < ... [true] | cflow.cs:173:49:173:51 | After ...++ | 22 | | cflow.cs:173:32:173:41 | Before ... < ... | cflow.cs:173:32:173:41 | ... < ... | 8 | | cflow.cs:179:10:179:16 | Entry | cflow.cs:179:10:179:16 | Exit | 19 | -| cflow.cs:181:28:181:37 | Entry | cflow.cs:181:28:181:37 | Exit | 8 | -| cflow.cs:182:28:182:61 | Entry | cflow.cs:182:28:182:61 | Exit | 11 | +| cflow.cs:181:28:181:37 | Entry | cflow.cs:181:28:181:37 | Exit | 9 | +| cflow.cs:182:28:182:61 | Entry | cflow.cs:182:28:182:61 | Exit | 12 | | cflow.cs:185:10:185:18 | Entry | cflow.cs:187:13:187:18 | ... == ... | 9 | | cflow.cs:187:9:190:52 | After if (...) ... | cflow.cs:185:10:185:18 | Exit | 4 | | cflow.cs:187:13:187:18 | After ... == ... [false] | cflow.cs:187:23:187:28 | ... == ... | 5 | @@ -1306,15 +1312,15 @@ | cflow.cs:264:25:264:30 | Before ... < ... | cflow.cs:264:25:264:30 | ... < ... | 4 | | cflow.cs:268:9:276:9 | After try {...} ... | cflow.cs:262:5:277:5 | After {...} | 2 | | cflow.cs:282:5:282:18 | Entry | cflow.cs:282:5:282:18 | Exit | 11 | -| cflow.cs:284:5:284:18 | Entry | cflow.cs:284:5:284:18 | Exit | 7 | -| cflow.cs:286:5:286:18 | Entry | cflow.cs:286:5:286:18 | Exit | 11 | +| cflow.cs:284:5:284:18 | Entry | cflow.cs:284:5:284:18 | Exit | 8 | +| cflow.cs:286:5:286:18 | Entry | cflow.cs:286:5:286:18 | Exit | 12 | | cflow.cs:289:7:289:18 | Entry | cflow.cs:289:7:289:18 | Exit | 11 | -| cflow.cs:291:12:291:12 | Entry | cflow.cs:291:12:291:12 | Exit | 8 | -| cflow.cs:296:5:296:25 | Entry | cflow.cs:296:5:296:25 | Exit | 11 | -| cflow.cs:298:10:298:10 | Entry | cflow.cs:300:46:300:50 | ... > ... | 11 | +| cflow.cs:291:12:291:12 | Entry | cflow.cs:291:12:291:12 | Exit | 9 | +| cflow.cs:296:5:296:25 | Entry | cflow.cs:296:5:296:25 | Exit | 14 | +| cflow.cs:298:10:298:10 | Entry | cflow.cs:300:46:300:50 | ... > ... | 14 | | cflow.cs:300:44:300:64 | After ... && ... | cflow.cs:298:10:298:10 | Exit | 8 | | cflow.cs:300:46:300:50 | After ... > ... [false] | cflow.cs:300:56:300:64 | After ... != ... | 7 | | cflow.cs:300:46:300:50 | After ... > ... [true] | cflow.cs:300:44:300:51 | After !... [false] | 2 | | cflow.cs:304:7:304:18 | Entry | cflow.cs:304:7:304:18 | Exit | 11 | | cflow.cs:306:60:310:5 | Entry | cflow.cs:306:60:310:5 | Exit | 4 | -| cflow.cs:306:60:310:5 | Entry | cflow.cs:306:60:310:5 | Exit | 14 | +| cflow.cs:306:60:310:5 | Entry | cflow.cs:306:60:310:5 | Exit | 16 | diff --git a/csharp/ql/test/library-tests/controlflow/graph/Condition.expected b/csharp/ql/test/library-tests/controlflow/graph/Condition.expected index 0e5259f89a0a..94ae54555176 100644 --- a/csharp/ql/test/library-tests/controlflow/graph/Condition.expected +++ b/csharp/ql/test/library-tests/controlflow/graph/Condition.expected @@ -260,6 +260,10 @@ conditionBlock | Conditions.cs:143:10:143:12 | Entry | Conditions.cs:145:17:145:17 | After access to parameter b [true] | true | | Conditions.cs:145:17:145:29 | After ... ? ... : ... | Conditions.cs:146:13:146:13 | After access to parameter b [false] | false | | Conditions.cs:145:17:145:29 | After ... ? ... : ... | Conditions.cs:146:13:146:13 | After access to parameter b [true] | true | +| DefaultParam.cs:3:12:3:13 | Entry | DefaultParam.cs:3:30:3:30 | After s [match] | true | +| DefaultParam.cs:3:12:3:13 | Entry | DefaultParam.cs:3:30:3:30 | After s [no-match] | false | +| DefaultParam.cs:3:42:3:42 | i | DefaultParam.cs:3:42:3:42 | After i [match] | true | +| DefaultParam.cs:3:42:3:42 | i | DefaultParam.cs:3:42:3:42 | After i [no-match] | false | | ExitMethods.cs:38:10:38:11 | Entry | ExitMethods.cs:44:9:47:9 | After catch (...) {...} [match] | true | | ExitMethods.cs:38:10:38:11 | Entry | ExitMethods.cs:44:9:47:9 | After catch (...) {...} [no-match] | false | | ExitMethods.cs:38:10:38:11 | Entry | ExitMethods.cs:48:9:51:9 | After catch (...) {...} [match] | false | diff --git a/csharp/ql/test/library-tests/controlflow/graph/Dominance.expected b/csharp/ql/test/library-tests/controlflow/graph/Dominance.expected index f942240086ae..51d4721caeac 100644 --- a/csharp/ql/test/library-tests/controlflow/graph/Dominance.expected +++ b/csharp/ql/test/library-tests/controlflow/graph/Dominance.expected @@ -9,20 +9,26 @@ dominance | AccessorCalls.cs:1:7:1:19 | call to method | AccessorCalls.cs:1:7:1:19 | After call to method | | AccessorCalls.cs:1:7:1:19 | this access | AccessorCalls.cs:1:7:1:19 | call to method | | AccessorCalls.cs:1:7:1:19 | {...} | AccessorCalls.cs:1:7:1:19 | Normal Exit | -| AccessorCalls.cs:5:23:5:25 | Entry | AccessorCalls.cs:5:30:5:30 | access to parameter i | +| AccessorCalls.cs:5:18:5:18 | i | AccessorCalls.cs:5:30:5:30 | access to parameter i | +| AccessorCalls.cs:5:18:5:18 | i | AccessorCalls.cs:5:33:5:35 | value | +| AccessorCalls.cs:5:23:5:25 | Entry | AccessorCalls.cs:5:18:5:18 | i | | AccessorCalls.cs:5:23:5:25 | Normal Exit | AccessorCalls.cs:5:23:5:25 | Exit | | AccessorCalls.cs:5:30:5:30 | access to parameter i | AccessorCalls.cs:5:23:5:25 | Normal Exit | -| AccessorCalls.cs:5:33:5:35 | Entry | AccessorCalls.cs:5:37:5:39 | {...} | +| AccessorCalls.cs:5:33:5:35 | Entry | AccessorCalls.cs:5:18:5:18 | i | | AccessorCalls.cs:5:33:5:35 | Normal Exit | AccessorCalls.cs:5:33:5:35 | Exit | +| AccessorCalls.cs:5:33:5:35 | value | AccessorCalls.cs:5:37:5:39 | {...} | | AccessorCalls.cs:5:37:5:39 | {...} | AccessorCalls.cs:5:33:5:35 | Normal Exit | -| AccessorCalls.cs:7:32:7:34 | Entry | AccessorCalls.cs:7:36:7:38 | {...} | +| AccessorCalls.cs:7:32:7:34 | Entry | AccessorCalls.cs:7:32:7:34 | value | | AccessorCalls.cs:7:32:7:34 | Normal Exit | AccessorCalls.cs:7:32:7:34 | Exit | +| AccessorCalls.cs:7:32:7:34 | value | AccessorCalls.cs:7:36:7:38 | {...} | | AccessorCalls.cs:7:36:7:38 | {...} | AccessorCalls.cs:7:32:7:34 | Normal Exit | -| AccessorCalls.cs:7:40:7:45 | Entry | AccessorCalls.cs:7:47:7:49 | {...} | +| AccessorCalls.cs:7:40:7:45 | Entry | AccessorCalls.cs:7:40:7:45 | value | | AccessorCalls.cs:7:40:7:45 | Normal Exit | AccessorCalls.cs:7:40:7:45 | Exit | +| AccessorCalls.cs:7:40:7:45 | value | AccessorCalls.cs:7:47:7:49 | {...} | | AccessorCalls.cs:7:47:7:49 | {...} | AccessorCalls.cs:7:40:7:45 | Normal Exit | -| AccessorCalls.cs:10:10:10:11 | Entry | AccessorCalls.cs:11:5:17:5 | {...} | +| AccessorCalls.cs:10:10:10:11 | Entry | AccessorCalls.cs:10:26:10:26 | e | | AccessorCalls.cs:10:10:10:11 | Normal Exit | AccessorCalls.cs:10:10:10:11 | Exit | +| AccessorCalls.cs:10:26:10:26 | e | AccessorCalls.cs:11:5:17:5 | {...} | | AccessorCalls.cs:11:5:17:5 | After {...} | AccessorCalls.cs:10:10:10:11 | Normal Exit | | AccessorCalls.cs:11:5:17:5 | {...} | AccessorCalls.cs:12:9:12:32 | ...; | | AccessorCalls.cs:12:9:12:12 | this access | AccessorCalls.cs:12:9:12:18 | access to field Field | @@ -86,8 +92,9 @@ dominance | AccessorCalls.cs:16:9:16:24 | ...; | AccessorCalls.cs:16:9:16:23 | Before ... -= ... | | AccessorCalls.cs:16:9:16:24 | After ...; | AccessorCalls.cs:11:5:17:5 | After {...} | | AccessorCalls.cs:16:23:16:23 | access to parameter e | AccessorCalls.cs:16:9:16:23 | ... -= ... | -| AccessorCalls.cs:19:10:19:11 | Entry | AccessorCalls.cs:20:5:26:5 | {...} | +| AccessorCalls.cs:19:10:19:11 | Entry | AccessorCalls.cs:19:26:19:26 | e | | AccessorCalls.cs:19:10:19:11 | Normal Exit | AccessorCalls.cs:19:10:19:11 | Exit | +| AccessorCalls.cs:19:26:19:26 | e | AccessorCalls.cs:20:5:26:5 | {...} | | AccessorCalls.cs:20:5:26:5 | After {...} | AccessorCalls.cs:19:10:19:11 | Normal Exit | | AccessorCalls.cs:20:5:26:5 | {...} | AccessorCalls.cs:21:9:21:36 | ...; | | AccessorCalls.cs:21:9:21:12 | this access | AccessorCalls.cs:21:9:21:14 | access to field x | @@ -356,8 +363,9 @@ dominance | AccessorCalls.cs:53:22:53:30 | Before access to indexer | AccessorCalls.cs:53:22:53:27 | Before access to field x | | AccessorCalls.cs:53:22:53:30 | access to indexer | AccessorCalls.cs:53:22:53:30 | After access to indexer | | AccessorCalls.cs:53:29:53:29 | 0 | AccessorCalls.cs:53:22:53:30 | access to indexer | -| AccessorCalls.cs:56:10:56:11 | Entry | AccessorCalls.cs:57:5:59:5 | {...} | +| AccessorCalls.cs:56:10:56:11 | Entry | AccessorCalls.cs:56:17:56:17 | i | | AccessorCalls.cs:56:10:56:11 | Normal Exit | AccessorCalls.cs:56:10:56:11 | Exit | +| AccessorCalls.cs:56:17:56:17 | i | AccessorCalls.cs:57:5:59:5 | {...} | | AccessorCalls.cs:57:5:59:5 | After {...} | AccessorCalls.cs:56:10:56:11 | Normal Exit | | AccessorCalls.cs:57:5:59:5 | {...} | AccessorCalls.cs:58:9:58:86 | ...; | | AccessorCalls.cs:58:9:58:45 | (..., ...) | AccessorCalls.cs:58:9:58:45 | After (..., ...) | @@ -405,8 +413,9 @@ dominance | AccessorCalls.cs:58:77:58:83 | Before access to indexer | AccessorCalls.cs:58:77:58:80 | this access | | AccessorCalls.cs:58:77:58:83 | access to indexer | AccessorCalls.cs:58:77:58:83 | After access to indexer | | AccessorCalls.cs:58:82:58:82 | 1 | AccessorCalls.cs:58:77:58:83 | access to indexer | -| AccessorCalls.cs:61:10:61:11 | Entry | AccessorCalls.cs:62:5:64:5 | {...} | +| AccessorCalls.cs:61:10:61:11 | Entry | AccessorCalls.cs:61:17:61:17 | i | | AccessorCalls.cs:61:10:61:11 | Normal Exit | AccessorCalls.cs:61:10:61:11 | Exit | +| AccessorCalls.cs:61:17:61:17 | i | AccessorCalls.cs:62:5:64:5 | {...} | | AccessorCalls.cs:62:5:64:5 | After {...} | AccessorCalls.cs:61:10:61:11 | Normal Exit | | AccessorCalls.cs:62:5:64:5 | {...} | AccessorCalls.cs:63:9:63:98 | ...; | | AccessorCalls.cs:63:9:63:51 | (..., ...) | AccessorCalls.cs:63:9:63:51 | After (..., ...) | @@ -472,8 +481,11 @@ dominance | AccessorCalls.cs:63:87:63:95 | Before access to indexer | AccessorCalls.cs:63:87:63:92 | Before access to field x | | AccessorCalls.cs:63:87:63:95 | access to indexer | AccessorCalls.cs:63:87:63:95 | After access to indexer | | AccessorCalls.cs:63:94:63:94 | 1 | AccessorCalls.cs:63:87:63:95 | access to indexer | -| AccessorCalls.cs:66:10:66:11 | Entry | AccessorCalls.cs:67:5:74:5 | {...} | +| AccessorCalls.cs:66:10:66:11 | Entry | AccessorCalls.cs:66:20:66:20 | o | | AccessorCalls.cs:66:10:66:11 | Normal Exit | AccessorCalls.cs:66:10:66:11 | Exit | +| AccessorCalls.cs:66:20:66:20 | o | AccessorCalls.cs:66:27:66:27 | i | +| AccessorCalls.cs:66:27:66:27 | i | AccessorCalls.cs:66:43:66:43 | e | +| AccessorCalls.cs:66:43:66:43 | e | AccessorCalls.cs:67:5:74:5 | {...} | | AccessorCalls.cs:67:5:74:5 | After {...} | AccessorCalls.cs:66:10:66:11 | Normal Exit | | AccessorCalls.cs:67:5:74:5 | {...} | AccessorCalls.cs:68:9:68:22 | ... ...; | | AccessorCalls.cs:68:9:68:22 | ... ...; | AccessorCalls.cs:68:17:68:21 | Before dynamic d = ... | @@ -639,7 +651,8 @@ dominance | Assert.cs:5:7:5:17 | call to method | Assert.cs:5:7:5:17 | After call to method | | Assert.cs:5:7:5:17 | this access | Assert.cs:5:7:5:17 | call to method | | Assert.cs:5:7:5:17 | {...} | Assert.cs:5:7:5:17 | Normal Exit | -| Assert.cs:7:10:7:11 | Entry | Assert.cs:8:5:12:5 | {...} | +| Assert.cs:7:10:7:11 | Entry | Assert.cs:7:18:7:18 | b | +| Assert.cs:7:18:7:18 | b | Assert.cs:8:5:12:5 | {...} | | Assert.cs:8:5:12:5 | After {...} | Assert.cs:7:10:7:11 | Normal Exit | | Assert.cs:8:5:12:5 | {...} | Assert.cs:9:9:9:33 | ... ...; | | Assert.cs:9:9:9:33 | ... ...; | Assert.cs:9:16:9:32 | Before String s = ... | @@ -674,7 +687,8 @@ dominance | Assert.cs:11:27:11:34 | After access to property Length | Assert.cs:11:9:11:35 | call to method WriteLine | | Assert.cs:11:27:11:34 | Before access to property Length | Assert.cs:11:27:11:27 | access to local variable s | | Assert.cs:11:27:11:34 | access to property Length | Assert.cs:11:27:11:34 | After access to property Length | -| Assert.cs:14:10:14:11 | Entry | Assert.cs:15:5:19:5 | {...} | +| Assert.cs:14:10:14:11 | Entry | Assert.cs:14:18:14:18 | b | +| Assert.cs:14:18:14:18 | b | Assert.cs:15:5:19:5 | {...} | | Assert.cs:15:5:19:5 | After {...} | Assert.cs:14:10:14:11 | Normal Exit | | Assert.cs:15:5:19:5 | {...} | Assert.cs:16:9:16:33 | ... ...; | | Assert.cs:16:9:16:33 | ... ...; | Assert.cs:16:16:16:32 | Before String s = ... | @@ -705,7 +719,8 @@ dominance | Assert.cs:18:27:18:34 | After access to property Length | Assert.cs:18:9:18:35 | call to method WriteLine | | Assert.cs:18:27:18:34 | Before access to property Length | Assert.cs:18:27:18:27 | access to local variable s | | Assert.cs:18:27:18:34 | access to property Length | Assert.cs:18:27:18:34 | After access to property Length | -| Assert.cs:21:10:21:11 | Entry | Assert.cs:22:5:26:5 | {...} | +| Assert.cs:21:10:21:11 | Entry | Assert.cs:21:18:21:18 | b | +| Assert.cs:21:18:21:18 | b | Assert.cs:22:5:26:5 | {...} | | Assert.cs:22:5:26:5 | After {...} | Assert.cs:21:10:21:11 | Normal Exit | | Assert.cs:22:5:26:5 | {...} | Assert.cs:23:9:23:33 | ... ...; | | Assert.cs:23:9:23:33 | ... ...; | Assert.cs:23:16:23:32 | Before String s = ... | @@ -736,7 +751,8 @@ dominance | Assert.cs:25:27:25:34 | After access to property Length | Assert.cs:25:9:25:35 | call to method WriteLine | | Assert.cs:25:27:25:34 | Before access to property Length | Assert.cs:25:27:25:27 | access to local variable s | | Assert.cs:25:27:25:34 | access to property Length | Assert.cs:25:27:25:34 | After access to property Length | -| Assert.cs:28:10:28:11 | Entry | Assert.cs:29:5:33:5 | {...} | +| Assert.cs:28:10:28:11 | Entry | Assert.cs:28:18:28:18 | b | +| Assert.cs:28:18:28:18 | b | Assert.cs:29:5:33:5 | {...} | | Assert.cs:29:5:33:5 | After {...} | Assert.cs:28:10:28:11 | Normal Exit | | Assert.cs:29:5:33:5 | {...} | Assert.cs:30:9:30:33 | ... ...; | | Assert.cs:30:9:30:33 | ... ...; | Assert.cs:30:16:30:32 | Before String s = ... | @@ -771,7 +787,8 @@ dominance | Assert.cs:32:27:32:34 | After access to property Length | Assert.cs:32:9:32:35 | call to method WriteLine | | Assert.cs:32:27:32:34 | Before access to property Length | Assert.cs:32:27:32:27 | access to local variable s | | Assert.cs:32:27:32:34 | access to property Length | Assert.cs:32:27:32:34 | After access to property Length | -| Assert.cs:35:10:35:11 | Entry | Assert.cs:36:5:40:5 | {...} | +| Assert.cs:35:10:35:11 | Entry | Assert.cs:35:18:35:18 | b | +| Assert.cs:35:18:35:18 | b | Assert.cs:36:5:40:5 | {...} | | Assert.cs:36:5:40:5 | After {...} | Assert.cs:35:10:35:11 | Normal Exit | | Assert.cs:36:5:40:5 | {...} | Assert.cs:37:9:37:33 | ... ...; | | Assert.cs:37:9:37:33 | ... ...; | Assert.cs:37:16:37:32 | Before String s = ... | @@ -806,7 +823,8 @@ dominance | Assert.cs:39:27:39:34 | After access to property Length | Assert.cs:39:9:39:35 | call to method WriteLine | | Assert.cs:39:27:39:34 | Before access to property Length | Assert.cs:39:27:39:27 | access to local variable s | | Assert.cs:39:27:39:34 | access to property Length | Assert.cs:39:27:39:34 | After access to property Length | -| Assert.cs:42:10:42:11 | Entry | Assert.cs:43:5:47:5 | {...} | +| Assert.cs:42:10:42:11 | Entry | Assert.cs:42:18:42:18 | b | +| Assert.cs:42:18:42:18 | b | Assert.cs:43:5:47:5 | {...} | | Assert.cs:43:5:47:5 | After {...} | Assert.cs:42:10:42:11 | Normal Exit | | Assert.cs:43:5:47:5 | {...} | Assert.cs:44:9:44:33 | ... ...; | | Assert.cs:44:9:44:33 | ... ...; | Assert.cs:44:16:44:32 | Before String s = ... | @@ -841,7 +859,8 @@ dominance | Assert.cs:46:27:46:34 | After access to property Length | Assert.cs:46:9:46:35 | call to method WriteLine | | Assert.cs:46:27:46:34 | Before access to property Length | Assert.cs:46:27:46:27 | access to local variable s | | Assert.cs:46:27:46:34 | access to property Length | Assert.cs:46:27:46:34 | After access to property Length | -| Assert.cs:49:10:49:11 | Entry | Assert.cs:50:5:54:5 | {...} | +| Assert.cs:49:10:49:11 | Entry | Assert.cs:49:18:49:18 | b | +| Assert.cs:49:18:49:18 | b | Assert.cs:50:5:54:5 | {...} | | Assert.cs:50:5:54:5 | After {...} | Assert.cs:49:10:49:11 | Normal Exit | | Assert.cs:50:5:54:5 | {...} | Assert.cs:51:9:51:33 | ... ...; | | Assert.cs:51:9:51:33 | ... ...; | Assert.cs:51:16:51:32 | Before String s = ... | @@ -876,7 +895,8 @@ dominance | Assert.cs:53:27:53:34 | After access to property Length | Assert.cs:53:9:53:35 | call to method WriteLine | | Assert.cs:53:27:53:34 | Before access to property Length | Assert.cs:53:27:53:27 | access to local variable s | | Assert.cs:53:27:53:34 | access to property Length | Assert.cs:53:27:53:34 | After access to property Length | -| Assert.cs:56:10:56:11 | Entry | Assert.cs:57:5:61:5 | {...} | +| Assert.cs:56:10:56:11 | Entry | Assert.cs:56:18:56:18 | b | +| Assert.cs:56:18:56:18 | b | Assert.cs:57:5:61:5 | {...} | | Assert.cs:57:5:61:5 | After {...} | Assert.cs:56:10:56:11 | Normal Exit | | Assert.cs:57:5:61:5 | {...} | Assert.cs:58:9:58:33 | ... ...; | | Assert.cs:58:9:58:33 | ... ...; | Assert.cs:58:16:58:32 | Before String s = ... | @@ -914,7 +934,8 @@ dominance | Assert.cs:60:27:60:34 | After access to property Length | Assert.cs:60:9:60:35 | call to method WriteLine | | Assert.cs:60:27:60:34 | Before access to property Length | Assert.cs:60:27:60:27 | access to local variable s | | Assert.cs:60:27:60:34 | access to property Length | Assert.cs:60:27:60:34 | After access to property Length | -| Assert.cs:63:10:63:11 | Entry | Assert.cs:64:5:68:5 | {...} | +| Assert.cs:63:10:63:11 | Entry | Assert.cs:63:18:63:18 | b | +| Assert.cs:63:18:63:18 | b | Assert.cs:64:5:68:5 | {...} | | Assert.cs:64:5:68:5 | After {...} | Assert.cs:63:10:63:11 | Normal Exit | | Assert.cs:64:5:68:5 | {...} | Assert.cs:65:9:65:33 | ... ...; | | Assert.cs:65:9:65:33 | ... ...; | Assert.cs:65:16:65:32 | Before String s = ... | @@ -952,7 +973,8 @@ dominance | Assert.cs:67:27:67:34 | After access to property Length | Assert.cs:67:9:67:35 | call to method WriteLine | | Assert.cs:67:27:67:34 | Before access to property Length | Assert.cs:67:27:67:27 | access to local variable s | | Assert.cs:67:27:67:34 | access to property Length | Assert.cs:67:27:67:34 | After access to property Length | -| Assert.cs:70:10:70:12 | Entry | Assert.cs:71:5:75:5 | {...} | +| Assert.cs:70:10:70:12 | Entry | Assert.cs:70:19:70:19 | b | +| Assert.cs:70:19:70:19 | b | Assert.cs:71:5:75:5 | {...} | | Assert.cs:71:5:75:5 | After {...} | Assert.cs:70:10:70:12 | Normal Exit | | Assert.cs:71:5:75:5 | {...} | Assert.cs:72:9:72:33 | ... ...; | | Assert.cs:72:9:72:33 | ... ...; | Assert.cs:72:16:72:32 | Before String s = ... | @@ -990,7 +1012,8 @@ dominance | Assert.cs:74:27:74:34 | After access to property Length | Assert.cs:74:9:74:35 | call to method WriteLine | | Assert.cs:74:27:74:34 | Before access to property Length | Assert.cs:74:27:74:27 | access to local variable s | | Assert.cs:74:27:74:34 | access to property Length | Assert.cs:74:27:74:34 | After access to property Length | -| Assert.cs:77:10:77:12 | Entry | Assert.cs:78:5:82:5 | {...} | +| Assert.cs:77:10:77:12 | Entry | Assert.cs:77:19:77:19 | b | +| Assert.cs:77:19:77:19 | b | Assert.cs:78:5:82:5 | {...} | | Assert.cs:78:5:82:5 | After {...} | Assert.cs:77:10:77:12 | Normal Exit | | Assert.cs:78:5:82:5 | {...} | Assert.cs:79:9:79:33 | ... ...; | | Assert.cs:79:9:79:33 | ... ...; | Assert.cs:79:16:79:32 | Before String s = ... | @@ -1028,7 +1051,8 @@ dominance | Assert.cs:81:27:81:34 | After access to property Length | Assert.cs:81:9:81:35 | call to method WriteLine | | Assert.cs:81:27:81:34 | Before access to property Length | Assert.cs:81:27:81:27 | access to local variable s | | Assert.cs:81:27:81:34 | access to property Length | Assert.cs:81:27:81:34 | After access to property Length | -| Assert.cs:84:10:84:12 | Entry | Assert.cs:85:5:129:5 | {...} | +| Assert.cs:84:10:84:12 | Entry | Assert.cs:84:19:84:19 | b | +| Assert.cs:84:19:84:19 | b | Assert.cs:85:5:129:5 | {...} | | Assert.cs:85:5:129:5 | After {...} | Assert.cs:84:10:84:12 | Normal Exit | | Assert.cs:85:5:129:5 | {...} | Assert.cs:86:9:86:33 | ... ...; | | Assert.cs:86:9:86:33 | ... ...; | Assert.cs:86:16:86:32 | Before String s = ... | @@ -1381,10 +1405,16 @@ dominance | Assert.cs:128:27:128:34 | After access to property Length | Assert.cs:128:9:128:35 | call to method WriteLine | | Assert.cs:128:27:128:34 | Before access to property Length | Assert.cs:128:27:128:27 | access to local variable s | | Assert.cs:128:27:128:34 | access to property Length | Assert.cs:128:27:128:34 | After access to property Length | -| Assert.cs:131:18:131:32 | Entry | Assert.cs:135:5:136:5 | {...} | +| Assert.cs:131:18:131:32 | Entry | Assert.cs:132:74:132:83 | condition1 | | Assert.cs:131:18:131:32 | Normal Exit | Assert.cs:131:18:131:32 | Exit | +| Assert.cs:132:74:132:83 | condition1 | Assert.cs:133:73:133:82 | condition2 | +| Assert.cs:133:73:133:82 | condition2 | Assert.cs:134:17:134:28 | nonCondition | +| Assert.cs:134:17:134:28 | nonCondition | Assert.cs:135:5:136:5 | {...} | | Assert.cs:135:5:136:5 | {...} | Assert.cs:131:18:131:32 | Normal Exit | -| Assert.cs:138:10:138:12 | Entry | Assert.cs:139:5:142:5 | {...} | +| Assert.cs:138:10:138:12 | Entry | Assert.cs:138:19:138:20 | b1 | +| Assert.cs:138:19:138:20 | b1 | Assert.cs:138:28:138:29 | b2 | +| Assert.cs:138:28:138:29 | b2 | Assert.cs:138:37:138:38 | b3 | +| Assert.cs:138:37:138:38 | b3 | Assert.cs:139:5:142:5 | {...} | | Assert.cs:139:5:142:5 | {...} | Assert.cs:140:9:140:36 | ...; | | Assert.cs:140:9:140:35 | After call to method AssertTrueFalse | Assert.cs:140:9:140:36 | After ...; | | Assert.cs:140:9:140:35 | Before call to method AssertTrueFalse | Assert.cs:140:9:140:35 | this access | @@ -1469,17 +1499,22 @@ dominance | Assignments.cs:14:9:14:36 | ...; | Assignments.cs:14:9:14:35 | Before ... += ... | | Assignments.cs:14:9:14:36 | After ...; | Assignments.cs:4:5:15:5 | After {...} | | Assignments.cs:14:18:14:35 | (...) => ... | Assignments.cs:14:9:14:35 | ... += ... | -| Assignments.cs:14:18:14:35 | Entry | Assignments.cs:14:33:14:35 | {...} | +| Assignments.cs:14:18:14:35 | Entry | Assignments.cs:14:19:14:24 | sender | | Assignments.cs:14:18:14:35 | Normal Exit | Assignments.cs:14:18:14:35 | Exit | +| Assignments.cs:14:19:14:24 | sender | Assignments.cs:14:27:14:27 | e | +| Assignments.cs:14:27:14:27 | e | Assignments.cs:14:33:14:35 | {...} | | Assignments.cs:14:33:14:35 | {...} | Assignments.cs:14:18:14:35 | Normal Exit | -| Assignments.cs:17:40:17:40 | Entry | Assignments.cs:18:5:20:5 | {...} | +| Assignments.cs:17:40:17:40 | Entry | Assignments.cs:17:54:17:54 | x | | Assignments.cs:17:40:17:40 | Normal Exit | Assignments.cs:17:40:17:40 | Exit | +| Assignments.cs:17:54:17:54 | x | Assignments.cs:17:69:17:69 | y | +| Assignments.cs:17:69:17:69 | y | Assignments.cs:18:5:20:5 | {...} | | Assignments.cs:18:5:20:5 | {...} | Assignments.cs:19:9:19:17 | Before return ...; | | Assignments.cs:19:9:19:17 | Before return ...; | Assignments.cs:19:16:19:16 | access to parameter x | | Assignments.cs:19:9:19:17 | return ...; | Assignments.cs:17:40:17:40 | Normal Exit | | Assignments.cs:19:16:19:16 | access to parameter x | Assignments.cs:19:9:19:17 | return ...; | -| Assignments.cs:27:10:27:23 | Entry | Assignments.cs:28:5:30:5 | {...} | +| Assignments.cs:27:10:27:23 | Entry | Assignments.cs:27:33:27:33 | x | | Assignments.cs:27:10:27:23 | Normal Exit | Assignments.cs:27:10:27:23 | Exit | +| Assignments.cs:27:33:27:33 | x | Assignments.cs:28:5:30:5 | {...} | | Assignments.cs:28:5:30:5 | After {...} | Assignments.cs:27:10:27:23 | Normal Exit | | Assignments.cs:28:5:30:5 | {...} | Assignments.cs:29:9:29:15 | ...; | | Assignments.cs:29:9:29:9 | access to parameter x | Assignments.cs:29:13:29:14 | 42 | @@ -1489,8 +1524,11 @@ dominance | Assignments.cs:29:9:29:15 | ...; | Assignments.cs:29:9:29:14 | Before ... = ... | | Assignments.cs:29:9:29:15 | After ...; | Assignments.cs:28:5:30:5 | After {...} | | Assignments.cs:29:13:29:14 | 42 | Assignments.cs:29:9:29:14 | ... = ... | -| Assignments.cs:32:10:32:22 | Entry | Assignments.cs:33:5:36:5 | {...} | +| Assignments.cs:32:10:32:22 | Entry | Assignments.cs:32:32:32:32 | x | | Assignments.cs:32:10:32:22 | Normal Exit | Assignments.cs:32:10:32:22 | Exit | +| Assignments.cs:32:32:32:32 | x | Assignments.cs:32:42:32:42 | o | +| Assignments.cs:32:42:32:42 | o | Assignments.cs:32:56:32:56 | y | +| Assignments.cs:32:56:32:56 | y | Assignments.cs:33:5:36:5 | {...} | | Assignments.cs:33:5:36:5 | After {...} | Assignments.cs:32:10:32:22 | Normal Exit | | Assignments.cs:33:5:36:5 | {...} | Assignments.cs:34:9:34:15 | ...; | | Assignments.cs:34:9:34:9 | access to parameter x | Assignments.cs:34:13:34:14 | 42 | @@ -1568,8 +1606,9 @@ dominance | BreakInTry.cs:1:7:1:16 | call to method | BreakInTry.cs:1:7:1:16 | After call to method | | BreakInTry.cs:1:7:1:16 | this access | BreakInTry.cs:1:7:1:16 | call to method | | BreakInTry.cs:1:7:1:16 | {...} | BreakInTry.cs:1:7:1:16 | Normal Exit | -| BreakInTry.cs:3:10:3:11 | Entry | BreakInTry.cs:4:5:18:5 | {...} | +| BreakInTry.cs:3:10:3:11 | Entry | BreakInTry.cs:3:22:3:25 | args | | BreakInTry.cs:3:10:3:11 | Normal Exit | BreakInTry.cs:3:10:3:11 | Exit | +| BreakInTry.cs:3:22:3:25 | args | BreakInTry.cs:4:5:18:5 | {...} | | BreakInTry.cs:4:5:18:5 | After {...} | BreakInTry.cs:3:10:3:11 | Normal Exit | | BreakInTry.cs:4:5:18:5 | {...} | BreakInTry.cs:5:9:17:9 | try {...} ... | | BreakInTry.cs:5:9:17:9 | After try {...} ... | BreakInTry.cs:4:5:18:5 | After {...} | @@ -1604,8 +1643,9 @@ dominance | BreakInTry.cs:15:17:15:28 | After ... == ... [true] | BreakInTry.cs:16:17:16:17 | ; | | BreakInTry.cs:15:17:15:28 | Before ... == ... | BreakInTry.cs:15:17:15:20 | access to parameter args | | BreakInTry.cs:15:25:15:28 | null | BreakInTry.cs:15:17:15:28 | ... == ... | -| BreakInTry.cs:20:10:20:11 | Entry | BreakInTry.cs:21:5:36:5 | {...} | +| BreakInTry.cs:20:10:20:11 | Entry | BreakInTry.cs:20:22:20:25 | args | | BreakInTry.cs:20:10:20:11 | Normal Exit | BreakInTry.cs:20:10:20:11 | Exit | +| BreakInTry.cs:20:22:20:25 | args | BreakInTry.cs:21:5:36:5 | {...} | | BreakInTry.cs:21:5:36:5 | After {...} | BreakInTry.cs:20:10:20:11 | Normal Exit | | BreakInTry.cs:21:5:36:5 | {...} | BreakInTry.cs:22:9:34:9 | foreach (... ... in ...) ... | | BreakInTry.cs:22:9:34:9 | After foreach (... ... in ...) ... | BreakInTry.cs:35:7:35:7 | ; | @@ -1640,8 +1680,9 @@ dominance | BreakInTry.cs:31:21:31:32 | Before ... == ... | BreakInTry.cs:31:21:31:24 | access to parameter args | | BreakInTry.cs:31:29:31:32 | null | BreakInTry.cs:31:21:31:32 | ... == ... | | BreakInTry.cs:35:7:35:7 | ; | BreakInTry.cs:21:5:36:5 | After {...} | -| BreakInTry.cs:38:10:38:11 | Entry | BreakInTry.cs:39:5:54:5 | {...} | +| BreakInTry.cs:38:10:38:11 | Entry | BreakInTry.cs:38:22:38:25 | args | | BreakInTry.cs:38:10:38:11 | Normal Exit | BreakInTry.cs:38:10:38:11 | Exit | +| BreakInTry.cs:38:22:38:25 | args | BreakInTry.cs:39:5:54:5 | {...} | | BreakInTry.cs:39:5:54:5 | {...} | BreakInTry.cs:40:9:52:9 | try {...} ... | | BreakInTry.cs:40:9:52:9 | After try {...} ... | BreakInTry.cs:53:7:53:7 | ; | | BreakInTry.cs:40:9:52:9 | try {...} ... | BreakInTry.cs:41:9:44:9 | {...} | @@ -1678,8 +1719,9 @@ dominance | BreakInTry.cs:49:28:49:31 | null | BreakInTry.cs:49:21:49:31 | ... == ... | | BreakInTry.cs:50:21:50:26 | Before break; | BreakInTry.cs:50:21:50:26 | break; | | BreakInTry.cs:53:7:53:7 | ; | BreakInTry.cs:39:5:54:5 | After {...} | -| BreakInTry.cs:56:10:56:11 | Entry | BreakInTry.cs:57:5:71:5 | {...} | +| BreakInTry.cs:56:10:56:11 | Entry | BreakInTry.cs:56:22:56:25 | args | | BreakInTry.cs:56:10:56:11 | Normal Exit | BreakInTry.cs:56:10:56:11 | Exit | +| BreakInTry.cs:56:22:56:25 | args | BreakInTry.cs:57:5:71:5 | {...} | | BreakInTry.cs:57:5:71:5 | {...} | BreakInTry.cs:58:9:70:9 | try {...} ... | | BreakInTry.cs:58:9:70:9 | After try {...} ... | BreakInTry.cs:57:5:71:5 | After {...} | | BreakInTry.cs:58:9:70:9 | try {...} ... | BreakInTry.cs:59:9:62:9 | {...} | @@ -1743,8 +1785,9 @@ dominance | CompileTimeOperators.cs:17:9:17:27 | Before return ...; | CompileTimeOperators.cs:17:16:17:26 | typeof(...) | | CompileTimeOperators.cs:17:9:17:27 | return ...; | CompileTimeOperators.cs:15:10:15:15 | Normal Exit | | CompileTimeOperators.cs:17:16:17:26 | typeof(...) | CompileTimeOperators.cs:17:9:17:27 | return ...; | -| CompileTimeOperators.cs:20:12:20:17 | Entry | CompileTimeOperators.cs:21:5:23:5 | {...} | +| CompileTimeOperators.cs:20:12:20:17 | Entry | CompileTimeOperators.cs:20:23:20:23 | i | | CompileTimeOperators.cs:20:12:20:17 | Normal Exit | CompileTimeOperators.cs:20:12:20:17 | Exit | +| CompileTimeOperators.cs:20:23:20:23 | i | CompileTimeOperators.cs:21:5:23:5 | {...} | | CompileTimeOperators.cs:21:5:23:5 | {...} | CompileTimeOperators.cs:22:9:22:25 | Before return ...; | | CompileTimeOperators.cs:22:9:22:25 | Before return ...; | CompileTimeOperators.cs:22:16:22:24 | nameof(...) | | CompileTimeOperators.cs:22:9:22:25 | return ...; | CompileTimeOperators.cs:20:12:20:17 | Normal Exit | @@ -1799,8 +1842,9 @@ dominance | ConditionalAccess.cs:1:7:1:23 | call to method | ConditionalAccess.cs:1:7:1:23 | After call to method | | ConditionalAccess.cs:1:7:1:23 | this access | ConditionalAccess.cs:1:7:1:23 | call to method | | ConditionalAccess.cs:1:7:1:23 | {...} | ConditionalAccess.cs:1:7:1:23 | Normal Exit | -| ConditionalAccess.cs:3:12:3:13 | Entry | ConditionalAccess.cs:3:26:3:49 | Before call to method ToLower | +| ConditionalAccess.cs:3:12:3:13 | Entry | ConditionalAccess.cs:3:20:3:20 | i | | ConditionalAccess.cs:3:12:3:13 | Normal Exit | ConditionalAccess.cs:3:12:3:13 | Exit | +| ConditionalAccess.cs:3:20:3:20 | i | ConditionalAccess.cs:3:26:3:49 | Before call to method ToLower | | ConditionalAccess.cs:3:26:3:26 | After access to parameter i [non-null] | ConditionalAccess.cs:3:26:3:38 | call to method ToString | | ConditionalAccess.cs:3:26:3:26 | access to parameter i | ConditionalAccess.cs:3:26:3:26 | After access to parameter i [non-null] | | ConditionalAccess.cs:3:26:3:26 | access to parameter i | ConditionalAccess.cs:3:26:3:26 | After access to parameter i [null] | @@ -1809,15 +1853,18 @@ dominance | ConditionalAccess.cs:3:26:3:38 | call to method ToString | ConditionalAccess.cs:3:26:3:38 | After call to method ToString [non-null] | | ConditionalAccess.cs:3:26:3:49 | After call to method ToLower | ConditionalAccess.cs:3:12:3:13 | Normal Exit | | ConditionalAccess.cs:3:26:3:49 | Before call to method ToLower | ConditionalAccess.cs:3:26:3:38 | Before call to method ToString | -| ConditionalAccess.cs:5:10:5:11 | Entry | ConditionalAccess.cs:5:26:5:34 | Before access to property Length | +| ConditionalAccess.cs:5:10:5:11 | Entry | ConditionalAccess.cs:5:20:5:20 | s | | ConditionalAccess.cs:5:10:5:11 | Normal Exit | ConditionalAccess.cs:5:10:5:11 | Exit | +| ConditionalAccess.cs:5:20:5:20 | s | ConditionalAccess.cs:5:26:5:34 | Before access to property Length | | ConditionalAccess.cs:5:26:5:26 | After access to parameter s [non-null] | ConditionalAccess.cs:5:26:5:34 | access to property Length | | ConditionalAccess.cs:5:26:5:26 | access to parameter s | ConditionalAccess.cs:5:26:5:26 | After access to parameter s [non-null] | | ConditionalAccess.cs:5:26:5:26 | access to parameter s | ConditionalAccess.cs:5:26:5:26 | After access to parameter s [null] | | ConditionalAccess.cs:5:26:5:34 | After access to property Length | ConditionalAccess.cs:5:10:5:11 | Normal Exit | | ConditionalAccess.cs:5:26:5:34 | Before access to property Length | ConditionalAccess.cs:5:26:5:26 | access to parameter s | -| ConditionalAccess.cs:7:10:7:11 | Entry | ConditionalAccess.cs:7:38:7:55 | Before access to property Length | +| ConditionalAccess.cs:7:10:7:11 | Entry | ConditionalAccess.cs:7:20:7:21 | s1 | | ConditionalAccess.cs:7:10:7:11 | Normal Exit | ConditionalAccess.cs:7:10:7:11 | Exit | +| ConditionalAccess.cs:7:20:7:21 | s1 | ConditionalAccess.cs:7:31:7:32 | s2 | +| ConditionalAccess.cs:7:31:7:32 | s2 | ConditionalAccess.cs:7:38:7:55 | Before access to property Length | | ConditionalAccess.cs:7:38:7:55 | After access to property Length | ConditionalAccess.cs:7:10:7:11 | Normal Exit | | ConditionalAccess.cs:7:38:7:55 | Before access to property Length | ConditionalAccess.cs:7:39:7:46 | ... ?? ... | | ConditionalAccess.cs:7:39:7:40 | After access to parameter s1 [null] | ConditionalAccess.cs:7:45:7:46 | access to parameter s2 | @@ -1828,8 +1875,9 @@ dominance | ConditionalAccess.cs:7:45:7:46 | After access to parameter s2 [null] | ConditionalAccess.cs:7:39:7:46 | After ... ?? ... [null] | | ConditionalAccess.cs:7:45:7:46 | access to parameter s2 | ConditionalAccess.cs:7:45:7:46 | After access to parameter s2 [non-null] | | ConditionalAccess.cs:7:45:7:46 | access to parameter s2 | ConditionalAccess.cs:7:45:7:46 | After access to parameter s2 [null] | -| ConditionalAccess.cs:9:9:9:10 | Entry | ConditionalAccess.cs:9:25:9:38 | ... ?? ... | +| ConditionalAccess.cs:9:9:9:10 | Entry | ConditionalAccess.cs:9:19:9:19 | s | | ConditionalAccess.cs:9:9:9:10 | Normal Exit | ConditionalAccess.cs:9:9:9:10 | Exit | +| ConditionalAccess.cs:9:19:9:19 | s | ConditionalAccess.cs:9:25:9:38 | ... ?? ... | | ConditionalAccess.cs:9:25:9:25 | After access to parameter s [non-null] | ConditionalAccess.cs:9:25:9:33 | access to property Length | | ConditionalAccess.cs:9:25:9:25 | access to parameter s | ConditionalAccess.cs:9:25:9:25 | After access to parameter s [non-null] | | ConditionalAccess.cs:9:25:9:25 | access to parameter s | ConditionalAccess.cs:9:25:9:25 | After access to parameter s [null] | @@ -1838,8 +1886,9 @@ dominance | ConditionalAccess.cs:9:25:9:33 | access to property Length | ConditionalAccess.cs:9:25:9:33 | After access to property Length [non-null] | | ConditionalAccess.cs:9:25:9:38 | ... ?? ... | ConditionalAccess.cs:9:25:9:33 | Before access to property Length | | ConditionalAccess.cs:9:25:9:38 | After ... ?? ... | ConditionalAccess.cs:9:9:9:10 | Normal Exit | -| ConditionalAccess.cs:11:9:11:10 | Entry | ConditionalAccess.cs:12:5:17:5 | {...} | +| ConditionalAccess.cs:11:9:11:10 | Entry | ConditionalAccess.cs:11:19:11:19 | s | | ConditionalAccess.cs:11:9:11:10 | Normal Exit | ConditionalAccess.cs:11:9:11:10 | Exit | +| ConditionalAccess.cs:11:19:11:19 | s | ConditionalAccess.cs:12:5:17:5 | {...} | | ConditionalAccess.cs:12:5:17:5 | {...} | ConditionalAccess.cs:13:9:16:21 | if (...) ... | | ConditionalAccess.cs:13:9:16:21 | if (...) ... | ConditionalAccess.cs:13:13:13:25 | Before ... > ... | | ConditionalAccess.cs:13:13:13:13 | After access to parameter s [non-null] | ConditionalAccess.cs:13:13:13:21 | access to property Length | @@ -1860,16 +1909,19 @@ dominance | ConditionalAccess.cs:14:20:14:20 | 0 | ConditionalAccess.cs:14:13:14:21 | return ...; | | ConditionalAccess.cs:16:13:16:21 | Before return ...; | ConditionalAccess.cs:16:20:16:20 | 1 | | ConditionalAccess.cs:16:20:16:20 | 1 | ConditionalAccess.cs:16:13:16:21 | return ...; | -| ConditionalAccess.cs:19:12:19:13 | Entry | ConditionalAccess.cs:19:40:19:60 | Before call to method CommaJoinWith | +| ConditionalAccess.cs:19:12:19:13 | Entry | ConditionalAccess.cs:19:22:19:23 | s1 | | ConditionalAccess.cs:19:12:19:13 | Normal Exit | ConditionalAccess.cs:19:12:19:13 | Exit | +| ConditionalAccess.cs:19:22:19:23 | s1 | ConditionalAccess.cs:19:33:19:34 | s2 | +| ConditionalAccess.cs:19:33:19:34 | s2 | ConditionalAccess.cs:19:40:19:60 | Before call to method CommaJoinWith | | ConditionalAccess.cs:19:40:19:41 | After access to parameter s1 [non-null] | ConditionalAccess.cs:19:58:19:59 | access to parameter s2 | | ConditionalAccess.cs:19:40:19:41 | access to parameter s1 | ConditionalAccess.cs:19:40:19:41 | After access to parameter s1 [non-null] | | ConditionalAccess.cs:19:40:19:41 | access to parameter s1 | ConditionalAccess.cs:19:40:19:41 | After access to parameter s1 [null] | | ConditionalAccess.cs:19:40:19:60 | After call to method CommaJoinWith | ConditionalAccess.cs:19:12:19:13 | Normal Exit | | ConditionalAccess.cs:19:40:19:60 | Before call to method CommaJoinWith | ConditionalAccess.cs:19:40:19:41 | access to parameter s1 | | ConditionalAccess.cs:19:58:19:59 | access to parameter s2 | ConditionalAccess.cs:19:40:19:60 | call to method CommaJoinWith | -| ConditionalAccess.cs:21:10:21:11 | Entry | ConditionalAccess.cs:22:5:26:5 | {...} | +| ConditionalAccess.cs:21:10:21:11 | Entry | ConditionalAccess.cs:21:17:21:17 | i | | ConditionalAccess.cs:21:10:21:11 | Normal Exit | ConditionalAccess.cs:21:10:21:11 | Exit | +| ConditionalAccess.cs:21:17:21:17 | i | ConditionalAccess.cs:22:5:26:5 | {...} | | ConditionalAccess.cs:22:5:26:5 | After {...} | ConditionalAccess.cs:21:10:21:11 | Normal Exit | | ConditionalAccess.cs:22:5:26:5 | {...} | ConditionalAccess.cs:23:9:23:39 | ... ...; | | ConditionalAccess.cs:23:9:23:39 | ... ...; | ConditionalAccess.cs:23:13:23:38 | Before Nullable j = ... | @@ -1910,15 +1962,18 @@ dominance | ConditionalAccess.cs:25:13:25:32 | After call to method CommaJoinWith | ConditionalAccess.cs:25:9:25:32 | ... = ... | | ConditionalAccess.cs:25:13:25:32 | Before call to method CommaJoinWith | ConditionalAccess.cs:25:13:25:14 | "" | | ConditionalAccess.cs:25:31:25:31 | access to local variable s | ConditionalAccess.cs:25:13:25:32 | call to method CommaJoinWith | -| ConditionalAccess.cs:30:10:30:12 | Entry | ConditionalAccess.cs:30:28:30:32 | Before ... = ... | +| ConditionalAccess.cs:30:10:30:12 | Entry | ConditionalAccess.cs:30:22:30:22 | i | | ConditionalAccess.cs:30:10:30:12 | Normal Exit | ConditionalAccess.cs:30:10:30:12 | Exit | +| ConditionalAccess.cs:30:22:30:22 | i | ConditionalAccess.cs:30:28:30:32 | Before ... = ... | | ConditionalAccess.cs:30:28:30:28 | access to parameter i | ConditionalAccess.cs:30:32:30:32 | 0 | | ConditionalAccess.cs:30:28:30:32 | ... = ... | ConditionalAccess.cs:30:28:30:32 | After ... = ... | | ConditionalAccess.cs:30:28:30:32 | After ... = ... | ConditionalAccess.cs:30:10:30:12 | Normal Exit | | ConditionalAccess.cs:30:28:30:32 | Before ... = ... | ConditionalAccess.cs:30:28:30:28 | access to parameter i | | ConditionalAccess.cs:30:32:30:32 | 0 | ConditionalAccess.cs:30:28:30:32 | ... = ... | -| ConditionalAccess.cs:32:10:32:11 | Entry | ConditionalAccess.cs:33:5:36:5 | {...} | +| ConditionalAccess.cs:32:10:32:11 | Entry | ConditionalAccess.cs:32:18:32:18 | b | | ConditionalAccess.cs:32:10:32:11 | Normal Exit | ConditionalAccess.cs:32:10:32:11 | Exit | +| ConditionalAccess.cs:32:18:32:18 | b | ConditionalAccess.cs:32:29:32:29 | i | +| ConditionalAccess.cs:32:29:32:29 | i | ConditionalAccess.cs:33:5:36:5 | {...} | | ConditionalAccess.cs:33:5:36:5 | After {...} | ConditionalAccess.cs:32:10:32:11 | Normal Exit | | ConditionalAccess.cs:33:5:36:5 | {...} | ConditionalAccess.cs:34:9:34:14 | ...; | | ConditionalAccess.cs:34:9:34:9 | access to parameter i | ConditionalAccess.cs:34:13:34:13 | 0 | @@ -1938,17 +1993,21 @@ dominance | ConditionalAccess.cs:35:9:35:25 | ...; | ConditionalAccess.cs:35:9:35:24 | Before call to method Out | | ConditionalAccess.cs:35:9:35:25 | After ...; | ConditionalAccess.cs:33:5:36:5 | After {...} | | ConditionalAccess.cs:35:23:35:23 | access to parameter i | ConditionalAccess.cs:35:9:35:24 | call to method Out | -| ConditionalAccess.cs:42:9:42:11 | Entry | ConditionalAccess.cs:42:13:42:28 | {...} | +| ConditionalAccess.cs:40:21:40:25 | index | ConditionalAccess.cs:42:13:42:28 | {...} | +| ConditionalAccess.cs:40:21:40:25 | index | ConditionalAccess.cs:43:9:43:11 | value | +| ConditionalAccess.cs:42:9:42:11 | Entry | ConditionalAccess.cs:40:21:40:25 | index | | ConditionalAccess.cs:42:9:42:11 | Normal Exit | ConditionalAccess.cs:42:9:42:11 | Exit | | ConditionalAccess.cs:42:13:42:28 | {...} | ConditionalAccess.cs:42:15:42:26 | Before return ...; | | ConditionalAccess.cs:42:15:42:26 | Before return ...; | ConditionalAccess.cs:42:22:42:25 | null | | ConditionalAccess.cs:42:15:42:26 | return ...; | ConditionalAccess.cs:42:9:42:11 | Normal Exit | | ConditionalAccess.cs:42:22:42:25 | null | ConditionalAccess.cs:42:15:42:26 | return ...; | -| ConditionalAccess.cs:43:9:43:11 | Entry | ConditionalAccess.cs:43:13:43:15 | {...} | +| ConditionalAccess.cs:43:9:43:11 | Entry | ConditionalAccess.cs:40:21:40:25 | index | | ConditionalAccess.cs:43:9:43:11 | Normal Exit | ConditionalAccess.cs:43:9:43:11 | Exit | +| ConditionalAccess.cs:43:9:43:11 | value | ConditionalAccess.cs:43:13:43:15 | {...} | | ConditionalAccess.cs:43:13:43:15 | {...} | ConditionalAccess.cs:43:9:43:11 | Normal Exit | -| ConditionalAccess.cs:46:10:46:11 | Entry | ConditionalAccess.cs:47:5:55:5 | {...} | +| ConditionalAccess.cs:46:10:46:11 | Entry | ConditionalAccess.cs:46:31:46:32 | ca | | ConditionalAccess.cs:46:10:46:11 | Normal Exit | ConditionalAccess.cs:46:10:46:11 | Exit | +| ConditionalAccess.cs:46:31:46:32 | ca | ConditionalAccess.cs:47:5:55:5 | {...} | | ConditionalAccess.cs:47:5:55:5 | After {...} | ConditionalAccess.cs:46:10:46:11 | Normal Exit | | ConditionalAccess.cs:47:5:55:5 | {...} | ConditionalAccess.cs:48:9:48:26 | ...; | | ConditionalAccess.cs:48:9:48:10 | After access to parameter ca [non-null] | ConditionalAccess.cs:48:9:48:20 | access to field IntField | @@ -2035,8 +2094,10 @@ dominance | ConditionalAccess.cs:54:12:54:29 | After ... += ... | ConditionalAccess.cs:54:9:54:30 | After ...; | | ConditionalAccess.cs:54:12:54:29 | Before ... += ... | ConditionalAccess.cs:54:9:54:22 | Before access to property StringProp | | ConditionalAccess.cs:54:27:54:29 | "!" | ConditionalAccess.cs:54:12:54:29 | ... += ... | -| ConditionalAccess.cs:60:26:60:38 | Entry | ConditionalAccess.cs:60:70:60:83 | Before ... + ... | +| ConditionalAccess.cs:60:26:60:38 | Entry | ConditionalAccess.cs:60:52:60:53 | s1 | | ConditionalAccess.cs:60:26:60:38 | Normal Exit | ConditionalAccess.cs:60:26:60:38 | Exit | +| ConditionalAccess.cs:60:52:60:53 | s1 | ConditionalAccess.cs:60:63:60:64 | s2 | +| ConditionalAccess.cs:60:63:60:64 | s2 | ConditionalAccess.cs:60:70:60:83 | Before ... + ... | | ConditionalAccess.cs:60:70:60:71 | access to parameter s1 | ConditionalAccess.cs:60:75:60:78 | ", " | | ConditionalAccess.cs:60:70:60:78 | ... + ... | ConditionalAccess.cs:60:70:60:78 | After ... + ... | | ConditionalAccess.cs:60:70:60:78 | After ... + ... | ConditionalAccess.cs:60:82:60:83 | access to parameter s2 | @@ -2056,8 +2117,10 @@ dominance | Conditions.cs:1:7:1:16 | call to method | Conditions.cs:1:7:1:16 | After call to method | | Conditions.cs:1:7:1:16 | this access | Conditions.cs:1:7:1:16 | call to method | | Conditions.cs:1:7:1:16 | {...} | Conditions.cs:1:7:1:16 | Normal Exit | -| Conditions.cs:3:10:3:19 | Entry | Conditions.cs:4:5:9:5 | {...} | +| Conditions.cs:3:10:3:19 | Entry | Conditions.cs:3:26:3:28 | inc | | Conditions.cs:3:10:3:19 | Normal Exit | Conditions.cs:3:10:3:19 | Exit | +| Conditions.cs:3:26:3:28 | inc | Conditions.cs:3:39:3:39 | x | +| Conditions.cs:3:39:3:39 | x | Conditions.cs:4:5:9:5 | {...} | | Conditions.cs:4:5:9:5 | After {...} | Conditions.cs:3:10:3:19 | Normal Exit | | Conditions.cs:4:5:9:5 | {...} | Conditions.cs:5:9:6:16 | if (...) ... | | Conditions.cs:5:9:6:16 | After if (...) ... | Conditions.cs:7:9:8:16 | if (...) ... | @@ -2083,8 +2146,9 @@ dominance | Conditions.cs:8:13:8:15 | After ...-- | Conditions.cs:8:13:8:16 | After ...; | | Conditions.cs:8:13:8:15 | Before ...-- | Conditions.cs:8:13:8:13 | access to parameter x | | Conditions.cs:8:13:8:16 | ...; | Conditions.cs:8:13:8:15 | Before ...-- | -| Conditions.cs:11:9:11:10 | Entry | Conditions.cs:12:5:20:5 | {...} | +| Conditions.cs:11:9:11:10 | Entry | Conditions.cs:11:17:11:17 | b | | Conditions.cs:11:9:11:10 | Normal Exit | Conditions.cs:11:9:11:10 | Exit | +| Conditions.cs:11:17:11:17 | b | Conditions.cs:12:5:20:5 | {...} | | Conditions.cs:12:5:20:5 | {...} | Conditions.cs:13:9:13:18 | ... ...; | | Conditions.cs:13:9:13:18 | ... ...; | Conditions.cs:13:13:13:17 | Before Int32 x = ... | | Conditions.cs:13:9:13:18 | After ... ...; | Conditions.cs:14:9:15:16 | if (...) ... | @@ -2126,8 +2190,10 @@ dominance | Conditions.cs:19:9:19:17 | Before return ...; | Conditions.cs:19:16:19:16 | access to local variable x | | Conditions.cs:19:9:19:17 | return ...; | Conditions.cs:11:9:11:10 | Normal Exit | | Conditions.cs:19:16:19:16 | access to local variable x | Conditions.cs:19:9:19:17 | return ...; | -| Conditions.cs:22:9:22:10 | Entry | Conditions.cs:23:5:31:5 | {...} | +| Conditions.cs:22:9:22:10 | Entry | Conditions.cs:22:17:22:18 | b1 | | Conditions.cs:22:9:22:10 | Normal Exit | Conditions.cs:22:9:22:10 | Exit | +| Conditions.cs:22:17:22:18 | b1 | Conditions.cs:22:26:22:27 | b2 | +| Conditions.cs:22:26:22:27 | b2 | Conditions.cs:23:5:31:5 | {...} | | Conditions.cs:23:5:31:5 | {...} | Conditions.cs:24:9:24:18 | ... ...; | | Conditions.cs:24:9:24:18 | ... ...; | Conditions.cs:24:13:24:17 | Before Int32 x = ... | | Conditions.cs:24:9:24:18 | After ... ...; | Conditions.cs:25:9:27:20 | if (...) ... | @@ -2163,8 +2229,9 @@ dominance | Conditions.cs:30:9:30:17 | Before return ...; | Conditions.cs:30:16:30:16 | access to local variable x | | Conditions.cs:30:9:30:17 | return ...; | Conditions.cs:22:9:22:10 | Normal Exit | | Conditions.cs:30:16:30:16 | access to local variable x | Conditions.cs:30:9:30:17 | return ...; | -| Conditions.cs:33:9:33:10 | Entry | Conditions.cs:34:5:44:5 | {...} | +| Conditions.cs:33:9:33:10 | Entry | Conditions.cs:33:17:33:18 | b1 | | Conditions.cs:33:9:33:10 | Normal Exit | Conditions.cs:33:9:33:10 | Exit | +| Conditions.cs:33:17:33:18 | b1 | Conditions.cs:34:5:44:5 | {...} | | Conditions.cs:34:5:44:5 | {...} | Conditions.cs:35:9:35:18 | ... ...; | | Conditions.cs:35:9:35:18 | ... ...; | Conditions.cs:35:13:35:17 | Before Int32 x = ... | | Conditions.cs:35:9:35:18 | After ... ...; | Conditions.cs:36:9:36:23 | ... ...; | @@ -2214,8 +2281,10 @@ dominance | Conditions.cs:43:9:43:17 | Before return ...; | Conditions.cs:43:16:43:16 | access to local variable x | | Conditions.cs:43:9:43:17 | return ...; | Conditions.cs:33:9:33:10 | Normal Exit | | Conditions.cs:43:16:43:16 | access to local variable x | Conditions.cs:43:9:43:17 | return ...; | -| Conditions.cs:46:9:46:10 | Entry | Conditions.cs:47:5:55:5 | {...} | +| Conditions.cs:46:9:46:10 | Entry | Conditions.cs:46:17:46:17 | b | | Conditions.cs:46:9:46:10 | Normal Exit | Conditions.cs:46:9:46:10 | Exit | +| Conditions.cs:46:17:46:17 | b | Conditions.cs:46:24:46:24 | x | +| Conditions.cs:46:24:46:24 | x | Conditions.cs:47:5:55:5 | {...} | | Conditions.cs:47:5:55:5 | {...} | Conditions.cs:48:9:48:18 | ... ...; | | Conditions.cs:48:9:48:18 | ... ...; | Conditions.cs:48:13:48:17 | Before Int32 y = ... | | Conditions.cs:48:9:48:18 | After ... ...; | Conditions.cs:49:9:53:9 | while (...) ... | @@ -2251,8 +2320,10 @@ dominance | Conditions.cs:54:9:54:17 | Before return ...; | Conditions.cs:54:16:54:16 | access to local variable y | | Conditions.cs:54:9:54:17 | return ...; | Conditions.cs:46:9:46:10 | Normal Exit | | Conditions.cs:54:16:54:16 | access to local variable y | Conditions.cs:54:9:54:17 | return ...; | -| Conditions.cs:57:9:57:10 | Entry | Conditions.cs:58:5:68:5 | {...} | +| Conditions.cs:57:9:57:10 | Entry | Conditions.cs:57:17:57:17 | b | | Conditions.cs:57:9:57:10 | Normal Exit | Conditions.cs:57:9:57:10 | Exit | +| Conditions.cs:57:17:57:17 | b | Conditions.cs:57:24:57:24 | x | +| Conditions.cs:57:24:57:24 | x | Conditions.cs:58:5:68:5 | {...} | | Conditions.cs:58:5:68:5 | {...} | Conditions.cs:59:9:59:18 | ... ...; | | Conditions.cs:59:9:59:18 | ... ...; | Conditions.cs:59:13:59:17 | Before Int32 y = ... | | Conditions.cs:59:9:59:18 | After ... ...; | Conditions.cs:60:9:64:9 | while (...) ... | @@ -2298,8 +2369,9 @@ dominance | Conditions.cs:67:9:67:17 | Before return ...; | Conditions.cs:67:16:67:16 | access to local variable y | | Conditions.cs:67:9:67:17 | return ...; | Conditions.cs:57:9:57:10 | Normal Exit | | Conditions.cs:67:16:67:16 | access to local variable y | Conditions.cs:67:9:67:17 | return ...; | -| Conditions.cs:70:9:70:10 | Entry | Conditions.cs:71:5:84:5 | {...} | +| Conditions.cs:70:9:70:10 | Entry | Conditions.cs:70:21:70:22 | ss | | Conditions.cs:70:9:70:10 | Normal Exit | Conditions.cs:70:9:70:10 | Exit | +| Conditions.cs:70:21:70:22 | ss | Conditions.cs:71:5:84:5 | {...} | | Conditions.cs:71:5:84:5 | {...} | Conditions.cs:72:9:72:30 | ... ...; | | Conditions.cs:72:9:72:30 | ... ...; | Conditions.cs:72:13:72:29 | Before Boolean b = ... | | Conditions.cs:72:9:72:30 | After ... ...; | Conditions.cs:73:9:73:18 | ... ...; | @@ -2367,8 +2439,9 @@ dominance | Conditions.cs:83:9:83:17 | Before return ...; | Conditions.cs:83:16:83:16 | access to local variable x | | Conditions.cs:83:9:83:17 | return ...; | Conditions.cs:70:9:70:10 | Normal Exit | | Conditions.cs:83:16:83:16 | access to local variable x | Conditions.cs:83:9:83:17 | return ...; | -| Conditions.cs:86:9:86:10 | Entry | Conditions.cs:87:5:100:5 | {...} | +| Conditions.cs:86:9:86:10 | Entry | Conditions.cs:86:21:86:22 | ss | | Conditions.cs:86:9:86:10 | Normal Exit | Conditions.cs:86:9:86:10 | Exit | +| Conditions.cs:86:21:86:22 | ss | Conditions.cs:87:5:100:5 | {...} | | Conditions.cs:87:5:100:5 | {...} | Conditions.cs:88:9:88:30 | ... ...; | | Conditions.cs:88:9:88:30 | ... ...; | Conditions.cs:88:13:88:29 | Before Boolean b = ... | | Conditions.cs:88:9:88:30 | After ... ...; | Conditions.cs:89:9:89:18 | ... ...; | @@ -2436,8 +2509,9 @@ dominance | Conditions.cs:99:9:99:17 | Before return ...; | Conditions.cs:99:16:99:16 | access to local variable x | | Conditions.cs:99:9:99:17 | return ...; | Conditions.cs:86:9:86:10 | Normal Exit | | Conditions.cs:99:16:99:16 | access to local variable x | Conditions.cs:99:9:99:17 | return ...; | -| Conditions.cs:102:12:102:13 | Entry | Conditions.cs:103:5:111:5 | {...} | +| Conditions.cs:102:12:102:13 | Entry | Conditions.cs:102:20:102:20 | b | | Conditions.cs:102:12:102:13 | Normal Exit | Conditions.cs:102:12:102:13 | Exit | +| Conditions.cs:102:20:102:20 | b | Conditions.cs:103:5:111:5 | {...} | | Conditions.cs:103:5:111:5 | {...} | Conditions.cs:104:9:104:29 | ... ...; | | Conditions.cs:104:9:104:29 | ... ...; | Conditions.cs:104:13:104:28 | Before String x = ... | | Conditions.cs:104:9:104:29 | After ... ...; | Conditions.cs:105:9:106:20 | if (...) ... | @@ -2487,8 +2561,9 @@ dominance | Conditions.cs:110:9:110:17 | Before return ...; | Conditions.cs:110:16:110:16 | access to local variable x | | Conditions.cs:110:9:110:17 | return ...; | Conditions.cs:102:12:102:13 | Normal Exit | | Conditions.cs:110:16:110:16 | access to local variable x | Conditions.cs:110:9:110:17 | return ...; | -| Conditions.cs:113:10:113:11 | Entry | Conditions.cs:114:5:124:5 | {...} | +| Conditions.cs:113:10:113:11 | Entry | Conditions.cs:113:22:113:25 | args | | Conditions.cs:113:10:113:11 | Normal Exit | Conditions.cs:113:10:113:11 | Exit | +| Conditions.cs:113:22:113:25 | args | Conditions.cs:114:5:124:5 | {...} | | Conditions.cs:114:5:124:5 | After {...} | Conditions.cs:113:10:113:11 | Normal Exit | | Conditions.cs:114:5:124:5 | {...} | Conditions.cs:115:9:115:24 | ... ...; | | Conditions.cs:115:9:115:24 | ... ...; | Conditions.cs:115:16:115:23 | Before String s = ... | @@ -2596,8 +2671,9 @@ dominance | Conditions.cs:137:21:137:37 | call to method ToString | Conditions.cs:137:21:137:37 | After call to method ToString | | Conditions.cs:137:21:137:38 | ...; | Conditions.cs:137:21:137:37 | Before call to method ToString | | Conditions.cs:137:21:137:38 | After ...; | Conditions.cs:136:17:138:17 | After {...} | -| Conditions.cs:143:10:143:12 | Entry | Conditions.cs:144:5:150:5 | {...} | +| Conditions.cs:143:10:143:12 | Entry | Conditions.cs:143:19:143:19 | b | | Conditions.cs:143:10:143:12 | Normal Exit | Conditions.cs:143:10:143:12 | Exit | +| Conditions.cs:143:19:143:19 | b | Conditions.cs:144:5:150:5 | {...} | | Conditions.cs:144:5:150:5 | After {...} | Conditions.cs:143:10:143:12 | Normal Exit | | Conditions.cs:144:5:150:5 | {...} | Conditions.cs:145:9:145:30 | ... ...; | | Conditions.cs:145:9:145:30 | ... ...; | Conditions.cs:145:13:145:29 | Before String s = ... | @@ -2652,8 +2728,15 @@ dominance | DefaultParam.cs:1:7:1:18 | call to method | DefaultParam.cs:1:7:1:18 | After call to method | | DefaultParam.cs:1:7:1:18 | this access | DefaultParam.cs:1:7:1:18 | call to method | | DefaultParam.cs:1:7:1:18 | {...} | DefaultParam.cs:1:7:1:18 | Normal Exit | -| DefaultParam.cs:3:12:3:13 | Entry | DefaultParam.cs:4:5:6:5 | {...} | +| DefaultParam.cs:3:12:3:13 | Entry | DefaultParam.cs:3:20:3:20 | b | | DefaultParam.cs:3:12:3:13 | Normal Exit | DefaultParam.cs:3:12:3:13 | Exit | +| DefaultParam.cs:3:20:3:20 | b | DefaultParam.cs:3:30:3:30 | s | +| DefaultParam.cs:3:30:3:30 | After s [no-match] | DefaultParam.cs:3:34:3:35 | "" | +| DefaultParam.cs:3:30:3:30 | s | DefaultParam.cs:3:30:3:30 | After s [match] | +| DefaultParam.cs:3:30:3:30 | s | DefaultParam.cs:3:30:3:30 | After s [no-match] | +| DefaultParam.cs:3:42:3:42 | After i [no-match] | DefaultParam.cs:3:46:3:46 | 0 | +| DefaultParam.cs:3:42:3:42 | i | DefaultParam.cs:3:42:3:42 | After i [match] | +| DefaultParam.cs:3:42:3:42 | i | DefaultParam.cs:3:42:3:42 | After i [no-match] | | DefaultParam.cs:4:5:6:5 | {...} | DefaultParam.cs:5:9:5:25 | Before return ...; | | DefaultParam.cs:5:9:5:25 | Before return ...; | DefaultParam.cs:5:16:5:24 | Before ... + ... | | DefaultParam.cs:5:9:5:25 | return ...; | DefaultParam.cs:3:12:3:13 | Normal Exit | @@ -2757,7 +2840,8 @@ dominance | ExitMethods.cs:62:9:62:22 | Before call to method ErrorAlways3 | ExitMethods.cs:62:9:62:22 | call to method ErrorAlways3 | | ExitMethods.cs:62:9:62:22 | call to method ErrorAlways3 | ExitMethods.cs:60:10:60:11 | Exceptional Exit | | ExitMethods.cs:62:9:62:23 | ...; | ExitMethods.cs:62:9:62:22 | Before call to method ErrorAlways3 | -| ExitMethods.cs:66:17:66:26 | Entry | ExitMethods.cs:67:5:70:5 | {...} | +| ExitMethods.cs:66:17:66:26 | Entry | ExitMethods.cs:66:33:66:33 | b | +| ExitMethods.cs:66:33:66:33 | b | ExitMethods.cs:67:5:70:5 | {...} | | ExitMethods.cs:67:5:70:5 | After {...} | ExitMethods.cs:66:17:66:26 | Normal Exit | | ExitMethods.cs:67:5:70:5 | {...} | ExitMethods.cs:68:9:69:34 | if (...) ... | | ExitMethods.cs:68:9:69:34 | After if (...) ... | ExitMethods.cs:67:5:70:5 | After {...} | @@ -2771,8 +2855,9 @@ dominance | ExitMethods.cs:69:19:69:33 | After object creation of type Exception | ExitMethods.cs:69:13:69:34 | throw ...; | | ExitMethods.cs:69:19:69:33 | Before object creation of type Exception | ExitMethods.cs:69:19:69:33 | object creation of type Exception | | ExitMethods.cs:69:19:69:33 | object creation of type Exception | ExitMethods.cs:69:19:69:33 | After object creation of type Exception | -| ExitMethods.cs:72:17:72:27 | Entry | ExitMethods.cs:73:5:78:5 | {...} | +| ExitMethods.cs:72:17:72:27 | Entry | ExitMethods.cs:72:34:72:34 | b | | ExitMethods.cs:72:17:72:27 | Exceptional Exit | ExitMethods.cs:72:17:72:27 | Exit | +| ExitMethods.cs:72:34:72:34 | b | ExitMethods.cs:73:5:78:5 | {...} | | ExitMethods.cs:73:5:78:5 | {...} | ExitMethods.cs:74:9:77:45 | if (...) ... | | ExitMethods.cs:74:9:77:45 | if (...) ... | ExitMethods.cs:74:13:74:13 | access to parameter b | | ExitMethods.cs:74:13:74:13 | After access to parameter b [false] | ExitMethods.cs:77:13:77:45 | Before throw ...; | @@ -2835,7 +2920,8 @@ dominance | ExitMethods.cs:107:9:107:47 | Before call to method Exit | ExitMethods.cs:107:9:107:47 | call to method Exit | | ExitMethods.cs:107:9:107:47 | call to method Exit | ExitMethods.cs:105:10:105:24 | Exceptional Exit | | ExitMethods.cs:107:9:107:48 | ...; | ExitMethods.cs:107:9:107:47 | Before call to method Exit | -| ExitMethods.cs:110:13:110:21 | Entry | ExitMethods.cs:111:5:113:5 | {...} | +| ExitMethods.cs:110:13:110:21 | Entry | ExitMethods.cs:110:31:110:35 | input | +| ExitMethods.cs:110:31:110:35 | input | ExitMethods.cs:111:5:113:5 | {...} | | ExitMethods.cs:111:5:113:5 | {...} | ExitMethods.cs:112:9:112:77 | Before return ...; | | ExitMethods.cs:112:9:112:77 | Before return ...; | ExitMethods.cs:112:16:112:76 | ... ? ... : ... | | ExitMethods.cs:112:9:112:77 | return ...; | ExitMethods.cs:110:13:110:21 | Normal Exit | @@ -2865,8 +2951,9 @@ dominance | ExitMethods.cs:112:47:112:76 | Before object creation of type ArgumentException | ExitMethods.cs:112:69:112:75 | "input" | | ExitMethods.cs:112:47:112:76 | object creation of type ArgumentException | ExitMethods.cs:112:47:112:76 | After object creation of type ArgumentException | | ExitMethods.cs:112:69:112:75 | "input" | ExitMethods.cs:112:47:112:76 | object creation of type ArgumentException | -| ExitMethods.cs:115:16:115:34 | Entry | ExitMethods.cs:116:5:118:5 | {...} | +| ExitMethods.cs:115:16:115:34 | Entry | ExitMethods.cs:115:43:115:43 | s | | ExitMethods.cs:115:16:115:34 | Normal Exit | ExitMethods.cs:115:16:115:34 | Exit | +| ExitMethods.cs:115:43:115:43 | s | ExitMethods.cs:116:5:118:5 | {...} | | ExitMethods.cs:116:5:118:5 | {...} | ExitMethods.cs:117:9:117:39 | Before return ...; | | ExitMethods.cs:117:9:117:39 | Before return ...; | ExitMethods.cs:117:16:117:38 | ... ? ... : ... | | ExitMethods.cs:117:9:117:39 | return ...; | ExitMethods.cs:115:16:115:34 | Normal Exit | @@ -2893,7 +2980,8 @@ dominance | ExitMethods.cs:128:9:128:26 | call to method FailingAssertion | ExitMethods.cs:126:17:126:33 | Exceptional Exit | | ExitMethods.cs:128:9:128:26 | this access | ExitMethods.cs:128:9:128:26 | call to method FailingAssertion | | ExitMethods.cs:128:9:128:27 | ...; | ExitMethods.cs:128:9:128:26 | Before call to method FailingAssertion | -| ExitMethods.cs:132:10:132:20 | Entry | ExitMethods.cs:132:33:132:49 | Before call to method IsFalse | +| ExitMethods.cs:132:10:132:20 | Entry | ExitMethods.cs:132:27:132:27 | b | +| ExitMethods.cs:132:27:132:27 | b | ExitMethods.cs:132:33:132:49 | Before call to method IsFalse | | ExitMethods.cs:132:33:132:49 | After call to method IsFalse | ExitMethods.cs:132:10:132:20 | Normal Exit | | ExitMethods.cs:132:33:132:49 | Before call to method IsFalse | ExitMethods.cs:132:48:132:48 | access to parameter b | | ExitMethods.cs:132:33:132:49 | call to method IsFalse | ExitMethods.cs:132:10:132:20 | Exceptional Exit | @@ -2907,8 +2995,10 @@ dominance | ExitMethods.cs:136:9:136:25 | this access | ExitMethods.cs:136:21:136:24 | true | | ExitMethods.cs:136:9:136:26 | ...; | ExitMethods.cs:136:9:136:25 | Before call to method AssertFalse | | ExitMethods.cs:136:21:136:24 | true | ExitMethods.cs:136:9:136:25 | call to method AssertFalse | -| ExitMethods.cs:140:17:140:42 | Entry | ExitMethods.cs:141:5:147:5 | {...} | +| ExitMethods.cs:140:17:140:42 | Entry | ExitMethods.cs:140:49:140:49 | b | | ExitMethods.cs:140:17:140:42 | Exceptional Exit | ExitMethods.cs:140:17:140:42 | Exit | +| ExitMethods.cs:140:49:140:49 | b | ExitMethods.cs:140:70:140:70 | e | +| ExitMethods.cs:140:70:140:70 | e | ExitMethods.cs:141:5:147:5 | {...} | | ExitMethods.cs:141:5:147:5 | {...} | ExitMethods.cs:142:9:145:53 | if (...) ... | | ExitMethods.cs:142:9:145:53 | if (...) ... | ExitMethods.cs:142:13:142:13 | access to parameter b | | ExitMethods.cs:142:13:142:13 | After access to parameter b [false] | ExitMethods.cs:145:13:145:53 | ...; | @@ -2924,8 +3014,9 @@ dominance | ExitMethods.cs:145:13:145:52 | Before call to method Throw | ExitMethods.cs:145:13:145:44 | Before call to method Capture | | ExitMethods.cs:145:13:145:53 | ...; | ExitMethods.cs:145:13:145:52 | Before call to method Throw | | ExitMethods.cs:145:43:145:43 | access to parameter e | ExitMethods.cs:145:13:145:44 | call to method Capture | -| Extensions.cs:5:23:5:29 | Entry | Extensions.cs:6:5:8:5 | {...} | +| Extensions.cs:5:23:5:29 | Entry | Extensions.cs:5:43:5:43 | s | | Extensions.cs:5:23:5:29 | Normal Exit | Extensions.cs:5:23:5:29 | Exit | +| Extensions.cs:5:43:5:43 | s | Extensions.cs:6:5:8:5 | {...} | | Extensions.cs:6:5:8:5 | {...} | Extensions.cs:7:9:7:30 | Before return ...; | | Extensions.cs:7:9:7:30 | Before return ...; | Extensions.cs:7:16:7:29 | Before call to method Parse | | Extensions.cs:7:9:7:30 | return ...; | Extensions.cs:5:23:5:29 | Normal Exit | @@ -2933,8 +3024,10 @@ dominance | Extensions.cs:7:16:7:29 | Before call to method Parse | Extensions.cs:7:28:7:28 | access to parameter s | | Extensions.cs:7:16:7:29 | call to method Parse | Extensions.cs:7:16:7:29 | After call to method Parse | | Extensions.cs:7:28:7:28 | access to parameter s | Extensions.cs:7:16:7:29 | call to method Parse | -| Extensions.cs:10:24:10:29 | Entry | Extensions.cs:11:5:13:5 | {...} | +| Extensions.cs:10:24:10:29 | Entry | Extensions.cs:10:43:10:43 | s | | Extensions.cs:10:24:10:29 | Normal Exit | Extensions.cs:10:24:10:29 | Exit | +| Extensions.cs:10:43:10:43 | s | Extensions.cs:10:65:10:65 | f | +| Extensions.cs:10:65:10:65 | f | Extensions.cs:11:5:13:5 | {...} | | Extensions.cs:11:5:13:5 | {...} | Extensions.cs:12:9:12:20 | Before return ...; | | Extensions.cs:12:9:12:20 | Before return ...; | Extensions.cs:12:16:12:19 | Before delegate call | | Extensions.cs:12:9:12:20 | return ...; | Extensions.cs:10:24:10:29 | Normal Exit | @@ -2949,8 +3042,9 @@ dominance | Extensions.cs:15:40:15:51 | Before call to method ToInt32 | Extensions.cs:15:48:15:50 | "0" | | Extensions.cs:15:40:15:51 | call to method ToInt32 | Extensions.cs:15:40:15:51 | After call to method ToInt32 | | Extensions.cs:15:48:15:50 | "0" | Extensions.cs:15:40:15:51 | call to method ToInt32 | -| Extensions.cs:20:17:20:20 | Entry | Extensions.cs:21:5:26:5 | {...} | +| Extensions.cs:20:17:20:20 | Entry | Extensions.cs:20:29:20:29 | s | | Extensions.cs:20:17:20:20 | Normal Exit | Extensions.cs:20:17:20:20 | Exit | +| Extensions.cs:20:29:20:29 | s | Extensions.cs:21:5:26:5 | {...} | | Extensions.cs:21:5:26:5 | After {...} | Extensions.cs:20:17:20:20 | Normal Exit | | Extensions.cs:21:5:26:5 | {...} | Extensions.cs:22:9:22:20 | ...; | | Extensions.cs:22:9:22:9 | access to parameter s | Extensions.cs:22:9:22:19 | call to method ToInt32 | @@ -3330,7 +3424,8 @@ dominance | Finally.cs:141:19:141:43 | Before object creation of type ArgumentException | Finally.cs:141:41:141:42 | "" | | Finally.cs:141:19:141:43 | object creation of type ArgumentException | Finally.cs:141:19:141:43 | After object creation of type ArgumentException | | Finally.cs:141:41:141:42 | "" | Finally.cs:141:19:141:43 | object creation of type ArgumentException | -| Finally.cs:147:10:147:11 | Entry | Finally.cs:148:5:170:5 | {...} | +| Finally.cs:147:10:147:11 | Entry | Finally.cs:147:22:147:25 | args | +| Finally.cs:147:22:147:25 | args | Finally.cs:148:5:170:5 | {...} | | Finally.cs:148:5:170:5 | After {...} | Finally.cs:147:10:147:11 | Normal Exit | | Finally.cs:148:5:170:5 | {...} | Finally.cs:149:9:169:9 | try {...} ... | | Finally.cs:149:9:169:9 | After try {...} ... | Finally.cs:148:5:170:5 | After {...} | @@ -3437,7 +3532,9 @@ dominance | Finally.cs:174:11:174:20 | call to method | Finally.cs:174:11:174:20 | After call to method | | Finally.cs:174:11:174:20 | this access | Finally.cs:174:11:174:20 | call to method | | Finally.cs:174:11:174:20 | {...} | Finally.cs:174:11:174:20 | Normal Exit | -| Finally.cs:176:10:176:11 | Entry | Finally.cs:177:5:193:5 | {...} | +| Finally.cs:176:10:176:11 | Entry | Finally.cs:176:18:176:19 | b1 | +| Finally.cs:176:18:176:19 | b1 | Finally.cs:176:27:176:28 | b2 | +| Finally.cs:176:27:176:28 | b2 | Finally.cs:177:5:193:5 | {...} | | Finally.cs:177:5:193:5 | After {...} | Finally.cs:176:10:176:11 | Normal Exit | | Finally.cs:177:5:193:5 | {...} | Finally.cs:178:9:192:9 | try {...} ... | | Finally.cs:178:9:192:9 | After try {...} ... | Finally.cs:177:5:193:5 | After {...} | @@ -3486,7 +3583,10 @@ dominance | Finally.cs:190:31:190:46 | After object creation of type ExceptionC | Finally.cs:190:25:190:47 | throw ...; | | Finally.cs:190:31:190:46 | Before object creation of type ExceptionC | Finally.cs:190:31:190:46 | object creation of type ExceptionC | | Finally.cs:190:31:190:46 | object creation of type ExceptionC | Finally.cs:190:31:190:46 | After object creation of type ExceptionC | -| Finally.cs:195:10:195:12 | Entry | Finally.cs:196:5:214:5 | {...} | +| Finally.cs:195:10:195:12 | Entry | Finally.cs:195:19:195:20 | b1 | +| Finally.cs:195:19:195:20 | b1 | Finally.cs:195:28:195:29 | b2 | +| Finally.cs:195:28:195:29 | b2 | Finally.cs:195:37:195:38 | b3 | +| Finally.cs:195:37:195:38 | b3 | Finally.cs:196:5:214:5 | {...} | | Finally.cs:196:5:214:5 | After {...} | Finally.cs:195:10:195:12 | Normal Exit | | Finally.cs:196:5:214:5 | {...} | Finally.cs:197:9:212:9 | try {...} ... | | Finally.cs:197:9:212:9 | After try {...} ... | Finally.cs:213:9:213:25 | ...; | @@ -3586,7 +3686,9 @@ dominance | Finally.cs:230:9:230:34 | ...; | Finally.cs:230:9:230:33 | Before call to method WriteLine | | Finally.cs:230:9:230:34 | After ...; | Finally.cs:217:5:231:5 | After {...} | | Finally.cs:230:27:230:32 | "Done" | Finally.cs:230:9:230:33 | call to method WriteLine | -| Finally.cs:233:10:233:12 | Entry | Finally.cs:234:5:261:5 | {...} | +| Finally.cs:233:10:233:12 | Entry | Finally.cs:233:19:233:20 | b1 | +| Finally.cs:233:19:233:20 | b1 | Finally.cs:233:28:233:29 | b2 | +| Finally.cs:233:28:233:29 | b2 | Finally.cs:234:5:261:5 | {...} | | Finally.cs:234:5:261:5 | After {...} | Finally.cs:233:10:233:12 | Normal Exit | | Finally.cs:234:5:261:5 | {...} | Finally.cs:235:9:259:9 | try {...} ... | | Finally.cs:235:9:259:9 | After try {...} ... | Finally.cs:260:9:260:34 | ...; | @@ -3650,7 +3752,8 @@ dominance | Finally.cs:260:9:260:34 | ...; | Finally.cs:260:9:260:33 | Before call to method WriteLine | | Finally.cs:260:9:260:34 | After ...; | Finally.cs:234:5:261:5 | After {...} | | Finally.cs:260:27:260:32 | "Done" | Finally.cs:260:9:260:33 | call to method WriteLine | -| Finally.cs:263:10:263:12 | Entry | Finally.cs:264:5:274:5 | {...} | +| Finally.cs:263:10:263:12 | Entry | Finally.cs:263:18:263:18 | i | +| Finally.cs:263:18:263:18 | i | Finally.cs:264:5:274:5 | {...} | | Finally.cs:264:5:274:5 | After {...} | Finally.cs:263:10:263:12 | Normal Exit | | Finally.cs:264:5:274:5 | {...} | Finally.cs:265:9:273:9 | try {...} ... | | Finally.cs:265:9:273:9 | After try {...} ... | Finally.cs:264:5:274:5 | After {...} | @@ -3689,8 +3792,9 @@ dominance | Foreach.cs:4:7:4:13 | call to method | Foreach.cs:4:7:4:13 | After call to method | | Foreach.cs:4:7:4:13 | this access | Foreach.cs:4:7:4:13 | call to method | | Foreach.cs:4:7:4:13 | {...} | Foreach.cs:4:7:4:13 | Normal Exit | -| Foreach.cs:6:10:6:11 | Entry | Foreach.cs:7:5:10:5 | {...} | +| Foreach.cs:6:10:6:11 | Entry | Foreach.cs:6:22:6:25 | args | | Foreach.cs:6:10:6:11 | Normal Exit | Foreach.cs:6:10:6:11 | Exit | +| Foreach.cs:6:22:6:25 | args | Foreach.cs:7:5:10:5 | {...} | | Foreach.cs:7:5:10:5 | After {...} | Foreach.cs:6:10:6:11 | Normal Exit | | Foreach.cs:7:5:10:5 | {...} | Foreach.cs:8:9:9:13 | foreach (... ... in ...) ... | | Foreach.cs:8:9:9:13 | After foreach (... ... in ...) ... | Foreach.cs:7:5:10:5 | After {...} | @@ -3700,8 +3804,9 @@ dominance | Foreach.cs:8:29:8:32 | access to parameter args | Foreach.cs:8:29:8:32 | After access to parameter args [empty] | | Foreach.cs:8:29:8:32 | access to parameter args | Foreach.cs:8:29:8:32 | After access to parameter args [non-empty] | | Foreach.cs:9:13:9:13 | ; | Foreach.cs:8:9:9:13 | [LoopHeader] foreach (... ... in ...) ... | -| Foreach.cs:12:10:12:11 | Entry | Foreach.cs:13:5:16:5 | {...} | +| Foreach.cs:12:10:12:11 | Entry | Foreach.cs:12:22:12:25 | args | | Foreach.cs:12:10:12:11 | Normal Exit | Foreach.cs:12:10:12:11 | Exit | +| Foreach.cs:12:22:12:25 | args | Foreach.cs:13:5:16:5 | {...} | | Foreach.cs:13:5:16:5 | After {...} | Foreach.cs:12:10:12:11 | Normal Exit | | Foreach.cs:13:5:16:5 | {...} | Foreach.cs:14:9:15:13 | foreach (... ... in ...) ... | | Foreach.cs:14:9:15:13 | After foreach (... ... in ...) ... | Foreach.cs:13:5:16:5 | After {...} | @@ -3711,8 +3816,9 @@ dominance | Foreach.cs:14:27:14:30 | access to parameter args | Foreach.cs:14:27:14:30 | After access to parameter args [empty] | | Foreach.cs:14:27:14:30 | access to parameter args | Foreach.cs:14:27:14:30 | After access to parameter args [non-empty] | | Foreach.cs:15:13:15:13 | ; | Foreach.cs:14:9:15:13 | [LoopHeader] foreach (... ... in ...) ... | -| Foreach.cs:18:10:18:11 | Entry | Foreach.cs:19:5:22:5 | {...} | +| Foreach.cs:18:10:18:11 | Entry | Foreach.cs:18:33:18:33 | e | | Foreach.cs:18:10:18:11 | Normal Exit | Foreach.cs:18:10:18:11 | Exit | +| Foreach.cs:18:33:18:33 | e | Foreach.cs:19:5:22:5 | {...} | | Foreach.cs:19:5:22:5 | After {...} | Foreach.cs:18:10:18:11 | Normal Exit | | Foreach.cs:19:5:22:5 | {...} | Foreach.cs:20:9:21:11 | foreach (... ... in ...) ... | | Foreach.cs:20:9:21:11 | After foreach (... ... in ...) ... | Foreach.cs:19:5:22:5 | After {...} | @@ -3730,8 +3836,9 @@ dominance | Foreach.cs:20:43:20:68 | call to method Empty | Foreach.cs:20:43:20:68 | After call to method Empty [empty] | | Foreach.cs:20:43:20:68 | call to method Empty | Foreach.cs:20:43:20:68 | After call to method Empty [non-empty] | | Foreach.cs:21:11:21:11 | ; | Foreach.cs:20:9:21:11 | [LoopHeader] foreach (... ... in ...) ... | -| Foreach.cs:24:10:24:11 | Entry | Foreach.cs:25:5:28:5 | {...} | +| Foreach.cs:24:10:24:11 | Entry | Foreach.cs:24:40:24:43 | args | | Foreach.cs:24:10:24:11 | Normal Exit | Foreach.cs:24:10:24:11 | Exit | +| Foreach.cs:24:40:24:43 | args | Foreach.cs:25:5:28:5 | {...} | | Foreach.cs:25:5:28:5 | After {...} | Foreach.cs:24:10:24:11 | Normal Exit | | Foreach.cs:25:5:28:5 | {...} | Foreach.cs:26:9:27:11 | foreach (... ... in ...) ... | | Foreach.cs:26:9:27:11 | After foreach (... ... in ...) ... | Foreach.cs:25:5:28:5 | After {...} | @@ -3745,8 +3852,9 @@ dominance | Foreach.cs:26:36:26:39 | access to parameter args | Foreach.cs:26:36:26:39 | After access to parameter args [empty] | | Foreach.cs:26:36:26:39 | access to parameter args | Foreach.cs:26:36:26:39 | After access to parameter args [non-empty] | | Foreach.cs:27:11:27:11 | ; | Foreach.cs:26:9:27:11 | [LoopHeader] foreach (... ... in ...) ... | -| Foreach.cs:30:10:30:11 | Entry | Foreach.cs:31:5:34:5 | {...} | +| Foreach.cs:30:10:30:11 | Entry | Foreach.cs:30:40:30:43 | args | | Foreach.cs:30:10:30:11 | Normal Exit | Foreach.cs:30:10:30:11 | Exit | +| Foreach.cs:30:40:30:43 | args | Foreach.cs:31:5:34:5 | {...} | | Foreach.cs:31:5:34:5 | After {...} | Foreach.cs:30:10:30:11 | Normal Exit | | Foreach.cs:31:5:34:5 | {...} | Foreach.cs:32:9:33:11 | foreach (... ... in ...) ... | | Foreach.cs:32:9:33:11 | After foreach (... ... in ...) ... | Foreach.cs:31:5:34:5 | After {...} | @@ -3760,8 +3868,9 @@ dominance | Foreach.cs:32:32:32:35 | access to parameter args | Foreach.cs:32:32:32:35 | After access to parameter args [empty] | | Foreach.cs:32:32:32:35 | access to parameter args | Foreach.cs:32:32:32:35 | After access to parameter args [non-empty] | | Foreach.cs:33:11:33:11 | ; | Foreach.cs:32:9:33:11 | [LoopHeader] foreach (... ... in ...) ... | -| Foreach.cs:36:10:36:11 | Entry | Foreach.cs:37:5:40:5 | {...} | +| Foreach.cs:36:10:36:11 | Entry | Foreach.cs:36:40:36:43 | args | | Foreach.cs:36:10:36:11 | Normal Exit | Foreach.cs:36:10:36:11 | Exit | +| Foreach.cs:36:40:36:43 | args | Foreach.cs:37:5:40:5 | {...} | | Foreach.cs:37:5:40:5 | After {...} | Foreach.cs:36:10:36:11 | Normal Exit | | Foreach.cs:37:5:40:5 | {...} | Foreach.cs:38:9:39:11 | foreach (... ... in ...) ... | | Foreach.cs:38:9:39:11 | After foreach (... ... in ...) ... | Foreach.cs:37:5:40:5 | After {...} | @@ -3818,11 +3927,12 @@ dominance | Initializers.cs:10:5:10:16 | After call to method | Initializers.cs:10:5:10:16 | Before call to constructor Object | | Initializers.cs:10:5:10:16 | Before call to constructor Object | Initializers.cs:10:5:10:16 | call to constructor Object | | Initializers.cs:10:5:10:16 | Before call to method | Initializers.cs:10:5:10:16 | this access | -| Initializers.cs:10:5:10:16 | Entry | Initializers.cs:10:5:10:16 | Before call to method | +| Initializers.cs:10:5:10:16 | Entry | Initializers.cs:10:25:10:25 | s | | Initializers.cs:10:5:10:16 | Normal Exit | Initializers.cs:10:5:10:16 | Exit | | Initializers.cs:10:5:10:16 | call to constructor Object | Initializers.cs:10:5:10:16 | After call to constructor Object | | Initializers.cs:10:5:10:16 | call to method | Initializers.cs:10:5:10:16 | After call to method | | Initializers.cs:10:5:10:16 | this access | Initializers.cs:10:5:10:16 | call to method | +| Initializers.cs:10:25:10:25 | s | Initializers.cs:10:5:10:16 | Before call to method | | Initializers.cs:10:28:10:30 | {...} | Initializers.cs:10:5:10:16 | Normal Exit | | Initializers.cs:12:10:12:10 | Entry | Initializers.cs:13:5:16:5 | {...} | | Initializers.cs:12:10:12:10 | Normal Exit | Initializers.cs:12:10:12:10 | Exit | @@ -3935,8 +4045,9 @@ dominance | Initializers.cs:31:26:31:31 | ...; | Initializers.cs:31:26:31:30 | Before ... = ... | | Initializers.cs:31:26:31:31 | After ...; | Initializers.cs:31:24:31:33 | After {...} | | Initializers.cs:31:30:31:30 | 3 | Initializers.cs:31:26:31:30 | ... = ... | -| Initializers.cs:33:9:33:11 | Entry | Initializers.cs:33:22:33:25 | Before call to constructor Sub | +| Initializers.cs:33:9:33:11 | Entry | Initializers.cs:33:17:33:17 | i | | Initializers.cs:33:9:33:11 | Normal Exit | Initializers.cs:33:9:33:11 | Exit | +| Initializers.cs:33:17:33:17 | i | Initializers.cs:33:22:33:25 | Before call to constructor Sub | | Initializers.cs:33:22:33:25 | After call to constructor Sub | Initializers.cs:33:29:33:38 | {...} | | Initializers.cs:33:22:33:25 | Before call to constructor Sub | Initializers.cs:33:22:33:25 | call to constructor Sub | | Initializers.cs:33:22:33:25 | call to constructor Sub | Initializers.cs:33:22:33:25 | After call to constructor Sub | @@ -3956,11 +4067,13 @@ dominance | Initializers.cs:35:9:35:11 | After call to method | Initializers.cs:35:9:35:11 | Before call to constructor NoConstructor | | Initializers.cs:35:9:35:11 | Before call to constructor NoConstructor | Initializers.cs:35:9:35:11 | call to constructor NoConstructor | | Initializers.cs:35:9:35:11 | Before call to method | Initializers.cs:35:9:35:11 | this access | -| Initializers.cs:35:9:35:11 | Entry | Initializers.cs:35:9:35:11 | Before call to method | +| Initializers.cs:35:9:35:11 | Entry | Initializers.cs:35:17:35:17 | i | | Initializers.cs:35:9:35:11 | Normal Exit | Initializers.cs:35:9:35:11 | Exit | | Initializers.cs:35:9:35:11 | call to constructor NoConstructor | Initializers.cs:35:9:35:11 | After call to constructor NoConstructor | | Initializers.cs:35:9:35:11 | call to method | Initializers.cs:35:9:35:11 | After call to method | | Initializers.cs:35:9:35:11 | this access | Initializers.cs:35:9:35:11 | call to method | +| Initializers.cs:35:17:35:17 | i | Initializers.cs:35:24:35:24 | j | +| Initializers.cs:35:24:35:24 | j | Initializers.cs:35:9:35:11 | Before call to method | | Initializers.cs:35:27:35:40 | After {...} | Initializers.cs:35:9:35:11 | Normal Exit | | Initializers.cs:35:27:35:40 | {...} | Initializers.cs:35:29:35:38 | ...; | | Initializers.cs:35:29:35:29 | After access to field I | Initializers.cs:35:33:35:37 | Before ... + ... | @@ -3997,8 +4110,9 @@ dominance | Initializers.cs:41:11:41:18 | call to method | Initializers.cs:41:11:41:18 | After call to method | | Initializers.cs:41:11:41:18 | this access | Initializers.cs:41:11:41:18 | call to method | | Initializers.cs:41:11:41:18 | {...} | Initializers.cs:41:11:41:18 | Normal Exit | -| Initializers.cs:51:10:51:13 | Entry | Initializers.cs:52:5:66:5 | {...} | +| Initializers.cs:51:10:51:13 | Entry | Initializers.cs:51:19:51:19 | i | | Initializers.cs:51:10:51:13 | Normal Exit | Initializers.cs:51:10:51:13 | Exit | +| Initializers.cs:51:19:51:19 | i | Initializers.cs:52:5:66:5 | {...} | | Initializers.cs:52:5:66:5 | After {...} | Initializers.cs:51:10:51:13 | Normal Exit | | Initializers.cs:52:5:66:5 | {...} | Initializers.cs:54:9:54:96 | ... ...; | | Initializers.cs:54:9:54:96 | ... ...; | Initializers.cs:54:13:54:95 | Before Dictionary dict = ... | @@ -4251,8 +4365,9 @@ dominance | LoopUnrolling.cs:5:7:5:19 | call to method | LoopUnrolling.cs:5:7:5:19 | After call to method | | LoopUnrolling.cs:5:7:5:19 | this access | LoopUnrolling.cs:5:7:5:19 | call to method | | LoopUnrolling.cs:5:7:5:19 | {...} | LoopUnrolling.cs:5:7:5:19 | Normal Exit | -| LoopUnrolling.cs:7:10:7:11 | Entry | LoopUnrolling.cs:8:5:13:5 | {...} | +| LoopUnrolling.cs:7:10:7:11 | Entry | LoopUnrolling.cs:7:22:7:25 | args | | LoopUnrolling.cs:7:10:7:11 | Normal Exit | LoopUnrolling.cs:7:10:7:11 | Exit | +| LoopUnrolling.cs:7:22:7:25 | args | LoopUnrolling.cs:8:5:13:5 | {...} | | LoopUnrolling.cs:8:5:13:5 | {...} | LoopUnrolling.cs:9:9:10:19 | if (...) ... | | LoopUnrolling.cs:9:9:10:19 | After if (...) ... | LoopUnrolling.cs:11:9:12:35 | foreach (... ... in ...) ... | | LoopUnrolling.cs:9:9:10:19 | if (...) ... | LoopUnrolling.cs:9:13:9:28 | Before ... == ... | @@ -4311,8 +4426,9 @@ dominance | LoopUnrolling.cs:19:13:19:33 | ...; | LoopUnrolling.cs:19:13:19:32 | Before call to method WriteLine | | LoopUnrolling.cs:19:13:19:33 | After ...; | LoopUnrolling.cs:18:9:19:33 | [LoopHeader] foreach (... ... in ...) ... | | LoopUnrolling.cs:19:31:19:31 | access to local variable x | LoopUnrolling.cs:19:13:19:32 | call to method WriteLine | -| LoopUnrolling.cs:22:10:22:11 | Entry | LoopUnrolling.cs:23:5:27:5 | {...} | +| LoopUnrolling.cs:22:10:22:11 | Entry | LoopUnrolling.cs:22:20:22:23 | args | | LoopUnrolling.cs:22:10:22:11 | Normal Exit | LoopUnrolling.cs:22:10:22:11 | Exit | +| LoopUnrolling.cs:22:20:22:23 | args | LoopUnrolling.cs:23:5:27:5 | {...} | | LoopUnrolling.cs:23:5:27:5 | After {...} | LoopUnrolling.cs:22:10:22:11 | Normal Exit | | LoopUnrolling.cs:23:5:27:5 | {...} | LoopUnrolling.cs:24:9:26:40 | foreach (... ... in ...) ... | | LoopUnrolling.cs:24:9:26:40 | After foreach (... ... in ...) ... | LoopUnrolling.cs:23:5:27:5 | After {...} | @@ -4453,8 +4569,9 @@ dominance | LoopUnrolling.cs:50:16:50:36 | After ...; | LoopUnrolling.cs:51:13:51:23 | Before goto ...; | | LoopUnrolling.cs:50:34:50:34 | access to local variable x | LoopUnrolling.cs:50:16:50:35 | call to method WriteLine | | LoopUnrolling.cs:51:13:51:23 | Before goto ...; | LoopUnrolling.cs:51:13:51:23 | goto ...; | -| LoopUnrolling.cs:55:10:55:11 | Entry | LoopUnrolling.cs:56:5:65:5 | {...} | +| LoopUnrolling.cs:55:10:55:11 | Entry | LoopUnrolling.cs:55:18:55:18 | b | | LoopUnrolling.cs:55:10:55:11 | Normal Exit | LoopUnrolling.cs:55:10:55:11 | Exit | +| LoopUnrolling.cs:55:18:55:18 | b | LoopUnrolling.cs:56:5:65:5 | {...} | | LoopUnrolling.cs:56:5:65:5 | After {...} | LoopUnrolling.cs:55:10:55:11 | Normal Exit | | LoopUnrolling.cs:56:5:65:5 | {...} | LoopUnrolling.cs:57:9:57:48 | ... ...; | | LoopUnrolling.cs:57:9:57:48 | ... ...; | LoopUnrolling.cs:57:13:57:47 | Before String[] xs = ... | @@ -4501,8 +4618,9 @@ dominance | LoopUnrolling.cs:63:17:63:36 | call to method WriteLine | LoopUnrolling.cs:63:17:63:36 | After call to method WriteLine | | LoopUnrolling.cs:63:17:63:37 | ...; | LoopUnrolling.cs:63:17:63:36 | Before call to method WriteLine | | LoopUnrolling.cs:63:35:63:35 | access to local variable x | LoopUnrolling.cs:63:17:63:36 | call to method WriteLine | -| LoopUnrolling.cs:67:10:67:11 | Entry | LoopUnrolling.cs:68:5:74:5 | {...} | +| LoopUnrolling.cs:67:10:67:11 | Entry | LoopUnrolling.cs:67:26:67:29 | args | | LoopUnrolling.cs:67:10:67:11 | Normal Exit | LoopUnrolling.cs:67:10:67:11 | Exit | +| LoopUnrolling.cs:67:26:67:29 | args | LoopUnrolling.cs:68:5:74:5 | {...} | | LoopUnrolling.cs:68:5:74:5 | {...} | LoopUnrolling.cs:69:9:70:19 | if (...) ... | | LoopUnrolling.cs:69:9:70:19 | After if (...) ... | LoopUnrolling.cs:71:9:71:21 | ...; | | LoopUnrolling.cs:69:9:70:19 | if (...) ... | LoopUnrolling.cs:69:13:69:23 | !... | @@ -4642,8 +4760,9 @@ dominance | MultiImplementationA.cs:7:27:7:37 | Before throw ...; | MultiImplementationA.cs:7:33:7:36 | null | | MultiImplementationA.cs:7:27:7:37 | throw ...; | MultiImplementationA.cs:7:21:7:23 | Exceptional Exit | | MultiImplementationA.cs:7:33:7:36 | null | MultiImplementationA.cs:7:27:7:37 | throw ...; | -| MultiImplementationA.cs:7:41:7:43 | Entry | MultiImplementationA.cs:7:45:7:59 | {...} | -| MultiImplementationA.cs:7:41:7:43 | Entry | MultiImplementationB.cs:4:43:4:45 | {...} | +| MultiImplementationA.cs:7:41:7:43 | Entry | MultiImplementationA.cs:7:41:7:43 | value | +| MultiImplementationA.cs:7:41:7:43 | value | MultiImplementationA.cs:7:45:7:59 | {...} | +| MultiImplementationA.cs:7:41:7:43 | value | MultiImplementationB.cs:4:43:4:45 | {...} | | MultiImplementationA.cs:7:45:7:59 | {...} | MultiImplementationA.cs:7:47:7:57 | Before throw ...; | | MultiImplementationA.cs:7:47:7:57 | Before throw ...; | MultiImplementationA.cs:7:53:7:56 | null | | MultiImplementationA.cs:7:47:7:57 | throw ...; | MultiImplementationA.cs:7:41:7:43 | Exceptional Exit | @@ -4664,21 +4783,26 @@ dominance | MultiImplementationA.cs:13:16:13:20 | After ... = ... | MultiImplementationA.cs:24:32:24:34 | Before ... = ... | | MultiImplementationA.cs:13:16:13:20 | Before ... = ... | MultiImplementationA.cs:13:16:13:16 | Before access to field F | | MultiImplementationA.cs:13:20:13:20 | 0 | MultiImplementationA.cs:13:16:13:20 | ... = ... | -| MultiImplementationA.cs:14:31:14:31 | Entry | MultiImplementationA.cs:14:31:14:31 | access to parameter i | -| MultiImplementationA.cs:14:31:14:31 | Entry | MultiImplementationB.cs:12:31:12:40 | Before throw ... | +| MultiImplementationA.cs:14:25:14:25 | i | MultiImplementationA.cs:14:31:14:31 | access to parameter i | +| MultiImplementationA.cs:14:25:14:25 | i | MultiImplementationB.cs:12:31:12:40 | Before throw ... | +| MultiImplementationA.cs:14:31:14:31 | Entry | MultiImplementationA.cs:14:25:14:25 | i | | MultiImplementationA.cs:14:31:14:31 | access to parameter i | MultiImplementationA.cs:14:31:14:31 | Normal Exit | -| MultiImplementationA.cs:15:36:15:38 | Entry | MultiImplementationA.cs:15:40:15:52 | {...} | -| MultiImplementationA.cs:15:36:15:38 | Entry | MultiImplementationB.cs:13:40:13:54 | {...} | +| MultiImplementationA.cs:15:31:15:31 | s | MultiImplementationA.cs:15:40:15:52 | {...} | +| MultiImplementationA.cs:15:31:15:31 | s | MultiImplementationA.cs:15:54:15:56 | value | +| MultiImplementationA.cs:15:31:15:31 | s | MultiImplementationB.cs:13:40:13:54 | {...} | +| MultiImplementationA.cs:15:36:15:38 | Entry | MultiImplementationA.cs:15:31:15:31 | s | | MultiImplementationA.cs:15:40:15:52 | {...} | MultiImplementationA.cs:15:42:15:50 | Before return ...; | | MultiImplementationA.cs:15:42:15:50 | Before return ...; | MultiImplementationA.cs:15:49:15:49 | access to parameter s | | MultiImplementationA.cs:15:42:15:50 | return ...; | MultiImplementationA.cs:15:36:15:38 | Normal Exit | | MultiImplementationA.cs:15:49:15:49 | access to parameter s | MultiImplementationA.cs:15:42:15:50 | return ...; | -| MultiImplementationA.cs:15:54:15:56 | Entry | MultiImplementationA.cs:15:58:15:60 | {...} | -| MultiImplementationA.cs:15:54:15:56 | Entry | MultiImplementationB.cs:13:60:13:62 | {...} | +| MultiImplementationA.cs:15:54:15:56 | Entry | MultiImplementationA.cs:15:31:15:31 | s | | MultiImplementationA.cs:15:54:15:56 | Normal Exit | MultiImplementationA.cs:15:54:15:56 | Exit | -| MultiImplementationA.cs:16:17:16:18 | Entry | MultiImplementationA.cs:17:5:19:5 | {...} | -| MultiImplementationA.cs:16:17:16:18 | Entry | MultiImplementationB.cs:15:5:17:5 | {...} | +| MultiImplementationA.cs:15:54:15:56 | value | MultiImplementationA.cs:15:58:15:60 | {...} | +| MultiImplementationA.cs:15:54:15:56 | value | MultiImplementationB.cs:13:60:13:62 | {...} | +| MultiImplementationA.cs:16:17:16:18 | Entry | MultiImplementationA.cs:16:24:16:24 | i | | MultiImplementationA.cs:16:17:16:18 | Normal Exit | MultiImplementationA.cs:16:17:16:18 | Exit | +| MultiImplementationA.cs:16:24:16:24 | i | MultiImplementationA.cs:17:5:19:5 | {...} | +| MultiImplementationA.cs:16:24:16:24 | i | MultiImplementationB.cs:15:5:17:5 | {...} | | MultiImplementationA.cs:17:5:19:5 | {...} | MultiImplementationA.cs:18:9:18:22 | M2(...) | | MultiImplementationA.cs:18:9:18:22 | Entry | MultiImplementationA.cs:18:21:18:21 | 0 | | MultiImplementationA.cs:18:9:18:22 | M2(...) | MultiImplementationA.cs:17:5:19:5 | After {...} | @@ -4688,11 +4812,12 @@ dominance | MultiImplementationA.cs:20:12:20:13 | After call to method | MultiImplementationA.cs:20:12:20:13 | Before call to constructor Object | | MultiImplementationA.cs:20:12:20:13 | Before call to constructor Object | MultiImplementationA.cs:20:12:20:13 | call to constructor Object | | MultiImplementationA.cs:20:12:20:13 | Before call to method | MultiImplementationA.cs:20:12:20:13 | this access | -| MultiImplementationA.cs:20:12:20:13 | Entry | MultiImplementationA.cs:20:12:20:13 | Before call to method | -| MultiImplementationA.cs:20:12:20:13 | Entry | MultiImplementationB.cs:18:12:18:13 | Before call to method | +| MultiImplementationA.cs:20:12:20:13 | Entry | MultiImplementationA.cs:20:19:20:19 | i | | MultiImplementationA.cs:20:12:20:13 | call to constructor Object | MultiImplementationA.cs:20:12:20:13 | After call to constructor Object | | MultiImplementationA.cs:20:12:20:13 | call to method | MultiImplementationA.cs:20:12:20:13 | After call to method | | MultiImplementationA.cs:20:12:20:13 | this access | MultiImplementationA.cs:20:12:20:13 | call to method | +| MultiImplementationA.cs:20:19:20:19 | i | MultiImplementationA.cs:20:12:20:13 | Before call to method | +| MultiImplementationA.cs:20:19:20:19 | i | MultiImplementationB.cs:18:12:18:13 | Before call to method | | MultiImplementationA.cs:20:22:20:31 | After {...} | MultiImplementationA.cs:20:12:20:13 | Normal Exit | | MultiImplementationA.cs:20:22:20:31 | {...} | MultiImplementationA.cs:20:24:20:29 | ...; | | MultiImplementationA.cs:20:24:20:24 | After access to field F | MultiImplementationA.cs:20:28:20:28 | access to parameter i | @@ -4715,8 +4840,9 @@ dominance | MultiImplementationA.cs:22:6:22:7 | Entry | MultiImplementationA.cs:22:11:22:13 | {...} | | MultiImplementationA.cs:22:6:22:7 | Entry | MultiImplementationB.cs:20:11:20:25 | {...} | | MultiImplementationA.cs:22:11:22:13 | {...} | MultiImplementationA.cs:22:6:22:7 | Normal Exit | -| MultiImplementationA.cs:23:28:23:35 | Entry | MultiImplementationA.cs:23:50:23:53 | null | -| MultiImplementationA.cs:23:28:23:35 | Entry | MultiImplementationB.cs:21:50:21:59 | Before throw ... | +| MultiImplementationA.cs:23:28:23:35 | Entry | MultiImplementationA.cs:23:44:23:44 | i | +| MultiImplementationA.cs:23:44:23:44 | i | MultiImplementationA.cs:23:50:23:53 | null | +| MultiImplementationA.cs:23:44:23:44 | i | MultiImplementationB.cs:21:50:21:59 | Before throw ... | | MultiImplementationA.cs:23:50:23:53 | null | MultiImplementationA.cs:23:28:23:35 | Normal Exit | | MultiImplementationA.cs:24:16:24:16 | After access to property P | MultiImplementationA.cs:24:34:24:34 | 0 | | MultiImplementationA.cs:24:16:24:16 | Before access to property P | MultiImplementationA.cs:24:16:24:16 | this access | @@ -4852,15 +4978,17 @@ dominance | NullCoalescing.cs:1:7:1:20 | call to method | NullCoalescing.cs:1:7:1:20 | After call to method | | NullCoalescing.cs:1:7:1:20 | this access | NullCoalescing.cs:1:7:1:20 | call to method | | NullCoalescing.cs:1:7:1:20 | {...} | NullCoalescing.cs:1:7:1:20 | Normal Exit | -| NullCoalescing.cs:3:9:3:10 | Entry | NullCoalescing.cs:3:23:3:28 | ... ?? ... | +| NullCoalescing.cs:3:9:3:10 | Entry | NullCoalescing.cs:3:17:3:17 | i | | NullCoalescing.cs:3:9:3:10 | Normal Exit | NullCoalescing.cs:3:9:3:10 | Exit | +| NullCoalescing.cs:3:17:3:17 | i | NullCoalescing.cs:3:23:3:28 | ... ?? ... | | NullCoalescing.cs:3:23:3:23 | After access to parameter i [null] | NullCoalescing.cs:3:28:3:28 | 0 | | NullCoalescing.cs:3:23:3:23 | access to parameter i | NullCoalescing.cs:3:23:3:23 | After access to parameter i [non-null] | | NullCoalescing.cs:3:23:3:23 | access to parameter i | NullCoalescing.cs:3:23:3:23 | After access to parameter i [null] | | NullCoalescing.cs:3:23:3:28 | ... ?? ... | NullCoalescing.cs:3:23:3:23 | access to parameter i | | NullCoalescing.cs:3:23:3:28 | After ... ?? ... | NullCoalescing.cs:3:9:3:10 | Normal Exit | -| NullCoalescing.cs:5:9:5:10 | Entry | NullCoalescing.cs:5:24:5:43 | ... ? ... : ... | +| NullCoalescing.cs:5:9:5:10 | Entry | NullCoalescing.cs:5:18:5:18 | b | | NullCoalescing.cs:5:9:5:10 | Normal Exit | NullCoalescing.cs:5:9:5:10 | Exit | +| NullCoalescing.cs:5:18:5:18 | b | NullCoalescing.cs:5:24:5:43 | ... ? ... : ... | | NullCoalescing.cs:5:24:5:43 | ... ? ... : ... | NullCoalescing.cs:5:25:5:34 | ... ?? ... | | NullCoalescing.cs:5:24:5:43 | After ... ? ... : ... | NullCoalescing.cs:5:9:5:10 | Normal Exit | | NullCoalescing.cs:5:25:5:25 | After access to parameter b [non-null] | NullCoalescing.cs:5:25:5:34 | After ... ?? ... [true] | @@ -4871,8 +4999,10 @@ dominance | NullCoalescing.cs:5:25:5:34 | After ... ?? ... [false] | NullCoalescing.cs:5:43:5:43 | 1 | | NullCoalescing.cs:5:25:5:34 | After ... ?? ... [true] | NullCoalescing.cs:5:39:5:39 | 0 | | NullCoalescing.cs:5:30:5:34 | false | NullCoalescing.cs:5:30:5:34 | After false [false] | -| NullCoalescing.cs:7:12:7:13 | Entry | NullCoalescing.cs:7:40:7:53 | ... ?? ... | +| NullCoalescing.cs:7:12:7:13 | Entry | NullCoalescing.cs:7:22:7:23 | s1 | | NullCoalescing.cs:7:12:7:13 | Normal Exit | NullCoalescing.cs:7:12:7:13 | Exit | +| NullCoalescing.cs:7:22:7:23 | s1 | NullCoalescing.cs:7:33:7:34 | s2 | +| NullCoalescing.cs:7:33:7:34 | s2 | NullCoalescing.cs:7:40:7:53 | ... ?? ... | | NullCoalescing.cs:7:40:7:41 | After access to parameter s1 [null] | NullCoalescing.cs:7:46:7:53 | ... ?? ... | | NullCoalescing.cs:7:40:7:41 | access to parameter s1 | NullCoalescing.cs:7:40:7:41 | After access to parameter s1 [non-null] | | NullCoalescing.cs:7:40:7:41 | access to parameter s1 | NullCoalescing.cs:7:40:7:41 | After access to parameter s1 [null] | @@ -4882,8 +5012,10 @@ dominance | NullCoalescing.cs:7:46:7:47 | access to parameter s2 | NullCoalescing.cs:7:46:7:47 | After access to parameter s2 [non-null] | | NullCoalescing.cs:7:46:7:47 | access to parameter s2 | NullCoalescing.cs:7:46:7:47 | After access to parameter s2 [null] | | NullCoalescing.cs:7:46:7:53 | ... ?? ... | NullCoalescing.cs:7:46:7:47 | access to parameter s2 | -| NullCoalescing.cs:9:12:9:13 | Entry | NullCoalescing.cs:9:36:9:58 | ... ?? ... | +| NullCoalescing.cs:9:12:9:13 | Entry | NullCoalescing.cs:9:20:9:20 | b | | NullCoalescing.cs:9:12:9:13 | Normal Exit | NullCoalescing.cs:9:12:9:13 | Exit | +| NullCoalescing.cs:9:20:9:20 | b | NullCoalescing.cs:9:30:9:30 | s | +| NullCoalescing.cs:9:30:9:30 | s | NullCoalescing.cs:9:36:9:58 | ... ?? ... | | NullCoalescing.cs:9:36:9:58 | ... ?? ... | NullCoalescing.cs:9:37:9:45 | ... ? ... : ... | | NullCoalescing.cs:9:36:9:58 | After ... ?? ... | NullCoalescing.cs:9:12:9:13 | Normal Exit | | NullCoalescing.cs:9:37:9:37 | After access to parameter b [false] | NullCoalescing.cs:9:45:9:45 | access to parameter s | @@ -4900,8 +5032,11 @@ dominance | NullCoalescing.cs:9:51:9:52 | "" | NullCoalescing.cs:9:51:9:52 | After "" [null] | | NullCoalescing.cs:9:51:9:52 | After "" [null] | NullCoalescing.cs:9:57:9:58 | "" | | NullCoalescing.cs:9:51:9:58 | ... ?? ... | NullCoalescing.cs:9:51:9:52 | "" | -| NullCoalescing.cs:11:9:11:10 | Entry | NullCoalescing.cs:11:43:11:68 | ... ? ... : ... | +| NullCoalescing.cs:11:9:11:10 | Entry | NullCoalescing.cs:11:18:11:19 | b1 | | NullCoalescing.cs:11:9:11:10 | Normal Exit | NullCoalescing.cs:11:9:11:10 | Exit | +| NullCoalescing.cs:11:18:11:19 | b1 | NullCoalescing.cs:11:27:11:28 | b2 | +| NullCoalescing.cs:11:27:11:28 | b2 | NullCoalescing.cs:11:36:11:37 | b3 | +| NullCoalescing.cs:11:36:11:37 | b3 | NullCoalescing.cs:11:43:11:68 | ... ? ... : ... | | NullCoalescing.cs:11:43:11:68 | ... ? ... : ... | NullCoalescing.cs:11:44:11:59 | ... ?? ... | | NullCoalescing.cs:11:43:11:68 | After ... ? ... : ... | NullCoalescing.cs:11:9:11:10 | Normal Exit | | NullCoalescing.cs:11:44:11:45 | After access to parameter b1 [null] | NullCoalescing.cs:11:51:11:58 | ... && ... | @@ -4917,8 +5052,9 @@ dominance | NullCoalescing.cs:11:57:11:58 | After access to parameter b3 [true] | NullCoalescing.cs:11:51:11:58 | After ... && ... [true] | | NullCoalescing.cs:11:57:11:58 | access to parameter b3 | NullCoalescing.cs:11:57:11:58 | After access to parameter b3 [false] | | NullCoalescing.cs:11:57:11:58 | access to parameter b3 | NullCoalescing.cs:11:57:11:58 | After access to parameter b3 [true] | -| NullCoalescing.cs:13:10:13:11 | Entry | NullCoalescing.cs:14:5:18:5 | {...} | +| NullCoalescing.cs:13:10:13:11 | Entry | NullCoalescing.cs:13:17:13:17 | i | | NullCoalescing.cs:13:10:13:11 | Normal Exit | NullCoalescing.cs:13:10:13:11 | Exit | +| NullCoalescing.cs:13:17:13:17 | i | NullCoalescing.cs:14:5:18:5 | {...} | | NullCoalescing.cs:14:5:18:5 | After {...} | NullCoalescing.cs:13:10:13:11 | Normal Exit | | NullCoalescing.cs:14:5:18:5 | {...} | NullCoalescing.cs:15:9:15:32 | ... ...; | | NullCoalescing.cs:15:9:15:32 | ... ...; | NullCoalescing.cs:15:13:15:31 | Before Int32 j = ... | @@ -4964,11 +5100,12 @@ dominance | PartialImplementationA.cs:3:12:3:18 | After call to method | PartialImplementationA.cs:3:12:3:18 | Before call to constructor Object | | PartialImplementationA.cs:3:12:3:18 | Before call to constructor Object | PartialImplementationA.cs:3:12:3:18 | call to constructor Object | | PartialImplementationA.cs:3:12:3:18 | Before call to method | PartialImplementationA.cs:3:12:3:18 | this access | -| PartialImplementationA.cs:3:12:3:18 | Entry | PartialImplementationA.cs:3:12:3:18 | Before call to method | +| PartialImplementationA.cs:3:12:3:18 | Entry | PartialImplementationA.cs:3:24:3:24 | i | | PartialImplementationA.cs:3:12:3:18 | Normal Exit | PartialImplementationA.cs:3:12:3:18 | Exit | | PartialImplementationA.cs:3:12:3:18 | call to constructor Object | PartialImplementationA.cs:3:12:3:18 | After call to constructor Object | | PartialImplementationA.cs:3:12:3:18 | call to method | PartialImplementationA.cs:3:12:3:18 | After call to method | | PartialImplementationA.cs:3:12:3:18 | this access | PartialImplementationA.cs:3:12:3:18 | call to method | +| PartialImplementationA.cs:3:24:3:24 | i | PartialImplementationA.cs:3:12:3:18 | Before call to method | | PartialImplementationA.cs:3:27:3:29 | {...} | PartialImplementationA.cs:3:12:3:18 | Normal Exit | | PartialImplementationB.cs:3:16:3:16 | After access to field F | PartialImplementationB.cs:3:20:3:20 | 0 | | PartialImplementationB.cs:3:16:3:16 | Before access to field F | PartialImplementationB.cs:3:16:3:16 | this access | @@ -5161,8 +5298,9 @@ dominance | Patterns.cs:40:9:42:9 | After switch (...) {...} | Patterns.cs:6:5:43:5 | After {...} | | Patterns.cs:40:9:42:9 | switch (...) {...} | Patterns.cs:40:17:40:17 | access to local variable o | | Patterns.cs:40:17:40:17 | access to local variable o | Patterns.cs:40:9:42:9 | After switch (...) {...} | -| Patterns.cs:47:24:47:25 | Entry | Patterns.cs:48:9:48:20 | Before ... is ... | +| Patterns.cs:47:24:47:25 | Entry | Patterns.cs:47:32:47:32 | c | | Patterns.cs:47:24:47:25 | Normal Exit | Patterns.cs:47:24:47:25 | Exit | +| Patterns.cs:47:32:47:32 | c | Patterns.cs:48:9:48:20 | Before ... is ... | | Patterns.cs:48:9:48:9 | access to parameter c | Patterns.cs:48:9:48:20 | ... is ... | | Patterns.cs:48:9:48:20 | ... is ... | Patterns.cs:48:9:48:20 | After ... is ... | | Patterns.cs:48:9:48:20 | ... is ... | Patterns.cs:48:9:48:20 | [MatchTrue] ... is ... | @@ -5172,8 +5310,9 @@ dominance | Patterns.cs:48:14:48:20 | Before not ... | Patterns.cs:48:18:48:20 | a | | Patterns.cs:48:14:48:20 | not ... | Patterns.cs:48:14:48:20 | After not ... | | Patterns.cs:48:18:48:20 | a | Patterns.cs:48:14:48:20 | not ... | -| Patterns.cs:50:24:50:25 | Entry | Patterns.cs:51:9:51:39 | ... ? ... : ... | +| Patterns.cs:50:24:50:25 | Entry | Patterns.cs:50:34:50:34 | c | | Patterns.cs:50:24:50:25 | Normal Exit | Patterns.cs:50:24:50:25 | Exit | +| Patterns.cs:50:34:50:34 | c | Patterns.cs:51:9:51:39 | ... ? ... : ... | | Patterns.cs:51:9:51:9 | access to parameter c | Patterns.cs:51:9:51:21 | ... is ... | | Patterns.cs:51:9:51:21 | ... is ... | Patterns.cs:51:9:51:21 | After ... is ... [false] | | Patterns.cs:51:9:51:21 | ... is ... | Patterns.cs:51:9:51:21 | [MatchTrue] ... is ... | @@ -5197,8 +5336,9 @@ dominance | Patterns.cs:51:34:51:39 | ... is ... | Patterns.cs:51:34:51:39 | [MatchTrue] ... is ... | | Patterns.cs:51:34:51:39 | Before ... is ... | Patterns.cs:51:34:51:34 | access to parameter c | | Patterns.cs:51:34:51:39 | [MatchTrue] ... is ... | Patterns.cs:51:39:51:39 | 2 | -| Patterns.cs:53:24:53:25 | Entry | Patterns.cs:54:9:54:37 | Before ... is ... | +| Patterns.cs:53:24:53:25 | Entry | Patterns.cs:53:34:53:34 | c | | Patterns.cs:53:24:53:25 | Normal Exit | Patterns.cs:53:24:53:25 | Exit | +| Patterns.cs:53:34:53:34 | c | Patterns.cs:54:9:54:37 | Before ... is ... | | Patterns.cs:54:9:54:9 | access to parameter c | Patterns.cs:54:9:54:37 | ... is ... | | Patterns.cs:54:9:54:37 | ... is ... | Patterns.cs:54:9:54:37 | After ... is ... | | Patterns.cs:54:9:54:37 | ... is ... | Patterns.cs:54:9:54:37 | [MatchTrue] ... is ... | @@ -5216,8 +5356,9 @@ dominance | Patterns.cs:54:27:54:35 | Before { ... } | Patterns.cs:54:33:54:33 | 1 | | Patterns.cs:54:27:54:35 | { ... } | Patterns.cs:54:27:54:35 | After { ... } | | Patterns.cs:54:33:54:33 | 1 | Patterns.cs:54:27:54:35 | { ... } | -| Patterns.cs:56:26:56:27 | Entry | Patterns.cs:57:5:63:5 | {...} | +| Patterns.cs:56:26:56:27 | Entry | Patterns.cs:56:33:56:33 | i | | Patterns.cs:56:26:56:27 | Normal Exit | Patterns.cs:56:26:56:27 | Exit | +| Patterns.cs:56:33:56:33 | i | Patterns.cs:57:5:63:5 | {...} | | Patterns.cs:57:5:63:5 | {...} | Patterns.cs:58:9:62:10 | Before return ...; | | Patterns.cs:58:9:62:10 | Before return ...; | Patterns.cs:58:16:62:9 | ... switch { ... } | | Patterns.cs:58:9:62:10 | return ...; | Patterns.cs:56:26:56:27 | Normal Exit | @@ -5255,8 +5396,9 @@ dominance | Patterns.cs:70:13:70:27 | ... => ... | Patterns.cs:70:13:70:27 | After ... => ... [match] | | Patterns.cs:70:13:70:27 | ... => ... | Patterns.cs:70:13:70:27 | After ... => ... [no-match] | | Patterns.cs:70:13:70:27 | After ... => ... [match] | Patterns.cs:70:13:70:13 | 2 | -| Patterns.cs:74:26:74:27 | Entry | Patterns.cs:75:5:83:5 | {...} | +| Patterns.cs:74:26:74:27 | Entry | Patterns.cs:74:33:74:33 | i | | Patterns.cs:74:26:74:27 | Normal Exit | Patterns.cs:74:26:74:27 | Exit | +| Patterns.cs:74:33:74:33 | i | Patterns.cs:75:5:83:5 | {...} | | Patterns.cs:75:5:83:5 | {...} | Patterns.cs:76:9:82:10 | Before return ...; | | Patterns.cs:76:9:82:10 | Before return ...; | Patterns.cs:76:16:82:9 | ... switch { ... } | | Patterns.cs:76:9:82:10 | return ...; | Patterns.cs:74:26:74:27 | Normal Exit | @@ -5287,8 +5429,9 @@ dominance | Patterns.cs:81:13:81:13 | _ | Patterns.cs:81:18:81:20 | "0" | | Patterns.cs:81:13:81:20 | ... => ... | Patterns.cs:81:13:81:20 | After ... => ... [match] | | Patterns.cs:81:13:81:20 | After ... => ... [match] | Patterns.cs:81:13:81:13 | _ | -| Patterns.cs:85:26:85:27 | Entry | Patterns.cs:85:39:85:69 | ... ? ... : ... | +| Patterns.cs:85:26:85:27 | Entry | Patterns.cs:85:33:85:33 | i | | Patterns.cs:85:26:85:27 | Normal Exit | Patterns.cs:85:26:85:27 | Exit | +| Patterns.cs:85:33:85:33 | i | Patterns.cs:85:39:85:69 | ... ? ... : ... | | Patterns.cs:85:39:85:39 | access to parameter i | Patterns.cs:85:39:85:53 | ... is ... | | Patterns.cs:85:39:85:53 | ... is ... | Patterns.cs:85:39:85:53 | After ... is ... [false] | | Patterns.cs:85:39:85:53 | ... is ... | Patterns.cs:85:39:85:53 | [MatchTrue] ... is ... | @@ -5306,8 +5449,9 @@ dominance | Patterns.cs:85:49:85:53 | Before not ... | Patterns.cs:85:53:85:53 | 2 | | Patterns.cs:85:49:85:53 | not ... | Patterns.cs:85:49:85:53 | After not ... | | Patterns.cs:85:53:85:53 | 2 | Patterns.cs:85:49:85:53 | not ... | -| Patterns.cs:87:26:87:27 | Entry | Patterns.cs:87:39:87:70 | ... ? ... : ... | +| Patterns.cs:87:26:87:27 | Entry | Patterns.cs:87:33:87:33 | i | | Patterns.cs:87:26:87:27 | Normal Exit | Patterns.cs:87:26:87:27 | Exit | +| Patterns.cs:87:33:87:33 | i | Patterns.cs:87:39:87:70 | ... ? ... : ... | | Patterns.cs:87:39:87:39 | access to parameter i | Patterns.cs:87:39:87:54 | ... is ... | | Patterns.cs:87:39:87:54 | ... is ... | Patterns.cs:87:39:87:54 | After ... is ... [false] | | Patterns.cs:87:39:87:54 | ... is ... | Patterns.cs:87:39:87:54 | [MatchTrue] ... is ... | @@ -5365,8 +5509,9 @@ dominance | PostDominance.cs:3:7:3:19 | call to method | PostDominance.cs:3:7:3:19 | After call to method | | PostDominance.cs:3:7:3:19 | this access | PostDominance.cs:3:7:3:19 | call to method | | PostDominance.cs:3:7:3:19 | {...} | PostDominance.cs:3:7:3:19 | Normal Exit | -| PostDominance.cs:5:10:5:11 | Entry | PostDominance.cs:6:5:8:5 | {...} | +| PostDominance.cs:5:10:5:11 | Entry | PostDominance.cs:5:20:5:20 | s | | PostDominance.cs:5:10:5:11 | Normal Exit | PostDominance.cs:5:10:5:11 | Exit | +| PostDominance.cs:5:20:5:20 | s | PostDominance.cs:6:5:8:5 | {...} | | PostDominance.cs:6:5:8:5 | After {...} | PostDominance.cs:5:10:5:11 | Normal Exit | | PostDominance.cs:6:5:8:5 | {...} | PostDominance.cs:7:9:7:29 | ...; | | PostDominance.cs:7:9:7:28 | After call to method WriteLine | PostDominance.cs:7:9:7:29 | After ...; | @@ -5375,8 +5520,9 @@ dominance | PostDominance.cs:7:9:7:29 | ...; | PostDominance.cs:7:9:7:28 | Before call to method WriteLine | | PostDominance.cs:7:9:7:29 | After ...; | PostDominance.cs:6:5:8:5 | After {...} | | PostDominance.cs:7:27:7:27 | access to parameter s | PostDominance.cs:7:9:7:28 | call to method WriteLine | -| PostDominance.cs:10:10:10:11 | Entry | PostDominance.cs:11:5:15:5 | {...} | +| PostDominance.cs:10:10:10:11 | Entry | PostDominance.cs:10:20:10:20 | s | | PostDominance.cs:10:10:10:11 | Normal Exit | PostDominance.cs:10:10:10:11 | Exit | +| PostDominance.cs:10:20:10:20 | s | PostDominance.cs:11:5:15:5 | {...} | | PostDominance.cs:11:5:15:5 | {...} | PostDominance.cs:12:9:13:19 | if (...) ... | | PostDominance.cs:12:9:13:19 | After if (...) ... | PostDominance.cs:14:9:14:29 | ...; | | PostDominance.cs:12:9:13:19 | if (...) ... | PostDominance.cs:12:13:12:21 | Before ... is ... | @@ -5395,7 +5541,8 @@ dominance | PostDominance.cs:14:9:14:29 | ...; | PostDominance.cs:14:9:14:28 | Before call to method WriteLine | | PostDominance.cs:14:9:14:29 | After ...; | PostDominance.cs:11:5:15:5 | After {...} | | PostDominance.cs:14:27:14:27 | access to parameter s | PostDominance.cs:14:9:14:28 | call to method WriteLine | -| PostDominance.cs:17:10:17:11 | Entry | PostDominance.cs:18:5:22:5 | {...} | +| PostDominance.cs:17:10:17:11 | Entry | PostDominance.cs:17:20:17:20 | s | +| PostDominance.cs:17:20:17:20 | s | PostDominance.cs:18:5:22:5 | {...} | | PostDominance.cs:18:5:22:5 | After {...} | PostDominance.cs:17:10:17:11 | Normal Exit | | PostDominance.cs:18:5:22:5 | {...} | PostDominance.cs:19:9:20:55 | if (...) ... | | PostDominance.cs:19:9:20:55 | After if (...) ... | PostDominance.cs:21:9:21:29 | ...; | @@ -5594,14 +5741,16 @@ dominance | Switch.cs:3:7:3:12 | call to method | Switch.cs:3:7:3:12 | After call to method | | Switch.cs:3:7:3:12 | this access | Switch.cs:3:7:3:12 | call to method | | Switch.cs:3:7:3:12 | {...} | Switch.cs:3:7:3:12 | Normal Exit | -| Switch.cs:5:10:5:11 | Entry | Switch.cs:6:5:8:5 | {...} | +| Switch.cs:5:10:5:11 | Entry | Switch.cs:5:20:5:20 | o | | Switch.cs:5:10:5:11 | Normal Exit | Switch.cs:5:10:5:11 | Exit | +| Switch.cs:5:20:5:20 | o | Switch.cs:6:5:8:5 | {...} | | Switch.cs:6:5:8:5 | After {...} | Switch.cs:5:10:5:11 | Normal Exit | | Switch.cs:6:5:8:5 | {...} | Switch.cs:7:9:7:22 | switch (...) {...} | | Switch.cs:7:9:7:22 | After switch (...) {...} | Switch.cs:6:5:8:5 | After {...} | | Switch.cs:7:9:7:22 | switch (...) {...} | Switch.cs:7:17:7:17 | access to parameter o | | Switch.cs:7:17:7:17 | access to parameter o | Switch.cs:7:9:7:22 | After switch (...) {...} | -| Switch.cs:10:10:10:11 | Entry | Switch.cs:11:5:33:5 | {...} | +| Switch.cs:10:10:10:11 | Entry | Switch.cs:10:20:10:20 | o | +| Switch.cs:10:20:10:20 | o | Switch.cs:11:5:33:5 | {...} | | Switch.cs:11:5:33:5 | {...} | Switch.cs:12:9:32:9 | switch (...) {...} | | Switch.cs:12:9:32:9 | switch (...) {...} | Switch.cs:12:17:12:17 | access to parameter o | | Switch.cs:12:17:12:17 | access to parameter o | Switch.cs:14:13:14:21 | case ...: | @@ -5688,8 +5837,9 @@ dominance | Switch.cs:37:9:41:9 | switch (...) {...} | Switch.cs:37:17:37:23 | Before call to method Throw | | Switch.cs:37:17:37:23 | Before call to method Throw | Switch.cs:37:17:37:23 | call to method Throw | | Switch.cs:37:17:37:23 | call to method Throw | Switch.cs:35:10:35:11 | Exceptional Exit | -| Switch.cs:44:10:44:11 | Entry | Switch.cs:45:5:53:5 | {...} | +| Switch.cs:44:10:44:11 | Entry | Switch.cs:44:20:44:20 | o | | Switch.cs:44:10:44:11 | Normal Exit | Switch.cs:44:10:44:11 | Exit | +| Switch.cs:44:20:44:20 | o | Switch.cs:45:5:53:5 | {...} | | Switch.cs:45:5:53:5 | After {...} | Switch.cs:44:10:44:11 | Normal Exit | | Switch.cs:45:5:53:5 | {...} | Switch.cs:46:9:52:9 | switch (...) {...} | | Switch.cs:46:9:52:9 | After switch (...) {...} | Switch.cs:45:5:53:5 | After {...} | @@ -5734,8 +5884,9 @@ dominance | Switch.cs:61:13:61:19 | case ...: | Switch.cs:61:13:61:19 | After case ...: [no-match] | | Switch.cs:61:18:61:18 | 3 | Switch.cs:62:17:62:22 | Before break; | | Switch.cs:62:17:62:22 | Before break; | Switch.cs:62:17:62:22 | break; | -| Switch.cs:66:10:66:11 | Entry | Switch.cs:67:5:75:5 | {...} | +| Switch.cs:66:10:66:11 | Entry | Switch.cs:66:20:66:20 | s | | Switch.cs:66:10:66:11 | Normal Exit | Switch.cs:66:10:66:11 | Exit | +| Switch.cs:66:20:66:20 | s | Switch.cs:67:5:75:5 | {...} | | Switch.cs:67:5:75:5 | After {...} | Switch.cs:66:10:66:11 | Normal Exit | | Switch.cs:67:5:75:5 | {...} | Switch.cs:68:9:74:9 | switch (...) {...} | | Switch.cs:68:9:74:9 | After switch (...) {...} | Switch.cs:67:5:75:5 | After {...} | @@ -5755,8 +5906,10 @@ dominance | Switch.cs:72:13:72:20 | case ...: | Switch.cs:72:13:72:20 | After case ...: [no-match] | | Switch.cs:72:18:72:19 | "" | Switch.cs:73:17:73:22 | Before break; | | Switch.cs:73:17:73:22 | Before break; | Switch.cs:73:17:73:22 | break; | -| Switch.cs:77:10:77:11 | Entry | Switch.cs:78:5:89:5 | {...} | +| Switch.cs:77:10:77:11 | Entry | Switch.cs:77:17:77:17 | i | | Switch.cs:77:10:77:11 | Normal Exit | Switch.cs:77:10:77:11 | Exit | +| Switch.cs:77:17:77:17 | i | Switch.cs:77:24:77:24 | j | +| Switch.cs:77:24:77:24 | j | Switch.cs:78:5:89:5 | {...} | | Switch.cs:78:5:89:5 | {...} | Switch.cs:79:9:87:9 | switch (...) {...} | | Switch.cs:79:9:87:9 | After switch (...) {...} | Switch.cs:88:9:88:21 | Before return ...; | | Switch.cs:79:9:87:9 | switch (...) {...} | Switch.cs:79:17:79:17 | access to parameter i | @@ -5786,8 +5939,9 @@ dominance | Switch.cs:86:24:86:27 | true | Switch.cs:86:17:86:28 | return ...; | | Switch.cs:88:9:88:21 | Before return ...; | Switch.cs:88:16:88:20 | false | | Switch.cs:88:16:88:20 | false | Switch.cs:88:9:88:21 | return ...; | -| Switch.cs:91:10:91:11 | Entry | Switch.cs:92:5:99:5 | {...} | +| Switch.cs:91:10:91:11 | Entry | Switch.cs:91:20:91:20 | o | | Switch.cs:91:10:91:11 | Normal Exit | Switch.cs:91:10:91:11 | Exit | +| Switch.cs:91:20:91:20 | o | Switch.cs:92:5:99:5 | {...} | | Switch.cs:92:5:99:5 | {...} | Switch.cs:93:9:97:9 | switch (...) {...} | | Switch.cs:93:9:97:9 | After switch (...) {...} | Switch.cs:98:9:98:21 | Before return ...; | | Switch.cs:93:9:97:9 | switch (...) {...} | Switch.cs:93:17:93:17 | access to parameter o | @@ -5801,8 +5955,9 @@ dominance | Switch.cs:96:24:96:27 | true | Switch.cs:96:17:96:28 | return ...; | | Switch.cs:98:9:98:21 | Before return ...; | Switch.cs:98:16:98:20 | false | | Switch.cs:98:16:98:20 | false | Switch.cs:98:9:98:21 | return ...; | -| Switch.cs:101:9:101:10 | Entry | Switch.cs:102:5:109:5 | {...} | +| Switch.cs:101:9:101:10 | Entry | Switch.cs:101:19:101:19 | s | | Switch.cs:101:9:101:10 | Normal Exit | Switch.cs:101:9:101:10 | Exit | +| Switch.cs:101:19:101:19 | s | Switch.cs:102:5:109:5 | {...} | | Switch.cs:102:5:109:5 | {...} | Switch.cs:103:9:107:9 | switch (...) {...} | | Switch.cs:103:9:107:9 | After switch (...) {...} | Switch.cs:108:9:108:18 | Before return ...; | | Switch.cs:103:9:107:9 | switch (...) {...} | Switch.cs:103:17:103:25 | Before access to property Length | @@ -5837,8 +5992,9 @@ dominance | Switch.cs:111:34:111:48 | After object creation of type Exception | Switch.cs:111:28:111:48 | throw ... | | Switch.cs:111:34:111:48 | Before object creation of type Exception | Switch.cs:111:34:111:48 | object creation of type Exception | | Switch.cs:111:34:111:48 | object creation of type Exception | Switch.cs:111:34:111:48 | After object creation of type Exception | -| Switch.cs:113:9:113:11 | Entry | Switch.cs:114:5:121:5 | {...} | +| Switch.cs:113:9:113:11 | Entry | Switch.cs:113:20:113:20 | s | | Switch.cs:113:9:113:11 | Normal Exit | Switch.cs:113:9:113:11 | Exit | +| Switch.cs:113:20:113:20 | s | Switch.cs:114:5:121:5 | {...} | | Switch.cs:114:5:121:5 | {...} | Switch.cs:115:9:119:9 | switch (...) {...} | | Switch.cs:115:9:119:9 | After switch (...) {...} | Switch.cs:120:9:120:18 | Before return ...; | | Switch.cs:115:9:119:9 | switch (...) {...} | Switch.cs:115:17:115:24 | Before access to property Length | @@ -5875,8 +6031,9 @@ dominance | Switch.cs:120:16:120:17 | After -... | Switch.cs:120:9:120:18 | return ...; | | Switch.cs:120:16:120:17 | Before -... | Switch.cs:120:17:120:17 | 1 | | Switch.cs:120:17:120:17 | 1 | Switch.cs:120:16:120:17 | -... | -| Switch.cs:123:10:123:12 | Entry | Switch.cs:124:5:127:5 | {...} | +| Switch.cs:123:10:123:12 | Entry | Switch.cs:123:21:123:21 | o | | Switch.cs:123:10:123:12 | Normal Exit | Switch.cs:123:10:123:12 | Exit | +| Switch.cs:123:21:123:21 | o | Switch.cs:124:5:127:5 | {...} | | Switch.cs:124:5:127:5 | {...} | Switch.cs:125:9:126:19 | if (...) ... | | Switch.cs:125:9:126:19 | After if (...) ... | Switch.cs:124:5:127:5 | After {...} | | Switch.cs:125:9:126:19 | if (...) ... | Switch.cs:125:13:125:48 | ... switch { ... } | @@ -5893,8 +6050,9 @@ dominance | Switch.cs:125:37:125:46 | ... => ... | Switch.cs:125:37:125:46 | After ... => ... [match] | | Switch.cs:125:37:125:46 | After ... => ... [match] | Switch.cs:125:37:125:37 | _ | | Switch.cs:126:13:126:19 | Before return ...; | Switch.cs:126:13:126:19 | return ...; | -| Switch.cs:129:12:129:14 | Entry | Switch.cs:130:5:132:5 | {...} | +| Switch.cs:129:12:129:14 | Entry | Switch.cs:129:23:129:23 | o | | Switch.cs:129:12:129:14 | Normal Exit | Switch.cs:129:12:129:14 | Exit | +| Switch.cs:129:23:129:23 | o | Switch.cs:130:5:132:5 | {...} | | Switch.cs:130:5:132:5 | {...} | Switch.cs:131:9:131:67 | Before return ...; | | Switch.cs:131:9:131:67 | Before return ...; | Switch.cs:131:16:131:66 | Before call to method ToString | | Switch.cs:131:9:131:67 | return ...; | Switch.cs:129:12:129:14 | Normal Exit | @@ -5911,8 +6069,9 @@ dominance | Switch.cs:131:43:131:43 | _ | Switch.cs:131:48:131:51 | null | | Switch.cs:131:43:131:51 | ... => ... | Switch.cs:131:43:131:51 | After ... => ... [match] | | Switch.cs:131:43:131:51 | After ... => ... [match] | Switch.cs:131:43:131:43 | _ | -| Switch.cs:134:9:134:11 | Entry | Switch.cs:135:5:142:5 | {...} | +| Switch.cs:134:9:134:11 | Entry | Switch.cs:134:17:134:17 | i | | Switch.cs:134:9:134:11 | Normal Exit | Switch.cs:134:9:134:11 | Exit | +| Switch.cs:134:17:134:17 | i | Switch.cs:135:5:142:5 | {...} | | Switch.cs:135:5:142:5 | {...} | Switch.cs:136:9:141:9 | switch (...) {...} | | Switch.cs:136:9:141:9 | switch (...) {...} | Switch.cs:136:17:136:17 | access to parameter i | | Switch.cs:136:17:136:17 | access to parameter i | Switch.cs:139:13:139:19 | case ...: | @@ -5937,8 +6096,9 @@ dominance | Switch.cs:140:18:140:18 | 2 | Switch.cs:140:21:140:29 | Before return ...; | | Switch.cs:140:21:140:29 | Before return ...; | Switch.cs:140:28:140:28 | 2 | | Switch.cs:140:28:140:28 | 2 | Switch.cs:140:21:140:29 | return ...; | -| Switch.cs:144:9:144:11 | Entry | Switch.cs:145:5:152:5 | {...} | +| Switch.cs:144:9:144:11 | Entry | Switch.cs:144:17:144:17 | i | | Switch.cs:144:9:144:11 | Normal Exit | Switch.cs:144:9:144:11 | Exit | +| Switch.cs:144:17:144:17 | i | Switch.cs:145:5:152:5 | {...} | | Switch.cs:145:5:152:5 | {...} | Switch.cs:146:9:151:9 | switch (...) {...} | | Switch.cs:146:9:151:9 | switch (...) {...} | Switch.cs:146:17:146:17 | access to parameter i | | Switch.cs:146:17:146:17 | access to parameter i | Switch.cs:148:13:148:19 | case ...: | @@ -5963,8 +6123,9 @@ dominance | Switch.cs:150:18:150:18 | 2 | Switch.cs:150:21:150:29 | Before return ...; | | Switch.cs:150:21:150:29 | Before return ...; | Switch.cs:150:28:150:28 | 2 | | Switch.cs:150:28:150:28 | 2 | Switch.cs:150:21:150:29 | return ...; | -| Switch.cs:154:10:154:12 | Entry | Switch.cs:155:5:161:5 | {...} | +| Switch.cs:154:10:154:12 | Entry | Switch.cs:154:19:154:19 | b | | Switch.cs:154:10:154:12 | Normal Exit | Switch.cs:154:10:154:12 | Exit | +| Switch.cs:154:19:154:19 | b | Switch.cs:155:5:161:5 | {...} | | Switch.cs:155:5:161:5 | After {...} | Switch.cs:154:10:154:12 | Normal Exit | | Switch.cs:155:5:161:5 | {...} | Switch.cs:156:9:156:55 | ... ...; | | Switch.cs:156:9:156:55 | ... ...; | Switch.cs:156:13:156:54 | Before String s = ... | @@ -6015,8 +6176,9 @@ dominance | Switch.cs:160:44:160:46 | Before {...} | Switch.cs:160:45:160:45 | access to local variable s | | Switch.cs:160:44:160:46 | {...} | Switch.cs:160:44:160:46 | After {...} | | Switch.cs:160:45:160:45 | access to local variable s | Switch.cs:160:44:160:46 | {...} | -| Switch.cs:163:10:163:12 | Entry | Switch.cs:164:5:178:5 | {...} | +| Switch.cs:163:10:163:12 | Entry | Switch.cs:163:18:163:18 | i | | Switch.cs:163:10:163:12 | Normal Exit | Switch.cs:163:10:163:12 | Exit | +| Switch.cs:163:18:163:18 | i | Switch.cs:164:5:178:5 | {...} | | Switch.cs:164:5:178:5 | After {...} | Switch.cs:163:10:163:12 | Normal Exit | | Switch.cs:164:5:178:5 | {...} | Switch.cs:165:9:177:9 | switch (...) {...} | | Switch.cs:165:9:177:9 | After switch (...) {...} | Switch.cs:164:5:178:5 | After {...} | @@ -6068,8 +6230,9 @@ dominance | TypeAccesses.cs:1:7:1:18 | call to method | TypeAccesses.cs:1:7:1:18 | After call to method | | TypeAccesses.cs:1:7:1:18 | this access | TypeAccesses.cs:1:7:1:18 | call to method | | TypeAccesses.cs:1:7:1:18 | {...} | TypeAccesses.cs:1:7:1:18 | Normal Exit | -| TypeAccesses.cs:3:10:3:10 | Entry | TypeAccesses.cs:4:5:9:5 | {...} | +| TypeAccesses.cs:3:10:3:10 | Entry | TypeAccesses.cs:3:19:3:19 | o | | TypeAccesses.cs:3:10:3:10 | Normal Exit | TypeAccesses.cs:3:10:3:10 | Exit | +| TypeAccesses.cs:3:19:3:19 | o | TypeAccesses.cs:4:5:9:5 | {...} | | TypeAccesses.cs:4:5:9:5 | After {...} | TypeAccesses.cs:3:10:3:10 | Normal Exit | | TypeAccesses.cs:4:5:9:5 | {...} | TypeAccesses.cs:5:9:5:26 | ... ...; | | TypeAccesses.cs:5:9:5:26 | ... ...; | TypeAccesses.cs:5:13:5:25 | Before String s = ... | @@ -6118,8 +6281,9 @@ dominance | VarDecls.cs:3:7:3:14 | call to method | VarDecls.cs:3:7:3:14 | After call to method | | VarDecls.cs:3:7:3:14 | this access | VarDecls.cs:3:7:3:14 | call to method | | VarDecls.cs:3:7:3:14 | {...} | VarDecls.cs:3:7:3:14 | Normal Exit | -| VarDecls.cs:5:18:5:19 | Entry | VarDecls.cs:6:5:11:5 | {...} | +| VarDecls.cs:5:18:5:19 | Entry | VarDecls.cs:5:30:5:36 | strings | | VarDecls.cs:5:18:5:19 | Normal Exit | VarDecls.cs:5:18:5:19 | Exit | +| VarDecls.cs:5:30:5:36 | strings | VarDecls.cs:6:5:11:5 | {...} | | VarDecls.cs:6:5:11:5 | {...} | VarDecls.cs:7:9:10:9 | fixed(...) { ... } | | VarDecls.cs:7:9:10:9 | fixed(...) { ... } | VarDecls.cs:7:22:7:36 | Before Char* c1 = ... | | VarDecls.cs:7:22:7:23 | access to local variable c1 | VarDecls.cs:7:27:7:36 | Before (...) ... | @@ -6153,8 +6317,9 @@ dominance | VarDecls.cs:9:20:9:28 | After (...) ... | VarDecls.cs:9:13:9:29 | return ...; | | VarDecls.cs:9:20:9:28 | Before (...) ... | VarDecls.cs:9:27:9:28 | access to local variable c1 | | VarDecls.cs:9:27:9:28 | access to local variable c1 | VarDecls.cs:9:20:9:28 | (...) ... | -| VarDecls.cs:13:12:13:13 | Entry | VarDecls.cs:14:5:17:5 | {...} | +| VarDecls.cs:13:12:13:13 | Entry | VarDecls.cs:13:22:13:22 | s | | VarDecls.cs:13:12:13:13 | Normal Exit | VarDecls.cs:13:12:13:13 | Exit | +| VarDecls.cs:13:22:13:22 | s | VarDecls.cs:14:5:17:5 | {...} | | VarDecls.cs:14:5:17:5 | {...} | VarDecls.cs:15:9:15:30 | ... ...; | | VarDecls.cs:15:9:15:30 | ... ...; | VarDecls.cs:15:16:15:21 | Before String s1 = ... | | VarDecls.cs:15:9:15:30 | After ... ...; | VarDecls.cs:16:9:16:23 | Before return ...; | @@ -6175,8 +6340,9 @@ dominance | VarDecls.cs:16:16:16:22 | After ... + ... | VarDecls.cs:16:9:16:23 | return ...; | | VarDecls.cs:16:16:16:22 | Before ... + ... | VarDecls.cs:16:16:16:17 | access to local variable s1 | | VarDecls.cs:16:21:16:22 | access to local variable s2 | VarDecls.cs:16:16:16:22 | ... + ... | -| VarDecls.cs:19:7:19:8 | Entry | VarDecls.cs:20:5:26:5 | {...} | +| VarDecls.cs:19:7:19:8 | Entry | VarDecls.cs:19:15:19:15 | b | | VarDecls.cs:19:7:19:8 | Normal Exit | VarDecls.cs:19:7:19:8 | Exit | +| VarDecls.cs:19:15:19:15 | b | VarDecls.cs:20:5:26:5 | {...} | | VarDecls.cs:20:5:26:5 | {...} | VarDecls.cs:21:9:22:13 | using (...) {...} | | VarDecls.cs:21:9:22:13 | After using (...) {...} | VarDecls.cs:24:9:25:29 | using (...) {...} | | VarDecls.cs:21:9:22:13 | using (...) {...} | VarDecls.cs:21:16:21:22 | Before object creation of type C | @@ -6220,8 +6386,9 @@ dominance | VarDecls.cs:28:41:28:47 | Entry | VarDecls.cs:28:51:28:53 | {...} | | VarDecls.cs:28:41:28:47 | Normal Exit | VarDecls.cs:28:41:28:47 | Exit | | VarDecls.cs:28:51:28:53 | {...} | VarDecls.cs:28:41:28:47 | Normal Exit | -| cflow.cs:5:17:5:20 | Entry | cflow.cs:6:5:35:5 | {...} | +| cflow.cs:5:17:5:20 | Entry | cflow.cs:5:31:5:34 | args | | cflow.cs:5:17:5:20 | Normal Exit | cflow.cs:5:17:5:20 | Exit | +| cflow.cs:5:31:5:34 | args | cflow.cs:6:5:35:5 | {...} | | cflow.cs:6:5:35:5 | After {...} | cflow.cs:5:17:5:20 | Normal Exit | | cflow.cs:6:5:35:5 | {...} | cflow.cs:7:9:7:28 | ... ...; | | cflow.cs:7:9:7:28 | ... ...; | cflow.cs:7:13:7:27 | Before Int32 a = ... | @@ -6396,7 +6563,8 @@ dominance | cflow.cs:33:17:33:36 | call to method WriteLine | cflow.cs:33:17:33:36 | After call to method WriteLine | | cflow.cs:33:17:33:37 | ...; | cflow.cs:33:17:33:36 | Before call to method WriteLine | | cflow.cs:33:35:33:35 | access to local variable i | cflow.cs:33:17:33:36 | call to method WriteLine | -| cflow.cs:37:17:37:22 | Entry | cflow.cs:38:5:68:5 | {...} | +| cflow.cs:37:17:37:22 | Entry | cflow.cs:37:28:37:28 | a | +| cflow.cs:37:28:37:28 | a | cflow.cs:38:5:68:5 | {...} | | cflow.cs:38:5:68:5 | {...} | cflow.cs:39:9:50:9 | switch (...) {...} | | cflow.cs:39:9:50:9 | After switch (...) {...} | cflow.cs:51:9:59:9 | switch (...) {...} | | cflow.cs:39:9:50:9 | switch (...) {...} | cflow.cs:39:17:39:17 | access to parameter a | @@ -6498,8 +6666,9 @@ dominance | cflow.cs:67:9:67:17 | Before return ...; | cflow.cs:67:16:67:16 | access to parameter a | | cflow.cs:67:9:67:17 | return ...; | cflow.cs:37:17:37:22 | Normal Exit | | cflow.cs:67:16:67:16 | access to parameter a | cflow.cs:67:9:67:17 | return ...; | -| cflow.cs:70:18:70:18 | Entry | cflow.cs:71:5:82:5 | {...} | +| cflow.cs:70:18:70:18 | Entry | cflow.cs:70:27:70:27 | s | | cflow.cs:70:18:70:18 | Normal Exit | cflow.cs:70:18:70:18 | Exit | +| cflow.cs:70:27:70:27 | s | cflow.cs:71:5:82:5 | {...} | | cflow.cs:71:5:82:5 | {...} | cflow.cs:72:9:73:19 | if (...) ... | | cflow.cs:72:9:73:19 | After if (...) ... | cflow.cs:74:9:81:9 | if (...) ... | | cflow.cs:72:9:73:19 | if (...) ... | cflow.cs:72:13:72:21 | Before ... == ... | @@ -6537,8 +6706,9 @@ dominance | cflow.cs:80:13:80:48 | ...; | cflow.cs:80:13:80:47 | Before call to method WriteLine | | cflow.cs:80:13:80:48 | After ...; | cflow.cs:79:9:81:9 | After {...} | | cflow.cs:80:31:80:46 | "" | cflow.cs:80:13:80:47 | call to method WriteLine | -| cflow.cs:84:18:84:19 | Entry | cflow.cs:85:5:88:5 | {...} | +| cflow.cs:84:18:84:19 | Entry | cflow.cs:84:28:84:28 | s | | cflow.cs:84:18:84:19 | Normal Exit | cflow.cs:84:18:84:19 | Exit | +| cflow.cs:84:28:84:28 | s | cflow.cs:85:5:88:5 | {...} | | cflow.cs:85:5:88:5 | After {...} | cflow.cs:84:18:84:19 | Normal Exit | | cflow.cs:85:5:88:5 | {...} | cflow.cs:86:9:87:33 | if (...) ... | | cflow.cs:86:9:87:33 | After if (...) ... | cflow.cs:85:5:88:5 | After {...} | @@ -6565,7 +6735,8 @@ dominance | cflow.cs:87:13:87:32 | call to method WriteLine | cflow.cs:87:13:87:32 | After call to method WriteLine | | cflow.cs:87:13:87:33 | ...; | cflow.cs:87:13:87:32 | Before call to method WriteLine | | cflow.cs:87:31:87:31 | access to parameter s | cflow.cs:87:13:87:32 | call to method WriteLine | -| cflow.cs:90:18:90:19 | Entry | cflow.cs:91:5:104:5 | {...} | +| cflow.cs:90:18:90:19 | Entry | cflow.cs:90:28:90:28 | s | +| cflow.cs:90:28:90:28 | s | cflow.cs:91:5:104:5 | {...} | | cflow.cs:91:5:104:5 | After {...} | cflow.cs:90:18:90:19 | Normal Exit | | cflow.cs:91:5:104:5 | {...} | cflow.cs:92:9:93:49 | if (...) ... | | cflow.cs:92:9:93:49 | After if (...) ... | cflow.cs:94:9:94:29 | ...; | @@ -6648,8 +6819,9 @@ dominance | cflow.cs:103:31:103:34 | Before access to property Prop | cflow.cs:103:31:103:34 | this access | | cflow.cs:103:31:103:34 | access to property Prop | cflow.cs:103:31:103:34 | After access to property Prop | | cflow.cs:103:31:103:34 | this access | cflow.cs:103:31:103:34 | access to property Prop | -| cflow.cs:106:18:106:19 | Entry | cflow.cs:107:5:117:5 | {...} | +| cflow.cs:106:18:106:19 | Entry | cflow.cs:106:28:106:28 | s | | cflow.cs:106:18:106:19 | Normal Exit | cflow.cs:106:18:106:19 | Exit | +| cflow.cs:106:28:106:28 | s | cflow.cs:107:5:117:5 | {...} | | cflow.cs:107:5:117:5 | After {...} | cflow.cs:106:18:106:19 | Normal Exit | | cflow.cs:107:5:117:5 | {...} | cflow.cs:108:9:115:9 | if (...) ... | | cflow.cs:108:9:115:9 | After if (...) ... | cflow.cs:116:9:116:29 | ...; | @@ -6679,8 +6851,9 @@ dominance | cflow.cs:116:9:116:29 | ...; | cflow.cs:116:9:116:28 | Before call to method WriteLine | | cflow.cs:116:9:116:29 | After ...; | cflow.cs:107:5:117:5 | After {...} | | cflow.cs:116:27:116:27 | access to parameter s | cflow.cs:116:9:116:28 | call to method WriteLine | -| cflow.cs:119:20:119:21 | Entry | cflow.cs:120:5:124:5 | {...} | +| cflow.cs:119:20:119:21 | Entry | cflow.cs:119:30:119:30 | s | | cflow.cs:119:20:119:21 | Normal Exit | cflow.cs:119:20:119:21 | Exit | +| cflow.cs:119:30:119:30 | s | cflow.cs:120:5:124:5 | {...} | | cflow.cs:120:5:124:5 | {...} | cflow.cs:121:9:121:18 | ... ...; | | cflow.cs:121:9:121:18 | ... ...; | cflow.cs:121:13:121:17 | Before String x = ... | | cflow.cs:121:9:121:18 | After ... ...; | cflow.cs:122:9:122:20 | ...; | @@ -6723,8 +6896,9 @@ dominance | cflow.cs:127:53:127:57 | Before access to field Field | cflow.cs:127:53:127:57 | this access | | cflow.cs:127:53:127:57 | access to field Field | cflow.cs:127:53:127:57 | After access to field Field | | cflow.cs:127:53:127:57 | this access | cflow.cs:127:53:127:57 | access to field Field | -| cflow.cs:127:62:127:64 | Entry | cflow.cs:127:66:127:83 | {...} | +| cflow.cs:127:62:127:64 | Entry | cflow.cs:127:62:127:64 | value | | cflow.cs:127:62:127:64 | Normal Exit | cflow.cs:127:62:127:64 | Exit | +| cflow.cs:127:62:127:64 | value | cflow.cs:127:66:127:83 | {...} | | cflow.cs:127:66:127:83 | After {...} | cflow.cs:127:62:127:64 | Normal Exit | | cflow.cs:127:66:127:83 | {...} | cflow.cs:127:68:127:81 | ...; | | cflow.cs:127:68:127:72 | After access to field Field | cflow.cs:127:76:127:80 | access to parameter value | @@ -6741,11 +6915,12 @@ dominance | cflow.cs:129:5:129:15 | After call to method | cflow.cs:129:5:129:15 | Before call to constructor Object | | cflow.cs:129:5:129:15 | Before call to constructor Object | cflow.cs:129:5:129:15 | call to constructor Object | | cflow.cs:129:5:129:15 | Before call to method | cflow.cs:129:5:129:15 | this access | -| cflow.cs:129:5:129:15 | Entry | cflow.cs:129:5:129:15 | Before call to method | +| cflow.cs:129:5:129:15 | Entry | cflow.cs:129:24:129:24 | s | | cflow.cs:129:5:129:15 | Normal Exit | cflow.cs:129:5:129:15 | Exit | | cflow.cs:129:5:129:15 | call to constructor Object | cflow.cs:129:5:129:15 | After call to constructor Object | | cflow.cs:129:5:129:15 | call to method | cflow.cs:129:5:129:15 | After call to method | | cflow.cs:129:5:129:15 | this access | cflow.cs:129:5:129:15 | call to method | +| cflow.cs:129:24:129:24 | s | cflow.cs:129:5:129:15 | Before call to method | | cflow.cs:130:5:132:5 | After {...} | cflow.cs:129:5:129:15 | Normal Exit | | cflow.cs:130:5:132:5 | {...} | cflow.cs:131:9:131:18 | ...; | | cflow.cs:131:9:131:13 | After access to field Field | cflow.cs:131:17:131:17 | access to parameter s | @@ -6758,8 +6933,9 @@ dominance | cflow.cs:131:9:131:18 | ...; | cflow.cs:131:9:131:17 | Before ... = ... | | cflow.cs:131:9:131:18 | After ...; | cflow.cs:130:5:132:5 | After {...} | | cflow.cs:131:17:131:17 | access to parameter s | cflow.cs:131:9:131:17 | ... = ... | -| cflow.cs:134:5:134:15 | Entry | cflow.cs:134:26:134:29 | Before call to constructor ControlFlow | +| cflow.cs:134:5:134:15 | Entry | cflow.cs:134:21:134:21 | i | | cflow.cs:134:5:134:15 | Normal Exit | cflow.cs:134:5:134:15 | Exit | +| cflow.cs:134:21:134:21 | i | cflow.cs:134:26:134:29 | Before call to constructor ControlFlow | | cflow.cs:134:26:134:29 | After call to constructor ControlFlow | cflow.cs:134:39:134:41 | {...} | | cflow.cs:134:26:134:29 | Before call to constructor ControlFlow | cflow.cs:134:31:134:36 | Before ... + ... | | cflow.cs:134:26:134:29 | call to constructor ControlFlow | cflow.cs:134:26:134:29 | After call to constructor ControlFlow | @@ -6783,8 +6959,10 @@ dominance | cflow.cs:136:33:136:37 | Before ... + ... | cflow.cs:136:33:136:33 | 0 | | cflow.cs:136:37:136:37 | 1 | cflow.cs:136:33:136:37 | ... + ... | | cflow.cs:136:40:136:42 | {...} | cflow.cs:136:12:136:22 | Normal Exit | -| cflow.cs:138:40:138:40 | Entry | cflow.cs:139:5:142:5 | {...} | +| cflow.cs:138:40:138:40 | Entry | cflow.cs:138:54:138:54 | x | | cflow.cs:138:40:138:40 | Normal Exit | cflow.cs:138:40:138:40 | Exit | +| cflow.cs:138:54:138:54 | x | cflow.cs:138:69:138:69 | y | +| cflow.cs:138:69:138:69 | y | cflow.cs:139:5:142:5 | {...} | | cflow.cs:139:5:142:5 | {...} | cflow.cs:140:9:140:29 | ...; | | cflow.cs:140:9:140:28 | After call to method WriteLine | cflow.cs:140:9:140:29 | After ...; | | cflow.cs:140:9:140:28 | Before call to method WriteLine | cflow.cs:140:27:140:27 | access to parameter x | @@ -6795,7 +6973,9 @@ dominance | cflow.cs:141:9:141:17 | Before return ...; | cflow.cs:141:16:141:16 | access to parameter y | | cflow.cs:141:9:141:17 | return ...; | cflow.cs:138:40:138:40 | Normal Exit | | cflow.cs:141:16:141:16 | access to parameter y | cflow.cs:141:9:141:17 | return ...; | -| cflow.cs:144:33:144:35 | Entry | cflow.cs:144:37:144:54 | {...} | +| cflow.cs:144:28:144:28 | i | cflow.cs:144:37:144:54 | {...} | +| cflow.cs:144:28:144:28 | i | cflow.cs:144:56:144:58 | value | +| cflow.cs:144:33:144:35 | Entry | cflow.cs:144:28:144:28 | i | | cflow.cs:144:33:144:35 | Normal Exit | cflow.cs:144:33:144:35 | Exit | | cflow.cs:144:37:144:54 | {...} | cflow.cs:144:39:144:52 | Before return ...; | | cflow.cs:144:39:144:52 | Before return ...; | cflow.cs:144:46:144:51 | Before ... + ... | @@ -6808,8 +6988,9 @@ dominance | cflow.cs:144:46:144:51 | After ... + ... | cflow.cs:144:39:144:52 | return ...; | | cflow.cs:144:46:144:51 | Before ... + ... | cflow.cs:144:46:144:46 | Before (...) ... | | cflow.cs:144:50:144:51 | "" | cflow.cs:144:46:144:51 | ... + ... | -| cflow.cs:144:56:144:58 | Entry | cflow.cs:144:60:144:62 | {...} | +| cflow.cs:144:56:144:58 | Entry | cflow.cs:144:28:144:28 | i | | cflow.cs:144:56:144:58 | Normal Exit | cflow.cs:144:56:144:58 | Exit | +| cflow.cs:144:56:144:58 | value | cflow.cs:144:60:144:62 | {...} | | cflow.cs:144:60:144:62 | {...} | cflow.cs:144:56:144:58 | Normal Exit | | cflow.cs:146:10:146:12 | Entry | cflow.cs:147:5:177:5 | {...} | | cflow.cs:146:10:146:12 | Normal Exit | cflow.cs:146:10:146:12 | Exit | @@ -6969,8 +7150,9 @@ dominance | cflow.cs:181:24:181:37 | After Func y = ... | cflow.cs:181:9:181:38 | After ... ...; | | cflow.cs:181:24:181:37 | Before Func y = ... | cflow.cs:181:24:181:24 | access to local variable y | | cflow.cs:181:24:181:37 | Func y = ... | cflow.cs:181:24:181:37 | After Func y = ... | +| cflow.cs:181:28:181:28 | x | cflow.cs:181:33:181:37 | Before ... + ... | | cflow.cs:181:28:181:37 | (...) => ... | cflow.cs:181:24:181:37 | Func y = ... | -| cflow.cs:181:28:181:37 | Entry | cflow.cs:181:33:181:37 | Before ... + ... | +| cflow.cs:181:28:181:37 | Entry | cflow.cs:181:28:181:28 | x | | cflow.cs:181:28:181:37 | Normal Exit | cflow.cs:181:28:181:37 | Exit | | cflow.cs:181:33:181:33 | access to parameter x | cflow.cs:181:37:181:37 | 1 | | cflow.cs:181:33:181:37 | ... + ... | cflow.cs:181:33:181:37 | After ... + ... | @@ -6983,9 +7165,10 @@ dominance | cflow.cs:182:24:182:61 | After Func z = ... | cflow.cs:182:9:182:62 | After ... ...; | | cflow.cs:182:24:182:61 | Before Func z = ... | cflow.cs:182:24:182:24 | access to local variable z | | cflow.cs:182:24:182:61 | Func z = ... | cflow.cs:182:24:182:61 | After Func z = ... | -| cflow.cs:182:28:182:61 | Entry | cflow.cs:182:45:182:61 | {...} | +| cflow.cs:182:28:182:61 | Entry | cflow.cs:182:42:182:42 | x | | cflow.cs:182:28:182:61 | Normal Exit | cflow.cs:182:28:182:61 | Exit | | cflow.cs:182:28:182:61 | delegate(...) { ... } | cflow.cs:182:24:182:61 | Func z = ... | +| cflow.cs:182:42:182:42 | x | cflow.cs:182:45:182:61 | {...} | | cflow.cs:182:45:182:61 | {...} | cflow.cs:182:47:182:59 | Before return ...; | | cflow.cs:182:47:182:59 | Before return ...; | cflow.cs:182:54:182:58 | Before ... + ... | | cflow.cs:182:47:182:59 | return ...; | cflow.cs:182:28:182:61 | Normal Exit | @@ -7432,14 +7615,16 @@ dominance | cflow.cs:282:24:282:27 | Before call to constructor ControlFlow | cflow.cs:282:24:282:27 | call to constructor ControlFlow | | cflow.cs:282:24:282:27 | call to constructor ControlFlow | cflow.cs:282:24:282:27 | After call to constructor ControlFlow | | cflow.cs:282:31:282:33 | {...} | cflow.cs:282:5:282:18 | Normal Exit | -| cflow.cs:284:5:284:18 | Entry | cflow.cs:284:32:284:35 | Before call to constructor ControlFlowSub | +| cflow.cs:284:5:284:18 | Entry | cflow.cs:284:27:284:27 | s | | cflow.cs:284:5:284:18 | Normal Exit | cflow.cs:284:5:284:18 | Exit | +| cflow.cs:284:27:284:27 | s | cflow.cs:284:32:284:35 | Before call to constructor ControlFlowSub | | cflow.cs:284:32:284:35 | After call to constructor ControlFlowSub | cflow.cs:284:39:284:41 | {...} | | cflow.cs:284:32:284:35 | Before call to constructor ControlFlowSub | cflow.cs:284:32:284:35 | call to constructor ControlFlowSub | | cflow.cs:284:32:284:35 | call to constructor ControlFlowSub | cflow.cs:284:32:284:35 | After call to constructor ControlFlowSub | | cflow.cs:284:39:284:41 | {...} | cflow.cs:284:5:284:18 | Normal Exit | -| cflow.cs:286:5:286:18 | Entry | cflow.cs:286:29:286:32 | Before call to constructor ControlFlowSub | +| cflow.cs:286:5:286:18 | Entry | cflow.cs:286:24:286:24 | i | | cflow.cs:286:5:286:18 | Normal Exit | cflow.cs:286:5:286:18 | Exit | +| cflow.cs:286:24:286:24 | i | cflow.cs:286:29:286:32 | Before call to constructor ControlFlowSub | | cflow.cs:286:29:286:32 | After call to constructor ControlFlowSub | cflow.cs:286:48:286:50 | {...} | | cflow.cs:286:29:286:32 | Before call to constructor ControlFlowSub | cflow.cs:286:34:286:45 | Before call to method ToString | | cflow.cs:286:29:286:32 | call to constructor ControlFlowSub | cflow.cs:286:29:286:32 | After call to constructor ControlFlowSub | @@ -7458,8 +7643,9 @@ dominance | cflow.cs:289:7:289:18 | call to method | cflow.cs:289:7:289:18 | After call to method | | cflow.cs:289:7:289:18 | this access | cflow.cs:289:7:289:18 | call to method | | cflow.cs:289:7:289:18 | {...} | cflow.cs:289:7:289:18 | Normal Exit | -| cflow.cs:291:12:291:12 | Entry | cflow.cs:291:38:291:41 | Before delegate call | +| cflow.cs:291:12:291:12 | Entry | cflow.cs:291:32:291:32 | f | | cflow.cs:291:12:291:12 | Normal Exit | cflow.cs:291:12:291:12 | Exit | +| cflow.cs:291:32:291:32 | f | cflow.cs:291:38:291:41 | Before delegate call | | cflow.cs:291:38:291:38 | access to parameter f | cflow.cs:291:40:291:40 | 0 | | cflow.cs:291:38:291:41 | After delegate call | cflow.cs:291:12:291:12 | Normal Exit | | cflow.cs:291:38:291:41 | Before delegate call | cflow.cs:291:38:291:38 | access to parameter f | @@ -7469,14 +7655,20 @@ dominance | cflow.cs:296:5:296:25 | After call to method | cflow.cs:296:5:296:25 | Before call to constructor Object | | cflow.cs:296:5:296:25 | Before call to constructor Object | cflow.cs:296:5:296:25 | call to constructor Object | | cflow.cs:296:5:296:25 | Before call to method | cflow.cs:296:5:296:25 | this access | -| cflow.cs:296:5:296:25 | Entry | cflow.cs:296:5:296:25 | Before call to method | +| cflow.cs:296:5:296:25 | Entry | cflow.cs:296:32:296:32 | b | | cflow.cs:296:5:296:25 | Normal Exit | cflow.cs:296:5:296:25 | Exit | | cflow.cs:296:5:296:25 | call to constructor Object | cflow.cs:296:5:296:25 | After call to constructor Object | | cflow.cs:296:5:296:25 | call to method | cflow.cs:296:5:296:25 | After call to method | | cflow.cs:296:5:296:25 | this access | cflow.cs:296:5:296:25 | call to method | +| cflow.cs:296:32:296:32 | b | cflow.cs:296:39:296:39 | i | +| cflow.cs:296:39:296:39 | i | cflow.cs:296:49:296:49 | s | +| cflow.cs:296:49:296:49 | s | cflow.cs:296:5:296:25 | Before call to method | | cflow.cs:296:52:296:54 | {...} | cflow.cs:296:5:296:25 | Normal Exit | -| cflow.cs:298:10:298:10 | Entry | cflow.cs:299:5:301:5 | {...} | +| cflow.cs:298:10:298:10 | Entry | cflow.cs:298:16:298:16 | i | | cflow.cs:298:10:298:10 | Normal Exit | cflow.cs:298:10:298:10 | Exit | +| cflow.cs:298:16:298:16 | i | cflow.cs:298:26:298:26 | s | +| cflow.cs:298:26:298:26 | s | cflow.cs:298:34:298:34 | b | +| cflow.cs:298:34:298:34 | b | cflow.cs:299:5:301:5 | {...} | | cflow.cs:299:5:301:5 | After {...} | cflow.cs:298:10:298:10 | Normal Exit | | cflow.cs:299:5:301:5 | {...} | cflow.cs:300:9:300:73 | ...; | | cflow.cs:300:9:300:72 | After object creation of type NegationInConstructor | cflow.cs:300:9:300:73 | After ...; | @@ -7513,9 +7705,11 @@ dominance | cflow.cs:304:7:304:18 | {...} | cflow.cs:304:7:304:18 | Normal Exit | | cflow.cs:306:60:310:5 | (...) => ... | cflow.cs:306:60:310:5 | Normal Exit | | cflow.cs:306:60:310:5 | Entry | cflow.cs:306:60:310:5 | (...) => ... | -| cflow.cs:306:60:310:5 | Entry | cflow.cs:307:5:310:5 | {...} | +| cflow.cs:306:60:310:5 | Entry | cflow.cs:306:61:306:61 | o | | cflow.cs:306:60:310:5 | Normal Exit | cflow.cs:306:60:310:5 | Exit | | cflow.cs:306:60:310:5 | Normal Exit | cflow.cs:306:60:310:5 | Exit | +| cflow.cs:306:61:306:61 | o | cflow.cs:306:64:306:64 | n | +| cflow.cs:306:64:306:64 | n | cflow.cs:307:5:310:5 | {...} | | cflow.cs:307:5:310:5 | {...} | cflow.cs:308:9:308:21 | ... ...; | | cflow.cs:308:9:308:21 | ... ...; | cflow.cs:308:16:308:20 | Before Object x = ... | | cflow.cs:308:9:308:21 | After ... ...; | cflow.cs:309:9:309:17 | Before return ...; | @@ -7538,22 +7732,28 @@ postDominance | AccessorCalls.cs:1:7:1:19 | call to method | AccessorCalls.cs:1:7:1:19 | this access | | AccessorCalls.cs:1:7:1:19 | this access | AccessorCalls.cs:1:7:1:19 | Before call to method | | AccessorCalls.cs:1:7:1:19 | {...} | AccessorCalls.cs:1:7:1:19 | After call to constructor Object | +| AccessorCalls.cs:5:18:5:18 | i | AccessorCalls.cs:5:23:5:25 | Entry | +| AccessorCalls.cs:5:18:5:18 | i | AccessorCalls.cs:5:33:5:35 | Entry | | AccessorCalls.cs:5:23:5:25 | Exit | AccessorCalls.cs:5:23:5:25 | Normal Exit | | AccessorCalls.cs:5:23:5:25 | Normal Exit | AccessorCalls.cs:5:30:5:30 | access to parameter i | -| AccessorCalls.cs:5:30:5:30 | access to parameter i | AccessorCalls.cs:5:23:5:25 | Entry | +| AccessorCalls.cs:5:30:5:30 | access to parameter i | AccessorCalls.cs:5:18:5:18 | i | | AccessorCalls.cs:5:33:5:35 | Exit | AccessorCalls.cs:5:33:5:35 | Normal Exit | | AccessorCalls.cs:5:33:5:35 | Normal Exit | AccessorCalls.cs:5:37:5:39 | {...} | -| AccessorCalls.cs:5:37:5:39 | {...} | AccessorCalls.cs:5:33:5:35 | Entry | +| AccessorCalls.cs:5:33:5:35 | value | AccessorCalls.cs:5:18:5:18 | i | +| AccessorCalls.cs:5:37:5:39 | {...} | AccessorCalls.cs:5:33:5:35 | value | | AccessorCalls.cs:7:32:7:34 | Exit | AccessorCalls.cs:7:32:7:34 | Normal Exit | | AccessorCalls.cs:7:32:7:34 | Normal Exit | AccessorCalls.cs:7:36:7:38 | {...} | -| AccessorCalls.cs:7:36:7:38 | {...} | AccessorCalls.cs:7:32:7:34 | Entry | +| AccessorCalls.cs:7:32:7:34 | value | AccessorCalls.cs:7:32:7:34 | Entry | +| AccessorCalls.cs:7:36:7:38 | {...} | AccessorCalls.cs:7:32:7:34 | value | | AccessorCalls.cs:7:40:7:45 | Exit | AccessorCalls.cs:7:40:7:45 | Normal Exit | | AccessorCalls.cs:7:40:7:45 | Normal Exit | AccessorCalls.cs:7:47:7:49 | {...} | -| AccessorCalls.cs:7:47:7:49 | {...} | AccessorCalls.cs:7:40:7:45 | Entry | +| AccessorCalls.cs:7:40:7:45 | value | AccessorCalls.cs:7:40:7:45 | Entry | +| AccessorCalls.cs:7:47:7:49 | {...} | AccessorCalls.cs:7:40:7:45 | value | | AccessorCalls.cs:10:10:10:11 | Exit | AccessorCalls.cs:10:10:10:11 | Normal Exit | | AccessorCalls.cs:10:10:10:11 | Normal Exit | AccessorCalls.cs:11:5:17:5 | After {...} | +| AccessorCalls.cs:10:26:10:26 | e | AccessorCalls.cs:10:10:10:11 | Entry | | AccessorCalls.cs:11:5:17:5 | After {...} | AccessorCalls.cs:16:9:16:24 | After ...; | -| AccessorCalls.cs:11:5:17:5 | {...} | AccessorCalls.cs:10:10:10:11 | Entry | +| AccessorCalls.cs:11:5:17:5 | {...} | AccessorCalls.cs:10:26:10:26 | e | | AccessorCalls.cs:12:9:12:12 | this access | AccessorCalls.cs:12:9:12:18 | Before access to field Field | | AccessorCalls.cs:12:9:12:18 | After access to field Field | AccessorCalls.cs:12:9:12:18 | access to field Field | | AccessorCalls.cs:12:9:12:18 | Before access to field Field | AccessorCalls.cs:12:9:12:31 | Before ... = ... | @@ -7617,8 +7817,9 @@ postDominance | AccessorCalls.cs:16:23:16:23 | access to parameter e | AccessorCalls.cs:16:9:16:18 | After access to event Event | | AccessorCalls.cs:19:10:19:11 | Exit | AccessorCalls.cs:19:10:19:11 | Normal Exit | | AccessorCalls.cs:19:10:19:11 | Normal Exit | AccessorCalls.cs:20:5:26:5 | After {...} | +| AccessorCalls.cs:19:26:19:26 | e | AccessorCalls.cs:19:10:19:11 | Entry | | AccessorCalls.cs:20:5:26:5 | After {...} | AccessorCalls.cs:25:9:25:26 | After ...; | -| AccessorCalls.cs:20:5:26:5 | {...} | AccessorCalls.cs:19:10:19:11 | Entry | +| AccessorCalls.cs:20:5:26:5 | {...} | AccessorCalls.cs:19:26:19:26 | e | | AccessorCalls.cs:21:9:21:12 | this access | AccessorCalls.cs:21:9:21:14 | Before access to field x | | AccessorCalls.cs:21:9:21:14 | After access to field x | AccessorCalls.cs:21:9:21:14 | access to field x | | AccessorCalls.cs:21:9:21:14 | Before access to field x | AccessorCalls.cs:21:9:21:20 | Before access to field Field | @@ -7887,8 +8088,9 @@ postDominance | AccessorCalls.cs:53:29:53:29 | 0 | AccessorCalls.cs:53:22:53:27 | After access to field x | | AccessorCalls.cs:56:10:56:11 | Exit | AccessorCalls.cs:56:10:56:11 | Normal Exit | | AccessorCalls.cs:56:10:56:11 | Normal Exit | AccessorCalls.cs:57:5:59:5 | After {...} | +| AccessorCalls.cs:56:17:56:17 | i | AccessorCalls.cs:56:10:56:11 | Entry | | AccessorCalls.cs:57:5:59:5 | After {...} | AccessorCalls.cs:58:9:58:86 | After ...; | -| AccessorCalls.cs:57:5:59:5 | {...} | AccessorCalls.cs:56:10:56:11 | Entry | +| AccessorCalls.cs:57:5:59:5 | {...} | AccessorCalls.cs:56:17:56:17 | i | | AccessorCalls.cs:58:9:58:45 | (..., ...) | AccessorCalls.cs:58:33:58:44 | After (..., ...) | | AccessorCalls.cs:58:9:58:45 | After (..., ...) | AccessorCalls.cs:58:9:58:45 | (..., ...) | | AccessorCalls.cs:58:9:58:45 | Before (..., ...) | AccessorCalls.cs:58:9:58:85 | Before ... = ... | @@ -7936,8 +8138,9 @@ postDominance | AccessorCalls.cs:58:82:58:82 | 1 | AccessorCalls.cs:58:77:58:80 | this access | | AccessorCalls.cs:61:10:61:11 | Exit | AccessorCalls.cs:61:10:61:11 | Normal Exit | | AccessorCalls.cs:61:10:61:11 | Normal Exit | AccessorCalls.cs:62:5:64:5 | After {...} | +| AccessorCalls.cs:61:17:61:17 | i | AccessorCalls.cs:61:10:61:11 | Entry | | AccessorCalls.cs:62:5:64:5 | After {...} | AccessorCalls.cs:63:9:63:98 | After ...; | -| AccessorCalls.cs:62:5:64:5 | {...} | AccessorCalls.cs:61:10:61:11 | Entry | +| AccessorCalls.cs:62:5:64:5 | {...} | AccessorCalls.cs:61:17:61:17 | i | | AccessorCalls.cs:63:9:63:51 | (..., ...) | AccessorCalls.cs:63:37:63:50 | After (..., ...) | | AccessorCalls.cs:63:9:63:51 | After (..., ...) | AccessorCalls.cs:63:9:63:51 | (..., ...) | | AccessorCalls.cs:63:9:63:51 | Before (..., ...) | AccessorCalls.cs:63:9:63:97 | Before ... = ... | @@ -8003,8 +8206,11 @@ postDominance | AccessorCalls.cs:63:94:63:94 | 1 | AccessorCalls.cs:63:87:63:92 | After access to field x | | AccessorCalls.cs:66:10:66:11 | Exit | AccessorCalls.cs:66:10:66:11 | Normal Exit | | AccessorCalls.cs:66:10:66:11 | Normal Exit | AccessorCalls.cs:67:5:74:5 | After {...} | +| AccessorCalls.cs:66:20:66:20 | o | AccessorCalls.cs:66:10:66:11 | Entry | +| AccessorCalls.cs:66:27:66:27 | i | AccessorCalls.cs:66:20:66:20 | o | +| AccessorCalls.cs:66:43:66:43 | e | AccessorCalls.cs:66:27:66:27 | i | | AccessorCalls.cs:67:5:74:5 | After {...} | AccessorCalls.cs:73:9:73:84 | After ...; | -| AccessorCalls.cs:67:5:74:5 | {...} | AccessorCalls.cs:66:10:66:11 | Entry | +| AccessorCalls.cs:67:5:74:5 | {...} | AccessorCalls.cs:66:43:66:43 | e | | AccessorCalls.cs:68:9:68:22 | ... ...; | AccessorCalls.cs:67:5:74:5 | {...} | | AccessorCalls.cs:68:9:68:22 | After ... ...; | AccessorCalls.cs:68:17:68:21 | After dynamic d = ... | | AccessorCalls.cs:68:17:68:17 | access to local variable d | AccessorCalls.cs:68:17:68:21 | Before dynamic d = ... | @@ -8169,8 +8375,9 @@ postDominance | Assert.cs:5:7:5:17 | this access | Assert.cs:5:7:5:17 | Before call to method | | Assert.cs:5:7:5:17 | {...} | Assert.cs:5:7:5:17 | After call to constructor Object | | Assert.cs:7:10:7:11 | Normal Exit | Assert.cs:8:5:12:5 | After {...} | +| Assert.cs:7:18:7:18 | b | Assert.cs:7:10:7:11 | Entry | | Assert.cs:8:5:12:5 | After {...} | Assert.cs:11:9:11:36 | After ...; | -| Assert.cs:8:5:12:5 | {...} | Assert.cs:7:10:7:11 | Entry | +| Assert.cs:8:5:12:5 | {...} | Assert.cs:7:18:7:18 | b | | Assert.cs:9:9:9:33 | ... ...; | Assert.cs:8:5:12:5 | {...} | | Assert.cs:9:9:9:33 | After ... ...; | Assert.cs:9:16:9:32 | After String s = ... | | Assert.cs:9:16:9:16 | access to local variable s | Assert.cs:9:16:9:32 | Before String s = ... | @@ -8203,8 +8410,9 @@ postDominance | Assert.cs:11:27:11:34 | Before access to property Length | Assert.cs:11:9:11:35 | Before call to method WriteLine | | Assert.cs:11:27:11:34 | access to property Length | Assert.cs:11:27:11:27 | access to local variable s | | Assert.cs:14:10:14:11 | Normal Exit | Assert.cs:15:5:19:5 | After {...} | +| Assert.cs:14:18:14:18 | b | Assert.cs:14:10:14:11 | Entry | | Assert.cs:15:5:19:5 | After {...} | Assert.cs:18:9:18:36 | After ...; | -| Assert.cs:15:5:19:5 | {...} | Assert.cs:14:10:14:11 | Entry | +| Assert.cs:15:5:19:5 | {...} | Assert.cs:14:18:14:18 | b | | Assert.cs:16:9:16:33 | ... ...; | Assert.cs:15:5:19:5 | {...} | | Assert.cs:16:9:16:33 | After ... ...; | Assert.cs:16:16:16:32 | After String s = ... | | Assert.cs:16:16:16:16 | access to local variable s | Assert.cs:16:16:16:32 | Before String s = ... | @@ -8233,8 +8441,9 @@ postDominance | Assert.cs:18:27:18:34 | Before access to property Length | Assert.cs:18:9:18:35 | Before call to method WriteLine | | Assert.cs:18:27:18:34 | access to property Length | Assert.cs:18:27:18:27 | access to local variable s | | Assert.cs:21:10:21:11 | Normal Exit | Assert.cs:22:5:26:5 | After {...} | +| Assert.cs:21:18:21:18 | b | Assert.cs:21:10:21:11 | Entry | | Assert.cs:22:5:26:5 | After {...} | Assert.cs:25:9:25:36 | After ...; | -| Assert.cs:22:5:26:5 | {...} | Assert.cs:21:10:21:11 | Entry | +| Assert.cs:22:5:26:5 | {...} | Assert.cs:21:18:21:18 | b | | Assert.cs:23:9:23:33 | ... ...; | Assert.cs:22:5:26:5 | {...} | | Assert.cs:23:9:23:33 | After ... ...; | Assert.cs:23:16:23:32 | After String s = ... | | Assert.cs:23:16:23:16 | access to local variable s | Assert.cs:23:16:23:32 | Before String s = ... | @@ -8263,8 +8472,9 @@ postDominance | Assert.cs:25:27:25:34 | Before access to property Length | Assert.cs:25:9:25:35 | Before call to method WriteLine | | Assert.cs:25:27:25:34 | access to property Length | Assert.cs:25:27:25:27 | access to local variable s | | Assert.cs:28:10:28:11 | Normal Exit | Assert.cs:29:5:33:5 | After {...} | +| Assert.cs:28:18:28:18 | b | Assert.cs:28:10:28:11 | Entry | | Assert.cs:29:5:33:5 | After {...} | Assert.cs:32:9:32:36 | After ...; | -| Assert.cs:29:5:33:5 | {...} | Assert.cs:28:10:28:11 | Entry | +| Assert.cs:29:5:33:5 | {...} | Assert.cs:28:18:28:18 | b | | Assert.cs:30:9:30:33 | ... ...; | Assert.cs:29:5:33:5 | {...} | | Assert.cs:30:9:30:33 | After ... ...; | Assert.cs:30:16:30:32 | After String s = ... | | Assert.cs:30:16:30:16 | access to local variable s | Assert.cs:30:16:30:32 | Before String s = ... | @@ -8297,8 +8507,9 @@ postDominance | Assert.cs:32:27:32:34 | Before access to property Length | Assert.cs:32:9:32:35 | Before call to method WriteLine | | Assert.cs:32:27:32:34 | access to property Length | Assert.cs:32:27:32:27 | access to local variable s | | Assert.cs:35:10:35:11 | Normal Exit | Assert.cs:36:5:40:5 | After {...} | +| Assert.cs:35:18:35:18 | b | Assert.cs:35:10:35:11 | Entry | | Assert.cs:36:5:40:5 | After {...} | Assert.cs:39:9:39:36 | After ...; | -| Assert.cs:36:5:40:5 | {...} | Assert.cs:35:10:35:11 | Entry | +| Assert.cs:36:5:40:5 | {...} | Assert.cs:35:18:35:18 | b | | Assert.cs:37:9:37:33 | ... ...; | Assert.cs:36:5:40:5 | {...} | | Assert.cs:37:9:37:33 | After ... ...; | Assert.cs:37:16:37:32 | After String s = ... | | Assert.cs:37:16:37:16 | access to local variable s | Assert.cs:37:16:37:32 | Before String s = ... | @@ -8331,8 +8542,9 @@ postDominance | Assert.cs:39:27:39:34 | Before access to property Length | Assert.cs:39:9:39:35 | Before call to method WriteLine | | Assert.cs:39:27:39:34 | access to property Length | Assert.cs:39:27:39:27 | access to local variable s | | Assert.cs:42:10:42:11 | Normal Exit | Assert.cs:43:5:47:5 | After {...} | +| Assert.cs:42:18:42:18 | b | Assert.cs:42:10:42:11 | Entry | | Assert.cs:43:5:47:5 | After {...} | Assert.cs:46:9:46:36 | After ...; | -| Assert.cs:43:5:47:5 | {...} | Assert.cs:42:10:42:11 | Entry | +| Assert.cs:43:5:47:5 | {...} | Assert.cs:42:18:42:18 | b | | Assert.cs:44:9:44:33 | ... ...; | Assert.cs:43:5:47:5 | {...} | | Assert.cs:44:9:44:33 | After ... ...; | Assert.cs:44:16:44:32 | After String s = ... | | Assert.cs:44:16:44:16 | access to local variable s | Assert.cs:44:16:44:32 | Before String s = ... | @@ -8365,8 +8577,9 @@ postDominance | Assert.cs:46:27:46:34 | Before access to property Length | Assert.cs:46:9:46:35 | Before call to method WriteLine | | Assert.cs:46:27:46:34 | access to property Length | Assert.cs:46:27:46:27 | access to local variable s | | Assert.cs:49:10:49:11 | Normal Exit | Assert.cs:50:5:54:5 | After {...} | +| Assert.cs:49:18:49:18 | b | Assert.cs:49:10:49:11 | Entry | | Assert.cs:50:5:54:5 | After {...} | Assert.cs:53:9:53:36 | After ...; | -| Assert.cs:50:5:54:5 | {...} | Assert.cs:49:10:49:11 | Entry | +| Assert.cs:50:5:54:5 | {...} | Assert.cs:49:18:49:18 | b | | Assert.cs:51:9:51:33 | ... ...; | Assert.cs:50:5:54:5 | {...} | | Assert.cs:51:9:51:33 | After ... ...; | Assert.cs:51:16:51:32 | After String s = ... | | Assert.cs:51:16:51:16 | access to local variable s | Assert.cs:51:16:51:32 | Before String s = ... | @@ -8399,8 +8612,9 @@ postDominance | Assert.cs:53:27:53:34 | Before access to property Length | Assert.cs:53:9:53:35 | Before call to method WriteLine | | Assert.cs:53:27:53:34 | access to property Length | Assert.cs:53:27:53:27 | access to local variable s | | Assert.cs:56:10:56:11 | Normal Exit | Assert.cs:57:5:61:5 | After {...} | +| Assert.cs:56:18:56:18 | b | Assert.cs:56:10:56:11 | Entry | | Assert.cs:57:5:61:5 | After {...} | Assert.cs:60:9:60:36 | After ...; | -| Assert.cs:57:5:61:5 | {...} | Assert.cs:56:10:56:11 | Entry | +| Assert.cs:57:5:61:5 | {...} | Assert.cs:56:18:56:18 | b | | Assert.cs:58:9:58:33 | ... ...; | Assert.cs:57:5:61:5 | {...} | | Assert.cs:58:9:58:33 | After ... ...; | Assert.cs:58:16:58:32 | After String s = ... | | Assert.cs:58:16:58:16 | access to local variable s | Assert.cs:58:16:58:32 | Before String s = ... | @@ -8436,8 +8650,9 @@ postDominance | Assert.cs:60:27:60:34 | Before access to property Length | Assert.cs:60:9:60:35 | Before call to method WriteLine | | Assert.cs:60:27:60:34 | access to property Length | Assert.cs:60:27:60:27 | access to local variable s | | Assert.cs:63:10:63:11 | Normal Exit | Assert.cs:64:5:68:5 | After {...} | +| Assert.cs:63:18:63:18 | b | Assert.cs:63:10:63:11 | Entry | | Assert.cs:64:5:68:5 | After {...} | Assert.cs:67:9:67:36 | After ...; | -| Assert.cs:64:5:68:5 | {...} | Assert.cs:63:10:63:11 | Entry | +| Assert.cs:64:5:68:5 | {...} | Assert.cs:63:18:63:18 | b | | Assert.cs:65:9:65:33 | ... ...; | Assert.cs:64:5:68:5 | {...} | | Assert.cs:65:9:65:33 | After ... ...; | Assert.cs:65:16:65:32 | After String s = ... | | Assert.cs:65:16:65:16 | access to local variable s | Assert.cs:65:16:65:32 | Before String s = ... | @@ -8473,8 +8688,9 @@ postDominance | Assert.cs:67:27:67:34 | Before access to property Length | Assert.cs:67:9:67:35 | Before call to method WriteLine | | Assert.cs:67:27:67:34 | access to property Length | Assert.cs:67:27:67:27 | access to local variable s | | Assert.cs:70:10:70:12 | Normal Exit | Assert.cs:71:5:75:5 | After {...} | +| Assert.cs:70:19:70:19 | b | Assert.cs:70:10:70:12 | Entry | | Assert.cs:71:5:75:5 | After {...} | Assert.cs:74:9:74:36 | After ...; | -| Assert.cs:71:5:75:5 | {...} | Assert.cs:70:10:70:12 | Entry | +| Assert.cs:71:5:75:5 | {...} | Assert.cs:70:19:70:19 | b | | Assert.cs:72:9:72:33 | ... ...; | Assert.cs:71:5:75:5 | {...} | | Assert.cs:72:9:72:33 | After ... ...; | Assert.cs:72:16:72:32 | After String s = ... | | Assert.cs:72:16:72:16 | access to local variable s | Assert.cs:72:16:72:32 | Before String s = ... | @@ -8510,8 +8726,9 @@ postDominance | Assert.cs:74:27:74:34 | Before access to property Length | Assert.cs:74:9:74:35 | Before call to method WriteLine | | Assert.cs:74:27:74:34 | access to property Length | Assert.cs:74:27:74:27 | access to local variable s | | Assert.cs:77:10:77:12 | Normal Exit | Assert.cs:78:5:82:5 | After {...} | +| Assert.cs:77:19:77:19 | b | Assert.cs:77:10:77:12 | Entry | | Assert.cs:78:5:82:5 | After {...} | Assert.cs:81:9:81:36 | After ...; | -| Assert.cs:78:5:82:5 | {...} | Assert.cs:77:10:77:12 | Entry | +| Assert.cs:78:5:82:5 | {...} | Assert.cs:77:19:77:19 | b | | Assert.cs:79:9:79:33 | ... ...; | Assert.cs:78:5:82:5 | {...} | | Assert.cs:79:9:79:33 | After ... ...; | Assert.cs:79:16:79:32 | After String s = ... | | Assert.cs:79:16:79:16 | access to local variable s | Assert.cs:79:16:79:32 | Before String s = ... | @@ -8547,8 +8764,9 @@ postDominance | Assert.cs:81:27:81:34 | Before access to property Length | Assert.cs:81:9:81:35 | Before call to method WriteLine | | Assert.cs:81:27:81:34 | access to property Length | Assert.cs:81:27:81:27 | access to local variable s | | Assert.cs:84:10:84:12 | Normal Exit | Assert.cs:85:5:129:5 | After {...} | +| Assert.cs:84:19:84:19 | b | Assert.cs:84:10:84:12 | Entry | | Assert.cs:85:5:129:5 | After {...} | Assert.cs:128:9:128:36 | After ...; | -| Assert.cs:85:5:129:5 | {...} | Assert.cs:84:10:84:12 | Entry | +| Assert.cs:85:5:129:5 | {...} | Assert.cs:84:19:84:19 | b | | Assert.cs:86:9:86:33 | ... ...; | Assert.cs:85:5:129:5 | {...} | | Assert.cs:86:9:86:33 | After ... ...; | Assert.cs:86:16:86:32 | After String s = ... | | Assert.cs:86:16:86:16 | access to local variable s | Assert.cs:86:16:86:32 | Before String s = ... | @@ -8900,9 +9118,15 @@ postDominance | Assert.cs:128:27:128:34 | access to property Length | Assert.cs:128:27:128:27 | access to local variable s | | Assert.cs:131:18:131:32 | Exit | Assert.cs:131:18:131:32 | Normal Exit | | Assert.cs:131:18:131:32 | Normal Exit | Assert.cs:135:5:136:5 | {...} | -| Assert.cs:135:5:136:5 | {...} | Assert.cs:131:18:131:32 | Entry | +| Assert.cs:132:74:132:83 | condition1 | Assert.cs:131:18:131:32 | Entry | +| Assert.cs:133:73:133:82 | condition2 | Assert.cs:132:74:132:83 | condition1 | +| Assert.cs:134:17:134:28 | nonCondition | Assert.cs:133:73:133:82 | condition2 | +| Assert.cs:135:5:136:5 | {...} | Assert.cs:134:17:134:28 | nonCondition | | Assert.cs:138:10:138:12 | Normal Exit | Assert.cs:141:9:141:15 | return ...; | -| Assert.cs:139:5:142:5 | {...} | Assert.cs:138:10:138:12 | Entry | +| Assert.cs:138:19:138:20 | b1 | Assert.cs:138:10:138:12 | Entry | +| Assert.cs:138:28:138:29 | b2 | Assert.cs:138:19:138:20 | b1 | +| Assert.cs:138:37:138:38 | b3 | Assert.cs:138:28:138:29 | b2 | +| Assert.cs:139:5:142:5 | {...} | Assert.cs:138:37:138:38 | b3 | | Assert.cs:140:9:140:35 | After call to method AssertTrueFalse | Assert.cs:140:9:140:35 | call to method AssertTrueFalse | | Assert.cs:140:9:140:35 | Before call to method AssertTrueFalse | Assert.cs:140:9:140:36 | ...; | | Assert.cs:140:9:140:35 | call to method AssertTrueFalse | Assert.cs:140:33:140:34 | access to parameter b3 | @@ -8987,17 +9211,22 @@ postDominance | Assignments.cs:14:18:14:35 | (...) => ... | Assignments.cs:14:9:14:13 | After access to event Event | | Assignments.cs:14:18:14:35 | Exit | Assignments.cs:14:18:14:35 | Normal Exit | | Assignments.cs:14:18:14:35 | Normal Exit | Assignments.cs:14:33:14:35 | {...} | -| Assignments.cs:14:33:14:35 | {...} | Assignments.cs:14:18:14:35 | Entry | +| Assignments.cs:14:19:14:24 | sender | Assignments.cs:14:18:14:35 | Entry | +| Assignments.cs:14:27:14:27 | e | Assignments.cs:14:19:14:24 | sender | +| Assignments.cs:14:33:14:35 | {...} | Assignments.cs:14:27:14:27 | e | | Assignments.cs:17:40:17:40 | Exit | Assignments.cs:17:40:17:40 | Normal Exit | | Assignments.cs:17:40:17:40 | Normal Exit | Assignments.cs:19:9:19:17 | return ...; | -| Assignments.cs:18:5:20:5 | {...} | Assignments.cs:17:40:17:40 | Entry | +| Assignments.cs:17:54:17:54 | x | Assignments.cs:17:40:17:40 | Entry | +| Assignments.cs:17:69:17:69 | y | Assignments.cs:17:54:17:54 | x | +| Assignments.cs:18:5:20:5 | {...} | Assignments.cs:17:69:17:69 | y | | Assignments.cs:19:9:19:17 | Before return ...; | Assignments.cs:18:5:20:5 | {...} | | Assignments.cs:19:9:19:17 | return ...; | Assignments.cs:19:16:19:16 | access to parameter x | | Assignments.cs:19:16:19:16 | access to parameter x | Assignments.cs:19:9:19:17 | Before return ...; | | Assignments.cs:27:10:27:23 | Exit | Assignments.cs:27:10:27:23 | Normal Exit | | Assignments.cs:27:10:27:23 | Normal Exit | Assignments.cs:28:5:30:5 | After {...} | +| Assignments.cs:27:33:27:33 | x | Assignments.cs:27:10:27:23 | Entry | | Assignments.cs:28:5:30:5 | After {...} | Assignments.cs:29:9:29:15 | After ...; | -| Assignments.cs:28:5:30:5 | {...} | Assignments.cs:27:10:27:23 | Entry | +| Assignments.cs:28:5:30:5 | {...} | Assignments.cs:27:33:27:33 | x | | Assignments.cs:29:9:29:9 | access to parameter x | Assignments.cs:29:9:29:14 | Before ... = ... | | Assignments.cs:29:9:29:14 | ... = ... | Assignments.cs:29:13:29:14 | 42 | | Assignments.cs:29:9:29:14 | After ... = ... | Assignments.cs:29:9:29:14 | ... = ... | @@ -9007,8 +9236,11 @@ postDominance | Assignments.cs:29:13:29:14 | 42 | Assignments.cs:29:9:29:9 | access to parameter x | | Assignments.cs:32:10:32:22 | Exit | Assignments.cs:32:10:32:22 | Normal Exit | | Assignments.cs:32:10:32:22 | Normal Exit | Assignments.cs:33:5:36:5 | After {...} | +| Assignments.cs:32:32:32:32 | x | Assignments.cs:32:10:32:22 | Entry | +| Assignments.cs:32:42:32:42 | o | Assignments.cs:32:32:32:32 | x | +| Assignments.cs:32:56:32:56 | y | Assignments.cs:32:42:32:42 | o | | Assignments.cs:33:5:36:5 | After {...} | Assignments.cs:35:9:35:20 | After ...; | -| Assignments.cs:33:5:36:5 | {...} | Assignments.cs:32:10:32:22 | Entry | +| Assignments.cs:33:5:36:5 | {...} | Assignments.cs:32:56:32:56 | y | | Assignments.cs:34:9:34:9 | access to parameter x | Assignments.cs:34:9:34:14 | Before ... = ... | | Assignments.cs:34:9:34:14 | ... = ... | Assignments.cs:34:13:34:14 | 42 | | Assignments.cs:34:9:34:14 | After ... = ... | Assignments.cs:34:9:34:14 | ... = ... | @@ -9086,8 +9318,9 @@ postDominance | BreakInTry.cs:1:7:1:16 | {...} | BreakInTry.cs:1:7:1:16 | After call to constructor Object | | BreakInTry.cs:3:10:3:11 | Exit | BreakInTry.cs:3:10:3:11 | Normal Exit | | BreakInTry.cs:3:10:3:11 | Normal Exit | BreakInTry.cs:4:5:18:5 | After {...} | +| BreakInTry.cs:3:22:3:25 | args | BreakInTry.cs:3:10:3:11 | Entry | | BreakInTry.cs:4:5:18:5 | After {...} | BreakInTry.cs:5:9:17:9 | After try {...} ... | -| BreakInTry.cs:4:5:18:5 | {...} | BreakInTry.cs:3:10:3:11 | Entry | +| BreakInTry.cs:4:5:18:5 | {...} | BreakInTry.cs:3:22:3:25 | args | | BreakInTry.cs:5:9:17:9 | After try {...} ... | BreakInTry.cs:14:9:17:9 | After {...} | | BreakInTry.cs:5:9:17:9 | try {...} ... | BreakInTry.cs:4:5:18:5 | {...} | | BreakInTry.cs:6:9:12:9 | After {...} | BreakInTry.cs:7:13:11:13 | After foreach (... ... in ...) ... | @@ -9121,8 +9354,9 @@ postDominance | BreakInTry.cs:16:17:16:17 | ; | BreakInTry.cs:15:17:15:28 | After ... == ... [true] | | BreakInTry.cs:20:10:20:11 | Exit | BreakInTry.cs:20:10:20:11 | Normal Exit | | BreakInTry.cs:20:10:20:11 | Normal Exit | BreakInTry.cs:21:5:36:5 | After {...} | +| BreakInTry.cs:20:22:20:25 | args | BreakInTry.cs:20:10:20:11 | Entry | | BreakInTry.cs:21:5:36:5 | After {...} | BreakInTry.cs:35:7:35:7 | ; | -| BreakInTry.cs:21:5:36:5 | {...} | BreakInTry.cs:20:10:20:11 | Entry | +| BreakInTry.cs:21:5:36:5 | {...} | BreakInTry.cs:20:22:20:25 | args | | BreakInTry.cs:22:9:34:9 | After foreach (... ... in ...) ... | BreakInTry.cs:22:9:34:9 | [LoopHeader] foreach (... ... in ...) ... | | BreakInTry.cs:22:9:34:9 | After foreach (... ... in ...) ... | BreakInTry.cs:22:29:22:32 | After access to parameter args [empty] | | BreakInTry.cs:22:9:34:9 | After foreach (... ... in ...) ... | BreakInTry.cs:30:13:33:13 | After {...} | @@ -9158,8 +9392,9 @@ postDominance | BreakInTry.cs:38:10:38:11 | Exit | BreakInTry.cs:38:10:38:11 | Normal Exit | | BreakInTry.cs:38:10:38:11 | Normal Exit | BreakInTry.cs:39:5:54:5 | After {...} | | BreakInTry.cs:38:10:38:11 | Normal Exit | BreakInTry.cs:46:9:52:9 | After {...} | +| BreakInTry.cs:38:22:38:25 | args | BreakInTry.cs:38:10:38:11 | Entry | | BreakInTry.cs:39:5:54:5 | After {...} | BreakInTry.cs:53:7:53:7 | ; | -| BreakInTry.cs:39:5:54:5 | {...} | BreakInTry.cs:38:10:38:11 | Entry | +| BreakInTry.cs:39:5:54:5 | {...} | BreakInTry.cs:38:22:38:25 | args | | BreakInTry.cs:40:9:52:9 | try {...} ... | BreakInTry.cs:39:5:54:5 | {...} | | BreakInTry.cs:41:9:44:9 | After {...} | BreakInTry.cs:42:13:43:23 | After if (...) ... | | BreakInTry.cs:41:9:44:9 | {...} | BreakInTry.cs:40:9:52:9 | try {...} ... | @@ -9195,8 +9430,9 @@ postDominance | BreakInTry.cs:56:10:56:11 | Exit | BreakInTry.cs:56:10:56:11 | Normal Exit | | BreakInTry.cs:56:10:56:11 | Normal Exit | BreakInTry.cs:57:5:71:5 | After {...} | | BreakInTry.cs:56:10:56:11 | Normal Exit | BreakInTry.cs:64:9:70:9 | After {...} | +| BreakInTry.cs:56:22:56:25 | args | BreakInTry.cs:56:10:56:11 | Entry | | BreakInTry.cs:57:5:71:5 | After {...} | BreakInTry.cs:58:9:70:9 | After try {...} ... | -| BreakInTry.cs:57:5:71:5 | {...} | BreakInTry.cs:56:10:56:11 | Entry | +| BreakInTry.cs:57:5:71:5 | {...} | BreakInTry.cs:56:22:56:25 | args | | BreakInTry.cs:58:9:70:9 | try {...} ... | BreakInTry.cs:57:5:71:5 | {...} | | BreakInTry.cs:59:9:62:9 | After {...} | BreakInTry.cs:60:13:61:23 | After if (...) ... | | BreakInTry.cs:59:9:62:9 | {...} | BreakInTry.cs:58:9:70:9 | try {...} ... | @@ -9258,7 +9494,8 @@ postDominance | CompileTimeOperators.cs:17:16:17:26 | typeof(...) | CompileTimeOperators.cs:17:9:17:27 | Before return ...; | | CompileTimeOperators.cs:20:12:20:17 | Exit | CompileTimeOperators.cs:20:12:20:17 | Normal Exit | | CompileTimeOperators.cs:20:12:20:17 | Normal Exit | CompileTimeOperators.cs:22:9:22:25 | return ...; | -| CompileTimeOperators.cs:21:5:23:5 | {...} | CompileTimeOperators.cs:20:12:20:17 | Entry | +| CompileTimeOperators.cs:20:23:20:23 | i | CompileTimeOperators.cs:20:12:20:17 | Entry | +| CompileTimeOperators.cs:21:5:23:5 | {...} | CompileTimeOperators.cs:20:23:20:23 | i | | CompileTimeOperators.cs:22:9:22:25 | Before return ...; | CompileTimeOperators.cs:21:5:23:5 | {...} | | CompileTimeOperators.cs:22:9:22:25 | return ...; | CompileTimeOperators.cs:22:16:22:24 | nameof(...) | | CompileTimeOperators.cs:22:16:22:24 | nameof(...) | CompileTimeOperators.cs:22:9:22:25 | Before return ...; | @@ -9313,26 +9550,30 @@ postDominance | ConditionalAccess.cs:1:7:1:23 | {...} | ConditionalAccess.cs:1:7:1:23 | After call to constructor Object | | ConditionalAccess.cs:3:12:3:13 | Exit | ConditionalAccess.cs:3:12:3:13 | Normal Exit | | ConditionalAccess.cs:3:12:3:13 | Normal Exit | ConditionalAccess.cs:3:26:3:49 | After call to method ToLower | +| ConditionalAccess.cs:3:20:3:20 | i | ConditionalAccess.cs:3:12:3:13 | Entry | | ConditionalAccess.cs:3:26:3:26 | access to parameter i | ConditionalAccess.cs:3:26:3:38 | Before call to method ToString | | ConditionalAccess.cs:3:26:3:38 | After call to method ToString [null] | ConditionalAccess.cs:3:26:3:26 | After access to parameter i [null] | | ConditionalAccess.cs:3:26:3:38 | Before call to method ToString | ConditionalAccess.cs:3:26:3:49 | Before call to method ToLower | | ConditionalAccess.cs:3:26:3:38 | call to method ToString | ConditionalAccess.cs:3:26:3:26 | After access to parameter i [non-null] | | ConditionalAccess.cs:3:26:3:49 | After call to method ToLower | ConditionalAccess.cs:3:26:3:38 | After call to method ToString [null] | | ConditionalAccess.cs:3:26:3:49 | After call to method ToLower | ConditionalAccess.cs:3:26:3:49 | call to method ToLower | -| ConditionalAccess.cs:3:26:3:49 | Before call to method ToLower | ConditionalAccess.cs:3:12:3:13 | Entry | +| ConditionalAccess.cs:3:26:3:49 | Before call to method ToLower | ConditionalAccess.cs:3:20:3:20 | i | | ConditionalAccess.cs:3:26:3:49 | call to method ToLower | ConditionalAccess.cs:3:26:3:38 | After call to method ToString [non-null] | | ConditionalAccess.cs:5:10:5:11 | Exit | ConditionalAccess.cs:5:10:5:11 | Normal Exit | | ConditionalAccess.cs:5:10:5:11 | Normal Exit | ConditionalAccess.cs:5:26:5:34 | After access to property Length | +| ConditionalAccess.cs:5:20:5:20 | s | ConditionalAccess.cs:5:10:5:11 | Entry | | ConditionalAccess.cs:5:26:5:26 | access to parameter s | ConditionalAccess.cs:5:26:5:34 | Before access to property Length | | ConditionalAccess.cs:5:26:5:34 | After access to property Length | ConditionalAccess.cs:5:26:5:26 | After access to parameter s [null] | | ConditionalAccess.cs:5:26:5:34 | After access to property Length | ConditionalAccess.cs:5:26:5:34 | access to property Length | -| ConditionalAccess.cs:5:26:5:34 | Before access to property Length | ConditionalAccess.cs:5:10:5:11 | Entry | +| ConditionalAccess.cs:5:26:5:34 | Before access to property Length | ConditionalAccess.cs:5:20:5:20 | s | | ConditionalAccess.cs:5:26:5:34 | access to property Length | ConditionalAccess.cs:5:26:5:26 | After access to parameter s [non-null] | | ConditionalAccess.cs:7:10:7:11 | Exit | ConditionalAccess.cs:7:10:7:11 | Normal Exit | | ConditionalAccess.cs:7:10:7:11 | Normal Exit | ConditionalAccess.cs:7:38:7:55 | After access to property Length | +| ConditionalAccess.cs:7:20:7:21 | s1 | ConditionalAccess.cs:7:10:7:11 | Entry | +| ConditionalAccess.cs:7:31:7:32 | s2 | ConditionalAccess.cs:7:20:7:21 | s1 | | ConditionalAccess.cs:7:38:7:55 | After access to property Length | ConditionalAccess.cs:7:38:7:55 | access to property Length | | ConditionalAccess.cs:7:38:7:55 | After access to property Length | ConditionalAccess.cs:7:39:7:46 | After ... ?? ... [null] | -| ConditionalAccess.cs:7:38:7:55 | Before access to property Length | ConditionalAccess.cs:7:10:7:11 | Entry | +| ConditionalAccess.cs:7:38:7:55 | Before access to property Length | ConditionalAccess.cs:7:31:7:32 | s2 | | ConditionalAccess.cs:7:38:7:55 | access to property Length | ConditionalAccess.cs:7:39:7:46 | After ... ?? ... [non-null] | | ConditionalAccess.cs:7:39:7:40 | access to parameter s1 | ConditionalAccess.cs:7:39:7:46 | ... ?? ... | | ConditionalAccess.cs:7:39:7:46 | ... ?? ... | ConditionalAccess.cs:7:38:7:55 | Before access to property Length | @@ -9342,18 +9583,20 @@ postDominance | ConditionalAccess.cs:7:45:7:46 | access to parameter s2 | ConditionalAccess.cs:7:39:7:40 | After access to parameter s1 [null] | | ConditionalAccess.cs:9:9:9:10 | Exit | ConditionalAccess.cs:9:9:9:10 | Normal Exit | | ConditionalAccess.cs:9:9:9:10 | Normal Exit | ConditionalAccess.cs:9:25:9:38 | After ... ?? ... | +| ConditionalAccess.cs:9:19:9:19 | s | ConditionalAccess.cs:9:9:9:10 | Entry | | ConditionalAccess.cs:9:25:9:25 | access to parameter s | ConditionalAccess.cs:9:25:9:33 | Before access to property Length | | ConditionalAccess.cs:9:25:9:33 | After access to property Length [null] | ConditionalAccess.cs:9:25:9:25 | After access to parameter s [null] | | ConditionalAccess.cs:9:25:9:33 | Before access to property Length | ConditionalAccess.cs:9:25:9:38 | ... ?? ... | | ConditionalAccess.cs:9:25:9:33 | access to property Length | ConditionalAccess.cs:9:25:9:25 | After access to parameter s [non-null] | -| ConditionalAccess.cs:9:25:9:38 | ... ?? ... | ConditionalAccess.cs:9:9:9:10 | Entry | +| ConditionalAccess.cs:9:25:9:38 | ... ?? ... | ConditionalAccess.cs:9:19:9:19 | s | | ConditionalAccess.cs:9:25:9:38 | After ... ?? ... | ConditionalAccess.cs:9:25:9:33 | After access to property Length [non-null] | | ConditionalAccess.cs:9:25:9:38 | After ... ?? ... | ConditionalAccess.cs:9:38:9:38 | 0 | | ConditionalAccess.cs:9:38:9:38 | 0 | ConditionalAccess.cs:9:25:9:33 | After access to property Length [null] | | ConditionalAccess.cs:11:9:11:10 | Exit | ConditionalAccess.cs:11:9:11:10 | Normal Exit | | ConditionalAccess.cs:11:9:11:10 | Normal Exit | ConditionalAccess.cs:14:13:14:21 | return ...; | | ConditionalAccess.cs:11:9:11:10 | Normal Exit | ConditionalAccess.cs:16:13:16:21 | return ...; | -| ConditionalAccess.cs:12:5:17:5 | {...} | ConditionalAccess.cs:11:9:11:10 | Entry | +| ConditionalAccess.cs:11:19:11:19 | s | ConditionalAccess.cs:11:9:11:10 | Entry | +| ConditionalAccess.cs:12:5:17:5 | {...} | ConditionalAccess.cs:11:19:11:19 | s | | ConditionalAccess.cs:13:9:16:21 | if (...) ... | ConditionalAccess.cs:12:5:17:5 | {...} | | ConditionalAccess.cs:13:13:13:13 | access to parameter s | ConditionalAccess.cs:13:13:13:21 | Before access to property Length | | ConditionalAccess.cs:13:13:13:21 | After access to property Length | ConditionalAccess.cs:13:13:13:13 | After access to parameter s [null] | @@ -9374,16 +9617,19 @@ postDominance | ConditionalAccess.cs:16:20:16:20 | 1 | ConditionalAccess.cs:16:13:16:21 | Before return ...; | | ConditionalAccess.cs:19:12:19:13 | Exit | ConditionalAccess.cs:19:12:19:13 | Normal Exit | | ConditionalAccess.cs:19:12:19:13 | Normal Exit | ConditionalAccess.cs:19:40:19:60 | After call to method CommaJoinWith | +| ConditionalAccess.cs:19:22:19:23 | s1 | ConditionalAccess.cs:19:12:19:13 | Entry | +| ConditionalAccess.cs:19:33:19:34 | s2 | ConditionalAccess.cs:19:22:19:23 | s1 | | ConditionalAccess.cs:19:40:19:41 | access to parameter s1 | ConditionalAccess.cs:19:40:19:60 | Before call to method CommaJoinWith | | ConditionalAccess.cs:19:40:19:60 | After call to method CommaJoinWith | ConditionalAccess.cs:19:40:19:41 | After access to parameter s1 [null] | | ConditionalAccess.cs:19:40:19:60 | After call to method CommaJoinWith | ConditionalAccess.cs:19:40:19:60 | call to method CommaJoinWith | -| ConditionalAccess.cs:19:40:19:60 | Before call to method CommaJoinWith | ConditionalAccess.cs:19:12:19:13 | Entry | +| ConditionalAccess.cs:19:40:19:60 | Before call to method CommaJoinWith | ConditionalAccess.cs:19:33:19:34 | s2 | | ConditionalAccess.cs:19:40:19:60 | call to method CommaJoinWith | ConditionalAccess.cs:19:58:19:59 | access to parameter s2 | | ConditionalAccess.cs:19:58:19:59 | access to parameter s2 | ConditionalAccess.cs:19:40:19:41 | After access to parameter s1 [non-null] | | ConditionalAccess.cs:21:10:21:11 | Exit | ConditionalAccess.cs:21:10:21:11 | Normal Exit | | ConditionalAccess.cs:21:10:21:11 | Normal Exit | ConditionalAccess.cs:22:5:26:5 | After {...} | +| ConditionalAccess.cs:21:17:21:17 | i | ConditionalAccess.cs:21:10:21:11 | Entry | | ConditionalAccess.cs:22:5:26:5 | After {...} | ConditionalAccess.cs:25:9:25:33 | After ...; | -| ConditionalAccess.cs:22:5:26:5 | {...} | ConditionalAccess.cs:21:10:21:11 | Entry | +| ConditionalAccess.cs:22:5:26:5 | {...} | ConditionalAccess.cs:21:17:21:17 | i | | ConditionalAccess.cs:23:9:23:39 | ... ...; | ConditionalAccess.cs:22:5:26:5 | {...} | | ConditionalAccess.cs:23:9:23:39 | After ... ...; | ConditionalAccess.cs:23:13:23:38 | After Nullable j = ... | | ConditionalAccess.cs:23:13:23:13 | access to local variable j | ConditionalAccess.cs:23:13:23:38 | Before Nullable j = ... | @@ -9424,15 +9670,18 @@ postDominance | ConditionalAccess.cs:25:31:25:31 | access to local variable s | ConditionalAccess.cs:25:13:25:14 | After "" [non-null] | | ConditionalAccess.cs:30:10:30:12 | Exit | ConditionalAccess.cs:30:10:30:12 | Normal Exit | | ConditionalAccess.cs:30:10:30:12 | Normal Exit | ConditionalAccess.cs:30:28:30:32 | After ... = ... | +| ConditionalAccess.cs:30:22:30:22 | i | ConditionalAccess.cs:30:10:30:12 | Entry | | ConditionalAccess.cs:30:28:30:28 | access to parameter i | ConditionalAccess.cs:30:28:30:32 | Before ... = ... | | ConditionalAccess.cs:30:28:30:32 | ... = ... | ConditionalAccess.cs:30:32:30:32 | 0 | | ConditionalAccess.cs:30:28:30:32 | After ... = ... | ConditionalAccess.cs:30:28:30:32 | ... = ... | -| ConditionalAccess.cs:30:28:30:32 | Before ... = ... | ConditionalAccess.cs:30:10:30:12 | Entry | +| ConditionalAccess.cs:30:28:30:32 | Before ... = ... | ConditionalAccess.cs:30:22:30:22 | i | | ConditionalAccess.cs:30:32:30:32 | 0 | ConditionalAccess.cs:30:28:30:28 | access to parameter i | | ConditionalAccess.cs:32:10:32:11 | Exit | ConditionalAccess.cs:32:10:32:11 | Normal Exit | | ConditionalAccess.cs:32:10:32:11 | Normal Exit | ConditionalAccess.cs:33:5:36:5 | After {...} | +| ConditionalAccess.cs:32:18:32:18 | b | ConditionalAccess.cs:32:10:32:11 | Entry | +| ConditionalAccess.cs:32:29:32:29 | i | ConditionalAccess.cs:32:18:32:18 | b | | ConditionalAccess.cs:33:5:36:5 | After {...} | ConditionalAccess.cs:35:9:35:25 | After ...; | -| ConditionalAccess.cs:33:5:36:5 | {...} | ConditionalAccess.cs:32:10:32:11 | Entry | +| ConditionalAccess.cs:33:5:36:5 | {...} | ConditionalAccess.cs:32:29:32:29 | i | | ConditionalAccess.cs:34:9:34:9 | access to parameter i | ConditionalAccess.cs:34:9:34:13 | Before ... = ... | | ConditionalAccess.cs:34:9:34:13 | ... = ... | ConditionalAccess.cs:34:13:34:13 | 0 | | ConditionalAccess.cs:34:9:34:13 | After ... = ... | ConditionalAccess.cs:34:9:34:13 | ... = ... | @@ -9450,19 +9699,23 @@ postDominance | ConditionalAccess.cs:35:9:35:25 | ...; | ConditionalAccess.cs:34:9:34:14 | After ...; | | ConditionalAccess.cs:35:9:35:25 | After ...; | ConditionalAccess.cs:35:9:35:24 | After call to method Out | | ConditionalAccess.cs:35:23:35:23 | access to parameter i | ConditionalAccess.cs:35:9:35:12 | After access to property Prop [non-null] | +| ConditionalAccess.cs:40:21:40:25 | index | ConditionalAccess.cs:42:9:42:11 | Entry | +| ConditionalAccess.cs:40:21:40:25 | index | ConditionalAccess.cs:43:9:43:11 | Entry | | ConditionalAccess.cs:42:9:42:11 | Exit | ConditionalAccess.cs:42:9:42:11 | Normal Exit | | ConditionalAccess.cs:42:9:42:11 | Normal Exit | ConditionalAccess.cs:42:15:42:26 | return ...; | -| ConditionalAccess.cs:42:13:42:28 | {...} | ConditionalAccess.cs:42:9:42:11 | Entry | +| ConditionalAccess.cs:42:13:42:28 | {...} | ConditionalAccess.cs:40:21:40:25 | index | | ConditionalAccess.cs:42:15:42:26 | Before return ...; | ConditionalAccess.cs:42:13:42:28 | {...} | | ConditionalAccess.cs:42:15:42:26 | return ...; | ConditionalAccess.cs:42:22:42:25 | null | | ConditionalAccess.cs:42:22:42:25 | null | ConditionalAccess.cs:42:15:42:26 | Before return ...; | | ConditionalAccess.cs:43:9:43:11 | Exit | ConditionalAccess.cs:43:9:43:11 | Normal Exit | | ConditionalAccess.cs:43:9:43:11 | Normal Exit | ConditionalAccess.cs:43:13:43:15 | {...} | -| ConditionalAccess.cs:43:13:43:15 | {...} | ConditionalAccess.cs:43:9:43:11 | Entry | +| ConditionalAccess.cs:43:9:43:11 | value | ConditionalAccess.cs:40:21:40:25 | index | +| ConditionalAccess.cs:43:13:43:15 | {...} | ConditionalAccess.cs:43:9:43:11 | value | | ConditionalAccess.cs:46:10:46:11 | Exit | ConditionalAccess.cs:46:10:46:11 | Normal Exit | | ConditionalAccess.cs:46:10:46:11 | Normal Exit | ConditionalAccess.cs:47:5:55:5 | After {...} | +| ConditionalAccess.cs:46:31:46:32 | ca | ConditionalAccess.cs:46:10:46:11 | Entry | | ConditionalAccess.cs:47:5:55:5 | After {...} | ConditionalAccess.cs:54:9:54:30 | After ...; | -| ConditionalAccess.cs:47:5:55:5 | {...} | ConditionalAccess.cs:46:10:46:11 | Entry | +| ConditionalAccess.cs:47:5:55:5 | {...} | ConditionalAccess.cs:46:31:46:32 | ca | | ConditionalAccess.cs:48:9:48:10 | access to parameter ca | ConditionalAccess.cs:48:9:48:20 | Before access to field IntField | | ConditionalAccess.cs:48:9:48:20 | After access to field IntField | ConditionalAccess.cs:48:9:48:20 | access to field IntField | | ConditionalAccess.cs:48:9:48:20 | Before access to field IntField | ConditionalAccess.cs:48:12:48:25 | Before ... = ... | @@ -9549,13 +9802,15 @@ postDominance | ConditionalAccess.cs:54:27:54:29 | "!" | ConditionalAccess.cs:54:9:54:22 | After access to property StringProp | | ConditionalAccess.cs:60:26:60:38 | Exit | ConditionalAccess.cs:60:26:60:38 | Normal Exit | | ConditionalAccess.cs:60:26:60:38 | Normal Exit | ConditionalAccess.cs:60:70:60:83 | After ... + ... | +| ConditionalAccess.cs:60:52:60:53 | s1 | ConditionalAccess.cs:60:26:60:38 | Entry | +| ConditionalAccess.cs:60:63:60:64 | s2 | ConditionalAccess.cs:60:52:60:53 | s1 | | ConditionalAccess.cs:60:70:60:71 | access to parameter s1 | ConditionalAccess.cs:60:70:60:78 | Before ... + ... | | ConditionalAccess.cs:60:70:60:78 | ... + ... | ConditionalAccess.cs:60:75:60:78 | ", " | | ConditionalAccess.cs:60:70:60:78 | After ... + ... | ConditionalAccess.cs:60:70:60:78 | ... + ... | | ConditionalAccess.cs:60:70:60:78 | Before ... + ... | ConditionalAccess.cs:60:70:60:83 | Before ... + ... | | ConditionalAccess.cs:60:70:60:83 | ... + ... | ConditionalAccess.cs:60:82:60:83 | access to parameter s2 | | ConditionalAccess.cs:60:70:60:83 | After ... + ... | ConditionalAccess.cs:60:70:60:83 | ... + ... | -| ConditionalAccess.cs:60:70:60:83 | Before ... + ... | ConditionalAccess.cs:60:26:60:38 | Entry | +| ConditionalAccess.cs:60:70:60:83 | Before ... + ... | ConditionalAccess.cs:60:63:60:64 | s2 | | ConditionalAccess.cs:60:75:60:78 | ", " | ConditionalAccess.cs:60:70:60:71 | access to parameter s1 | | ConditionalAccess.cs:60:82:60:83 | access to parameter s2 | ConditionalAccess.cs:60:70:60:78 | After ... + ... | | Conditions.cs:1:7:1:16 | After call to constructor Object | Conditions.cs:1:7:1:16 | call to constructor Object | @@ -9570,8 +9825,10 @@ postDominance | Conditions.cs:1:7:1:16 | {...} | Conditions.cs:1:7:1:16 | After call to constructor Object | | Conditions.cs:3:10:3:19 | Exit | Conditions.cs:3:10:3:19 | Normal Exit | | Conditions.cs:3:10:3:19 | Normal Exit | Conditions.cs:4:5:9:5 | After {...} | +| Conditions.cs:3:26:3:28 | inc | Conditions.cs:3:10:3:19 | Entry | +| Conditions.cs:3:39:3:39 | x | Conditions.cs:3:26:3:28 | inc | | Conditions.cs:4:5:9:5 | After {...} | Conditions.cs:7:9:8:16 | After if (...) ... | -| Conditions.cs:4:5:9:5 | {...} | Conditions.cs:3:10:3:19 | Entry | +| Conditions.cs:4:5:9:5 | {...} | Conditions.cs:3:39:3:39 | x | | Conditions.cs:5:9:6:16 | After if (...) ... | Conditions.cs:5:13:5:15 | After access to parameter inc [false] | | Conditions.cs:5:9:6:16 | After if (...) ... | Conditions.cs:6:13:6:16 | After ...; | | Conditions.cs:5:9:6:16 | if (...) ... | Conditions.cs:4:5:9:5 | {...} | @@ -9597,7 +9854,8 @@ postDominance | Conditions.cs:8:13:8:16 | After ...; | Conditions.cs:8:13:8:15 | After ...-- | | Conditions.cs:11:9:11:10 | Exit | Conditions.cs:11:9:11:10 | Normal Exit | | Conditions.cs:11:9:11:10 | Normal Exit | Conditions.cs:19:9:19:17 | return ...; | -| Conditions.cs:12:5:20:5 | {...} | Conditions.cs:11:9:11:10 | Entry | +| Conditions.cs:11:17:11:17 | b | Conditions.cs:11:9:11:10 | Entry | +| Conditions.cs:12:5:20:5 | {...} | Conditions.cs:11:17:11:17 | b | | Conditions.cs:13:9:13:18 | ... ...; | Conditions.cs:12:5:20:5 | {...} | | Conditions.cs:13:9:13:18 | After ... ...; | Conditions.cs:13:13:13:17 | After Int32 x = ... | | Conditions.cs:13:13:13:13 | access to local variable x | Conditions.cs:13:13:13:17 | Before Int32 x = ... | @@ -9640,7 +9898,9 @@ postDominance | Conditions.cs:19:16:19:16 | access to local variable x | Conditions.cs:19:9:19:17 | Before return ...; | | Conditions.cs:22:9:22:10 | Exit | Conditions.cs:22:9:22:10 | Normal Exit | | Conditions.cs:22:9:22:10 | Normal Exit | Conditions.cs:30:9:30:17 | return ...; | -| Conditions.cs:23:5:31:5 | {...} | Conditions.cs:22:9:22:10 | Entry | +| Conditions.cs:22:17:22:18 | b1 | Conditions.cs:22:9:22:10 | Entry | +| Conditions.cs:22:26:22:27 | b2 | Conditions.cs:22:17:22:18 | b1 | +| Conditions.cs:23:5:31:5 | {...} | Conditions.cs:22:26:22:27 | b2 | | Conditions.cs:24:9:24:18 | ... ...; | Conditions.cs:23:5:31:5 | {...} | | Conditions.cs:24:9:24:18 | After ... ...; | Conditions.cs:24:13:24:17 | After Int32 x = ... | | Conditions.cs:24:13:24:13 | access to local variable x | Conditions.cs:24:13:24:17 | Before Int32 x = ... | @@ -9677,7 +9937,8 @@ postDominance | Conditions.cs:30:16:30:16 | access to local variable x | Conditions.cs:30:9:30:17 | Before return ...; | | Conditions.cs:33:9:33:10 | Exit | Conditions.cs:33:9:33:10 | Normal Exit | | Conditions.cs:33:9:33:10 | Normal Exit | Conditions.cs:43:9:43:17 | return ...; | -| Conditions.cs:34:5:44:5 | {...} | Conditions.cs:33:9:33:10 | Entry | +| Conditions.cs:33:17:33:18 | b1 | Conditions.cs:33:9:33:10 | Entry | +| Conditions.cs:34:5:44:5 | {...} | Conditions.cs:33:17:33:18 | b1 | | Conditions.cs:35:9:35:18 | ... ...; | Conditions.cs:34:5:44:5 | {...} | | Conditions.cs:35:9:35:18 | After ... ...; | Conditions.cs:35:13:35:17 | After Int32 x = ... | | Conditions.cs:35:13:35:13 | access to local variable x | Conditions.cs:35:13:35:17 | Before Int32 x = ... | @@ -9728,7 +9989,9 @@ postDominance | Conditions.cs:43:16:43:16 | access to local variable x | Conditions.cs:43:9:43:17 | Before return ...; | | Conditions.cs:46:9:46:10 | Exit | Conditions.cs:46:9:46:10 | Normal Exit | | Conditions.cs:46:9:46:10 | Normal Exit | Conditions.cs:54:9:54:17 | return ...; | -| Conditions.cs:47:5:55:5 | {...} | Conditions.cs:46:9:46:10 | Entry | +| Conditions.cs:46:17:46:17 | b | Conditions.cs:46:9:46:10 | Entry | +| Conditions.cs:46:24:46:24 | x | Conditions.cs:46:17:46:17 | b | +| Conditions.cs:47:5:55:5 | {...} | Conditions.cs:46:24:46:24 | x | | Conditions.cs:48:9:48:18 | ... ...; | Conditions.cs:47:5:55:5 | {...} | | Conditions.cs:48:9:48:18 | After ... ...; | Conditions.cs:48:13:48:17 | After Int32 y = ... | | Conditions.cs:48:13:48:13 | access to local variable y | Conditions.cs:48:13:48:17 | Before Int32 y = ... | @@ -9765,7 +10028,9 @@ postDominance | Conditions.cs:54:16:54:16 | access to local variable y | Conditions.cs:54:9:54:17 | Before return ...; | | Conditions.cs:57:9:57:10 | Exit | Conditions.cs:57:9:57:10 | Normal Exit | | Conditions.cs:57:9:57:10 | Normal Exit | Conditions.cs:67:9:67:17 | return ...; | -| Conditions.cs:58:5:68:5 | {...} | Conditions.cs:57:9:57:10 | Entry | +| Conditions.cs:57:17:57:17 | b | Conditions.cs:57:9:57:10 | Entry | +| Conditions.cs:57:24:57:24 | x | Conditions.cs:57:17:57:17 | b | +| Conditions.cs:58:5:68:5 | {...} | Conditions.cs:57:24:57:24 | x | | Conditions.cs:59:9:59:18 | ... ...; | Conditions.cs:58:5:68:5 | {...} | | Conditions.cs:59:9:59:18 | After ... ...; | Conditions.cs:59:13:59:17 | After Int32 y = ... | | Conditions.cs:59:13:59:13 | access to local variable y | Conditions.cs:59:13:59:17 | Before Int32 y = ... | @@ -9812,7 +10077,8 @@ postDominance | Conditions.cs:67:16:67:16 | access to local variable y | Conditions.cs:67:9:67:17 | Before return ...; | | Conditions.cs:70:9:70:10 | Exit | Conditions.cs:70:9:70:10 | Normal Exit | | Conditions.cs:70:9:70:10 | Normal Exit | Conditions.cs:83:9:83:17 | return ...; | -| Conditions.cs:71:5:84:5 | {...} | Conditions.cs:70:9:70:10 | Entry | +| Conditions.cs:70:21:70:22 | ss | Conditions.cs:70:9:70:10 | Entry | +| Conditions.cs:71:5:84:5 | {...} | Conditions.cs:70:21:70:22 | ss | | Conditions.cs:72:9:72:30 | ... ...; | Conditions.cs:71:5:84:5 | {...} | | Conditions.cs:72:9:72:30 | After ... ...; | Conditions.cs:72:13:72:29 | After Boolean b = ... | | Conditions.cs:72:13:72:13 | access to local variable b | Conditions.cs:72:13:72:29 | Before Boolean b = ... | @@ -9881,7 +10147,8 @@ postDominance | Conditions.cs:83:16:83:16 | access to local variable x | Conditions.cs:83:9:83:17 | Before return ...; | | Conditions.cs:86:9:86:10 | Exit | Conditions.cs:86:9:86:10 | Normal Exit | | Conditions.cs:86:9:86:10 | Normal Exit | Conditions.cs:99:9:99:17 | return ...; | -| Conditions.cs:87:5:100:5 | {...} | Conditions.cs:86:9:86:10 | Entry | +| Conditions.cs:86:21:86:22 | ss | Conditions.cs:86:9:86:10 | Entry | +| Conditions.cs:87:5:100:5 | {...} | Conditions.cs:86:21:86:22 | ss | | Conditions.cs:88:9:88:30 | ... ...; | Conditions.cs:87:5:100:5 | {...} | | Conditions.cs:88:9:88:30 | After ... ...; | Conditions.cs:88:13:88:29 | After Boolean b = ... | | Conditions.cs:88:13:88:13 | access to local variable b | Conditions.cs:88:13:88:29 | Before Boolean b = ... | @@ -9950,7 +10217,8 @@ postDominance | Conditions.cs:99:16:99:16 | access to local variable x | Conditions.cs:99:9:99:17 | Before return ...; | | Conditions.cs:102:12:102:13 | Exit | Conditions.cs:102:12:102:13 | Normal Exit | | Conditions.cs:102:12:102:13 | Normal Exit | Conditions.cs:110:9:110:17 | return ...; | -| Conditions.cs:103:5:111:5 | {...} | Conditions.cs:102:12:102:13 | Entry | +| Conditions.cs:102:20:102:20 | b | Conditions.cs:102:12:102:13 | Entry | +| Conditions.cs:103:5:111:5 | {...} | Conditions.cs:102:20:102:20 | b | | Conditions.cs:104:9:104:29 | ... ...; | Conditions.cs:103:5:111:5 | {...} | | Conditions.cs:104:9:104:29 | After ... ...; | Conditions.cs:104:13:104:28 | After String x = ... | | Conditions.cs:104:13:104:13 | access to local variable x | Conditions.cs:104:13:104:28 | Before String x = ... | @@ -10001,8 +10269,9 @@ postDominance | Conditions.cs:110:16:110:16 | access to local variable x | Conditions.cs:110:9:110:17 | Before return ...; | | Conditions.cs:113:10:113:11 | Exit | Conditions.cs:113:10:113:11 | Normal Exit | | Conditions.cs:113:10:113:11 | Normal Exit | Conditions.cs:114:5:124:5 | After {...} | +| Conditions.cs:113:22:113:25 | args | Conditions.cs:113:10:113:11 | Entry | | Conditions.cs:114:5:124:5 | After {...} | Conditions.cs:116:9:123:9 | After for (...;...;...) ... | -| Conditions.cs:114:5:124:5 | {...} | Conditions.cs:113:10:113:11 | Entry | +| Conditions.cs:114:5:124:5 | {...} | Conditions.cs:113:22:113:25 | args | | Conditions.cs:115:9:115:24 | ... ...; | Conditions.cs:114:5:124:5 | {...} | | Conditions.cs:115:9:115:24 | After ... ...; | Conditions.cs:115:16:115:23 | After String s = ... | | Conditions.cs:115:16:115:16 | access to local variable s | Conditions.cs:115:16:115:23 | Before String s = ... | @@ -10105,8 +10374,9 @@ postDominance | Conditions.cs:137:21:137:38 | After ...; | Conditions.cs:137:21:137:37 | After call to method ToString | | Conditions.cs:143:10:143:12 | Exit | Conditions.cs:143:10:143:12 | Normal Exit | | Conditions.cs:143:10:143:12 | Normal Exit | Conditions.cs:144:5:150:5 | After {...} | +| Conditions.cs:143:19:143:19 | b | Conditions.cs:143:10:143:12 | Entry | | Conditions.cs:144:5:150:5 | After {...} | Conditions.cs:146:9:149:49 | After if (...) ... | -| Conditions.cs:144:5:150:5 | {...} | Conditions.cs:143:10:143:12 | Entry | +| Conditions.cs:144:5:150:5 | {...} | Conditions.cs:143:19:143:19 | b | | Conditions.cs:145:9:145:30 | ... ...; | Conditions.cs:144:5:150:5 | {...} | | Conditions.cs:145:9:145:30 | After ... ...; | Conditions.cs:145:13:145:29 | After String s = ... | | Conditions.cs:145:13:145:13 | access to local variable s | Conditions.cs:145:13:145:29 | Before String s = ... | @@ -10161,7 +10431,14 @@ postDominance | DefaultParam.cs:1:7:1:18 | {...} | DefaultParam.cs:1:7:1:18 | After call to constructor Object | | DefaultParam.cs:3:12:3:13 | Exit | DefaultParam.cs:3:12:3:13 | Normal Exit | | DefaultParam.cs:3:12:3:13 | Normal Exit | DefaultParam.cs:5:9:5:25 | return ...; | -| DefaultParam.cs:4:5:6:5 | {...} | DefaultParam.cs:3:12:3:13 | Entry | +| DefaultParam.cs:3:20:3:20 | b | DefaultParam.cs:3:12:3:13 | Entry | +| DefaultParam.cs:3:30:3:30 | s | DefaultParam.cs:3:20:3:20 | b | +| DefaultParam.cs:3:34:3:35 | "" | DefaultParam.cs:3:30:3:30 | After s [no-match] | +| DefaultParam.cs:3:42:3:42 | i | DefaultParam.cs:3:30:3:30 | After s [match] | +| DefaultParam.cs:3:42:3:42 | i | DefaultParam.cs:3:34:3:35 | "" | +| DefaultParam.cs:3:46:3:46 | 0 | DefaultParam.cs:3:42:3:42 | After i [no-match] | +| DefaultParam.cs:4:5:6:5 | {...} | DefaultParam.cs:3:42:3:42 | After i [match] | +| DefaultParam.cs:4:5:6:5 | {...} | DefaultParam.cs:3:46:3:46 | 0 | | DefaultParam.cs:5:9:5:25 | Before return ...; | DefaultParam.cs:4:5:6:5 | {...} | | DefaultParam.cs:5:9:5:25 | return ...; | DefaultParam.cs:5:16:5:24 | After ... + ... | | DefaultParam.cs:5:16:5:16 | (...) ... | DefaultParam.cs:5:16:5:16 | access to parameter b | @@ -10265,8 +10542,9 @@ postDominance | ExitMethods.cs:62:9:62:23 | ...; | ExitMethods.cs:61:5:64:5 | {...} | | ExitMethods.cs:66:17:66:26 | Exceptional Exit | ExitMethods.cs:69:13:69:34 | throw ...; | | ExitMethods.cs:66:17:66:26 | Normal Exit | ExitMethods.cs:67:5:70:5 | After {...} | +| ExitMethods.cs:66:33:66:33 | b | ExitMethods.cs:66:17:66:26 | Entry | | ExitMethods.cs:67:5:70:5 | After {...} | ExitMethods.cs:68:9:69:34 | After if (...) ... | -| ExitMethods.cs:67:5:70:5 | {...} | ExitMethods.cs:66:17:66:26 | Entry | +| ExitMethods.cs:67:5:70:5 | {...} | ExitMethods.cs:66:33:66:33 | b | | ExitMethods.cs:68:9:69:34 | After if (...) ... | ExitMethods.cs:68:13:68:13 | After access to parameter b [false] | | ExitMethods.cs:68:9:69:34 | if (...) ... | ExitMethods.cs:67:5:70:5 | {...} | | ExitMethods.cs:68:13:68:13 | After access to parameter b [false] | ExitMethods.cs:68:13:68:13 | access to parameter b | @@ -10277,7 +10555,8 @@ postDominance | ExitMethods.cs:69:19:69:33 | Before object creation of type Exception | ExitMethods.cs:69:13:69:34 | Before throw ...; | | ExitMethods.cs:69:19:69:33 | object creation of type Exception | ExitMethods.cs:69:19:69:33 | Before object creation of type Exception | | ExitMethods.cs:72:17:72:27 | Exit | ExitMethods.cs:72:17:72:27 | Exceptional Exit | -| ExitMethods.cs:73:5:78:5 | {...} | ExitMethods.cs:72:17:72:27 | Entry | +| ExitMethods.cs:72:34:72:34 | b | ExitMethods.cs:72:17:72:27 | Entry | +| ExitMethods.cs:73:5:78:5 | {...} | ExitMethods.cs:72:34:72:34 | b | | ExitMethods.cs:74:9:77:45 | if (...) ... | ExitMethods.cs:73:5:78:5 | {...} | | ExitMethods.cs:74:13:74:13 | access to parameter b | ExitMethods.cs:74:9:77:45 | if (...) ... | | ExitMethods.cs:75:13:75:34 | Before throw ...; | ExitMethods.cs:74:13:74:13 | After access to parameter b [true] | @@ -10339,7 +10618,8 @@ postDominance | ExitMethods.cs:107:9:107:48 | ...; | ExitMethods.cs:106:5:108:5 | {...} | | ExitMethods.cs:110:13:110:21 | Exceptional Exit | ExitMethods.cs:112:41:112:76 | throw ... | | ExitMethods.cs:110:13:110:21 | Normal Exit | ExitMethods.cs:112:9:112:77 | return ...; | -| ExitMethods.cs:111:5:113:5 | {...} | ExitMethods.cs:110:13:110:21 | Entry | +| ExitMethods.cs:110:31:110:35 | input | ExitMethods.cs:110:13:110:21 | Entry | +| ExitMethods.cs:111:5:113:5 | {...} | ExitMethods.cs:110:31:110:35 | input | | ExitMethods.cs:112:9:112:77 | Before return ...; | ExitMethods.cs:111:5:113:5 | {...} | | ExitMethods.cs:112:9:112:77 | return ...; | ExitMethods.cs:112:16:112:76 | After ... ? ... : ... | | ExitMethods.cs:112:16:112:20 | access to parameter input | ExitMethods.cs:112:16:112:25 | Before ... != ... | @@ -10368,7 +10648,8 @@ postDominance | ExitMethods.cs:112:69:112:75 | "input" | ExitMethods.cs:112:47:112:76 | Before object creation of type ArgumentException | | ExitMethods.cs:115:16:115:34 | Exit | ExitMethods.cs:115:16:115:34 | Normal Exit | | ExitMethods.cs:115:16:115:34 | Normal Exit | ExitMethods.cs:117:9:117:39 | return ...; | -| ExitMethods.cs:116:5:118:5 | {...} | ExitMethods.cs:115:16:115:34 | Entry | +| ExitMethods.cs:115:43:115:43 | s | ExitMethods.cs:115:16:115:34 | Entry | +| ExitMethods.cs:116:5:118:5 | {...} | ExitMethods.cs:115:43:115:43 | s | | ExitMethods.cs:117:9:117:39 | Before return ...; | ExitMethods.cs:116:5:118:5 | {...} | | ExitMethods.cs:117:9:117:39 | return ...; | ExitMethods.cs:117:16:117:38 | After ... ? ... : ... | | ExitMethods.cs:117:16:117:16 | access to parameter s | ExitMethods.cs:117:16:117:30 | Before call to method Contains | @@ -10395,8 +10676,9 @@ postDominance | ExitMethods.cs:128:9:128:26 | this access | ExitMethods.cs:128:9:128:26 | Before call to method FailingAssertion | | ExitMethods.cs:128:9:128:27 | ...; | ExitMethods.cs:127:5:130:5 | {...} | | ExitMethods.cs:132:10:132:20 | Normal Exit | ExitMethods.cs:132:33:132:49 | After call to method IsFalse | +| ExitMethods.cs:132:27:132:27 | b | ExitMethods.cs:132:10:132:20 | Entry | | ExitMethods.cs:132:33:132:49 | After call to method IsFalse | ExitMethods.cs:132:33:132:49 | call to method IsFalse | -| ExitMethods.cs:132:33:132:49 | Before call to method IsFalse | ExitMethods.cs:132:10:132:20 | Entry | +| ExitMethods.cs:132:33:132:49 | Before call to method IsFalse | ExitMethods.cs:132:27:132:27 | b | | ExitMethods.cs:132:33:132:49 | call to method IsFalse | ExitMethods.cs:132:48:132:48 | access to parameter b | | ExitMethods.cs:132:48:132:48 | access to parameter b | ExitMethods.cs:132:33:132:49 | Before call to method IsFalse | | ExitMethods.cs:134:17:134:33 | Exceptional Exit | ExitMethods.cs:136:9:136:25 | call to method AssertFalse | @@ -10408,7 +10690,9 @@ postDominance | ExitMethods.cs:136:9:136:26 | ...; | ExitMethods.cs:135:5:138:5 | {...} | | ExitMethods.cs:136:21:136:24 | true | ExitMethods.cs:136:9:136:25 | this access | | ExitMethods.cs:140:17:140:42 | Exit | ExitMethods.cs:140:17:140:42 | Exceptional Exit | -| ExitMethods.cs:141:5:147:5 | {...} | ExitMethods.cs:140:17:140:42 | Entry | +| ExitMethods.cs:140:49:140:49 | b | ExitMethods.cs:140:17:140:42 | Entry | +| ExitMethods.cs:140:70:140:70 | e | ExitMethods.cs:140:49:140:49 | b | +| ExitMethods.cs:141:5:147:5 | {...} | ExitMethods.cs:140:70:140:70 | e | | ExitMethods.cs:142:9:145:53 | if (...) ... | ExitMethods.cs:141:5:147:5 | {...} | | ExitMethods.cs:142:13:142:13 | access to parameter b | ExitMethods.cs:142:9:145:53 | if (...) ... | | ExitMethods.cs:143:13:143:42 | Before call to method Throw | ExitMethods.cs:143:13:143:43 | ...; | @@ -10424,7 +10708,8 @@ postDominance | ExitMethods.cs:145:43:145:43 | access to parameter e | ExitMethods.cs:145:13:145:44 | Before call to method Capture | | Extensions.cs:5:23:5:29 | Exit | Extensions.cs:5:23:5:29 | Normal Exit | | Extensions.cs:5:23:5:29 | Normal Exit | Extensions.cs:7:9:7:30 | return ...; | -| Extensions.cs:6:5:8:5 | {...} | Extensions.cs:5:23:5:29 | Entry | +| Extensions.cs:5:43:5:43 | s | Extensions.cs:5:23:5:29 | Entry | +| Extensions.cs:6:5:8:5 | {...} | Extensions.cs:5:43:5:43 | s | | Extensions.cs:7:9:7:30 | Before return ...; | Extensions.cs:6:5:8:5 | {...} | | Extensions.cs:7:9:7:30 | return ...; | Extensions.cs:7:16:7:29 | After call to method Parse | | Extensions.cs:7:16:7:29 | After call to method Parse | Extensions.cs:7:16:7:29 | call to method Parse | @@ -10433,7 +10718,9 @@ postDominance | Extensions.cs:7:28:7:28 | access to parameter s | Extensions.cs:7:16:7:29 | Before call to method Parse | | Extensions.cs:10:24:10:29 | Exit | Extensions.cs:10:24:10:29 | Normal Exit | | Extensions.cs:10:24:10:29 | Normal Exit | Extensions.cs:12:9:12:20 | return ...; | -| Extensions.cs:11:5:13:5 | {...} | Extensions.cs:10:24:10:29 | Entry | +| Extensions.cs:10:43:10:43 | s | Extensions.cs:10:24:10:29 | Entry | +| Extensions.cs:10:65:10:65 | f | Extensions.cs:10:43:10:43 | s | +| Extensions.cs:11:5:13:5 | {...} | Extensions.cs:10:65:10:65 | f | | Extensions.cs:12:9:12:20 | Before return ...; | Extensions.cs:11:5:13:5 | {...} | | Extensions.cs:12:9:12:20 | return ...; | Extensions.cs:12:16:12:19 | After delegate call | | Extensions.cs:12:16:12:16 | access to parameter f | Extensions.cs:12:16:12:19 | Before delegate call | @@ -10449,8 +10736,9 @@ postDominance | Extensions.cs:15:48:15:50 | "0" | Extensions.cs:15:40:15:51 | Before call to method ToInt32 | | Extensions.cs:20:17:20:20 | Exit | Extensions.cs:20:17:20:20 | Normal Exit | | Extensions.cs:20:17:20:20 | Normal Exit | Extensions.cs:21:5:26:5 | After {...} | +| Extensions.cs:20:29:20:29 | s | Extensions.cs:20:17:20:20 | Entry | | Extensions.cs:21:5:26:5 | After {...} | Extensions.cs:25:9:25:34 | After ...; | -| Extensions.cs:21:5:26:5 | {...} | Extensions.cs:20:17:20:20 | Entry | +| Extensions.cs:21:5:26:5 | {...} | Extensions.cs:20:29:20:29 | s | | Extensions.cs:22:9:22:9 | access to parameter s | Extensions.cs:22:9:22:19 | Before call to method ToInt32 | | Extensions.cs:22:9:22:19 | After call to method ToInt32 | Extensions.cs:22:9:22:19 | call to method ToInt32 | | Extensions.cs:22:9:22:19 | Before call to method ToInt32 | Extensions.cs:22:9:22:20 | ...; | @@ -10813,8 +11101,9 @@ postDominance | Finally.cs:141:19:141:43 | object creation of type ArgumentException | Finally.cs:141:41:141:42 | "" | | Finally.cs:141:41:141:42 | "" | Finally.cs:141:19:141:43 | Before object creation of type ArgumentException | | Finally.cs:147:10:147:11 | Normal Exit | Finally.cs:148:5:170:5 | After {...} | +| Finally.cs:147:22:147:25 | args | Finally.cs:147:10:147:11 | Entry | | Finally.cs:148:5:170:5 | After {...} | Finally.cs:149:9:169:9 | After try {...} ... | -| Finally.cs:148:5:170:5 | {...} | Finally.cs:147:10:147:11 | Entry | +| Finally.cs:148:5:170:5 | {...} | Finally.cs:147:22:147:25 | args | | Finally.cs:149:9:169:9 | After try {...} ... | Finally.cs:155:9:169:9 | After {...} | | Finally.cs:149:9:169:9 | try {...} ... | Finally.cs:148:5:170:5 | {...} | | Finally.cs:150:9:153:9 | After {...} | Finally.cs:151:13:152:50 | After if (...) ... | @@ -10916,8 +11205,10 @@ postDominance | Finally.cs:174:11:174:20 | this access | Finally.cs:174:11:174:20 | Before call to method | | Finally.cs:174:11:174:20 | {...} | Finally.cs:174:11:174:20 | After call to constructor Exception | | Finally.cs:176:10:176:11 | Normal Exit | Finally.cs:177:5:193:5 | After {...} | +| Finally.cs:176:18:176:19 | b1 | Finally.cs:176:10:176:11 | Entry | +| Finally.cs:176:27:176:28 | b2 | Finally.cs:176:18:176:19 | b1 | | Finally.cs:177:5:193:5 | After {...} | Finally.cs:178:9:192:9 | After try {...} ... | -| Finally.cs:177:5:193:5 | {...} | Finally.cs:176:10:176:11 | Entry | +| Finally.cs:177:5:193:5 | {...} | Finally.cs:176:27:176:28 | b2 | | Finally.cs:178:9:192:9 | After try {...} ... | Finally.cs:183:9:192:9 | After {...} | | Finally.cs:178:9:192:9 | try {...} ... | Finally.cs:177:5:193:5 | {...} | | Finally.cs:179:9:181:9 | After {...} | Finally.cs:180:13:180:43 | After if (...) ... | @@ -10962,8 +11253,11 @@ postDominance | Finally.cs:190:31:190:46 | Before object creation of type ExceptionC | Finally.cs:190:25:190:47 | Before throw ...; | | Finally.cs:190:31:190:46 | object creation of type ExceptionC | Finally.cs:190:31:190:46 | Before object creation of type ExceptionC | | Finally.cs:195:10:195:12 | Normal Exit | Finally.cs:196:5:214:5 | After {...} | +| Finally.cs:195:19:195:20 | b1 | Finally.cs:195:10:195:12 | Entry | +| Finally.cs:195:28:195:29 | b2 | Finally.cs:195:19:195:20 | b1 | +| Finally.cs:195:37:195:38 | b3 | Finally.cs:195:28:195:29 | b2 | | Finally.cs:196:5:214:5 | After {...} | Finally.cs:213:9:213:25 | After ...; | -| Finally.cs:196:5:214:5 | {...} | Finally.cs:195:10:195:12 | Entry | +| Finally.cs:196:5:214:5 | {...} | Finally.cs:195:37:195:38 | b3 | | Finally.cs:197:9:212:9 | After try {...} ... | Finally.cs:202:9:212:9 | After {...} | | Finally.cs:197:9:212:9 | try {...} ... | Finally.cs:196:5:214:5 | {...} | | Finally.cs:198:9:200:9 | After {...} | Finally.cs:199:13:199:43 | After if (...) ... | @@ -11061,8 +11355,10 @@ postDominance | Finally.cs:230:9:230:34 | After ...; | Finally.cs:230:9:230:33 | After call to method WriteLine | | Finally.cs:230:27:230:32 | "Done" | Finally.cs:230:9:230:33 | Before call to method WriteLine | | Finally.cs:233:10:233:12 | Normal Exit | Finally.cs:234:5:261:5 | After {...} | +| Finally.cs:233:19:233:20 | b1 | Finally.cs:233:10:233:12 | Entry | +| Finally.cs:233:28:233:29 | b2 | Finally.cs:233:19:233:20 | b1 | | Finally.cs:234:5:261:5 | After {...} | Finally.cs:260:9:260:34 | After ...; | -| Finally.cs:234:5:261:5 | {...} | Finally.cs:233:10:233:12 | Entry | +| Finally.cs:234:5:261:5 | {...} | Finally.cs:233:28:233:29 | b2 | | Finally.cs:235:9:259:9 | After try {...} ... | Finally.cs:257:9:259:9 | After {...} | | Finally.cs:235:9:259:9 | try {...} ... | Finally.cs:234:5:261:5 | {...} | | Finally.cs:236:9:255:9 | After {...} | Finally.cs:254:13:254:45 | After ...; | @@ -11124,8 +11420,9 @@ postDominance | Finally.cs:260:9:260:34 | After ...; | Finally.cs:260:9:260:33 | After call to method WriteLine | | Finally.cs:260:27:260:32 | "Done" | Finally.cs:260:9:260:33 | Before call to method WriteLine | | Finally.cs:263:10:263:12 | Normal Exit | Finally.cs:264:5:274:5 | After {...} | +| Finally.cs:263:18:263:18 | i | Finally.cs:263:10:263:12 | Entry | | Finally.cs:264:5:274:5 | After {...} | Finally.cs:265:9:273:9 | After try {...} ... | -| Finally.cs:264:5:274:5 | {...} | Finally.cs:263:10:263:12 | Entry | +| Finally.cs:264:5:274:5 | {...} | Finally.cs:263:18:263:18 | i | | Finally.cs:265:9:273:9 | After try {...} ... | Finally.cs:270:9:273:9 | After {...} | | Finally.cs:265:9:273:9 | try {...} ... | Finally.cs:264:5:274:5 | {...} | | Finally.cs:266:9:268:9 | After {...} | Finally.cs:267:13:267:35 | After ...; | @@ -11163,8 +11460,9 @@ postDominance | Foreach.cs:4:7:4:13 | {...} | Foreach.cs:4:7:4:13 | After call to constructor Object | | Foreach.cs:6:10:6:11 | Exit | Foreach.cs:6:10:6:11 | Normal Exit | | Foreach.cs:6:10:6:11 | Normal Exit | Foreach.cs:7:5:10:5 | After {...} | +| Foreach.cs:6:22:6:25 | args | Foreach.cs:6:10:6:11 | Entry | | Foreach.cs:7:5:10:5 | After {...} | Foreach.cs:8:9:9:13 | After foreach (... ... in ...) ... | -| Foreach.cs:7:5:10:5 | {...} | Foreach.cs:6:10:6:11 | Entry | +| Foreach.cs:7:5:10:5 | {...} | Foreach.cs:6:22:6:25 | args | | Foreach.cs:8:9:9:13 | After foreach (... ... in ...) ... | Foreach.cs:8:9:9:13 | [LoopHeader] foreach (... ... in ...) ... | | Foreach.cs:8:9:9:13 | After foreach (... ... in ...) ... | Foreach.cs:8:29:8:32 | After access to parameter args [empty] | | Foreach.cs:8:9:9:13 | [LoopHeader] foreach (... ... in ...) ... | Foreach.cs:9:13:9:13 | ; | @@ -11174,8 +11472,9 @@ postDominance | Foreach.cs:9:13:9:13 | ; | Foreach.cs:8:22:8:24 | String arg | | Foreach.cs:12:10:12:11 | Exit | Foreach.cs:12:10:12:11 | Normal Exit | | Foreach.cs:12:10:12:11 | Normal Exit | Foreach.cs:13:5:16:5 | After {...} | +| Foreach.cs:12:22:12:25 | args | Foreach.cs:12:10:12:11 | Entry | | Foreach.cs:13:5:16:5 | After {...} | Foreach.cs:14:9:15:13 | After foreach (... ... in ...) ... | -| Foreach.cs:13:5:16:5 | {...} | Foreach.cs:12:10:12:11 | Entry | +| Foreach.cs:13:5:16:5 | {...} | Foreach.cs:12:22:12:25 | args | | Foreach.cs:14:9:15:13 | After foreach (... ... in ...) ... | Foreach.cs:14:9:15:13 | [LoopHeader] foreach (... ... in ...) ... | | Foreach.cs:14:9:15:13 | After foreach (... ... in ...) ... | Foreach.cs:14:27:14:30 | After access to parameter args [empty] | | Foreach.cs:14:9:15:13 | [LoopHeader] foreach (... ... in ...) ... | Foreach.cs:15:13:15:13 | ; | @@ -11185,8 +11484,9 @@ postDominance | Foreach.cs:15:13:15:13 | ; | Foreach.cs:14:22:14:22 | String _ | | Foreach.cs:18:10:18:11 | Exit | Foreach.cs:18:10:18:11 | Normal Exit | | Foreach.cs:18:10:18:11 | Normal Exit | Foreach.cs:19:5:22:5 | After {...} | +| Foreach.cs:18:33:18:33 | e | Foreach.cs:18:10:18:11 | Entry | | Foreach.cs:19:5:22:5 | After {...} | Foreach.cs:20:9:21:11 | After foreach (... ... in ...) ... | -| Foreach.cs:19:5:22:5 | {...} | Foreach.cs:18:10:18:11 | Entry | +| Foreach.cs:19:5:22:5 | {...} | Foreach.cs:18:33:18:33 | e | | Foreach.cs:20:9:21:11 | After foreach (... ... in ...) ... | Foreach.cs:20:9:21:11 | [LoopHeader] foreach (... ... in ...) ... | | Foreach.cs:20:9:21:11 | After foreach (... ... in ...) ... | Foreach.cs:20:27:20:68 | After ... ?? ... [empty] | | Foreach.cs:20:9:21:11 | [LoopHeader] foreach (... ... in ...) ... | Foreach.cs:21:11:21:11 | ; | @@ -11204,8 +11504,9 @@ postDominance | Foreach.cs:21:11:21:11 | ; | Foreach.cs:20:22:20:22 | String x | | Foreach.cs:24:10:24:11 | Exit | Foreach.cs:24:10:24:11 | Normal Exit | | Foreach.cs:24:10:24:11 | Normal Exit | Foreach.cs:25:5:28:5 | After {...} | +| Foreach.cs:24:40:24:43 | args | Foreach.cs:24:10:24:11 | Entry | | Foreach.cs:25:5:28:5 | After {...} | Foreach.cs:26:9:27:11 | After foreach (... ... in ...) ... | -| Foreach.cs:25:5:28:5 | {...} | Foreach.cs:24:10:24:11 | Entry | +| Foreach.cs:25:5:28:5 | {...} | Foreach.cs:24:40:24:43 | args | | Foreach.cs:26:9:27:11 | After foreach (... ... in ...) ... | Foreach.cs:26:9:27:11 | [LoopHeader] foreach (... ... in ...) ... | | Foreach.cs:26:9:27:11 | After foreach (... ... in ...) ... | Foreach.cs:26:36:26:39 | After access to parameter args [empty] | | Foreach.cs:26:9:27:11 | [LoopHeader] foreach (... ... in ...) ... | Foreach.cs:27:11:27:11 | ; | @@ -11219,8 +11520,9 @@ postDominance | Foreach.cs:27:11:27:11 | ; | Foreach.cs:26:18:26:31 | After (..., ...) | | Foreach.cs:30:10:30:11 | Exit | Foreach.cs:30:10:30:11 | Normal Exit | | Foreach.cs:30:10:30:11 | Normal Exit | Foreach.cs:31:5:34:5 | After {...} | +| Foreach.cs:30:40:30:43 | args | Foreach.cs:30:10:30:11 | Entry | | Foreach.cs:31:5:34:5 | After {...} | Foreach.cs:32:9:33:11 | After foreach (... ... in ...) ... | -| Foreach.cs:31:5:34:5 | {...} | Foreach.cs:30:10:30:11 | Entry | +| Foreach.cs:31:5:34:5 | {...} | Foreach.cs:30:40:30:43 | args | | Foreach.cs:32:9:33:11 | After foreach (... ... in ...) ... | Foreach.cs:32:9:33:11 | [LoopHeader] foreach (... ... in ...) ... | | Foreach.cs:32:9:33:11 | After foreach (... ... in ...) ... | Foreach.cs:32:32:32:35 | After access to parameter args [empty] | | Foreach.cs:32:9:33:11 | [LoopHeader] foreach (... ... in ...) ... | Foreach.cs:33:11:33:11 | ; | @@ -11234,8 +11536,9 @@ postDominance | Foreach.cs:33:11:33:11 | ; | Foreach.cs:32:18:32:27 | After (..., ...) | | Foreach.cs:36:10:36:11 | Exit | Foreach.cs:36:10:36:11 | Normal Exit | | Foreach.cs:36:10:36:11 | Normal Exit | Foreach.cs:37:5:40:5 | After {...} | +| Foreach.cs:36:40:36:43 | args | Foreach.cs:36:10:36:11 | Entry | | Foreach.cs:37:5:40:5 | After {...} | Foreach.cs:38:9:39:11 | After foreach (... ... in ...) ... | -| Foreach.cs:37:5:40:5 | {...} | Foreach.cs:36:10:36:11 | Entry | +| Foreach.cs:37:5:40:5 | {...} | Foreach.cs:36:40:36:43 | args | | Foreach.cs:38:9:39:11 | After foreach (... ... in ...) ... | Foreach.cs:38:9:39:11 | [LoopHeader] foreach (... ... in ...) ... | | Foreach.cs:38:9:39:11 | After foreach (... ... in ...) ... | Foreach.cs:38:39:38:42 | After access to parameter args [empty] | | Foreach.cs:38:9:39:11 | [LoopHeader] foreach (... ... in ...) ... | Foreach.cs:39:11:39:11 | ; | @@ -11289,12 +11592,13 @@ postDominance | Initializers.cs:10:5:10:16 | After call to constructor Object | Initializers.cs:10:5:10:16 | call to constructor Object | | Initializers.cs:10:5:10:16 | After call to method | Initializers.cs:10:5:10:16 | call to method | | Initializers.cs:10:5:10:16 | Before call to constructor Object | Initializers.cs:10:5:10:16 | After call to method | -| Initializers.cs:10:5:10:16 | Before call to method | Initializers.cs:10:5:10:16 | Entry | +| Initializers.cs:10:5:10:16 | Before call to method | Initializers.cs:10:25:10:25 | s | | Initializers.cs:10:5:10:16 | Exit | Initializers.cs:10:5:10:16 | Normal Exit | | Initializers.cs:10:5:10:16 | Normal Exit | Initializers.cs:10:28:10:30 | {...} | | Initializers.cs:10:5:10:16 | call to constructor Object | Initializers.cs:10:5:10:16 | Before call to constructor Object | | Initializers.cs:10:5:10:16 | call to method | Initializers.cs:10:5:10:16 | this access | | Initializers.cs:10:5:10:16 | this access | Initializers.cs:10:5:10:16 | Before call to method | +| Initializers.cs:10:25:10:25 | s | Initializers.cs:10:5:10:16 | Entry | | Initializers.cs:10:28:10:30 | {...} | Initializers.cs:10:5:10:16 | After call to constructor Object | | Initializers.cs:12:10:12:10 | Exit | Initializers.cs:12:10:12:10 | Normal Exit | | Initializers.cs:12:10:12:10 | Normal Exit | Initializers.cs:13:5:16:5 | After {...} | @@ -11409,8 +11713,9 @@ postDominance | Initializers.cs:31:30:31:30 | 3 | Initializers.cs:31:26:31:26 | After access to field I | | Initializers.cs:33:9:33:11 | Exit | Initializers.cs:33:9:33:11 | Normal Exit | | Initializers.cs:33:9:33:11 | Normal Exit | Initializers.cs:33:29:33:38 | After {...} | +| Initializers.cs:33:17:33:17 | i | Initializers.cs:33:9:33:11 | Entry | | Initializers.cs:33:22:33:25 | After call to constructor Sub | Initializers.cs:33:22:33:25 | call to constructor Sub | -| Initializers.cs:33:22:33:25 | Before call to constructor Sub | Initializers.cs:33:9:33:11 | Entry | +| Initializers.cs:33:22:33:25 | Before call to constructor Sub | Initializers.cs:33:17:33:17 | i | | Initializers.cs:33:22:33:25 | call to constructor Sub | Initializers.cs:33:22:33:25 | Before call to constructor Sub | | Initializers.cs:33:29:33:38 | After {...} | Initializers.cs:33:31:33:36 | After ...; | | Initializers.cs:33:29:33:38 | {...} | Initializers.cs:33:22:33:25 | After call to constructor Sub | @@ -11427,12 +11732,14 @@ postDominance | Initializers.cs:35:9:35:11 | After call to constructor NoConstructor | Initializers.cs:35:9:35:11 | call to constructor NoConstructor | | Initializers.cs:35:9:35:11 | After call to method | Initializers.cs:35:9:35:11 | call to method | | Initializers.cs:35:9:35:11 | Before call to constructor NoConstructor | Initializers.cs:35:9:35:11 | After call to method | -| Initializers.cs:35:9:35:11 | Before call to method | Initializers.cs:35:9:35:11 | Entry | +| Initializers.cs:35:9:35:11 | Before call to method | Initializers.cs:35:24:35:24 | j | | Initializers.cs:35:9:35:11 | Exit | Initializers.cs:35:9:35:11 | Normal Exit | | Initializers.cs:35:9:35:11 | Normal Exit | Initializers.cs:35:27:35:40 | After {...} | | Initializers.cs:35:9:35:11 | call to constructor NoConstructor | Initializers.cs:35:9:35:11 | Before call to constructor NoConstructor | | Initializers.cs:35:9:35:11 | call to method | Initializers.cs:35:9:35:11 | this access | | Initializers.cs:35:9:35:11 | this access | Initializers.cs:35:9:35:11 | Before call to method | +| Initializers.cs:35:17:35:17 | i | Initializers.cs:35:9:35:11 | Entry | +| Initializers.cs:35:24:35:24 | j | Initializers.cs:35:17:35:17 | i | | Initializers.cs:35:27:35:40 | After {...} | Initializers.cs:35:29:35:38 | After ...; | | Initializers.cs:35:27:35:40 | {...} | Initializers.cs:35:9:35:11 | After call to constructor NoConstructor | | Initializers.cs:35:29:35:29 | After access to field I | Initializers.cs:35:29:35:29 | access to field I | @@ -11471,8 +11778,9 @@ postDominance | Initializers.cs:41:11:41:18 | {...} | Initializers.cs:41:11:41:18 | After call to constructor Object | | Initializers.cs:51:10:51:13 | Exit | Initializers.cs:51:10:51:13 | Normal Exit | | Initializers.cs:51:10:51:13 | Normal Exit | Initializers.cs:52:5:66:5 | After {...} | +| Initializers.cs:51:19:51:19 | i | Initializers.cs:51:10:51:13 | Entry | | Initializers.cs:52:5:66:5 | After {...} | Initializers.cs:57:9:65:10 | After ... ...; | -| Initializers.cs:52:5:66:5 | {...} | Initializers.cs:51:10:51:13 | Entry | +| Initializers.cs:52:5:66:5 | {...} | Initializers.cs:51:19:51:19 | i | | Initializers.cs:54:9:54:96 | ... ...; | Initializers.cs:52:5:66:5 | {...} | | Initializers.cs:54:9:54:96 | After ... ...; | Initializers.cs:54:13:54:95 | After Dictionary dict = ... | | Initializers.cs:54:13:54:16 | access to local variable dict | Initializers.cs:54:13:54:95 | Before Dictionary dict = ... | @@ -11726,8 +12034,9 @@ postDominance | LoopUnrolling.cs:7:10:7:11 | Exit | LoopUnrolling.cs:7:10:7:11 | Normal Exit | | LoopUnrolling.cs:7:10:7:11 | Normal Exit | LoopUnrolling.cs:8:5:13:5 | After {...} | | LoopUnrolling.cs:7:10:7:11 | Normal Exit | LoopUnrolling.cs:10:13:10:19 | return ...; | +| LoopUnrolling.cs:7:22:7:25 | args | LoopUnrolling.cs:7:10:7:11 | Entry | | LoopUnrolling.cs:8:5:13:5 | After {...} | LoopUnrolling.cs:11:9:12:35 | After foreach (... ... in ...) ... | -| LoopUnrolling.cs:8:5:13:5 | {...} | LoopUnrolling.cs:7:10:7:11 | Entry | +| LoopUnrolling.cs:8:5:13:5 | {...} | LoopUnrolling.cs:7:22:7:25 | args | | LoopUnrolling.cs:9:9:10:19 | After if (...) ... | LoopUnrolling.cs:9:13:9:28 | After ... == ... [false] | | LoopUnrolling.cs:9:9:10:19 | if (...) ... | LoopUnrolling.cs:8:5:13:5 | {...} | | LoopUnrolling.cs:9:13:9:16 | access to parameter args | LoopUnrolling.cs:9:13:9:23 | Before access to property Length | @@ -11785,8 +12094,9 @@ postDominance | LoopUnrolling.cs:19:31:19:31 | access to local variable x | LoopUnrolling.cs:19:13:19:32 | Before call to method WriteLine | | LoopUnrolling.cs:22:10:22:11 | Exit | LoopUnrolling.cs:22:10:22:11 | Normal Exit | | LoopUnrolling.cs:22:10:22:11 | Normal Exit | LoopUnrolling.cs:23:5:27:5 | After {...} | +| LoopUnrolling.cs:22:20:22:23 | args | LoopUnrolling.cs:22:10:22:11 | Entry | | LoopUnrolling.cs:23:5:27:5 | After {...} | LoopUnrolling.cs:24:9:26:40 | After foreach (... ... in ...) ... | -| LoopUnrolling.cs:23:5:27:5 | {...} | LoopUnrolling.cs:22:10:22:11 | Entry | +| LoopUnrolling.cs:23:5:27:5 | {...} | LoopUnrolling.cs:22:20:22:23 | args | | LoopUnrolling.cs:24:9:26:40 | After foreach (... ... in ...) ... | LoopUnrolling.cs:24:9:26:40 | [LoopHeader] foreach (... ... in ...) ... | | LoopUnrolling.cs:24:9:26:40 | After foreach (... ... in ...) ... | LoopUnrolling.cs:24:29:24:32 | After access to parameter args [empty] | | LoopUnrolling.cs:24:9:26:40 | [LoopHeader] foreach (... ... in ...) ... | LoopUnrolling.cs:25:13:26:40 | After foreach (... ... in ...) ... | @@ -11925,8 +12235,9 @@ postDominance | LoopUnrolling.cs:51:13:51:23 | goto ...; | LoopUnrolling.cs:51:13:51:23 | Before goto ...; | | LoopUnrolling.cs:55:10:55:11 | Exit | LoopUnrolling.cs:55:10:55:11 | Normal Exit | | LoopUnrolling.cs:55:10:55:11 | Normal Exit | LoopUnrolling.cs:56:5:65:5 | After {...} | +| LoopUnrolling.cs:55:18:55:18 | b | LoopUnrolling.cs:55:10:55:11 | Entry | | LoopUnrolling.cs:56:5:65:5 | After {...} | LoopUnrolling.cs:58:9:64:9 | After foreach (... ... in ...) ... | -| LoopUnrolling.cs:56:5:65:5 | {...} | LoopUnrolling.cs:55:10:55:11 | Entry | +| LoopUnrolling.cs:56:5:65:5 | {...} | LoopUnrolling.cs:55:18:55:18 | b | | LoopUnrolling.cs:57:9:57:48 | ... ...; | LoopUnrolling.cs:56:5:65:5 | {...} | | LoopUnrolling.cs:57:9:57:48 | After ... ...; | LoopUnrolling.cs:57:13:57:47 | After String[] xs = ... | | LoopUnrolling.cs:57:13:57:14 | access to local variable xs | LoopUnrolling.cs:57:13:57:47 | Before String[] xs = ... | @@ -11974,8 +12285,9 @@ postDominance | LoopUnrolling.cs:67:10:67:11 | Exit | LoopUnrolling.cs:67:10:67:11 | Normal Exit | | LoopUnrolling.cs:67:10:67:11 | Normal Exit | LoopUnrolling.cs:68:5:74:5 | After {...} | | LoopUnrolling.cs:67:10:67:11 | Normal Exit | LoopUnrolling.cs:70:13:70:19 | return ...; | +| LoopUnrolling.cs:67:26:67:29 | args | LoopUnrolling.cs:67:10:67:11 | Entry | | LoopUnrolling.cs:68:5:74:5 | After {...} | LoopUnrolling.cs:72:9:73:35 | After foreach (... ... in ...) ... | -| LoopUnrolling.cs:68:5:74:5 | {...} | LoopUnrolling.cs:67:10:67:11 | Entry | +| LoopUnrolling.cs:68:5:74:5 | {...} | LoopUnrolling.cs:67:26:67:29 | args | | LoopUnrolling.cs:69:9:70:19 | After if (...) ... | LoopUnrolling.cs:69:13:69:23 | After !... [false] | | LoopUnrolling.cs:69:9:70:19 | if (...) ... | LoopUnrolling.cs:68:5:74:5 | {...} | | LoopUnrolling.cs:69:13:69:23 | !... | LoopUnrolling.cs:69:9:70:19 | if (...) ... | @@ -12112,6 +12424,7 @@ postDominance | MultiImplementationA.cs:7:33:7:36 | null | MultiImplementationA.cs:7:27:7:37 | Before throw ...; | | MultiImplementationA.cs:7:41:7:43 | Exceptional Exit | MultiImplementationA.cs:7:47:7:57 | throw ...; | | MultiImplementationA.cs:7:41:7:43 | Normal Exit | MultiImplementationB.cs:4:43:4:45 | {...} | +| MultiImplementationA.cs:7:41:7:43 | value | MultiImplementationA.cs:7:41:7:43 | Entry | | MultiImplementationA.cs:7:47:7:57 | Before throw ...; | MultiImplementationA.cs:7:45:7:59 | {...} | | MultiImplementationA.cs:7:47:7:57 | throw ...; | MultiImplementationA.cs:7:53:7:56 | null | | MultiImplementationA.cs:7:53:7:56 | null | MultiImplementationA.cs:7:47:7:57 | Before throw ...; | @@ -12129,21 +12442,26 @@ postDominance | MultiImplementationA.cs:13:16:13:20 | ... = ... | MultiImplementationA.cs:13:20:13:20 | 0 | | MultiImplementationA.cs:13:16:13:20 | After ... = ... | MultiImplementationA.cs:13:16:13:20 | ... = ... | | MultiImplementationA.cs:13:20:13:20 | 0 | MultiImplementationA.cs:13:16:13:16 | After access to field F | +| MultiImplementationA.cs:14:25:14:25 | i | MultiImplementationA.cs:14:31:14:31 | Entry | | MultiImplementationA.cs:14:31:14:31 | Exceptional Exit | MultiImplementationB.cs:12:31:12:40 | throw ... | | MultiImplementationA.cs:14:31:14:31 | Normal Exit | MultiImplementationA.cs:14:31:14:31 | access to parameter i | -| MultiImplementationA.cs:14:31:14:31 | access to parameter i | MultiImplementationA.cs:14:31:14:31 | Entry | +| MultiImplementationA.cs:14:31:14:31 | access to parameter i | MultiImplementationA.cs:14:25:14:25 | i | +| MultiImplementationA.cs:15:31:15:31 | s | MultiImplementationA.cs:15:36:15:38 | Entry | +| MultiImplementationA.cs:15:31:15:31 | s | MultiImplementationA.cs:15:54:15:56 | Entry | | MultiImplementationA.cs:15:36:15:38 | Exceptional Exit | MultiImplementationB.cs:13:42:13:52 | throw ...; | | MultiImplementationA.cs:15:36:15:38 | Normal Exit | MultiImplementationA.cs:15:42:15:50 | return ...; | -| MultiImplementationA.cs:15:40:15:52 | {...} | MultiImplementationA.cs:15:36:15:38 | Entry | +| MultiImplementationA.cs:15:40:15:52 | {...} | MultiImplementationA.cs:15:31:15:31 | s | | MultiImplementationA.cs:15:42:15:50 | Before return ...; | MultiImplementationA.cs:15:40:15:52 | {...} | | MultiImplementationA.cs:15:42:15:50 | return ...; | MultiImplementationA.cs:15:49:15:49 | access to parameter s | | MultiImplementationA.cs:15:49:15:49 | access to parameter s | MultiImplementationA.cs:15:42:15:50 | Before return ...; | | MultiImplementationA.cs:15:54:15:56 | Exit | MultiImplementationA.cs:15:54:15:56 | Normal Exit | | MultiImplementationA.cs:15:54:15:56 | Normal Exit | MultiImplementationA.cs:15:58:15:60 | {...} | | MultiImplementationA.cs:15:54:15:56 | Normal Exit | MultiImplementationB.cs:13:60:13:62 | {...} | +| MultiImplementationA.cs:15:54:15:56 | value | MultiImplementationA.cs:15:31:15:31 | s | | MultiImplementationA.cs:16:17:16:18 | Exit | MultiImplementationA.cs:16:17:16:18 | Normal Exit | | MultiImplementationA.cs:16:17:16:18 | Normal Exit | MultiImplementationA.cs:17:5:19:5 | After {...} | | MultiImplementationA.cs:16:17:16:18 | Normal Exit | MultiImplementationB.cs:15:5:17:5 | After {...} | +| MultiImplementationA.cs:16:24:16:24 | i | MultiImplementationA.cs:16:17:16:18 | Entry | | MultiImplementationA.cs:17:5:19:5 | After {...} | MultiImplementationA.cs:18:9:18:22 | M2(...) | | MultiImplementationA.cs:18:9:18:22 | Exit | MultiImplementationA.cs:18:9:18:22 | Normal Exit | | MultiImplementationA.cs:18:9:18:22 | M2(...) | MultiImplementationA.cs:17:5:19:5 | {...} | @@ -12152,12 +12470,13 @@ postDominance | MultiImplementationA.cs:20:12:20:13 | After call to constructor Object | MultiImplementationA.cs:20:12:20:13 | call to constructor Object | | MultiImplementationA.cs:20:12:20:13 | After call to method | MultiImplementationA.cs:20:12:20:13 | call to method | | MultiImplementationA.cs:20:12:20:13 | Before call to constructor Object | MultiImplementationA.cs:20:12:20:13 | After call to method | -| MultiImplementationA.cs:20:12:20:13 | Before call to method | MultiImplementationA.cs:20:12:20:13 | Entry | +| MultiImplementationA.cs:20:12:20:13 | Before call to method | MultiImplementationA.cs:20:19:20:19 | i | | MultiImplementationA.cs:20:12:20:13 | Exceptional Exit | MultiImplementationB.cs:18:24:18:34 | throw ...; | | MultiImplementationA.cs:20:12:20:13 | Normal Exit | MultiImplementationA.cs:20:22:20:31 | After {...} | | MultiImplementationA.cs:20:12:20:13 | call to constructor Object | MultiImplementationA.cs:20:12:20:13 | Before call to constructor Object | | MultiImplementationA.cs:20:12:20:13 | call to method | MultiImplementationA.cs:20:12:20:13 | this access | | MultiImplementationA.cs:20:12:20:13 | this access | MultiImplementationA.cs:20:12:20:13 | Before call to method | +| MultiImplementationA.cs:20:19:20:19 | i | MultiImplementationA.cs:20:12:20:13 | Entry | | MultiImplementationA.cs:20:22:20:31 | After {...} | MultiImplementationA.cs:20:24:20:29 | After ...; | | MultiImplementationA.cs:20:22:20:31 | {...} | MultiImplementationA.cs:20:12:20:13 | After call to constructor Object | | MultiImplementationA.cs:20:24:20:24 | After access to field F | MultiImplementationA.cs:20:24:20:24 | access to field F | @@ -12182,7 +12501,8 @@ postDominance | MultiImplementationA.cs:22:11:22:13 | {...} | MultiImplementationA.cs:22:6:22:7 | Entry | | MultiImplementationA.cs:23:28:23:35 | Exceptional Exit | MultiImplementationB.cs:21:50:21:59 | throw ... | | MultiImplementationA.cs:23:28:23:35 | Normal Exit | MultiImplementationA.cs:23:50:23:53 | null | -| MultiImplementationA.cs:23:50:23:53 | null | MultiImplementationA.cs:23:28:23:35 | Entry | +| MultiImplementationA.cs:23:44:23:44 | i | MultiImplementationA.cs:23:28:23:35 | Entry | +| MultiImplementationA.cs:23:50:23:53 | null | MultiImplementationA.cs:23:44:23:44 | i | | MultiImplementationA.cs:24:16:24:16 | After access to property P | MultiImplementationA.cs:24:16:24:16 | access to property P | | MultiImplementationA.cs:24:16:24:16 | Before access to property P | MultiImplementationA.cs:24:32:24:34 | Before ... = ... | | MultiImplementationA.cs:24:16:24:16 | access to property P | MultiImplementationA.cs:24:16:24:16 | this access | @@ -12239,7 +12559,7 @@ postDominance | MultiImplementationB.cs:4:27:4:35 | Before return ...; | MultiImplementationB.cs:4:25:4:37 | {...} | | MultiImplementationB.cs:4:27:4:35 | return ...; | MultiImplementationB.cs:4:34:4:34 | 1 | | MultiImplementationB.cs:4:34:4:34 | 1 | MultiImplementationB.cs:4:27:4:35 | Before return ...; | -| MultiImplementationB.cs:4:43:4:45 | {...} | MultiImplementationA.cs:7:41:7:43 | Entry | +| MultiImplementationB.cs:4:43:4:45 | {...} | MultiImplementationA.cs:7:41:7:43 | value | | MultiImplementationB.cs:5:23:5:23 | 2 | MultiImplementationA.cs:8:16:8:16 | Entry | | MultiImplementationB.cs:11:16:11:16 | After access to field F | MultiImplementationB.cs:11:16:11:16 | access to field F | | MultiImplementationB.cs:11:16:11:16 | Before access to field F | MultiImplementationB.cs:11:16:11:20 | Before ... = ... | @@ -12314,14 +12634,16 @@ postDominance | NullCoalescing.cs:1:7:1:20 | {...} | NullCoalescing.cs:1:7:1:20 | After call to constructor Object | | NullCoalescing.cs:3:9:3:10 | Exit | NullCoalescing.cs:3:9:3:10 | Normal Exit | | NullCoalescing.cs:3:9:3:10 | Normal Exit | NullCoalescing.cs:3:23:3:28 | After ... ?? ... | +| NullCoalescing.cs:3:17:3:17 | i | NullCoalescing.cs:3:9:3:10 | Entry | | NullCoalescing.cs:3:23:3:23 | access to parameter i | NullCoalescing.cs:3:23:3:28 | ... ?? ... | -| NullCoalescing.cs:3:23:3:28 | ... ?? ... | NullCoalescing.cs:3:9:3:10 | Entry | +| NullCoalescing.cs:3:23:3:28 | ... ?? ... | NullCoalescing.cs:3:17:3:17 | i | | NullCoalescing.cs:3:23:3:28 | After ... ?? ... | NullCoalescing.cs:3:23:3:23 | After access to parameter i [non-null] | | NullCoalescing.cs:3:23:3:28 | After ... ?? ... | NullCoalescing.cs:3:28:3:28 | 0 | | NullCoalescing.cs:3:28:3:28 | 0 | NullCoalescing.cs:3:23:3:23 | After access to parameter i [null] | | NullCoalescing.cs:5:9:5:10 | Exit | NullCoalescing.cs:5:9:5:10 | Normal Exit | | NullCoalescing.cs:5:9:5:10 | Normal Exit | NullCoalescing.cs:5:24:5:43 | After ... ? ... : ... | -| NullCoalescing.cs:5:24:5:43 | ... ? ... : ... | NullCoalescing.cs:5:9:5:10 | Entry | +| NullCoalescing.cs:5:18:5:18 | b | NullCoalescing.cs:5:9:5:10 | Entry | +| NullCoalescing.cs:5:24:5:43 | ... ? ... : ... | NullCoalescing.cs:5:18:5:18 | b | | NullCoalescing.cs:5:24:5:43 | After ... ? ... : ... | NullCoalescing.cs:5:39:5:39 | 0 | | NullCoalescing.cs:5:24:5:43 | After ... ? ... : ... | NullCoalescing.cs:5:43:5:43 | 1 | | NullCoalescing.cs:5:25:5:25 | access to parameter b | NullCoalescing.cs:5:25:5:34 | ... ?? ... | @@ -12333,8 +12655,10 @@ postDominance | NullCoalescing.cs:5:43:5:43 | 1 | NullCoalescing.cs:5:25:5:34 | After ... ?? ... [false] | | NullCoalescing.cs:7:12:7:13 | Exit | NullCoalescing.cs:7:12:7:13 | Normal Exit | | NullCoalescing.cs:7:12:7:13 | Normal Exit | NullCoalescing.cs:7:40:7:53 | After ... ?? ... | +| NullCoalescing.cs:7:22:7:23 | s1 | NullCoalescing.cs:7:12:7:13 | Entry | +| NullCoalescing.cs:7:33:7:34 | s2 | NullCoalescing.cs:7:22:7:23 | s1 | | NullCoalescing.cs:7:40:7:41 | access to parameter s1 | NullCoalescing.cs:7:40:7:53 | ... ?? ... | -| NullCoalescing.cs:7:40:7:53 | ... ?? ... | NullCoalescing.cs:7:12:7:13 | Entry | +| NullCoalescing.cs:7:40:7:53 | ... ?? ... | NullCoalescing.cs:7:33:7:34 | s2 | | NullCoalescing.cs:7:40:7:53 | After ... ?? ... | NullCoalescing.cs:7:40:7:41 | After access to parameter s1 [non-null] | | NullCoalescing.cs:7:40:7:53 | After ... ?? ... | NullCoalescing.cs:7:46:7:53 | After ... ?? ... | | NullCoalescing.cs:7:46:7:47 | access to parameter s2 | NullCoalescing.cs:7:46:7:53 | ... ?? ... | @@ -12344,7 +12668,9 @@ postDominance | NullCoalescing.cs:7:52:7:53 | "" | NullCoalescing.cs:7:46:7:47 | After access to parameter s2 [null] | | NullCoalescing.cs:9:12:9:13 | Exit | NullCoalescing.cs:9:12:9:13 | Normal Exit | | NullCoalescing.cs:9:12:9:13 | Normal Exit | NullCoalescing.cs:9:36:9:58 | After ... ?? ... | -| NullCoalescing.cs:9:36:9:58 | ... ?? ... | NullCoalescing.cs:9:12:9:13 | Entry | +| NullCoalescing.cs:9:20:9:20 | b | NullCoalescing.cs:9:12:9:13 | Entry | +| NullCoalescing.cs:9:30:9:30 | s | NullCoalescing.cs:9:20:9:20 | b | +| NullCoalescing.cs:9:36:9:58 | ... ?? ... | NullCoalescing.cs:9:30:9:30 | s | | NullCoalescing.cs:9:36:9:58 | After ... ?? ... | NullCoalescing.cs:9:37:9:45 | After ... ? ... : ... [non-null] | | NullCoalescing.cs:9:36:9:58 | After ... ?? ... | NullCoalescing.cs:9:51:9:58 | After ... ?? ... | | NullCoalescing.cs:9:37:9:37 | access to parameter b | NullCoalescing.cs:9:37:9:45 | ... ? ... : ... | @@ -12362,7 +12688,10 @@ postDominance | NullCoalescing.cs:9:57:9:58 | "" | NullCoalescing.cs:9:51:9:52 | After "" [null] | | NullCoalescing.cs:11:9:11:10 | Exit | NullCoalescing.cs:11:9:11:10 | Normal Exit | | NullCoalescing.cs:11:9:11:10 | Normal Exit | NullCoalescing.cs:11:43:11:68 | After ... ? ... : ... | -| NullCoalescing.cs:11:43:11:68 | ... ? ... : ... | NullCoalescing.cs:11:9:11:10 | Entry | +| NullCoalescing.cs:11:18:11:19 | b1 | NullCoalescing.cs:11:9:11:10 | Entry | +| NullCoalescing.cs:11:27:11:28 | b2 | NullCoalescing.cs:11:18:11:19 | b1 | +| NullCoalescing.cs:11:36:11:37 | b3 | NullCoalescing.cs:11:27:11:28 | b2 | +| NullCoalescing.cs:11:43:11:68 | ... ? ... : ... | NullCoalescing.cs:11:36:11:37 | b3 | | NullCoalescing.cs:11:43:11:68 | After ... ? ... : ... | NullCoalescing.cs:11:64:11:64 | 0 | | NullCoalescing.cs:11:43:11:68 | After ... ? ... : ... | NullCoalescing.cs:11:68:11:68 | 1 | | NullCoalescing.cs:11:44:11:45 | access to parameter b1 | NullCoalescing.cs:11:44:11:59 | ... ?? ... | @@ -12379,8 +12708,9 @@ postDominance | NullCoalescing.cs:11:68:11:68 | 1 | NullCoalescing.cs:11:44:11:59 | After ... ?? ... [false] | | NullCoalescing.cs:13:10:13:11 | Exit | NullCoalescing.cs:13:10:13:11 | Normal Exit | | NullCoalescing.cs:13:10:13:11 | Normal Exit | NullCoalescing.cs:14:5:18:5 | After {...} | +| NullCoalescing.cs:13:17:13:17 | i | NullCoalescing.cs:13:10:13:11 | Entry | | NullCoalescing.cs:14:5:18:5 | After {...} | NullCoalescing.cs:17:9:17:25 | After ...; | -| NullCoalescing.cs:14:5:18:5 | {...} | NullCoalescing.cs:13:10:13:11 | Entry | +| NullCoalescing.cs:14:5:18:5 | {...} | NullCoalescing.cs:13:17:13:17 | i | | NullCoalescing.cs:15:9:15:32 | ... ...; | NullCoalescing.cs:14:5:18:5 | {...} | | NullCoalescing.cs:15:9:15:32 | After ... ...; | NullCoalescing.cs:15:13:15:31 | After Int32 j = ... | | NullCoalescing.cs:15:13:15:13 | access to local variable j | NullCoalescing.cs:15:13:15:31 | Before Int32 j = ... | @@ -12423,12 +12753,13 @@ postDominance | PartialImplementationA.cs:3:12:3:18 | After call to constructor Object | PartialImplementationA.cs:3:12:3:18 | call to constructor Object | | PartialImplementationA.cs:3:12:3:18 | After call to method | PartialImplementationA.cs:3:12:3:18 | call to method | | PartialImplementationA.cs:3:12:3:18 | Before call to constructor Object | PartialImplementationA.cs:3:12:3:18 | After call to method | -| PartialImplementationA.cs:3:12:3:18 | Before call to method | PartialImplementationA.cs:3:12:3:18 | Entry | +| PartialImplementationA.cs:3:12:3:18 | Before call to method | PartialImplementationA.cs:3:24:3:24 | i | | PartialImplementationA.cs:3:12:3:18 | Exit | PartialImplementationA.cs:3:12:3:18 | Normal Exit | | PartialImplementationA.cs:3:12:3:18 | Normal Exit | PartialImplementationA.cs:3:27:3:29 | {...} | | PartialImplementationA.cs:3:12:3:18 | call to constructor Object | PartialImplementationA.cs:3:12:3:18 | Before call to constructor Object | | PartialImplementationA.cs:3:12:3:18 | call to method | PartialImplementationA.cs:3:12:3:18 | this access | | PartialImplementationA.cs:3:12:3:18 | this access | PartialImplementationA.cs:3:12:3:18 | Before call to method | +| PartialImplementationA.cs:3:24:3:24 | i | PartialImplementationA.cs:3:12:3:18 | Entry | | PartialImplementationA.cs:3:27:3:29 | {...} | PartialImplementationA.cs:3:12:3:18 | After call to constructor Object | | PartialImplementationB.cs:3:16:3:16 | After access to field F | PartialImplementationB.cs:3:16:3:16 | access to field F | | PartialImplementationB.cs:3:16:3:16 | Before access to field F | PartialImplementationB.cs:3:16:3:20 | Before ... = ... | @@ -12619,22 +12950,24 @@ postDominance | Patterns.cs:40:17:40:17 | access to local variable o | Patterns.cs:40:9:42:9 | switch (...) {...} | | Patterns.cs:47:24:47:25 | Exit | Patterns.cs:47:24:47:25 | Normal Exit | | Patterns.cs:47:24:47:25 | Normal Exit | Patterns.cs:48:9:48:20 | After ... is ... | +| Patterns.cs:47:32:47:32 | c | Patterns.cs:47:24:47:25 | Entry | | Patterns.cs:48:9:48:9 | access to parameter c | Patterns.cs:48:9:48:20 | Before ... is ... | | Patterns.cs:48:9:48:20 | ... is ... | Patterns.cs:48:9:48:9 | access to parameter c | | Patterns.cs:48:9:48:20 | After ... is ... | Patterns.cs:48:9:48:20 | ... is ... | | Patterns.cs:48:9:48:20 | After ... is ... | Patterns.cs:48:14:48:20 | After not ... | -| Patterns.cs:48:9:48:20 | Before ... is ... | Patterns.cs:47:24:47:25 | Entry | +| Patterns.cs:48:9:48:20 | Before ... is ... | Patterns.cs:47:32:47:32 | c | | Patterns.cs:48:14:48:20 | After not ... | Patterns.cs:48:14:48:20 | not ... | | Patterns.cs:48:14:48:20 | Before not ... | Patterns.cs:48:9:48:20 | [MatchTrue] ... is ... | | Patterns.cs:48:14:48:20 | not ... | Patterns.cs:48:18:48:20 | a | | Patterns.cs:48:18:48:20 | a | Patterns.cs:48:14:48:20 | Before not ... | | Patterns.cs:50:24:50:25 | Exit | Patterns.cs:50:24:50:25 | Normal Exit | | Patterns.cs:50:24:50:25 | Normal Exit | Patterns.cs:51:9:51:39 | After ... ? ... : ... | +| Patterns.cs:50:34:50:34 | c | Patterns.cs:50:24:50:25 | Entry | | Patterns.cs:51:9:51:9 | access to parameter c | Patterns.cs:51:9:51:21 | Before ... is ... | | Patterns.cs:51:9:51:21 | ... is ... | Patterns.cs:51:9:51:9 | access to parameter c | | Patterns.cs:51:9:51:21 | After ... is ... [true] | Patterns.cs:51:14:51:21 | After not ... | | Patterns.cs:51:9:51:21 | Before ... is ... | Patterns.cs:51:9:51:39 | ... ? ... : ... | -| Patterns.cs:51:9:51:39 | ... ? ... : ... | Patterns.cs:50:24:50:25 | Entry | +| Patterns.cs:51:9:51:39 | ... ? ... : ... | Patterns.cs:50:34:50:34 | c | | Patterns.cs:51:9:51:39 | After ... ? ... : ... | Patterns.cs:51:25:51:30 | After ... is ... | | Patterns.cs:51:9:51:39 | After ... ? ... : ... | Patterns.cs:51:34:51:39 | After ... is ... | | Patterns.cs:51:14:51:21 | After not ... | Patterns.cs:51:14:51:21 | not ... | @@ -12655,11 +12988,12 @@ postDominance | Patterns.cs:51:39:51:39 | 2 | Patterns.cs:51:34:51:39 | [MatchTrue] ... is ... | | Patterns.cs:53:24:53:25 | Exit | Patterns.cs:53:24:53:25 | Normal Exit | | Patterns.cs:53:24:53:25 | Normal Exit | Patterns.cs:54:9:54:37 | After ... is ... | +| Patterns.cs:53:34:53:34 | c | Patterns.cs:53:24:53:25 | Entry | | Patterns.cs:54:9:54:9 | access to parameter c | Patterns.cs:54:9:54:37 | Before ... is ... | | Patterns.cs:54:9:54:37 | ... is ... | Patterns.cs:54:9:54:9 | access to parameter c | | Patterns.cs:54:9:54:37 | After ... is ... | Patterns.cs:54:9:54:37 | ... is ... | | Patterns.cs:54:9:54:37 | After ... is ... | Patterns.cs:54:14:54:37 | After not ... | -| Patterns.cs:54:9:54:37 | Before ... is ... | Patterns.cs:53:24:53:25 | Entry | +| Patterns.cs:54:9:54:37 | Before ... is ... | Patterns.cs:53:34:53:34 | c | | Patterns.cs:54:14:54:37 | After not ... | Patterns.cs:54:14:54:37 | not ... | | Patterns.cs:54:14:54:37 | Before not ... | Patterns.cs:54:9:54:37 | [MatchTrue] ... is ... | | Patterns.cs:54:14:54:37 | not ... | Patterns.cs:54:18:54:37 | After { ... } | @@ -12674,7 +13008,8 @@ postDominance | Patterns.cs:54:33:54:33 | 1 | Patterns.cs:54:27:54:35 | Before { ... } | | Patterns.cs:56:26:56:27 | Exit | Patterns.cs:56:26:56:27 | Normal Exit | | Patterns.cs:56:26:56:27 | Normal Exit | Patterns.cs:58:9:62:10 | return ...; | -| Patterns.cs:57:5:63:5 | {...} | Patterns.cs:56:26:56:27 | Entry | +| Patterns.cs:56:33:56:33 | i | Patterns.cs:56:26:56:27 | Entry | +| Patterns.cs:57:5:63:5 | {...} | Patterns.cs:56:33:56:33 | i | | Patterns.cs:58:9:62:10 | Before return ...; | Patterns.cs:57:5:63:5 | {...} | | Patterns.cs:58:9:62:10 | return ...; | Patterns.cs:58:16:62:9 | After ... switch { ... } | | Patterns.cs:58:16:58:16 | access to parameter i | Patterns.cs:58:16:62:9 | ... switch { ... } | @@ -12712,7 +13047,8 @@ postDominance | Patterns.cs:70:18:70:27 | "possible" | Patterns.cs:70:13:70:13 | 2 | | Patterns.cs:74:26:74:27 | Exit | Patterns.cs:74:26:74:27 | Normal Exit | | Patterns.cs:74:26:74:27 | Normal Exit | Patterns.cs:76:9:82:10 | return ...; | -| Patterns.cs:75:5:83:5 | {...} | Patterns.cs:74:26:74:27 | Entry | +| Patterns.cs:74:33:74:33 | i | Patterns.cs:74:26:74:27 | Entry | +| Patterns.cs:75:5:83:5 | {...} | Patterns.cs:74:33:74:33 | i | | Patterns.cs:76:9:82:10 | Before return ...; | Patterns.cs:75:5:83:5 | {...} | | Patterns.cs:76:9:82:10 | return ...; | Patterns.cs:76:16:82:9 | After ... switch { ... } | | Patterns.cs:76:16:76:16 | access to parameter i | Patterns.cs:76:16:82:9 | ... switch { ... } | @@ -12742,11 +13078,12 @@ postDominance | Patterns.cs:81:18:81:20 | "0" | Patterns.cs:81:13:81:13 | _ | | Patterns.cs:85:26:85:27 | Exit | Patterns.cs:85:26:85:27 | Normal Exit | | Patterns.cs:85:26:85:27 | Normal Exit | Patterns.cs:85:39:85:69 | After ... ? ... : ... | +| Patterns.cs:85:33:85:33 | i | Patterns.cs:85:26:85:27 | Entry | | Patterns.cs:85:39:85:39 | access to parameter i | Patterns.cs:85:39:85:53 | Before ... is ... | | Patterns.cs:85:39:85:53 | ... is ... | Patterns.cs:85:39:85:39 | access to parameter i | | Patterns.cs:85:39:85:53 | After ... is ... [true] | Patterns.cs:85:44:85:53 | After ... or ... | | Patterns.cs:85:39:85:53 | Before ... is ... | Patterns.cs:85:39:85:69 | ... ? ... : ... | -| Patterns.cs:85:39:85:69 | ... ? ... : ... | Patterns.cs:85:26:85:27 | Entry | +| Patterns.cs:85:39:85:69 | ... ? ... : ... | Patterns.cs:85:33:85:33 | i | | Patterns.cs:85:39:85:69 | After ... ? ... : ... | Patterns.cs:85:57:85:63 | "not 2" | | Patterns.cs:85:39:85:69 | After ... ? ... : ... | Patterns.cs:85:67:85:69 | "2" | | Patterns.cs:85:44:85:44 | 1 | Patterns.cs:85:44:85:53 | Before ... or ... | @@ -12761,11 +13098,12 @@ postDominance | Patterns.cs:85:67:85:69 | "2" | Patterns.cs:85:39:85:53 | After ... is ... [false] | | Patterns.cs:87:26:87:27 | Exit | Patterns.cs:87:26:87:27 | Normal Exit | | Patterns.cs:87:26:87:27 | Normal Exit | Patterns.cs:87:39:87:70 | After ... ? ... : ... | +| Patterns.cs:87:33:87:33 | i | Patterns.cs:87:26:87:27 | Entry | | Patterns.cs:87:39:87:39 | access to parameter i | Patterns.cs:87:39:87:54 | Before ... is ... | | Patterns.cs:87:39:87:54 | ... is ... | Patterns.cs:87:39:87:39 | access to parameter i | | Patterns.cs:87:39:87:54 | After ... is ... [true] | Patterns.cs:87:44:87:54 | After ... and ... | | Patterns.cs:87:39:87:54 | Before ... is ... | Patterns.cs:87:39:87:70 | ... ? ... : ... | -| Patterns.cs:87:39:87:70 | ... ? ... : ... | Patterns.cs:87:26:87:27 | Entry | +| Patterns.cs:87:39:87:70 | ... ? ... : ... | Patterns.cs:87:33:87:33 | i | | Patterns.cs:87:39:87:70 | After ... ? ... : ... | Patterns.cs:87:58:87:60 | "1" | | Patterns.cs:87:39:87:70 | After ... ? ... : ... | Patterns.cs:87:64:87:70 | "not 1" | | Patterns.cs:87:44:87:44 | 1 | Patterns.cs:87:44:87:54 | Before ... and ... | @@ -12820,8 +13158,9 @@ postDominance | PostDominance.cs:3:7:3:19 | {...} | PostDominance.cs:3:7:3:19 | After call to constructor Object | | PostDominance.cs:5:10:5:11 | Exit | PostDominance.cs:5:10:5:11 | Normal Exit | | PostDominance.cs:5:10:5:11 | Normal Exit | PostDominance.cs:6:5:8:5 | After {...} | +| PostDominance.cs:5:20:5:20 | s | PostDominance.cs:5:10:5:11 | Entry | | PostDominance.cs:6:5:8:5 | After {...} | PostDominance.cs:7:9:7:29 | After ...; | -| PostDominance.cs:6:5:8:5 | {...} | PostDominance.cs:5:10:5:11 | Entry | +| PostDominance.cs:6:5:8:5 | {...} | PostDominance.cs:5:20:5:20 | s | | PostDominance.cs:7:9:7:28 | After call to method WriteLine | PostDominance.cs:7:9:7:28 | call to method WriteLine | | PostDominance.cs:7:9:7:28 | Before call to method WriteLine | PostDominance.cs:7:9:7:29 | ...; | | PostDominance.cs:7:9:7:28 | call to method WriteLine | PostDominance.cs:7:27:7:27 | access to parameter s | @@ -12831,8 +13170,9 @@ postDominance | PostDominance.cs:10:10:10:11 | Exit | PostDominance.cs:10:10:10:11 | Normal Exit | | PostDominance.cs:10:10:10:11 | Normal Exit | PostDominance.cs:11:5:15:5 | After {...} | | PostDominance.cs:10:10:10:11 | Normal Exit | PostDominance.cs:13:13:13:19 | return ...; | +| PostDominance.cs:10:20:10:20 | s | PostDominance.cs:10:10:10:11 | Entry | | PostDominance.cs:11:5:15:5 | After {...} | PostDominance.cs:14:9:14:29 | After ...; | -| PostDominance.cs:11:5:15:5 | {...} | PostDominance.cs:10:10:10:11 | Entry | +| PostDominance.cs:11:5:15:5 | {...} | PostDominance.cs:10:20:10:20 | s | | PostDominance.cs:12:9:13:19 | After if (...) ... | PostDominance.cs:12:13:12:21 | After ... is ... [false] | | PostDominance.cs:12:9:13:19 | if (...) ... | PostDominance.cs:11:5:15:5 | {...} | | PostDominance.cs:12:13:12:13 | access to parameter s | PostDominance.cs:12:13:12:21 | Before ... is ... | @@ -12850,8 +13190,9 @@ postDominance | PostDominance.cs:14:27:14:27 | access to parameter s | PostDominance.cs:14:9:14:28 | Before call to method WriteLine | | PostDominance.cs:17:10:17:11 | Exceptional Exit | PostDominance.cs:20:13:20:55 | throw ...; | | PostDominance.cs:17:10:17:11 | Normal Exit | PostDominance.cs:18:5:22:5 | After {...} | +| PostDominance.cs:17:20:17:20 | s | PostDominance.cs:17:10:17:11 | Entry | | PostDominance.cs:18:5:22:5 | After {...} | PostDominance.cs:21:9:21:29 | After ...; | -| PostDominance.cs:18:5:22:5 | {...} | PostDominance.cs:17:10:17:11 | Entry | +| PostDominance.cs:18:5:22:5 | {...} | PostDominance.cs:17:20:17:20 | s | | PostDominance.cs:19:9:20:55 | After if (...) ... | PostDominance.cs:19:13:19:21 | After ... is ... [false] | | PostDominance.cs:19:9:20:55 | if (...) ... | PostDominance.cs:18:5:22:5 | {...} | | PostDominance.cs:19:13:19:13 | access to parameter s | PostDominance.cs:19:13:19:21 | Before ... is ... | @@ -13048,8 +13389,9 @@ postDominance | Switch.cs:3:7:3:12 | {...} | Switch.cs:3:7:3:12 | After call to constructor Object | | Switch.cs:5:10:5:11 | Exit | Switch.cs:5:10:5:11 | Normal Exit | | Switch.cs:5:10:5:11 | Normal Exit | Switch.cs:6:5:8:5 | After {...} | +| Switch.cs:5:20:5:20 | o | Switch.cs:5:10:5:11 | Entry | | Switch.cs:6:5:8:5 | After {...} | Switch.cs:7:9:7:22 | After switch (...) {...} | -| Switch.cs:6:5:8:5 | {...} | Switch.cs:5:10:5:11 | Entry | +| Switch.cs:6:5:8:5 | {...} | Switch.cs:5:20:5:20 | o | | Switch.cs:7:9:7:22 | After switch (...) {...} | Switch.cs:7:17:7:17 | access to parameter o | | Switch.cs:7:9:7:22 | switch (...) {...} | Switch.cs:6:5:8:5 | {...} | | Switch.cs:7:17:7:17 | access to parameter o | Switch.cs:7:9:7:22 | switch (...) {...} | @@ -13057,7 +13399,8 @@ postDominance | Switch.cs:10:10:10:11 | Normal Exit | Switch.cs:22:21:22:27 | return ...; | | Switch.cs:10:10:10:11 | Normal Exit | Switch.cs:26:17:26:23 | return ...; | | Switch.cs:10:10:10:11 | Normal Exit | Switch.cs:29:17:29:23 | return ...; | -| Switch.cs:11:5:33:5 | {...} | Switch.cs:10:10:10:11 | Entry | +| Switch.cs:10:20:10:20 | o | Switch.cs:10:10:10:11 | Entry | +| Switch.cs:11:5:33:5 | {...} | Switch.cs:10:20:10:20 | o | | Switch.cs:12:9:32:9 | switch (...) {...} | Switch.cs:11:5:33:5 | {...} | | Switch.cs:12:17:12:17 | access to parameter o | Switch.cs:12:9:32:9 | switch (...) {...} | | Switch.cs:14:13:14:21 | case ...: | Switch.cs:12:17:12:17 | access to parameter o | @@ -13137,8 +13480,9 @@ postDominance | Switch.cs:37:17:37:23 | call to method Throw | Switch.cs:37:17:37:23 | Before call to method Throw | | Switch.cs:44:10:44:11 | Exit | Switch.cs:44:10:44:11 | Normal Exit | | Switch.cs:44:10:44:11 | Normal Exit | Switch.cs:45:5:53:5 | After {...} | +| Switch.cs:44:20:44:20 | o | Switch.cs:44:10:44:11 | Entry | | Switch.cs:45:5:53:5 | After {...} | Switch.cs:46:9:52:9 | After switch (...) {...} | -| Switch.cs:45:5:53:5 | {...} | Switch.cs:44:10:44:11 | Entry | +| Switch.cs:45:5:53:5 | {...} | Switch.cs:44:20:44:20 | o | | Switch.cs:46:9:52:9 | After switch (...) {...} | Switch.cs:49:17:49:22 | break; | | Switch.cs:46:9:52:9 | After switch (...) {...} | Switch.cs:50:13:50:39 | After case ...: [no-match] | | Switch.cs:46:9:52:9 | After switch (...) {...} | Switch.cs:50:30:50:38 | After ... != ... [false] | @@ -13180,8 +13524,9 @@ postDominance | Switch.cs:62:17:62:22 | break; | Switch.cs:62:17:62:22 | Before break; | | Switch.cs:66:10:66:11 | Exit | Switch.cs:66:10:66:11 | Normal Exit | | Switch.cs:66:10:66:11 | Normal Exit | Switch.cs:67:5:75:5 | After {...} | +| Switch.cs:66:20:66:20 | s | Switch.cs:66:10:66:11 | Entry | | Switch.cs:67:5:75:5 | After {...} | Switch.cs:68:9:74:9 | After switch (...) {...} | -| Switch.cs:67:5:75:5 | {...} | Switch.cs:66:10:66:11 | Entry | +| Switch.cs:67:5:75:5 | {...} | Switch.cs:66:20:66:20 | s | | Switch.cs:68:9:74:9 | After switch (...) {...} | Switch.cs:71:17:71:22 | break; | | Switch.cs:68:9:74:9 | After switch (...) {...} | Switch.cs:72:13:72:20 | After case ...: [no-match] | | Switch.cs:68:9:74:9 | After switch (...) {...} | Switch.cs:73:17:73:22 | break; | @@ -13202,7 +13547,9 @@ postDominance | Switch.cs:77:10:77:11 | Normal Exit | Switch.cs:82:17:82:28 | return ...; | | Switch.cs:77:10:77:11 | Normal Exit | Switch.cs:86:17:86:28 | return ...; | | Switch.cs:77:10:77:11 | Normal Exit | Switch.cs:88:9:88:21 | return ...; | -| Switch.cs:78:5:89:5 | {...} | Switch.cs:77:10:77:11 | Entry | +| Switch.cs:77:17:77:17 | i | Switch.cs:77:10:77:11 | Entry | +| Switch.cs:77:24:77:24 | j | Switch.cs:77:17:77:17 | i | +| Switch.cs:78:5:89:5 | {...} | Switch.cs:77:24:77:24 | j | | Switch.cs:79:9:87:9 | After switch (...) {...} | Switch.cs:83:13:83:19 | After case ...: [no-match] | | Switch.cs:79:9:87:9 | After switch (...) {...} | Switch.cs:85:21:85:26 | break; | | Switch.cs:79:9:87:9 | switch (...) {...} | Switch.cs:78:5:89:5 | {...} | @@ -13231,7 +13578,8 @@ postDominance | Switch.cs:91:10:91:11 | Exit | Switch.cs:91:10:91:11 | Normal Exit | | Switch.cs:91:10:91:11 | Normal Exit | Switch.cs:96:17:96:28 | return ...; | | Switch.cs:91:10:91:11 | Normal Exit | Switch.cs:98:9:98:21 | return ...; | -| Switch.cs:92:5:99:5 | {...} | Switch.cs:91:10:91:11 | Entry | +| Switch.cs:91:20:91:20 | o | Switch.cs:91:10:91:11 | Entry | +| Switch.cs:92:5:99:5 | {...} | Switch.cs:91:20:91:20 | o | | Switch.cs:93:9:97:9 | After switch (...) {...} | Switch.cs:95:13:95:23 | After case ...: [no-match] | | Switch.cs:93:9:97:9 | switch (...) {...} | Switch.cs:92:5:99:5 | {...} | | Switch.cs:93:17:93:17 | access to parameter o | Switch.cs:93:9:97:9 | switch (...) {...} | @@ -13247,7 +13595,8 @@ postDominance | Switch.cs:101:9:101:10 | Normal Exit | Switch.cs:105:21:105:29 | return ...; | | Switch.cs:101:9:101:10 | Normal Exit | Switch.cs:106:21:106:29 | return ...; | | Switch.cs:101:9:101:10 | Normal Exit | Switch.cs:108:9:108:18 | return ...; | -| Switch.cs:102:5:109:5 | {...} | Switch.cs:101:9:101:10 | Entry | +| Switch.cs:101:19:101:19 | s | Switch.cs:101:9:101:10 | Entry | +| Switch.cs:102:5:109:5 | {...} | Switch.cs:101:19:101:19 | s | | Switch.cs:103:9:107:9 | After switch (...) {...} | Switch.cs:106:13:106:19 | After case ...: [no-match] | | Switch.cs:103:9:107:9 | switch (...) {...} | Switch.cs:102:5:109:5 | {...} | | Switch.cs:103:17:103:17 | access to parameter s | Switch.cs:103:17:103:25 | Before access to property Length | @@ -13282,7 +13631,8 @@ postDominance | Switch.cs:113:9:113:11 | Normal Exit | Switch.cs:117:37:117:45 | return ...; | | Switch.cs:113:9:113:11 | Normal Exit | Switch.cs:118:36:118:44 | return ...; | | Switch.cs:113:9:113:11 | Normal Exit | Switch.cs:120:9:120:18 | return ...; | -| Switch.cs:114:5:121:5 | {...} | Switch.cs:113:9:113:11 | Entry | +| Switch.cs:113:20:113:20 | s | Switch.cs:113:9:113:11 | Entry | +| Switch.cs:114:5:121:5 | {...} | Switch.cs:113:20:113:20 | s | | Switch.cs:115:9:119:9 | After switch (...) {...} | Switch.cs:118:13:118:34 | After case ...: [no-match] | | Switch.cs:115:9:119:9 | After switch (...) {...} | Switch.cs:118:25:118:33 | After ... == ... [false] | | Switch.cs:115:9:119:9 | switch (...) {...} | Switch.cs:114:5:121:5 | {...} | @@ -13318,8 +13668,9 @@ postDominance | Switch.cs:123:10:123:12 | Exit | Switch.cs:123:10:123:12 | Normal Exit | | Switch.cs:123:10:123:12 | Normal Exit | Switch.cs:124:5:127:5 | After {...} | | Switch.cs:123:10:123:12 | Normal Exit | Switch.cs:126:13:126:19 | return ...; | +| Switch.cs:123:21:123:21 | o | Switch.cs:123:10:123:12 | Entry | | Switch.cs:124:5:127:5 | After {...} | Switch.cs:125:9:126:19 | After if (...) ... | -| Switch.cs:124:5:127:5 | {...} | Switch.cs:123:10:123:12 | Entry | +| Switch.cs:124:5:127:5 | {...} | Switch.cs:123:21:123:21 | o | | Switch.cs:125:9:126:19 | After if (...) ... | Switch.cs:125:13:125:48 | After ... switch { ... } [false] | | Switch.cs:125:9:126:19 | if (...) ... | Switch.cs:124:5:127:5 | {...} | | Switch.cs:125:13:125:13 | access to parameter o | Switch.cs:125:13:125:48 | ... switch { ... } | @@ -13335,7 +13686,8 @@ postDominance | Switch.cs:126:13:126:19 | return ...; | Switch.cs:126:13:126:19 | Before return ...; | | Switch.cs:129:12:129:14 | Exit | Switch.cs:129:12:129:14 | Normal Exit | | Switch.cs:129:12:129:14 | Normal Exit | Switch.cs:131:9:131:67 | return ...; | -| Switch.cs:130:5:132:5 | {...} | Switch.cs:129:12:129:14 | Entry | +| Switch.cs:129:23:129:23 | o | Switch.cs:129:12:129:14 | Entry | +| Switch.cs:130:5:132:5 | {...} | Switch.cs:129:23:129:23 | o | | Switch.cs:131:9:131:67 | Before return ...; | Switch.cs:130:5:132:5 | {...} | | Switch.cs:131:9:131:67 | return ...; | Switch.cs:131:16:131:66 | After call to method ToString | | Switch.cs:131:16:131:66 | After call to method ToString | Switch.cs:131:16:131:66 | call to method ToString | @@ -13355,7 +13707,8 @@ postDominance | Switch.cs:134:9:134:11 | Normal Exit | Switch.cs:138:22:138:31 | return ...; | | Switch.cs:134:9:134:11 | Normal Exit | Switch.cs:139:21:139:29 | return ...; | | Switch.cs:134:9:134:11 | Normal Exit | Switch.cs:140:21:140:29 | return ...; | -| Switch.cs:135:5:142:5 | {...} | Switch.cs:134:9:134:11 | Entry | +| Switch.cs:134:17:134:17 | i | Switch.cs:134:9:134:11 | Entry | +| Switch.cs:135:5:142:5 | {...} | Switch.cs:134:17:134:17 | i | | Switch.cs:136:9:141:9 | switch (...) {...} | Switch.cs:135:5:142:5 | {...} | | Switch.cs:136:17:136:17 | access to parameter i | Switch.cs:136:9:141:9 | switch (...) {...} | | Switch.cs:138:13:138:20 | After default: [match] | Switch.cs:138:13:138:20 | default: | @@ -13380,7 +13733,8 @@ postDominance | Switch.cs:144:9:144:11 | Normal Exit | Switch.cs:148:21:148:29 | return ...; | | Switch.cs:144:9:144:11 | Normal Exit | Switch.cs:149:22:149:31 | return ...; | | Switch.cs:144:9:144:11 | Normal Exit | Switch.cs:150:21:150:29 | return ...; | -| Switch.cs:145:5:152:5 | {...} | Switch.cs:144:9:144:11 | Entry | +| Switch.cs:144:17:144:17 | i | Switch.cs:144:9:144:11 | Entry | +| Switch.cs:145:5:152:5 | {...} | Switch.cs:144:17:144:17 | i | | Switch.cs:146:9:151:9 | switch (...) {...} | Switch.cs:145:5:152:5 | {...} | | Switch.cs:146:17:146:17 | access to parameter i | Switch.cs:146:9:151:9 | switch (...) {...} | | Switch.cs:148:13:148:19 | case ...: | Switch.cs:146:17:146:17 | access to parameter i | @@ -13403,8 +13757,9 @@ postDominance | Switch.cs:150:28:150:28 | 2 | Switch.cs:150:21:150:29 | Before return ...; | | Switch.cs:154:10:154:12 | Exit | Switch.cs:154:10:154:12 | Normal Exit | | Switch.cs:154:10:154:12 | Normal Exit | Switch.cs:155:5:161:5 | After {...} | +| Switch.cs:154:19:154:19 | b | Switch.cs:154:10:154:12 | Entry | | Switch.cs:155:5:161:5 | After {...} | Switch.cs:157:9:160:49 | After if (...) ... | -| Switch.cs:155:5:161:5 | {...} | Switch.cs:154:10:154:12 | Entry | +| Switch.cs:155:5:161:5 | {...} | Switch.cs:154:19:154:19 | b | | Switch.cs:156:9:156:55 | ... ...; | Switch.cs:155:5:161:5 | {...} | | Switch.cs:156:9:156:55 | After ... ...; | Switch.cs:156:13:156:54 | After String s = ... | | Switch.cs:156:13:156:13 | access to local variable s | Switch.cs:156:13:156:54 | Before String s = ... | @@ -13454,8 +13809,9 @@ postDominance | Switch.cs:160:45:160:45 | access to local variable s | Switch.cs:160:44:160:46 | Before {...} | | Switch.cs:163:10:163:12 | Exit | Switch.cs:163:10:163:12 | Normal Exit | | Switch.cs:163:10:163:12 | Normal Exit | Switch.cs:164:5:178:5 | After {...} | +| Switch.cs:163:18:163:18 | i | Switch.cs:163:10:163:12 | Entry | | Switch.cs:164:5:178:5 | After {...} | Switch.cs:165:9:177:9 | After switch (...) {...} | -| Switch.cs:164:5:178:5 | {...} | Switch.cs:163:10:163:12 | Entry | +| Switch.cs:164:5:178:5 | {...} | Switch.cs:163:18:163:18 | i | | Switch.cs:165:9:177:9 | After switch (...) {...} | Switch.cs:170:17:170:22 | break; | | Switch.cs:165:9:177:9 | After switch (...) {...} | Switch.cs:173:17:173:22 | break; | | Switch.cs:165:9:177:9 | After switch (...) {...} | Switch.cs:176:17:176:22 | break; | @@ -13506,8 +13862,9 @@ postDominance | TypeAccesses.cs:1:7:1:18 | {...} | TypeAccesses.cs:1:7:1:18 | After call to constructor Object | | TypeAccesses.cs:3:10:3:10 | Exit | TypeAccesses.cs:3:10:3:10 | Normal Exit | | TypeAccesses.cs:3:10:3:10 | Normal Exit | TypeAccesses.cs:4:5:9:5 | After {...} | +| TypeAccesses.cs:3:19:3:19 | o | TypeAccesses.cs:3:10:3:10 | Entry | | TypeAccesses.cs:4:5:9:5 | After {...} | TypeAccesses.cs:8:9:8:28 | After ... ...; | -| TypeAccesses.cs:4:5:9:5 | {...} | TypeAccesses.cs:3:10:3:10 | Entry | +| TypeAccesses.cs:4:5:9:5 | {...} | TypeAccesses.cs:3:19:3:19 | o | | TypeAccesses.cs:5:9:5:26 | ... ...; | TypeAccesses.cs:4:5:9:5 | {...} | | TypeAccesses.cs:5:9:5:26 | After ... ...; | TypeAccesses.cs:5:13:5:25 | After String s = ... | | TypeAccesses.cs:5:13:5:13 | access to local variable s | TypeAccesses.cs:5:13:5:25 | Before String s = ... | @@ -13556,7 +13913,8 @@ postDominance | VarDecls.cs:3:7:3:14 | {...} | VarDecls.cs:3:7:3:14 | After call to constructor Object | | VarDecls.cs:5:18:5:19 | Exit | VarDecls.cs:5:18:5:19 | Normal Exit | | VarDecls.cs:5:18:5:19 | Normal Exit | VarDecls.cs:9:13:9:29 | return ...; | -| VarDecls.cs:6:5:11:5 | {...} | VarDecls.cs:5:18:5:19 | Entry | +| VarDecls.cs:5:30:5:36 | strings | VarDecls.cs:5:18:5:19 | Entry | +| VarDecls.cs:6:5:11:5 | {...} | VarDecls.cs:5:30:5:36 | strings | | VarDecls.cs:7:9:10:9 | fixed(...) { ... } | VarDecls.cs:6:5:11:5 | {...} | | VarDecls.cs:7:22:7:23 | access to local variable c1 | VarDecls.cs:7:22:7:36 | Before Char* c1 = ... | | VarDecls.cs:7:22:7:36 | After Char* c1 = ... | VarDecls.cs:7:22:7:36 | Char* c1 = ... | @@ -13591,7 +13949,8 @@ postDominance | VarDecls.cs:9:27:9:28 | access to local variable c1 | VarDecls.cs:9:20:9:28 | Before (...) ... | | VarDecls.cs:13:12:13:13 | Exit | VarDecls.cs:13:12:13:13 | Normal Exit | | VarDecls.cs:13:12:13:13 | Normal Exit | VarDecls.cs:16:9:16:23 | return ...; | -| VarDecls.cs:14:5:17:5 | {...} | VarDecls.cs:13:12:13:13 | Entry | +| VarDecls.cs:13:22:13:22 | s | VarDecls.cs:13:12:13:13 | Entry | +| VarDecls.cs:14:5:17:5 | {...} | VarDecls.cs:13:22:13:22 | s | | VarDecls.cs:15:9:15:30 | ... ...; | VarDecls.cs:14:5:17:5 | {...} | | VarDecls.cs:15:9:15:30 | After ... ...; | VarDecls.cs:15:24:15:29 | After String s2 = ... | | VarDecls.cs:15:16:15:17 | access to local variable s1 | VarDecls.cs:15:16:15:21 | Before String s1 = ... | @@ -13613,7 +13972,8 @@ postDominance | VarDecls.cs:16:21:16:22 | access to local variable s2 | VarDecls.cs:16:16:16:17 | access to local variable s1 | | VarDecls.cs:19:7:19:8 | Exit | VarDecls.cs:19:7:19:8 | Normal Exit | | VarDecls.cs:19:7:19:8 | Normal Exit | VarDecls.cs:25:13:25:29 | return ...; | -| VarDecls.cs:20:5:26:5 | {...} | VarDecls.cs:19:7:19:8 | Entry | +| VarDecls.cs:19:15:19:15 | b | VarDecls.cs:19:7:19:8 | Entry | +| VarDecls.cs:20:5:26:5 | {...} | VarDecls.cs:19:15:19:15 | b | | VarDecls.cs:21:9:22:13 | After using (...) {...} | VarDecls.cs:22:13:22:13 | ; | | VarDecls.cs:21:9:22:13 | using (...) {...} | VarDecls.cs:20:5:26:5 | {...} | | VarDecls.cs:21:16:21:22 | After object creation of type C | VarDecls.cs:21:16:21:22 | object creation of type C | @@ -13658,8 +14018,9 @@ postDominance | VarDecls.cs:28:51:28:53 | {...} | VarDecls.cs:28:41:28:47 | Entry | | cflow.cs:5:17:5:20 | Exit | cflow.cs:5:17:5:20 | Normal Exit | | cflow.cs:5:17:5:20 | Normal Exit | cflow.cs:6:5:35:5 | After {...} | +| cflow.cs:5:31:5:34 | args | cflow.cs:5:17:5:20 | Entry | | cflow.cs:6:5:35:5 | After {...} | cflow.cs:24:9:34:9 | After for (...;...;...) ... | -| cflow.cs:6:5:35:5 | {...} | cflow.cs:5:17:5:20 | Entry | +| cflow.cs:6:5:35:5 | {...} | cflow.cs:5:31:5:34 | args | | cflow.cs:7:9:7:28 | ... ...; | cflow.cs:6:5:35:5 | {...} | | cflow.cs:7:9:7:28 | After ... ...; | cflow.cs:7:13:7:27 | After Int32 a = ... | | cflow.cs:7:13:7:13 | access to local variable a | cflow.cs:7:13:7:27 | Before Int32 a = ... | @@ -13834,7 +14195,8 @@ postDominance | cflow.cs:33:35:33:35 | access to local variable i | cflow.cs:33:17:33:36 | Before call to method WriteLine | | cflow.cs:37:17:37:22 | Exceptional Exit | cflow.cs:64:21:64:55 | throw ...; | | cflow.cs:37:17:37:22 | Normal Exit | cflow.cs:67:9:67:17 | return ...; | -| cflow.cs:38:5:68:5 | {...} | cflow.cs:37:17:37:22 | Entry | +| cflow.cs:37:28:37:28 | a | cflow.cs:37:17:37:22 | Entry | +| cflow.cs:38:5:68:5 | {...} | cflow.cs:37:28:37:28 | a | | cflow.cs:39:9:50:9 | After switch (...) {...} | cflow.cs:47:13:47:19 | After case ...: [no-match] | | cflow.cs:39:9:50:9 | After switch (...) {...} | cflow.cs:49:17:49:22 | break; | | cflow.cs:39:9:50:9 | switch (...) {...} | cflow.cs:38:5:68:5 | {...} | @@ -13935,8 +14297,9 @@ postDominance | cflow.cs:70:18:70:18 | Exit | cflow.cs:70:18:70:18 | Normal Exit | | cflow.cs:70:18:70:18 | Normal Exit | cflow.cs:71:5:82:5 | After {...} | | cflow.cs:70:18:70:18 | Normal Exit | cflow.cs:73:13:73:19 | return ...; | +| cflow.cs:70:27:70:27 | s | cflow.cs:70:18:70:18 | Entry | | cflow.cs:71:5:82:5 | After {...} | cflow.cs:74:9:81:9 | After if (...) ... | -| cflow.cs:71:5:82:5 | {...} | cflow.cs:70:18:70:18 | Entry | +| cflow.cs:71:5:82:5 | {...} | cflow.cs:70:27:70:27 | s | | cflow.cs:72:9:73:19 | After if (...) ... | cflow.cs:72:13:72:21 | After ... == ... [false] | | cflow.cs:72:9:73:19 | if (...) ... | cflow.cs:71:5:82:5 | {...} | | cflow.cs:72:13:72:13 | access to parameter s | cflow.cs:72:13:72:21 | Before ... == ... | @@ -13973,8 +14336,9 @@ postDominance | cflow.cs:80:31:80:46 | "" | cflow.cs:80:13:80:47 | Before call to method WriteLine | | cflow.cs:84:18:84:19 | Exit | cflow.cs:84:18:84:19 | Normal Exit | | cflow.cs:84:18:84:19 | Normal Exit | cflow.cs:85:5:88:5 | After {...} | +| cflow.cs:84:28:84:28 | s | cflow.cs:84:18:84:19 | Entry | | cflow.cs:85:5:88:5 | After {...} | cflow.cs:86:9:87:33 | After if (...) ... | -| cflow.cs:85:5:88:5 | {...} | cflow.cs:84:18:84:19 | Entry | +| cflow.cs:85:5:88:5 | {...} | cflow.cs:84:28:84:28 | s | | cflow.cs:86:9:87:33 | After if (...) ... | cflow.cs:86:13:86:37 | After ... && ... [false] | | cflow.cs:86:9:87:33 | After if (...) ... | cflow.cs:87:13:87:33 | After ...; | | cflow.cs:86:9:87:33 | if (...) ... | cflow.cs:85:5:88:5 | {...} | @@ -14001,8 +14365,9 @@ postDominance | cflow.cs:87:31:87:31 | access to parameter s | cflow.cs:87:13:87:32 | Before call to method WriteLine | | cflow.cs:90:18:90:19 | Exceptional Exit | cflow.cs:93:13:93:49 | throw ...; | | cflow.cs:90:18:90:19 | Normal Exit | cflow.cs:91:5:104:5 | After {...} | +| cflow.cs:90:28:90:28 | s | cflow.cs:90:18:90:19 | Entry | | cflow.cs:91:5:104:5 | After {...} | cflow.cs:102:9:103:36 | After if (...) ... | -| cflow.cs:91:5:104:5 | {...} | cflow.cs:90:18:90:19 | Entry | +| cflow.cs:91:5:104:5 | {...} | cflow.cs:90:28:90:28 | s | | cflow.cs:92:9:93:49 | After if (...) ... | cflow.cs:92:13:92:27 | After call to method Equals [false] | | cflow.cs:92:9:93:49 | if (...) ... | cflow.cs:91:5:104:5 | {...} | | cflow.cs:92:13:92:27 | After call to method Equals [false] | cflow.cs:92:13:92:27 | call to method Equals | @@ -14083,8 +14448,9 @@ postDominance | cflow.cs:103:31:103:34 | this access | cflow.cs:103:31:103:34 | Before access to property Prop | | cflow.cs:106:18:106:19 | Exit | cflow.cs:106:18:106:19 | Normal Exit | | cflow.cs:106:18:106:19 | Normal Exit | cflow.cs:107:5:117:5 | After {...} | +| cflow.cs:106:28:106:28 | s | cflow.cs:106:18:106:19 | Entry | | cflow.cs:107:5:117:5 | After {...} | cflow.cs:116:9:116:29 | After ...; | -| cflow.cs:107:5:117:5 | {...} | cflow.cs:106:18:106:19 | Entry | +| cflow.cs:107:5:117:5 | {...} | cflow.cs:106:28:106:28 | s | | cflow.cs:108:9:115:9 | After if (...) ... | cflow.cs:108:13:108:21 | After ... != ... [false] | | cflow.cs:108:9:115:9 | if (...) ... | cflow.cs:107:5:117:5 | {...} | | cflow.cs:108:13:108:13 | access to parameter s | cflow.cs:108:13:108:21 | Before ... != ... | @@ -14112,7 +14478,8 @@ postDominance | cflow.cs:116:27:116:27 | access to parameter s | cflow.cs:116:9:116:28 | Before call to method WriteLine | | cflow.cs:119:20:119:21 | Exit | cflow.cs:119:20:119:21 | Normal Exit | | cflow.cs:119:20:119:21 | Normal Exit | cflow.cs:123:9:123:17 | return ...; | -| cflow.cs:120:5:124:5 | {...} | cflow.cs:119:20:119:21 | Entry | +| cflow.cs:119:30:119:30 | s | cflow.cs:119:20:119:21 | Entry | +| cflow.cs:120:5:124:5 | {...} | cflow.cs:119:30:119:30 | s | | cflow.cs:121:9:121:18 | ... ...; | cflow.cs:120:5:124:5 | {...} | | cflow.cs:121:9:121:18 | After ... ...; | cflow.cs:121:13:121:17 | After String x = ... | | cflow.cs:121:13:121:13 | access to local variable x | cflow.cs:121:13:121:17 | Before String x = ... | @@ -14156,8 +14523,9 @@ postDominance | cflow.cs:127:53:127:57 | this access | cflow.cs:127:53:127:57 | Before access to field Field | | cflow.cs:127:62:127:64 | Exit | cflow.cs:127:62:127:64 | Normal Exit | | cflow.cs:127:62:127:64 | Normal Exit | cflow.cs:127:66:127:83 | After {...} | +| cflow.cs:127:62:127:64 | value | cflow.cs:127:62:127:64 | Entry | | cflow.cs:127:66:127:83 | After {...} | cflow.cs:127:68:127:81 | After ...; | -| cflow.cs:127:66:127:83 | {...} | cflow.cs:127:62:127:64 | Entry | +| cflow.cs:127:66:127:83 | {...} | cflow.cs:127:62:127:64 | value | | cflow.cs:127:68:127:72 | After access to field Field | cflow.cs:127:68:127:72 | access to field Field | | cflow.cs:127:68:127:72 | Before access to field Field | cflow.cs:127:68:127:80 | Before ... = ... | | cflow.cs:127:68:127:72 | access to field Field | cflow.cs:127:68:127:72 | this access | @@ -14171,12 +14539,13 @@ postDominance | cflow.cs:129:5:129:15 | After call to constructor Object | cflow.cs:129:5:129:15 | call to constructor Object | | cflow.cs:129:5:129:15 | After call to method | cflow.cs:129:5:129:15 | call to method | | cflow.cs:129:5:129:15 | Before call to constructor Object | cflow.cs:129:5:129:15 | After call to method | -| cflow.cs:129:5:129:15 | Before call to method | cflow.cs:129:5:129:15 | Entry | +| cflow.cs:129:5:129:15 | Before call to method | cflow.cs:129:24:129:24 | s | | cflow.cs:129:5:129:15 | Exit | cflow.cs:129:5:129:15 | Normal Exit | | cflow.cs:129:5:129:15 | Normal Exit | cflow.cs:130:5:132:5 | After {...} | | cflow.cs:129:5:129:15 | call to constructor Object | cflow.cs:129:5:129:15 | Before call to constructor Object | | cflow.cs:129:5:129:15 | call to method | cflow.cs:129:5:129:15 | this access | | cflow.cs:129:5:129:15 | this access | cflow.cs:129:5:129:15 | Before call to method | +| cflow.cs:129:24:129:24 | s | cflow.cs:129:5:129:15 | Entry | | cflow.cs:130:5:132:5 | After {...} | cflow.cs:131:9:131:18 | After ...; | | cflow.cs:130:5:132:5 | {...} | cflow.cs:129:5:129:15 | After call to constructor Object | | cflow.cs:131:9:131:13 | After access to field Field | cflow.cs:131:9:131:13 | access to field Field | @@ -14191,8 +14560,9 @@ postDominance | cflow.cs:131:17:131:17 | access to parameter s | cflow.cs:131:9:131:13 | After access to field Field | | cflow.cs:134:5:134:15 | Exit | cflow.cs:134:5:134:15 | Normal Exit | | cflow.cs:134:5:134:15 | Normal Exit | cflow.cs:134:39:134:41 | {...} | +| cflow.cs:134:21:134:21 | i | cflow.cs:134:5:134:15 | Entry | | cflow.cs:134:26:134:29 | After call to constructor ControlFlow | cflow.cs:134:26:134:29 | call to constructor ControlFlow | -| cflow.cs:134:26:134:29 | Before call to constructor ControlFlow | cflow.cs:134:5:134:15 | Entry | +| cflow.cs:134:26:134:29 | Before call to constructor ControlFlow | cflow.cs:134:21:134:21 | i | | cflow.cs:134:26:134:29 | call to constructor ControlFlow | cflow.cs:134:31:134:36 | After ... + ... | | cflow.cs:134:31:134:31 | (...) ... | cflow.cs:134:31:134:31 | access to parameter i | | cflow.cs:134:31:134:31 | After (...) ... | cflow.cs:134:31:134:31 | (...) ... | @@ -14216,7 +14586,9 @@ postDominance | cflow.cs:136:40:136:42 | {...} | cflow.cs:136:28:136:31 | After call to constructor ControlFlow | | cflow.cs:138:40:138:40 | Exit | cflow.cs:138:40:138:40 | Normal Exit | | cflow.cs:138:40:138:40 | Normal Exit | cflow.cs:141:9:141:17 | return ...; | -| cflow.cs:139:5:142:5 | {...} | cflow.cs:138:40:138:40 | Entry | +| cflow.cs:138:54:138:54 | x | cflow.cs:138:40:138:40 | Entry | +| cflow.cs:138:69:138:69 | y | cflow.cs:138:54:138:54 | x | +| cflow.cs:139:5:142:5 | {...} | cflow.cs:138:69:138:69 | y | | cflow.cs:140:9:140:28 | After call to method WriteLine | cflow.cs:140:9:140:28 | call to method WriteLine | | cflow.cs:140:9:140:28 | Before call to method WriteLine | cflow.cs:140:9:140:29 | ...; | | cflow.cs:140:9:140:28 | call to method WriteLine | cflow.cs:140:27:140:27 | access to parameter x | @@ -14226,9 +14598,11 @@ postDominance | cflow.cs:141:9:141:17 | Before return ...; | cflow.cs:140:9:140:29 | After ...; | | cflow.cs:141:9:141:17 | return ...; | cflow.cs:141:16:141:16 | access to parameter y | | cflow.cs:141:16:141:16 | access to parameter y | cflow.cs:141:9:141:17 | Before return ...; | +| cflow.cs:144:28:144:28 | i | cflow.cs:144:33:144:35 | Entry | +| cflow.cs:144:28:144:28 | i | cflow.cs:144:56:144:58 | Entry | | cflow.cs:144:33:144:35 | Exit | cflow.cs:144:33:144:35 | Normal Exit | | cflow.cs:144:33:144:35 | Normal Exit | cflow.cs:144:39:144:52 | return ...; | -| cflow.cs:144:37:144:54 | {...} | cflow.cs:144:33:144:35 | Entry | +| cflow.cs:144:37:144:54 | {...} | cflow.cs:144:28:144:28 | i | | cflow.cs:144:39:144:52 | Before return ...; | cflow.cs:144:37:144:54 | {...} | | cflow.cs:144:39:144:52 | return ...; | cflow.cs:144:46:144:51 | After ... + ... | | cflow.cs:144:46:144:46 | (...) ... | cflow.cs:144:46:144:46 | access to parameter i | @@ -14241,7 +14615,8 @@ postDominance | cflow.cs:144:50:144:51 | "" | cflow.cs:144:46:144:46 | After (...) ... | | cflow.cs:144:56:144:58 | Exit | cflow.cs:144:56:144:58 | Normal Exit | | cflow.cs:144:56:144:58 | Normal Exit | cflow.cs:144:60:144:62 | {...} | -| cflow.cs:144:60:144:62 | {...} | cflow.cs:144:56:144:58 | Entry | +| cflow.cs:144:56:144:58 | value | cflow.cs:144:28:144:28 | i | +| cflow.cs:144:60:144:62 | {...} | cflow.cs:144:56:144:58 | value | | cflow.cs:146:10:146:12 | Exit | cflow.cs:146:10:146:12 | Normal Exit | | cflow.cs:146:10:146:12 | Normal Exit | cflow.cs:147:5:177:5 | After {...} | | cflow.cs:147:5:177:5 | After {...} | cflow.cs:173:9:176:9 | After for (...;...;...) ... | @@ -14400,13 +14775,14 @@ postDominance | cflow.cs:181:24:181:37 | After Func y = ... | cflow.cs:181:24:181:37 | Func y = ... | | cflow.cs:181:24:181:37 | Before Func y = ... | cflow.cs:181:9:181:38 | ... ...; | | cflow.cs:181:24:181:37 | Func y = ... | cflow.cs:181:28:181:37 | (...) => ... | +| cflow.cs:181:28:181:28 | x | cflow.cs:181:28:181:37 | Entry | | cflow.cs:181:28:181:37 | (...) => ... | cflow.cs:181:24:181:24 | access to local variable y | | cflow.cs:181:28:181:37 | Exit | cflow.cs:181:28:181:37 | Normal Exit | | cflow.cs:181:28:181:37 | Normal Exit | cflow.cs:181:33:181:37 | After ... + ... | | cflow.cs:181:33:181:33 | access to parameter x | cflow.cs:181:33:181:37 | Before ... + ... | | cflow.cs:181:33:181:37 | ... + ... | cflow.cs:181:37:181:37 | 1 | | cflow.cs:181:33:181:37 | After ... + ... | cflow.cs:181:33:181:37 | ... + ... | -| cflow.cs:181:33:181:37 | Before ... + ... | cflow.cs:181:28:181:37 | Entry | +| cflow.cs:181:33:181:37 | Before ... + ... | cflow.cs:181:28:181:28 | x | | cflow.cs:181:37:181:37 | 1 | cflow.cs:181:33:181:33 | access to parameter x | | cflow.cs:182:9:182:62 | ... ...; | cflow.cs:181:9:181:38 | After ... ...; | | cflow.cs:182:9:182:62 | After ... ...; | cflow.cs:182:24:182:61 | After Func z = ... | @@ -14417,7 +14793,8 @@ postDominance | cflow.cs:182:28:182:61 | Exit | cflow.cs:182:28:182:61 | Normal Exit | | cflow.cs:182:28:182:61 | Normal Exit | cflow.cs:182:47:182:59 | return ...; | | cflow.cs:182:28:182:61 | delegate(...) { ... } | cflow.cs:182:24:182:24 | access to local variable z | -| cflow.cs:182:45:182:61 | {...} | cflow.cs:182:28:182:61 | Entry | +| cflow.cs:182:42:182:42 | x | cflow.cs:182:28:182:61 | Entry | +| cflow.cs:182:45:182:61 | {...} | cflow.cs:182:42:182:42 | x | | cflow.cs:182:47:182:59 | Before return ...; | cflow.cs:182:45:182:61 | {...} | | cflow.cs:182:47:182:59 | return ...; | cflow.cs:182:54:182:58 | After ... + ... | | cflow.cs:182:54:182:54 | access to parameter x | cflow.cs:182:54:182:58 | Before ... + ... | @@ -14859,14 +15236,16 @@ postDominance | cflow.cs:282:31:282:33 | {...} | cflow.cs:282:24:282:27 | After call to constructor ControlFlow | | cflow.cs:284:5:284:18 | Exit | cflow.cs:284:5:284:18 | Normal Exit | | cflow.cs:284:5:284:18 | Normal Exit | cflow.cs:284:39:284:41 | {...} | +| cflow.cs:284:27:284:27 | s | cflow.cs:284:5:284:18 | Entry | | cflow.cs:284:32:284:35 | After call to constructor ControlFlowSub | cflow.cs:284:32:284:35 | call to constructor ControlFlowSub | -| cflow.cs:284:32:284:35 | Before call to constructor ControlFlowSub | cflow.cs:284:5:284:18 | Entry | +| cflow.cs:284:32:284:35 | Before call to constructor ControlFlowSub | cflow.cs:284:27:284:27 | s | | cflow.cs:284:32:284:35 | call to constructor ControlFlowSub | cflow.cs:284:32:284:35 | Before call to constructor ControlFlowSub | | cflow.cs:284:39:284:41 | {...} | cflow.cs:284:32:284:35 | After call to constructor ControlFlowSub | | cflow.cs:286:5:286:18 | Exit | cflow.cs:286:5:286:18 | Normal Exit | | cflow.cs:286:5:286:18 | Normal Exit | cflow.cs:286:48:286:50 | {...} | +| cflow.cs:286:24:286:24 | i | cflow.cs:286:5:286:18 | Entry | | cflow.cs:286:29:286:32 | After call to constructor ControlFlowSub | cflow.cs:286:29:286:32 | call to constructor ControlFlowSub | -| cflow.cs:286:29:286:32 | Before call to constructor ControlFlowSub | cflow.cs:286:5:286:18 | Entry | +| cflow.cs:286:29:286:32 | Before call to constructor ControlFlowSub | cflow.cs:286:24:286:24 | i | | cflow.cs:286:29:286:32 | call to constructor ControlFlowSub | cflow.cs:286:34:286:45 | After call to method ToString | | cflow.cs:286:34:286:34 | access to parameter i | cflow.cs:286:34:286:45 | Before call to method ToString | | cflow.cs:286:34:286:45 | After call to method ToString | cflow.cs:286:34:286:45 | call to method ToString | @@ -14885,25 +15264,32 @@ postDominance | cflow.cs:289:7:289:18 | {...} | cflow.cs:289:7:289:18 | After call to constructor Object | | cflow.cs:291:12:291:12 | Exit | cflow.cs:291:12:291:12 | Normal Exit | | cflow.cs:291:12:291:12 | Normal Exit | cflow.cs:291:38:291:41 | After delegate call | +| cflow.cs:291:32:291:32 | f | cflow.cs:291:12:291:12 | Entry | | cflow.cs:291:38:291:38 | access to parameter f | cflow.cs:291:38:291:41 | Before delegate call | | cflow.cs:291:38:291:41 | After delegate call | cflow.cs:291:38:291:41 | delegate call | -| cflow.cs:291:38:291:41 | Before delegate call | cflow.cs:291:12:291:12 | Entry | +| cflow.cs:291:38:291:41 | Before delegate call | cflow.cs:291:32:291:32 | f | | cflow.cs:291:38:291:41 | delegate call | cflow.cs:291:40:291:40 | 0 | | cflow.cs:291:40:291:40 | 0 | cflow.cs:291:38:291:38 | access to parameter f | | cflow.cs:296:5:296:25 | After call to constructor Object | cflow.cs:296:5:296:25 | call to constructor Object | | cflow.cs:296:5:296:25 | After call to method | cflow.cs:296:5:296:25 | call to method | | cflow.cs:296:5:296:25 | Before call to constructor Object | cflow.cs:296:5:296:25 | After call to method | -| cflow.cs:296:5:296:25 | Before call to method | cflow.cs:296:5:296:25 | Entry | +| cflow.cs:296:5:296:25 | Before call to method | cflow.cs:296:49:296:49 | s | | cflow.cs:296:5:296:25 | Exit | cflow.cs:296:5:296:25 | Normal Exit | | cflow.cs:296:5:296:25 | Normal Exit | cflow.cs:296:52:296:54 | {...} | | cflow.cs:296:5:296:25 | call to constructor Object | cflow.cs:296:5:296:25 | Before call to constructor Object | | cflow.cs:296:5:296:25 | call to method | cflow.cs:296:5:296:25 | this access | | cflow.cs:296:5:296:25 | this access | cflow.cs:296:5:296:25 | Before call to method | +| cflow.cs:296:32:296:32 | b | cflow.cs:296:5:296:25 | Entry | +| cflow.cs:296:39:296:39 | i | cflow.cs:296:32:296:32 | b | +| cflow.cs:296:49:296:49 | s | cflow.cs:296:39:296:39 | i | | cflow.cs:296:52:296:54 | {...} | cflow.cs:296:5:296:25 | After call to constructor Object | | cflow.cs:298:10:298:10 | Exit | cflow.cs:298:10:298:10 | Normal Exit | | cflow.cs:298:10:298:10 | Normal Exit | cflow.cs:299:5:301:5 | After {...} | +| cflow.cs:298:16:298:16 | i | cflow.cs:298:10:298:10 | Entry | +| cflow.cs:298:26:298:26 | s | cflow.cs:298:16:298:16 | i | +| cflow.cs:298:34:298:34 | b | cflow.cs:298:26:298:26 | s | | cflow.cs:299:5:301:5 | After {...} | cflow.cs:300:9:300:73 | After ...; | -| cflow.cs:299:5:301:5 | {...} | cflow.cs:298:10:298:10 | Entry | +| cflow.cs:299:5:301:5 | {...} | cflow.cs:298:34:298:34 | b | | cflow.cs:300:9:300:72 | After object creation of type NegationInConstructor | cflow.cs:300:9:300:72 | object creation of type NegationInConstructor | | cflow.cs:300:9:300:72 | Before object creation of type NegationInConstructor | cflow.cs:300:9:300:73 | ...; | | cflow.cs:300:9:300:72 | object creation of type NegationInConstructor | cflow.cs:300:70:300:71 | "" | @@ -14941,7 +15327,9 @@ postDominance | cflow.cs:306:60:310:5 | Exit | cflow.cs:306:60:310:5 | Normal Exit | | cflow.cs:306:60:310:5 | Normal Exit | cflow.cs:306:60:310:5 | (...) => ... | | cflow.cs:306:60:310:5 | Normal Exit | cflow.cs:309:9:309:17 | return ...; | -| cflow.cs:307:5:310:5 | {...} | cflow.cs:306:60:310:5 | Entry | +| cflow.cs:306:61:306:61 | o | cflow.cs:306:60:310:5 | Entry | +| cflow.cs:306:64:306:64 | n | cflow.cs:306:61:306:61 | o | +| cflow.cs:307:5:310:5 | {...} | cflow.cs:306:64:306:64 | n | | cflow.cs:308:9:308:21 | ... ...; | cflow.cs:307:5:310:5 | {...} | | cflow.cs:308:9:308:21 | After ... ...; | cflow.cs:308:16:308:20 | After Object x = ... | | cflow.cs:308:16:308:16 | access to local variable x | cflow.cs:308:16:308:20 | Before Object x = ... | @@ -16804,6 +17192,21 @@ blockDominance | Conditions.cs:146:13:146:13 | After access to parameter b [true] | Conditions.cs:146:13:146:13 | After access to parameter b [true] | | DefaultParam.cs:1:7:1:18 | Entry | DefaultParam.cs:1:7:1:18 | Entry | | DefaultParam.cs:3:12:3:13 | Entry | DefaultParam.cs:3:12:3:13 | Entry | +| DefaultParam.cs:3:12:3:13 | Entry | DefaultParam.cs:3:30:3:30 | After s [match] | +| DefaultParam.cs:3:12:3:13 | Entry | DefaultParam.cs:3:30:3:30 | After s [no-match] | +| DefaultParam.cs:3:12:3:13 | Entry | DefaultParam.cs:3:42:3:42 | After i [match] | +| DefaultParam.cs:3:12:3:13 | Entry | DefaultParam.cs:3:42:3:42 | After i [no-match] | +| DefaultParam.cs:3:12:3:13 | Entry | DefaultParam.cs:3:42:3:42 | i | +| DefaultParam.cs:3:12:3:13 | Entry | DefaultParam.cs:4:5:6:5 | {...} | +| DefaultParam.cs:3:30:3:30 | After s [match] | DefaultParam.cs:3:30:3:30 | After s [match] | +| DefaultParam.cs:3:30:3:30 | After s [no-match] | DefaultParam.cs:3:30:3:30 | After s [no-match] | +| DefaultParam.cs:3:42:3:42 | After i [match] | DefaultParam.cs:3:42:3:42 | After i [match] | +| DefaultParam.cs:3:42:3:42 | After i [no-match] | DefaultParam.cs:3:42:3:42 | After i [no-match] | +| DefaultParam.cs:3:42:3:42 | i | DefaultParam.cs:3:42:3:42 | After i [match] | +| DefaultParam.cs:3:42:3:42 | i | DefaultParam.cs:3:42:3:42 | After i [no-match] | +| DefaultParam.cs:3:42:3:42 | i | DefaultParam.cs:3:42:3:42 | i | +| DefaultParam.cs:3:42:3:42 | i | DefaultParam.cs:4:5:6:5 | {...} | +| DefaultParam.cs:4:5:6:5 | {...} | DefaultParam.cs:4:5:6:5 | {...} | | ExitMethods.cs:6:7:6:17 | Entry | ExitMethods.cs:6:7:6:17 | Entry | | ExitMethods.cs:8:10:8:11 | Entry | ExitMethods.cs:8:10:8:11 | Entry | | ExitMethods.cs:14:10:14:11 | Entry | ExitMethods.cs:14:10:14:11 | Entry | @@ -21041,6 +21444,21 @@ postBlockDominance | Conditions.cs:146:13:146:13 | After access to parameter b [true] | Conditions.cs:146:13:146:13 | After access to parameter b [true] | | DefaultParam.cs:1:7:1:18 | Entry | DefaultParam.cs:1:7:1:18 | Entry | | DefaultParam.cs:3:12:3:13 | Entry | DefaultParam.cs:3:12:3:13 | Entry | +| DefaultParam.cs:3:30:3:30 | After s [match] | DefaultParam.cs:3:30:3:30 | After s [match] | +| DefaultParam.cs:3:30:3:30 | After s [no-match] | DefaultParam.cs:3:30:3:30 | After s [no-match] | +| DefaultParam.cs:3:42:3:42 | After i [match] | DefaultParam.cs:3:42:3:42 | After i [match] | +| DefaultParam.cs:3:42:3:42 | After i [no-match] | DefaultParam.cs:3:42:3:42 | After i [no-match] | +| DefaultParam.cs:3:42:3:42 | i | DefaultParam.cs:3:12:3:13 | Entry | +| DefaultParam.cs:3:42:3:42 | i | DefaultParam.cs:3:30:3:30 | After s [match] | +| DefaultParam.cs:3:42:3:42 | i | DefaultParam.cs:3:30:3:30 | After s [no-match] | +| DefaultParam.cs:3:42:3:42 | i | DefaultParam.cs:3:42:3:42 | i | +| DefaultParam.cs:4:5:6:5 | {...} | DefaultParam.cs:3:12:3:13 | Entry | +| DefaultParam.cs:4:5:6:5 | {...} | DefaultParam.cs:3:30:3:30 | After s [match] | +| DefaultParam.cs:4:5:6:5 | {...} | DefaultParam.cs:3:30:3:30 | After s [no-match] | +| DefaultParam.cs:4:5:6:5 | {...} | DefaultParam.cs:3:42:3:42 | After i [match] | +| DefaultParam.cs:4:5:6:5 | {...} | DefaultParam.cs:3:42:3:42 | After i [no-match] | +| DefaultParam.cs:4:5:6:5 | {...} | DefaultParam.cs:3:42:3:42 | i | +| DefaultParam.cs:4:5:6:5 | {...} | DefaultParam.cs:4:5:6:5 | {...} | | ExitMethods.cs:6:7:6:17 | Entry | ExitMethods.cs:6:7:6:17 | Entry | | ExitMethods.cs:8:10:8:11 | Entry | ExitMethods.cs:8:10:8:11 | Entry | | ExitMethods.cs:14:10:14:11 | Entry | ExitMethods.cs:14:10:14:11 | Entry | diff --git a/csharp/ql/test/library-tests/controlflow/graph/EnclosingCallable.expected b/csharp/ql/test/library-tests/controlflow/graph/EnclosingCallable.expected index 2df18eac6cb5..b0824d758a06 100644 --- a/csharp/ql/test/library-tests/controlflow/graph/EnclosingCallable.expected +++ b/csharp/ql/test/library-tests/controlflow/graph/EnclosingCallable.expected @@ -10,6 +10,8 @@ nodeEnclosing | AccessorCalls.cs:1:7:1:19 | call to method | AccessorCalls.cs:1:7:1:19 | AccessorCalls | | AccessorCalls.cs:1:7:1:19 | this access | AccessorCalls.cs:1:7:1:19 | AccessorCalls | | AccessorCalls.cs:1:7:1:19 | {...} | AccessorCalls.cs:1:7:1:19 | AccessorCalls | +| AccessorCalls.cs:5:18:5:18 | i | AccessorCalls.cs:5:23:5:25 | get_Item | +| AccessorCalls.cs:5:18:5:18 | i | AccessorCalls.cs:5:33:5:35 | set_Item | | AccessorCalls.cs:5:23:5:25 | Entry | AccessorCalls.cs:5:23:5:25 | get_Item | | AccessorCalls.cs:5:23:5:25 | Exit | AccessorCalls.cs:5:23:5:25 | get_Item | | AccessorCalls.cs:5:23:5:25 | Normal Exit | AccessorCalls.cs:5:23:5:25 | get_Item | @@ -17,18 +19,22 @@ nodeEnclosing | AccessorCalls.cs:5:33:5:35 | Entry | AccessorCalls.cs:5:33:5:35 | set_Item | | AccessorCalls.cs:5:33:5:35 | Exit | AccessorCalls.cs:5:33:5:35 | set_Item | | AccessorCalls.cs:5:33:5:35 | Normal Exit | AccessorCalls.cs:5:33:5:35 | set_Item | +| AccessorCalls.cs:5:33:5:35 | value | AccessorCalls.cs:5:33:5:35 | set_Item | | AccessorCalls.cs:5:37:5:39 | {...} | AccessorCalls.cs:5:33:5:35 | set_Item | | AccessorCalls.cs:7:32:7:34 | Entry | AccessorCalls.cs:7:32:7:34 | add_Event | | AccessorCalls.cs:7:32:7:34 | Exit | AccessorCalls.cs:7:32:7:34 | add_Event | | AccessorCalls.cs:7:32:7:34 | Normal Exit | AccessorCalls.cs:7:32:7:34 | add_Event | +| AccessorCalls.cs:7:32:7:34 | value | AccessorCalls.cs:7:32:7:34 | add_Event | | AccessorCalls.cs:7:36:7:38 | {...} | AccessorCalls.cs:7:32:7:34 | add_Event | | AccessorCalls.cs:7:40:7:45 | Entry | AccessorCalls.cs:7:40:7:45 | remove_Event | | AccessorCalls.cs:7:40:7:45 | Exit | AccessorCalls.cs:7:40:7:45 | remove_Event | | AccessorCalls.cs:7:40:7:45 | Normal Exit | AccessorCalls.cs:7:40:7:45 | remove_Event | +| AccessorCalls.cs:7:40:7:45 | value | AccessorCalls.cs:7:40:7:45 | remove_Event | | AccessorCalls.cs:7:47:7:49 | {...} | AccessorCalls.cs:7:40:7:45 | remove_Event | | AccessorCalls.cs:10:10:10:11 | Entry | AccessorCalls.cs:10:10:10:11 | M1 | | AccessorCalls.cs:10:10:10:11 | Exit | AccessorCalls.cs:10:10:10:11 | M1 | | AccessorCalls.cs:10:10:10:11 | Normal Exit | AccessorCalls.cs:10:10:10:11 | M1 | +| AccessorCalls.cs:10:26:10:26 | e | AccessorCalls.cs:10:10:10:11 | M1 | | AccessorCalls.cs:11:5:17:5 | After {...} | AccessorCalls.cs:10:10:10:11 | M1 | | AccessorCalls.cs:11:5:17:5 | {...} | AccessorCalls.cs:10:10:10:11 | M1 | | AccessorCalls.cs:12:9:12:12 | this access | AccessorCalls.cs:10:10:10:11 | M1 | @@ -95,6 +101,7 @@ nodeEnclosing | AccessorCalls.cs:19:10:19:11 | Entry | AccessorCalls.cs:19:10:19:11 | M2 | | AccessorCalls.cs:19:10:19:11 | Exit | AccessorCalls.cs:19:10:19:11 | M2 | | AccessorCalls.cs:19:10:19:11 | Normal Exit | AccessorCalls.cs:19:10:19:11 | M2 | +| AccessorCalls.cs:19:26:19:26 | e | AccessorCalls.cs:19:10:19:11 | M2 | | AccessorCalls.cs:20:5:26:5 | After {...} | AccessorCalls.cs:19:10:19:11 | M2 | | AccessorCalls.cs:20:5:26:5 | {...} | AccessorCalls.cs:19:10:19:11 | M2 | | AccessorCalls.cs:21:9:21:12 | this access | AccessorCalls.cs:19:10:19:11 | M2 | @@ -370,6 +377,7 @@ nodeEnclosing | AccessorCalls.cs:56:10:56:11 | Entry | AccessorCalls.cs:56:10:56:11 | M7 | | AccessorCalls.cs:56:10:56:11 | Exit | AccessorCalls.cs:56:10:56:11 | M7 | | AccessorCalls.cs:56:10:56:11 | Normal Exit | AccessorCalls.cs:56:10:56:11 | M7 | +| AccessorCalls.cs:56:17:56:17 | i | AccessorCalls.cs:56:10:56:11 | M7 | | AccessorCalls.cs:57:5:59:5 | After {...} | AccessorCalls.cs:56:10:56:11 | M7 | | AccessorCalls.cs:57:5:59:5 | {...} | AccessorCalls.cs:56:10:56:11 | M7 | | AccessorCalls.cs:58:9:58:45 | (..., ...) | AccessorCalls.cs:56:10:56:11 | M7 | @@ -420,6 +428,7 @@ nodeEnclosing | AccessorCalls.cs:61:10:61:11 | Entry | AccessorCalls.cs:61:10:61:11 | M8 | | AccessorCalls.cs:61:10:61:11 | Exit | AccessorCalls.cs:61:10:61:11 | M8 | | AccessorCalls.cs:61:10:61:11 | Normal Exit | AccessorCalls.cs:61:10:61:11 | M8 | +| AccessorCalls.cs:61:17:61:17 | i | AccessorCalls.cs:61:10:61:11 | M8 | | AccessorCalls.cs:62:5:64:5 | After {...} | AccessorCalls.cs:61:10:61:11 | M8 | | AccessorCalls.cs:62:5:64:5 | {...} | AccessorCalls.cs:61:10:61:11 | M8 | | AccessorCalls.cs:63:9:63:51 | (..., ...) | AccessorCalls.cs:61:10:61:11 | M8 | @@ -488,6 +497,9 @@ nodeEnclosing | AccessorCalls.cs:66:10:66:11 | Entry | AccessorCalls.cs:66:10:66:11 | M9 | | AccessorCalls.cs:66:10:66:11 | Exit | AccessorCalls.cs:66:10:66:11 | M9 | | AccessorCalls.cs:66:10:66:11 | Normal Exit | AccessorCalls.cs:66:10:66:11 | M9 | +| AccessorCalls.cs:66:20:66:20 | o | AccessorCalls.cs:66:10:66:11 | M9 | +| AccessorCalls.cs:66:27:66:27 | i | AccessorCalls.cs:66:10:66:11 | M9 | +| AccessorCalls.cs:66:43:66:43 | e | AccessorCalls.cs:66:10:66:11 | M9 | | AccessorCalls.cs:67:5:74:5 | After {...} | AccessorCalls.cs:66:10:66:11 | M9 | | AccessorCalls.cs:67:5:74:5 | {...} | AccessorCalls.cs:66:10:66:11 | M9 | | AccessorCalls.cs:68:9:68:22 | ... ...; | AccessorCalls.cs:66:10:66:11 | M9 | @@ -663,6 +675,7 @@ nodeEnclosing | Assert.cs:7:10:7:11 | Exceptional Exit | Assert.cs:7:10:7:11 | M1 | | Assert.cs:7:10:7:11 | Exit | Assert.cs:7:10:7:11 | M1 | | Assert.cs:7:10:7:11 | Normal Exit | Assert.cs:7:10:7:11 | M1 | +| Assert.cs:7:18:7:18 | b | Assert.cs:7:10:7:11 | M1 | | Assert.cs:8:5:12:5 | After {...} | Assert.cs:7:10:7:11 | M1 | | Assert.cs:8:5:12:5 | {...} | Assert.cs:7:10:7:11 | M1 | | Assert.cs:9:9:9:33 | ... ...; | Assert.cs:7:10:7:11 | M1 | @@ -701,6 +714,7 @@ nodeEnclosing | Assert.cs:14:10:14:11 | Exceptional Exit | Assert.cs:14:10:14:11 | M2 | | Assert.cs:14:10:14:11 | Exit | Assert.cs:14:10:14:11 | M2 | | Assert.cs:14:10:14:11 | Normal Exit | Assert.cs:14:10:14:11 | M2 | +| Assert.cs:14:18:14:18 | b | Assert.cs:14:10:14:11 | M2 | | Assert.cs:15:5:19:5 | After {...} | Assert.cs:14:10:14:11 | M2 | | Assert.cs:15:5:19:5 | {...} | Assert.cs:14:10:14:11 | M2 | | Assert.cs:16:9:16:33 | ... ...; | Assert.cs:14:10:14:11 | M2 | @@ -735,6 +749,7 @@ nodeEnclosing | Assert.cs:21:10:21:11 | Exceptional Exit | Assert.cs:21:10:21:11 | M3 | | Assert.cs:21:10:21:11 | Exit | Assert.cs:21:10:21:11 | M3 | | Assert.cs:21:10:21:11 | Normal Exit | Assert.cs:21:10:21:11 | M3 | +| Assert.cs:21:18:21:18 | b | Assert.cs:21:10:21:11 | M3 | | Assert.cs:22:5:26:5 | After {...} | Assert.cs:21:10:21:11 | M3 | | Assert.cs:22:5:26:5 | {...} | Assert.cs:21:10:21:11 | M3 | | Assert.cs:23:9:23:33 | ... ...; | Assert.cs:21:10:21:11 | M3 | @@ -769,6 +784,7 @@ nodeEnclosing | Assert.cs:28:10:28:11 | Exceptional Exit | Assert.cs:28:10:28:11 | M4 | | Assert.cs:28:10:28:11 | Exit | Assert.cs:28:10:28:11 | M4 | | Assert.cs:28:10:28:11 | Normal Exit | Assert.cs:28:10:28:11 | M4 | +| Assert.cs:28:18:28:18 | b | Assert.cs:28:10:28:11 | M4 | | Assert.cs:29:5:33:5 | After {...} | Assert.cs:28:10:28:11 | M4 | | Assert.cs:29:5:33:5 | {...} | Assert.cs:28:10:28:11 | M4 | | Assert.cs:30:9:30:33 | ... ...; | Assert.cs:28:10:28:11 | M4 | @@ -807,6 +823,7 @@ nodeEnclosing | Assert.cs:35:10:35:11 | Exceptional Exit | Assert.cs:35:10:35:11 | M5 | | Assert.cs:35:10:35:11 | Exit | Assert.cs:35:10:35:11 | M5 | | Assert.cs:35:10:35:11 | Normal Exit | Assert.cs:35:10:35:11 | M5 | +| Assert.cs:35:18:35:18 | b | Assert.cs:35:10:35:11 | M5 | | Assert.cs:36:5:40:5 | After {...} | Assert.cs:35:10:35:11 | M5 | | Assert.cs:36:5:40:5 | {...} | Assert.cs:35:10:35:11 | M5 | | Assert.cs:37:9:37:33 | ... ...; | Assert.cs:35:10:35:11 | M5 | @@ -845,6 +862,7 @@ nodeEnclosing | Assert.cs:42:10:42:11 | Exceptional Exit | Assert.cs:42:10:42:11 | M6 | | Assert.cs:42:10:42:11 | Exit | Assert.cs:42:10:42:11 | M6 | | Assert.cs:42:10:42:11 | Normal Exit | Assert.cs:42:10:42:11 | M6 | +| Assert.cs:42:18:42:18 | b | Assert.cs:42:10:42:11 | M6 | | Assert.cs:43:5:47:5 | After {...} | Assert.cs:42:10:42:11 | M6 | | Assert.cs:43:5:47:5 | {...} | Assert.cs:42:10:42:11 | M6 | | Assert.cs:44:9:44:33 | ... ...; | Assert.cs:42:10:42:11 | M6 | @@ -883,6 +901,7 @@ nodeEnclosing | Assert.cs:49:10:49:11 | Exceptional Exit | Assert.cs:49:10:49:11 | M7 | | Assert.cs:49:10:49:11 | Exit | Assert.cs:49:10:49:11 | M7 | | Assert.cs:49:10:49:11 | Normal Exit | Assert.cs:49:10:49:11 | M7 | +| Assert.cs:49:18:49:18 | b | Assert.cs:49:10:49:11 | M7 | | Assert.cs:50:5:54:5 | After {...} | Assert.cs:49:10:49:11 | M7 | | Assert.cs:50:5:54:5 | {...} | Assert.cs:49:10:49:11 | M7 | | Assert.cs:51:9:51:33 | ... ...; | Assert.cs:49:10:49:11 | M7 | @@ -921,6 +940,7 @@ nodeEnclosing | Assert.cs:56:10:56:11 | Exceptional Exit | Assert.cs:56:10:56:11 | M8 | | Assert.cs:56:10:56:11 | Exit | Assert.cs:56:10:56:11 | M8 | | Assert.cs:56:10:56:11 | Normal Exit | Assert.cs:56:10:56:11 | M8 | +| Assert.cs:56:18:56:18 | b | Assert.cs:56:10:56:11 | M8 | | Assert.cs:57:5:61:5 | After {...} | Assert.cs:56:10:56:11 | M8 | | Assert.cs:57:5:61:5 | {...} | Assert.cs:56:10:56:11 | M8 | | Assert.cs:58:9:58:33 | ... ...; | Assert.cs:56:10:56:11 | M8 | @@ -963,6 +983,7 @@ nodeEnclosing | Assert.cs:63:10:63:11 | Exceptional Exit | Assert.cs:63:10:63:11 | M9 | | Assert.cs:63:10:63:11 | Exit | Assert.cs:63:10:63:11 | M9 | | Assert.cs:63:10:63:11 | Normal Exit | Assert.cs:63:10:63:11 | M9 | +| Assert.cs:63:18:63:18 | b | Assert.cs:63:10:63:11 | M9 | | Assert.cs:64:5:68:5 | After {...} | Assert.cs:63:10:63:11 | M9 | | Assert.cs:64:5:68:5 | {...} | Assert.cs:63:10:63:11 | M9 | | Assert.cs:65:9:65:33 | ... ...; | Assert.cs:63:10:63:11 | M9 | @@ -1005,6 +1026,7 @@ nodeEnclosing | Assert.cs:70:10:70:12 | Exceptional Exit | Assert.cs:70:10:70:12 | M10 | | Assert.cs:70:10:70:12 | Exit | Assert.cs:70:10:70:12 | M10 | | Assert.cs:70:10:70:12 | Normal Exit | Assert.cs:70:10:70:12 | M10 | +| Assert.cs:70:19:70:19 | b | Assert.cs:70:10:70:12 | M10 | | Assert.cs:71:5:75:5 | After {...} | Assert.cs:70:10:70:12 | M10 | | Assert.cs:71:5:75:5 | {...} | Assert.cs:70:10:70:12 | M10 | | Assert.cs:72:9:72:33 | ... ...; | Assert.cs:70:10:70:12 | M10 | @@ -1047,6 +1069,7 @@ nodeEnclosing | Assert.cs:77:10:77:12 | Exceptional Exit | Assert.cs:77:10:77:12 | M11 | | Assert.cs:77:10:77:12 | Exit | Assert.cs:77:10:77:12 | M11 | | Assert.cs:77:10:77:12 | Normal Exit | Assert.cs:77:10:77:12 | M11 | +| Assert.cs:77:19:77:19 | b | Assert.cs:77:10:77:12 | M11 | | Assert.cs:78:5:82:5 | After {...} | Assert.cs:77:10:77:12 | M11 | | Assert.cs:78:5:82:5 | {...} | Assert.cs:77:10:77:12 | M11 | | Assert.cs:79:9:79:33 | ... ...; | Assert.cs:77:10:77:12 | M11 | @@ -1089,6 +1112,7 @@ nodeEnclosing | Assert.cs:84:10:84:12 | Exceptional Exit | Assert.cs:84:10:84:12 | M12 | | Assert.cs:84:10:84:12 | Exit | Assert.cs:84:10:84:12 | M12 | | Assert.cs:84:10:84:12 | Normal Exit | Assert.cs:84:10:84:12 | M12 | +| Assert.cs:84:19:84:19 | b | Assert.cs:84:10:84:12 | M12 | | Assert.cs:85:5:129:5 | After {...} | Assert.cs:84:10:84:12 | M12 | | Assert.cs:85:5:129:5 | {...} | Assert.cs:84:10:84:12 | M12 | | Assert.cs:86:9:86:33 | ... ...; | Assert.cs:84:10:84:12 | M12 | @@ -1458,11 +1482,17 @@ nodeEnclosing | Assert.cs:131:18:131:32 | Entry | Assert.cs:131:18:131:32 | AssertTrueFalse | | Assert.cs:131:18:131:32 | Exit | Assert.cs:131:18:131:32 | AssertTrueFalse | | Assert.cs:131:18:131:32 | Normal Exit | Assert.cs:131:18:131:32 | AssertTrueFalse | +| Assert.cs:132:74:132:83 | condition1 | Assert.cs:131:18:131:32 | AssertTrueFalse | +| Assert.cs:133:73:133:82 | condition2 | Assert.cs:131:18:131:32 | AssertTrueFalse | +| Assert.cs:134:17:134:28 | nonCondition | Assert.cs:131:18:131:32 | AssertTrueFalse | | Assert.cs:135:5:136:5 | {...} | Assert.cs:131:18:131:32 | AssertTrueFalse | | Assert.cs:138:10:138:12 | Entry | Assert.cs:138:10:138:12 | M13 | | Assert.cs:138:10:138:12 | Exceptional Exit | Assert.cs:138:10:138:12 | M13 | | Assert.cs:138:10:138:12 | Exit | Assert.cs:138:10:138:12 | M13 | | Assert.cs:138:10:138:12 | Normal Exit | Assert.cs:138:10:138:12 | M13 | +| Assert.cs:138:19:138:20 | b1 | Assert.cs:138:10:138:12 | M13 | +| Assert.cs:138:28:138:29 | b2 | Assert.cs:138:10:138:12 | M13 | +| Assert.cs:138:37:138:38 | b3 | Assert.cs:138:10:138:12 | M13 | | Assert.cs:139:5:142:5 | {...} | Assert.cs:138:10:138:12 | M13 | | Assert.cs:140:9:140:35 | After call to method AssertTrueFalse | Assert.cs:138:10:138:12 | M13 | | Assert.cs:140:9:140:35 | Before call to method AssertTrueFalse | Assert.cs:138:10:138:12 | M13 | @@ -1551,10 +1581,14 @@ nodeEnclosing | Assignments.cs:14:18:14:35 | Entry | Assignments.cs:14:18:14:35 | (...) => ... | | Assignments.cs:14:18:14:35 | Exit | Assignments.cs:14:18:14:35 | (...) => ... | | Assignments.cs:14:18:14:35 | Normal Exit | Assignments.cs:14:18:14:35 | (...) => ... | +| Assignments.cs:14:19:14:24 | sender | Assignments.cs:14:18:14:35 | (...) => ... | +| Assignments.cs:14:27:14:27 | e | Assignments.cs:14:18:14:35 | (...) => ... | | Assignments.cs:14:33:14:35 | {...} | Assignments.cs:14:18:14:35 | (...) => ... | | Assignments.cs:17:40:17:40 | Entry | Assignments.cs:17:40:17:40 | + | | Assignments.cs:17:40:17:40 | Exit | Assignments.cs:17:40:17:40 | + | | Assignments.cs:17:40:17:40 | Normal Exit | Assignments.cs:17:40:17:40 | + | +| Assignments.cs:17:54:17:54 | x | Assignments.cs:17:40:17:40 | + | +| Assignments.cs:17:69:17:69 | y | Assignments.cs:17:40:17:40 | + | | Assignments.cs:18:5:20:5 | {...} | Assignments.cs:17:40:17:40 | + | | Assignments.cs:19:9:19:17 | Before return ...; | Assignments.cs:17:40:17:40 | + | | Assignments.cs:19:9:19:17 | return ...; | Assignments.cs:17:40:17:40 | + | @@ -1562,6 +1596,7 @@ nodeEnclosing | Assignments.cs:27:10:27:23 | Entry | Assignments.cs:27:10:27:23 | SetParamSingle | | Assignments.cs:27:10:27:23 | Exit | Assignments.cs:27:10:27:23 | SetParamSingle | | Assignments.cs:27:10:27:23 | Normal Exit | Assignments.cs:27:10:27:23 | SetParamSingle | +| Assignments.cs:27:33:27:33 | x | Assignments.cs:27:10:27:23 | SetParamSingle | | Assignments.cs:28:5:30:5 | After {...} | Assignments.cs:27:10:27:23 | SetParamSingle | | Assignments.cs:28:5:30:5 | {...} | Assignments.cs:27:10:27:23 | SetParamSingle | | Assignments.cs:29:9:29:9 | access to parameter x | Assignments.cs:27:10:27:23 | SetParamSingle | @@ -1574,6 +1609,9 @@ nodeEnclosing | Assignments.cs:32:10:32:22 | Entry | Assignments.cs:32:10:32:22 | SetParamMulti | | Assignments.cs:32:10:32:22 | Exit | Assignments.cs:32:10:32:22 | SetParamMulti | | Assignments.cs:32:10:32:22 | Normal Exit | Assignments.cs:32:10:32:22 | SetParamMulti | +| Assignments.cs:32:32:32:32 | x | Assignments.cs:32:10:32:22 | SetParamMulti | +| Assignments.cs:32:42:32:42 | o | Assignments.cs:32:10:32:22 | SetParamMulti | +| Assignments.cs:32:56:32:56 | y | Assignments.cs:32:10:32:22 | SetParamMulti | | Assignments.cs:33:5:36:5 | After {...} | Assignments.cs:32:10:32:22 | SetParamMulti | | Assignments.cs:33:5:36:5 | {...} | Assignments.cs:32:10:32:22 | SetParamMulti | | Assignments.cs:34:9:34:9 | access to parameter x | Assignments.cs:32:10:32:22 | SetParamMulti | @@ -1656,6 +1694,7 @@ nodeEnclosing | BreakInTry.cs:3:10:3:11 | Entry | BreakInTry.cs:3:10:3:11 | M1 | | BreakInTry.cs:3:10:3:11 | Exit | BreakInTry.cs:3:10:3:11 | M1 | | BreakInTry.cs:3:10:3:11 | Normal Exit | BreakInTry.cs:3:10:3:11 | M1 | +| BreakInTry.cs:3:22:3:25 | args | BreakInTry.cs:3:10:3:11 | M1 | | BreakInTry.cs:4:5:18:5 | After {...} | BreakInTry.cs:3:10:3:11 | M1 | | BreakInTry.cs:4:5:18:5 | {...} | BreakInTry.cs:3:10:3:11 | M1 | | BreakInTry.cs:5:9:17:9 | After try {...} ... | BreakInTry.cs:3:10:3:11 | M1 | @@ -1695,6 +1734,7 @@ nodeEnclosing | BreakInTry.cs:20:10:20:11 | Entry | BreakInTry.cs:20:10:20:11 | M2 | | BreakInTry.cs:20:10:20:11 | Exit | BreakInTry.cs:20:10:20:11 | M2 | | BreakInTry.cs:20:10:20:11 | Normal Exit | BreakInTry.cs:20:10:20:11 | M2 | +| BreakInTry.cs:20:22:20:25 | args | BreakInTry.cs:20:10:20:11 | M2 | | BreakInTry.cs:21:5:36:5 | After {...} | BreakInTry.cs:20:10:20:11 | M2 | | BreakInTry.cs:21:5:36:5 | {...} | BreakInTry.cs:20:10:20:11 | M2 | | BreakInTry.cs:22:9:34:9 | After foreach (... ... in ...) ... | BreakInTry.cs:20:10:20:11 | M2 | @@ -1735,6 +1775,7 @@ nodeEnclosing | BreakInTry.cs:38:10:38:11 | Entry | BreakInTry.cs:38:10:38:11 | M3 | | BreakInTry.cs:38:10:38:11 | Exit | BreakInTry.cs:38:10:38:11 | M3 | | BreakInTry.cs:38:10:38:11 | Normal Exit | BreakInTry.cs:38:10:38:11 | M3 | +| BreakInTry.cs:38:22:38:25 | args | BreakInTry.cs:38:10:38:11 | M3 | | BreakInTry.cs:39:5:54:5 | After {...} | BreakInTry.cs:38:10:38:11 | M3 | | BreakInTry.cs:39:5:54:5 | {...} | BreakInTry.cs:38:10:38:11 | M3 | | BreakInTry.cs:40:9:52:9 | After try {...} ... | BreakInTry.cs:38:10:38:11 | M3 | @@ -1776,6 +1817,7 @@ nodeEnclosing | BreakInTry.cs:56:10:56:11 | Entry | BreakInTry.cs:56:10:56:11 | M4 | | BreakInTry.cs:56:10:56:11 | Exit | BreakInTry.cs:56:10:56:11 | M4 | | BreakInTry.cs:56:10:56:11 | Normal Exit | BreakInTry.cs:56:10:56:11 | M4 | +| BreakInTry.cs:56:22:56:25 | args | BreakInTry.cs:56:10:56:11 | M4 | | BreakInTry.cs:57:5:71:5 | After {...} | BreakInTry.cs:56:10:56:11 | M4 | | BreakInTry.cs:57:5:71:5 | {...} | BreakInTry.cs:56:10:56:11 | M4 | | BreakInTry.cs:58:9:70:9 | After try {...} ... | BreakInTry.cs:56:10:56:11 | M4 | @@ -1848,6 +1890,7 @@ nodeEnclosing | CompileTimeOperators.cs:20:12:20:17 | Entry | CompileTimeOperators.cs:20:12:20:17 | Nameof | | CompileTimeOperators.cs:20:12:20:17 | Exit | CompileTimeOperators.cs:20:12:20:17 | Nameof | | CompileTimeOperators.cs:20:12:20:17 | Normal Exit | CompileTimeOperators.cs:20:12:20:17 | Nameof | +| CompileTimeOperators.cs:20:23:20:23 | i | CompileTimeOperators.cs:20:12:20:17 | Nameof | | CompileTimeOperators.cs:21:5:23:5 | {...} | CompileTimeOperators.cs:20:12:20:17 | Nameof | | CompileTimeOperators.cs:22:9:22:25 | Before return ...; | CompileTimeOperators.cs:20:12:20:17 | Nameof | | CompileTimeOperators.cs:22:9:22:25 | return ...; | CompileTimeOperators.cs:20:12:20:17 | Nameof | @@ -1909,6 +1952,7 @@ nodeEnclosing | ConditionalAccess.cs:3:12:3:13 | Entry | ConditionalAccess.cs:3:12:3:13 | M1 | | ConditionalAccess.cs:3:12:3:13 | Exit | ConditionalAccess.cs:3:12:3:13 | M1 | | ConditionalAccess.cs:3:12:3:13 | Normal Exit | ConditionalAccess.cs:3:12:3:13 | M1 | +| ConditionalAccess.cs:3:20:3:20 | i | ConditionalAccess.cs:3:12:3:13 | M1 | | ConditionalAccess.cs:3:26:3:26 | After access to parameter i [non-null] | ConditionalAccess.cs:3:12:3:13 | M1 | | ConditionalAccess.cs:3:26:3:26 | After access to parameter i [null] | ConditionalAccess.cs:3:12:3:13 | M1 | | ConditionalAccess.cs:3:26:3:26 | access to parameter i | ConditionalAccess.cs:3:12:3:13 | M1 | @@ -1922,6 +1966,7 @@ nodeEnclosing | ConditionalAccess.cs:5:10:5:11 | Entry | ConditionalAccess.cs:5:10:5:11 | M2 | | ConditionalAccess.cs:5:10:5:11 | Exit | ConditionalAccess.cs:5:10:5:11 | M2 | | ConditionalAccess.cs:5:10:5:11 | Normal Exit | ConditionalAccess.cs:5:10:5:11 | M2 | +| ConditionalAccess.cs:5:20:5:20 | s | ConditionalAccess.cs:5:10:5:11 | M2 | | ConditionalAccess.cs:5:26:5:26 | After access to parameter s [non-null] | ConditionalAccess.cs:5:10:5:11 | M2 | | ConditionalAccess.cs:5:26:5:26 | After access to parameter s [null] | ConditionalAccess.cs:5:10:5:11 | M2 | | ConditionalAccess.cs:5:26:5:26 | access to parameter s | ConditionalAccess.cs:5:10:5:11 | M2 | @@ -1931,6 +1976,8 @@ nodeEnclosing | ConditionalAccess.cs:7:10:7:11 | Entry | ConditionalAccess.cs:7:10:7:11 | M3 | | ConditionalAccess.cs:7:10:7:11 | Exit | ConditionalAccess.cs:7:10:7:11 | M3 | | ConditionalAccess.cs:7:10:7:11 | Normal Exit | ConditionalAccess.cs:7:10:7:11 | M3 | +| ConditionalAccess.cs:7:20:7:21 | s1 | ConditionalAccess.cs:7:10:7:11 | M3 | +| ConditionalAccess.cs:7:31:7:32 | s2 | ConditionalAccess.cs:7:10:7:11 | M3 | | ConditionalAccess.cs:7:38:7:55 | After access to property Length | ConditionalAccess.cs:7:10:7:11 | M3 | | ConditionalAccess.cs:7:38:7:55 | Before access to property Length | ConditionalAccess.cs:7:10:7:11 | M3 | | ConditionalAccess.cs:7:38:7:55 | access to property Length | ConditionalAccess.cs:7:10:7:11 | M3 | @@ -1946,6 +1993,7 @@ nodeEnclosing | ConditionalAccess.cs:9:9:9:10 | Entry | ConditionalAccess.cs:9:9:9:10 | M4 | | ConditionalAccess.cs:9:9:9:10 | Exit | ConditionalAccess.cs:9:9:9:10 | M4 | | ConditionalAccess.cs:9:9:9:10 | Normal Exit | ConditionalAccess.cs:9:9:9:10 | M4 | +| ConditionalAccess.cs:9:19:9:19 | s | ConditionalAccess.cs:9:9:9:10 | M4 | | ConditionalAccess.cs:9:25:9:25 | After access to parameter s [non-null] | ConditionalAccess.cs:9:9:9:10 | M4 | | ConditionalAccess.cs:9:25:9:25 | After access to parameter s [null] | ConditionalAccess.cs:9:9:9:10 | M4 | | ConditionalAccess.cs:9:25:9:25 | access to parameter s | ConditionalAccess.cs:9:9:9:10 | M4 | @@ -1959,6 +2007,7 @@ nodeEnclosing | ConditionalAccess.cs:11:9:11:10 | Entry | ConditionalAccess.cs:11:9:11:10 | M5 | | ConditionalAccess.cs:11:9:11:10 | Exit | ConditionalAccess.cs:11:9:11:10 | M5 | | ConditionalAccess.cs:11:9:11:10 | Normal Exit | ConditionalAccess.cs:11:9:11:10 | M5 | +| ConditionalAccess.cs:11:19:11:19 | s | ConditionalAccess.cs:11:9:11:10 | M5 | | ConditionalAccess.cs:12:5:17:5 | {...} | ConditionalAccess.cs:11:9:11:10 | M5 | | ConditionalAccess.cs:13:9:16:21 | if (...) ... | ConditionalAccess.cs:11:9:11:10 | M5 | | ConditionalAccess.cs:13:13:13:13 | After access to parameter s [non-null] | ConditionalAccess.cs:11:9:11:10 | M5 | @@ -1984,6 +2033,8 @@ nodeEnclosing | ConditionalAccess.cs:19:12:19:13 | Entry | ConditionalAccess.cs:19:12:19:13 | M6 | | ConditionalAccess.cs:19:12:19:13 | Exit | ConditionalAccess.cs:19:12:19:13 | M6 | | ConditionalAccess.cs:19:12:19:13 | Normal Exit | ConditionalAccess.cs:19:12:19:13 | M6 | +| ConditionalAccess.cs:19:22:19:23 | s1 | ConditionalAccess.cs:19:12:19:13 | M6 | +| ConditionalAccess.cs:19:33:19:34 | s2 | ConditionalAccess.cs:19:12:19:13 | M6 | | ConditionalAccess.cs:19:40:19:41 | After access to parameter s1 [non-null] | ConditionalAccess.cs:19:12:19:13 | M6 | | ConditionalAccess.cs:19:40:19:41 | After access to parameter s1 [null] | ConditionalAccess.cs:19:12:19:13 | M6 | | ConditionalAccess.cs:19:40:19:41 | access to parameter s1 | ConditionalAccess.cs:19:12:19:13 | M6 | @@ -1994,6 +2045,7 @@ nodeEnclosing | ConditionalAccess.cs:21:10:21:11 | Entry | ConditionalAccess.cs:21:10:21:11 | M7 | | ConditionalAccess.cs:21:10:21:11 | Exit | ConditionalAccess.cs:21:10:21:11 | M7 | | ConditionalAccess.cs:21:10:21:11 | Normal Exit | ConditionalAccess.cs:21:10:21:11 | M7 | +| ConditionalAccess.cs:21:17:21:17 | i | ConditionalAccess.cs:21:10:21:11 | M7 | | ConditionalAccess.cs:22:5:26:5 | After {...} | ConditionalAccess.cs:21:10:21:11 | M7 | | ConditionalAccess.cs:22:5:26:5 | {...} | ConditionalAccess.cs:21:10:21:11 | M7 | | ConditionalAccess.cs:23:9:23:39 | ... ...; | ConditionalAccess.cs:21:10:21:11 | M7 | @@ -2040,6 +2092,7 @@ nodeEnclosing | ConditionalAccess.cs:30:10:30:12 | Entry | ConditionalAccess.cs:30:10:30:12 | Out | | ConditionalAccess.cs:30:10:30:12 | Exit | ConditionalAccess.cs:30:10:30:12 | Out | | ConditionalAccess.cs:30:10:30:12 | Normal Exit | ConditionalAccess.cs:30:10:30:12 | Out | +| ConditionalAccess.cs:30:22:30:22 | i | ConditionalAccess.cs:30:10:30:12 | Out | | ConditionalAccess.cs:30:28:30:28 | access to parameter i | ConditionalAccess.cs:30:10:30:12 | Out | | ConditionalAccess.cs:30:28:30:32 | ... = ... | ConditionalAccess.cs:30:10:30:12 | Out | | ConditionalAccess.cs:30:28:30:32 | After ... = ... | ConditionalAccess.cs:30:10:30:12 | Out | @@ -2048,6 +2101,8 @@ nodeEnclosing | ConditionalAccess.cs:32:10:32:11 | Entry | ConditionalAccess.cs:32:10:32:11 | M8 | | ConditionalAccess.cs:32:10:32:11 | Exit | ConditionalAccess.cs:32:10:32:11 | M8 | | ConditionalAccess.cs:32:10:32:11 | Normal Exit | ConditionalAccess.cs:32:10:32:11 | M8 | +| ConditionalAccess.cs:32:18:32:18 | b | ConditionalAccess.cs:32:10:32:11 | M8 | +| ConditionalAccess.cs:32:29:32:29 | i | ConditionalAccess.cs:32:10:32:11 | M8 | | ConditionalAccess.cs:33:5:36:5 | After {...} | ConditionalAccess.cs:32:10:32:11 | M8 | | ConditionalAccess.cs:33:5:36:5 | {...} | ConditionalAccess.cs:32:10:32:11 | M8 | | ConditionalAccess.cs:34:9:34:9 | access to parameter i | ConditionalAccess.cs:32:10:32:11 | M8 | @@ -2068,6 +2123,8 @@ nodeEnclosing | ConditionalAccess.cs:35:9:35:25 | ...; | ConditionalAccess.cs:32:10:32:11 | M8 | | ConditionalAccess.cs:35:9:35:25 | After ...; | ConditionalAccess.cs:32:10:32:11 | M8 | | ConditionalAccess.cs:35:23:35:23 | access to parameter i | ConditionalAccess.cs:32:10:32:11 | M8 | +| ConditionalAccess.cs:40:21:40:25 | index | ConditionalAccess.cs:42:9:42:11 | get_Item | +| ConditionalAccess.cs:40:21:40:25 | index | ConditionalAccess.cs:43:9:43:11 | set_Item | | ConditionalAccess.cs:42:9:42:11 | Entry | ConditionalAccess.cs:42:9:42:11 | get_Item | | ConditionalAccess.cs:42:9:42:11 | Exit | ConditionalAccess.cs:42:9:42:11 | get_Item | | ConditionalAccess.cs:42:9:42:11 | Normal Exit | ConditionalAccess.cs:42:9:42:11 | get_Item | @@ -2078,10 +2135,12 @@ nodeEnclosing | ConditionalAccess.cs:43:9:43:11 | Entry | ConditionalAccess.cs:43:9:43:11 | set_Item | | ConditionalAccess.cs:43:9:43:11 | Exit | ConditionalAccess.cs:43:9:43:11 | set_Item | | ConditionalAccess.cs:43:9:43:11 | Normal Exit | ConditionalAccess.cs:43:9:43:11 | set_Item | +| ConditionalAccess.cs:43:9:43:11 | value | ConditionalAccess.cs:43:9:43:11 | set_Item | | ConditionalAccess.cs:43:13:43:15 | {...} | ConditionalAccess.cs:43:9:43:11 | set_Item | | ConditionalAccess.cs:46:10:46:11 | Entry | ConditionalAccess.cs:46:10:46:11 | M9 | | ConditionalAccess.cs:46:10:46:11 | Exit | ConditionalAccess.cs:46:10:46:11 | M9 | | ConditionalAccess.cs:46:10:46:11 | Normal Exit | ConditionalAccess.cs:46:10:46:11 | M9 | +| ConditionalAccess.cs:46:31:46:32 | ca | ConditionalAccess.cs:46:10:46:11 | M9 | | ConditionalAccess.cs:47:5:55:5 | After {...} | ConditionalAccess.cs:46:10:46:11 | M9 | | ConditionalAccess.cs:47:5:55:5 | {...} | ConditionalAccess.cs:46:10:46:11 | M9 | | ConditionalAccess.cs:48:9:48:10 | After access to parameter ca [non-null] | ConditionalAccess.cs:46:10:46:11 | M9 | @@ -2180,6 +2239,8 @@ nodeEnclosing | ConditionalAccess.cs:60:26:60:38 | Entry | ConditionalAccess.cs:60:26:60:38 | CommaJoinWith | | ConditionalAccess.cs:60:26:60:38 | Exit | ConditionalAccess.cs:60:26:60:38 | CommaJoinWith | | ConditionalAccess.cs:60:26:60:38 | Normal Exit | ConditionalAccess.cs:60:26:60:38 | CommaJoinWith | +| ConditionalAccess.cs:60:52:60:53 | s1 | ConditionalAccess.cs:60:26:60:38 | CommaJoinWith | +| ConditionalAccess.cs:60:63:60:64 | s2 | ConditionalAccess.cs:60:26:60:38 | CommaJoinWith | | ConditionalAccess.cs:60:70:60:71 | access to parameter s1 | ConditionalAccess.cs:60:26:60:38 | CommaJoinWith | | ConditionalAccess.cs:60:70:60:78 | ... + ... | ConditionalAccess.cs:60:26:60:38 | CommaJoinWith | | ConditionalAccess.cs:60:70:60:78 | After ... + ... | ConditionalAccess.cs:60:26:60:38 | CommaJoinWith | @@ -2203,6 +2264,8 @@ nodeEnclosing | Conditions.cs:3:10:3:19 | Entry | Conditions.cs:3:10:3:19 | IncrOrDecr | | Conditions.cs:3:10:3:19 | Exit | Conditions.cs:3:10:3:19 | IncrOrDecr | | Conditions.cs:3:10:3:19 | Normal Exit | Conditions.cs:3:10:3:19 | IncrOrDecr | +| Conditions.cs:3:26:3:28 | inc | Conditions.cs:3:10:3:19 | IncrOrDecr | +| Conditions.cs:3:39:3:39 | x | Conditions.cs:3:10:3:19 | IncrOrDecr | | Conditions.cs:4:5:9:5 | After {...} | Conditions.cs:3:10:3:19 | IncrOrDecr | | Conditions.cs:4:5:9:5 | {...} | Conditions.cs:3:10:3:19 | IncrOrDecr | | Conditions.cs:5:9:6:16 | After if (...) ... | Conditions.cs:3:10:3:19 | IncrOrDecr | @@ -2233,6 +2296,7 @@ nodeEnclosing | Conditions.cs:11:9:11:10 | Entry | Conditions.cs:11:9:11:10 | M1 | | Conditions.cs:11:9:11:10 | Exit | Conditions.cs:11:9:11:10 | M1 | | Conditions.cs:11:9:11:10 | Normal Exit | Conditions.cs:11:9:11:10 | M1 | +| Conditions.cs:11:17:11:17 | b | Conditions.cs:11:9:11:10 | M1 | | Conditions.cs:12:5:20:5 | {...} | Conditions.cs:11:9:11:10 | M1 | | Conditions.cs:13:9:13:18 | ... ...; | Conditions.cs:11:9:11:10 | M1 | | Conditions.cs:13:9:13:18 | After ... ...; | Conditions.cs:11:9:11:10 | M1 | @@ -2280,6 +2344,8 @@ nodeEnclosing | Conditions.cs:22:9:22:10 | Entry | Conditions.cs:22:9:22:10 | M2 | | Conditions.cs:22:9:22:10 | Exit | Conditions.cs:22:9:22:10 | M2 | | Conditions.cs:22:9:22:10 | Normal Exit | Conditions.cs:22:9:22:10 | M2 | +| Conditions.cs:22:17:22:18 | b1 | Conditions.cs:22:9:22:10 | M2 | +| Conditions.cs:22:26:22:27 | b2 | Conditions.cs:22:9:22:10 | M2 | | Conditions.cs:23:5:31:5 | {...} | Conditions.cs:22:9:22:10 | M2 | | Conditions.cs:24:9:24:18 | ... ...; | Conditions.cs:22:9:22:10 | M2 | | Conditions.cs:24:9:24:18 | After ... ...; | Conditions.cs:22:9:22:10 | M2 | @@ -2321,6 +2387,7 @@ nodeEnclosing | Conditions.cs:33:9:33:10 | Entry | Conditions.cs:33:9:33:10 | M3 | | Conditions.cs:33:9:33:10 | Exit | Conditions.cs:33:9:33:10 | M3 | | Conditions.cs:33:9:33:10 | Normal Exit | Conditions.cs:33:9:33:10 | M3 | +| Conditions.cs:33:17:33:18 | b1 | Conditions.cs:33:9:33:10 | M3 | | Conditions.cs:34:5:44:5 | {...} | Conditions.cs:33:9:33:10 | M3 | | Conditions.cs:35:9:35:18 | ... ...; | Conditions.cs:33:9:33:10 | M3 | | Conditions.cs:35:9:35:18 | After ... ...; | Conditions.cs:33:9:33:10 | M3 | @@ -2376,6 +2443,8 @@ nodeEnclosing | Conditions.cs:46:9:46:10 | Entry | Conditions.cs:46:9:46:10 | M4 | | Conditions.cs:46:9:46:10 | Exit | Conditions.cs:46:9:46:10 | M4 | | Conditions.cs:46:9:46:10 | Normal Exit | Conditions.cs:46:9:46:10 | M4 | +| Conditions.cs:46:17:46:17 | b | Conditions.cs:46:9:46:10 | M4 | +| Conditions.cs:46:24:46:24 | x | Conditions.cs:46:9:46:10 | M4 | | Conditions.cs:47:5:55:5 | {...} | Conditions.cs:46:9:46:10 | M4 | | Conditions.cs:48:9:48:18 | ... ...; | Conditions.cs:46:9:46:10 | M4 | | Conditions.cs:48:9:48:18 | After ... ...; | Conditions.cs:46:9:46:10 | M4 | @@ -2415,6 +2484,8 @@ nodeEnclosing | Conditions.cs:57:9:57:10 | Entry | Conditions.cs:57:9:57:10 | M5 | | Conditions.cs:57:9:57:10 | Exit | Conditions.cs:57:9:57:10 | M5 | | Conditions.cs:57:9:57:10 | Normal Exit | Conditions.cs:57:9:57:10 | M5 | +| Conditions.cs:57:17:57:17 | b | Conditions.cs:57:9:57:10 | M5 | +| Conditions.cs:57:24:57:24 | x | Conditions.cs:57:9:57:10 | M5 | | Conditions.cs:58:5:68:5 | {...} | Conditions.cs:57:9:57:10 | M5 | | Conditions.cs:59:9:59:18 | ... ...; | Conditions.cs:57:9:57:10 | M5 | | Conditions.cs:59:9:59:18 | After ... ...; | Conditions.cs:57:9:57:10 | M5 | @@ -2465,6 +2536,7 @@ nodeEnclosing | Conditions.cs:70:9:70:10 | Entry | Conditions.cs:70:9:70:10 | M6 | | Conditions.cs:70:9:70:10 | Exit | Conditions.cs:70:9:70:10 | M6 | | Conditions.cs:70:9:70:10 | Normal Exit | Conditions.cs:70:9:70:10 | M6 | +| Conditions.cs:70:21:70:22 | ss | Conditions.cs:70:9:70:10 | M6 | | Conditions.cs:71:5:84:5 | {...} | Conditions.cs:70:9:70:10 | M6 | | Conditions.cs:72:9:72:30 | ... ...; | Conditions.cs:70:9:70:10 | M6 | | Conditions.cs:72:9:72:30 | After ... ...; | Conditions.cs:70:9:70:10 | M6 | @@ -2539,6 +2611,7 @@ nodeEnclosing | Conditions.cs:86:9:86:10 | Entry | Conditions.cs:86:9:86:10 | M7 | | Conditions.cs:86:9:86:10 | Exit | Conditions.cs:86:9:86:10 | M7 | | Conditions.cs:86:9:86:10 | Normal Exit | Conditions.cs:86:9:86:10 | M7 | +| Conditions.cs:86:21:86:22 | ss | Conditions.cs:86:9:86:10 | M7 | | Conditions.cs:87:5:100:5 | {...} | Conditions.cs:86:9:86:10 | M7 | | Conditions.cs:88:9:88:30 | ... ...; | Conditions.cs:86:9:86:10 | M7 | | Conditions.cs:88:9:88:30 | After ... ...; | Conditions.cs:86:9:86:10 | M7 | @@ -2613,6 +2686,7 @@ nodeEnclosing | Conditions.cs:102:12:102:13 | Entry | Conditions.cs:102:12:102:13 | M8 | | Conditions.cs:102:12:102:13 | Exit | Conditions.cs:102:12:102:13 | M8 | | Conditions.cs:102:12:102:13 | Normal Exit | Conditions.cs:102:12:102:13 | M8 | +| Conditions.cs:102:20:102:20 | b | Conditions.cs:102:12:102:13 | M8 | | Conditions.cs:103:5:111:5 | {...} | Conditions.cs:102:12:102:13 | M8 | | Conditions.cs:104:9:104:29 | ... ...; | Conditions.cs:102:12:102:13 | M8 | | Conditions.cs:104:9:104:29 | After ... ...; | Conditions.cs:102:12:102:13 | M8 | @@ -2668,6 +2742,7 @@ nodeEnclosing | Conditions.cs:113:10:113:11 | Entry | Conditions.cs:113:10:113:11 | M9 | | Conditions.cs:113:10:113:11 | Exit | Conditions.cs:113:10:113:11 | M9 | | Conditions.cs:113:10:113:11 | Normal Exit | Conditions.cs:113:10:113:11 | M9 | +| Conditions.cs:113:22:113:25 | args | Conditions.cs:113:10:113:11 | M9 | | Conditions.cs:114:5:124:5 | After {...} | Conditions.cs:113:10:113:11 | M9 | | Conditions.cs:114:5:124:5 | {...} | Conditions.cs:113:10:113:11 | M9 | | Conditions.cs:115:9:115:24 | ... ...; | Conditions.cs:113:10:113:11 | M9 | @@ -2783,6 +2858,7 @@ nodeEnclosing | Conditions.cs:143:10:143:12 | Entry | Conditions.cs:143:10:143:12 | M11 | | Conditions.cs:143:10:143:12 | Exit | Conditions.cs:143:10:143:12 | M11 | | Conditions.cs:143:10:143:12 | Normal Exit | Conditions.cs:143:10:143:12 | M11 | +| Conditions.cs:143:19:143:19 | b | Conditions.cs:143:10:143:12 | M11 | | Conditions.cs:144:5:150:5 | After {...} | Conditions.cs:143:10:143:12 | M11 | | Conditions.cs:144:5:150:5 | {...} | Conditions.cs:143:10:143:12 | M11 | | Conditions.cs:145:9:145:30 | ... ...; | Conditions.cs:143:10:143:12 | M11 | @@ -2843,6 +2919,15 @@ nodeEnclosing | DefaultParam.cs:3:12:3:13 | Entry | DefaultParam.cs:3:12:3:13 | M1 | | DefaultParam.cs:3:12:3:13 | Exit | DefaultParam.cs:3:12:3:13 | M1 | | DefaultParam.cs:3:12:3:13 | Normal Exit | DefaultParam.cs:3:12:3:13 | M1 | +| DefaultParam.cs:3:20:3:20 | b | DefaultParam.cs:3:12:3:13 | M1 | +| DefaultParam.cs:3:30:3:30 | After s [match] | DefaultParam.cs:3:12:3:13 | M1 | +| DefaultParam.cs:3:30:3:30 | After s [no-match] | DefaultParam.cs:3:12:3:13 | M1 | +| DefaultParam.cs:3:30:3:30 | s | DefaultParam.cs:3:12:3:13 | M1 | +| DefaultParam.cs:3:34:3:35 | "" | DefaultParam.cs:3:12:3:13 | M1 | +| DefaultParam.cs:3:42:3:42 | After i [match] | DefaultParam.cs:3:12:3:13 | M1 | +| DefaultParam.cs:3:42:3:42 | After i [no-match] | DefaultParam.cs:3:12:3:13 | M1 | +| DefaultParam.cs:3:42:3:42 | i | DefaultParam.cs:3:12:3:13 | M1 | +| DefaultParam.cs:3:46:3:46 | 0 | DefaultParam.cs:3:12:3:13 | M1 | | DefaultParam.cs:4:5:6:5 | {...} | DefaultParam.cs:3:12:3:13 | M1 | | DefaultParam.cs:5:9:5:25 | Before return ...; | DefaultParam.cs:3:12:3:13 | M1 | | DefaultParam.cs:5:9:5:25 | return ...; | DefaultParam.cs:3:12:3:13 | M1 | @@ -2961,6 +3046,7 @@ nodeEnclosing | ExitMethods.cs:66:17:66:26 | Exceptional Exit | ExitMethods.cs:66:17:66:26 | ErrorMaybe | | ExitMethods.cs:66:17:66:26 | Exit | ExitMethods.cs:66:17:66:26 | ErrorMaybe | | ExitMethods.cs:66:17:66:26 | Normal Exit | ExitMethods.cs:66:17:66:26 | ErrorMaybe | +| ExitMethods.cs:66:33:66:33 | b | ExitMethods.cs:66:17:66:26 | ErrorMaybe | | ExitMethods.cs:67:5:70:5 | After {...} | ExitMethods.cs:66:17:66:26 | ErrorMaybe | | ExitMethods.cs:67:5:70:5 | {...} | ExitMethods.cs:66:17:66:26 | ErrorMaybe | | ExitMethods.cs:68:9:69:34 | After if (...) ... | ExitMethods.cs:66:17:66:26 | ErrorMaybe | @@ -2976,6 +3062,7 @@ nodeEnclosing | ExitMethods.cs:72:17:72:27 | Entry | ExitMethods.cs:72:17:72:27 | ErrorAlways | | ExitMethods.cs:72:17:72:27 | Exceptional Exit | ExitMethods.cs:72:17:72:27 | ErrorAlways | | ExitMethods.cs:72:17:72:27 | Exit | ExitMethods.cs:72:17:72:27 | ErrorAlways | +| ExitMethods.cs:72:34:72:34 | b | ExitMethods.cs:72:17:72:27 | ErrorAlways | | ExitMethods.cs:73:5:78:5 | {...} | ExitMethods.cs:72:17:72:27 | ErrorAlways | | ExitMethods.cs:74:9:77:45 | if (...) ... | ExitMethods.cs:72:17:72:27 | ErrorAlways | | ExitMethods.cs:74:13:74:13 | After access to parameter b [false] | ExitMethods.cs:72:17:72:27 | ErrorAlways | @@ -3049,6 +3136,7 @@ nodeEnclosing | ExitMethods.cs:110:13:110:21 | Exceptional Exit | ExitMethods.cs:110:13:110:21 | ThrowExpr | | ExitMethods.cs:110:13:110:21 | Exit | ExitMethods.cs:110:13:110:21 | ThrowExpr | | ExitMethods.cs:110:13:110:21 | Normal Exit | ExitMethods.cs:110:13:110:21 | ThrowExpr | +| ExitMethods.cs:110:31:110:35 | input | ExitMethods.cs:110:13:110:21 | ThrowExpr | | ExitMethods.cs:111:5:113:5 | {...} | ExitMethods.cs:110:13:110:21 | ThrowExpr | | ExitMethods.cs:112:9:112:77 | Before return ...; | ExitMethods.cs:110:13:110:21 | ThrowExpr | | ExitMethods.cs:112:9:112:77 | return ...; | ExitMethods.cs:110:13:110:21 | ThrowExpr | @@ -3080,6 +3168,7 @@ nodeEnclosing | ExitMethods.cs:115:16:115:34 | Entry | ExitMethods.cs:115:16:115:34 | ExtensionMethodCall | | ExitMethods.cs:115:16:115:34 | Exit | ExitMethods.cs:115:16:115:34 | ExtensionMethodCall | | ExitMethods.cs:115:16:115:34 | Normal Exit | ExitMethods.cs:115:16:115:34 | ExtensionMethodCall | +| ExitMethods.cs:115:43:115:43 | s | ExitMethods.cs:115:16:115:34 | ExtensionMethodCall | | ExitMethods.cs:116:5:118:5 | {...} | ExitMethods.cs:115:16:115:34 | ExtensionMethodCall | | ExitMethods.cs:117:9:117:39 | Before return ...; | ExitMethods.cs:115:16:115:34 | ExtensionMethodCall | | ExitMethods.cs:117:9:117:39 | return ...; | ExitMethods.cs:115:16:115:34 | ExtensionMethodCall | @@ -3113,6 +3202,7 @@ nodeEnclosing | ExitMethods.cs:132:10:132:20 | Exceptional Exit | ExitMethods.cs:132:10:132:20 | AssertFalse | | ExitMethods.cs:132:10:132:20 | Exit | ExitMethods.cs:132:10:132:20 | AssertFalse | | ExitMethods.cs:132:10:132:20 | Normal Exit | ExitMethods.cs:132:10:132:20 | AssertFalse | +| ExitMethods.cs:132:27:132:27 | b | ExitMethods.cs:132:10:132:20 | AssertFalse | | ExitMethods.cs:132:33:132:49 | After call to method IsFalse | ExitMethods.cs:132:10:132:20 | AssertFalse | | ExitMethods.cs:132:33:132:49 | Before call to method IsFalse | ExitMethods.cs:132:10:132:20 | AssertFalse | | ExitMethods.cs:132:33:132:49 | call to method IsFalse | ExitMethods.cs:132:10:132:20 | AssertFalse | @@ -3129,6 +3219,8 @@ nodeEnclosing | ExitMethods.cs:140:17:140:42 | Entry | ExitMethods.cs:140:17:140:42 | ExceptionDispatchInfoThrow | | ExitMethods.cs:140:17:140:42 | Exceptional Exit | ExitMethods.cs:140:17:140:42 | ExceptionDispatchInfoThrow | | ExitMethods.cs:140:17:140:42 | Exit | ExitMethods.cs:140:17:140:42 | ExceptionDispatchInfoThrow | +| ExitMethods.cs:140:49:140:49 | b | ExitMethods.cs:140:17:140:42 | ExceptionDispatchInfoThrow | +| ExitMethods.cs:140:70:140:70 | e | ExitMethods.cs:140:17:140:42 | ExceptionDispatchInfoThrow | | ExitMethods.cs:141:5:147:5 | {...} | ExitMethods.cs:140:17:140:42 | ExceptionDispatchInfoThrow | | ExitMethods.cs:142:9:145:53 | if (...) ... | ExitMethods.cs:140:17:140:42 | ExceptionDispatchInfoThrow | | ExitMethods.cs:142:13:142:13 | After access to parameter b [false] | ExitMethods.cs:140:17:140:42 | ExceptionDispatchInfoThrow | @@ -3148,6 +3240,7 @@ nodeEnclosing | Extensions.cs:5:23:5:29 | Entry | Extensions.cs:5:23:5:29 | ToInt32 | | Extensions.cs:5:23:5:29 | Exit | Extensions.cs:5:23:5:29 | ToInt32 | | Extensions.cs:5:23:5:29 | Normal Exit | Extensions.cs:5:23:5:29 | ToInt32 | +| Extensions.cs:5:43:5:43 | s | Extensions.cs:5:23:5:29 | ToInt32 | | Extensions.cs:6:5:8:5 | {...} | Extensions.cs:5:23:5:29 | ToInt32 | | Extensions.cs:7:9:7:30 | Before return ...; | Extensions.cs:5:23:5:29 | ToInt32 | | Extensions.cs:7:9:7:30 | return ...; | Extensions.cs:5:23:5:29 | ToInt32 | @@ -3158,6 +3251,8 @@ nodeEnclosing | Extensions.cs:10:24:10:29 | Entry | Extensions.cs:10:24:10:29 | ToBool | | Extensions.cs:10:24:10:29 | Exit | Extensions.cs:10:24:10:29 | ToBool | | Extensions.cs:10:24:10:29 | Normal Exit | Extensions.cs:10:24:10:29 | ToBool | +| Extensions.cs:10:43:10:43 | s | Extensions.cs:10:24:10:29 | ToBool | +| Extensions.cs:10:65:10:65 | f | Extensions.cs:10:24:10:29 | ToBool | | Extensions.cs:11:5:13:5 | {...} | Extensions.cs:10:24:10:29 | ToBool | | Extensions.cs:12:9:12:20 | Before return ...; | Extensions.cs:10:24:10:29 | ToBool | | Extensions.cs:12:9:12:20 | return ...; | Extensions.cs:10:24:10:29 | ToBool | @@ -3176,6 +3271,7 @@ nodeEnclosing | Extensions.cs:20:17:20:20 | Entry | Extensions.cs:20:17:20:20 | Main | | Extensions.cs:20:17:20:20 | Exit | Extensions.cs:20:17:20:20 | Main | | Extensions.cs:20:17:20:20 | Normal Exit | Extensions.cs:20:17:20:20 | Main | +| Extensions.cs:20:29:20:29 | s | Extensions.cs:20:17:20:20 | Main | | Extensions.cs:21:5:26:5 | After {...} | Extensions.cs:20:17:20:20 | Main | | Extensions.cs:21:5:26:5 | {...} | Extensions.cs:20:17:20:20 | Main | | Extensions.cs:22:9:22:9 | access to parameter s | Extensions.cs:20:17:20:20 | Main | @@ -3580,6 +3676,7 @@ nodeEnclosing | Finally.cs:147:10:147:11 | Exceptional Exit | Finally.cs:147:10:147:11 | M8 | | Finally.cs:147:10:147:11 | Exit | Finally.cs:147:10:147:11 | M8 | | Finally.cs:147:10:147:11 | Normal Exit | Finally.cs:147:10:147:11 | M8 | +| Finally.cs:147:22:147:25 | args | Finally.cs:147:10:147:11 | M8 | | Finally.cs:148:5:170:5 | After {...} | Finally.cs:147:10:147:11 | M8 | | Finally.cs:148:5:170:5 | {...} | Finally.cs:147:10:147:11 | M8 | | Finally.cs:149:9:169:9 | After try {...} ... | Finally.cs:147:10:147:11 | M8 | @@ -3694,6 +3791,8 @@ nodeEnclosing | Finally.cs:176:10:176:11 | Exceptional Exit | Finally.cs:176:10:176:11 | M9 | | Finally.cs:176:10:176:11 | Exit | Finally.cs:176:10:176:11 | M9 | | Finally.cs:176:10:176:11 | Normal Exit | Finally.cs:176:10:176:11 | M9 | +| Finally.cs:176:18:176:19 | b1 | Finally.cs:176:10:176:11 | M9 | +| Finally.cs:176:27:176:28 | b2 | Finally.cs:176:10:176:11 | M9 | | Finally.cs:177:5:193:5 | After {...} | Finally.cs:176:10:176:11 | M9 | | Finally.cs:177:5:193:5 | {...} | Finally.cs:176:10:176:11 | M9 | | Finally.cs:178:9:192:9 | After try {...} ... | Finally.cs:176:10:176:11 | M9 | @@ -3748,6 +3847,9 @@ nodeEnclosing | Finally.cs:195:10:195:12 | Exceptional Exit | Finally.cs:195:10:195:12 | M10 | | Finally.cs:195:10:195:12 | Exit | Finally.cs:195:10:195:12 | M10 | | Finally.cs:195:10:195:12 | Normal Exit | Finally.cs:195:10:195:12 | M10 | +| Finally.cs:195:19:195:20 | b1 | Finally.cs:195:10:195:12 | M10 | +| Finally.cs:195:28:195:29 | b2 | Finally.cs:195:10:195:12 | M10 | +| Finally.cs:195:37:195:38 | b3 | Finally.cs:195:10:195:12 | M10 | | Finally.cs:196:5:214:5 | After {...} | Finally.cs:195:10:195:12 | M10 | | Finally.cs:196:5:214:5 | {...} | Finally.cs:195:10:195:12 | M10 | | Finally.cs:197:9:212:9 | After try {...} ... | Finally.cs:195:10:195:12 | M10 | @@ -3855,6 +3957,8 @@ nodeEnclosing | Finally.cs:233:10:233:12 | Exceptional Exit | Finally.cs:233:10:233:12 | M12 | | Finally.cs:233:10:233:12 | Exit | Finally.cs:233:10:233:12 | M12 | | Finally.cs:233:10:233:12 | Normal Exit | Finally.cs:233:10:233:12 | M12 | +| Finally.cs:233:19:233:20 | b1 | Finally.cs:233:10:233:12 | M12 | +| Finally.cs:233:28:233:29 | b2 | Finally.cs:233:10:233:12 | M12 | | Finally.cs:234:5:261:5 | After {...} | Finally.cs:233:10:233:12 | M12 | | Finally.cs:234:5:261:5 | {...} | Finally.cs:233:10:233:12 | M12 | | Finally.cs:235:9:259:9 | After try {...} ... | Finally.cs:233:10:233:12 | M12 | @@ -3923,6 +4027,7 @@ nodeEnclosing | Finally.cs:263:10:263:12 | Exceptional Exit | Finally.cs:263:10:263:12 | M13 | | Finally.cs:263:10:263:12 | Exit | Finally.cs:263:10:263:12 | M13 | | Finally.cs:263:10:263:12 | Normal Exit | Finally.cs:263:10:263:12 | M13 | +| Finally.cs:263:18:263:18 | i | Finally.cs:263:10:263:12 | M13 | | Finally.cs:264:5:274:5 | After {...} | Finally.cs:263:10:263:12 | M13 | | Finally.cs:264:5:274:5 | {...} | Finally.cs:263:10:263:12 | M13 | | Finally.cs:265:9:273:9 | After try {...} ... | Finally.cs:263:10:263:12 | M13 | @@ -3964,6 +4069,7 @@ nodeEnclosing | Foreach.cs:6:10:6:11 | Entry | Foreach.cs:6:10:6:11 | M1 | | Foreach.cs:6:10:6:11 | Exit | Foreach.cs:6:10:6:11 | M1 | | Foreach.cs:6:10:6:11 | Normal Exit | Foreach.cs:6:10:6:11 | M1 | +| Foreach.cs:6:22:6:25 | args | Foreach.cs:6:10:6:11 | M1 | | Foreach.cs:7:5:10:5 | After {...} | Foreach.cs:6:10:6:11 | M1 | | Foreach.cs:7:5:10:5 | {...} | Foreach.cs:6:10:6:11 | M1 | | Foreach.cs:8:9:9:13 | After foreach (... ... in ...) ... | Foreach.cs:6:10:6:11 | M1 | @@ -3977,6 +4083,7 @@ nodeEnclosing | Foreach.cs:12:10:12:11 | Entry | Foreach.cs:12:10:12:11 | M2 | | Foreach.cs:12:10:12:11 | Exit | Foreach.cs:12:10:12:11 | M2 | | Foreach.cs:12:10:12:11 | Normal Exit | Foreach.cs:12:10:12:11 | M2 | +| Foreach.cs:12:22:12:25 | args | Foreach.cs:12:10:12:11 | M2 | | Foreach.cs:13:5:16:5 | After {...} | Foreach.cs:12:10:12:11 | M2 | | Foreach.cs:13:5:16:5 | {...} | Foreach.cs:12:10:12:11 | M2 | | Foreach.cs:14:9:15:13 | After foreach (... ... in ...) ... | Foreach.cs:12:10:12:11 | M2 | @@ -3990,6 +4097,7 @@ nodeEnclosing | Foreach.cs:18:10:18:11 | Entry | Foreach.cs:18:10:18:11 | M3 | | Foreach.cs:18:10:18:11 | Exit | Foreach.cs:18:10:18:11 | M3 | | Foreach.cs:18:10:18:11 | Normal Exit | Foreach.cs:18:10:18:11 | M3 | +| Foreach.cs:18:33:18:33 | e | Foreach.cs:18:10:18:11 | M3 | | Foreach.cs:19:5:22:5 | After {...} | Foreach.cs:18:10:18:11 | M3 | | Foreach.cs:19:5:22:5 | {...} | Foreach.cs:18:10:18:11 | M3 | | Foreach.cs:20:9:21:11 | After foreach (... ... in ...) ... | Foreach.cs:18:10:18:11 | M3 | @@ -4014,6 +4122,7 @@ nodeEnclosing | Foreach.cs:24:10:24:11 | Entry | Foreach.cs:24:10:24:11 | M4 | | Foreach.cs:24:10:24:11 | Exit | Foreach.cs:24:10:24:11 | M4 | | Foreach.cs:24:10:24:11 | Normal Exit | Foreach.cs:24:10:24:11 | M4 | +| Foreach.cs:24:40:24:43 | args | Foreach.cs:24:10:24:11 | M4 | | Foreach.cs:25:5:28:5 | After {...} | Foreach.cs:24:10:24:11 | M4 | | Foreach.cs:25:5:28:5 | {...} | Foreach.cs:24:10:24:11 | M4 | | Foreach.cs:26:9:27:11 | After foreach (... ... in ...) ... | Foreach.cs:24:10:24:11 | M4 | @@ -4031,6 +4140,7 @@ nodeEnclosing | Foreach.cs:30:10:30:11 | Entry | Foreach.cs:30:10:30:11 | M5 | | Foreach.cs:30:10:30:11 | Exit | Foreach.cs:30:10:30:11 | M5 | | Foreach.cs:30:10:30:11 | Normal Exit | Foreach.cs:30:10:30:11 | M5 | +| Foreach.cs:30:40:30:43 | args | Foreach.cs:30:10:30:11 | M5 | | Foreach.cs:31:5:34:5 | After {...} | Foreach.cs:30:10:30:11 | M5 | | Foreach.cs:31:5:34:5 | {...} | Foreach.cs:30:10:30:11 | M5 | | Foreach.cs:32:9:33:11 | After foreach (... ... in ...) ... | Foreach.cs:30:10:30:11 | M5 | @@ -4048,6 +4158,7 @@ nodeEnclosing | Foreach.cs:36:10:36:11 | Entry | Foreach.cs:36:10:36:11 | M6 | | Foreach.cs:36:10:36:11 | Exit | Foreach.cs:36:10:36:11 | M6 | | Foreach.cs:36:10:36:11 | Normal Exit | Foreach.cs:36:10:36:11 | M6 | +| Foreach.cs:36:40:36:43 | args | Foreach.cs:36:10:36:11 | M6 | | Foreach.cs:37:5:40:5 | After {...} | Foreach.cs:36:10:36:11 | M6 | | Foreach.cs:37:5:40:5 | {...} | Foreach.cs:36:10:36:11 | M6 | | Foreach.cs:38:9:39:11 | After foreach (... ... in ...) ... | Foreach.cs:36:10:36:11 | M6 | @@ -4114,6 +4225,7 @@ nodeEnclosing | Initializers.cs:10:5:10:16 | call to constructor Object | Initializers.cs:10:5:10:16 | Initializers | | Initializers.cs:10:5:10:16 | call to method | Initializers.cs:10:5:10:16 | Initializers | | Initializers.cs:10:5:10:16 | this access | Initializers.cs:10:5:10:16 | Initializers | +| Initializers.cs:10:25:10:25 | s | Initializers.cs:10:5:10:16 | Initializers | | Initializers.cs:10:28:10:30 | {...} | Initializers.cs:10:5:10:16 | Initializers | | Initializers.cs:12:10:12:10 | Entry | Initializers.cs:12:10:12:10 | M | | Initializers.cs:12:10:12:10 | Exit | Initializers.cs:12:10:12:10 | M | @@ -4234,6 +4346,7 @@ nodeEnclosing | Initializers.cs:33:9:33:11 | Entry | Initializers.cs:33:9:33:11 | Sub | | Initializers.cs:33:9:33:11 | Exit | Initializers.cs:33:9:33:11 | Sub | | Initializers.cs:33:9:33:11 | Normal Exit | Initializers.cs:33:9:33:11 | Sub | +| Initializers.cs:33:17:33:17 | i | Initializers.cs:33:9:33:11 | Sub | | Initializers.cs:33:22:33:25 | After call to constructor Sub | Initializers.cs:33:9:33:11 | Sub | | Initializers.cs:33:22:33:25 | Before call to constructor Sub | Initializers.cs:33:9:33:11 | Sub | | Initializers.cs:33:22:33:25 | call to constructor Sub | Initializers.cs:33:9:33:11 | Sub | @@ -4259,6 +4372,8 @@ nodeEnclosing | Initializers.cs:35:9:35:11 | call to constructor NoConstructor | Initializers.cs:35:9:35:11 | Sub | | Initializers.cs:35:9:35:11 | call to method | Initializers.cs:35:9:35:11 | Sub | | Initializers.cs:35:9:35:11 | this access | Initializers.cs:35:9:35:11 | Sub | +| Initializers.cs:35:17:35:17 | i | Initializers.cs:35:9:35:11 | Sub | +| Initializers.cs:35:24:35:24 | j | Initializers.cs:35:9:35:11 | Sub | | Initializers.cs:35:27:35:40 | After {...} | Initializers.cs:35:9:35:11 | Sub | | Initializers.cs:35:27:35:40 | {...} | Initializers.cs:35:9:35:11 | Sub | | Initializers.cs:35:29:35:29 | After access to field I | Initializers.cs:35:9:35:11 | Sub | @@ -4300,6 +4415,7 @@ nodeEnclosing | Initializers.cs:51:10:51:13 | Entry | Initializers.cs:51:10:51:13 | Test | | Initializers.cs:51:10:51:13 | Exit | Initializers.cs:51:10:51:13 | Test | | Initializers.cs:51:10:51:13 | Normal Exit | Initializers.cs:51:10:51:13 | Test | +| Initializers.cs:51:19:51:19 | i | Initializers.cs:51:10:51:13 | Test | | Initializers.cs:52:5:66:5 | After {...} | Initializers.cs:51:10:51:13 | Test | | Initializers.cs:52:5:66:5 | {...} | Initializers.cs:51:10:51:13 | Test | | Initializers.cs:54:9:54:96 | ... ...; | Initializers.cs:51:10:51:13 | Test | @@ -4556,6 +4672,7 @@ nodeEnclosing | LoopUnrolling.cs:7:10:7:11 | Entry | LoopUnrolling.cs:7:10:7:11 | M1 | | LoopUnrolling.cs:7:10:7:11 | Exit | LoopUnrolling.cs:7:10:7:11 | M1 | | LoopUnrolling.cs:7:10:7:11 | Normal Exit | LoopUnrolling.cs:7:10:7:11 | M1 | +| LoopUnrolling.cs:7:22:7:25 | args | LoopUnrolling.cs:7:10:7:11 | M1 | | LoopUnrolling.cs:8:5:13:5 | After {...} | LoopUnrolling.cs:7:10:7:11 | M1 | | LoopUnrolling.cs:8:5:13:5 | {...} | LoopUnrolling.cs:7:10:7:11 | M1 | | LoopUnrolling.cs:9:9:10:19 | After if (...) ... | LoopUnrolling.cs:7:10:7:11 | M1 | @@ -4621,6 +4738,7 @@ nodeEnclosing | LoopUnrolling.cs:22:10:22:11 | Entry | LoopUnrolling.cs:22:10:22:11 | M3 | | LoopUnrolling.cs:22:10:22:11 | Exit | LoopUnrolling.cs:22:10:22:11 | M3 | | LoopUnrolling.cs:22:10:22:11 | Normal Exit | LoopUnrolling.cs:22:10:22:11 | M3 | +| LoopUnrolling.cs:22:20:22:23 | args | LoopUnrolling.cs:22:10:22:11 | M3 | | LoopUnrolling.cs:23:5:27:5 | After {...} | LoopUnrolling.cs:22:10:22:11 | M3 | | LoopUnrolling.cs:23:5:27:5 | {...} | LoopUnrolling.cs:22:10:22:11 | M3 | | LoopUnrolling.cs:24:9:26:40 | After foreach (... ... in ...) ... | LoopUnrolling.cs:22:10:22:11 | M3 | @@ -4772,6 +4890,7 @@ nodeEnclosing | LoopUnrolling.cs:55:10:55:11 | Entry | LoopUnrolling.cs:55:10:55:11 | M7 | | LoopUnrolling.cs:55:10:55:11 | Exit | LoopUnrolling.cs:55:10:55:11 | M7 | | LoopUnrolling.cs:55:10:55:11 | Normal Exit | LoopUnrolling.cs:55:10:55:11 | M7 | +| LoopUnrolling.cs:55:18:55:18 | b | LoopUnrolling.cs:55:10:55:11 | M7 | | LoopUnrolling.cs:56:5:65:5 | After {...} | LoopUnrolling.cs:55:10:55:11 | M7 | | LoopUnrolling.cs:56:5:65:5 | {...} | LoopUnrolling.cs:55:10:55:11 | M7 | | LoopUnrolling.cs:57:9:57:48 | ... ...; | LoopUnrolling.cs:55:10:55:11 | M7 | @@ -4824,6 +4943,7 @@ nodeEnclosing | LoopUnrolling.cs:67:10:67:11 | Entry | LoopUnrolling.cs:67:10:67:11 | M8 | | LoopUnrolling.cs:67:10:67:11 | Exit | LoopUnrolling.cs:67:10:67:11 | M8 | | LoopUnrolling.cs:67:10:67:11 | Normal Exit | LoopUnrolling.cs:67:10:67:11 | M8 | +| LoopUnrolling.cs:67:26:67:29 | args | LoopUnrolling.cs:67:10:67:11 | M8 | | LoopUnrolling.cs:68:5:74:5 | After {...} | LoopUnrolling.cs:67:10:67:11 | M8 | | LoopUnrolling.cs:68:5:74:5 | {...} | LoopUnrolling.cs:67:10:67:11 | M8 | | LoopUnrolling.cs:69:9:70:19 | After if (...) ... | LoopUnrolling.cs:67:10:67:11 | M8 | @@ -4980,6 +5100,7 @@ nodeEnclosing | MultiImplementationA.cs:7:41:7:43 | Exceptional Exit | MultiImplementationA.cs:7:41:7:43 | set_P2 | | MultiImplementationA.cs:7:41:7:43 | Exit | MultiImplementationA.cs:7:41:7:43 | set_P2 | | MultiImplementationA.cs:7:41:7:43 | Normal Exit | MultiImplementationA.cs:7:41:7:43 | set_P2 | +| MultiImplementationA.cs:7:41:7:43 | value | MultiImplementationA.cs:7:41:7:43 | set_P2 | | MultiImplementationA.cs:7:45:7:59 | {...} | MultiImplementationA.cs:7:41:7:43 | set_P2 | | MultiImplementationA.cs:7:47:7:57 | Before throw ...; | MultiImplementationA.cs:7:41:7:43 | set_P2 | | MultiImplementationA.cs:7:47:7:57 | throw ...; | MultiImplementationA.cs:7:41:7:43 | set_P2 | @@ -5002,11 +5123,14 @@ nodeEnclosing | MultiImplementationA.cs:13:16:13:20 | After ... = ... | MultiImplementationA.cs:11:7:11:8 | | | MultiImplementationA.cs:13:16:13:20 | Before ... = ... | MultiImplementationA.cs:11:7:11:8 | | | MultiImplementationA.cs:13:20:13:20 | 0 | MultiImplementationA.cs:11:7:11:8 | | +| MultiImplementationA.cs:14:25:14:25 | i | MultiImplementationA.cs:14:31:14:31 | get_Item | | MultiImplementationA.cs:14:31:14:31 | Entry | MultiImplementationA.cs:14:31:14:31 | get_Item | | MultiImplementationA.cs:14:31:14:31 | Exceptional Exit | MultiImplementationA.cs:14:31:14:31 | get_Item | | MultiImplementationA.cs:14:31:14:31 | Exit | MultiImplementationA.cs:14:31:14:31 | get_Item | | MultiImplementationA.cs:14:31:14:31 | Normal Exit | MultiImplementationA.cs:14:31:14:31 | get_Item | | MultiImplementationA.cs:14:31:14:31 | access to parameter i | MultiImplementationA.cs:14:31:14:31 | get_Item | +| MultiImplementationA.cs:15:31:15:31 | s | MultiImplementationA.cs:15:36:15:38 | get_Item | +| MultiImplementationA.cs:15:31:15:31 | s | MultiImplementationA.cs:15:54:15:56 | set_Item | | MultiImplementationA.cs:15:36:15:38 | Entry | MultiImplementationA.cs:15:36:15:38 | get_Item | | MultiImplementationA.cs:15:36:15:38 | Exceptional Exit | MultiImplementationA.cs:15:36:15:38 | get_Item | | MultiImplementationA.cs:15:36:15:38 | Exit | MultiImplementationA.cs:15:36:15:38 | get_Item | @@ -5018,10 +5142,12 @@ nodeEnclosing | MultiImplementationA.cs:15:54:15:56 | Entry | MultiImplementationA.cs:15:54:15:56 | set_Item | | MultiImplementationA.cs:15:54:15:56 | Exit | MultiImplementationA.cs:15:54:15:56 | set_Item | | MultiImplementationA.cs:15:54:15:56 | Normal Exit | MultiImplementationA.cs:15:54:15:56 | set_Item | +| MultiImplementationA.cs:15:54:15:56 | value | MultiImplementationA.cs:15:54:15:56 | set_Item | | MultiImplementationA.cs:15:58:15:60 | {...} | MultiImplementationA.cs:15:54:15:56 | set_Item | | MultiImplementationA.cs:16:17:16:18 | Entry | MultiImplementationA.cs:16:17:16:18 | M1 | | MultiImplementationA.cs:16:17:16:18 | Exit | MultiImplementationA.cs:16:17:16:18 | M1 | | MultiImplementationA.cs:16:17:16:18 | Normal Exit | MultiImplementationA.cs:16:17:16:18 | M1 | +| MultiImplementationA.cs:16:24:16:24 | i | MultiImplementationA.cs:16:17:16:18 | M1 | | MultiImplementationA.cs:17:5:19:5 | After {...} | MultiImplementationA.cs:16:17:16:18 | M1 | | MultiImplementationA.cs:17:5:19:5 | {...} | MultiImplementationA.cs:16:17:16:18 | M1 | | MultiImplementationA.cs:18:9:18:22 | Entry | MultiImplementationA.cs:18:9:18:22 | M2 | @@ -5040,6 +5166,7 @@ nodeEnclosing | MultiImplementationA.cs:20:12:20:13 | call to constructor Object | MultiImplementationA.cs:20:12:20:13 | C2 | | MultiImplementationA.cs:20:12:20:13 | call to method | MultiImplementationA.cs:20:12:20:13 | C2 | | MultiImplementationA.cs:20:12:20:13 | this access | MultiImplementationA.cs:20:12:20:13 | C2 | +| MultiImplementationA.cs:20:19:20:19 | i | MultiImplementationA.cs:20:12:20:13 | C2 | | MultiImplementationA.cs:20:22:20:31 | After {...} | MultiImplementationA.cs:20:12:20:13 | C2 | | MultiImplementationA.cs:20:22:20:31 | {...} | MultiImplementationA.cs:20:12:20:13 | C2 | | MultiImplementationA.cs:20:24:20:24 | After access to field F | MultiImplementationA.cs:20:12:20:13 | C2 | @@ -5069,6 +5196,7 @@ nodeEnclosing | MultiImplementationA.cs:23:28:23:35 | Exceptional Exit | MultiImplementationA.cs:23:28:23:35 | implicit conversion | | MultiImplementationA.cs:23:28:23:35 | Exit | MultiImplementationA.cs:23:28:23:35 | implicit conversion | | MultiImplementationA.cs:23:28:23:35 | Normal Exit | MultiImplementationA.cs:23:28:23:35 | implicit conversion | +| MultiImplementationA.cs:23:44:23:44 | i | MultiImplementationA.cs:23:28:23:35 | implicit conversion | | MultiImplementationA.cs:23:50:23:53 | null | MultiImplementationA.cs:23:28:23:35 | implicit conversion | | MultiImplementationA.cs:24:16:24:16 | After access to property P | MultiImplementationA.cs:11:7:11:8 | | | MultiImplementationA.cs:24:16:24:16 | Before access to property P | MultiImplementationA.cs:11:7:11:8 | | @@ -5223,6 +5351,7 @@ nodeEnclosing | NullCoalescing.cs:3:9:3:10 | Entry | NullCoalescing.cs:3:9:3:10 | M1 | | NullCoalescing.cs:3:9:3:10 | Exit | NullCoalescing.cs:3:9:3:10 | M1 | | NullCoalescing.cs:3:9:3:10 | Normal Exit | NullCoalescing.cs:3:9:3:10 | M1 | +| NullCoalescing.cs:3:17:3:17 | i | NullCoalescing.cs:3:9:3:10 | M1 | | NullCoalescing.cs:3:23:3:23 | After access to parameter i [non-null] | NullCoalescing.cs:3:9:3:10 | M1 | | NullCoalescing.cs:3:23:3:23 | After access to parameter i [null] | NullCoalescing.cs:3:9:3:10 | M1 | | NullCoalescing.cs:3:23:3:23 | access to parameter i | NullCoalescing.cs:3:9:3:10 | M1 | @@ -5232,6 +5361,7 @@ nodeEnclosing | NullCoalescing.cs:5:9:5:10 | Entry | NullCoalescing.cs:5:9:5:10 | M2 | | NullCoalescing.cs:5:9:5:10 | Exit | NullCoalescing.cs:5:9:5:10 | M2 | | NullCoalescing.cs:5:9:5:10 | Normal Exit | NullCoalescing.cs:5:9:5:10 | M2 | +| NullCoalescing.cs:5:18:5:18 | b | NullCoalescing.cs:5:9:5:10 | M2 | | NullCoalescing.cs:5:24:5:43 | ... ? ... : ... | NullCoalescing.cs:5:9:5:10 | M2 | | NullCoalescing.cs:5:24:5:43 | After ... ? ... : ... | NullCoalescing.cs:5:9:5:10 | M2 | | NullCoalescing.cs:5:25:5:25 | After access to parameter b [non-null] | NullCoalescing.cs:5:9:5:10 | M2 | @@ -5247,6 +5377,8 @@ nodeEnclosing | NullCoalescing.cs:7:12:7:13 | Entry | NullCoalescing.cs:7:12:7:13 | M3 | | NullCoalescing.cs:7:12:7:13 | Exit | NullCoalescing.cs:7:12:7:13 | M3 | | NullCoalescing.cs:7:12:7:13 | Normal Exit | NullCoalescing.cs:7:12:7:13 | M3 | +| NullCoalescing.cs:7:22:7:23 | s1 | NullCoalescing.cs:7:12:7:13 | M3 | +| NullCoalescing.cs:7:33:7:34 | s2 | NullCoalescing.cs:7:12:7:13 | M3 | | NullCoalescing.cs:7:40:7:41 | After access to parameter s1 [non-null] | NullCoalescing.cs:7:12:7:13 | M3 | | NullCoalescing.cs:7:40:7:41 | After access to parameter s1 [null] | NullCoalescing.cs:7:12:7:13 | M3 | | NullCoalescing.cs:7:40:7:41 | access to parameter s1 | NullCoalescing.cs:7:12:7:13 | M3 | @@ -5261,6 +5393,8 @@ nodeEnclosing | NullCoalescing.cs:9:12:9:13 | Entry | NullCoalescing.cs:9:12:9:13 | M4 | | NullCoalescing.cs:9:12:9:13 | Exit | NullCoalescing.cs:9:12:9:13 | M4 | | NullCoalescing.cs:9:12:9:13 | Normal Exit | NullCoalescing.cs:9:12:9:13 | M4 | +| NullCoalescing.cs:9:20:9:20 | b | NullCoalescing.cs:9:12:9:13 | M4 | +| NullCoalescing.cs:9:30:9:30 | s | NullCoalescing.cs:9:12:9:13 | M4 | | NullCoalescing.cs:9:36:9:58 | ... ?? ... | NullCoalescing.cs:9:12:9:13 | M4 | | NullCoalescing.cs:9:36:9:58 | After ... ?? ... | NullCoalescing.cs:9:12:9:13 | M4 | | NullCoalescing.cs:9:37:9:37 | After access to parameter b [false] | NullCoalescing.cs:9:12:9:13 | M4 | @@ -5284,6 +5418,9 @@ nodeEnclosing | NullCoalescing.cs:11:9:11:10 | Entry | NullCoalescing.cs:11:9:11:10 | M5 | | NullCoalescing.cs:11:9:11:10 | Exit | NullCoalescing.cs:11:9:11:10 | M5 | | NullCoalescing.cs:11:9:11:10 | Normal Exit | NullCoalescing.cs:11:9:11:10 | M5 | +| NullCoalescing.cs:11:18:11:19 | b1 | NullCoalescing.cs:11:9:11:10 | M5 | +| NullCoalescing.cs:11:27:11:28 | b2 | NullCoalescing.cs:11:9:11:10 | M5 | +| NullCoalescing.cs:11:36:11:37 | b3 | NullCoalescing.cs:11:9:11:10 | M5 | | NullCoalescing.cs:11:43:11:68 | ... ? ... : ... | NullCoalescing.cs:11:9:11:10 | M5 | | NullCoalescing.cs:11:43:11:68 | After ... ? ... : ... | NullCoalescing.cs:11:9:11:10 | M5 | | NullCoalescing.cs:11:44:11:45 | After access to parameter b1 [non-null] | NullCoalescing.cs:11:9:11:10 | M5 | @@ -5306,6 +5443,7 @@ nodeEnclosing | NullCoalescing.cs:13:10:13:11 | Entry | NullCoalescing.cs:13:10:13:11 | M6 | | NullCoalescing.cs:13:10:13:11 | Exit | NullCoalescing.cs:13:10:13:11 | M6 | | NullCoalescing.cs:13:10:13:11 | Normal Exit | NullCoalescing.cs:13:10:13:11 | M6 | +| NullCoalescing.cs:13:17:13:17 | i | NullCoalescing.cs:13:10:13:11 | M6 | | NullCoalescing.cs:14:5:18:5 | After {...} | NullCoalescing.cs:13:10:13:11 | M6 | | NullCoalescing.cs:14:5:18:5 | {...} | NullCoalescing.cs:13:10:13:11 | M6 | | NullCoalescing.cs:15:9:15:32 | ... ...; | NullCoalescing.cs:13:10:13:11 | M6 | @@ -5361,6 +5499,7 @@ nodeEnclosing | PartialImplementationA.cs:3:12:3:18 | call to constructor Object | PartialImplementationA.cs:3:12:3:18 | Partial | | PartialImplementationA.cs:3:12:3:18 | call to method | PartialImplementationA.cs:3:12:3:18 | Partial | | PartialImplementationA.cs:3:12:3:18 | this access | PartialImplementationA.cs:3:12:3:18 | Partial | +| PartialImplementationA.cs:3:24:3:24 | i | PartialImplementationA.cs:3:12:3:18 | Partial | | PartialImplementationA.cs:3:27:3:29 | {...} | PartialImplementationA.cs:3:12:3:18 | Partial | | PartialImplementationB.cs:3:16:3:16 | After access to field F | PartialImplementationA.cs:1:15:1:21 | | | PartialImplementationB.cs:3:16:3:16 | Before access to field F | PartialImplementationA.cs:1:15:1:21 | | @@ -5564,6 +5703,7 @@ nodeEnclosing | Patterns.cs:47:24:47:25 | Entry | Patterns.cs:47:24:47:25 | M2 | | Patterns.cs:47:24:47:25 | Exit | Patterns.cs:47:24:47:25 | M2 | | Patterns.cs:47:24:47:25 | Normal Exit | Patterns.cs:47:24:47:25 | M2 | +| Patterns.cs:47:32:47:32 | c | Patterns.cs:47:24:47:25 | M2 | | Patterns.cs:48:9:48:9 | access to parameter c | Patterns.cs:47:24:47:25 | M2 | | Patterns.cs:48:9:48:20 | ... is ... | Patterns.cs:47:24:47:25 | M2 | | Patterns.cs:48:9:48:20 | After ... is ... | Patterns.cs:47:24:47:25 | M2 | @@ -5576,6 +5716,7 @@ nodeEnclosing | Patterns.cs:50:24:50:25 | Entry | Patterns.cs:50:24:50:25 | M3 | | Patterns.cs:50:24:50:25 | Exit | Patterns.cs:50:24:50:25 | M3 | | Patterns.cs:50:24:50:25 | Normal Exit | Patterns.cs:50:24:50:25 | M3 | +| Patterns.cs:50:34:50:34 | c | Patterns.cs:50:24:50:25 | M3 | | Patterns.cs:51:9:51:9 | access to parameter c | Patterns.cs:50:24:50:25 | M3 | | Patterns.cs:51:9:51:21 | ... is ... | Patterns.cs:50:24:50:25 | M3 | | Patterns.cs:51:9:51:21 | After ... is ... [false] | Patterns.cs:50:24:50:25 | M3 | @@ -5603,6 +5744,7 @@ nodeEnclosing | Patterns.cs:53:24:53:25 | Entry | Patterns.cs:53:24:53:25 | M4 | | Patterns.cs:53:24:53:25 | Exit | Patterns.cs:53:24:53:25 | M4 | | Patterns.cs:53:24:53:25 | Normal Exit | Patterns.cs:53:24:53:25 | M4 | +| Patterns.cs:53:34:53:34 | c | Patterns.cs:53:24:53:25 | M4 | | Patterns.cs:54:9:54:9 | access to parameter c | Patterns.cs:53:24:53:25 | M4 | | Patterns.cs:54:9:54:37 | ... is ... | Patterns.cs:53:24:53:25 | M4 | | Patterns.cs:54:9:54:37 | After ... is ... | Patterns.cs:53:24:53:25 | M4 | @@ -5623,6 +5765,7 @@ nodeEnclosing | Patterns.cs:56:26:56:27 | Entry | Patterns.cs:56:26:56:27 | M5 | | Patterns.cs:56:26:56:27 | Exit | Patterns.cs:56:26:56:27 | M5 | | Patterns.cs:56:26:56:27 | Normal Exit | Patterns.cs:56:26:56:27 | M5 | +| Patterns.cs:56:33:56:33 | i | Patterns.cs:56:26:56:27 | M5 | | Patterns.cs:57:5:63:5 | {...} | Patterns.cs:56:26:56:27 | M5 | | Patterns.cs:58:9:62:10 | Before return ...; | Patterns.cs:56:26:56:27 | M5 | | Patterns.cs:58:9:62:10 | return ...; | Patterns.cs:56:26:56:27 | M5 | @@ -5666,6 +5809,7 @@ nodeEnclosing | Patterns.cs:74:26:74:27 | Entry | Patterns.cs:74:26:74:27 | M7 | | Patterns.cs:74:26:74:27 | Exit | Patterns.cs:74:26:74:27 | M7 | | Patterns.cs:74:26:74:27 | Normal Exit | Patterns.cs:74:26:74:27 | M7 | +| Patterns.cs:74:33:74:33 | i | Patterns.cs:74:26:74:27 | M7 | | Patterns.cs:75:5:83:5 | {...} | Patterns.cs:74:26:74:27 | M7 | | Patterns.cs:76:9:82:10 | Before return ...; | Patterns.cs:74:26:74:27 | M7 | | Patterns.cs:76:9:82:10 | return ...; | Patterns.cs:74:26:74:27 | M7 | @@ -5700,6 +5844,7 @@ nodeEnclosing | Patterns.cs:85:26:85:27 | Entry | Patterns.cs:85:26:85:27 | M8 | | Patterns.cs:85:26:85:27 | Exit | Patterns.cs:85:26:85:27 | M8 | | Patterns.cs:85:26:85:27 | Normal Exit | Patterns.cs:85:26:85:27 | M8 | +| Patterns.cs:85:33:85:33 | i | Patterns.cs:85:26:85:27 | M8 | | Patterns.cs:85:39:85:39 | access to parameter i | Patterns.cs:85:26:85:27 | M8 | | Patterns.cs:85:39:85:53 | ... is ... | Patterns.cs:85:26:85:27 | M8 | | Patterns.cs:85:39:85:53 | After ... is ... [false] | Patterns.cs:85:26:85:27 | M8 | @@ -5721,6 +5866,7 @@ nodeEnclosing | Patterns.cs:87:26:87:27 | Entry | Patterns.cs:87:26:87:27 | M9 | | Patterns.cs:87:26:87:27 | Exit | Patterns.cs:87:26:87:27 | M9 | | Patterns.cs:87:26:87:27 | Normal Exit | Patterns.cs:87:26:87:27 | M9 | +| Patterns.cs:87:33:87:33 | i | Patterns.cs:87:26:87:27 | M9 | | Patterns.cs:87:39:87:39 | access to parameter i | Patterns.cs:87:26:87:27 | M9 | | Patterns.cs:87:39:87:54 | ... is ... | Patterns.cs:87:26:87:27 | M9 | | Patterns.cs:87:39:87:54 | After ... is ... [false] | Patterns.cs:87:26:87:27 | M9 | @@ -5785,6 +5931,7 @@ nodeEnclosing | PostDominance.cs:5:10:5:11 | Entry | PostDominance.cs:5:10:5:11 | M1 | | PostDominance.cs:5:10:5:11 | Exit | PostDominance.cs:5:10:5:11 | M1 | | PostDominance.cs:5:10:5:11 | Normal Exit | PostDominance.cs:5:10:5:11 | M1 | +| PostDominance.cs:5:20:5:20 | s | PostDominance.cs:5:10:5:11 | M1 | | PostDominance.cs:6:5:8:5 | After {...} | PostDominance.cs:5:10:5:11 | M1 | | PostDominance.cs:6:5:8:5 | {...} | PostDominance.cs:5:10:5:11 | M1 | | PostDominance.cs:7:9:7:28 | After call to method WriteLine | PostDominance.cs:5:10:5:11 | M1 | @@ -5796,6 +5943,7 @@ nodeEnclosing | PostDominance.cs:10:10:10:11 | Entry | PostDominance.cs:10:10:10:11 | M2 | | PostDominance.cs:10:10:10:11 | Exit | PostDominance.cs:10:10:10:11 | M2 | | PostDominance.cs:10:10:10:11 | Normal Exit | PostDominance.cs:10:10:10:11 | M2 | +| PostDominance.cs:10:20:10:20 | s | PostDominance.cs:10:10:10:11 | M2 | | PostDominance.cs:11:5:15:5 | After {...} | PostDominance.cs:10:10:10:11 | M2 | | PostDominance.cs:11:5:15:5 | {...} | PostDominance.cs:10:10:10:11 | M2 | | PostDominance.cs:12:9:13:19 | After if (...) ... | PostDominance.cs:10:10:10:11 | M2 | @@ -5819,6 +5967,7 @@ nodeEnclosing | PostDominance.cs:17:10:17:11 | Exceptional Exit | PostDominance.cs:17:10:17:11 | M3 | | PostDominance.cs:17:10:17:11 | Exit | PostDominance.cs:17:10:17:11 | M3 | | PostDominance.cs:17:10:17:11 | Normal Exit | PostDominance.cs:17:10:17:11 | M3 | +| PostDominance.cs:17:20:17:20 | s | PostDominance.cs:17:10:17:11 | M3 | | PostDominance.cs:18:5:22:5 | After {...} | PostDominance.cs:17:10:17:11 | M3 | | PostDominance.cs:18:5:22:5 | {...} | PostDominance.cs:17:10:17:11 | M3 | | PostDominance.cs:19:9:20:55 | After if (...) ... | PostDominance.cs:17:10:17:11 | M3 | @@ -6024,6 +6173,7 @@ nodeEnclosing | Switch.cs:5:10:5:11 | Entry | Switch.cs:5:10:5:11 | M1 | | Switch.cs:5:10:5:11 | Exit | Switch.cs:5:10:5:11 | M1 | | Switch.cs:5:10:5:11 | Normal Exit | Switch.cs:5:10:5:11 | M1 | +| Switch.cs:5:20:5:20 | o | Switch.cs:5:10:5:11 | M1 | | Switch.cs:6:5:8:5 | After {...} | Switch.cs:5:10:5:11 | M1 | | Switch.cs:6:5:8:5 | {...} | Switch.cs:5:10:5:11 | M1 | | Switch.cs:7:9:7:22 | After switch (...) {...} | Switch.cs:5:10:5:11 | M1 | @@ -6033,6 +6183,7 @@ nodeEnclosing | Switch.cs:10:10:10:11 | Exceptional Exit | Switch.cs:10:10:10:11 | M2 | | Switch.cs:10:10:10:11 | Exit | Switch.cs:10:10:10:11 | M2 | | Switch.cs:10:10:10:11 | Normal Exit | Switch.cs:10:10:10:11 | M2 | +| Switch.cs:10:20:10:20 | o | Switch.cs:10:10:10:11 | M2 | | Switch.cs:11:5:33:5 | {...} | Switch.cs:10:10:10:11 | M2 | | Switch.cs:12:9:32:9 | switch (...) {...} | Switch.cs:10:10:10:11 | M2 | | Switch.cs:12:17:12:17 | access to parameter o | Switch.cs:10:10:10:11 | M2 | @@ -6127,6 +6278,7 @@ nodeEnclosing | Switch.cs:44:10:44:11 | Entry | Switch.cs:44:10:44:11 | M4 | | Switch.cs:44:10:44:11 | Exit | Switch.cs:44:10:44:11 | M4 | | Switch.cs:44:10:44:11 | Normal Exit | Switch.cs:44:10:44:11 | M4 | +| Switch.cs:44:20:44:20 | o | Switch.cs:44:10:44:11 | M4 | | Switch.cs:45:5:53:5 | After {...} | Switch.cs:44:10:44:11 | M4 | | Switch.cs:45:5:53:5 | {...} | Switch.cs:44:10:44:11 | M4 | | Switch.cs:46:9:52:9 | After switch (...) {...} | Switch.cs:44:10:44:11 | M4 | @@ -6177,6 +6329,7 @@ nodeEnclosing | Switch.cs:66:10:66:11 | Entry | Switch.cs:66:10:66:11 | M6 | | Switch.cs:66:10:66:11 | Exit | Switch.cs:66:10:66:11 | M6 | | Switch.cs:66:10:66:11 | Normal Exit | Switch.cs:66:10:66:11 | M6 | +| Switch.cs:66:20:66:20 | s | Switch.cs:66:10:66:11 | M6 | | Switch.cs:67:5:75:5 | After {...} | Switch.cs:66:10:66:11 | M6 | | Switch.cs:67:5:75:5 | {...} | Switch.cs:66:10:66:11 | M6 | | Switch.cs:68:9:74:9 | After switch (...) {...} | Switch.cs:66:10:66:11 | M6 | @@ -6200,6 +6353,8 @@ nodeEnclosing | Switch.cs:77:10:77:11 | Entry | Switch.cs:77:10:77:11 | M7 | | Switch.cs:77:10:77:11 | Exit | Switch.cs:77:10:77:11 | M7 | | Switch.cs:77:10:77:11 | Normal Exit | Switch.cs:77:10:77:11 | M7 | +| Switch.cs:77:17:77:17 | i | Switch.cs:77:10:77:11 | M7 | +| Switch.cs:77:24:77:24 | j | Switch.cs:77:10:77:11 | M7 | | Switch.cs:78:5:89:5 | {...} | Switch.cs:77:10:77:11 | M7 | | Switch.cs:79:9:87:9 | After switch (...) {...} | Switch.cs:77:10:77:11 | M7 | | Switch.cs:79:9:87:9 | switch (...) {...} | Switch.cs:77:10:77:11 | M7 | @@ -6234,6 +6389,7 @@ nodeEnclosing | Switch.cs:91:10:91:11 | Entry | Switch.cs:91:10:91:11 | M8 | | Switch.cs:91:10:91:11 | Exit | Switch.cs:91:10:91:11 | M8 | | Switch.cs:91:10:91:11 | Normal Exit | Switch.cs:91:10:91:11 | M8 | +| Switch.cs:91:20:91:20 | o | Switch.cs:91:10:91:11 | M8 | | Switch.cs:92:5:99:5 | {...} | Switch.cs:91:10:91:11 | M8 | | Switch.cs:93:9:97:9 | After switch (...) {...} | Switch.cs:91:10:91:11 | M8 | | Switch.cs:93:9:97:9 | switch (...) {...} | Switch.cs:91:10:91:11 | M8 | @@ -6251,6 +6407,7 @@ nodeEnclosing | Switch.cs:101:9:101:10 | Entry | Switch.cs:101:9:101:10 | M9 | | Switch.cs:101:9:101:10 | Exit | Switch.cs:101:9:101:10 | M9 | | Switch.cs:101:9:101:10 | Normal Exit | Switch.cs:101:9:101:10 | M9 | +| Switch.cs:101:19:101:19 | s | Switch.cs:101:9:101:10 | M9 | | Switch.cs:102:5:109:5 | {...} | Switch.cs:101:9:101:10 | M9 | | Switch.cs:103:9:107:9 | After switch (...) {...} | Switch.cs:101:9:101:10 | M9 | | Switch.cs:103:9:107:9 | switch (...) {...} | Switch.cs:101:9:101:10 | M9 | @@ -6291,6 +6448,7 @@ nodeEnclosing | Switch.cs:113:9:113:11 | Entry | Switch.cs:113:9:113:11 | M10 | | Switch.cs:113:9:113:11 | Exit | Switch.cs:113:9:113:11 | M10 | | Switch.cs:113:9:113:11 | Normal Exit | Switch.cs:113:9:113:11 | M10 | +| Switch.cs:113:20:113:20 | s | Switch.cs:113:9:113:11 | M10 | | Switch.cs:114:5:121:5 | {...} | Switch.cs:113:9:113:11 | M10 | | Switch.cs:115:9:119:9 | After switch (...) {...} | Switch.cs:113:9:113:11 | M10 | | Switch.cs:115:9:119:9 | switch (...) {...} | Switch.cs:113:9:113:11 | M10 | @@ -6333,6 +6491,7 @@ nodeEnclosing | Switch.cs:123:10:123:12 | Entry | Switch.cs:123:10:123:12 | M11 | | Switch.cs:123:10:123:12 | Exit | Switch.cs:123:10:123:12 | M11 | | Switch.cs:123:10:123:12 | Normal Exit | Switch.cs:123:10:123:12 | M11 | +| Switch.cs:123:21:123:21 | o | Switch.cs:123:10:123:12 | M11 | | Switch.cs:124:5:127:5 | After {...} | Switch.cs:123:10:123:12 | M11 | | Switch.cs:124:5:127:5 | {...} | Switch.cs:123:10:123:12 | M11 | | Switch.cs:125:9:126:19 | After if (...) ... | Switch.cs:123:10:123:12 | M11 | @@ -6355,6 +6514,7 @@ nodeEnclosing | Switch.cs:129:12:129:14 | Entry | Switch.cs:129:12:129:14 | M12 | | Switch.cs:129:12:129:14 | Exit | Switch.cs:129:12:129:14 | M12 | | Switch.cs:129:12:129:14 | Normal Exit | Switch.cs:129:12:129:14 | M12 | +| Switch.cs:129:23:129:23 | o | Switch.cs:129:12:129:14 | M12 | | Switch.cs:130:5:132:5 | {...} | Switch.cs:129:12:129:14 | M12 | | Switch.cs:131:9:131:67 | Before return ...; | Switch.cs:129:12:129:14 | M12 | | Switch.cs:131:9:131:67 | return ...; | Switch.cs:129:12:129:14 | M12 | @@ -6377,6 +6537,7 @@ nodeEnclosing | Switch.cs:134:9:134:11 | Entry | Switch.cs:134:9:134:11 | M13 | | Switch.cs:134:9:134:11 | Exit | Switch.cs:134:9:134:11 | M13 | | Switch.cs:134:9:134:11 | Normal Exit | Switch.cs:134:9:134:11 | M13 | +| Switch.cs:134:17:134:17 | i | Switch.cs:134:9:134:11 | M13 | | Switch.cs:135:5:142:5 | {...} | Switch.cs:134:9:134:11 | M13 | | Switch.cs:136:9:141:9 | switch (...) {...} | Switch.cs:134:9:134:11 | M13 | | Switch.cs:136:17:136:17 | access to parameter i | Switch.cs:134:9:134:11 | M13 | @@ -6405,6 +6566,7 @@ nodeEnclosing | Switch.cs:144:9:144:11 | Entry | Switch.cs:144:9:144:11 | M14 | | Switch.cs:144:9:144:11 | Exit | Switch.cs:144:9:144:11 | M14 | | Switch.cs:144:9:144:11 | Normal Exit | Switch.cs:144:9:144:11 | M14 | +| Switch.cs:144:17:144:17 | i | Switch.cs:144:9:144:11 | M14 | | Switch.cs:145:5:152:5 | {...} | Switch.cs:144:9:144:11 | M14 | | Switch.cs:146:9:151:9 | switch (...) {...} | Switch.cs:144:9:144:11 | M14 | | Switch.cs:146:17:146:17 | access to parameter i | Switch.cs:144:9:144:11 | M14 | @@ -6433,6 +6595,7 @@ nodeEnclosing | Switch.cs:154:10:154:12 | Entry | Switch.cs:154:10:154:12 | M15 | | Switch.cs:154:10:154:12 | Exit | Switch.cs:154:10:154:12 | M15 | | Switch.cs:154:10:154:12 | Normal Exit | Switch.cs:154:10:154:12 | M15 | +| Switch.cs:154:19:154:19 | b | Switch.cs:154:10:154:12 | M15 | | Switch.cs:155:5:161:5 | After {...} | Switch.cs:154:10:154:12 | M15 | | Switch.cs:155:5:161:5 | {...} | Switch.cs:154:10:154:12 | M15 | | Switch.cs:156:9:156:55 | ... ...; | Switch.cs:154:10:154:12 | M15 | @@ -6488,6 +6651,7 @@ nodeEnclosing | Switch.cs:163:10:163:12 | Entry | Switch.cs:163:10:163:12 | M16 | | Switch.cs:163:10:163:12 | Exit | Switch.cs:163:10:163:12 | M16 | | Switch.cs:163:10:163:12 | Normal Exit | Switch.cs:163:10:163:12 | M16 | +| Switch.cs:163:18:163:18 | i | Switch.cs:163:10:163:12 | M16 | | Switch.cs:164:5:178:5 | After {...} | Switch.cs:163:10:163:12 | M16 | | Switch.cs:164:5:178:5 | {...} | Switch.cs:163:10:163:12 | M16 | | Switch.cs:165:9:177:9 | After switch (...) {...} | Switch.cs:163:10:163:12 | M16 | @@ -6545,6 +6709,7 @@ nodeEnclosing | TypeAccesses.cs:3:10:3:10 | Entry | TypeAccesses.cs:3:10:3:10 | M | | TypeAccesses.cs:3:10:3:10 | Exit | TypeAccesses.cs:3:10:3:10 | M | | TypeAccesses.cs:3:10:3:10 | Normal Exit | TypeAccesses.cs:3:10:3:10 | M | +| TypeAccesses.cs:3:19:3:19 | o | TypeAccesses.cs:3:10:3:10 | M | | TypeAccesses.cs:4:5:9:5 | After {...} | TypeAccesses.cs:3:10:3:10 | M | | TypeAccesses.cs:4:5:9:5 | {...} | TypeAccesses.cs:3:10:3:10 | M | | TypeAccesses.cs:5:9:5:26 | ... ...; | TypeAccesses.cs:3:10:3:10 | M | @@ -6598,6 +6763,7 @@ nodeEnclosing | VarDecls.cs:5:18:5:19 | Entry | VarDecls.cs:5:18:5:19 | M1 | | VarDecls.cs:5:18:5:19 | Exit | VarDecls.cs:5:18:5:19 | M1 | | VarDecls.cs:5:18:5:19 | Normal Exit | VarDecls.cs:5:18:5:19 | M1 | +| VarDecls.cs:5:30:5:36 | strings | VarDecls.cs:5:18:5:19 | M1 | | VarDecls.cs:6:5:11:5 | {...} | VarDecls.cs:5:18:5:19 | M1 | | VarDecls.cs:7:9:10:9 | fixed(...) { ... } | VarDecls.cs:5:18:5:19 | M1 | | VarDecls.cs:7:22:7:23 | access to local variable c1 | VarDecls.cs:5:18:5:19 | M1 | @@ -6634,6 +6800,7 @@ nodeEnclosing | VarDecls.cs:13:12:13:13 | Entry | VarDecls.cs:13:12:13:13 | M2 | | VarDecls.cs:13:12:13:13 | Exit | VarDecls.cs:13:12:13:13 | M2 | | VarDecls.cs:13:12:13:13 | Normal Exit | VarDecls.cs:13:12:13:13 | M2 | +| VarDecls.cs:13:22:13:22 | s | VarDecls.cs:13:12:13:13 | M2 | | VarDecls.cs:14:5:17:5 | {...} | VarDecls.cs:13:12:13:13 | M2 | | VarDecls.cs:15:9:15:30 | ... ...; | VarDecls.cs:13:12:13:13 | M2 | | VarDecls.cs:15:9:15:30 | After ... ...; | VarDecls.cs:13:12:13:13 | M2 | @@ -6657,6 +6824,7 @@ nodeEnclosing | VarDecls.cs:19:7:19:8 | Entry | VarDecls.cs:19:7:19:8 | M3 | | VarDecls.cs:19:7:19:8 | Exit | VarDecls.cs:19:7:19:8 | M3 | | VarDecls.cs:19:7:19:8 | Normal Exit | VarDecls.cs:19:7:19:8 | M3 | +| VarDecls.cs:19:15:19:15 | b | VarDecls.cs:19:7:19:8 | M3 | | VarDecls.cs:20:5:26:5 | {...} | VarDecls.cs:19:7:19:8 | M3 | | VarDecls.cs:21:9:22:13 | After using (...) {...} | VarDecls.cs:19:7:19:8 | M3 | | VarDecls.cs:21:9:22:13 | using (...) {...} | VarDecls.cs:19:7:19:8 | M3 | @@ -6706,6 +6874,7 @@ nodeEnclosing | cflow.cs:5:17:5:20 | Entry | cflow.cs:5:17:5:20 | Main | | cflow.cs:5:17:5:20 | Exit | cflow.cs:5:17:5:20 | Main | | cflow.cs:5:17:5:20 | Normal Exit | cflow.cs:5:17:5:20 | Main | +| cflow.cs:5:31:5:34 | args | cflow.cs:5:17:5:20 | Main | | cflow.cs:6:5:35:5 | After {...} | cflow.cs:5:17:5:20 | Main | | cflow.cs:6:5:35:5 | {...} | cflow.cs:5:17:5:20 | Main | | cflow.cs:7:9:7:28 | ... ...; | cflow.cs:5:17:5:20 | Main | @@ -6889,6 +7058,7 @@ nodeEnclosing | cflow.cs:37:17:37:22 | Exceptional Exit | cflow.cs:37:17:37:22 | Switch | | cflow.cs:37:17:37:22 | Exit | cflow.cs:37:17:37:22 | Switch | | cflow.cs:37:17:37:22 | Normal Exit | cflow.cs:37:17:37:22 | Switch | +| cflow.cs:37:28:37:28 | a | cflow.cs:37:17:37:22 | Switch | | cflow.cs:38:5:68:5 | {...} | cflow.cs:37:17:37:22 | Switch | | cflow.cs:39:9:50:9 | After switch (...) {...} | cflow.cs:37:17:37:22 | Switch | | cflow.cs:39:9:50:9 | switch (...) {...} | cflow.cs:37:17:37:22 | Switch | @@ -6996,6 +7166,7 @@ nodeEnclosing | cflow.cs:70:18:70:18 | Entry | cflow.cs:70:18:70:18 | M | | cflow.cs:70:18:70:18 | Exit | cflow.cs:70:18:70:18 | M | | cflow.cs:70:18:70:18 | Normal Exit | cflow.cs:70:18:70:18 | M | +| cflow.cs:70:27:70:27 | s | cflow.cs:70:18:70:18 | M | | cflow.cs:71:5:82:5 | After {...} | cflow.cs:70:18:70:18 | M | | cflow.cs:71:5:82:5 | {...} | cflow.cs:70:18:70:18 | M | | cflow.cs:72:9:73:19 | After if (...) ... | cflow.cs:70:18:70:18 | M | @@ -7038,6 +7209,7 @@ nodeEnclosing | cflow.cs:84:18:84:19 | Entry | cflow.cs:84:18:84:19 | M2 | | cflow.cs:84:18:84:19 | Exit | cflow.cs:84:18:84:19 | M2 | | cflow.cs:84:18:84:19 | Normal Exit | cflow.cs:84:18:84:19 | M2 | +| cflow.cs:84:28:84:28 | s | cflow.cs:84:18:84:19 | M2 | | cflow.cs:85:5:88:5 | After {...} | cflow.cs:84:18:84:19 | M2 | | cflow.cs:85:5:88:5 | {...} | cflow.cs:84:18:84:19 | M2 | | cflow.cs:86:9:87:33 | After if (...) ... | cflow.cs:84:18:84:19 | M2 | @@ -7070,6 +7242,7 @@ nodeEnclosing | cflow.cs:90:18:90:19 | Exceptional Exit | cflow.cs:90:18:90:19 | M3 | | cflow.cs:90:18:90:19 | Exit | cflow.cs:90:18:90:19 | M3 | | cflow.cs:90:18:90:19 | Normal Exit | cflow.cs:90:18:90:19 | M3 | +| cflow.cs:90:28:90:28 | s | cflow.cs:90:18:90:19 | M3 | | cflow.cs:91:5:104:5 | After {...} | cflow.cs:90:18:90:19 | M3 | | cflow.cs:91:5:104:5 | {...} | cflow.cs:90:18:90:19 | M3 | | cflow.cs:92:9:93:49 | After if (...) ... | cflow.cs:90:18:90:19 | M3 | @@ -7157,6 +7330,7 @@ nodeEnclosing | cflow.cs:106:18:106:19 | Entry | cflow.cs:106:18:106:19 | M4 | | cflow.cs:106:18:106:19 | Exit | cflow.cs:106:18:106:19 | M4 | | cflow.cs:106:18:106:19 | Normal Exit | cflow.cs:106:18:106:19 | M4 | +| cflow.cs:106:28:106:28 | s | cflow.cs:106:18:106:19 | M4 | | cflow.cs:107:5:117:5 | After {...} | cflow.cs:106:18:106:19 | M4 | | cflow.cs:107:5:117:5 | {...} | cflow.cs:106:18:106:19 | M4 | | cflow.cs:108:9:115:9 | After if (...) ... | cflow.cs:106:18:106:19 | M4 | @@ -7189,6 +7363,7 @@ nodeEnclosing | cflow.cs:119:20:119:21 | Entry | cflow.cs:119:20:119:21 | M5 | | cflow.cs:119:20:119:21 | Exit | cflow.cs:119:20:119:21 | M5 | | cflow.cs:119:20:119:21 | Normal Exit | cflow.cs:119:20:119:21 | M5 | +| cflow.cs:119:30:119:30 | s | cflow.cs:119:20:119:21 | M5 | | cflow.cs:120:5:124:5 | {...} | cflow.cs:119:20:119:21 | M5 | | cflow.cs:121:9:121:18 | ... ...; | cflow.cs:119:20:119:21 | M5 | | cflow.cs:121:9:121:18 | After ... ...; | cflow.cs:119:20:119:21 | M5 | @@ -7236,6 +7411,7 @@ nodeEnclosing | cflow.cs:127:62:127:64 | Entry | cflow.cs:127:62:127:64 | set_Prop | | cflow.cs:127:62:127:64 | Exit | cflow.cs:127:62:127:64 | set_Prop | | cflow.cs:127:62:127:64 | Normal Exit | cflow.cs:127:62:127:64 | set_Prop | +| cflow.cs:127:62:127:64 | value | cflow.cs:127:62:127:64 | set_Prop | | cflow.cs:127:66:127:83 | After {...} | cflow.cs:127:62:127:64 | set_Prop | | cflow.cs:127:66:127:83 | {...} | cflow.cs:127:62:127:64 | set_Prop | | cflow.cs:127:68:127:72 | After access to field Field | cflow.cs:127:62:127:64 | set_Prop | @@ -7258,6 +7434,7 @@ nodeEnclosing | cflow.cs:129:5:129:15 | call to constructor Object | cflow.cs:129:5:129:15 | ControlFlow | | cflow.cs:129:5:129:15 | call to method | cflow.cs:129:5:129:15 | ControlFlow | | cflow.cs:129:5:129:15 | this access | cflow.cs:129:5:129:15 | ControlFlow | +| cflow.cs:129:24:129:24 | s | cflow.cs:129:5:129:15 | ControlFlow | | cflow.cs:130:5:132:5 | After {...} | cflow.cs:129:5:129:15 | ControlFlow | | cflow.cs:130:5:132:5 | {...} | cflow.cs:129:5:129:15 | ControlFlow | | cflow.cs:131:9:131:13 | After access to field Field | cflow.cs:129:5:129:15 | ControlFlow | @@ -7273,6 +7450,7 @@ nodeEnclosing | cflow.cs:134:5:134:15 | Entry | cflow.cs:134:5:134:15 | ControlFlow | | cflow.cs:134:5:134:15 | Exit | cflow.cs:134:5:134:15 | ControlFlow | | cflow.cs:134:5:134:15 | Normal Exit | cflow.cs:134:5:134:15 | ControlFlow | +| cflow.cs:134:21:134:21 | i | cflow.cs:134:5:134:15 | ControlFlow | | cflow.cs:134:26:134:29 | After call to constructor ControlFlow | cflow.cs:134:5:134:15 | ControlFlow | | cflow.cs:134:26:134:29 | Before call to constructor ControlFlow | cflow.cs:134:5:134:15 | ControlFlow | | cflow.cs:134:26:134:29 | call to constructor ControlFlow | cflow.cs:134:5:134:15 | ControlFlow | @@ -7300,6 +7478,8 @@ nodeEnclosing | cflow.cs:138:40:138:40 | Entry | cflow.cs:138:40:138:40 | + | | cflow.cs:138:40:138:40 | Exit | cflow.cs:138:40:138:40 | + | | cflow.cs:138:40:138:40 | Normal Exit | cflow.cs:138:40:138:40 | + | +| cflow.cs:138:54:138:54 | x | cflow.cs:138:40:138:40 | + | +| cflow.cs:138:69:138:69 | y | cflow.cs:138:40:138:40 | + | | cflow.cs:139:5:142:5 | {...} | cflow.cs:138:40:138:40 | + | | cflow.cs:140:9:140:28 | After call to method WriteLine | cflow.cs:138:40:138:40 | + | | cflow.cs:140:9:140:28 | Before call to method WriteLine | cflow.cs:138:40:138:40 | + | @@ -7310,6 +7490,8 @@ nodeEnclosing | cflow.cs:141:9:141:17 | Before return ...; | cflow.cs:138:40:138:40 | + | | cflow.cs:141:9:141:17 | return ...; | cflow.cs:138:40:138:40 | + | | cflow.cs:141:16:141:16 | access to parameter y | cflow.cs:138:40:138:40 | + | +| cflow.cs:144:28:144:28 | i | cflow.cs:144:33:144:35 | get_Item | +| cflow.cs:144:28:144:28 | i | cflow.cs:144:56:144:58 | set_Item | | cflow.cs:144:33:144:35 | Entry | cflow.cs:144:33:144:35 | get_Item | | cflow.cs:144:33:144:35 | Exit | cflow.cs:144:33:144:35 | get_Item | | cflow.cs:144:33:144:35 | Normal Exit | cflow.cs:144:33:144:35 | get_Item | @@ -7327,6 +7509,7 @@ nodeEnclosing | cflow.cs:144:56:144:58 | Entry | cflow.cs:144:56:144:58 | set_Item | | cflow.cs:144:56:144:58 | Exit | cflow.cs:144:56:144:58 | set_Item | | cflow.cs:144:56:144:58 | Normal Exit | cflow.cs:144:56:144:58 | set_Item | +| cflow.cs:144:56:144:58 | value | cflow.cs:144:56:144:58 | set_Item | | cflow.cs:144:60:144:62 | {...} | cflow.cs:144:56:144:58 | set_Item | | cflow.cs:146:10:146:12 | Entry | cflow.cs:146:10:146:12 | For | | cflow.cs:146:10:146:12 | Exit | cflow.cs:146:10:146:12 | For | @@ -7488,6 +7671,7 @@ nodeEnclosing | cflow.cs:181:24:181:37 | After Func y = ... | cflow.cs:179:10:179:16 | Lambdas | | cflow.cs:181:24:181:37 | Before Func y = ... | cflow.cs:179:10:179:16 | Lambdas | | cflow.cs:181:24:181:37 | Func y = ... | cflow.cs:179:10:179:16 | Lambdas | +| cflow.cs:181:28:181:28 | x | cflow.cs:181:28:181:37 | (...) => ... | | cflow.cs:181:28:181:37 | (...) => ... | cflow.cs:179:10:179:16 | Lambdas | | cflow.cs:181:28:181:37 | Entry | cflow.cs:181:28:181:37 | (...) => ... | | cflow.cs:181:28:181:37 | Exit | cflow.cs:181:28:181:37 | (...) => ... | @@ -7507,6 +7691,7 @@ nodeEnclosing | cflow.cs:182:28:182:61 | Exit | cflow.cs:182:28:182:61 | delegate(...) { ... } | | cflow.cs:182:28:182:61 | Normal Exit | cflow.cs:182:28:182:61 | delegate(...) { ... } | | cflow.cs:182:28:182:61 | delegate(...) { ... } | cflow.cs:179:10:179:16 | Lambdas | +| cflow.cs:182:42:182:42 | x | cflow.cs:182:28:182:61 | delegate(...) { ... } | | cflow.cs:182:45:182:61 | {...} | cflow.cs:182:28:182:61 | delegate(...) { ... } | | cflow.cs:182:47:182:59 | Before return ...; | cflow.cs:182:28:182:61 | delegate(...) { ... } | | cflow.cs:182:47:182:59 | return ...; | cflow.cs:182:28:182:61 | delegate(...) { ... } | @@ -7981,6 +8166,7 @@ nodeEnclosing | cflow.cs:284:5:284:18 | Entry | cflow.cs:284:5:284:18 | ControlFlowSub | | cflow.cs:284:5:284:18 | Exit | cflow.cs:284:5:284:18 | ControlFlowSub | | cflow.cs:284:5:284:18 | Normal Exit | cflow.cs:284:5:284:18 | ControlFlowSub | +| cflow.cs:284:27:284:27 | s | cflow.cs:284:5:284:18 | ControlFlowSub | | cflow.cs:284:32:284:35 | After call to constructor ControlFlowSub | cflow.cs:284:5:284:18 | ControlFlowSub | | cflow.cs:284:32:284:35 | Before call to constructor ControlFlowSub | cflow.cs:284:5:284:18 | ControlFlowSub | | cflow.cs:284:32:284:35 | call to constructor ControlFlowSub | cflow.cs:284:5:284:18 | ControlFlowSub | @@ -7988,6 +8174,7 @@ nodeEnclosing | cflow.cs:286:5:286:18 | Entry | cflow.cs:286:5:286:18 | ControlFlowSub | | cflow.cs:286:5:286:18 | Exit | cflow.cs:286:5:286:18 | ControlFlowSub | | cflow.cs:286:5:286:18 | Normal Exit | cflow.cs:286:5:286:18 | ControlFlowSub | +| cflow.cs:286:24:286:24 | i | cflow.cs:286:5:286:18 | ControlFlowSub | | cflow.cs:286:29:286:32 | After call to constructor ControlFlowSub | cflow.cs:286:5:286:18 | ControlFlowSub | | cflow.cs:286:29:286:32 | Before call to constructor ControlFlowSub | cflow.cs:286:5:286:18 | ControlFlowSub | | cflow.cs:286:29:286:32 | call to constructor ControlFlowSub | cflow.cs:286:5:286:18 | ControlFlowSub | @@ -8010,6 +8197,7 @@ nodeEnclosing | cflow.cs:291:12:291:12 | Entry | cflow.cs:291:12:291:12 | M | | cflow.cs:291:12:291:12 | Exit | cflow.cs:291:12:291:12 | M | | cflow.cs:291:12:291:12 | Normal Exit | cflow.cs:291:12:291:12 | M | +| cflow.cs:291:32:291:32 | f | cflow.cs:291:12:291:12 | M | | cflow.cs:291:38:291:38 | access to parameter f | cflow.cs:291:12:291:12 | M | | cflow.cs:291:38:291:41 | After delegate call | cflow.cs:291:12:291:12 | M | | cflow.cs:291:38:291:41 | Before delegate call | cflow.cs:291:12:291:12 | M | @@ -8025,10 +8213,16 @@ nodeEnclosing | cflow.cs:296:5:296:25 | call to constructor Object | cflow.cs:296:5:296:25 | NegationInConstructor | | cflow.cs:296:5:296:25 | call to method | cflow.cs:296:5:296:25 | NegationInConstructor | | cflow.cs:296:5:296:25 | this access | cflow.cs:296:5:296:25 | NegationInConstructor | +| cflow.cs:296:32:296:32 | b | cflow.cs:296:5:296:25 | NegationInConstructor | +| cflow.cs:296:39:296:39 | i | cflow.cs:296:5:296:25 | NegationInConstructor | +| cflow.cs:296:49:296:49 | s | cflow.cs:296:5:296:25 | NegationInConstructor | | cflow.cs:296:52:296:54 | {...} | cflow.cs:296:5:296:25 | NegationInConstructor | | cflow.cs:298:10:298:10 | Entry | cflow.cs:298:10:298:10 | M | | cflow.cs:298:10:298:10 | Exit | cflow.cs:298:10:298:10 | M | | cflow.cs:298:10:298:10 | Normal Exit | cflow.cs:298:10:298:10 | M | +| cflow.cs:298:16:298:16 | i | cflow.cs:298:10:298:10 | M | +| cflow.cs:298:26:298:26 | s | cflow.cs:298:10:298:10 | M | +| cflow.cs:298:34:298:34 | b | cflow.cs:298:10:298:10 | M | | cflow.cs:299:5:301:5 | After {...} | cflow.cs:298:10:298:10 | M | | cflow.cs:299:5:301:5 | {...} | cflow.cs:298:10:298:10 | M | | cflow.cs:300:9:300:72 | After object creation of type NegationInConstructor | cflow.cs:298:10:298:10 | M | @@ -8072,6 +8266,8 @@ nodeEnclosing | cflow.cs:306:60:310:5 | Exit | cflow.cs:306:60:310:5 | get__getter | | cflow.cs:306:60:310:5 | Normal Exit | cflow.cs:306:60:310:5 | (...) => ... | | cflow.cs:306:60:310:5 | Normal Exit | cflow.cs:306:60:310:5 | get__getter | +| cflow.cs:306:61:306:61 | o | cflow.cs:306:60:310:5 | (...) => ... | +| cflow.cs:306:64:306:64 | n | cflow.cs:306:60:310:5 | (...) => ... | | cflow.cs:307:5:310:5 | {...} | cflow.cs:306:60:310:5 | (...) => ... | | cflow.cs:308:9:308:21 | ... ...; | cflow.cs:306:60:310:5 | (...) => ... | | cflow.cs:308:9:308:21 | After ... ...; | cflow.cs:306:60:310:5 | (...) => ... | @@ -8521,6 +8717,12 @@ blockEnclosing | Conditions.cs:146:13:146:13 | After access to parameter b [true] | Conditions.cs:143:10:143:12 | M11 | | DefaultParam.cs:1:7:1:18 | Entry | DefaultParam.cs:1:7:1:18 | DefaultParam | | DefaultParam.cs:3:12:3:13 | Entry | DefaultParam.cs:3:12:3:13 | M1 | +| DefaultParam.cs:3:30:3:30 | After s [match] | DefaultParam.cs:3:12:3:13 | M1 | +| DefaultParam.cs:3:30:3:30 | After s [no-match] | DefaultParam.cs:3:12:3:13 | M1 | +| DefaultParam.cs:3:42:3:42 | After i [match] | DefaultParam.cs:3:12:3:13 | M1 | +| DefaultParam.cs:3:42:3:42 | After i [no-match] | DefaultParam.cs:3:12:3:13 | M1 | +| DefaultParam.cs:3:42:3:42 | i | DefaultParam.cs:3:12:3:13 | M1 | +| DefaultParam.cs:4:5:6:5 | {...} | DefaultParam.cs:3:12:3:13 | M1 | | ExitMethods.cs:6:7:6:17 | Entry | ExitMethods.cs:6:7:6:17 | ExitMethods | | ExitMethods.cs:8:10:8:11 | Entry | ExitMethods.cs:8:10:8:11 | M1 | | ExitMethods.cs:14:10:14:11 | Entry | ExitMethods.cs:14:10:14:11 | M2 | diff --git a/csharp/ql/test/library-tests/controlflow/graph/EntryElement.expected b/csharp/ql/test/library-tests/controlflow/graph/EntryElement.expected index 4451a8fb1aa7..a6c15e141d0a 100644 --- a/csharp/ql/test/library-tests/controlflow/graph/EntryElement.expected +++ b/csharp/ql/test/library-tests/controlflow/graph/EntryElement.expected @@ -2,10 +2,16 @@ | AccessorCalls.cs:1:7:1:19 | call to method | AccessorCalls.cs:1:7:1:19 | this access | | AccessorCalls.cs:1:7:1:19 | this access | AccessorCalls.cs:1:7:1:19 | this access | | AccessorCalls.cs:1:7:1:19 | {...} | AccessorCalls.cs:1:7:1:19 | {...} | +| AccessorCalls.cs:5:18:5:18 | i | AccessorCalls.cs:5:18:5:18 | i | +| AccessorCalls.cs:5:18:5:18 | i | AccessorCalls.cs:5:18:5:18 | i | | AccessorCalls.cs:5:30:5:30 | access to parameter i | AccessorCalls.cs:5:30:5:30 | access to parameter i | +| AccessorCalls.cs:5:33:5:35 | value | AccessorCalls.cs:5:33:5:35 | value | | AccessorCalls.cs:5:37:5:39 | {...} | AccessorCalls.cs:5:37:5:39 | {...} | +| AccessorCalls.cs:7:32:7:34 | value | AccessorCalls.cs:7:32:7:34 | value | | AccessorCalls.cs:7:36:7:38 | {...} | AccessorCalls.cs:7:36:7:38 | {...} | +| AccessorCalls.cs:7:40:7:45 | value | AccessorCalls.cs:7:40:7:45 | value | | AccessorCalls.cs:7:47:7:49 | {...} | AccessorCalls.cs:7:47:7:49 | {...} | +| AccessorCalls.cs:10:26:10:26 | e | AccessorCalls.cs:10:26:10:26 | e | | AccessorCalls.cs:11:5:17:5 | {...} | AccessorCalls.cs:11:5:17:5 | {...} | | AccessorCalls.cs:12:9:12:12 | this access | AccessorCalls.cs:12:9:12:12 | this access | | AccessorCalls.cs:12:9:12:18 | access to field Field | AccessorCalls.cs:12:9:12:12 | this access | @@ -37,6 +43,7 @@ | AccessorCalls.cs:16:9:16:23 | ... -= ... | AccessorCalls.cs:16:9:16:12 | this access | | AccessorCalls.cs:16:9:16:24 | ...; | AccessorCalls.cs:16:9:16:24 | ...; | | AccessorCalls.cs:16:23:16:23 | access to parameter e | AccessorCalls.cs:16:23:16:23 | access to parameter e | +| AccessorCalls.cs:19:26:19:26 | e | AccessorCalls.cs:19:26:19:26 | e | | AccessorCalls.cs:20:5:26:5 | {...} | AccessorCalls.cs:20:5:26:5 | {...} | | AccessorCalls.cs:21:9:21:12 | this access | AccessorCalls.cs:21:9:21:12 | this access | | AccessorCalls.cs:21:9:21:14 | access to field x | AccessorCalls.cs:21:9:21:12 | this access | @@ -155,6 +162,7 @@ | AccessorCalls.cs:53:22:53:27 | access to field x | AccessorCalls.cs:53:22:53:25 | this access | | AccessorCalls.cs:53:22:53:30 | access to indexer | AccessorCalls.cs:53:22:53:25 | this access | | AccessorCalls.cs:53:29:53:29 | 0 | AccessorCalls.cs:53:29:53:29 | 0 | +| AccessorCalls.cs:56:17:56:17 | i | AccessorCalls.cs:56:17:56:17 | i | | AccessorCalls.cs:57:5:59:5 | {...} | AccessorCalls.cs:57:5:59:5 | {...} | | AccessorCalls.cs:58:9:58:45 | (..., ...) | AccessorCalls.cs:58:10:58:13 | this access | | AccessorCalls.cs:58:9:58:85 | ... = ... | AccessorCalls.cs:58:10:58:13 | this access | @@ -178,6 +186,7 @@ | AccessorCalls.cs:58:77:58:80 | this access | AccessorCalls.cs:58:77:58:80 | this access | | AccessorCalls.cs:58:77:58:83 | access to indexer | AccessorCalls.cs:58:77:58:80 | this access | | AccessorCalls.cs:58:82:58:82 | 1 | AccessorCalls.cs:58:82:58:82 | 1 | +| AccessorCalls.cs:61:17:61:17 | i | AccessorCalls.cs:61:17:61:17 | i | | AccessorCalls.cs:62:5:64:5 | {...} | AccessorCalls.cs:62:5:64:5 | {...} | | AccessorCalls.cs:63:9:63:51 | (..., ...) | AccessorCalls.cs:63:10:63:13 | this access | | AccessorCalls.cs:63:9:63:97 | ... = ... | AccessorCalls.cs:63:10:63:13 | this access | @@ -207,6 +216,9 @@ | AccessorCalls.cs:63:87:63:92 | access to field x | AccessorCalls.cs:63:87:63:90 | this access | | AccessorCalls.cs:63:87:63:95 | access to indexer | AccessorCalls.cs:63:87:63:90 | this access | | AccessorCalls.cs:63:94:63:94 | 1 | AccessorCalls.cs:63:94:63:94 | 1 | +| AccessorCalls.cs:66:20:66:20 | o | AccessorCalls.cs:66:20:66:20 | o | +| AccessorCalls.cs:66:27:66:27 | i | AccessorCalls.cs:66:27:66:27 | i | +| AccessorCalls.cs:66:43:66:43 | e | AccessorCalls.cs:66:43:66:43 | e | | AccessorCalls.cs:67:5:74:5 | {...} | AccessorCalls.cs:67:5:74:5 | {...} | | AccessorCalls.cs:68:9:68:22 | ... ...; | AccessorCalls.cs:68:9:68:22 | ... ...; | | AccessorCalls.cs:68:17:68:17 | access to local variable d | AccessorCalls.cs:68:17:68:17 | access to local variable d | @@ -285,6 +297,7 @@ | Assert.cs:5:7:5:17 | call to method | Assert.cs:5:7:5:17 | this access | | Assert.cs:5:7:5:17 | this access | Assert.cs:5:7:5:17 | this access | | Assert.cs:5:7:5:17 | {...} | Assert.cs:5:7:5:17 | {...} | +| Assert.cs:7:18:7:18 | b | Assert.cs:7:18:7:18 | b | | Assert.cs:8:5:12:5 | {...} | Assert.cs:8:5:12:5 | {...} | | Assert.cs:9:9:9:33 | ... ...; | Assert.cs:9:9:9:33 | ... ...; | | Assert.cs:9:16:9:16 | access to local variable s | Assert.cs:9:16:9:16 | access to local variable s | @@ -302,6 +315,7 @@ | Assert.cs:11:9:11:36 | ...; | Assert.cs:11:9:11:36 | ...; | | Assert.cs:11:27:11:27 | access to local variable s | Assert.cs:11:27:11:27 | access to local variable s | | Assert.cs:11:27:11:34 | access to property Length | Assert.cs:11:27:11:27 | access to local variable s | +| Assert.cs:14:18:14:18 | b | Assert.cs:14:18:14:18 | b | | Assert.cs:15:5:19:5 | {...} | Assert.cs:15:5:19:5 | {...} | | Assert.cs:16:9:16:33 | ... ...; | Assert.cs:16:9:16:33 | ... ...; | | Assert.cs:16:16:16:16 | access to local variable s | Assert.cs:16:16:16:16 | access to local variable s | @@ -317,6 +331,7 @@ | Assert.cs:18:9:18:36 | ...; | Assert.cs:18:9:18:36 | ...; | | Assert.cs:18:27:18:27 | access to local variable s | Assert.cs:18:27:18:27 | access to local variable s | | Assert.cs:18:27:18:34 | access to property Length | Assert.cs:18:27:18:27 | access to local variable s | +| Assert.cs:21:18:21:18 | b | Assert.cs:21:18:21:18 | b | | Assert.cs:22:5:26:5 | {...} | Assert.cs:22:5:26:5 | {...} | | Assert.cs:23:9:23:33 | ... ...; | Assert.cs:23:9:23:33 | ... ...; | | Assert.cs:23:16:23:16 | access to local variable s | Assert.cs:23:16:23:16 | access to local variable s | @@ -332,6 +347,7 @@ | Assert.cs:25:9:25:36 | ...; | Assert.cs:25:9:25:36 | ...; | | Assert.cs:25:27:25:27 | access to local variable s | Assert.cs:25:27:25:27 | access to local variable s | | Assert.cs:25:27:25:34 | access to property Length | Assert.cs:25:27:25:27 | access to local variable s | +| Assert.cs:28:18:28:18 | b | Assert.cs:28:18:28:18 | b | | Assert.cs:29:5:33:5 | {...} | Assert.cs:29:5:33:5 | {...} | | Assert.cs:30:9:30:33 | ... ...; | Assert.cs:30:9:30:33 | ... ...; | | Assert.cs:30:16:30:16 | access to local variable s | Assert.cs:30:16:30:16 | access to local variable s | @@ -349,6 +365,7 @@ | Assert.cs:32:9:32:36 | ...; | Assert.cs:32:9:32:36 | ...; | | Assert.cs:32:27:32:27 | access to local variable s | Assert.cs:32:27:32:27 | access to local variable s | | Assert.cs:32:27:32:34 | access to property Length | Assert.cs:32:27:32:27 | access to local variable s | +| Assert.cs:35:18:35:18 | b | Assert.cs:35:18:35:18 | b | | Assert.cs:36:5:40:5 | {...} | Assert.cs:36:5:40:5 | {...} | | Assert.cs:37:9:37:33 | ... ...; | Assert.cs:37:9:37:33 | ... ...; | | Assert.cs:37:16:37:16 | access to local variable s | Assert.cs:37:16:37:16 | access to local variable s | @@ -366,6 +383,7 @@ | Assert.cs:39:9:39:36 | ...; | Assert.cs:39:9:39:36 | ...; | | Assert.cs:39:27:39:27 | access to local variable s | Assert.cs:39:27:39:27 | access to local variable s | | Assert.cs:39:27:39:34 | access to property Length | Assert.cs:39:27:39:27 | access to local variable s | +| Assert.cs:42:18:42:18 | b | Assert.cs:42:18:42:18 | b | | Assert.cs:43:5:47:5 | {...} | Assert.cs:43:5:47:5 | {...} | | Assert.cs:44:9:44:33 | ... ...; | Assert.cs:44:9:44:33 | ... ...; | | Assert.cs:44:16:44:16 | access to local variable s | Assert.cs:44:16:44:16 | access to local variable s | @@ -383,6 +401,7 @@ | Assert.cs:46:9:46:36 | ...; | Assert.cs:46:9:46:36 | ...; | | Assert.cs:46:27:46:27 | access to local variable s | Assert.cs:46:27:46:27 | access to local variable s | | Assert.cs:46:27:46:34 | access to property Length | Assert.cs:46:27:46:27 | access to local variable s | +| Assert.cs:49:18:49:18 | b | Assert.cs:49:18:49:18 | b | | Assert.cs:50:5:54:5 | {...} | Assert.cs:50:5:54:5 | {...} | | Assert.cs:51:9:51:33 | ... ...; | Assert.cs:51:9:51:33 | ... ...; | | Assert.cs:51:16:51:16 | access to local variable s | Assert.cs:51:16:51:16 | access to local variable s | @@ -400,6 +419,7 @@ | Assert.cs:53:9:53:36 | ...; | Assert.cs:53:9:53:36 | ...; | | Assert.cs:53:27:53:27 | access to local variable s | Assert.cs:53:27:53:27 | access to local variable s | | Assert.cs:53:27:53:34 | access to property Length | Assert.cs:53:27:53:27 | access to local variable s | +| Assert.cs:56:18:56:18 | b | Assert.cs:56:18:56:18 | b | | Assert.cs:57:5:61:5 | {...} | Assert.cs:57:5:61:5 | {...} | | Assert.cs:58:9:58:33 | ... ...; | Assert.cs:58:9:58:33 | ... ...; | | Assert.cs:58:16:58:16 | access to local variable s | Assert.cs:58:16:58:16 | access to local variable s | @@ -419,6 +439,7 @@ | Assert.cs:60:9:60:36 | ...; | Assert.cs:60:9:60:36 | ...; | | Assert.cs:60:27:60:27 | access to local variable s | Assert.cs:60:27:60:27 | access to local variable s | | Assert.cs:60:27:60:34 | access to property Length | Assert.cs:60:27:60:27 | access to local variable s | +| Assert.cs:63:18:63:18 | b | Assert.cs:63:18:63:18 | b | | Assert.cs:64:5:68:5 | {...} | Assert.cs:64:5:68:5 | {...} | | Assert.cs:65:9:65:33 | ... ...; | Assert.cs:65:9:65:33 | ... ...; | | Assert.cs:65:16:65:16 | access to local variable s | Assert.cs:65:16:65:16 | access to local variable s | @@ -438,6 +459,7 @@ | Assert.cs:67:9:67:36 | ...; | Assert.cs:67:9:67:36 | ...; | | Assert.cs:67:27:67:27 | access to local variable s | Assert.cs:67:27:67:27 | access to local variable s | | Assert.cs:67:27:67:34 | access to property Length | Assert.cs:67:27:67:27 | access to local variable s | +| Assert.cs:70:19:70:19 | b | Assert.cs:70:19:70:19 | b | | Assert.cs:71:5:75:5 | {...} | Assert.cs:71:5:75:5 | {...} | | Assert.cs:72:9:72:33 | ... ...; | Assert.cs:72:9:72:33 | ... ...; | | Assert.cs:72:16:72:16 | access to local variable s | Assert.cs:72:16:72:16 | access to local variable s | @@ -457,6 +479,7 @@ | Assert.cs:74:9:74:36 | ...; | Assert.cs:74:9:74:36 | ...; | | Assert.cs:74:27:74:27 | access to local variable s | Assert.cs:74:27:74:27 | access to local variable s | | Assert.cs:74:27:74:34 | access to property Length | Assert.cs:74:27:74:27 | access to local variable s | +| Assert.cs:77:19:77:19 | b | Assert.cs:77:19:77:19 | b | | Assert.cs:78:5:82:5 | {...} | Assert.cs:78:5:82:5 | {...} | | Assert.cs:79:9:79:33 | ... ...; | Assert.cs:79:9:79:33 | ... ...; | | Assert.cs:79:16:79:16 | access to local variable s | Assert.cs:79:16:79:16 | access to local variable s | @@ -476,6 +499,7 @@ | Assert.cs:81:9:81:36 | ...; | Assert.cs:81:9:81:36 | ...; | | Assert.cs:81:27:81:27 | access to local variable s | Assert.cs:81:27:81:27 | access to local variable s | | Assert.cs:81:27:81:34 | access to property Length | Assert.cs:81:27:81:27 | access to local variable s | +| Assert.cs:84:19:84:19 | b | Assert.cs:84:19:84:19 | b | | Assert.cs:85:5:129:5 | {...} | Assert.cs:85:5:129:5 | {...} | | Assert.cs:86:9:86:33 | ... ...; | Assert.cs:86:9:86:33 | ... ...; | | Assert.cs:86:16:86:16 | access to local variable s | Assert.cs:86:16:86:16 | access to local variable s | @@ -659,7 +683,13 @@ | Assert.cs:128:9:128:36 | ...; | Assert.cs:128:9:128:36 | ...; | | Assert.cs:128:27:128:27 | access to local variable s | Assert.cs:128:27:128:27 | access to local variable s | | Assert.cs:128:27:128:34 | access to property Length | Assert.cs:128:27:128:27 | access to local variable s | +| Assert.cs:132:74:132:83 | condition1 | Assert.cs:132:74:132:83 | condition1 | +| Assert.cs:133:73:133:82 | condition2 | Assert.cs:133:73:133:82 | condition2 | +| Assert.cs:134:17:134:28 | nonCondition | Assert.cs:134:17:134:28 | nonCondition | | Assert.cs:135:5:136:5 | {...} | Assert.cs:135:5:136:5 | {...} | +| Assert.cs:138:19:138:20 | b1 | Assert.cs:138:19:138:20 | b1 | +| Assert.cs:138:28:138:29 | b2 | Assert.cs:138:28:138:29 | b2 | +| Assert.cs:138:37:138:38 | b3 | Assert.cs:138:37:138:38 | b3 | | Assert.cs:139:5:142:5 | {...} | Assert.cs:139:5:142:5 | {...} | | Assert.cs:140:9:140:35 | call to method AssertTrueFalse | Assert.cs:140:9:140:35 | this access | | Assert.cs:140:9:140:35 | this access | Assert.cs:140:9:140:35 | this access | @@ -703,15 +733,23 @@ | Assignments.cs:14:9:14:35 | ... += ... | Assignments.cs:14:9:14:13 | this access | | Assignments.cs:14:9:14:36 | ...; | Assignments.cs:14:9:14:36 | ...; | | Assignments.cs:14:18:14:35 | (...) => ... | Assignments.cs:14:18:14:35 | (...) => ... | +| Assignments.cs:14:19:14:24 | sender | Assignments.cs:14:19:14:24 | sender | +| Assignments.cs:14:27:14:27 | e | Assignments.cs:14:27:14:27 | e | | Assignments.cs:14:33:14:35 | {...} | Assignments.cs:14:33:14:35 | {...} | +| Assignments.cs:17:54:17:54 | x | Assignments.cs:17:54:17:54 | x | +| Assignments.cs:17:69:17:69 | y | Assignments.cs:17:69:17:69 | y | | Assignments.cs:18:5:20:5 | {...} | Assignments.cs:18:5:20:5 | {...} | | Assignments.cs:19:9:19:17 | return ...; | Assignments.cs:19:16:19:16 | access to parameter x | | Assignments.cs:19:16:19:16 | access to parameter x | Assignments.cs:19:16:19:16 | access to parameter x | +| Assignments.cs:27:33:27:33 | x | Assignments.cs:27:33:27:33 | x | | Assignments.cs:28:5:30:5 | {...} | Assignments.cs:28:5:30:5 | {...} | | Assignments.cs:29:9:29:9 | access to parameter x | Assignments.cs:29:9:29:9 | access to parameter x | | Assignments.cs:29:9:29:14 | ... = ... | Assignments.cs:29:9:29:9 | access to parameter x | | Assignments.cs:29:9:29:15 | ...; | Assignments.cs:29:9:29:15 | ...; | | Assignments.cs:29:13:29:14 | 42 | Assignments.cs:29:13:29:14 | 42 | +| Assignments.cs:32:32:32:32 | x | Assignments.cs:32:32:32:32 | x | +| Assignments.cs:32:42:32:42 | o | Assignments.cs:32:42:32:42 | o | +| Assignments.cs:32:56:32:56 | y | Assignments.cs:32:56:32:56 | y | | Assignments.cs:33:5:36:5 | {...} | Assignments.cs:33:5:36:5 | {...} | | Assignments.cs:34:9:34:9 | access to parameter x | Assignments.cs:34:9:34:9 | access to parameter x | | Assignments.cs:34:9:34:14 | ... = ... | Assignments.cs:34:9:34:9 | access to parameter x | @@ -752,6 +790,7 @@ | BreakInTry.cs:1:7:1:16 | call to method | BreakInTry.cs:1:7:1:16 | this access | | BreakInTry.cs:1:7:1:16 | this access | BreakInTry.cs:1:7:1:16 | this access | | BreakInTry.cs:1:7:1:16 | {...} | BreakInTry.cs:1:7:1:16 | {...} | +| BreakInTry.cs:3:22:3:25 | args | BreakInTry.cs:3:22:3:25 | args | | BreakInTry.cs:4:5:18:5 | {...} | BreakInTry.cs:4:5:18:5 | {...} | | BreakInTry.cs:5:9:17:9 | try {...} ... | BreakInTry.cs:5:9:17:9 | try {...} ... | | BreakInTry.cs:6:9:12:9 | {...} | BreakInTry.cs:6:9:12:9 | {...} | @@ -770,6 +809,7 @@ | BreakInTry.cs:15:17:15:28 | ... == ... | BreakInTry.cs:15:17:15:20 | access to parameter args | | BreakInTry.cs:15:25:15:28 | null | BreakInTry.cs:15:25:15:28 | null | | BreakInTry.cs:16:17:16:17 | ; | BreakInTry.cs:16:17:16:17 | ; | +| BreakInTry.cs:20:22:20:25 | args | BreakInTry.cs:20:22:20:25 | args | | BreakInTry.cs:21:5:36:5 | {...} | BreakInTry.cs:21:5:36:5 | {...} | | BreakInTry.cs:22:9:34:9 | foreach (... ... in ...) ... | BreakInTry.cs:22:9:34:9 | foreach (... ... in ...) ... | | BreakInTry.cs:22:22:22:24 | String arg | BreakInTry.cs:22:22:22:24 | String arg | @@ -789,6 +829,7 @@ | BreakInTry.cs:31:29:31:32 | null | BreakInTry.cs:31:29:31:32 | null | | BreakInTry.cs:32:21:32:21 | ; | BreakInTry.cs:32:21:32:21 | ; | | BreakInTry.cs:35:7:35:7 | ; | BreakInTry.cs:35:7:35:7 | ; | +| BreakInTry.cs:38:22:38:25 | args | BreakInTry.cs:38:22:38:25 | args | | BreakInTry.cs:39:5:54:5 | {...} | BreakInTry.cs:39:5:54:5 | {...} | | BreakInTry.cs:40:9:52:9 | try {...} ... | BreakInTry.cs:40:9:52:9 | try {...} ... | | BreakInTry.cs:41:9:44:9 | {...} | BreakInTry.cs:41:9:44:9 | {...} | @@ -808,6 +849,7 @@ | BreakInTry.cs:49:28:49:31 | null | BreakInTry.cs:49:28:49:31 | null | | BreakInTry.cs:50:21:50:26 | break; | BreakInTry.cs:50:21:50:26 | break; | | BreakInTry.cs:53:7:53:7 | ; | BreakInTry.cs:53:7:53:7 | ; | +| BreakInTry.cs:56:22:56:25 | args | BreakInTry.cs:56:22:56:25 | args | | BreakInTry.cs:57:5:71:5 | {...} | BreakInTry.cs:57:5:71:5 | {...} | | BreakInTry.cs:58:9:70:9 | try {...} ... | BreakInTry.cs:58:9:70:9 | try {...} ... | | BreakInTry.cs:59:9:62:9 | {...} | BreakInTry.cs:59:9:62:9 | {...} | @@ -839,6 +881,7 @@ | CompileTimeOperators.cs:16:5:18:5 | {...} | CompileTimeOperators.cs:16:5:18:5 | {...} | | CompileTimeOperators.cs:17:9:17:27 | return ...; | CompileTimeOperators.cs:17:16:17:26 | typeof(...) | | CompileTimeOperators.cs:17:16:17:26 | typeof(...) | CompileTimeOperators.cs:17:16:17:26 | typeof(...) | +| CompileTimeOperators.cs:20:23:20:23 | i | CompileTimeOperators.cs:20:23:20:23 | i | | CompileTimeOperators.cs:21:5:23:5 | {...} | CompileTimeOperators.cs:21:5:23:5 | {...} | | CompileTimeOperators.cs:22:9:22:25 | return ...; | CompileTimeOperators.cs:22:16:22:24 | nameof(...) | | CompileTimeOperators.cs:22:16:22:24 | nameof(...) | CompileTimeOperators.cs:22:16:22:24 | nameof(...) | @@ -865,19 +908,25 @@ | ConditionalAccess.cs:1:7:1:23 | call to method | ConditionalAccess.cs:1:7:1:23 | this access | | ConditionalAccess.cs:1:7:1:23 | this access | ConditionalAccess.cs:1:7:1:23 | this access | | ConditionalAccess.cs:1:7:1:23 | {...} | ConditionalAccess.cs:1:7:1:23 | {...} | +| ConditionalAccess.cs:3:20:3:20 | i | ConditionalAccess.cs:3:20:3:20 | i | | ConditionalAccess.cs:3:26:3:26 | access to parameter i | ConditionalAccess.cs:3:26:3:26 | access to parameter i | | ConditionalAccess.cs:3:26:3:38 | call to method ToString | ConditionalAccess.cs:3:26:3:26 | access to parameter i | | ConditionalAccess.cs:3:26:3:49 | call to method ToLower | ConditionalAccess.cs:3:26:3:26 | access to parameter i | +| ConditionalAccess.cs:5:20:5:20 | s | ConditionalAccess.cs:5:20:5:20 | s | | ConditionalAccess.cs:5:26:5:26 | access to parameter s | ConditionalAccess.cs:5:26:5:26 | access to parameter s | | ConditionalAccess.cs:5:26:5:34 | access to property Length | ConditionalAccess.cs:5:26:5:26 | access to parameter s | +| ConditionalAccess.cs:7:20:7:21 | s1 | ConditionalAccess.cs:7:20:7:21 | s1 | +| ConditionalAccess.cs:7:31:7:32 | s2 | ConditionalAccess.cs:7:31:7:32 | s2 | | ConditionalAccess.cs:7:38:7:55 | access to property Length | ConditionalAccess.cs:7:39:7:46 | ... ?? ... | | ConditionalAccess.cs:7:39:7:40 | access to parameter s1 | ConditionalAccess.cs:7:39:7:40 | access to parameter s1 | | ConditionalAccess.cs:7:39:7:46 | ... ?? ... | ConditionalAccess.cs:7:39:7:46 | ... ?? ... | | ConditionalAccess.cs:7:45:7:46 | access to parameter s2 | ConditionalAccess.cs:7:45:7:46 | access to parameter s2 | +| ConditionalAccess.cs:9:19:9:19 | s | ConditionalAccess.cs:9:19:9:19 | s | | ConditionalAccess.cs:9:25:9:25 | access to parameter s | ConditionalAccess.cs:9:25:9:25 | access to parameter s | | ConditionalAccess.cs:9:25:9:33 | access to property Length | ConditionalAccess.cs:9:25:9:25 | access to parameter s | | ConditionalAccess.cs:9:25:9:38 | ... ?? ... | ConditionalAccess.cs:9:25:9:38 | ... ?? ... | | ConditionalAccess.cs:9:38:9:38 | 0 | ConditionalAccess.cs:9:38:9:38 | 0 | +| ConditionalAccess.cs:11:19:11:19 | s | ConditionalAccess.cs:11:19:11:19 | s | | ConditionalAccess.cs:12:5:17:5 | {...} | ConditionalAccess.cs:12:5:17:5 | {...} | | ConditionalAccess.cs:13:9:16:21 | if (...) ... | ConditionalAccess.cs:13:9:16:21 | if (...) ... | | ConditionalAccess.cs:13:13:13:13 | access to parameter s | ConditionalAccess.cs:13:13:13:13 | access to parameter s | @@ -889,9 +938,12 @@ | ConditionalAccess.cs:14:20:14:20 | 0 | ConditionalAccess.cs:14:20:14:20 | 0 | | ConditionalAccess.cs:16:13:16:21 | return ...; | ConditionalAccess.cs:16:20:16:20 | 1 | | ConditionalAccess.cs:16:20:16:20 | 1 | ConditionalAccess.cs:16:20:16:20 | 1 | +| ConditionalAccess.cs:19:22:19:23 | s1 | ConditionalAccess.cs:19:22:19:23 | s1 | +| ConditionalAccess.cs:19:33:19:34 | s2 | ConditionalAccess.cs:19:33:19:34 | s2 | | ConditionalAccess.cs:19:40:19:41 | access to parameter s1 | ConditionalAccess.cs:19:40:19:41 | access to parameter s1 | | ConditionalAccess.cs:19:40:19:60 | call to method CommaJoinWith | ConditionalAccess.cs:19:40:19:41 | access to parameter s1 | | ConditionalAccess.cs:19:58:19:59 | access to parameter s2 | ConditionalAccess.cs:19:58:19:59 | access to parameter s2 | +| ConditionalAccess.cs:21:17:21:17 | i | ConditionalAccess.cs:21:17:21:17 | i | | ConditionalAccess.cs:22:5:26:5 | {...} | ConditionalAccess.cs:22:5:26:5 | {...} | | ConditionalAccess.cs:23:9:23:39 | ... ...; | ConditionalAccess.cs:23:9:23:39 | ... ...; | | ConditionalAccess.cs:23:13:23:13 | access to local variable j | ConditionalAccess.cs:23:13:23:13 | access to local variable j | @@ -911,9 +963,12 @@ | ConditionalAccess.cs:25:13:25:14 | "" | ConditionalAccess.cs:25:13:25:14 | "" | | ConditionalAccess.cs:25:13:25:32 | call to method CommaJoinWith | ConditionalAccess.cs:25:13:25:14 | "" | | ConditionalAccess.cs:25:31:25:31 | access to local variable s | ConditionalAccess.cs:25:31:25:31 | access to local variable s | +| ConditionalAccess.cs:30:22:30:22 | i | ConditionalAccess.cs:30:22:30:22 | i | | ConditionalAccess.cs:30:28:30:28 | access to parameter i | ConditionalAccess.cs:30:28:30:28 | access to parameter i | | ConditionalAccess.cs:30:28:30:32 | ... = ... | ConditionalAccess.cs:30:28:30:28 | access to parameter i | | ConditionalAccess.cs:30:32:30:32 | 0 | ConditionalAccess.cs:30:32:30:32 | 0 | +| ConditionalAccess.cs:32:18:32:18 | b | ConditionalAccess.cs:32:18:32:18 | b | +| ConditionalAccess.cs:32:29:32:29 | i | ConditionalAccess.cs:32:29:32:29 | i | | ConditionalAccess.cs:33:5:36:5 | {...} | ConditionalAccess.cs:33:5:36:5 | {...} | | ConditionalAccess.cs:34:9:34:9 | access to parameter i | ConditionalAccess.cs:34:9:34:9 | access to parameter i | | ConditionalAccess.cs:34:9:34:13 | ... = ... | ConditionalAccess.cs:34:9:34:9 | access to parameter i | @@ -924,10 +979,14 @@ | ConditionalAccess.cs:35:9:35:24 | call to method Out | ConditionalAccess.cs:35:9:35:12 | this access | | ConditionalAccess.cs:35:9:35:25 | ...; | ConditionalAccess.cs:35:9:35:25 | ...; | | ConditionalAccess.cs:35:23:35:23 | access to parameter i | ConditionalAccess.cs:35:23:35:23 | access to parameter i | +| ConditionalAccess.cs:40:21:40:25 | index | ConditionalAccess.cs:40:21:40:25 | index | +| ConditionalAccess.cs:40:21:40:25 | index | ConditionalAccess.cs:40:21:40:25 | index | | ConditionalAccess.cs:42:13:42:28 | {...} | ConditionalAccess.cs:42:13:42:28 | {...} | | ConditionalAccess.cs:42:15:42:26 | return ...; | ConditionalAccess.cs:42:22:42:25 | null | | ConditionalAccess.cs:42:22:42:25 | null | ConditionalAccess.cs:42:22:42:25 | null | +| ConditionalAccess.cs:43:9:43:11 | value | ConditionalAccess.cs:43:9:43:11 | value | | ConditionalAccess.cs:43:13:43:15 | {...} | ConditionalAccess.cs:43:13:43:15 | {...} | +| ConditionalAccess.cs:46:31:46:32 | ca | ConditionalAccess.cs:46:31:46:32 | ca | | ConditionalAccess.cs:47:5:55:5 | {...} | ConditionalAccess.cs:47:5:55:5 | {...} | | ConditionalAccess.cs:48:9:48:10 | access to parameter ca | ConditionalAccess.cs:48:9:48:10 | access to parameter ca | | ConditionalAccess.cs:48:9:48:20 | access to field IntField | ConditionalAccess.cs:48:9:48:10 | access to parameter ca | @@ -967,6 +1026,8 @@ | ConditionalAccess.cs:54:9:54:30 | ...; | ConditionalAccess.cs:54:9:54:30 | ...; | | ConditionalAccess.cs:54:12:54:29 | ... += ... | ConditionalAccess.cs:54:9:54:10 | access to parameter ca | | ConditionalAccess.cs:54:27:54:29 | "!" | ConditionalAccess.cs:54:27:54:29 | "!" | +| ConditionalAccess.cs:60:52:60:53 | s1 | ConditionalAccess.cs:60:52:60:53 | s1 | +| ConditionalAccess.cs:60:63:60:64 | s2 | ConditionalAccess.cs:60:63:60:64 | s2 | | ConditionalAccess.cs:60:70:60:71 | access to parameter s1 | ConditionalAccess.cs:60:70:60:71 | access to parameter s1 | | ConditionalAccess.cs:60:70:60:78 | ... + ... | ConditionalAccess.cs:60:70:60:71 | access to parameter s1 | | ConditionalAccess.cs:60:70:60:83 | ... + ... | ConditionalAccess.cs:60:70:60:71 | access to parameter s1 | @@ -976,6 +1037,8 @@ | Conditions.cs:1:7:1:16 | call to method | Conditions.cs:1:7:1:16 | this access | | Conditions.cs:1:7:1:16 | this access | Conditions.cs:1:7:1:16 | this access | | Conditions.cs:1:7:1:16 | {...} | Conditions.cs:1:7:1:16 | {...} | +| Conditions.cs:3:26:3:28 | inc | Conditions.cs:3:26:3:28 | inc | +| Conditions.cs:3:39:3:39 | x | Conditions.cs:3:39:3:39 | x | | Conditions.cs:4:5:9:5 | {...} | Conditions.cs:4:5:9:5 | {...} | | Conditions.cs:5:9:6:16 | if (...) ... | Conditions.cs:5:9:6:16 | if (...) ... | | Conditions.cs:5:13:5:15 | access to parameter inc | Conditions.cs:5:13:5:15 | access to parameter inc | @@ -988,6 +1051,7 @@ | Conditions.cs:8:13:8:13 | access to parameter x | Conditions.cs:8:13:8:13 | access to parameter x | | Conditions.cs:8:13:8:15 | ...-- | Conditions.cs:8:13:8:13 | access to parameter x | | Conditions.cs:8:13:8:16 | ...; | Conditions.cs:8:13:8:16 | ...; | +| Conditions.cs:11:17:11:17 | b | Conditions.cs:11:17:11:17 | b | | Conditions.cs:12:5:20:5 | {...} | Conditions.cs:12:5:20:5 | {...} | | Conditions.cs:13:9:13:18 | ... ...; | Conditions.cs:13:9:13:18 | ... ...; | | Conditions.cs:13:13:13:13 | access to local variable x | Conditions.cs:13:13:13:13 | access to local variable x | @@ -1010,6 +1074,8 @@ | Conditions.cs:18:17:18:20 | ...; | Conditions.cs:18:17:18:20 | ...; | | Conditions.cs:19:9:19:17 | return ...; | Conditions.cs:19:16:19:16 | access to local variable x | | Conditions.cs:19:16:19:16 | access to local variable x | Conditions.cs:19:16:19:16 | access to local variable x | +| Conditions.cs:22:17:22:18 | b1 | Conditions.cs:22:17:22:18 | b1 | +| Conditions.cs:22:26:22:27 | b2 | Conditions.cs:22:26:22:27 | b2 | | Conditions.cs:23:5:31:5 | {...} | Conditions.cs:23:5:31:5 | {...} | | Conditions.cs:24:9:24:18 | ... ...; | Conditions.cs:24:9:24:18 | ... ...; | | Conditions.cs:24:13:24:13 | access to local variable x | Conditions.cs:24:13:24:13 | access to local variable x | @@ -1029,6 +1095,7 @@ | Conditions.cs:29:13:29:16 | ...; | Conditions.cs:29:13:29:16 | ...; | | Conditions.cs:30:9:30:17 | return ...; | Conditions.cs:30:16:30:16 | access to local variable x | | Conditions.cs:30:16:30:16 | access to local variable x | Conditions.cs:30:16:30:16 | access to local variable x | +| Conditions.cs:33:17:33:18 | b1 | Conditions.cs:33:17:33:18 | b1 | | Conditions.cs:34:5:44:5 | {...} | Conditions.cs:34:5:44:5 | {...} | | Conditions.cs:35:9:35:18 | ... ...; | Conditions.cs:35:9:35:18 | ... ...; | | Conditions.cs:35:13:35:13 | access to local variable x | Conditions.cs:35:13:35:13 | access to local variable x | @@ -1056,6 +1123,8 @@ | Conditions.cs:42:13:42:16 | ...; | Conditions.cs:42:13:42:16 | ...; | | Conditions.cs:43:9:43:17 | return ...; | Conditions.cs:43:16:43:16 | access to local variable x | | Conditions.cs:43:16:43:16 | access to local variable x | Conditions.cs:43:16:43:16 | access to local variable x | +| Conditions.cs:46:17:46:17 | b | Conditions.cs:46:17:46:17 | b | +| Conditions.cs:46:24:46:24 | x | Conditions.cs:46:24:46:24 | x | | Conditions.cs:47:5:55:5 | {...} | Conditions.cs:47:5:55:5 | {...} | | Conditions.cs:48:9:48:18 | ... ...; | Conditions.cs:48:9:48:18 | ... ...; | | Conditions.cs:48:13:48:13 | access to local variable y | Conditions.cs:48:13:48:13 | access to local variable y | @@ -1074,6 +1143,8 @@ | Conditions.cs:52:17:52:20 | ...; | Conditions.cs:52:17:52:20 | ...; | | Conditions.cs:54:9:54:17 | return ...; | Conditions.cs:54:16:54:16 | access to local variable y | | Conditions.cs:54:16:54:16 | access to local variable y | Conditions.cs:54:16:54:16 | access to local variable y | +| Conditions.cs:57:17:57:17 | b | Conditions.cs:57:17:57:17 | b | +| Conditions.cs:57:24:57:24 | x | Conditions.cs:57:24:57:24 | x | | Conditions.cs:58:5:68:5 | {...} | Conditions.cs:58:5:68:5 | {...} | | Conditions.cs:59:9:59:18 | ... ...; | Conditions.cs:59:9:59:18 | ... ...; | | Conditions.cs:59:13:59:13 | access to local variable y | Conditions.cs:59:13:59:13 | access to local variable y | @@ -1097,6 +1168,7 @@ | Conditions.cs:66:13:66:16 | ...; | Conditions.cs:66:13:66:16 | ...; | | Conditions.cs:67:9:67:17 | return ...; | Conditions.cs:67:16:67:16 | access to local variable y | | Conditions.cs:67:16:67:16 | access to local variable y | Conditions.cs:67:16:67:16 | access to local variable y | +| Conditions.cs:70:21:70:22 | ss | Conditions.cs:70:21:70:22 | ss | | Conditions.cs:71:5:84:5 | {...} | Conditions.cs:71:5:84:5 | {...} | | Conditions.cs:72:9:72:30 | ... ...; | Conditions.cs:72:9:72:30 | ... ...; | | Conditions.cs:72:13:72:13 | access to local variable b | Conditions.cs:72:13:72:13 | access to local variable b | @@ -1133,6 +1205,7 @@ | Conditions.cs:82:13:82:16 | ...; | Conditions.cs:82:13:82:16 | ...; | | Conditions.cs:83:9:83:17 | return ...; | Conditions.cs:83:16:83:16 | access to local variable x | | Conditions.cs:83:16:83:16 | access to local variable x | Conditions.cs:83:16:83:16 | access to local variable x | +| Conditions.cs:86:21:86:22 | ss | Conditions.cs:86:21:86:22 | ss | | Conditions.cs:87:5:100:5 | {...} | Conditions.cs:87:5:100:5 | {...} | | Conditions.cs:88:9:88:30 | ... ...; | Conditions.cs:88:9:88:30 | ... ...; | | Conditions.cs:88:13:88:13 | access to local variable b | Conditions.cs:88:13:88:13 | access to local variable b | @@ -1169,6 +1242,7 @@ | Conditions.cs:97:17:97:20 | ...; | Conditions.cs:97:17:97:20 | ...; | | Conditions.cs:99:9:99:17 | return ...; | Conditions.cs:99:16:99:16 | access to local variable x | | Conditions.cs:99:16:99:16 | access to local variable x | Conditions.cs:99:16:99:16 | access to local variable x | +| Conditions.cs:102:20:102:20 | b | Conditions.cs:102:20:102:20 | b | | Conditions.cs:103:5:111:5 | {...} | Conditions.cs:103:5:111:5 | {...} | | Conditions.cs:104:9:104:29 | ... ...; | Conditions.cs:104:9:104:29 | ... ...; | | Conditions.cs:104:13:104:13 | access to local variable x | Conditions.cs:104:13:104:13 | access to local variable x | @@ -1195,6 +1269,7 @@ | Conditions.cs:109:22:109:23 | "" | Conditions.cs:109:22:109:23 | "" | | Conditions.cs:110:9:110:17 | return ...; | Conditions.cs:110:16:110:16 | access to local variable x | | Conditions.cs:110:16:110:16 | access to local variable x | Conditions.cs:110:16:110:16 | access to local variable x | +| Conditions.cs:113:22:113:25 | args | Conditions.cs:113:22:113:25 | args | | Conditions.cs:114:5:124:5 | {...} | Conditions.cs:114:5:124:5 | {...} | | Conditions.cs:115:9:115:24 | ... ...; | Conditions.cs:115:9:115:24 | ... ...; | | Conditions.cs:115:16:115:16 | access to local variable s | Conditions.cs:115:16:115:16 | access to local variable s | @@ -1249,6 +1324,7 @@ | Conditions.cs:137:21:137:26 | this access | Conditions.cs:137:21:137:26 | this access | | Conditions.cs:137:21:137:37 | call to method ToString | Conditions.cs:137:21:137:26 | this access | | Conditions.cs:137:21:137:38 | ...; | Conditions.cs:137:21:137:38 | ...; | +| Conditions.cs:143:19:143:19 | b | Conditions.cs:143:19:143:19 | b | | Conditions.cs:144:5:150:5 | {...} | Conditions.cs:144:5:150:5 | {...} | | Conditions.cs:145:9:145:30 | ... ...; | Conditions.cs:145:9:145:30 | ... ...; | | Conditions.cs:145:13:145:13 | access to local variable s | Conditions.cs:145:13:145:13 | access to local variable s | @@ -1275,6 +1351,11 @@ | DefaultParam.cs:1:7:1:18 | call to method | DefaultParam.cs:1:7:1:18 | this access | | DefaultParam.cs:1:7:1:18 | this access | DefaultParam.cs:1:7:1:18 | this access | | DefaultParam.cs:1:7:1:18 | {...} | DefaultParam.cs:1:7:1:18 | {...} | +| DefaultParam.cs:3:20:3:20 | b | DefaultParam.cs:3:20:3:20 | b | +| DefaultParam.cs:3:30:3:30 | s | DefaultParam.cs:3:30:3:30 | s | +| DefaultParam.cs:3:34:3:35 | "" | DefaultParam.cs:3:34:3:35 | "" | +| DefaultParam.cs:3:42:3:42 | i | DefaultParam.cs:3:42:3:42 | i | +| DefaultParam.cs:3:46:3:46 | 0 | DefaultParam.cs:3:46:3:46 | 0 | | DefaultParam.cs:4:5:6:5 | {...} | DefaultParam.cs:4:5:6:5 | {...} | | DefaultParam.cs:5:9:5:25 | return ...; | DefaultParam.cs:5:16:5:16 | access to parameter b | | DefaultParam.cs:5:16:5:16 | (...) ... | DefaultParam.cs:5:16:5:16 | access to parameter b | @@ -1328,11 +1409,13 @@ | ExitMethods.cs:61:5:64:5 | {...} | ExitMethods.cs:61:5:64:5 | {...} | | ExitMethods.cs:62:9:62:22 | call to method ErrorAlways3 | ExitMethods.cs:62:9:62:22 | call to method ErrorAlways3 | | ExitMethods.cs:62:9:62:23 | ...; | ExitMethods.cs:62:9:62:23 | ...; | +| ExitMethods.cs:66:33:66:33 | b | ExitMethods.cs:66:33:66:33 | b | | ExitMethods.cs:67:5:70:5 | {...} | ExitMethods.cs:67:5:70:5 | {...} | | ExitMethods.cs:68:9:69:34 | if (...) ... | ExitMethods.cs:68:9:69:34 | if (...) ... | | ExitMethods.cs:68:13:68:13 | access to parameter b | ExitMethods.cs:68:13:68:13 | access to parameter b | | ExitMethods.cs:69:13:69:34 | throw ...; | ExitMethods.cs:69:19:69:33 | object creation of type Exception | | ExitMethods.cs:69:19:69:33 | object creation of type Exception | ExitMethods.cs:69:19:69:33 | object creation of type Exception | +| ExitMethods.cs:72:34:72:34 | b | ExitMethods.cs:72:34:72:34 | b | | ExitMethods.cs:73:5:78:5 | {...} | ExitMethods.cs:73:5:78:5 | {...} | | ExitMethods.cs:74:9:77:45 | if (...) ... | ExitMethods.cs:74:9:77:45 | if (...) ... | | ExitMethods.cs:74:13:74:13 | access to parameter b | ExitMethods.cs:74:13:74:13 | access to parameter b | @@ -1363,6 +1446,7 @@ | ExitMethods.cs:106:5:108:5 | {...} | ExitMethods.cs:106:5:108:5 | {...} | | ExitMethods.cs:107:9:107:47 | call to method Exit | ExitMethods.cs:107:9:107:47 | call to method Exit | | ExitMethods.cs:107:9:107:48 | ...; | ExitMethods.cs:107:9:107:48 | ...; | +| ExitMethods.cs:110:31:110:35 | input | ExitMethods.cs:110:31:110:35 | input | | ExitMethods.cs:111:5:113:5 | {...} | ExitMethods.cs:111:5:113:5 | {...} | | ExitMethods.cs:112:9:112:77 | return ...; | ExitMethods.cs:112:16:112:76 | ... ? ... : ... | | ExitMethods.cs:112:16:112:20 | access to parameter input | ExitMethods.cs:112:16:112:20 | access to parameter input | @@ -1377,6 +1461,7 @@ | ExitMethods.cs:112:41:112:76 | throw ... | ExitMethods.cs:112:69:112:75 | "input" | | ExitMethods.cs:112:47:112:76 | object creation of type ArgumentException | ExitMethods.cs:112:69:112:75 | "input" | | ExitMethods.cs:112:69:112:75 | "input" | ExitMethods.cs:112:69:112:75 | "input" | +| ExitMethods.cs:115:43:115:43 | s | ExitMethods.cs:115:43:115:43 | s | | ExitMethods.cs:116:5:118:5 | {...} | ExitMethods.cs:116:5:118:5 | {...} | | ExitMethods.cs:117:9:117:39 | return ...; | ExitMethods.cs:117:16:117:38 | ... ? ... : ... | | ExitMethods.cs:117:16:117:16 | access to parameter s | ExitMethods.cs:117:16:117:16 | access to parameter s | @@ -1393,6 +1478,7 @@ | ExitMethods.cs:128:9:128:26 | call to method FailingAssertion | ExitMethods.cs:128:9:128:26 | this access | | ExitMethods.cs:128:9:128:26 | this access | ExitMethods.cs:128:9:128:26 | this access | | ExitMethods.cs:128:9:128:27 | ...; | ExitMethods.cs:128:9:128:27 | ...; | +| ExitMethods.cs:132:27:132:27 | b | ExitMethods.cs:132:27:132:27 | b | | ExitMethods.cs:132:33:132:49 | call to method IsFalse | ExitMethods.cs:132:48:132:48 | access to parameter b | | ExitMethods.cs:132:48:132:48 | access to parameter b | ExitMethods.cs:132:48:132:48 | access to parameter b | | ExitMethods.cs:135:5:138:5 | {...} | ExitMethods.cs:135:5:138:5 | {...} | @@ -1400,6 +1486,8 @@ | ExitMethods.cs:136:9:136:25 | this access | ExitMethods.cs:136:9:136:25 | this access | | ExitMethods.cs:136:9:136:26 | ...; | ExitMethods.cs:136:9:136:26 | ...; | | ExitMethods.cs:136:21:136:24 | true | ExitMethods.cs:136:21:136:24 | true | +| ExitMethods.cs:140:49:140:49 | b | ExitMethods.cs:140:49:140:49 | b | +| ExitMethods.cs:140:70:140:70 | e | ExitMethods.cs:140:70:140:70 | e | | ExitMethods.cs:141:5:147:5 | {...} | ExitMethods.cs:141:5:147:5 | {...} | | ExitMethods.cs:142:9:145:53 | if (...) ... | ExitMethods.cs:142:9:145:53 | if (...) ... | | ExitMethods.cs:142:13:142:13 | access to parameter b | ExitMethods.cs:142:13:142:13 | access to parameter b | @@ -1410,10 +1498,13 @@ | ExitMethods.cs:145:13:145:52 | call to method Throw | ExitMethods.cs:145:43:145:43 | access to parameter e | | ExitMethods.cs:145:13:145:53 | ...; | ExitMethods.cs:145:13:145:53 | ...; | | ExitMethods.cs:145:43:145:43 | access to parameter e | ExitMethods.cs:145:43:145:43 | access to parameter e | +| Extensions.cs:5:43:5:43 | s | Extensions.cs:5:43:5:43 | s | | Extensions.cs:6:5:8:5 | {...} | Extensions.cs:6:5:8:5 | {...} | | Extensions.cs:7:9:7:30 | return ...; | Extensions.cs:7:28:7:28 | access to parameter s | | Extensions.cs:7:16:7:29 | call to method Parse | Extensions.cs:7:28:7:28 | access to parameter s | | Extensions.cs:7:28:7:28 | access to parameter s | Extensions.cs:7:28:7:28 | access to parameter s | +| Extensions.cs:10:43:10:43 | s | Extensions.cs:10:43:10:43 | s | +| Extensions.cs:10:65:10:65 | f | Extensions.cs:10:65:10:65 | f | | Extensions.cs:11:5:13:5 | {...} | Extensions.cs:11:5:13:5 | {...} | | Extensions.cs:12:9:12:20 | return ...; | Extensions.cs:12:16:12:16 | access to parameter f | | Extensions.cs:12:16:12:16 | access to parameter f | Extensions.cs:12:16:12:16 | access to parameter f | @@ -1421,6 +1512,7 @@ | Extensions.cs:12:18:12:18 | access to parameter s | Extensions.cs:12:18:12:18 | access to parameter s | | Extensions.cs:15:40:15:51 | call to method ToInt32 | Extensions.cs:15:48:15:50 | "0" | | Extensions.cs:15:48:15:50 | "0" | Extensions.cs:15:48:15:50 | "0" | +| Extensions.cs:20:29:20:29 | s | Extensions.cs:20:29:20:29 | s | | Extensions.cs:21:5:26:5 | {...} | Extensions.cs:21:5:26:5 | {...} | | Extensions.cs:22:9:22:9 | access to parameter s | Extensions.cs:22:9:22:9 | access to parameter s | | Extensions.cs:22:9:22:19 | call to method ToInt32 | Extensions.cs:22:9:22:9 | access to parameter s | @@ -1607,6 +1699,7 @@ | Finally.cs:141:13:141:44 | throw ...; | Finally.cs:141:41:141:42 | "" | | Finally.cs:141:19:141:43 | object creation of type ArgumentException | Finally.cs:141:41:141:42 | "" | | Finally.cs:141:41:141:42 | "" | Finally.cs:141:41:141:42 | "" | +| Finally.cs:147:22:147:25 | args | Finally.cs:147:22:147:25 | args | | Finally.cs:148:5:170:5 | {...} | Finally.cs:148:5:170:5 | {...} | | Finally.cs:149:9:169:9 | try {...} ... | Finally.cs:149:9:169:9 | try {...} ... | | Finally.cs:150:9:153:9 | {...} | Finally.cs:150:9:153:9 | {...} | @@ -1656,6 +1749,8 @@ | Finally.cs:174:11:174:20 | call to method | Finally.cs:174:11:174:20 | this access | | Finally.cs:174:11:174:20 | this access | Finally.cs:174:11:174:20 | this access | | Finally.cs:174:11:174:20 | {...} | Finally.cs:174:11:174:20 | {...} | +| Finally.cs:176:18:176:19 | b1 | Finally.cs:176:18:176:19 | b1 | +| Finally.cs:176:27:176:28 | b2 | Finally.cs:176:27:176:28 | b2 | | Finally.cs:177:5:193:5 | {...} | Finally.cs:177:5:193:5 | {...} | | Finally.cs:178:9:192:9 | try {...} ... | Finally.cs:178:9:192:9 | try {...} ... | | Finally.cs:179:9:181:9 | {...} | Finally.cs:179:9:181:9 | {...} | @@ -1677,6 +1772,9 @@ | Finally.cs:190:21:190:22 | access to parameter b1 | Finally.cs:190:21:190:22 | access to parameter b1 | | Finally.cs:190:25:190:47 | throw ...; | Finally.cs:190:31:190:46 | object creation of type ExceptionC | | Finally.cs:190:31:190:46 | object creation of type ExceptionC | Finally.cs:190:31:190:46 | object creation of type ExceptionC | +| Finally.cs:195:19:195:20 | b1 | Finally.cs:195:19:195:20 | b1 | +| Finally.cs:195:28:195:29 | b2 | Finally.cs:195:28:195:29 | b2 | +| Finally.cs:195:37:195:38 | b3 | Finally.cs:195:37:195:38 | b3 | | Finally.cs:196:5:214:5 | {...} | Finally.cs:196:5:214:5 | {...} | | Finally.cs:197:9:212:9 | try {...} ... | Finally.cs:197:9:212:9 | try {...} ... | | Finally.cs:198:9:200:9 | {...} | Finally.cs:198:9:200:9 | {...} | @@ -1724,6 +1822,8 @@ | Finally.cs:230:9:230:33 | call to method WriteLine | Finally.cs:230:27:230:32 | "Done" | | Finally.cs:230:9:230:34 | ...; | Finally.cs:230:9:230:34 | ...; | | Finally.cs:230:27:230:32 | "Done" | Finally.cs:230:27:230:32 | "Done" | +| Finally.cs:233:19:233:20 | b1 | Finally.cs:233:19:233:20 | b1 | +| Finally.cs:233:28:233:29 | b2 | Finally.cs:233:28:233:29 | b2 | | Finally.cs:234:5:261:5 | {...} | Finally.cs:234:5:261:5 | {...} | | Finally.cs:235:9:259:9 | try {...} ... | Finally.cs:235:9:259:9 | try {...} ... | | Finally.cs:236:9:255:9 | {...} | Finally.cs:236:9:255:9 | {...} | @@ -1754,6 +1854,7 @@ | Finally.cs:260:9:260:33 | call to method WriteLine | Finally.cs:260:27:260:32 | "Done" | | Finally.cs:260:9:260:34 | ...; | Finally.cs:260:9:260:34 | ...; | | Finally.cs:260:27:260:32 | "Done" | Finally.cs:260:27:260:32 | "Done" | +| Finally.cs:263:18:263:18 | i | Finally.cs:263:18:263:18 | i | | Finally.cs:264:5:274:5 | {...} | Finally.cs:264:5:274:5 | {...} | | Finally.cs:265:9:273:9 | try {...} ... | Finally.cs:265:9:273:9 | try {...} ... | | Finally.cs:266:9:268:9 | {...} | Finally.cs:266:9:268:9 | {...} | @@ -1772,16 +1873,19 @@ | Foreach.cs:4:7:4:13 | call to method | Foreach.cs:4:7:4:13 | this access | | Foreach.cs:4:7:4:13 | this access | Foreach.cs:4:7:4:13 | this access | | Foreach.cs:4:7:4:13 | {...} | Foreach.cs:4:7:4:13 | {...} | +| Foreach.cs:6:22:6:25 | args | Foreach.cs:6:22:6:25 | args | | Foreach.cs:7:5:10:5 | {...} | Foreach.cs:7:5:10:5 | {...} | | Foreach.cs:8:9:9:13 | foreach (... ... in ...) ... | Foreach.cs:8:9:9:13 | foreach (... ... in ...) ... | | Foreach.cs:8:22:8:24 | String arg | Foreach.cs:8:22:8:24 | String arg | | Foreach.cs:8:29:8:32 | access to parameter args | Foreach.cs:8:29:8:32 | access to parameter args | | Foreach.cs:9:13:9:13 | ; | Foreach.cs:9:13:9:13 | ; | +| Foreach.cs:12:22:12:25 | args | Foreach.cs:12:22:12:25 | args | | Foreach.cs:13:5:16:5 | {...} | Foreach.cs:13:5:16:5 | {...} | | Foreach.cs:14:9:15:13 | foreach (... ... in ...) ... | Foreach.cs:14:9:15:13 | foreach (... ... in ...) ... | | Foreach.cs:14:22:14:22 | String _ | Foreach.cs:14:22:14:22 | String _ | | Foreach.cs:14:27:14:30 | access to parameter args | Foreach.cs:14:27:14:30 | access to parameter args | | Foreach.cs:15:13:15:13 | ; | Foreach.cs:15:13:15:13 | ; | +| Foreach.cs:18:33:18:33 | e | Foreach.cs:18:33:18:33 | e | | Foreach.cs:19:5:22:5 | {...} | Foreach.cs:19:5:22:5 | {...} | | Foreach.cs:20:9:21:11 | foreach (... ... in ...) ... | Foreach.cs:20:9:21:11 | foreach (... ... in ...) ... | | Foreach.cs:20:22:20:22 | String x | Foreach.cs:20:22:20:22 | String x | @@ -1790,6 +1894,7 @@ | Foreach.cs:20:27:20:68 | ... ?? ... | Foreach.cs:20:27:20:68 | ... ?? ... | | Foreach.cs:20:43:20:68 | call to method Empty | Foreach.cs:20:43:20:68 | call to method Empty | | Foreach.cs:21:11:21:11 | ; | Foreach.cs:21:11:21:11 | ; | +| Foreach.cs:24:40:24:43 | args | Foreach.cs:24:40:24:43 | args | | Foreach.cs:25:5:28:5 | {...} | Foreach.cs:25:5:28:5 | {...} | | Foreach.cs:26:9:27:11 | foreach (... ... in ...) ... | Foreach.cs:26:9:27:11 | foreach (... ... in ...) ... | | Foreach.cs:26:18:26:31 | (..., ...) | Foreach.cs:26:23:26:23 | String x | @@ -1797,6 +1902,7 @@ | Foreach.cs:26:30:26:30 | Int32 y | Foreach.cs:26:30:26:30 | Int32 y | | Foreach.cs:26:36:26:39 | access to parameter args | Foreach.cs:26:36:26:39 | access to parameter args | | Foreach.cs:27:11:27:11 | ; | Foreach.cs:27:11:27:11 | ; | +| Foreach.cs:30:40:30:43 | args | Foreach.cs:30:40:30:43 | args | | Foreach.cs:31:5:34:5 | {...} | Foreach.cs:31:5:34:5 | {...} | | Foreach.cs:32:9:33:11 | foreach (... ... in ...) ... | Foreach.cs:32:9:33:11 | foreach (... ... in ...) ... | | Foreach.cs:32:18:32:27 | (..., ...) | Foreach.cs:32:23:32:23 | String x | @@ -1804,6 +1910,7 @@ | Foreach.cs:32:26:32:26 | Int32 y | Foreach.cs:32:26:32:26 | Int32 y | | Foreach.cs:32:32:32:35 | access to parameter args | Foreach.cs:32:32:32:35 | access to parameter args | | Foreach.cs:33:11:33:11 | ; | Foreach.cs:33:11:33:11 | ; | +| Foreach.cs:36:40:36:43 | args | Foreach.cs:36:40:36:43 | args | | Foreach.cs:37:5:40:5 | {...} | Foreach.cs:37:5:40:5 | {...} | | Foreach.cs:38:9:39:11 | foreach (... ... in ...) ... | Foreach.cs:38:9:39:11 | foreach (... ... in ...) ... | | Foreach.cs:38:18:38:34 | (..., ...) | Foreach.cs:38:26:38:26 | String x | @@ -1831,6 +1938,7 @@ | Initializers.cs:10:5:10:16 | call to constructor Object | Initializers.cs:10:5:10:16 | call to constructor Object | | Initializers.cs:10:5:10:16 | call to method | Initializers.cs:10:5:10:16 | this access | | Initializers.cs:10:5:10:16 | this access | Initializers.cs:10:5:10:16 | this access | +| Initializers.cs:10:25:10:25 | s | Initializers.cs:10:25:10:25 | s | | Initializers.cs:10:28:10:30 | {...} | Initializers.cs:10:28:10:30 | {...} | | Initializers.cs:13:5:16:5 | {...} | Initializers.cs:13:5:16:5 | {...} | | Initializers.cs:14:9:14:54 | ... ...; | Initializers.cs:14:9:14:54 | ... ...; | @@ -1882,6 +1990,7 @@ | Initializers.cs:31:26:31:30 | ... = ... | Initializers.cs:31:26:31:26 | this access | | Initializers.cs:31:26:31:31 | ...; | Initializers.cs:31:26:31:31 | ...; | | Initializers.cs:31:30:31:30 | 3 | Initializers.cs:31:30:31:30 | 3 | +| Initializers.cs:33:17:33:17 | i | Initializers.cs:33:17:33:17 | i | | Initializers.cs:33:22:33:25 | call to constructor Sub | Initializers.cs:33:22:33:25 | call to constructor Sub | | Initializers.cs:33:29:33:38 | {...} | Initializers.cs:33:29:33:38 | {...} | | Initializers.cs:33:31:33:31 | access to field I | Initializers.cs:33:31:33:31 | this access | @@ -1892,6 +2001,8 @@ | Initializers.cs:35:9:35:11 | call to constructor NoConstructor | Initializers.cs:35:9:35:11 | call to constructor NoConstructor | | Initializers.cs:35:9:35:11 | call to method | Initializers.cs:35:9:35:11 | this access | | Initializers.cs:35:9:35:11 | this access | Initializers.cs:35:9:35:11 | this access | +| Initializers.cs:35:17:35:17 | i | Initializers.cs:35:17:35:17 | i | +| Initializers.cs:35:24:35:24 | j | Initializers.cs:35:24:35:24 | j | | Initializers.cs:35:27:35:40 | {...} | Initializers.cs:35:27:35:40 | {...} | | Initializers.cs:35:29:35:29 | access to field I | Initializers.cs:35:29:35:29 | this access | | Initializers.cs:35:29:35:29 | this access | Initializers.cs:35:29:35:29 | this access | @@ -1908,6 +2019,7 @@ | Initializers.cs:41:11:41:18 | call to method | Initializers.cs:41:11:41:18 | this access | | Initializers.cs:41:11:41:18 | this access | Initializers.cs:41:11:41:18 | this access | | Initializers.cs:41:11:41:18 | {...} | Initializers.cs:41:11:41:18 | {...} | +| Initializers.cs:51:19:51:19 | i | Initializers.cs:51:19:51:19 | i | | Initializers.cs:52:5:66:5 | {...} | Initializers.cs:52:5:66:5 | {...} | | Initializers.cs:54:9:54:96 | ... ...; | Initializers.cs:54:9:54:96 | ... ...; | | Initializers.cs:54:13:54:16 | access to local variable dict | Initializers.cs:54:13:54:16 | access to local variable dict | @@ -2027,6 +2139,7 @@ | LoopUnrolling.cs:5:7:5:19 | call to method | LoopUnrolling.cs:5:7:5:19 | this access | | LoopUnrolling.cs:5:7:5:19 | this access | LoopUnrolling.cs:5:7:5:19 | this access | | LoopUnrolling.cs:5:7:5:19 | {...} | LoopUnrolling.cs:5:7:5:19 | {...} | +| LoopUnrolling.cs:7:22:7:25 | args | LoopUnrolling.cs:7:22:7:25 | args | | LoopUnrolling.cs:8:5:13:5 | {...} | LoopUnrolling.cs:8:5:13:5 | {...} | | LoopUnrolling.cs:9:9:10:19 | if (...) ... | LoopUnrolling.cs:9:9:10:19 | if (...) ... | | LoopUnrolling.cs:9:13:9:16 | access to parameter args | LoopUnrolling.cs:9:13:9:16 | access to parameter args | @@ -2056,6 +2169,7 @@ | LoopUnrolling.cs:19:13:19:32 | call to method WriteLine | LoopUnrolling.cs:19:31:19:31 | access to local variable x | | LoopUnrolling.cs:19:13:19:33 | ...; | LoopUnrolling.cs:19:13:19:33 | ...; | | LoopUnrolling.cs:19:31:19:31 | access to local variable x | LoopUnrolling.cs:19:31:19:31 | access to local variable x | +| LoopUnrolling.cs:22:20:22:23 | args | LoopUnrolling.cs:22:20:22:23 | args | | LoopUnrolling.cs:23:5:27:5 | {...} | LoopUnrolling.cs:23:5:27:5 | {...} | | LoopUnrolling.cs:24:9:26:40 | foreach (... ... in ...) ... | LoopUnrolling.cs:24:9:26:40 | foreach (... ... in ...) ... | | LoopUnrolling.cs:24:22:24:24 | Char arg | LoopUnrolling.cs:24:22:24:24 | Char arg | @@ -2127,6 +2241,7 @@ | LoopUnrolling.cs:50:16:50:36 | ...; | LoopUnrolling.cs:50:16:50:36 | ...; | | LoopUnrolling.cs:50:34:50:34 | access to local variable x | LoopUnrolling.cs:50:34:50:34 | access to local variable x | | LoopUnrolling.cs:51:13:51:23 | goto ...; | LoopUnrolling.cs:51:13:51:23 | goto ...; | +| LoopUnrolling.cs:55:18:55:18 | b | LoopUnrolling.cs:55:18:55:18 | b | | LoopUnrolling.cs:56:5:65:5 | {...} | LoopUnrolling.cs:56:5:65:5 | {...} | | LoopUnrolling.cs:57:9:57:48 | ... ...; | LoopUnrolling.cs:57:9:57:48 | ... ...; | | LoopUnrolling.cs:57:13:57:14 | access to local variable xs | LoopUnrolling.cs:57:13:57:14 | access to local variable xs | @@ -2151,6 +2266,7 @@ | LoopUnrolling.cs:63:17:63:36 | call to method WriteLine | LoopUnrolling.cs:63:35:63:35 | access to local variable x | | LoopUnrolling.cs:63:17:63:37 | ...; | LoopUnrolling.cs:63:17:63:37 | ...; | | LoopUnrolling.cs:63:35:63:35 | access to local variable x | LoopUnrolling.cs:63:35:63:35 | access to local variable x | +| LoopUnrolling.cs:67:26:67:29 | args | LoopUnrolling.cs:67:26:67:29 | args | | LoopUnrolling.cs:68:5:74:5 | {...} | LoopUnrolling.cs:68:5:74:5 | {...} | | LoopUnrolling.cs:69:9:70:19 | if (...) ... | LoopUnrolling.cs:69:9:70:19 | if (...) ... | | LoopUnrolling.cs:69:13:69:23 | !... | LoopUnrolling.cs:69:13:69:23 | !... | @@ -2217,6 +2333,7 @@ | MultiImplementationA.cs:7:25:7:39 | {...} | MultiImplementationA.cs:7:25:7:39 | {...} | | MultiImplementationA.cs:7:27:7:37 | throw ...; | MultiImplementationA.cs:7:33:7:36 | null | | MultiImplementationA.cs:7:33:7:36 | null | MultiImplementationA.cs:7:33:7:36 | null | +| MultiImplementationA.cs:7:41:7:43 | value | MultiImplementationA.cs:7:41:7:43 | value | | MultiImplementationA.cs:7:45:7:59 | {...} | MultiImplementationA.cs:7:45:7:59 | {...} | | MultiImplementationA.cs:7:47:7:57 | throw ...; | MultiImplementationA.cs:7:53:7:56 | null | | MultiImplementationA.cs:7:53:7:56 | null | MultiImplementationA.cs:7:53:7:56 | null | @@ -2226,17 +2343,23 @@ | MultiImplementationA.cs:13:16:13:16 | this access | MultiImplementationA.cs:13:16:13:16 | this access | | MultiImplementationA.cs:13:16:13:20 | ... = ... | MultiImplementationA.cs:13:16:13:16 | this access | | MultiImplementationA.cs:13:20:13:20 | 0 | MultiImplementationA.cs:13:20:13:20 | 0 | +| MultiImplementationA.cs:14:25:14:25 | i | MultiImplementationA.cs:14:25:14:25 | i | | MultiImplementationA.cs:14:31:14:31 | access to parameter i | MultiImplementationA.cs:14:31:14:31 | access to parameter i | +| MultiImplementationA.cs:15:31:15:31 | s | MultiImplementationA.cs:15:31:15:31 | s | +| MultiImplementationA.cs:15:31:15:31 | s | MultiImplementationA.cs:15:31:15:31 | s | | MultiImplementationA.cs:15:40:15:52 | {...} | MultiImplementationA.cs:15:40:15:52 | {...} | | MultiImplementationA.cs:15:42:15:50 | return ...; | MultiImplementationA.cs:15:49:15:49 | access to parameter s | | MultiImplementationA.cs:15:49:15:49 | access to parameter s | MultiImplementationA.cs:15:49:15:49 | access to parameter s | +| MultiImplementationA.cs:15:54:15:56 | value | MultiImplementationA.cs:15:54:15:56 | value | | MultiImplementationA.cs:15:58:15:60 | {...} | MultiImplementationA.cs:15:58:15:60 | {...} | +| MultiImplementationA.cs:16:24:16:24 | i | MultiImplementationA.cs:16:24:16:24 | i | | MultiImplementationA.cs:17:5:19:5 | {...} | MultiImplementationA.cs:17:5:19:5 | {...} | | MultiImplementationA.cs:18:9:18:22 | M2(...) | MultiImplementationA.cs:18:9:18:22 | M2(...) | | MultiImplementationA.cs:18:21:18:21 | 0 | MultiImplementationA.cs:18:21:18:21 | 0 | | MultiImplementationA.cs:20:12:20:13 | call to constructor Object | MultiImplementationA.cs:20:12:20:13 | call to constructor Object | | MultiImplementationA.cs:20:12:20:13 | call to method | MultiImplementationA.cs:20:12:20:13 | this access | | MultiImplementationA.cs:20:12:20:13 | this access | MultiImplementationA.cs:20:12:20:13 | this access | +| MultiImplementationA.cs:20:19:20:19 | i | MultiImplementationA.cs:20:19:20:19 | i | | MultiImplementationA.cs:20:22:20:31 | {...} | MultiImplementationA.cs:20:22:20:31 | {...} | | MultiImplementationA.cs:20:24:20:24 | access to field F | MultiImplementationA.cs:20:24:20:24 | this access | | MultiImplementationA.cs:20:24:20:24 | this access | MultiImplementationA.cs:20:24:20:24 | this access | @@ -2247,6 +2370,7 @@ | MultiImplementationA.cs:21:24:21:24 | 0 | MultiImplementationA.cs:21:24:21:24 | 0 | | MultiImplementationA.cs:21:27:21:29 | {...} | MultiImplementationA.cs:21:27:21:29 | {...} | | MultiImplementationA.cs:22:11:22:13 | {...} | MultiImplementationA.cs:22:11:22:13 | {...} | +| MultiImplementationA.cs:23:44:23:44 | i | MultiImplementationA.cs:23:44:23:44 | i | | MultiImplementationA.cs:23:50:23:53 | null | MultiImplementationA.cs:23:50:23:53 | null | | MultiImplementationA.cs:24:16:24:16 | access to property P | MultiImplementationA.cs:24:16:24:16 | this access | | MultiImplementationA.cs:24:16:24:16 | this access | MultiImplementationA.cs:24:16:24:16 | this access | @@ -2323,20 +2447,26 @@ | NullCoalescing.cs:1:7:1:20 | call to method | NullCoalescing.cs:1:7:1:20 | this access | | NullCoalescing.cs:1:7:1:20 | this access | NullCoalescing.cs:1:7:1:20 | this access | | NullCoalescing.cs:1:7:1:20 | {...} | NullCoalescing.cs:1:7:1:20 | {...} | +| NullCoalescing.cs:3:17:3:17 | i | NullCoalescing.cs:3:17:3:17 | i | | NullCoalescing.cs:3:23:3:23 | access to parameter i | NullCoalescing.cs:3:23:3:23 | access to parameter i | | NullCoalescing.cs:3:23:3:28 | ... ?? ... | NullCoalescing.cs:3:23:3:28 | ... ?? ... | | NullCoalescing.cs:3:28:3:28 | 0 | NullCoalescing.cs:3:28:3:28 | 0 | +| NullCoalescing.cs:5:18:5:18 | b | NullCoalescing.cs:5:18:5:18 | b | | NullCoalescing.cs:5:24:5:43 | ... ? ... : ... | NullCoalescing.cs:5:24:5:43 | ... ? ... : ... | | NullCoalescing.cs:5:25:5:25 | access to parameter b | NullCoalescing.cs:5:25:5:25 | access to parameter b | | NullCoalescing.cs:5:25:5:34 | ... ?? ... | NullCoalescing.cs:5:25:5:34 | ... ?? ... | | NullCoalescing.cs:5:30:5:34 | false | NullCoalescing.cs:5:30:5:34 | false | | NullCoalescing.cs:5:39:5:39 | 0 | NullCoalescing.cs:5:39:5:39 | 0 | | NullCoalescing.cs:5:43:5:43 | 1 | NullCoalescing.cs:5:43:5:43 | 1 | +| NullCoalescing.cs:7:22:7:23 | s1 | NullCoalescing.cs:7:22:7:23 | s1 | +| NullCoalescing.cs:7:33:7:34 | s2 | NullCoalescing.cs:7:33:7:34 | s2 | | NullCoalescing.cs:7:40:7:41 | access to parameter s1 | NullCoalescing.cs:7:40:7:41 | access to parameter s1 | | NullCoalescing.cs:7:40:7:53 | ... ?? ... | NullCoalescing.cs:7:40:7:53 | ... ?? ... | | NullCoalescing.cs:7:46:7:47 | access to parameter s2 | NullCoalescing.cs:7:46:7:47 | access to parameter s2 | | NullCoalescing.cs:7:46:7:53 | ... ?? ... | NullCoalescing.cs:7:46:7:53 | ... ?? ... | | NullCoalescing.cs:7:52:7:53 | "" | NullCoalescing.cs:7:52:7:53 | "" | +| NullCoalescing.cs:9:20:9:20 | b | NullCoalescing.cs:9:20:9:20 | b | +| NullCoalescing.cs:9:30:9:30 | s | NullCoalescing.cs:9:30:9:30 | s | | NullCoalescing.cs:9:36:9:58 | ... ?? ... | NullCoalescing.cs:9:36:9:58 | ... ?? ... | | NullCoalescing.cs:9:37:9:37 | access to parameter b | NullCoalescing.cs:9:37:9:37 | access to parameter b | | NullCoalescing.cs:9:37:9:45 | ... ? ... : ... | NullCoalescing.cs:9:37:9:45 | ... ? ... : ... | @@ -2345,6 +2475,9 @@ | NullCoalescing.cs:9:51:9:52 | "" | NullCoalescing.cs:9:51:9:52 | "" | | NullCoalescing.cs:9:51:9:58 | ... ?? ... | NullCoalescing.cs:9:51:9:58 | ... ?? ... | | NullCoalescing.cs:9:57:9:58 | "" | NullCoalescing.cs:9:57:9:58 | "" | +| NullCoalescing.cs:11:18:11:19 | b1 | NullCoalescing.cs:11:18:11:19 | b1 | +| NullCoalescing.cs:11:27:11:28 | b2 | NullCoalescing.cs:11:27:11:28 | b2 | +| NullCoalescing.cs:11:36:11:37 | b3 | NullCoalescing.cs:11:36:11:37 | b3 | | NullCoalescing.cs:11:43:11:68 | ... ? ... : ... | NullCoalescing.cs:11:43:11:68 | ... ? ... : ... | | NullCoalescing.cs:11:44:11:45 | access to parameter b1 | NullCoalescing.cs:11:44:11:45 | access to parameter b1 | | NullCoalescing.cs:11:44:11:59 | ... ?? ... | NullCoalescing.cs:11:44:11:59 | ... ?? ... | @@ -2353,6 +2486,7 @@ | NullCoalescing.cs:11:57:11:58 | access to parameter b3 | NullCoalescing.cs:11:57:11:58 | access to parameter b3 | | NullCoalescing.cs:11:64:11:64 | 0 | NullCoalescing.cs:11:64:11:64 | 0 | | NullCoalescing.cs:11:68:11:68 | 1 | NullCoalescing.cs:11:68:11:68 | 1 | +| NullCoalescing.cs:13:17:13:17 | i | NullCoalescing.cs:13:17:13:17 | i | | NullCoalescing.cs:14:5:18:5 | {...} | NullCoalescing.cs:14:5:18:5 | {...} | | NullCoalescing.cs:15:9:15:32 | ... ...; | NullCoalescing.cs:15:9:15:32 | ... ...; | | NullCoalescing.cs:15:13:15:13 | access to local variable j | NullCoalescing.cs:15:13:15:13 | access to local variable j | @@ -2377,6 +2511,7 @@ | PartialImplementationA.cs:3:12:3:18 | call to constructor Object | PartialImplementationA.cs:3:12:3:18 | call to constructor Object | | PartialImplementationA.cs:3:12:3:18 | call to method | PartialImplementationA.cs:3:12:3:18 | this access | | PartialImplementationA.cs:3:12:3:18 | this access | PartialImplementationA.cs:3:12:3:18 | this access | +| PartialImplementationA.cs:3:24:3:24 | i | PartialImplementationA.cs:3:24:3:24 | i | | PartialImplementationA.cs:3:27:3:29 | {...} | PartialImplementationA.cs:3:27:3:29 | {...} | | PartialImplementationB.cs:3:16:3:16 | access to field F | PartialImplementationB.cs:3:16:3:16 | this access | | PartialImplementationB.cs:3:16:3:16 | this access | PartialImplementationB.cs:3:16:3:16 | this access | @@ -2471,10 +2606,12 @@ | Patterns.cs:37:17:37:22 | break; | Patterns.cs:37:17:37:22 | break; | | Patterns.cs:40:9:42:9 | switch (...) {...} | Patterns.cs:40:9:42:9 | switch (...) {...} | | Patterns.cs:40:17:40:17 | access to local variable o | Patterns.cs:40:17:40:17 | access to local variable o | +| Patterns.cs:47:32:47:32 | c | Patterns.cs:47:32:47:32 | c | | Patterns.cs:48:9:48:9 | access to parameter c | Patterns.cs:48:9:48:9 | access to parameter c | | Patterns.cs:48:9:48:20 | ... is ... | Patterns.cs:48:9:48:9 | access to parameter c | | Patterns.cs:48:14:48:20 | not ... | Patterns.cs:48:18:48:20 | a | | Patterns.cs:48:18:48:20 | a | Patterns.cs:48:18:48:20 | a | +| Patterns.cs:50:34:50:34 | c | Patterns.cs:50:34:50:34 | c | | Patterns.cs:51:9:51:9 | access to parameter c | Patterns.cs:51:9:51:9 | access to parameter c | | Patterns.cs:51:9:51:21 | ... is ... | Patterns.cs:51:9:51:9 | access to parameter c | | Patterns.cs:51:9:51:39 | ... ? ... : ... | Patterns.cs:51:9:51:39 | ... ? ... : ... | @@ -2486,6 +2623,7 @@ | Patterns.cs:51:34:51:34 | access to parameter c | Patterns.cs:51:34:51:34 | access to parameter c | | Patterns.cs:51:34:51:39 | ... is ... | Patterns.cs:51:34:51:34 | access to parameter c | | Patterns.cs:51:39:51:39 | 2 | Patterns.cs:51:39:51:39 | 2 | +| Patterns.cs:53:34:53:34 | c | Patterns.cs:53:34:53:34 | c | | Patterns.cs:54:9:54:9 | access to parameter c | Patterns.cs:54:9:54:9 | access to parameter c | | Patterns.cs:54:9:54:37 | ... is ... | Patterns.cs:54:9:54:9 | access to parameter c | | Patterns.cs:54:14:54:37 | not ... | Patterns.cs:54:18:54:37 | Patterns u | @@ -2494,6 +2632,7 @@ | Patterns.cs:54:18:54:37 | { ... } | Patterns.cs:54:18:54:37 | Patterns u | | Patterns.cs:54:27:54:35 | { ... } | Patterns.cs:54:33:54:33 | 1 | | Patterns.cs:54:33:54:33 | 1 | Patterns.cs:54:33:54:33 | 1 | +| Patterns.cs:56:33:56:33 | i | Patterns.cs:56:33:56:33 | i | | Patterns.cs:57:5:63:5 | {...} | Patterns.cs:57:5:63:5 | {...} | | Patterns.cs:58:9:62:10 | return ...; | Patterns.cs:58:16:62:9 | ... switch { ... } | | Patterns.cs:58:16:58:16 | access to parameter i | Patterns.cs:58:16:58:16 | access to parameter i | @@ -2516,6 +2655,7 @@ | Patterns.cs:70:13:70:13 | 2 | Patterns.cs:70:13:70:13 | 2 | | Patterns.cs:70:13:70:27 | ... => ... | Patterns.cs:70:13:70:27 | ... => ... | | Patterns.cs:70:18:70:27 | "possible" | Patterns.cs:70:18:70:27 | "possible" | +| Patterns.cs:74:33:74:33 | i | Patterns.cs:74:33:74:33 | i | | Patterns.cs:75:5:83:5 | {...} | Patterns.cs:75:5:83:5 | {...} | | Patterns.cs:76:9:82:10 | return ...; | Patterns.cs:76:16:82:9 | ... switch { ... } | | Patterns.cs:76:16:76:16 | access to parameter i | Patterns.cs:76:16:76:16 | access to parameter i | @@ -2534,6 +2674,7 @@ | Patterns.cs:81:13:81:13 | _ | Patterns.cs:81:13:81:13 | _ | | Patterns.cs:81:13:81:20 | ... => ... | Patterns.cs:81:13:81:20 | ... => ... | | Patterns.cs:81:18:81:20 | "0" | Patterns.cs:81:18:81:20 | "0" | +| Patterns.cs:85:33:85:33 | i | Patterns.cs:85:33:85:33 | i | | Patterns.cs:85:39:85:39 | access to parameter i | Patterns.cs:85:39:85:39 | access to parameter i | | Patterns.cs:85:39:85:53 | ... is ... | Patterns.cs:85:39:85:39 | access to parameter i | | Patterns.cs:85:39:85:69 | ... ? ... : ... | Patterns.cs:85:39:85:69 | ... ? ... : ... | @@ -2543,6 +2684,7 @@ | Patterns.cs:85:53:85:53 | 2 | Patterns.cs:85:53:85:53 | 2 | | Patterns.cs:85:57:85:63 | "not 2" | Patterns.cs:85:57:85:63 | "not 2" | | Patterns.cs:85:67:85:69 | "2" | Patterns.cs:85:67:85:69 | "2" | +| Patterns.cs:87:33:87:33 | i | Patterns.cs:87:33:87:33 | i | | Patterns.cs:87:39:87:39 | access to parameter i | Patterns.cs:87:39:87:39 | access to parameter i | | Patterns.cs:87:39:87:54 | ... is ... | Patterns.cs:87:39:87:39 | access to parameter i | | Patterns.cs:87:39:87:70 | ... ? ... : ... | Patterns.cs:87:39:87:70 | ... ? ... : ... | @@ -2569,10 +2711,12 @@ | PostDominance.cs:3:7:3:19 | call to method | PostDominance.cs:3:7:3:19 | this access | | PostDominance.cs:3:7:3:19 | this access | PostDominance.cs:3:7:3:19 | this access | | PostDominance.cs:3:7:3:19 | {...} | PostDominance.cs:3:7:3:19 | {...} | +| PostDominance.cs:5:20:5:20 | s | PostDominance.cs:5:20:5:20 | s | | PostDominance.cs:6:5:8:5 | {...} | PostDominance.cs:6:5:8:5 | {...} | | PostDominance.cs:7:9:7:28 | call to method WriteLine | PostDominance.cs:7:27:7:27 | access to parameter s | | PostDominance.cs:7:9:7:29 | ...; | PostDominance.cs:7:9:7:29 | ...; | | PostDominance.cs:7:27:7:27 | access to parameter s | PostDominance.cs:7:27:7:27 | access to parameter s | +| PostDominance.cs:10:20:10:20 | s | PostDominance.cs:10:20:10:20 | s | | PostDominance.cs:11:5:15:5 | {...} | PostDominance.cs:11:5:15:5 | {...} | | PostDominance.cs:12:9:13:19 | if (...) ... | PostDominance.cs:12:9:13:19 | if (...) ... | | PostDominance.cs:12:13:12:13 | access to parameter s | PostDominance.cs:12:13:12:13 | access to parameter s | @@ -2582,6 +2726,7 @@ | PostDominance.cs:14:9:14:28 | call to method WriteLine | PostDominance.cs:14:27:14:27 | access to parameter s | | PostDominance.cs:14:9:14:29 | ...; | PostDominance.cs:14:9:14:29 | ...; | | PostDominance.cs:14:27:14:27 | access to parameter s | PostDominance.cs:14:27:14:27 | access to parameter s | +| PostDominance.cs:17:20:17:20 | s | PostDominance.cs:17:20:17:20 | s | | PostDominance.cs:18:5:22:5 | {...} | PostDominance.cs:18:5:22:5 | {...} | | PostDominance.cs:19:9:20:55 | if (...) ... | PostDominance.cs:19:9:20:55 | if (...) ... | | PostDominance.cs:19:13:19:13 | access to parameter s | PostDominance.cs:19:13:19:13 | access to parameter s | @@ -2673,9 +2818,11 @@ | Switch.cs:3:7:3:12 | call to method | Switch.cs:3:7:3:12 | this access | | Switch.cs:3:7:3:12 | this access | Switch.cs:3:7:3:12 | this access | | Switch.cs:3:7:3:12 | {...} | Switch.cs:3:7:3:12 | {...} | +| Switch.cs:5:20:5:20 | o | Switch.cs:5:20:5:20 | o | | Switch.cs:6:5:8:5 | {...} | Switch.cs:6:5:8:5 | {...} | | Switch.cs:7:9:7:22 | switch (...) {...} | Switch.cs:7:9:7:22 | switch (...) {...} | | Switch.cs:7:17:7:17 | access to parameter o | Switch.cs:7:17:7:17 | access to parameter o | +| Switch.cs:10:20:10:20 | o | Switch.cs:10:20:10:20 | o | | Switch.cs:11:5:33:5 | {...} | Switch.cs:11:5:33:5 | {...} | | Switch.cs:12:9:32:9 | switch (...) {...} | Switch.cs:12:9:32:9 | switch (...) {...} | | Switch.cs:12:17:12:17 | access to parameter o | Switch.cs:12:17:12:17 | access to parameter o | @@ -2722,6 +2869,7 @@ | Switch.cs:36:5:42:5 | {...} | Switch.cs:36:5:42:5 | {...} | | Switch.cs:37:9:41:9 | switch (...) {...} | Switch.cs:37:9:41:9 | switch (...) {...} | | Switch.cs:37:17:37:23 | call to method Throw | Switch.cs:37:17:37:23 | call to method Throw | +| Switch.cs:44:20:44:20 | o | Switch.cs:44:20:44:20 | o | | Switch.cs:45:5:53:5 | {...} | Switch.cs:45:5:53:5 | {...} | | Switch.cs:46:9:52:9 | switch (...) {...} | Switch.cs:46:9:52:9 | switch (...) {...} | | Switch.cs:46:17:46:17 | access to parameter o | Switch.cs:46:17:46:17 | access to parameter o | @@ -2745,6 +2893,7 @@ | Switch.cs:61:13:61:19 | case ...: | Switch.cs:61:13:61:19 | case ...: | | Switch.cs:61:18:61:18 | 3 | Switch.cs:61:18:61:18 | 3 | | Switch.cs:62:17:62:22 | break; | Switch.cs:62:17:62:22 | break; | +| Switch.cs:66:20:66:20 | s | Switch.cs:66:20:66:20 | s | | Switch.cs:67:5:75:5 | {...} | Switch.cs:67:5:75:5 | {...} | | Switch.cs:68:9:74:9 | switch (...) {...} | Switch.cs:68:9:74:9 | switch (...) {...} | | Switch.cs:68:17:68:25 | (...) ... | Switch.cs:68:25:68:25 | access to parameter s | @@ -2755,6 +2904,8 @@ | Switch.cs:72:13:72:20 | case ...: | Switch.cs:72:13:72:20 | case ...: | | Switch.cs:72:18:72:19 | "" | Switch.cs:72:18:72:19 | "" | | Switch.cs:73:17:73:22 | break; | Switch.cs:73:17:73:22 | break; | +| Switch.cs:77:17:77:17 | i | Switch.cs:77:17:77:17 | i | +| Switch.cs:77:24:77:24 | j | Switch.cs:77:24:77:24 | j | | Switch.cs:78:5:89:5 | {...} | Switch.cs:78:5:89:5 | {...} | | Switch.cs:79:9:87:9 | switch (...) {...} | Switch.cs:79:9:87:9 | switch (...) {...} | | Switch.cs:79:17:79:17 | access to parameter i | Switch.cs:79:17:79:17 | access to parameter i | @@ -2773,6 +2924,7 @@ | Switch.cs:86:24:86:27 | true | Switch.cs:86:24:86:27 | true | | Switch.cs:88:9:88:21 | return ...; | Switch.cs:88:16:88:20 | false | | Switch.cs:88:16:88:20 | false | Switch.cs:88:16:88:20 | false | +| Switch.cs:91:20:91:20 | o | Switch.cs:91:20:91:20 | o | | Switch.cs:92:5:99:5 | {...} | Switch.cs:92:5:99:5 | {...} | | Switch.cs:93:9:97:9 | switch (...) {...} | Switch.cs:93:9:97:9 | switch (...) {...} | | Switch.cs:93:17:93:17 | access to parameter o | Switch.cs:93:17:93:17 | access to parameter o | @@ -2782,6 +2934,7 @@ | Switch.cs:96:24:96:27 | true | Switch.cs:96:24:96:27 | true | | Switch.cs:98:9:98:21 | return ...; | Switch.cs:98:16:98:20 | false | | Switch.cs:98:16:98:20 | false | Switch.cs:98:16:98:20 | false | +| Switch.cs:101:19:101:19 | s | Switch.cs:101:19:101:19 | s | | Switch.cs:102:5:109:5 | {...} | Switch.cs:102:5:109:5 | {...} | | Switch.cs:103:9:107:9 | switch (...) {...} | Switch.cs:103:9:107:9 | switch (...) {...} | | Switch.cs:103:17:103:17 | access to parameter s | Switch.cs:103:17:103:17 | access to parameter s | @@ -2799,6 +2952,7 @@ | Switch.cs:108:17:108:17 | 1 | Switch.cs:108:17:108:17 | 1 | | Switch.cs:111:28:111:48 | throw ... | Switch.cs:111:34:111:48 | object creation of type Exception | | Switch.cs:111:34:111:48 | object creation of type Exception | Switch.cs:111:34:111:48 | object creation of type Exception | +| Switch.cs:113:20:113:20 | s | Switch.cs:113:20:113:20 | s | | Switch.cs:114:5:121:5 | {...} | Switch.cs:114:5:121:5 | {...} | | Switch.cs:115:9:119:9 | switch (...) {...} | Switch.cs:115:9:119:9 | switch (...) {...} | | Switch.cs:115:17:115:17 | access to parameter s | Switch.cs:115:17:115:17 | access to parameter s | @@ -2820,6 +2974,7 @@ | Switch.cs:120:9:120:18 | return ...; | Switch.cs:120:17:120:17 | 1 | | Switch.cs:120:16:120:17 | -... | Switch.cs:120:17:120:17 | 1 | | Switch.cs:120:17:120:17 | 1 | Switch.cs:120:17:120:17 | 1 | +| Switch.cs:123:21:123:21 | o | Switch.cs:123:21:123:21 | o | | Switch.cs:124:5:127:5 | {...} | Switch.cs:124:5:127:5 | {...} | | Switch.cs:125:9:126:19 | if (...) ... | Switch.cs:125:9:126:19 | if (...) ... | | Switch.cs:125:13:125:13 | access to parameter o | Switch.cs:125:13:125:13 | access to parameter o | @@ -2831,6 +2986,7 @@ | Switch.cs:125:37:125:46 | ... => ... | Switch.cs:125:37:125:46 | ... => ... | | Switch.cs:125:42:125:46 | false | Switch.cs:125:42:125:46 | false | | Switch.cs:126:13:126:19 | return ...; | Switch.cs:126:13:126:19 | return ...; | +| Switch.cs:129:23:129:23 | o | Switch.cs:129:23:129:23 | o | | Switch.cs:130:5:132:5 | {...} | Switch.cs:130:5:132:5 | {...} | | Switch.cs:131:9:131:67 | return ...; | Switch.cs:131:17:131:53 | ... switch { ... } | | Switch.cs:131:16:131:66 | call to method ToString | Switch.cs:131:17:131:53 | ... switch { ... } | @@ -2842,6 +2998,7 @@ | Switch.cs:131:43:131:43 | _ | Switch.cs:131:43:131:43 | _ | | Switch.cs:131:43:131:51 | ... => ... | Switch.cs:131:43:131:51 | ... => ... | | Switch.cs:131:48:131:51 | null | Switch.cs:131:48:131:51 | null | +| Switch.cs:134:17:134:17 | i | Switch.cs:134:17:134:17 | i | | Switch.cs:135:5:142:5 | {...} | Switch.cs:135:5:142:5 | {...} | | Switch.cs:136:9:141:9 | switch (...) {...} | Switch.cs:136:9:141:9 | switch (...) {...} | | Switch.cs:136:17:136:17 | access to parameter i | Switch.cs:136:17:136:17 | access to parameter i | @@ -2857,6 +3014,7 @@ | Switch.cs:140:18:140:18 | 2 | Switch.cs:140:18:140:18 | 2 | | Switch.cs:140:21:140:29 | return ...; | Switch.cs:140:28:140:28 | 2 | | Switch.cs:140:28:140:28 | 2 | Switch.cs:140:28:140:28 | 2 | +| Switch.cs:144:17:144:17 | i | Switch.cs:144:17:144:17 | i | | Switch.cs:145:5:152:5 | {...} | Switch.cs:145:5:152:5 | {...} | | Switch.cs:146:9:151:9 | switch (...) {...} | Switch.cs:146:9:151:9 | switch (...) {...} | | Switch.cs:146:17:146:17 | access to parameter i | Switch.cs:146:17:146:17 | access to parameter i | @@ -2872,6 +3030,7 @@ | Switch.cs:150:18:150:18 | 2 | Switch.cs:150:18:150:18 | 2 | | Switch.cs:150:21:150:29 | return ...; | Switch.cs:150:28:150:28 | 2 | | Switch.cs:150:28:150:28 | 2 | Switch.cs:150:28:150:28 | 2 | +| Switch.cs:154:19:154:19 | b | Switch.cs:154:19:154:19 | b | | Switch.cs:155:5:161:5 | {...} | Switch.cs:155:5:161:5 | {...} | | Switch.cs:156:9:156:55 | ... ...; | Switch.cs:156:9:156:55 | ... ...; | | Switch.cs:156:13:156:13 | access to local variable s | Switch.cs:156:13:156:13 | access to local variable s | @@ -2898,6 +3057,7 @@ | Switch.cs:160:40:160:43 | "b = " | Switch.cs:160:40:160:43 | "b = " | | Switch.cs:160:44:160:46 | {...} | Switch.cs:160:45:160:45 | access to local variable s | | Switch.cs:160:45:160:45 | access to local variable s | Switch.cs:160:45:160:45 | access to local variable s | +| Switch.cs:163:18:163:18 | i | Switch.cs:163:18:163:18 | i | | Switch.cs:164:5:178:5 | {...} | Switch.cs:164:5:178:5 | {...} | | Switch.cs:165:9:177:9 | switch (...) {...} | Switch.cs:165:9:177:9 | switch (...) {...} | | Switch.cs:165:17:165:17 | access to parameter i | Switch.cs:165:17:165:17 | access to parameter i | @@ -2924,6 +3084,7 @@ | TypeAccesses.cs:1:7:1:18 | call to method | TypeAccesses.cs:1:7:1:18 | this access | | TypeAccesses.cs:1:7:1:18 | this access | TypeAccesses.cs:1:7:1:18 | this access | | TypeAccesses.cs:1:7:1:18 | {...} | TypeAccesses.cs:1:7:1:18 | {...} | +| TypeAccesses.cs:3:19:3:19 | o | TypeAccesses.cs:3:19:3:19 | o | | TypeAccesses.cs:4:5:9:5 | {...} | TypeAccesses.cs:4:5:9:5 | {...} | | TypeAccesses.cs:5:9:5:26 | ... ...; | TypeAccesses.cs:5:9:5:26 | ... ...; | | TypeAccesses.cs:5:13:5:13 | access to local variable s | TypeAccesses.cs:5:13:5:13 | access to local variable s | @@ -2948,6 +3109,7 @@ | VarDecls.cs:3:7:3:14 | call to method | VarDecls.cs:3:7:3:14 | this access | | VarDecls.cs:3:7:3:14 | this access | VarDecls.cs:3:7:3:14 | this access | | VarDecls.cs:3:7:3:14 | {...} | VarDecls.cs:3:7:3:14 | {...} | +| VarDecls.cs:5:30:5:36 | strings | VarDecls.cs:5:30:5:36 | strings | | VarDecls.cs:6:5:11:5 | {...} | VarDecls.cs:6:5:11:5 | {...} | | VarDecls.cs:7:9:10:9 | fixed(...) { ... } | VarDecls.cs:7:9:10:9 | fixed(...) { ... } | | VarDecls.cs:7:22:7:23 | access to local variable c1 | VarDecls.cs:7:22:7:23 | access to local variable c1 | @@ -2966,6 +3128,7 @@ | VarDecls.cs:9:13:9:29 | return ...; | VarDecls.cs:9:27:9:28 | access to local variable c1 | | VarDecls.cs:9:20:9:28 | (...) ... | VarDecls.cs:9:27:9:28 | access to local variable c1 | | VarDecls.cs:9:27:9:28 | access to local variable c1 | VarDecls.cs:9:27:9:28 | access to local variable c1 | +| VarDecls.cs:13:22:13:22 | s | VarDecls.cs:13:22:13:22 | s | | VarDecls.cs:14:5:17:5 | {...} | VarDecls.cs:14:5:17:5 | {...} | | VarDecls.cs:15:9:15:30 | ... ...; | VarDecls.cs:15:9:15:30 | ... ...; | | VarDecls.cs:15:16:15:17 | access to local variable s1 | VarDecls.cs:15:16:15:17 | access to local variable s1 | @@ -2978,6 +3141,7 @@ | VarDecls.cs:16:16:16:17 | access to local variable s1 | VarDecls.cs:16:16:16:17 | access to local variable s1 | | VarDecls.cs:16:16:16:22 | ... + ... | VarDecls.cs:16:16:16:17 | access to local variable s1 | | VarDecls.cs:16:21:16:22 | access to local variable s2 | VarDecls.cs:16:21:16:22 | access to local variable s2 | +| VarDecls.cs:19:15:19:15 | b | VarDecls.cs:19:15:19:15 | b | | VarDecls.cs:20:5:26:5 | {...} | VarDecls.cs:20:5:26:5 | {...} | | VarDecls.cs:21:9:22:13 | using (...) {...} | VarDecls.cs:21:9:22:13 | using (...) {...} | | VarDecls.cs:21:16:21:22 | object creation of type C | VarDecls.cs:21:16:21:22 | object creation of type C | @@ -2999,6 +3163,7 @@ | VarDecls.cs:28:11:28:11 | this access | VarDecls.cs:28:11:28:11 | this access | | VarDecls.cs:28:11:28:11 | {...} | VarDecls.cs:28:11:28:11 | {...} | | VarDecls.cs:28:51:28:53 | {...} | VarDecls.cs:28:51:28:53 | {...} | +| cflow.cs:5:31:5:34 | args | cflow.cs:5:31:5:34 | args | | cflow.cs:6:5:35:5 | {...} | cflow.cs:6:5:35:5 | {...} | | cflow.cs:7:9:7:28 | ... ...; | cflow.cs:7:9:7:28 | ... ...; | | cflow.cs:7:13:7:13 | access to local variable a | cflow.cs:7:13:7:13 | access to local variable a | @@ -3085,6 +3250,7 @@ | cflow.cs:33:17:33:36 | call to method WriteLine | cflow.cs:33:35:33:35 | access to local variable i | | cflow.cs:33:17:33:37 | ...; | cflow.cs:33:17:33:37 | ...; | | cflow.cs:33:35:33:35 | access to local variable i | cflow.cs:33:35:33:35 | access to local variable i | +| cflow.cs:37:28:37:28 | a | cflow.cs:37:28:37:28 | a | | cflow.cs:38:5:68:5 | {...} | cflow.cs:38:5:68:5 | {...} | | cflow.cs:39:9:50:9 | switch (...) {...} | cflow.cs:39:9:50:9 | switch (...) {...} | | cflow.cs:39:17:39:17 | access to parameter a | cflow.cs:39:17:39:17 | access to parameter a | @@ -3138,6 +3304,7 @@ | cflow.cs:65:17:65:22 | break; | cflow.cs:65:17:65:22 | break; | | cflow.cs:67:9:67:17 | return ...; | cflow.cs:67:16:67:16 | access to parameter a | | cflow.cs:67:16:67:16 | access to parameter a | cflow.cs:67:16:67:16 | access to parameter a | +| cflow.cs:70:27:70:27 | s | cflow.cs:70:27:70:27 | s | | cflow.cs:71:5:82:5 | {...} | cflow.cs:71:5:82:5 | {...} | | cflow.cs:72:9:73:19 | if (...) ... | cflow.cs:72:9:73:19 | if (...) ... | | cflow.cs:72:13:72:13 | access to parameter s | cflow.cs:72:13:72:13 | access to parameter s | @@ -3157,6 +3324,7 @@ | cflow.cs:80:13:80:47 | call to method WriteLine | cflow.cs:80:31:80:46 | "" | | cflow.cs:80:13:80:48 | ...; | cflow.cs:80:13:80:48 | ...; | | cflow.cs:80:31:80:46 | "" | cflow.cs:80:31:80:46 | "" | +| cflow.cs:84:28:84:28 | s | cflow.cs:84:28:84:28 | s | | cflow.cs:85:5:88:5 | {...} | cflow.cs:85:5:88:5 | {...} | | cflow.cs:86:9:87:33 | if (...) ... | cflow.cs:86:9:87:33 | if (...) ... | | cflow.cs:86:13:86:13 | access to parameter s | cflow.cs:86:13:86:13 | access to parameter s | @@ -3170,6 +3338,7 @@ | cflow.cs:87:13:87:32 | call to method WriteLine | cflow.cs:87:31:87:31 | access to parameter s | | cflow.cs:87:13:87:33 | ...; | cflow.cs:87:13:87:33 | ...; | | cflow.cs:87:31:87:31 | access to parameter s | cflow.cs:87:31:87:31 | access to parameter s | +| cflow.cs:90:28:90:28 | s | cflow.cs:90:28:90:28 | s | | cflow.cs:91:5:104:5 | {...} | cflow.cs:91:5:104:5 | {...} | | cflow.cs:92:9:93:49 | if (...) ... | cflow.cs:92:9:93:49 | if (...) ... | | cflow.cs:92:13:92:27 | call to method Equals | cflow.cs:92:20:92:20 | access to parameter s | @@ -3208,6 +3377,7 @@ | cflow.cs:103:13:103:36 | ...; | cflow.cs:103:13:103:36 | ...; | | cflow.cs:103:31:103:34 | access to property Prop | cflow.cs:103:31:103:34 | this access | | cflow.cs:103:31:103:34 | this access | cflow.cs:103:31:103:34 | this access | +| cflow.cs:106:28:106:28 | s | cflow.cs:106:28:106:28 | s | | cflow.cs:107:5:117:5 | {...} | cflow.cs:107:5:117:5 | {...} | | cflow.cs:108:9:115:9 | if (...) ... | cflow.cs:108:9:115:9 | if (...) ... | | cflow.cs:108:13:108:13 | access to parameter s | cflow.cs:108:13:108:13 | access to parameter s | @@ -3223,6 +3393,7 @@ | cflow.cs:116:9:116:28 | call to method WriteLine | cflow.cs:116:27:116:27 | access to parameter s | | cflow.cs:116:9:116:29 | ...; | cflow.cs:116:9:116:29 | ...; | | cflow.cs:116:27:116:27 | access to parameter s | cflow.cs:116:27:116:27 | access to parameter s | +| cflow.cs:119:30:119:30 | s | cflow.cs:119:30:119:30 | s | | cflow.cs:120:5:124:5 | {...} | cflow.cs:120:5:124:5 | {...} | | cflow.cs:121:9:121:18 | ... ...; | cflow.cs:121:9:121:18 | ... ...; | | cflow.cs:121:13:121:13 | access to local variable x | cflow.cs:121:13:121:13 | access to local variable x | @@ -3246,6 +3417,7 @@ | cflow.cs:127:48:127:49 | "" | cflow.cs:127:48:127:49 | "" | | cflow.cs:127:53:127:57 | access to field Field | cflow.cs:127:53:127:57 | this access | | cflow.cs:127:53:127:57 | this access | cflow.cs:127:53:127:57 | this access | +| cflow.cs:127:62:127:64 | value | cflow.cs:127:62:127:64 | value | | cflow.cs:127:66:127:83 | {...} | cflow.cs:127:66:127:83 | {...} | | cflow.cs:127:68:127:72 | access to field Field | cflow.cs:127:68:127:72 | this access | | cflow.cs:127:68:127:72 | this access | cflow.cs:127:68:127:72 | this access | @@ -3255,12 +3427,14 @@ | cflow.cs:129:5:129:15 | call to constructor Object | cflow.cs:129:5:129:15 | call to constructor Object | | cflow.cs:129:5:129:15 | call to method | cflow.cs:129:5:129:15 | this access | | cflow.cs:129:5:129:15 | this access | cflow.cs:129:5:129:15 | this access | +| cflow.cs:129:24:129:24 | s | cflow.cs:129:24:129:24 | s | | cflow.cs:130:5:132:5 | {...} | cflow.cs:130:5:132:5 | {...} | | cflow.cs:131:9:131:13 | access to field Field | cflow.cs:131:9:131:13 | this access | | cflow.cs:131:9:131:13 | this access | cflow.cs:131:9:131:13 | this access | | cflow.cs:131:9:131:17 | ... = ... | cflow.cs:131:9:131:13 | this access | | cflow.cs:131:9:131:18 | ...; | cflow.cs:131:9:131:18 | ...; | | cflow.cs:131:17:131:17 | access to parameter s | cflow.cs:131:17:131:17 | access to parameter s | +| cflow.cs:134:21:134:21 | i | cflow.cs:134:21:134:21 | i | | cflow.cs:134:26:134:29 | call to constructor ControlFlow | cflow.cs:134:31:134:31 | access to parameter i | | cflow.cs:134:31:134:31 | (...) ... | cflow.cs:134:31:134:31 | access to parameter i | | cflow.cs:134:31:134:31 | access to parameter i | cflow.cs:134:31:134:31 | access to parameter i | @@ -3272,18 +3446,23 @@ | cflow.cs:136:33:136:37 | ... + ... | cflow.cs:136:33:136:33 | 0 | | cflow.cs:136:37:136:37 | 1 | cflow.cs:136:37:136:37 | 1 | | cflow.cs:136:40:136:42 | {...} | cflow.cs:136:40:136:42 | {...} | +| cflow.cs:138:54:138:54 | x | cflow.cs:138:54:138:54 | x | +| cflow.cs:138:69:138:69 | y | cflow.cs:138:69:138:69 | y | | cflow.cs:139:5:142:5 | {...} | cflow.cs:139:5:142:5 | {...} | | cflow.cs:140:9:140:28 | call to method WriteLine | cflow.cs:140:27:140:27 | access to parameter x | | cflow.cs:140:9:140:29 | ...; | cflow.cs:140:9:140:29 | ...; | | cflow.cs:140:27:140:27 | access to parameter x | cflow.cs:140:27:140:27 | access to parameter x | | cflow.cs:141:9:141:17 | return ...; | cflow.cs:141:16:141:16 | access to parameter y | | cflow.cs:141:16:141:16 | access to parameter y | cflow.cs:141:16:141:16 | access to parameter y | +| cflow.cs:144:28:144:28 | i | cflow.cs:144:28:144:28 | i | +| cflow.cs:144:28:144:28 | i | cflow.cs:144:28:144:28 | i | | cflow.cs:144:37:144:54 | {...} | cflow.cs:144:37:144:54 | {...} | | cflow.cs:144:39:144:52 | return ...; | cflow.cs:144:46:144:46 | access to parameter i | | cflow.cs:144:46:144:46 | (...) ... | cflow.cs:144:46:144:46 | access to parameter i | | cflow.cs:144:46:144:46 | access to parameter i | cflow.cs:144:46:144:46 | access to parameter i | | cflow.cs:144:46:144:51 | ... + ... | cflow.cs:144:46:144:46 | access to parameter i | | cflow.cs:144:50:144:51 | "" | cflow.cs:144:50:144:51 | "" | +| cflow.cs:144:56:144:58 | value | cflow.cs:144:56:144:58 | value | | cflow.cs:144:60:144:62 | {...} | cflow.cs:144:60:144:62 | {...} | | cflow.cs:147:5:177:5 | {...} | cflow.cs:147:5:177:5 | {...} | | cflow.cs:148:9:148:18 | ... ...; | cflow.cs:148:9:148:18 | ... ...; | @@ -3361,6 +3540,7 @@ | cflow.cs:181:9:181:38 | ... ...; | cflow.cs:181:9:181:38 | ... ...; | | cflow.cs:181:24:181:24 | access to local variable y | cflow.cs:181:24:181:24 | access to local variable y | | cflow.cs:181:24:181:37 | Func y = ... | cflow.cs:181:24:181:24 | access to local variable y | +| cflow.cs:181:28:181:28 | x | cflow.cs:181:28:181:28 | x | | cflow.cs:181:28:181:37 | (...) => ... | cflow.cs:181:28:181:37 | (...) => ... | | cflow.cs:181:33:181:33 | access to parameter x | cflow.cs:181:33:181:33 | access to parameter x | | cflow.cs:181:33:181:37 | ... + ... | cflow.cs:181:33:181:33 | access to parameter x | @@ -3369,6 +3549,7 @@ | cflow.cs:182:24:182:24 | access to local variable z | cflow.cs:182:24:182:24 | access to local variable z | | cflow.cs:182:24:182:61 | Func z = ... | cflow.cs:182:24:182:24 | access to local variable z | | cflow.cs:182:28:182:61 | delegate(...) { ... } | cflow.cs:182:28:182:61 | delegate(...) { ... } | +| cflow.cs:182:42:182:42 | x | cflow.cs:182:42:182:42 | x | | cflow.cs:182:45:182:61 | {...} | cflow.cs:182:45:182:61 | {...} | | cflow.cs:182:47:182:59 | return ...; | cflow.cs:182:54:182:54 | access to parameter x | | cflow.cs:182:54:182:54 | access to parameter x | cflow.cs:182:54:182:54 | access to parameter x | @@ -3579,8 +3760,10 @@ | cflow.cs:282:5:282:18 | this access | cflow.cs:282:5:282:18 | this access | | cflow.cs:282:24:282:27 | call to constructor ControlFlow | cflow.cs:282:24:282:27 | call to constructor ControlFlow | | cflow.cs:282:31:282:33 | {...} | cflow.cs:282:31:282:33 | {...} | +| cflow.cs:284:27:284:27 | s | cflow.cs:284:27:284:27 | s | | cflow.cs:284:32:284:35 | call to constructor ControlFlowSub | cflow.cs:284:32:284:35 | call to constructor ControlFlowSub | | cflow.cs:284:39:284:41 | {...} | cflow.cs:284:39:284:41 | {...} | +| cflow.cs:286:24:286:24 | i | cflow.cs:286:24:286:24 | i | | cflow.cs:286:29:286:32 | call to constructor ControlFlowSub | cflow.cs:286:34:286:34 | access to parameter i | | cflow.cs:286:34:286:34 | access to parameter i | cflow.cs:286:34:286:34 | access to parameter i | | cflow.cs:286:34:286:45 | call to method ToString | cflow.cs:286:34:286:34 | access to parameter i | @@ -3589,13 +3772,20 @@ | cflow.cs:289:7:289:18 | call to method | cflow.cs:289:7:289:18 | this access | | cflow.cs:289:7:289:18 | this access | cflow.cs:289:7:289:18 | this access | | cflow.cs:289:7:289:18 | {...} | cflow.cs:289:7:289:18 | {...} | +| cflow.cs:291:32:291:32 | f | cflow.cs:291:32:291:32 | f | | cflow.cs:291:38:291:38 | access to parameter f | cflow.cs:291:38:291:38 | access to parameter f | | cflow.cs:291:38:291:41 | delegate call | cflow.cs:291:38:291:38 | access to parameter f | | cflow.cs:291:40:291:40 | 0 | cflow.cs:291:40:291:40 | 0 | | cflow.cs:296:5:296:25 | call to constructor Object | cflow.cs:296:5:296:25 | call to constructor Object | | cflow.cs:296:5:296:25 | call to method | cflow.cs:296:5:296:25 | this access | | cflow.cs:296:5:296:25 | this access | cflow.cs:296:5:296:25 | this access | +| cflow.cs:296:32:296:32 | b | cflow.cs:296:32:296:32 | b | +| cflow.cs:296:39:296:39 | i | cflow.cs:296:39:296:39 | i | +| cflow.cs:296:49:296:49 | s | cflow.cs:296:49:296:49 | s | | cflow.cs:296:52:296:54 | {...} | cflow.cs:296:52:296:54 | {...} | +| cflow.cs:298:16:298:16 | i | cflow.cs:298:16:298:16 | i | +| cflow.cs:298:26:298:26 | s | cflow.cs:298:26:298:26 | s | +| cflow.cs:298:34:298:34 | b | cflow.cs:298:34:298:34 | b | | cflow.cs:299:5:301:5 | {...} | cflow.cs:299:5:301:5 | {...} | | cflow.cs:300:9:300:72 | object creation of type NegationInConstructor | cflow.cs:300:38:300:38 | 0 | | cflow.cs:300:9:300:73 | ...; | cflow.cs:300:9:300:73 | ...; | @@ -3614,6 +3804,8 @@ | cflow.cs:304:7:304:18 | this access | cflow.cs:304:7:304:18 | this access | | cflow.cs:304:7:304:18 | {...} | cflow.cs:304:7:304:18 | {...} | | cflow.cs:306:60:310:5 | (...) => ... | cflow.cs:306:60:310:5 | (...) => ... | +| cflow.cs:306:61:306:61 | o | cflow.cs:306:61:306:61 | o | +| cflow.cs:306:64:306:64 | n | cflow.cs:306:64:306:64 | n | | cflow.cs:307:5:310:5 | {...} | cflow.cs:307:5:310:5 | {...} | | cflow.cs:308:9:308:21 | ... ...; | cflow.cs:308:9:308:21 | ... ...; | | cflow.cs:308:16:308:16 | access to local variable x | cflow.cs:308:16:308:16 | access to local variable x | diff --git a/csharp/ql/test/library-tests/controlflow/graph/NodeGraph.expected b/csharp/ql/test/library-tests/controlflow/graph/NodeGraph.expected index 7c138f5c38fc..f9619e825cc8 100644 --- a/csharp/ql/test/library-tests/controlflow/graph/NodeGraph.expected +++ b/csharp/ql/test/library-tests/controlflow/graph/NodeGraph.expected @@ -8,20 +8,26 @@ | AccessorCalls.cs:1:7:1:19 | call to method | AccessorCalls.cs:1:7:1:19 | After call to method | | | AccessorCalls.cs:1:7:1:19 | this access | AccessorCalls.cs:1:7:1:19 | call to method | | | AccessorCalls.cs:1:7:1:19 | {...} | AccessorCalls.cs:1:7:1:19 | Normal Exit | | -| AccessorCalls.cs:5:23:5:25 | Entry | AccessorCalls.cs:5:30:5:30 | access to parameter i | | +| AccessorCalls.cs:5:18:5:18 | i | AccessorCalls.cs:5:30:5:30 | access to parameter i | | +| AccessorCalls.cs:5:18:5:18 | i | AccessorCalls.cs:5:33:5:35 | value | | +| AccessorCalls.cs:5:23:5:25 | Entry | AccessorCalls.cs:5:18:5:18 | i | | | AccessorCalls.cs:5:23:5:25 | Normal Exit | AccessorCalls.cs:5:23:5:25 | Exit | | | AccessorCalls.cs:5:30:5:30 | access to parameter i | AccessorCalls.cs:5:23:5:25 | Normal Exit | | -| AccessorCalls.cs:5:33:5:35 | Entry | AccessorCalls.cs:5:37:5:39 | {...} | | +| AccessorCalls.cs:5:33:5:35 | Entry | AccessorCalls.cs:5:18:5:18 | i | | | AccessorCalls.cs:5:33:5:35 | Normal Exit | AccessorCalls.cs:5:33:5:35 | Exit | | +| AccessorCalls.cs:5:33:5:35 | value | AccessorCalls.cs:5:37:5:39 | {...} | | | AccessorCalls.cs:5:37:5:39 | {...} | AccessorCalls.cs:5:33:5:35 | Normal Exit | | -| AccessorCalls.cs:7:32:7:34 | Entry | AccessorCalls.cs:7:36:7:38 | {...} | | +| AccessorCalls.cs:7:32:7:34 | Entry | AccessorCalls.cs:7:32:7:34 | value | | | AccessorCalls.cs:7:32:7:34 | Normal Exit | AccessorCalls.cs:7:32:7:34 | Exit | | +| AccessorCalls.cs:7:32:7:34 | value | AccessorCalls.cs:7:36:7:38 | {...} | | | AccessorCalls.cs:7:36:7:38 | {...} | AccessorCalls.cs:7:32:7:34 | Normal Exit | | -| AccessorCalls.cs:7:40:7:45 | Entry | AccessorCalls.cs:7:47:7:49 | {...} | | +| AccessorCalls.cs:7:40:7:45 | Entry | AccessorCalls.cs:7:40:7:45 | value | | | AccessorCalls.cs:7:40:7:45 | Normal Exit | AccessorCalls.cs:7:40:7:45 | Exit | | +| AccessorCalls.cs:7:40:7:45 | value | AccessorCalls.cs:7:47:7:49 | {...} | | | AccessorCalls.cs:7:47:7:49 | {...} | AccessorCalls.cs:7:40:7:45 | Normal Exit | | -| AccessorCalls.cs:10:10:10:11 | Entry | AccessorCalls.cs:11:5:17:5 | {...} | | +| AccessorCalls.cs:10:10:10:11 | Entry | AccessorCalls.cs:10:26:10:26 | e | | | AccessorCalls.cs:10:10:10:11 | Normal Exit | AccessorCalls.cs:10:10:10:11 | Exit | | +| AccessorCalls.cs:10:26:10:26 | e | AccessorCalls.cs:11:5:17:5 | {...} | | | AccessorCalls.cs:11:5:17:5 | After {...} | AccessorCalls.cs:10:10:10:11 | Normal Exit | | | AccessorCalls.cs:11:5:17:5 | {...} | AccessorCalls.cs:12:9:12:32 | ...; | | | AccessorCalls.cs:12:9:12:12 | this access | AccessorCalls.cs:12:9:12:18 | access to field Field | | @@ -85,8 +91,9 @@ | AccessorCalls.cs:16:9:16:24 | ...; | AccessorCalls.cs:16:9:16:23 | Before ... -= ... | | | AccessorCalls.cs:16:9:16:24 | After ...; | AccessorCalls.cs:11:5:17:5 | After {...} | | | AccessorCalls.cs:16:23:16:23 | access to parameter e | AccessorCalls.cs:16:9:16:23 | ... -= ... | | -| AccessorCalls.cs:19:10:19:11 | Entry | AccessorCalls.cs:20:5:26:5 | {...} | | +| AccessorCalls.cs:19:10:19:11 | Entry | AccessorCalls.cs:19:26:19:26 | e | | | AccessorCalls.cs:19:10:19:11 | Normal Exit | AccessorCalls.cs:19:10:19:11 | Exit | | +| AccessorCalls.cs:19:26:19:26 | e | AccessorCalls.cs:20:5:26:5 | {...} | | | AccessorCalls.cs:20:5:26:5 | After {...} | AccessorCalls.cs:19:10:19:11 | Normal Exit | | | AccessorCalls.cs:20:5:26:5 | {...} | AccessorCalls.cs:21:9:21:36 | ...; | | | AccessorCalls.cs:21:9:21:12 | this access | AccessorCalls.cs:21:9:21:14 | access to field x | | @@ -355,8 +362,9 @@ | AccessorCalls.cs:53:22:53:30 | Before access to indexer | AccessorCalls.cs:53:22:53:27 | Before access to field x | | | AccessorCalls.cs:53:22:53:30 | access to indexer | AccessorCalls.cs:53:22:53:30 | After access to indexer | | | AccessorCalls.cs:53:29:53:29 | 0 | AccessorCalls.cs:53:22:53:30 | access to indexer | | -| AccessorCalls.cs:56:10:56:11 | Entry | AccessorCalls.cs:57:5:59:5 | {...} | | +| AccessorCalls.cs:56:10:56:11 | Entry | AccessorCalls.cs:56:17:56:17 | i | | | AccessorCalls.cs:56:10:56:11 | Normal Exit | AccessorCalls.cs:56:10:56:11 | Exit | | +| AccessorCalls.cs:56:17:56:17 | i | AccessorCalls.cs:57:5:59:5 | {...} | | | AccessorCalls.cs:57:5:59:5 | After {...} | AccessorCalls.cs:56:10:56:11 | Normal Exit | | | AccessorCalls.cs:57:5:59:5 | {...} | AccessorCalls.cs:58:9:58:86 | ...; | | | AccessorCalls.cs:58:9:58:45 | (..., ...) | AccessorCalls.cs:58:9:58:45 | After (..., ...) | | @@ -404,8 +412,9 @@ | AccessorCalls.cs:58:77:58:83 | Before access to indexer | AccessorCalls.cs:58:77:58:80 | this access | | | AccessorCalls.cs:58:77:58:83 | access to indexer | AccessorCalls.cs:58:77:58:83 | After access to indexer | | | AccessorCalls.cs:58:82:58:82 | 1 | AccessorCalls.cs:58:77:58:83 | access to indexer | | -| AccessorCalls.cs:61:10:61:11 | Entry | AccessorCalls.cs:62:5:64:5 | {...} | | +| AccessorCalls.cs:61:10:61:11 | Entry | AccessorCalls.cs:61:17:61:17 | i | | | AccessorCalls.cs:61:10:61:11 | Normal Exit | AccessorCalls.cs:61:10:61:11 | Exit | | +| AccessorCalls.cs:61:17:61:17 | i | AccessorCalls.cs:62:5:64:5 | {...} | | | AccessorCalls.cs:62:5:64:5 | After {...} | AccessorCalls.cs:61:10:61:11 | Normal Exit | | | AccessorCalls.cs:62:5:64:5 | {...} | AccessorCalls.cs:63:9:63:98 | ...; | | | AccessorCalls.cs:63:9:63:51 | (..., ...) | AccessorCalls.cs:63:9:63:51 | After (..., ...) | | @@ -471,8 +480,11 @@ | AccessorCalls.cs:63:87:63:95 | Before access to indexer | AccessorCalls.cs:63:87:63:92 | Before access to field x | | | AccessorCalls.cs:63:87:63:95 | access to indexer | AccessorCalls.cs:63:87:63:95 | After access to indexer | | | AccessorCalls.cs:63:94:63:94 | 1 | AccessorCalls.cs:63:87:63:95 | access to indexer | | -| AccessorCalls.cs:66:10:66:11 | Entry | AccessorCalls.cs:67:5:74:5 | {...} | | +| AccessorCalls.cs:66:10:66:11 | Entry | AccessorCalls.cs:66:20:66:20 | o | | | AccessorCalls.cs:66:10:66:11 | Normal Exit | AccessorCalls.cs:66:10:66:11 | Exit | | +| AccessorCalls.cs:66:20:66:20 | o | AccessorCalls.cs:66:27:66:27 | i | | +| AccessorCalls.cs:66:27:66:27 | i | AccessorCalls.cs:66:43:66:43 | e | | +| AccessorCalls.cs:66:43:66:43 | e | AccessorCalls.cs:67:5:74:5 | {...} | | | AccessorCalls.cs:67:5:74:5 | After {...} | AccessorCalls.cs:66:10:66:11 | Normal Exit | | | AccessorCalls.cs:67:5:74:5 | {...} | AccessorCalls.cs:68:9:68:22 | ... ...; | | | AccessorCalls.cs:68:9:68:22 | ... ...; | AccessorCalls.cs:68:17:68:21 | Before dynamic d = ... | | @@ -638,9 +650,10 @@ | Assert.cs:5:7:5:17 | call to method | Assert.cs:5:7:5:17 | After call to method | | | Assert.cs:5:7:5:17 | this access | Assert.cs:5:7:5:17 | call to method | | | Assert.cs:5:7:5:17 | {...} | Assert.cs:5:7:5:17 | Normal Exit | | -| Assert.cs:7:10:7:11 | Entry | Assert.cs:8:5:12:5 | {...} | | +| Assert.cs:7:10:7:11 | Entry | Assert.cs:7:18:7:18 | b | | | Assert.cs:7:10:7:11 | Exceptional Exit | Assert.cs:7:10:7:11 | Exit | | | Assert.cs:7:10:7:11 | Normal Exit | Assert.cs:7:10:7:11 | Exit | | +| Assert.cs:7:18:7:18 | b | Assert.cs:8:5:12:5 | {...} | | | Assert.cs:8:5:12:5 | After {...} | Assert.cs:7:10:7:11 | Normal Exit | | | Assert.cs:8:5:12:5 | {...} | Assert.cs:9:9:9:33 | ... ...; | | | Assert.cs:9:9:9:33 | ... ...; | Assert.cs:9:16:9:32 | Before String s = ... | | @@ -677,9 +690,10 @@ | Assert.cs:11:27:11:34 | After access to property Length | Assert.cs:11:9:11:35 | call to method WriteLine | | | Assert.cs:11:27:11:34 | Before access to property Length | Assert.cs:11:27:11:27 | access to local variable s | | | Assert.cs:11:27:11:34 | access to property Length | Assert.cs:11:27:11:34 | After access to property Length | | -| Assert.cs:14:10:14:11 | Entry | Assert.cs:15:5:19:5 | {...} | | +| Assert.cs:14:10:14:11 | Entry | Assert.cs:14:18:14:18 | b | | | Assert.cs:14:10:14:11 | Exceptional Exit | Assert.cs:14:10:14:11 | Exit | | | Assert.cs:14:10:14:11 | Normal Exit | Assert.cs:14:10:14:11 | Exit | | +| Assert.cs:14:18:14:18 | b | Assert.cs:15:5:19:5 | {...} | | | Assert.cs:15:5:19:5 | After {...} | Assert.cs:14:10:14:11 | Normal Exit | | | Assert.cs:15:5:19:5 | {...} | Assert.cs:16:9:16:33 | ... ...; | | | Assert.cs:16:9:16:33 | ... ...; | Assert.cs:16:16:16:32 | Before String s = ... | | @@ -712,9 +726,10 @@ | Assert.cs:18:27:18:34 | After access to property Length | Assert.cs:18:9:18:35 | call to method WriteLine | | | Assert.cs:18:27:18:34 | Before access to property Length | Assert.cs:18:27:18:27 | access to local variable s | | | Assert.cs:18:27:18:34 | access to property Length | Assert.cs:18:27:18:34 | After access to property Length | | -| Assert.cs:21:10:21:11 | Entry | Assert.cs:22:5:26:5 | {...} | | +| Assert.cs:21:10:21:11 | Entry | Assert.cs:21:18:21:18 | b | | | Assert.cs:21:10:21:11 | Exceptional Exit | Assert.cs:21:10:21:11 | Exit | | | Assert.cs:21:10:21:11 | Normal Exit | Assert.cs:21:10:21:11 | Exit | | +| Assert.cs:21:18:21:18 | b | Assert.cs:22:5:26:5 | {...} | | | Assert.cs:22:5:26:5 | After {...} | Assert.cs:21:10:21:11 | Normal Exit | | | Assert.cs:22:5:26:5 | {...} | Assert.cs:23:9:23:33 | ... ...; | | | Assert.cs:23:9:23:33 | ... ...; | Assert.cs:23:16:23:32 | Before String s = ... | | @@ -747,9 +762,10 @@ | Assert.cs:25:27:25:34 | After access to property Length | Assert.cs:25:9:25:35 | call to method WriteLine | | | Assert.cs:25:27:25:34 | Before access to property Length | Assert.cs:25:27:25:27 | access to local variable s | | | Assert.cs:25:27:25:34 | access to property Length | Assert.cs:25:27:25:34 | After access to property Length | | -| Assert.cs:28:10:28:11 | Entry | Assert.cs:29:5:33:5 | {...} | | +| Assert.cs:28:10:28:11 | Entry | Assert.cs:28:18:28:18 | b | | | Assert.cs:28:10:28:11 | Exceptional Exit | Assert.cs:28:10:28:11 | Exit | | | Assert.cs:28:10:28:11 | Normal Exit | Assert.cs:28:10:28:11 | Exit | | +| Assert.cs:28:18:28:18 | b | Assert.cs:29:5:33:5 | {...} | | | Assert.cs:29:5:33:5 | After {...} | Assert.cs:28:10:28:11 | Normal Exit | | | Assert.cs:29:5:33:5 | {...} | Assert.cs:30:9:30:33 | ... ...; | | | Assert.cs:30:9:30:33 | ... ...; | Assert.cs:30:16:30:32 | Before String s = ... | | @@ -786,9 +802,10 @@ | Assert.cs:32:27:32:34 | After access to property Length | Assert.cs:32:9:32:35 | call to method WriteLine | | | Assert.cs:32:27:32:34 | Before access to property Length | Assert.cs:32:27:32:27 | access to local variable s | | | Assert.cs:32:27:32:34 | access to property Length | Assert.cs:32:27:32:34 | After access to property Length | | -| Assert.cs:35:10:35:11 | Entry | Assert.cs:36:5:40:5 | {...} | | +| Assert.cs:35:10:35:11 | Entry | Assert.cs:35:18:35:18 | b | | | Assert.cs:35:10:35:11 | Exceptional Exit | Assert.cs:35:10:35:11 | Exit | | | Assert.cs:35:10:35:11 | Normal Exit | Assert.cs:35:10:35:11 | Exit | | +| Assert.cs:35:18:35:18 | b | Assert.cs:36:5:40:5 | {...} | | | Assert.cs:36:5:40:5 | After {...} | Assert.cs:35:10:35:11 | Normal Exit | | | Assert.cs:36:5:40:5 | {...} | Assert.cs:37:9:37:33 | ... ...; | | | Assert.cs:37:9:37:33 | ... ...; | Assert.cs:37:16:37:32 | Before String s = ... | | @@ -825,9 +842,10 @@ | Assert.cs:39:27:39:34 | After access to property Length | Assert.cs:39:9:39:35 | call to method WriteLine | | | Assert.cs:39:27:39:34 | Before access to property Length | Assert.cs:39:27:39:27 | access to local variable s | | | Assert.cs:39:27:39:34 | access to property Length | Assert.cs:39:27:39:34 | After access to property Length | | -| Assert.cs:42:10:42:11 | Entry | Assert.cs:43:5:47:5 | {...} | | +| Assert.cs:42:10:42:11 | Entry | Assert.cs:42:18:42:18 | b | | | Assert.cs:42:10:42:11 | Exceptional Exit | Assert.cs:42:10:42:11 | Exit | | | Assert.cs:42:10:42:11 | Normal Exit | Assert.cs:42:10:42:11 | Exit | | +| Assert.cs:42:18:42:18 | b | Assert.cs:43:5:47:5 | {...} | | | Assert.cs:43:5:47:5 | After {...} | Assert.cs:42:10:42:11 | Normal Exit | | | Assert.cs:43:5:47:5 | {...} | Assert.cs:44:9:44:33 | ... ...; | | | Assert.cs:44:9:44:33 | ... ...; | Assert.cs:44:16:44:32 | Before String s = ... | | @@ -864,9 +882,10 @@ | Assert.cs:46:27:46:34 | After access to property Length | Assert.cs:46:9:46:35 | call to method WriteLine | | | Assert.cs:46:27:46:34 | Before access to property Length | Assert.cs:46:27:46:27 | access to local variable s | | | Assert.cs:46:27:46:34 | access to property Length | Assert.cs:46:27:46:34 | After access to property Length | | -| Assert.cs:49:10:49:11 | Entry | Assert.cs:50:5:54:5 | {...} | | +| Assert.cs:49:10:49:11 | Entry | Assert.cs:49:18:49:18 | b | | | Assert.cs:49:10:49:11 | Exceptional Exit | Assert.cs:49:10:49:11 | Exit | | | Assert.cs:49:10:49:11 | Normal Exit | Assert.cs:49:10:49:11 | Exit | | +| Assert.cs:49:18:49:18 | b | Assert.cs:50:5:54:5 | {...} | | | Assert.cs:50:5:54:5 | After {...} | Assert.cs:49:10:49:11 | Normal Exit | | | Assert.cs:50:5:54:5 | {...} | Assert.cs:51:9:51:33 | ... ...; | | | Assert.cs:51:9:51:33 | ... ...; | Assert.cs:51:16:51:32 | Before String s = ... | | @@ -903,9 +922,10 @@ | Assert.cs:53:27:53:34 | After access to property Length | Assert.cs:53:9:53:35 | call to method WriteLine | | | Assert.cs:53:27:53:34 | Before access to property Length | Assert.cs:53:27:53:27 | access to local variable s | | | Assert.cs:53:27:53:34 | access to property Length | Assert.cs:53:27:53:34 | After access to property Length | | -| Assert.cs:56:10:56:11 | Entry | Assert.cs:57:5:61:5 | {...} | | +| Assert.cs:56:10:56:11 | Entry | Assert.cs:56:18:56:18 | b | | | Assert.cs:56:10:56:11 | Exceptional Exit | Assert.cs:56:10:56:11 | Exit | | | Assert.cs:56:10:56:11 | Normal Exit | Assert.cs:56:10:56:11 | Exit | | +| Assert.cs:56:18:56:18 | b | Assert.cs:57:5:61:5 | {...} | | | Assert.cs:57:5:61:5 | After {...} | Assert.cs:56:10:56:11 | Normal Exit | | | Assert.cs:57:5:61:5 | {...} | Assert.cs:58:9:58:33 | ... ...; | | | Assert.cs:58:9:58:33 | ... ...; | Assert.cs:58:16:58:32 | Before String s = ... | | @@ -947,9 +967,10 @@ | Assert.cs:60:27:60:34 | After access to property Length | Assert.cs:60:9:60:35 | call to method WriteLine | | | Assert.cs:60:27:60:34 | Before access to property Length | Assert.cs:60:27:60:27 | access to local variable s | | | Assert.cs:60:27:60:34 | access to property Length | Assert.cs:60:27:60:34 | After access to property Length | | -| Assert.cs:63:10:63:11 | Entry | Assert.cs:64:5:68:5 | {...} | | +| Assert.cs:63:10:63:11 | Entry | Assert.cs:63:18:63:18 | b | | | Assert.cs:63:10:63:11 | Exceptional Exit | Assert.cs:63:10:63:11 | Exit | | | Assert.cs:63:10:63:11 | Normal Exit | Assert.cs:63:10:63:11 | Exit | | +| Assert.cs:63:18:63:18 | b | Assert.cs:64:5:68:5 | {...} | | | Assert.cs:64:5:68:5 | After {...} | Assert.cs:63:10:63:11 | Normal Exit | | | Assert.cs:64:5:68:5 | {...} | Assert.cs:65:9:65:33 | ... ...; | | | Assert.cs:65:9:65:33 | ... ...; | Assert.cs:65:16:65:32 | Before String s = ... | | @@ -991,9 +1012,10 @@ | Assert.cs:67:27:67:34 | After access to property Length | Assert.cs:67:9:67:35 | call to method WriteLine | | | Assert.cs:67:27:67:34 | Before access to property Length | Assert.cs:67:27:67:27 | access to local variable s | | | Assert.cs:67:27:67:34 | access to property Length | Assert.cs:67:27:67:34 | After access to property Length | | -| Assert.cs:70:10:70:12 | Entry | Assert.cs:71:5:75:5 | {...} | | +| Assert.cs:70:10:70:12 | Entry | Assert.cs:70:19:70:19 | b | | | Assert.cs:70:10:70:12 | Exceptional Exit | Assert.cs:70:10:70:12 | Exit | | | Assert.cs:70:10:70:12 | Normal Exit | Assert.cs:70:10:70:12 | Exit | | +| Assert.cs:70:19:70:19 | b | Assert.cs:71:5:75:5 | {...} | | | Assert.cs:71:5:75:5 | After {...} | Assert.cs:70:10:70:12 | Normal Exit | | | Assert.cs:71:5:75:5 | {...} | Assert.cs:72:9:72:33 | ... ...; | | | Assert.cs:72:9:72:33 | ... ...; | Assert.cs:72:16:72:32 | Before String s = ... | | @@ -1035,9 +1057,10 @@ | Assert.cs:74:27:74:34 | After access to property Length | Assert.cs:74:9:74:35 | call to method WriteLine | | | Assert.cs:74:27:74:34 | Before access to property Length | Assert.cs:74:27:74:27 | access to local variable s | | | Assert.cs:74:27:74:34 | access to property Length | Assert.cs:74:27:74:34 | After access to property Length | | -| Assert.cs:77:10:77:12 | Entry | Assert.cs:78:5:82:5 | {...} | | +| Assert.cs:77:10:77:12 | Entry | Assert.cs:77:19:77:19 | b | | | Assert.cs:77:10:77:12 | Exceptional Exit | Assert.cs:77:10:77:12 | Exit | | | Assert.cs:77:10:77:12 | Normal Exit | Assert.cs:77:10:77:12 | Exit | | +| Assert.cs:77:19:77:19 | b | Assert.cs:78:5:82:5 | {...} | | | Assert.cs:78:5:82:5 | After {...} | Assert.cs:77:10:77:12 | Normal Exit | | | Assert.cs:78:5:82:5 | {...} | Assert.cs:79:9:79:33 | ... ...; | | | Assert.cs:79:9:79:33 | ... ...; | Assert.cs:79:16:79:32 | Before String s = ... | | @@ -1079,9 +1102,10 @@ | Assert.cs:81:27:81:34 | After access to property Length | Assert.cs:81:9:81:35 | call to method WriteLine | | | Assert.cs:81:27:81:34 | Before access to property Length | Assert.cs:81:27:81:27 | access to local variable s | | | Assert.cs:81:27:81:34 | access to property Length | Assert.cs:81:27:81:34 | After access to property Length | | -| Assert.cs:84:10:84:12 | Entry | Assert.cs:85:5:129:5 | {...} | | +| Assert.cs:84:10:84:12 | Entry | Assert.cs:84:19:84:19 | b | | | Assert.cs:84:10:84:12 | Exceptional Exit | Assert.cs:84:10:84:12 | Exit | | | Assert.cs:84:10:84:12 | Normal Exit | Assert.cs:84:10:84:12 | Exit | | +| Assert.cs:84:19:84:19 | b | Assert.cs:85:5:129:5 | {...} | | | Assert.cs:85:5:129:5 | After {...} | Assert.cs:84:10:84:12 | Normal Exit | | | Assert.cs:85:5:129:5 | {...} | Assert.cs:86:9:86:33 | ... ...; | | | Assert.cs:86:9:86:33 | ... ...; | Assert.cs:86:16:86:32 | Before String s = ... | | @@ -1474,12 +1498,18 @@ | Assert.cs:128:27:128:34 | After access to property Length | Assert.cs:128:9:128:35 | call to method WriteLine | | | Assert.cs:128:27:128:34 | Before access to property Length | Assert.cs:128:27:128:27 | access to local variable s | | | Assert.cs:128:27:128:34 | access to property Length | Assert.cs:128:27:128:34 | After access to property Length | | -| Assert.cs:131:18:131:32 | Entry | Assert.cs:135:5:136:5 | {...} | | +| Assert.cs:131:18:131:32 | Entry | Assert.cs:132:74:132:83 | condition1 | | | Assert.cs:131:18:131:32 | Normal Exit | Assert.cs:131:18:131:32 | Exit | | +| Assert.cs:132:74:132:83 | condition1 | Assert.cs:133:73:133:82 | condition2 | | +| Assert.cs:133:73:133:82 | condition2 | Assert.cs:134:17:134:28 | nonCondition | | +| Assert.cs:134:17:134:28 | nonCondition | Assert.cs:135:5:136:5 | {...} | | | Assert.cs:135:5:136:5 | {...} | Assert.cs:131:18:131:32 | Normal Exit | | -| Assert.cs:138:10:138:12 | Entry | Assert.cs:139:5:142:5 | {...} | | +| Assert.cs:138:10:138:12 | Entry | Assert.cs:138:19:138:20 | b1 | | | Assert.cs:138:10:138:12 | Exceptional Exit | Assert.cs:138:10:138:12 | Exit | | | Assert.cs:138:10:138:12 | Normal Exit | Assert.cs:138:10:138:12 | Exit | | +| Assert.cs:138:19:138:20 | b1 | Assert.cs:138:28:138:29 | b2 | | +| Assert.cs:138:28:138:29 | b2 | Assert.cs:138:37:138:38 | b3 | | +| Assert.cs:138:37:138:38 | b3 | Assert.cs:139:5:142:5 | {...} | | | Assert.cs:139:5:142:5 | {...} | Assert.cs:140:9:140:36 | ...; | | | Assert.cs:140:9:140:35 | After call to method AssertTrueFalse | Assert.cs:140:9:140:36 | After ...; | | | Assert.cs:140:9:140:35 | Before call to method AssertTrueFalse | Assert.cs:140:9:140:35 | this access | | @@ -1564,17 +1594,22 @@ | Assignments.cs:14:9:14:36 | ...; | Assignments.cs:14:9:14:35 | Before ... += ... | | | Assignments.cs:14:9:14:36 | After ...; | Assignments.cs:4:5:15:5 | After {...} | | | Assignments.cs:14:18:14:35 | (...) => ... | Assignments.cs:14:9:14:35 | ... += ... | | -| Assignments.cs:14:18:14:35 | Entry | Assignments.cs:14:33:14:35 | {...} | | +| Assignments.cs:14:18:14:35 | Entry | Assignments.cs:14:19:14:24 | sender | | | Assignments.cs:14:18:14:35 | Normal Exit | Assignments.cs:14:18:14:35 | Exit | | +| Assignments.cs:14:19:14:24 | sender | Assignments.cs:14:27:14:27 | e | | +| Assignments.cs:14:27:14:27 | e | Assignments.cs:14:33:14:35 | {...} | | | Assignments.cs:14:33:14:35 | {...} | Assignments.cs:14:18:14:35 | Normal Exit | | -| Assignments.cs:17:40:17:40 | Entry | Assignments.cs:18:5:20:5 | {...} | | +| Assignments.cs:17:40:17:40 | Entry | Assignments.cs:17:54:17:54 | x | | | Assignments.cs:17:40:17:40 | Normal Exit | Assignments.cs:17:40:17:40 | Exit | | +| Assignments.cs:17:54:17:54 | x | Assignments.cs:17:69:17:69 | y | | +| Assignments.cs:17:69:17:69 | y | Assignments.cs:18:5:20:5 | {...} | | | Assignments.cs:18:5:20:5 | {...} | Assignments.cs:19:9:19:17 | Before return ...; | | | Assignments.cs:19:9:19:17 | Before return ...; | Assignments.cs:19:16:19:16 | access to parameter x | | | Assignments.cs:19:9:19:17 | return ...; | Assignments.cs:17:40:17:40 | Normal Exit | return | | Assignments.cs:19:16:19:16 | access to parameter x | Assignments.cs:19:9:19:17 | return ...; | | -| Assignments.cs:27:10:27:23 | Entry | Assignments.cs:28:5:30:5 | {...} | | +| Assignments.cs:27:10:27:23 | Entry | Assignments.cs:27:33:27:33 | x | | | Assignments.cs:27:10:27:23 | Normal Exit | Assignments.cs:27:10:27:23 | Exit | | +| Assignments.cs:27:33:27:33 | x | Assignments.cs:28:5:30:5 | {...} | | | Assignments.cs:28:5:30:5 | After {...} | Assignments.cs:27:10:27:23 | Normal Exit | | | Assignments.cs:28:5:30:5 | {...} | Assignments.cs:29:9:29:15 | ...; | | | Assignments.cs:29:9:29:9 | access to parameter x | Assignments.cs:29:13:29:14 | 42 | | @@ -1584,8 +1619,11 @@ | Assignments.cs:29:9:29:15 | ...; | Assignments.cs:29:9:29:14 | Before ... = ... | | | Assignments.cs:29:9:29:15 | After ...; | Assignments.cs:28:5:30:5 | After {...} | | | Assignments.cs:29:13:29:14 | 42 | Assignments.cs:29:9:29:14 | ... = ... | | -| Assignments.cs:32:10:32:22 | Entry | Assignments.cs:33:5:36:5 | {...} | | +| Assignments.cs:32:10:32:22 | Entry | Assignments.cs:32:32:32:32 | x | | | Assignments.cs:32:10:32:22 | Normal Exit | Assignments.cs:32:10:32:22 | Exit | | +| Assignments.cs:32:32:32:32 | x | Assignments.cs:32:42:32:42 | o | | +| Assignments.cs:32:42:32:42 | o | Assignments.cs:32:56:32:56 | y | | +| Assignments.cs:32:56:32:56 | y | Assignments.cs:33:5:36:5 | {...} | | | Assignments.cs:33:5:36:5 | After {...} | Assignments.cs:32:10:32:22 | Normal Exit | | | Assignments.cs:33:5:36:5 | {...} | Assignments.cs:34:9:34:15 | ...; | | | Assignments.cs:34:9:34:9 | access to parameter x | Assignments.cs:34:13:34:14 | 42 | | @@ -1663,8 +1701,9 @@ | BreakInTry.cs:1:7:1:16 | call to method | BreakInTry.cs:1:7:1:16 | After call to method | | | BreakInTry.cs:1:7:1:16 | this access | BreakInTry.cs:1:7:1:16 | call to method | | | BreakInTry.cs:1:7:1:16 | {...} | BreakInTry.cs:1:7:1:16 | Normal Exit | | -| BreakInTry.cs:3:10:3:11 | Entry | BreakInTry.cs:4:5:18:5 | {...} | | +| BreakInTry.cs:3:10:3:11 | Entry | BreakInTry.cs:3:22:3:25 | args | | | BreakInTry.cs:3:10:3:11 | Normal Exit | BreakInTry.cs:3:10:3:11 | Exit | | +| BreakInTry.cs:3:22:3:25 | args | BreakInTry.cs:4:5:18:5 | {...} | | | BreakInTry.cs:4:5:18:5 | After {...} | BreakInTry.cs:3:10:3:11 | Normal Exit | | | BreakInTry.cs:4:5:18:5 | {...} | BreakInTry.cs:5:9:17:9 | try {...} ... | | | BreakInTry.cs:5:9:17:9 | After try {...} ... | BreakInTry.cs:4:5:18:5 | After {...} | | @@ -1705,8 +1744,9 @@ | BreakInTry.cs:15:17:15:28 | Before ... == ... | BreakInTry.cs:15:17:15:20 | access to parameter args | | | BreakInTry.cs:15:25:15:28 | null | BreakInTry.cs:15:17:15:28 | ... == ... | | | BreakInTry.cs:16:17:16:17 | ; | BreakInTry.cs:15:13:16:17 | After if (...) ... | | -| BreakInTry.cs:20:10:20:11 | Entry | BreakInTry.cs:21:5:36:5 | {...} | | +| BreakInTry.cs:20:10:20:11 | Entry | BreakInTry.cs:20:22:20:25 | args | | | BreakInTry.cs:20:10:20:11 | Normal Exit | BreakInTry.cs:20:10:20:11 | Exit | | +| BreakInTry.cs:20:22:20:25 | args | BreakInTry.cs:21:5:36:5 | {...} | | | BreakInTry.cs:21:5:36:5 | After {...} | BreakInTry.cs:20:10:20:11 | Normal Exit | | | BreakInTry.cs:21:5:36:5 | {...} | BreakInTry.cs:22:9:34:9 | foreach (... ... in ...) ... | | | BreakInTry.cs:22:9:34:9 | After foreach (... ... in ...) ... | BreakInTry.cs:35:7:35:7 | ; | | @@ -1749,8 +1789,9 @@ | BreakInTry.cs:31:29:31:32 | null | BreakInTry.cs:31:21:31:32 | ... == ... | | | BreakInTry.cs:32:21:32:21 | ; | BreakInTry.cs:31:17:32:21 | After if (...) ... | | | BreakInTry.cs:35:7:35:7 | ; | BreakInTry.cs:21:5:36:5 | After {...} | | -| BreakInTry.cs:38:10:38:11 | Entry | BreakInTry.cs:39:5:54:5 | {...} | | +| BreakInTry.cs:38:10:38:11 | Entry | BreakInTry.cs:38:22:38:25 | args | | | BreakInTry.cs:38:10:38:11 | Normal Exit | BreakInTry.cs:38:10:38:11 | Exit | | +| BreakInTry.cs:38:22:38:25 | args | BreakInTry.cs:39:5:54:5 | {...} | | | BreakInTry.cs:39:5:54:5 | After {...} | BreakInTry.cs:38:10:38:11 | Normal Exit | | | BreakInTry.cs:39:5:54:5 | {...} | BreakInTry.cs:40:9:52:9 | try {...} ... | | | BreakInTry.cs:40:9:52:9 | After try {...} ... | BreakInTry.cs:53:7:53:7 | ; | | @@ -1794,8 +1835,9 @@ | BreakInTry.cs:50:21:50:26 | Before break; | BreakInTry.cs:50:21:50:26 | break; | | | BreakInTry.cs:50:21:50:26 | break; | BreakInTry.cs:47:13:51:13 | After foreach (... ... in ...) ... | break | | BreakInTry.cs:53:7:53:7 | ; | BreakInTry.cs:39:5:54:5 | After {...} | | -| BreakInTry.cs:56:10:56:11 | Entry | BreakInTry.cs:57:5:71:5 | {...} | | +| BreakInTry.cs:56:10:56:11 | Entry | BreakInTry.cs:56:22:56:25 | args | | | BreakInTry.cs:56:10:56:11 | Normal Exit | BreakInTry.cs:56:10:56:11 | Exit | | +| BreakInTry.cs:56:22:56:25 | args | BreakInTry.cs:57:5:71:5 | {...} | | | BreakInTry.cs:57:5:71:5 | After {...} | BreakInTry.cs:56:10:56:11 | Normal Exit | | | BreakInTry.cs:57:5:71:5 | {...} | BreakInTry.cs:58:9:70:9 | try {...} ... | | | BreakInTry.cs:58:9:70:9 | After try {...} ... | BreakInTry.cs:57:5:71:5 | After {...} | | @@ -1866,8 +1908,9 @@ | CompileTimeOperators.cs:17:9:17:27 | Before return ...; | CompileTimeOperators.cs:17:16:17:26 | typeof(...) | | | CompileTimeOperators.cs:17:9:17:27 | return ...; | CompileTimeOperators.cs:15:10:15:15 | Normal Exit | return | | CompileTimeOperators.cs:17:16:17:26 | typeof(...) | CompileTimeOperators.cs:17:9:17:27 | return ...; | | -| CompileTimeOperators.cs:20:12:20:17 | Entry | CompileTimeOperators.cs:21:5:23:5 | {...} | | +| CompileTimeOperators.cs:20:12:20:17 | Entry | CompileTimeOperators.cs:20:23:20:23 | i | | | CompileTimeOperators.cs:20:12:20:17 | Normal Exit | CompileTimeOperators.cs:20:12:20:17 | Exit | | +| CompileTimeOperators.cs:20:23:20:23 | i | CompileTimeOperators.cs:21:5:23:5 | {...} | | | CompileTimeOperators.cs:21:5:23:5 | {...} | CompileTimeOperators.cs:22:9:22:25 | Before return ...; | | | CompileTimeOperators.cs:22:9:22:25 | Before return ...; | CompileTimeOperators.cs:22:16:22:24 | nameof(...) | | | CompileTimeOperators.cs:22:9:22:25 | return ...; | CompileTimeOperators.cs:20:12:20:17 | Normal Exit | return | @@ -1925,8 +1968,9 @@ | ConditionalAccess.cs:1:7:1:23 | call to method | ConditionalAccess.cs:1:7:1:23 | After call to method | | | ConditionalAccess.cs:1:7:1:23 | this access | ConditionalAccess.cs:1:7:1:23 | call to method | | | ConditionalAccess.cs:1:7:1:23 | {...} | ConditionalAccess.cs:1:7:1:23 | Normal Exit | | -| ConditionalAccess.cs:3:12:3:13 | Entry | ConditionalAccess.cs:3:26:3:49 | Before call to method ToLower | | +| ConditionalAccess.cs:3:12:3:13 | Entry | ConditionalAccess.cs:3:20:3:20 | i | | | ConditionalAccess.cs:3:12:3:13 | Normal Exit | ConditionalAccess.cs:3:12:3:13 | Exit | | +| ConditionalAccess.cs:3:20:3:20 | i | ConditionalAccess.cs:3:26:3:49 | Before call to method ToLower | | | ConditionalAccess.cs:3:26:3:26 | After access to parameter i [non-null] | ConditionalAccess.cs:3:26:3:38 | call to method ToString | | | ConditionalAccess.cs:3:26:3:26 | After access to parameter i [null] | ConditionalAccess.cs:3:26:3:38 | After call to method ToString [null] | null | | ConditionalAccess.cs:3:26:3:26 | access to parameter i | ConditionalAccess.cs:3:26:3:26 | After access to parameter i [non-null] | non-null | @@ -1939,8 +1983,9 @@ | ConditionalAccess.cs:3:26:3:49 | After call to method ToLower | ConditionalAccess.cs:3:12:3:13 | Normal Exit | | | ConditionalAccess.cs:3:26:3:49 | Before call to method ToLower | ConditionalAccess.cs:3:26:3:38 | Before call to method ToString | | | ConditionalAccess.cs:3:26:3:49 | call to method ToLower | ConditionalAccess.cs:3:26:3:49 | After call to method ToLower | | -| ConditionalAccess.cs:5:10:5:11 | Entry | ConditionalAccess.cs:5:26:5:34 | Before access to property Length | | +| ConditionalAccess.cs:5:10:5:11 | Entry | ConditionalAccess.cs:5:20:5:20 | s | | | ConditionalAccess.cs:5:10:5:11 | Normal Exit | ConditionalAccess.cs:5:10:5:11 | Exit | | +| ConditionalAccess.cs:5:20:5:20 | s | ConditionalAccess.cs:5:26:5:34 | Before access to property Length | | | ConditionalAccess.cs:5:26:5:26 | After access to parameter s [non-null] | ConditionalAccess.cs:5:26:5:34 | access to property Length | | | ConditionalAccess.cs:5:26:5:26 | After access to parameter s [null] | ConditionalAccess.cs:5:26:5:34 | After access to property Length | | | ConditionalAccess.cs:5:26:5:26 | access to parameter s | ConditionalAccess.cs:5:26:5:26 | After access to parameter s [non-null] | non-null | @@ -1948,8 +1993,10 @@ | ConditionalAccess.cs:5:26:5:34 | After access to property Length | ConditionalAccess.cs:5:10:5:11 | Normal Exit | | | ConditionalAccess.cs:5:26:5:34 | Before access to property Length | ConditionalAccess.cs:5:26:5:26 | access to parameter s | | | ConditionalAccess.cs:5:26:5:34 | access to property Length | ConditionalAccess.cs:5:26:5:34 | After access to property Length | | -| ConditionalAccess.cs:7:10:7:11 | Entry | ConditionalAccess.cs:7:38:7:55 | Before access to property Length | | +| ConditionalAccess.cs:7:10:7:11 | Entry | ConditionalAccess.cs:7:20:7:21 | s1 | | | ConditionalAccess.cs:7:10:7:11 | Normal Exit | ConditionalAccess.cs:7:10:7:11 | Exit | | +| ConditionalAccess.cs:7:20:7:21 | s1 | ConditionalAccess.cs:7:31:7:32 | s2 | | +| ConditionalAccess.cs:7:31:7:32 | s2 | ConditionalAccess.cs:7:38:7:55 | Before access to property Length | | | ConditionalAccess.cs:7:38:7:55 | After access to property Length | ConditionalAccess.cs:7:10:7:11 | Normal Exit | | | ConditionalAccess.cs:7:38:7:55 | Before access to property Length | ConditionalAccess.cs:7:39:7:46 | ... ?? ... | | | ConditionalAccess.cs:7:38:7:55 | access to property Length | ConditionalAccess.cs:7:38:7:55 | After access to property Length | | @@ -1964,8 +2011,9 @@ | ConditionalAccess.cs:7:45:7:46 | After access to parameter s2 [null] | ConditionalAccess.cs:7:39:7:46 | After ... ?? ... [null] | null | | ConditionalAccess.cs:7:45:7:46 | access to parameter s2 | ConditionalAccess.cs:7:45:7:46 | After access to parameter s2 [non-null] | non-null | | ConditionalAccess.cs:7:45:7:46 | access to parameter s2 | ConditionalAccess.cs:7:45:7:46 | After access to parameter s2 [null] | null | -| ConditionalAccess.cs:9:9:9:10 | Entry | ConditionalAccess.cs:9:25:9:38 | ... ?? ... | | +| ConditionalAccess.cs:9:9:9:10 | Entry | ConditionalAccess.cs:9:19:9:19 | s | | | ConditionalAccess.cs:9:9:9:10 | Normal Exit | ConditionalAccess.cs:9:9:9:10 | Exit | | +| ConditionalAccess.cs:9:19:9:19 | s | ConditionalAccess.cs:9:25:9:38 | ... ?? ... | | | ConditionalAccess.cs:9:25:9:25 | After access to parameter s [non-null] | ConditionalAccess.cs:9:25:9:33 | access to property Length | | | ConditionalAccess.cs:9:25:9:25 | After access to parameter s [null] | ConditionalAccess.cs:9:25:9:33 | After access to property Length [null] | null | | ConditionalAccess.cs:9:25:9:25 | access to parameter s | ConditionalAccess.cs:9:25:9:25 | After access to parameter s [non-null] | non-null | @@ -1978,8 +2026,9 @@ | ConditionalAccess.cs:9:25:9:38 | ... ?? ... | ConditionalAccess.cs:9:25:9:33 | Before access to property Length | | | ConditionalAccess.cs:9:25:9:38 | After ... ?? ... | ConditionalAccess.cs:9:9:9:10 | Normal Exit | | | ConditionalAccess.cs:9:38:9:38 | 0 | ConditionalAccess.cs:9:25:9:38 | After ... ?? ... | | -| ConditionalAccess.cs:11:9:11:10 | Entry | ConditionalAccess.cs:12:5:17:5 | {...} | | +| ConditionalAccess.cs:11:9:11:10 | Entry | ConditionalAccess.cs:11:19:11:19 | s | | | ConditionalAccess.cs:11:9:11:10 | Normal Exit | ConditionalAccess.cs:11:9:11:10 | Exit | | +| ConditionalAccess.cs:11:19:11:19 | s | ConditionalAccess.cs:12:5:17:5 | {...} | | | ConditionalAccess.cs:12:5:17:5 | {...} | ConditionalAccess.cs:13:9:16:21 | if (...) ... | | | ConditionalAccess.cs:13:9:16:21 | if (...) ... | ConditionalAccess.cs:13:13:13:25 | Before ... > ... | | | ConditionalAccess.cs:13:13:13:13 | After access to parameter s [non-null] | ConditionalAccess.cs:13:13:13:21 | access to property Length | | @@ -2004,8 +2053,10 @@ | ConditionalAccess.cs:16:13:16:21 | Before return ...; | ConditionalAccess.cs:16:20:16:20 | 1 | | | ConditionalAccess.cs:16:13:16:21 | return ...; | ConditionalAccess.cs:11:9:11:10 | Normal Exit | return | | ConditionalAccess.cs:16:20:16:20 | 1 | ConditionalAccess.cs:16:13:16:21 | return ...; | | -| ConditionalAccess.cs:19:12:19:13 | Entry | ConditionalAccess.cs:19:40:19:60 | Before call to method CommaJoinWith | | +| ConditionalAccess.cs:19:12:19:13 | Entry | ConditionalAccess.cs:19:22:19:23 | s1 | | | ConditionalAccess.cs:19:12:19:13 | Normal Exit | ConditionalAccess.cs:19:12:19:13 | Exit | | +| ConditionalAccess.cs:19:22:19:23 | s1 | ConditionalAccess.cs:19:33:19:34 | s2 | | +| ConditionalAccess.cs:19:33:19:34 | s2 | ConditionalAccess.cs:19:40:19:60 | Before call to method CommaJoinWith | | | ConditionalAccess.cs:19:40:19:41 | After access to parameter s1 [non-null] | ConditionalAccess.cs:19:58:19:59 | access to parameter s2 | | | ConditionalAccess.cs:19:40:19:41 | After access to parameter s1 [null] | ConditionalAccess.cs:19:40:19:60 | After call to method CommaJoinWith | | | ConditionalAccess.cs:19:40:19:41 | access to parameter s1 | ConditionalAccess.cs:19:40:19:41 | After access to parameter s1 [non-null] | non-null | @@ -2014,8 +2065,9 @@ | ConditionalAccess.cs:19:40:19:60 | Before call to method CommaJoinWith | ConditionalAccess.cs:19:40:19:41 | access to parameter s1 | | | ConditionalAccess.cs:19:40:19:60 | call to method CommaJoinWith | ConditionalAccess.cs:19:40:19:60 | After call to method CommaJoinWith | | | ConditionalAccess.cs:19:58:19:59 | access to parameter s2 | ConditionalAccess.cs:19:40:19:60 | call to method CommaJoinWith | | -| ConditionalAccess.cs:21:10:21:11 | Entry | ConditionalAccess.cs:22:5:26:5 | {...} | | +| ConditionalAccess.cs:21:10:21:11 | Entry | ConditionalAccess.cs:21:17:21:17 | i | | | ConditionalAccess.cs:21:10:21:11 | Normal Exit | ConditionalAccess.cs:21:10:21:11 | Exit | | +| ConditionalAccess.cs:21:17:21:17 | i | ConditionalAccess.cs:22:5:26:5 | {...} | | | ConditionalAccess.cs:22:5:26:5 | After {...} | ConditionalAccess.cs:21:10:21:11 | Normal Exit | | | ConditionalAccess.cs:22:5:26:5 | {...} | ConditionalAccess.cs:23:9:23:39 | ... ...; | | | ConditionalAccess.cs:23:9:23:39 | ... ...; | ConditionalAccess.cs:23:13:23:38 | Before Nullable j = ... | | @@ -2062,15 +2114,18 @@ | ConditionalAccess.cs:25:13:25:32 | Before call to method CommaJoinWith | ConditionalAccess.cs:25:13:25:14 | "" | | | ConditionalAccess.cs:25:13:25:32 | call to method CommaJoinWith | ConditionalAccess.cs:25:13:25:32 | After call to method CommaJoinWith | | | ConditionalAccess.cs:25:31:25:31 | access to local variable s | ConditionalAccess.cs:25:13:25:32 | call to method CommaJoinWith | | -| ConditionalAccess.cs:30:10:30:12 | Entry | ConditionalAccess.cs:30:28:30:32 | Before ... = ... | | +| ConditionalAccess.cs:30:10:30:12 | Entry | ConditionalAccess.cs:30:22:30:22 | i | | | ConditionalAccess.cs:30:10:30:12 | Normal Exit | ConditionalAccess.cs:30:10:30:12 | Exit | | +| ConditionalAccess.cs:30:22:30:22 | i | ConditionalAccess.cs:30:28:30:32 | Before ... = ... | | | ConditionalAccess.cs:30:28:30:28 | access to parameter i | ConditionalAccess.cs:30:32:30:32 | 0 | | | ConditionalAccess.cs:30:28:30:32 | ... = ... | ConditionalAccess.cs:30:28:30:32 | After ... = ... | | | ConditionalAccess.cs:30:28:30:32 | After ... = ... | ConditionalAccess.cs:30:10:30:12 | Normal Exit | | | ConditionalAccess.cs:30:28:30:32 | Before ... = ... | ConditionalAccess.cs:30:28:30:28 | access to parameter i | | | ConditionalAccess.cs:30:32:30:32 | 0 | ConditionalAccess.cs:30:28:30:32 | ... = ... | | -| ConditionalAccess.cs:32:10:32:11 | Entry | ConditionalAccess.cs:33:5:36:5 | {...} | | +| ConditionalAccess.cs:32:10:32:11 | Entry | ConditionalAccess.cs:32:18:32:18 | b | | | ConditionalAccess.cs:32:10:32:11 | Normal Exit | ConditionalAccess.cs:32:10:32:11 | Exit | | +| ConditionalAccess.cs:32:18:32:18 | b | ConditionalAccess.cs:32:29:32:29 | i | | +| ConditionalAccess.cs:32:29:32:29 | i | ConditionalAccess.cs:33:5:36:5 | {...} | | | ConditionalAccess.cs:33:5:36:5 | After {...} | ConditionalAccess.cs:32:10:32:11 | Normal Exit | | | ConditionalAccess.cs:33:5:36:5 | {...} | ConditionalAccess.cs:34:9:34:14 | ...; | | | ConditionalAccess.cs:34:9:34:9 | access to parameter i | ConditionalAccess.cs:34:13:34:13 | 0 | | @@ -2092,17 +2147,21 @@ | ConditionalAccess.cs:35:9:35:25 | ...; | ConditionalAccess.cs:35:9:35:24 | Before call to method Out | | | ConditionalAccess.cs:35:9:35:25 | After ...; | ConditionalAccess.cs:33:5:36:5 | After {...} | | | ConditionalAccess.cs:35:23:35:23 | access to parameter i | ConditionalAccess.cs:35:9:35:24 | call to method Out | | -| ConditionalAccess.cs:42:9:42:11 | Entry | ConditionalAccess.cs:42:13:42:28 | {...} | | +| ConditionalAccess.cs:40:21:40:25 | index | ConditionalAccess.cs:42:13:42:28 | {...} | | +| ConditionalAccess.cs:40:21:40:25 | index | ConditionalAccess.cs:43:9:43:11 | value | | +| ConditionalAccess.cs:42:9:42:11 | Entry | ConditionalAccess.cs:40:21:40:25 | index | | | ConditionalAccess.cs:42:9:42:11 | Normal Exit | ConditionalAccess.cs:42:9:42:11 | Exit | | | ConditionalAccess.cs:42:13:42:28 | {...} | ConditionalAccess.cs:42:15:42:26 | Before return ...; | | | ConditionalAccess.cs:42:15:42:26 | Before return ...; | ConditionalAccess.cs:42:22:42:25 | null | | | ConditionalAccess.cs:42:15:42:26 | return ...; | ConditionalAccess.cs:42:9:42:11 | Normal Exit | return | | ConditionalAccess.cs:42:22:42:25 | null | ConditionalAccess.cs:42:15:42:26 | return ...; | | -| ConditionalAccess.cs:43:9:43:11 | Entry | ConditionalAccess.cs:43:13:43:15 | {...} | | +| ConditionalAccess.cs:43:9:43:11 | Entry | ConditionalAccess.cs:40:21:40:25 | index | | | ConditionalAccess.cs:43:9:43:11 | Normal Exit | ConditionalAccess.cs:43:9:43:11 | Exit | | +| ConditionalAccess.cs:43:9:43:11 | value | ConditionalAccess.cs:43:13:43:15 | {...} | | | ConditionalAccess.cs:43:13:43:15 | {...} | ConditionalAccess.cs:43:9:43:11 | Normal Exit | | -| ConditionalAccess.cs:46:10:46:11 | Entry | ConditionalAccess.cs:47:5:55:5 | {...} | | +| ConditionalAccess.cs:46:10:46:11 | Entry | ConditionalAccess.cs:46:31:46:32 | ca | | | ConditionalAccess.cs:46:10:46:11 | Normal Exit | ConditionalAccess.cs:46:10:46:11 | Exit | | +| ConditionalAccess.cs:46:31:46:32 | ca | ConditionalAccess.cs:47:5:55:5 | {...} | | | ConditionalAccess.cs:47:5:55:5 | After {...} | ConditionalAccess.cs:46:10:46:11 | Normal Exit | | | ConditionalAccess.cs:47:5:55:5 | {...} | ConditionalAccess.cs:48:9:48:26 | ...; | | | ConditionalAccess.cs:48:9:48:10 | After access to parameter ca [non-null] | ConditionalAccess.cs:48:9:48:20 | access to field IntField | | @@ -2207,8 +2266,10 @@ | ConditionalAccess.cs:54:12:54:29 | After ... += ... | ConditionalAccess.cs:54:9:54:30 | After ...; | | | ConditionalAccess.cs:54:12:54:29 | Before ... += ... | ConditionalAccess.cs:54:9:54:22 | Before access to property StringProp | | | ConditionalAccess.cs:54:27:54:29 | "!" | ConditionalAccess.cs:54:12:54:29 | ... += ... | | -| ConditionalAccess.cs:60:26:60:38 | Entry | ConditionalAccess.cs:60:70:60:83 | Before ... + ... | | +| ConditionalAccess.cs:60:26:60:38 | Entry | ConditionalAccess.cs:60:52:60:53 | s1 | | | ConditionalAccess.cs:60:26:60:38 | Normal Exit | ConditionalAccess.cs:60:26:60:38 | Exit | | +| ConditionalAccess.cs:60:52:60:53 | s1 | ConditionalAccess.cs:60:63:60:64 | s2 | | +| ConditionalAccess.cs:60:63:60:64 | s2 | ConditionalAccess.cs:60:70:60:83 | Before ... + ... | | | ConditionalAccess.cs:60:70:60:71 | access to parameter s1 | ConditionalAccess.cs:60:75:60:78 | ", " | | | ConditionalAccess.cs:60:70:60:78 | ... + ... | ConditionalAccess.cs:60:70:60:78 | After ... + ... | | | ConditionalAccess.cs:60:70:60:78 | After ... + ... | ConditionalAccess.cs:60:82:60:83 | access to parameter s2 | | @@ -2228,8 +2289,10 @@ | Conditions.cs:1:7:1:16 | call to method | Conditions.cs:1:7:1:16 | After call to method | | | Conditions.cs:1:7:1:16 | this access | Conditions.cs:1:7:1:16 | call to method | | | Conditions.cs:1:7:1:16 | {...} | Conditions.cs:1:7:1:16 | Normal Exit | | -| Conditions.cs:3:10:3:19 | Entry | Conditions.cs:4:5:9:5 | {...} | | +| Conditions.cs:3:10:3:19 | Entry | Conditions.cs:3:26:3:28 | inc | | | Conditions.cs:3:10:3:19 | Normal Exit | Conditions.cs:3:10:3:19 | Exit | | +| Conditions.cs:3:26:3:28 | inc | Conditions.cs:3:39:3:39 | x | | +| Conditions.cs:3:39:3:39 | x | Conditions.cs:4:5:9:5 | {...} | | | Conditions.cs:4:5:9:5 | After {...} | Conditions.cs:3:10:3:19 | Normal Exit | | | Conditions.cs:4:5:9:5 | {...} | Conditions.cs:5:9:6:16 | if (...) ... | | | Conditions.cs:5:9:6:16 | After if (...) ... | Conditions.cs:7:9:8:16 | if (...) ... | | @@ -2259,8 +2322,9 @@ | Conditions.cs:8:13:8:15 | Before ...-- | Conditions.cs:8:13:8:13 | access to parameter x | | | Conditions.cs:8:13:8:16 | ...; | Conditions.cs:8:13:8:15 | Before ...-- | | | Conditions.cs:8:13:8:16 | After ...; | Conditions.cs:7:9:8:16 | After if (...) ... | | -| Conditions.cs:11:9:11:10 | Entry | Conditions.cs:12:5:20:5 | {...} | | +| Conditions.cs:11:9:11:10 | Entry | Conditions.cs:11:17:11:17 | b | | | Conditions.cs:11:9:11:10 | Normal Exit | Conditions.cs:11:9:11:10 | Exit | | +| Conditions.cs:11:17:11:17 | b | Conditions.cs:12:5:20:5 | {...} | | | Conditions.cs:12:5:20:5 | {...} | Conditions.cs:13:9:13:18 | ... ...; | | | Conditions.cs:13:9:13:18 | ... ...; | Conditions.cs:13:13:13:17 | Before Int32 x = ... | | | Conditions.cs:13:9:13:18 | After ... ...; | Conditions.cs:14:9:15:16 | if (...) ... | | @@ -2308,8 +2372,10 @@ | Conditions.cs:19:9:19:17 | Before return ...; | Conditions.cs:19:16:19:16 | access to local variable x | | | Conditions.cs:19:9:19:17 | return ...; | Conditions.cs:11:9:11:10 | Normal Exit | return | | Conditions.cs:19:16:19:16 | access to local variable x | Conditions.cs:19:9:19:17 | return ...; | | -| Conditions.cs:22:9:22:10 | Entry | Conditions.cs:23:5:31:5 | {...} | | +| Conditions.cs:22:9:22:10 | Entry | Conditions.cs:22:17:22:18 | b1 | | | Conditions.cs:22:9:22:10 | Normal Exit | Conditions.cs:22:9:22:10 | Exit | | +| Conditions.cs:22:17:22:18 | b1 | Conditions.cs:22:26:22:27 | b2 | | +| Conditions.cs:22:26:22:27 | b2 | Conditions.cs:23:5:31:5 | {...} | | | Conditions.cs:23:5:31:5 | {...} | Conditions.cs:24:9:24:18 | ... ...; | | | Conditions.cs:24:9:24:18 | ... ...; | Conditions.cs:24:13:24:17 | Before Int32 x = ... | | | Conditions.cs:24:9:24:18 | After ... ...; | Conditions.cs:25:9:27:20 | if (...) ... | | @@ -2351,8 +2417,9 @@ | Conditions.cs:30:9:30:17 | Before return ...; | Conditions.cs:30:16:30:16 | access to local variable x | | | Conditions.cs:30:9:30:17 | return ...; | Conditions.cs:22:9:22:10 | Normal Exit | return | | Conditions.cs:30:16:30:16 | access to local variable x | Conditions.cs:30:9:30:17 | return ...; | | -| Conditions.cs:33:9:33:10 | Entry | Conditions.cs:34:5:44:5 | {...} | | +| Conditions.cs:33:9:33:10 | Entry | Conditions.cs:33:17:33:18 | b1 | | | Conditions.cs:33:9:33:10 | Normal Exit | Conditions.cs:33:9:33:10 | Exit | | +| Conditions.cs:33:17:33:18 | b1 | Conditions.cs:34:5:44:5 | {...} | | | Conditions.cs:34:5:44:5 | {...} | Conditions.cs:35:9:35:18 | ... ...; | | | Conditions.cs:35:9:35:18 | ... ...; | Conditions.cs:35:13:35:17 | Before Int32 x = ... | | | Conditions.cs:35:9:35:18 | After ... ...; | Conditions.cs:36:9:36:23 | ... ...; | | @@ -2408,8 +2475,10 @@ | Conditions.cs:43:9:43:17 | Before return ...; | Conditions.cs:43:16:43:16 | access to local variable x | | | Conditions.cs:43:9:43:17 | return ...; | Conditions.cs:33:9:33:10 | Normal Exit | return | | Conditions.cs:43:16:43:16 | access to local variable x | Conditions.cs:43:9:43:17 | return ...; | | -| Conditions.cs:46:9:46:10 | Entry | Conditions.cs:47:5:55:5 | {...} | | +| Conditions.cs:46:9:46:10 | Entry | Conditions.cs:46:17:46:17 | b | | | Conditions.cs:46:9:46:10 | Normal Exit | Conditions.cs:46:9:46:10 | Exit | | +| Conditions.cs:46:17:46:17 | b | Conditions.cs:46:24:46:24 | x | | +| Conditions.cs:46:24:46:24 | x | Conditions.cs:47:5:55:5 | {...} | | | Conditions.cs:47:5:55:5 | {...} | Conditions.cs:48:9:48:18 | ... ...; | | | Conditions.cs:48:9:48:18 | ... ...; | Conditions.cs:48:13:48:17 | Before Int32 y = ... | | | Conditions.cs:48:9:48:18 | After ... ...; | Conditions.cs:49:9:53:9 | while (...) ... | | @@ -2448,8 +2517,10 @@ | Conditions.cs:54:9:54:17 | Before return ...; | Conditions.cs:54:16:54:16 | access to local variable y | | | Conditions.cs:54:9:54:17 | return ...; | Conditions.cs:46:9:46:10 | Normal Exit | return | | Conditions.cs:54:16:54:16 | access to local variable y | Conditions.cs:54:9:54:17 | return ...; | | -| Conditions.cs:57:9:57:10 | Entry | Conditions.cs:58:5:68:5 | {...} | | +| Conditions.cs:57:9:57:10 | Entry | Conditions.cs:57:17:57:17 | b | | | Conditions.cs:57:9:57:10 | Normal Exit | Conditions.cs:57:9:57:10 | Exit | | +| Conditions.cs:57:17:57:17 | b | Conditions.cs:57:24:57:24 | x | | +| Conditions.cs:57:24:57:24 | x | Conditions.cs:58:5:68:5 | {...} | | | Conditions.cs:58:5:68:5 | {...} | Conditions.cs:59:9:59:18 | ... ...; | | | Conditions.cs:59:9:59:18 | ... ...; | Conditions.cs:59:13:59:17 | Before Int32 y = ... | | | Conditions.cs:59:9:59:18 | After ... ...; | Conditions.cs:60:9:64:9 | while (...) ... | | @@ -2500,8 +2571,9 @@ | Conditions.cs:67:9:67:17 | Before return ...; | Conditions.cs:67:16:67:16 | access to local variable y | | | Conditions.cs:67:9:67:17 | return ...; | Conditions.cs:57:9:57:10 | Normal Exit | return | | Conditions.cs:67:16:67:16 | access to local variable y | Conditions.cs:67:9:67:17 | return ...; | | -| Conditions.cs:70:9:70:10 | Entry | Conditions.cs:71:5:84:5 | {...} | | +| Conditions.cs:70:9:70:10 | Entry | Conditions.cs:70:21:70:22 | ss | | | Conditions.cs:70:9:70:10 | Normal Exit | Conditions.cs:70:9:70:10 | Exit | | +| Conditions.cs:70:21:70:22 | ss | Conditions.cs:71:5:84:5 | {...} | | | Conditions.cs:71:5:84:5 | {...} | Conditions.cs:72:9:72:30 | ... ...; | | | Conditions.cs:72:9:72:30 | ... ...; | Conditions.cs:72:13:72:29 | Before Boolean b = ... | | | Conditions.cs:72:9:72:30 | After ... ...; | Conditions.cs:73:9:73:18 | ... ...; | | @@ -2578,8 +2650,9 @@ | Conditions.cs:83:9:83:17 | Before return ...; | Conditions.cs:83:16:83:16 | access to local variable x | | | Conditions.cs:83:9:83:17 | return ...; | Conditions.cs:70:9:70:10 | Normal Exit | return | | Conditions.cs:83:16:83:16 | access to local variable x | Conditions.cs:83:9:83:17 | return ...; | | -| Conditions.cs:86:9:86:10 | Entry | Conditions.cs:87:5:100:5 | {...} | | +| Conditions.cs:86:9:86:10 | Entry | Conditions.cs:86:21:86:22 | ss | | | Conditions.cs:86:9:86:10 | Normal Exit | Conditions.cs:86:9:86:10 | Exit | | +| Conditions.cs:86:21:86:22 | ss | Conditions.cs:87:5:100:5 | {...} | | | Conditions.cs:87:5:100:5 | {...} | Conditions.cs:88:9:88:30 | ... ...; | | | Conditions.cs:88:9:88:30 | ... ...; | Conditions.cs:88:13:88:29 | Before Boolean b = ... | | | Conditions.cs:88:9:88:30 | After ... ...; | Conditions.cs:89:9:89:18 | ... ...; | | @@ -2656,8 +2729,9 @@ | Conditions.cs:99:9:99:17 | Before return ...; | Conditions.cs:99:16:99:16 | access to local variable x | | | Conditions.cs:99:9:99:17 | return ...; | Conditions.cs:86:9:86:10 | Normal Exit | return | | Conditions.cs:99:16:99:16 | access to local variable x | Conditions.cs:99:9:99:17 | return ...; | | -| Conditions.cs:102:12:102:13 | Entry | Conditions.cs:103:5:111:5 | {...} | | +| Conditions.cs:102:12:102:13 | Entry | Conditions.cs:102:20:102:20 | b | | | Conditions.cs:102:12:102:13 | Normal Exit | Conditions.cs:102:12:102:13 | Exit | | +| Conditions.cs:102:20:102:20 | b | Conditions.cs:103:5:111:5 | {...} | | | Conditions.cs:103:5:111:5 | {...} | Conditions.cs:104:9:104:29 | ... ...; | | | Conditions.cs:104:9:104:29 | ... ...; | Conditions.cs:104:13:104:28 | Before String x = ... | | | Conditions.cs:104:9:104:29 | After ... ...; | Conditions.cs:105:9:106:20 | if (...) ... | | @@ -2713,8 +2787,9 @@ | Conditions.cs:110:9:110:17 | Before return ...; | Conditions.cs:110:16:110:16 | access to local variable x | | | Conditions.cs:110:9:110:17 | return ...; | Conditions.cs:102:12:102:13 | Normal Exit | return | | Conditions.cs:110:16:110:16 | access to local variable x | Conditions.cs:110:9:110:17 | return ...; | | -| Conditions.cs:113:10:113:11 | Entry | Conditions.cs:114:5:124:5 | {...} | | +| Conditions.cs:113:10:113:11 | Entry | Conditions.cs:113:22:113:25 | args | | | Conditions.cs:113:10:113:11 | Normal Exit | Conditions.cs:113:10:113:11 | Exit | | +| Conditions.cs:113:22:113:25 | args | Conditions.cs:114:5:124:5 | {...} | | | Conditions.cs:114:5:124:5 | After {...} | Conditions.cs:113:10:113:11 | Normal Exit | | | Conditions.cs:114:5:124:5 | {...} | Conditions.cs:115:9:115:24 | ... ...; | | | Conditions.cs:115:9:115:24 | ... ...; | Conditions.cs:115:16:115:23 | Before String s = ... | | @@ -2832,8 +2907,9 @@ | Conditions.cs:137:21:137:37 | call to method ToString | Conditions.cs:137:21:137:37 | After call to method ToString | | | Conditions.cs:137:21:137:38 | ...; | Conditions.cs:137:21:137:37 | Before call to method ToString | | | Conditions.cs:137:21:137:38 | After ...; | Conditions.cs:136:17:138:17 | After {...} | | -| Conditions.cs:143:10:143:12 | Entry | Conditions.cs:144:5:150:5 | {...} | | +| Conditions.cs:143:10:143:12 | Entry | Conditions.cs:143:19:143:19 | b | | | Conditions.cs:143:10:143:12 | Normal Exit | Conditions.cs:143:10:143:12 | Exit | | +| Conditions.cs:143:19:143:19 | b | Conditions.cs:144:5:150:5 | {...} | | | Conditions.cs:144:5:150:5 | After {...} | Conditions.cs:143:10:143:12 | Normal Exit | | | Conditions.cs:144:5:150:5 | {...} | Conditions.cs:145:9:145:30 | ... ...; | | | Conditions.cs:145:9:145:30 | ... ...; | Conditions.cs:145:13:145:29 | Before String s = ... | | @@ -2892,8 +2968,19 @@ | DefaultParam.cs:1:7:1:18 | call to method | DefaultParam.cs:1:7:1:18 | After call to method | | | DefaultParam.cs:1:7:1:18 | this access | DefaultParam.cs:1:7:1:18 | call to method | | | DefaultParam.cs:1:7:1:18 | {...} | DefaultParam.cs:1:7:1:18 | Normal Exit | | -| DefaultParam.cs:3:12:3:13 | Entry | DefaultParam.cs:4:5:6:5 | {...} | | +| DefaultParam.cs:3:12:3:13 | Entry | DefaultParam.cs:3:20:3:20 | b | | | DefaultParam.cs:3:12:3:13 | Normal Exit | DefaultParam.cs:3:12:3:13 | Exit | | +| DefaultParam.cs:3:20:3:20 | b | DefaultParam.cs:3:30:3:30 | s | | +| DefaultParam.cs:3:30:3:30 | After s [match] | DefaultParam.cs:3:42:3:42 | i | | +| DefaultParam.cs:3:30:3:30 | After s [no-match] | DefaultParam.cs:3:34:3:35 | "" | | +| DefaultParam.cs:3:30:3:30 | s | DefaultParam.cs:3:30:3:30 | After s [match] | match | +| DefaultParam.cs:3:30:3:30 | s | DefaultParam.cs:3:30:3:30 | After s [no-match] | no-match | +| DefaultParam.cs:3:34:3:35 | "" | DefaultParam.cs:3:42:3:42 | i | | +| DefaultParam.cs:3:42:3:42 | After i [match] | DefaultParam.cs:4:5:6:5 | {...} | | +| DefaultParam.cs:3:42:3:42 | After i [no-match] | DefaultParam.cs:3:46:3:46 | 0 | | +| DefaultParam.cs:3:42:3:42 | i | DefaultParam.cs:3:42:3:42 | After i [match] | match | +| DefaultParam.cs:3:42:3:42 | i | DefaultParam.cs:3:42:3:42 | After i [no-match] | no-match | +| DefaultParam.cs:3:46:3:46 | 0 | DefaultParam.cs:4:5:6:5 | {...} | | | DefaultParam.cs:4:5:6:5 | {...} | DefaultParam.cs:5:9:5:25 | Before return ...; | | | DefaultParam.cs:5:9:5:25 | Before return ...; | DefaultParam.cs:5:16:5:24 | Before ... + ... | | | DefaultParam.cs:5:9:5:25 | return ...; | DefaultParam.cs:3:12:3:13 | Normal Exit | return | @@ -3001,9 +3088,10 @@ | ExitMethods.cs:62:9:62:22 | Before call to method ErrorAlways3 | ExitMethods.cs:62:9:62:22 | call to method ErrorAlways3 | | | ExitMethods.cs:62:9:62:22 | call to method ErrorAlways3 | ExitMethods.cs:60:10:60:11 | Exceptional Exit | exception | | ExitMethods.cs:62:9:62:23 | ...; | ExitMethods.cs:62:9:62:22 | Before call to method ErrorAlways3 | | -| ExitMethods.cs:66:17:66:26 | Entry | ExitMethods.cs:67:5:70:5 | {...} | | +| ExitMethods.cs:66:17:66:26 | Entry | ExitMethods.cs:66:33:66:33 | b | | | ExitMethods.cs:66:17:66:26 | Exceptional Exit | ExitMethods.cs:66:17:66:26 | Exit | | | ExitMethods.cs:66:17:66:26 | Normal Exit | ExitMethods.cs:66:17:66:26 | Exit | | +| ExitMethods.cs:66:33:66:33 | b | ExitMethods.cs:67:5:70:5 | {...} | | | ExitMethods.cs:67:5:70:5 | After {...} | ExitMethods.cs:66:17:66:26 | Normal Exit | | | ExitMethods.cs:67:5:70:5 | {...} | ExitMethods.cs:68:9:69:34 | if (...) ... | | | ExitMethods.cs:68:9:69:34 | After if (...) ... | ExitMethods.cs:67:5:70:5 | After {...} | | @@ -3017,8 +3105,9 @@ | ExitMethods.cs:69:19:69:33 | After object creation of type Exception | ExitMethods.cs:69:13:69:34 | throw ...; | | | ExitMethods.cs:69:19:69:33 | Before object creation of type Exception | ExitMethods.cs:69:19:69:33 | object creation of type Exception | | | ExitMethods.cs:69:19:69:33 | object creation of type Exception | ExitMethods.cs:69:19:69:33 | After object creation of type Exception | | -| ExitMethods.cs:72:17:72:27 | Entry | ExitMethods.cs:73:5:78:5 | {...} | | +| ExitMethods.cs:72:17:72:27 | Entry | ExitMethods.cs:72:34:72:34 | b | | | ExitMethods.cs:72:17:72:27 | Exceptional Exit | ExitMethods.cs:72:17:72:27 | Exit | | +| ExitMethods.cs:72:34:72:34 | b | ExitMethods.cs:73:5:78:5 | {...} | | | ExitMethods.cs:73:5:78:5 | {...} | ExitMethods.cs:74:9:77:45 | if (...) ... | | | ExitMethods.cs:74:9:77:45 | if (...) ... | ExitMethods.cs:74:13:74:13 | access to parameter b | | | ExitMethods.cs:74:13:74:13 | After access to parameter b [false] | ExitMethods.cs:77:13:77:45 | Before throw ...; | | @@ -3085,9 +3174,10 @@ | ExitMethods.cs:107:9:107:47 | Before call to method Exit | ExitMethods.cs:107:9:107:47 | call to method Exit | | | ExitMethods.cs:107:9:107:47 | call to method Exit | ExitMethods.cs:105:10:105:24 | Exceptional Exit | exception | | ExitMethods.cs:107:9:107:48 | ...; | ExitMethods.cs:107:9:107:47 | Before call to method Exit | | -| ExitMethods.cs:110:13:110:21 | Entry | ExitMethods.cs:111:5:113:5 | {...} | | +| ExitMethods.cs:110:13:110:21 | Entry | ExitMethods.cs:110:31:110:35 | input | | | ExitMethods.cs:110:13:110:21 | Exceptional Exit | ExitMethods.cs:110:13:110:21 | Exit | | | ExitMethods.cs:110:13:110:21 | Normal Exit | ExitMethods.cs:110:13:110:21 | Exit | | +| ExitMethods.cs:110:31:110:35 | input | ExitMethods.cs:111:5:113:5 | {...} | | | ExitMethods.cs:111:5:113:5 | {...} | ExitMethods.cs:112:9:112:77 | Before return ...; | | | ExitMethods.cs:112:9:112:77 | Before return ...; | ExitMethods.cs:112:16:112:76 | ... ? ... : ... | | | ExitMethods.cs:112:9:112:77 | return ...; | ExitMethods.cs:110:13:110:21 | Normal Exit | return | @@ -3117,8 +3207,9 @@ | ExitMethods.cs:112:47:112:76 | Before object creation of type ArgumentException | ExitMethods.cs:112:69:112:75 | "input" | | | ExitMethods.cs:112:47:112:76 | object creation of type ArgumentException | ExitMethods.cs:112:47:112:76 | After object creation of type ArgumentException | | | ExitMethods.cs:112:69:112:75 | "input" | ExitMethods.cs:112:47:112:76 | object creation of type ArgumentException | | -| ExitMethods.cs:115:16:115:34 | Entry | ExitMethods.cs:116:5:118:5 | {...} | | +| ExitMethods.cs:115:16:115:34 | Entry | ExitMethods.cs:115:43:115:43 | s | | | ExitMethods.cs:115:16:115:34 | Normal Exit | ExitMethods.cs:115:16:115:34 | Exit | | +| ExitMethods.cs:115:43:115:43 | s | ExitMethods.cs:116:5:118:5 | {...} | | | ExitMethods.cs:116:5:118:5 | {...} | ExitMethods.cs:117:9:117:39 | Before return ...; | | | ExitMethods.cs:117:9:117:39 | Before return ...; | ExitMethods.cs:117:16:117:38 | ... ? ... : ... | | | ExitMethods.cs:117:9:117:39 | return ...; | ExitMethods.cs:115:16:115:34 | Normal Exit | return | @@ -3147,9 +3238,10 @@ | ExitMethods.cs:128:9:128:26 | call to method FailingAssertion | ExitMethods.cs:126:17:126:33 | Exceptional Exit | exception | | ExitMethods.cs:128:9:128:26 | this access | ExitMethods.cs:128:9:128:26 | call to method FailingAssertion | | | ExitMethods.cs:128:9:128:27 | ...; | ExitMethods.cs:128:9:128:26 | Before call to method FailingAssertion | | -| ExitMethods.cs:132:10:132:20 | Entry | ExitMethods.cs:132:33:132:49 | Before call to method IsFalse | | +| ExitMethods.cs:132:10:132:20 | Entry | ExitMethods.cs:132:27:132:27 | b | | | ExitMethods.cs:132:10:132:20 | Exceptional Exit | ExitMethods.cs:132:10:132:20 | Exit | | | ExitMethods.cs:132:10:132:20 | Normal Exit | ExitMethods.cs:132:10:132:20 | Exit | | +| ExitMethods.cs:132:27:132:27 | b | ExitMethods.cs:132:33:132:49 | Before call to method IsFalse | | | ExitMethods.cs:132:33:132:49 | After call to method IsFalse | ExitMethods.cs:132:10:132:20 | Normal Exit | | | ExitMethods.cs:132:33:132:49 | Before call to method IsFalse | ExitMethods.cs:132:48:132:48 | access to parameter b | | | ExitMethods.cs:132:33:132:49 | call to method IsFalse | ExitMethods.cs:132:10:132:20 | Exceptional Exit | exception | @@ -3163,8 +3255,10 @@ | ExitMethods.cs:136:9:136:25 | this access | ExitMethods.cs:136:21:136:24 | true | | | ExitMethods.cs:136:9:136:26 | ...; | ExitMethods.cs:136:9:136:25 | Before call to method AssertFalse | | | ExitMethods.cs:136:21:136:24 | true | ExitMethods.cs:136:9:136:25 | call to method AssertFalse | | -| ExitMethods.cs:140:17:140:42 | Entry | ExitMethods.cs:141:5:147:5 | {...} | | +| ExitMethods.cs:140:17:140:42 | Entry | ExitMethods.cs:140:49:140:49 | b | | | ExitMethods.cs:140:17:140:42 | Exceptional Exit | ExitMethods.cs:140:17:140:42 | Exit | | +| ExitMethods.cs:140:49:140:49 | b | ExitMethods.cs:140:70:140:70 | e | | +| ExitMethods.cs:140:70:140:70 | e | ExitMethods.cs:141:5:147:5 | {...} | | | ExitMethods.cs:141:5:147:5 | {...} | ExitMethods.cs:142:9:145:53 | if (...) ... | | | ExitMethods.cs:142:9:145:53 | if (...) ... | ExitMethods.cs:142:13:142:13 | access to parameter b | | | ExitMethods.cs:142:13:142:13 | After access to parameter b [false] | ExitMethods.cs:145:13:145:53 | ...; | | @@ -3182,8 +3276,9 @@ | ExitMethods.cs:145:13:145:52 | call to method Throw | ExitMethods.cs:140:17:140:42 | Exceptional Exit | exception | | ExitMethods.cs:145:13:145:53 | ...; | ExitMethods.cs:145:13:145:52 | Before call to method Throw | | | ExitMethods.cs:145:43:145:43 | access to parameter e | ExitMethods.cs:145:13:145:44 | call to method Capture | | -| Extensions.cs:5:23:5:29 | Entry | Extensions.cs:6:5:8:5 | {...} | | +| Extensions.cs:5:23:5:29 | Entry | Extensions.cs:5:43:5:43 | s | | | Extensions.cs:5:23:5:29 | Normal Exit | Extensions.cs:5:23:5:29 | Exit | | +| Extensions.cs:5:43:5:43 | s | Extensions.cs:6:5:8:5 | {...} | | | Extensions.cs:6:5:8:5 | {...} | Extensions.cs:7:9:7:30 | Before return ...; | | | Extensions.cs:7:9:7:30 | Before return ...; | Extensions.cs:7:16:7:29 | Before call to method Parse | | | Extensions.cs:7:9:7:30 | return ...; | Extensions.cs:5:23:5:29 | Normal Exit | return | @@ -3191,8 +3286,10 @@ | Extensions.cs:7:16:7:29 | Before call to method Parse | Extensions.cs:7:28:7:28 | access to parameter s | | | Extensions.cs:7:16:7:29 | call to method Parse | Extensions.cs:7:16:7:29 | After call to method Parse | | | Extensions.cs:7:28:7:28 | access to parameter s | Extensions.cs:7:16:7:29 | call to method Parse | | -| Extensions.cs:10:24:10:29 | Entry | Extensions.cs:11:5:13:5 | {...} | | +| Extensions.cs:10:24:10:29 | Entry | Extensions.cs:10:43:10:43 | s | | | Extensions.cs:10:24:10:29 | Normal Exit | Extensions.cs:10:24:10:29 | Exit | | +| Extensions.cs:10:43:10:43 | s | Extensions.cs:10:65:10:65 | f | | +| Extensions.cs:10:65:10:65 | f | Extensions.cs:11:5:13:5 | {...} | | | Extensions.cs:11:5:13:5 | {...} | Extensions.cs:12:9:12:20 | Before return ...; | | | Extensions.cs:12:9:12:20 | Before return ...; | Extensions.cs:12:16:12:19 | Before delegate call | | | Extensions.cs:12:9:12:20 | return ...; | Extensions.cs:10:24:10:29 | Normal Exit | return | @@ -3207,8 +3304,9 @@ | Extensions.cs:15:40:15:51 | Before call to method ToInt32 | Extensions.cs:15:48:15:50 | "0" | | | Extensions.cs:15:40:15:51 | call to method ToInt32 | Extensions.cs:15:40:15:51 | After call to method ToInt32 | | | Extensions.cs:15:48:15:50 | "0" | Extensions.cs:15:40:15:51 | call to method ToInt32 | | -| Extensions.cs:20:17:20:20 | Entry | Extensions.cs:21:5:26:5 | {...} | | +| Extensions.cs:20:17:20:20 | Entry | Extensions.cs:20:29:20:29 | s | | | Extensions.cs:20:17:20:20 | Normal Exit | Extensions.cs:20:17:20:20 | Exit | | +| Extensions.cs:20:29:20:29 | s | Extensions.cs:21:5:26:5 | {...} | | | Extensions.cs:21:5:26:5 | After {...} | Extensions.cs:20:17:20:20 | Normal Exit | | | Extensions.cs:21:5:26:5 | {...} | Extensions.cs:22:9:22:20 | ...; | | | Extensions.cs:22:9:22:9 | access to parameter s | Extensions.cs:22:9:22:19 | call to method ToInt32 | | @@ -3637,9 +3735,10 @@ | Finally.cs:141:19:141:43 | Before object creation of type ArgumentException | Finally.cs:141:41:141:42 | "" | | | Finally.cs:141:19:141:43 | object creation of type ArgumentException | Finally.cs:141:19:141:43 | After object creation of type ArgumentException | | | Finally.cs:141:41:141:42 | "" | Finally.cs:141:19:141:43 | object creation of type ArgumentException | | -| Finally.cs:147:10:147:11 | Entry | Finally.cs:148:5:170:5 | {...} | | +| Finally.cs:147:10:147:11 | Entry | Finally.cs:147:22:147:25 | args | | | Finally.cs:147:10:147:11 | Exceptional Exit | Finally.cs:147:10:147:11 | Exit | | | Finally.cs:147:10:147:11 | Normal Exit | Finally.cs:147:10:147:11 | Exit | | +| Finally.cs:147:22:147:25 | args | Finally.cs:148:5:170:5 | {...} | | | Finally.cs:148:5:170:5 | After {...} | Finally.cs:147:10:147:11 | Normal Exit | | | Finally.cs:148:5:170:5 | {...} | Finally.cs:149:9:169:9 | try {...} ... | | | Finally.cs:149:9:169:9 | After try {...} ... | Finally.cs:148:5:170:5 | After {...} | | @@ -3755,9 +3854,11 @@ | Finally.cs:174:11:174:20 | call to method | Finally.cs:174:11:174:20 | After call to method | | | Finally.cs:174:11:174:20 | this access | Finally.cs:174:11:174:20 | call to method | | | Finally.cs:174:11:174:20 | {...} | Finally.cs:174:11:174:20 | Normal Exit | | -| Finally.cs:176:10:176:11 | Entry | Finally.cs:177:5:193:5 | {...} | | +| Finally.cs:176:10:176:11 | Entry | Finally.cs:176:18:176:19 | b1 | | | Finally.cs:176:10:176:11 | Exceptional Exit | Finally.cs:176:10:176:11 | Exit | | | Finally.cs:176:10:176:11 | Normal Exit | Finally.cs:176:10:176:11 | Exit | | +| Finally.cs:176:18:176:19 | b1 | Finally.cs:176:27:176:28 | b2 | | +| Finally.cs:176:27:176:28 | b2 | Finally.cs:177:5:193:5 | {...} | | | Finally.cs:177:5:193:5 | After {...} | Finally.cs:176:10:176:11 | Normal Exit | | | Finally.cs:177:5:193:5 | {...} | Finally.cs:178:9:192:9 | try {...} ... | | | Finally.cs:178:9:192:9 | After try {...} ... | Finally.cs:177:5:193:5 | After {...} | | @@ -3816,9 +3917,12 @@ | Finally.cs:190:31:190:46 | After object creation of type ExceptionC | Finally.cs:190:25:190:47 | throw ...; | | | Finally.cs:190:31:190:46 | Before object creation of type ExceptionC | Finally.cs:190:31:190:46 | object creation of type ExceptionC | | | Finally.cs:190:31:190:46 | object creation of type ExceptionC | Finally.cs:190:31:190:46 | After object creation of type ExceptionC | | -| Finally.cs:195:10:195:12 | Entry | Finally.cs:196:5:214:5 | {...} | | +| Finally.cs:195:10:195:12 | Entry | Finally.cs:195:19:195:20 | b1 | | | Finally.cs:195:10:195:12 | Exceptional Exit | Finally.cs:195:10:195:12 | Exit | | | Finally.cs:195:10:195:12 | Normal Exit | Finally.cs:195:10:195:12 | Exit | | +| Finally.cs:195:19:195:20 | b1 | Finally.cs:195:28:195:29 | b2 | | +| Finally.cs:195:28:195:29 | b2 | Finally.cs:195:37:195:38 | b3 | | +| Finally.cs:195:37:195:38 | b3 | Finally.cs:196:5:214:5 | {...} | | | Finally.cs:196:5:214:5 | After {...} | Finally.cs:195:10:195:12 | Normal Exit | | | Finally.cs:196:5:214:5 | {...} | Finally.cs:197:9:212:9 | try {...} ... | | | Finally.cs:197:9:212:9 | After try {...} ... | Finally.cs:213:9:213:25 | ...; | | @@ -3929,9 +4033,11 @@ | Finally.cs:230:9:230:34 | ...; | Finally.cs:230:9:230:33 | Before call to method WriteLine | | | Finally.cs:230:9:230:34 | After ...; | Finally.cs:217:5:231:5 | After {...} | | | Finally.cs:230:27:230:32 | "Done" | Finally.cs:230:9:230:33 | call to method WriteLine | | -| Finally.cs:233:10:233:12 | Entry | Finally.cs:234:5:261:5 | {...} | | +| Finally.cs:233:10:233:12 | Entry | Finally.cs:233:19:233:20 | b1 | | | Finally.cs:233:10:233:12 | Exceptional Exit | Finally.cs:233:10:233:12 | Exit | | | Finally.cs:233:10:233:12 | Normal Exit | Finally.cs:233:10:233:12 | Exit | | +| Finally.cs:233:19:233:20 | b1 | Finally.cs:233:28:233:29 | b2 | | +| Finally.cs:233:28:233:29 | b2 | Finally.cs:234:5:261:5 | {...} | | | Finally.cs:234:5:261:5 | After {...} | Finally.cs:233:10:233:12 | Normal Exit | | | Finally.cs:234:5:261:5 | {...} | Finally.cs:235:9:259:9 | try {...} ... | | | Finally.cs:235:9:259:9 | After try {...} ... | Finally.cs:260:9:260:34 | ...; | | @@ -4004,9 +4110,10 @@ | Finally.cs:260:9:260:34 | ...; | Finally.cs:260:9:260:33 | Before call to method WriteLine | | | Finally.cs:260:9:260:34 | After ...; | Finally.cs:234:5:261:5 | After {...} | | | Finally.cs:260:27:260:32 | "Done" | Finally.cs:260:9:260:33 | call to method WriteLine | | -| Finally.cs:263:10:263:12 | Entry | Finally.cs:264:5:274:5 | {...} | | +| Finally.cs:263:10:263:12 | Entry | Finally.cs:263:18:263:18 | i | | | Finally.cs:263:10:263:12 | Exceptional Exit | Finally.cs:263:10:263:12 | Exit | | | Finally.cs:263:10:263:12 | Normal Exit | Finally.cs:263:10:263:12 | Exit | | +| Finally.cs:263:18:263:18 | i | Finally.cs:264:5:274:5 | {...} | | | Finally.cs:264:5:274:5 | After {...} | Finally.cs:263:10:263:12 | Normal Exit | | | Finally.cs:264:5:274:5 | {...} | Finally.cs:265:9:273:9 | try {...} ... | | | Finally.cs:265:9:273:9 | After try {...} ... | Finally.cs:264:5:274:5 | After {...} | | @@ -4046,8 +4153,9 @@ | Foreach.cs:4:7:4:13 | call to method | Foreach.cs:4:7:4:13 | After call to method | | | Foreach.cs:4:7:4:13 | this access | Foreach.cs:4:7:4:13 | call to method | | | Foreach.cs:4:7:4:13 | {...} | Foreach.cs:4:7:4:13 | Normal Exit | | -| Foreach.cs:6:10:6:11 | Entry | Foreach.cs:7:5:10:5 | {...} | | +| Foreach.cs:6:10:6:11 | Entry | Foreach.cs:6:22:6:25 | args | | | Foreach.cs:6:10:6:11 | Normal Exit | Foreach.cs:6:10:6:11 | Exit | | +| Foreach.cs:6:22:6:25 | args | Foreach.cs:7:5:10:5 | {...} | | | Foreach.cs:7:5:10:5 | After {...} | Foreach.cs:6:10:6:11 | Normal Exit | | | Foreach.cs:7:5:10:5 | {...} | Foreach.cs:8:9:9:13 | foreach (... ... in ...) ... | | | Foreach.cs:8:9:9:13 | After foreach (... ... in ...) ... | Foreach.cs:7:5:10:5 | After {...} | | @@ -4060,8 +4168,9 @@ | Foreach.cs:8:29:8:32 | access to parameter args | Foreach.cs:8:29:8:32 | After access to parameter args [empty] | empty | | Foreach.cs:8:29:8:32 | access to parameter args | Foreach.cs:8:29:8:32 | After access to parameter args [non-empty] | non-empty | | Foreach.cs:9:13:9:13 | ; | Foreach.cs:8:9:9:13 | [LoopHeader] foreach (... ... in ...) ... | | -| Foreach.cs:12:10:12:11 | Entry | Foreach.cs:13:5:16:5 | {...} | | +| Foreach.cs:12:10:12:11 | Entry | Foreach.cs:12:22:12:25 | args | | | Foreach.cs:12:10:12:11 | Normal Exit | Foreach.cs:12:10:12:11 | Exit | | +| Foreach.cs:12:22:12:25 | args | Foreach.cs:13:5:16:5 | {...} | | | Foreach.cs:13:5:16:5 | After {...} | Foreach.cs:12:10:12:11 | Normal Exit | | | Foreach.cs:13:5:16:5 | {...} | Foreach.cs:14:9:15:13 | foreach (... ... in ...) ... | | | Foreach.cs:14:9:15:13 | After foreach (... ... in ...) ... | Foreach.cs:13:5:16:5 | After {...} | | @@ -4074,8 +4183,9 @@ | Foreach.cs:14:27:14:30 | access to parameter args | Foreach.cs:14:27:14:30 | After access to parameter args [empty] | empty | | Foreach.cs:14:27:14:30 | access to parameter args | Foreach.cs:14:27:14:30 | After access to parameter args [non-empty] | non-empty | | Foreach.cs:15:13:15:13 | ; | Foreach.cs:14:9:15:13 | [LoopHeader] foreach (... ... in ...) ... | | -| Foreach.cs:18:10:18:11 | Entry | Foreach.cs:19:5:22:5 | {...} | | +| Foreach.cs:18:10:18:11 | Entry | Foreach.cs:18:33:18:33 | e | | | Foreach.cs:18:10:18:11 | Normal Exit | Foreach.cs:18:10:18:11 | Exit | | +| Foreach.cs:18:33:18:33 | e | Foreach.cs:19:5:22:5 | {...} | | | Foreach.cs:19:5:22:5 | After {...} | Foreach.cs:18:10:18:11 | Normal Exit | | | Foreach.cs:19:5:22:5 | {...} | Foreach.cs:20:9:21:11 | foreach (... ... in ...) ... | | | Foreach.cs:20:9:21:11 | After foreach (... ... in ...) ... | Foreach.cs:19:5:22:5 | After {...} | | @@ -4102,8 +4212,9 @@ | Foreach.cs:20:43:20:68 | call to method Empty | Foreach.cs:20:43:20:68 | After call to method Empty [empty] | empty | | Foreach.cs:20:43:20:68 | call to method Empty | Foreach.cs:20:43:20:68 | After call to method Empty [non-empty] | non-empty | | Foreach.cs:21:11:21:11 | ; | Foreach.cs:20:9:21:11 | [LoopHeader] foreach (... ... in ...) ... | | -| Foreach.cs:24:10:24:11 | Entry | Foreach.cs:25:5:28:5 | {...} | | +| Foreach.cs:24:10:24:11 | Entry | Foreach.cs:24:40:24:43 | args | | | Foreach.cs:24:10:24:11 | Normal Exit | Foreach.cs:24:10:24:11 | Exit | | +| Foreach.cs:24:40:24:43 | args | Foreach.cs:25:5:28:5 | {...} | | | Foreach.cs:25:5:28:5 | After {...} | Foreach.cs:24:10:24:11 | Normal Exit | | | Foreach.cs:25:5:28:5 | {...} | Foreach.cs:26:9:27:11 | foreach (... ... in ...) ... | | | Foreach.cs:26:9:27:11 | After foreach (... ... in ...) ... | Foreach.cs:25:5:28:5 | After {...} | | @@ -4120,8 +4231,9 @@ | Foreach.cs:26:36:26:39 | access to parameter args | Foreach.cs:26:36:26:39 | After access to parameter args [empty] | empty | | Foreach.cs:26:36:26:39 | access to parameter args | Foreach.cs:26:36:26:39 | After access to parameter args [non-empty] | non-empty | | Foreach.cs:27:11:27:11 | ; | Foreach.cs:26:9:27:11 | [LoopHeader] foreach (... ... in ...) ... | | -| Foreach.cs:30:10:30:11 | Entry | Foreach.cs:31:5:34:5 | {...} | | +| Foreach.cs:30:10:30:11 | Entry | Foreach.cs:30:40:30:43 | args | | | Foreach.cs:30:10:30:11 | Normal Exit | Foreach.cs:30:10:30:11 | Exit | | +| Foreach.cs:30:40:30:43 | args | Foreach.cs:31:5:34:5 | {...} | | | Foreach.cs:31:5:34:5 | After {...} | Foreach.cs:30:10:30:11 | Normal Exit | | | Foreach.cs:31:5:34:5 | {...} | Foreach.cs:32:9:33:11 | foreach (... ... in ...) ... | | | Foreach.cs:32:9:33:11 | After foreach (... ... in ...) ... | Foreach.cs:31:5:34:5 | After {...} | | @@ -4138,8 +4250,9 @@ | Foreach.cs:32:32:32:35 | access to parameter args | Foreach.cs:32:32:32:35 | After access to parameter args [empty] | empty | | Foreach.cs:32:32:32:35 | access to parameter args | Foreach.cs:32:32:32:35 | After access to parameter args [non-empty] | non-empty | | Foreach.cs:33:11:33:11 | ; | Foreach.cs:32:9:33:11 | [LoopHeader] foreach (... ... in ...) ... | | -| Foreach.cs:36:10:36:11 | Entry | Foreach.cs:37:5:40:5 | {...} | | +| Foreach.cs:36:10:36:11 | Entry | Foreach.cs:36:40:36:43 | args | | | Foreach.cs:36:10:36:11 | Normal Exit | Foreach.cs:36:10:36:11 | Exit | | +| Foreach.cs:36:40:36:43 | args | Foreach.cs:37:5:40:5 | {...} | | | Foreach.cs:37:5:40:5 | After {...} | Foreach.cs:36:10:36:11 | Normal Exit | | | Foreach.cs:37:5:40:5 | {...} | Foreach.cs:38:9:39:11 | foreach (... ... in ...) ... | | | Foreach.cs:38:9:39:11 | After foreach (... ... in ...) ... | Foreach.cs:37:5:40:5 | After {...} | | @@ -4199,11 +4312,12 @@ | Initializers.cs:10:5:10:16 | After call to method | Initializers.cs:10:5:10:16 | Before call to constructor Object | | | Initializers.cs:10:5:10:16 | Before call to constructor Object | Initializers.cs:10:5:10:16 | call to constructor Object | | | Initializers.cs:10:5:10:16 | Before call to method | Initializers.cs:10:5:10:16 | this access | | -| Initializers.cs:10:5:10:16 | Entry | Initializers.cs:10:5:10:16 | Before call to method | | +| Initializers.cs:10:5:10:16 | Entry | Initializers.cs:10:25:10:25 | s | | | Initializers.cs:10:5:10:16 | Normal Exit | Initializers.cs:10:5:10:16 | Exit | | | Initializers.cs:10:5:10:16 | call to constructor Object | Initializers.cs:10:5:10:16 | After call to constructor Object | | | Initializers.cs:10:5:10:16 | call to method | Initializers.cs:10:5:10:16 | After call to method | | | Initializers.cs:10:5:10:16 | this access | Initializers.cs:10:5:10:16 | call to method | | +| Initializers.cs:10:25:10:25 | s | Initializers.cs:10:5:10:16 | Before call to method | | | Initializers.cs:10:28:10:30 | {...} | Initializers.cs:10:5:10:16 | Normal Exit | | | Initializers.cs:12:10:12:10 | Entry | Initializers.cs:13:5:16:5 | {...} | | | Initializers.cs:12:10:12:10 | Normal Exit | Initializers.cs:12:10:12:10 | Exit | | @@ -4316,8 +4430,9 @@ | Initializers.cs:31:26:31:31 | ...; | Initializers.cs:31:26:31:30 | Before ... = ... | | | Initializers.cs:31:26:31:31 | After ...; | Initializers.cs:31:24:31:33 | After {...} | | | Initializers.cs:31:30:31:30 | 3 | Initializers.cs:31:26:31:30 | ... = ... | | -| Initializers.cs:33:9:33:11 | Entry | Initializers.cs:33:22:33:25 | Before call to constructor Sub | | +| Initializers.cs:33:9:33:11 | Entry | Initializers.cs:33:17:33:17 | i | | | Initializers.cs:33:9:33:11 | Normal Exit | Initializers.cs:33:9:33:11 | Exit | | +| Initializers.cs:33:17:33:17 | i | Initializers.cs:33:22:33:25 | Before call to constructor Sub | | | Initializers.cs:33:22:33:25 | After call to constructor Sub | Initializers.cs:33:29:33:38 | {...} | | | Initializers.cs:33:22:33:25 | Before call to constructor Sub | Initializers.cs:33:22:33:25 | call to constructor Sub | | | Initializers.cs:33:22:33:25 | call to constructor Sub | Initializers.cs:33:22:33:25 | After call to constructor Sub | | @@ -4337,11 +4452,13 @@ | Initializers.cs:35:9:35:11 | After call to method | Initializers.cs:35:9:35:11 | Before call to constructor NoConstructor | | | Initializers.cs:35:9:35:11 | Before call to constructor NoConstructor | Initializers.cs:35:9:35:11 | call to constructor NoConstructor | | | Initializers.cs:35:9:35:11 | Before call to method | Initializers.cs:35:9:35:11 | this access | | -| Initializers.cs:35:9:35:11 | Entry | Initializers.cs:35:9:35:11 | Before call to method | | +| Initializers.cs:35:9:35:11 | Entry | Initializers.cs:35:17:35:17 | i | | | Initializers.cs:35:9:35:11 | Normal Exit | Initializers.cs:35:9:35:11 | Exit | | | Initializers.cs:35:9:35:11 | call to constructor NoConstructor | Initializers.cs:35:9:35:11 | After call to constructor NoConstructor | | | Initializers.cs:35:9:35:11 | call to method | Initializers.cs:35:9:35:11 | After call to method | | | Initializers.cs:35:9:35:11 | this access | Initializers.cs:35:9:35:11 | call to method | | +| Initializers.cs:35:17:35:17 | i | Initializers.cs:35:24:35:24 | j | | +| Initializers.cs:35:24:35:24 | j | Initializers.cs:35:9:35:11 | Before call to method | | | Initializers.cs:35:27:35:40 | After {...} | Initializers.cs:35:9:35:11 | Normal Exit | | | Initializers.cs:35:27:35:40 | {...} | Initializers.cs:35:29:35:38 | ...; | | | Initializers.cs:35:29:35:29 | After access to field I | Initializers.cs:35:33:35:37 | Before ... + ... | | @@ -4378,8 +4495,9 @@ | Initializers.cs:41:11:41:18 | call to method | Initializers.cs:41:11:41:18 | After call to method | | | Initializers.cs:41:11:41:18 | this access | Initializers.cs:41:11:41:18 | call to method | | | Initializers.cs:41:11:41:18 | {...} | Initializers.cs:41:11:41:18 | Normal Exit | | -| Initializers.cs:51:10:51:13 | Entry | Initializers.cs:52:5:66:5 | {...} | | +| Initializers.cs:51:10:51:13 | Entry | Initializers.cs:51:19:51:19 | i | | | Initializers.cs:51:10:51:13 | Normal Exit | Initializers.cs:51:10:51:13 | Exit | | +| Initializers.cs:51:19:51:19 | i | Initializers.cs:52:5:66:5 | {...} | | | Initializers.cs:52:5:66:5 | After {...} | Initializers.cs:51:10:51:13 | Normal Exit | | | Initializers.cs:52:5:66:5 | {...} | Initializers.cs:54:9:54:96 | ... ...; | | | Initializers.cs:54:9:54:96 | ... ...; | Initializers.cs:54:13:54:95 | Before Dictionary dict = ... | | @@ -4632,8 +4750,9 @@ | LoopUnrolling.cs:5:7:5:19 | call to method | LoopUnrolling.cs:5:7:5:19 | After call to method | | | LoopUnrolling.cs:5:7:5:19 | this access | LoopUnrolling.cs:5:7:5:19 | call to method | | | LoopUnrolling.cs:5:7:5:19 | {...} | LoopUnrolling.cs:5:7:5:19 | Normal Exit | | -| LoopUnrolling.cs:7:10:7:11 | Entry | LoopUnrolling.cs:8:5:13:5 | {...} | | +| LoopUnrolling.cs:7:10:7:11 | Entry | LoopUnrolling.cs:7:22:7:25 | args | | | LoopUnrolling.cs:7:10:7:11 | Normal Exit | LoopUnrolling.cs:7:10:7:11 | Exit | | +| LoopUnrolling.cs:7:22:7:25 | args | LoopUnrolling.cs:8:5:13:5 | {...} | | | LoopUnrolling.cs:8:5:13:5 | After {...} | LoopUnrolling.cs:7:10:7:11 | Normal Exit | | | LoopUnrolling.cs:8:5:13:5 | {...} | LoopUnrolling.cs:9:9:10:19 | if (...) ... | | | LoopUnrolling.cs:9:9:10:19 | After if (...) ... | LoopUnrolling.cs:11:9:12:35 | foreach (... ... in ...) ... | | @@ -4700,8 +4819,9 @@ | LoopUnrolling.cs:19:13:19:33 | ...; | LoopUnrolling.cs:19:13:19:32 | Before call to method WriteLine | | | LoopUnrolling.cs:19:13:19:33 | After ...; | LoopUnrolling.cs:18:9:19:33 | [LoopHeader] foreach (... ... in ...) ... | | | LoopUnrolling.cs:19:31:19:31 | access to local variable x | LoopUnrolling.cs:19:13:19:32 | call to method WriteLine | | -| LoopUnrolling.cs:22:10:22:11 | Entry | LoopUnrolling.cs:23:5:27:5 | {...} | | +| LoopUnrolling.cs:22:10:22:11 | Entry | LoopUnrolling.cs:22:20:22:23 | args | | | LoopUnrolling.cs:22:10:22:11 | Normal Exit | LoopUnrolling.cs:22:10:22:11 | Exit | | +| LoopUnrolling.cs:22:20:22:23 | args | LoopUnrolling.cs:23:5:27:5 | {...} | | | LoopUnrolling.cs:23:5:27:5 | After {...} | LoopUnrolling.cs:22:10:22:11 | Normal Exit | | | LoopUnrolling.cs:23:5:27:5 | {...} | LoopUnrolling.cs:24:9:26:40 | foreach (... ... in ...) ... | | | LoopUnrolling.cs:24:9:26:40 | After foreach (... ... in ...) ... | LoopUnrolling.cs:23:5:27:5 | After {...} | | @@ -4858,8 +4978,9 @@ | LoopUnrolling.cs:50:34:50:34 | access to local variable x | LoopUnrolling.cs:50:16:50:35 | call to method WriteLine | | | LoopUnrolling.cs:51:13:51:23 | Before goto ...; | LoopUnrolling.cs:51:13:51:23 | goto ...; | | | LoopUnrolling.cs:51:13:51:23 | goto ...; | LoopUnrolling.cs:50:9:50:13 | Label: | goto | -| LoopUnrolling.cs:55:10:55:11 | Entry | LoopUnrolling.cs:56:5:65:5 | {...} | | +| LoopUnrolling.cs:55:10:55:11 | Entry | LoopUnrolling.cs:55:18:55:18 | b | | | LoopUnrolling.cs:55:10:55:11 | Normal Exit | LoopUnrolling.cs:55:10:55:11 | Exit | | +| LoopUnrolling.cs:55:18:55:18 | b | LoopUnrolling.cs:56:5:65:5 | {...} | | | LoopUnrolling.cs:56:5:65:5 | After {...} | LoopUnrolling.cs:55:10:55:11 | Normal Exit | | | LoopUnrolling.cs:56:5:65:5 | {...} | LoopUnrolling.cs:57:9:57:48 | ... ...; | | | LoopUnrolling.cs:57:9:57:48 | ... ...; | LoopUnrolling.cs:57:13:57:47 | Before String[] xs = ... | | @@ -4913,8 +5034,9 @@ | LoopUnrolling.cs:63:17:63:37 | ...; | LoopUnrolling.cs:63:17:63:36 | Before call to method WriteLine | | | LoopUnrolling.cs:63:17:63:37 | After ...; | LoopUnrolling.cs:62:13:63:37 | After if (...) ... | | | LoopUnrolling.cs:63:35:63:35 | access to local variable x | LoopUnrolling.cs:63:17:63:36 | call to method WriteLine | | -| LoopUnrolling.cs:67:10:67:11 | Entry | LoopUnrolling.cs:68:5:74:5 | {...} | | +| LoopUnrolling.cs:67:10:67:11 | Entry | LoopUnrolling.cs:67:26:67:29 | args | | | LoopUnrolling.cs:67:10:67:11 | Normal Exit | LoopUnrolling.cs:67:10:67:11 | Exit | | +| LoopUnrolling.cs:67:26:67:29 | args | LoopUnrolling.cs:68:5:74:5 | {...} | | | LoopUnrolling.cs:68:5:74:5 | After {...} | LoopUnrolling.cs:67:10:67:11 | Normal Exit | | | LoopUnrolling.cs:68:5:74:5 | {...} | LoopUnrolling.cs:69:9:70:19 | if (...) ... | | | LoopUnrolling.cs:69:9:70:19 | After if (...) ... | LoopUnrolling.cs:71:9:71:21 | ...; | | @@ -5073,10 +5195,11 @@ | MultiImplementationA.cs:7:27:7:37 | Before throw ...; | MultiImplementationA.cs:7:33:7:36 | null | | | MultiImplementationA.cs:7:27:7:37 | throw ...; | MultiImplementationA.cs:7:21:7:23 | Exceptional Exit | exception | | MultiImplementationA.cs:7:33:7:36 | null | MultiImplementationA.cs:7:27:7:37 | throw ...; | | -| MultiImplementationA.cs:7:41:7:43 | Entry | MultiImplementationA.cs:7:45:7:59 | {...} | | -| MultiImplementationA.cs:7:41:7:43 | Entry | MultiImplementationB.cs:4:43:4:45 | {...} | | +| MultiImplementationA.cs:7:41:7:43 | Entry | MultiImplementationA.cs:7:41:7:43 | value | | | MultiImplementationA.cs:7:41:7:43 | Exceptional Exit | MultiImplementationA.cs:7:41:7:43 | Exit | | | MultiImplementationA.cs:7:41:7:43 | Normal Exit | MultiImplementationA.cs:7:41:7:43 | Exit | | +| MultiImplementationA.cs:7:41:7:43 | value | MultiImplementationA.cs:7:45:7:59 | {...} | | +| MultiImplementationA.cs:7:41:7:43 | value | MultiImplementationB.cs:4:43:4:45 | {...} | | | MultiImplementationA.cs:7:45:7:59 | {...} | MultiImplementationA.cs:7:47:7:57 | Before throw ...; | | | MultiImplementationA.cs:7:47:7:57 | Before throw ...; | MultiImplementationA.cs:7:53:7:56 | null | | | MultiImplementationA.cs:7:47:7:57 | throw ...; | MultiImplementationA.cs:7:41:7:43 | Exceptional Exit | exception | @@ -5099,26 +5222,31 @@ | MultiImplementationA.cs:13:16:13:20 | After ... = ... | MultiImplementationA.cs:24:32:24:34 | Before ... = ... | | | MultiImplementationA.cs:13:16:13:20 | Before ... = ... | MultiImplementationA.cs:13:16:13:16 | Before access to field F | | | MultiImplementationA.cs:13:20:13:20 | 0 | MultiImplementationA.cs:13:16:13:20 | ... = ... | | -| MultiImplementationA.cs:14:31:14:31 | Entry | MultiImplementationA.cs:14:31:14:31 | access to parameter i | | -| MultiImplementationA.cs:14:31:14:31 | Entry | MultiImplementationB.cs:12:31:12:40 | Before throw ... | | +| MultiImplementationA.cs:14:25:14:25 | i | MultiImplementationA.cs:14:31:14:31 | access to parameter i | | +| MultiImplementationA.cs:14:25:14:25 | i | MultiImplementationB.cs:12:31:12:40 | Before throw ... | | +| MultiImplementationA.cs:14:31:14:31 | Entry | MultiImplementationA.cs:14:25:14:25 | i | | | MultiImplementationA.cs:14:31:14:31 | Exceptional Exit | MultiImplementationA.cs:14:31:14:31 | Exit | | | MultiImplementationA.cs:14:31:14:31 | Normal Exit | MultiImplementationA.cs:14:31:14:31 | Exit | | | MultiImplementationA.cs:14:31:14:31 | access to parameter i | MultiImplementationA.cs:14:31:14:31 | Normal Exit | | -| MultiImplementationA.cs:15:36:15:38 | Entry | MultiImplementationA.cs:15:40:15:52 | {...} | | -| MultiImplementationA.cs:15:36:15:38 | Entry | MultiImplementationB.cs:13:40:13:54 | {...} | | +| MultiImplementationA.cs:15:31:15:31 | s | MultiImplementationA.cs:15:40:15:52 | {...} | | +| MultiImplementationA.cs:15:31:15:31 | s | MultiImplementationA.cs:15:54:15:56 | value | | +| MultiImplementationA.cs:15:31:15:31 | s | MultiImplementationB.cs:13:40:13:54 | {...} | | +| MultiImplementationA.cs:15:36:15:38 | Entry | MultiImplementationA.cs:15:31:15:31 | s | | | MultiImplementationA.cs:15:36:15:38 | Exceptional Exit | MultiImplementationA.cs:15:36:15:38 | Exit | | | MultiImplementationA.cs:15:36:15:38 | Normal Exit | MultiImplementationA.cs:15:36:15:38 | Exit | | | MultiImplementationA.cs:15:40:15:52 | {...} | MultiImplementationA.cs:15:42:15:50 | Before return ...; | | | MultiImplementationA.cs:15:42:15:50 | Before return ...; | MultiImplementationA.cs:15:49:15:49 | access to parameter s | | | MultiImplementationA.cs:15:42:15:50 | return ...; | MultiImplementationA.cs:15:36:15:38 | Normal Exit | return | | MultiImplementationA.cs:15:49:15:49 | access to parameter s | MultiImplementationA.cs:15:42:15:50 | return ...; | | -| MultiImplementationA.cs:15:54:15:56 | Entry | MultiImplementationA.cs:15:58:15:60 | {...} | | -| MultiImplementationA.cs:15:54:15:56 | Entry | MultiImplementationB.cs:13:60:13:62 | {...} | | +| MultiImplementationA.cs:15:54:15:56 | Entry | MultiImplementationA.cs:15:31:15:31 | s | | | MultiImplementationA.cs:15:54:15:56 | Normal Exit | MultiImplementationA.cs:15:54:15:56 | Exit | | +| MultiImplementationA.cs:15:54:15:56 | value | MultiImplementationA.cs:15:58:15:60 | {...} | | +| MultiImplementationA.cs:15:54:15:56 | value | MultiImplementationB.cs:13:60:13:62 | {...} | | | MultiImplementationA.cs:15:58:15:60 | {...} | MultiImplementationA.cs:15:54:15:56 | Normal Exit | | -| MultiImplementationA.cs:16:17:16:18 | Entry | MultiImplementationA.cs:17:5:19:5 | {...} | | -| MultiImplementationA.cs:16:17:16:18 | Entry | MultiImplementationB.cs:15:5:17:5 | {...} | | +| MultiImplementationA.cs:16:17:16:18 | Entry | MultiImplementationA.cs:16:24:16:24 | i | | | MultiImplementationA.cs:16:17:16:18 | Normal Exit | MultiImplementationA.cs:16:17:16:18 | Exit | | +| MultiImplementationA.cs:16:24:16:24 | i | MultiImplementationA.cs:17:5:19:5 | {...} | | +| MultiImplementationA.cs:16:24:16:24 | i | MultiImplementationB.cs:15:5:17:5 | {...} | | | MultiImplementationA.cs:17:5:19:5 | After {...} | MultiImplementationA.cs:16:17:16:18 | Normal Exit | | | MultiImplementationA.cs:17:5:19:5 | {...} | MultiImplementationA.cs:18:9:18:22 | M2(...) | | | MultiImplementationA.cs:18:9:18:22 | Entry | MultiImplementationA.cs:18:21:18:21 | 0 | | @@ -5129,13 +5257,14 @@ | MultiImplementationA.cs:20:12:20:13 | After call to method | MultiImplementationA.cs:20:12:20:13 | Before call to constructor Object | | | MultiImplementationA.cs:20:12:20:13 | Before call to constructor Object | MultiImplementationA.cs:20:12:20:13 | call to constructor Object | | | MultiImplementationA.cs:20:12:20:13 | Before call to method | MultiImplementationA.cs:20:12:20:13 | this access | | -| MultiImplementationA.cs:20:12:20:13 | Entry | MultiImplementationA.cs:20:12:20:13 | Before call to method | | -| MultiImplementationA.cs:20:12:20:13 | Entry | MultiImplementationB.cs:18:12:18:13 | Before call to method | | +| MultiImplementationA.cs:20:12:20:13 | Entry | MultiImplementationA.cs:20:19:20:19 | i | | | MultiImplementationA.cs:20:12:20:13 | Exceptional Exit | MultiImplementationA.cs:20:12:20:13 | Exit | | | MultiImplementationA.cs:20:12:20:13 | Normal Exit | MultiImplementationA.cs:20:12:20:13 | Exit | | | MultiImplementationA.cs:20:12:20:13 | call to constructor Object | MultiImplementationA.cs:20:12:20:13 | After call to constructor Object | | | MultiImplementationA.cs:20:12:20:13 | call to method | MultiImplementationA.cs:20:12:20:13 | After call to method | | | MultiImplementationA.cs:20:12:20:13 | this access | MultiImplementationA.cs:20:12:20:13 | call to method | | +| MultiImplementationA.cs:20:19:20:19 | i | MultiImplementationA.cs:20:12:20:13 | Before call to method | | +| MultiImplementationA.cs:20:19:20:19 | i | MultiImplementationB.cs:18:12:18:13 | Before call to method | | | MultiImplementationA.cs:20:22:20:31 | After {...} | MultiImplementationA.cs:20:12:20:13 | Normal Exit | | | MultiImplementationA.cs:20:22:20:31 | {...} | MultiImplementationA.cs:20:24:20:29 | ...; | | | MultiImplementationA.cs:20:24:20:24 | After access to field F | MultiImplementationA.cs:20:28:20:28 | access to parameter i | | @@ -5161,10 +5290,11 @@ | MultiImplementationA.cs:22:6:22:7 | Exceptional Exit | MultiImplementationA.cs:22:6:22:7 | Exit | | | MultiImplementationA.cs:22:6:22:7 | Normal Exit | MultiImplementationA.cs:22:6:22:7 | Exit | | | MultiImplementationA.cs:22:11:22:13 | {...} | MultiImplementationA.cs:22:6:22:7 | Normal Exit | | -| MultiImplementationA.cs:23:28:23:35 | Entry | MultiImplementationA.cs:23:50:23:53 | null | | -| MultiImplementationA.cs:23:28:23:35 | Entry | MultiImplementationB.cs:21:50:21:59 | Before throw ... | | +| MultiImplementationA.cs:23:28:23:35 | Entry | MultiImplementationA.cs:23:44:23:44 | i | | | MultiImplementationA.cs:23:28:23:35 | Exceptional Exit | MultiImplementationA.cs:23:28:23:35 | Exit | | | MultiImplementationA.cs:23:28:23:35 | Normal Exit | MultiImplementationA.cs:23:28:23:35 | Exit | | +| MultiImplementationA.cs:23:44:23:44 | i | MultiImplementationA.cs:23:50:23:53 | null | | +| MultiImplementationA.cs:23:44:23:44 | i | MultiImplementationB.cs:21:50:21:59 | Before throw ... | | | MultiImplementationA.cs:23:50:23:53 | null | MultiImplementationA.cs:23:28:23:35 | Normal Exit | | | MultiImplementationA.cs:24:16:24:16 | After access to property P | MultiImplementationA.cs:24:34:24:34 | 0 | | | MultiImplementationA.cs:24:16:24:16 | Before access to property P | MultiImplementationA.cs:24:16:24:16 | this access | | @@ -5312,8 +5442,9 @@ | NullCoalescing.cs:1:7:1:20 | call to method | NullCoalescing.cs:1:7:1:20 | After call to method | | | NullCoalescing.cs:1:7:1:20 | this access | NullCoalescing.cs:1:7:1:20 | call to method | | | NullCoalescing.cs:1:7:1:20 | {...} | NullCoalescing.cs:1:7:1:20 | Normal Exit | | -| NullCoalescing.cs:3:9:3:10 | Entry | NullCoalescing.cs:3:23:3:28 | ... ?? ... | | +| NullCoalescing.cs:3:9:3:10 | Entry | NullCoalescing.cs:3:17:3:17 | i | | | NullCoalescing.cs:3:9:3:10 | Normal Exit | NullCoalescing.cs:3:9:3:10 | Exit | | +| NullCoalescing.cs:3:17:3:17 | i | NullCoalescing.cs:3:23:3:28 | ... ?? ... | | | NullCoalescing.cs:3:23:3:23 | After access to parameter i [non-null] | NullCoalescing.cs:3:23:3:28 | After ... ?? ... | | | NullCoalescing.cs:3:23:3:23 | After access to parameter i [null] | NullCoalescing.cs:3:28:3:28 | 0 | | | NullCoalescing.cs:3:23:3:23 | access to parameter i | NullCoalescing.cs:3:23:3:23 | After access to parameter i [non-null] | non-null | @@ -5321,8 +5452,9 @@ | NullCoalescing.cs:3:23:3:28 | ... ?? ... | NullCoalescing.cs:3:23:3:23 | access to parameter i | | | NullCoalescing.cs:3:23:3:28 | After ... ?? ... | NullCoalescing.cs:3:9:3:10 | Normal Exit | | | NullCoalescing.cs:3:28:3:28 | 0 | NullCoalescing.cs:3:23:3:28 | After ... ?? ... | | -| NullCoalescing.cs:5:9:5:10 | Entry | NullCoalescing.cs:5:24:5:43 | ... ? ... : ... | | +| NullCoalescing.cs:5:9:5:10 | Entry | NullCoalescing.cs:5:18:5:18 | b | | | NullCoalescing.cs:5:9:5:10 | Normal Exit | NullCoalescing.cs:5:9:5:10 | Exit | | +| NullCoalescing.cs:5:18:5:18 | b | NullCoalescing.cs:5:24:5:43 | ... ? ... : ... | | | NullCoalescing.cs:5:24:5:43 | ... ? ... : ... | NullCoalescing.cs:5:25:5:34 | ... ?? ... | | | NullCoalescing.cs:5:24:5:43 | After ... ? ... : ... | NullCoalescing.cs:5:9:5:10 | Normal Exit | | | NullCoalescing.cs:5:25:5:25 | After access to parameter b [non-null] | NullCoalescing.cs:5:25:5:34 | After ... ?? ... [false] | false | @@ -5337,8 +5469,10 @@ | NullCoalescing.cs:5:30:5:34 | false | NullCoalescing.cs:5:30:5:34 | After false [false] | false | | NullCoalescing.cs:5:39:5:39 | 0 | NullCoalescing.cs:5:24:5:43 | After ... ? ... : ... | | | NullCoalescing.cs:5:43:5:43 | 1 | NullCoalescing.cs:5:24:5:43 | After ... ? ... : ... | | -| NullCoalescing.cs:7:12:7:13 | Entry | NullCoalescing.cs:7:40:7:53 | ... ?? ... | | +| NullCoalescing.cs:7:12:7:13 | Entry | NullCoalescing.cs:7:22:7:23 | s1 | | | NullCoalescing.cs:7:12:7:13 | Normal Exit | NullCoalescing.cs:7:12:7:13 | Exit | | +| NullCoalescing.cs:7:22:7:23 | s1 | NullCoalescing.cs:7:33:7:34 | s2 | | +| NullCoalescing.cs:7:33:7:34 | s2 | NullCoalescing.cs:7:40:7:53 | ... ?? ... | | | NullCoalescing.cs:7:40:7:41 | After access to parameter s1 [non-null] | NullCoalescing.cs:7:40:7:53 | After ... ?? ... | | | NullCoalescing.cs:7:40:7:41 | After access to parameter s1 [null] | NullCoalescing.cs:7:46:7:53 | ... ?? ... | | | NullCoalescing.cs:7:40:7:41 | access to parameter s1 | NullCoalescing.cs:7:40:7:41 | After access to parameter s1 [non-null] | non-null | @@ -5352,8 +5486,10 @@ | NullCoalescing.cs:7:46:7:53 | ... ?? ... | NullCoalescing.cs:7:46:7:47 | access to parameter s2 | | | NullCoalescing.cs:7:46:7:53 | After ... ?? ... | NullCoalescing.cs:7:40:7:53 | After ... ?? ... | | | NullCoalescing.cs:7:52:7:53 | "" | NullCoalescing.cs:7:46:7:53 | After ... ?? ... | | -| NullCoalescing.cs:9:12:9:13 | Entry | NullCoalescing.cs:9:36:9:58 | ... ?? ... | | +| NullCoalescing.cs:9:12:9:13 | Entry | NullCoalescing.cs:9:20:9:20 | b | | | NullCoalescing.cs:9:12:9:13 | Normal Exit | NullCoalescing.cs:9:12:9:13 | Exit | | +| NullCoalescing.cs:9:20:9:20 | b | NullCoalescing.cs:9:30:9:30 | s | | +| NullCoalescing.cs:9:30:9:30 | s | NullCoalescing.cs:9:36:9:58 | ... ?? ... | | | NullCoalescing.cs:9:36:9:58 | ... ?? ... | NullCoalescing.cs:9:37:9:45 | ... ? ... : ... | | | NullCoalescing.cs:9:36:9:58 | After ... ?? ... | NullCoalescing.cs:9:12:9:13 | Normal Exit | | | NullCoalescing.cs:9:37:9:37 | After access to parameter b [false] | NullCoalescing.cs:9:45:9:45 | access to parameter s | | @@ -5378,8 +5514,11 @@ | NullCoalescing.cs:9:51:9:58 | ... ?? ... | NullCoalescing.cs:9:51:9:52 | "" | | | NullCoalescing.cs:9:51:9:58 | After ... ?? ... | NullCoalescing.cs:9:36:9:58 | After ... ?? ... | | | NullCoalescing.cs:9:57:9:58 | "" | NullCoalescing.cs:9:51:9:58 | After ... ?? ... | | -| NullCoalescing.cs:11:9:11:10 | Entry | NullCoalescing.cs:11:43:11:68 | ... ? ... : ... | | +| NullCoalescing.cs:11:9:11:10 | Entry | NullCoalescing.cs:11:18:11:19 | b1 | | | NullCoalescing.cs:11:9:11:10 | Normal Exit | NullCoalescing.cs:11:9:11:10 | Exit | | +| NullCoalescing.cs:11:18:11:19 | b1 | NullCoalescing.cs:11:27:11:28 | b2 | | +| NullCoalescing.cs:11:27:11:28 | b2 | NullCoalescing.cs:11:36:11:37 | b3 | | +| NullCoalescing.cs:11:36:11:37 | b3 | NullCoalescing.cs:11:43:11:68 | ... ? ... : ... | | | NullCoalescing.cs:11:43:11:68 | ... ? ... : ... | NullCoalescing.cs:11:44:11:59 | ... ?? ... | | | NullCoalescing.cs:11:43:11:68 | After ... ? ... : ... | NullCoalescing.cs:11:9:11:10 | Normal Exit | | | NullCoalescing.cs:11:44:11:45 | After access to parameter b1 [non-null] | NullCoalescing.cs:11:44:11:59 | After ... ?? ... [false] | false | @@ -5403,8 +5542,9 @@ | NullCoalescing.cs:11:57:11:58 | access to parameter b3 | NullCoalescing.cs:11:57:11:58 | After access to parameter b3 [true] | true | | NullCoalescing.cs:11:64:11:64 | 0 | NullCoalescing.cs:11:43:11:68 | After ... ? ... : ... | | | NullCoalescing.cs:11:68:11:68 | 1 | NullCoalescing.cs:11:43:11:68 | After ... ? ... : ... | | -| NullCoalescing.cs:13:10:13:11 | Entry | NullCoalescing.cs:14:5:18:5 | {...} | | +| NullCoalescing.cs:13:10:13:11 | Entry | NullCoalescing.cs:13:17:13:17 | i | | | NullCoalescing.cs:13:10:13:11 | Normal Exit | NullCoalescing.cs:13:10:13:11 | Exit | | +| NullCoalescing.cs:13:17:13:17 | i | NullCoalescing.cs:14:5:18:5 | {...} | | | NullCoalescing.cs:14:5:18:5 | After {...} | NullCoalescing.cs:13:10:13:11 | Normal Exit | | | NullCoalescing.cs:14:5:18:5 | {...} | NullCoalescing.cs:15:9:15:32 | ... ...; | | | NullCoalescing.cs:15:9:15:32 | ... ...; | NullCoalescing.cs:15:13:15:31 | Before Int32 j = ... | | @@ -5456,11 +5596,12 @@ | PartialImplementationA.cs:3:12:3:18 | After call to method | PartialImplementationA.cs:3:12:3:18 | Before call to constructor Object | | | PartialImplementationA.cs:3:12:3:18 | Before call to constructor Object | PartialImplementationA.cs:3:12:3:18 | call to constructor Object | | | PartialImplementationA.cs:3:12:3:18 | Before call to method | PartialImplementationA.cs:3:12:3:18 | this access | | -| PartialImplementationA.cs:3:12:3:18 | Entry | PartialImplementationA.cs:3:12:3:18 | Before call to method | | +| PartialImplementationA.cs:3:12:3:18 | Entry | PartialImplementationA.cs:3:24:3:24 | i | | | PartialImplementationA.cs:3:12:3:18 | Normal Exit | PartialImplementationA.cs:3:12:3:18 | Exit | | | PartialImplementationA.cs:3:12:3:18 | call to constructor Object | PartialImplementationA.cs:3:12:3:18 | After call to constructor Object | | | PartialImplementationA.cs:3:12:3:18 | call to method | PartialImplementationA.cs:3:12:3:18 | After call to method | | | PartialImplementationA.cs:3:12:3:18 | this access | PartialImplementationA.cs:3:12:3:18 | call to method | | +| PartialImplementationA.cs:3:24:3:24 | i | PartialImplementationA.cs:3:12:3:18 | Before call to method | | | PartialImplementationA.cs:3:27:3:29 | {...} | PartialImplementationA.cs:3:12:3:18 | Normal Exit | | | PartialImplementationB.cs:3:16:3:16 | After access to field F | PartialImplementationB.cs:3:20:3:20 | 0 | | | PartialImplementationB.cs:3:16:3:16 | Before access to field F | PartialImplementationB.cs:3:16:3:16 | this access | | @@ -5667,8 +5808,9 @@ | Patterns.cs:40:9:42:9 | After switch (...) {...} | Patterns.cs:6:5:43:5 | After {...} | | | Patterns.cs:40:9:42:9 | switch (...) {...} | Patterns.cs:40:17:40:17 | access to local variable o | | | Patterns.cs:40:17:40:17 | access to local variable o | Patterns.cs:40:9:42:9 | After switch (...) {...} | | -| Patterns.cs:47:24:47:25 | Entry | Patterns.cs:48:9:48:20 | Before ... is ... | | +| Patterns.cs:47:24:47:25 | Entry | Patterns.cs:47:32:47:32 | c | | | Patterns.cs:47:24:47:25 | Normal Exit | Patterns.cs:47:24:47:25 | Exit | | +| Patterns.cs:47:32:47:32 | c | Patterns.cs:48:9:48:20 | Before ... is ... | | | Patterns.cs:48:9:48:9 | access to parameter c | Patterns.cs:48:9:48:20 | ... is ... | | | Patterns.cs:48:9:48:20 | ... is ... | Patterns.cs:48:9:48:20 | After ... is ... | | | Patterns.cs:48:9:48:20 | ... is ... | Patterns.cs:48:9:48:20 | [MatchTrue] ... is ... | true | @@ -5679,8 +5821,9 @@ | Patterns.cs:48:14:48:20 | Before not ... | Patterns.cs:48:18:48:20 | a | | | Patterns.cs:48:14:48:20 | not ... | Patterns.cs:48:14:48:20 | After not ... | | | Patterns.cs:48:18:48:20 | a | Patterns.cs:48:14:48:20 | not ... | | -| Patterns.cs:50:24:50:25 | Entry | Patterns.cs:51:9:51:39 | ... ? ... : ... | | +| Patterns.cs:50:24:50:25 | Entry | Patterns.cs:50:34:50:34 | c | | | Patterns.cs:50:24:50:25 | Normal Exit | Patterns.cs:50:24:50:25 | Exit | | +| Patterns.cs:50:34:50:34 | c | Patterns.cs:51:9:51:39 | ... ? ... : ... | | | Patterns.cs:51:9:51:9 | access to parameter c | Patterns.cs:51:9:51:21 | ... is ... | | | Patterns.cs:51:9:51:21 | ... is ... | Patterns.cs:51:9:51:21 | After ... is ... [false] | false | | Patterns.cs:51:9:51:21 | ... is ... | Patterns.cs:51:9:51:21 | [MatchTrue] ... is ... | true | @@ -5708,8 +5851,9 @@ | Patterns.cs:51:34:51:39 | Before ... is ... | Patterns.cs:51:34:51:34 | access to parameter c | | | Patterns.cs:51:34:51:39 | [MatchTrue] ... is ... | Patterns.cs:51:39:51:39 | 2 | | | Patterns.cs:51:39:51:39 | 2 | Patterns.cs:51:34:51:39 | After ... is ... | | -| Patterns.cs:53:24:53:25 | Entry | Patterns.cs:54:9:54:37 | Before ... is ... | | +| Patterns.cs:53:24:53:25 | Entry | Patterns.cs:53:34:53:34 | c | | | Patterns.cs:53:24:53:25 | Normal Exit | Patterns.cs:53:24:53:25 | Exit | | +| Patterns.cs:53:34:53:34 | c | Patterns.cs:54:9:54:37 | Before ... is ... | | | Patterns.cs:54:9:54:9 | access to parameter c | Patterns.cs:54:9:54:37 | ... is ... | | | Patterns.cs:54:9:54:37 | ... is ... | Patterns.cs:54:9:54:37 | After ... is ... | | | Patterns.cs:54:9:54:37 | ... is ... | Patterns.cs:54:9:54:37 | [MatchTrue] ... is ... | true | @@ -5728,8 +5872,9 @@ | Patterns.cs:54:27:54:35 | Before { ... } | Patterns.cs:54:33:54:33 | 1 | | | Patterns.cs:54:27:54:35 | { ... } | Patterns.cs:54:27:54:35 | After { ... } | | | Patterns.cs:54:33:54:33 | 1 | Patterns.cs:54:27:54:35 | { ... } | | -| Patterns.cs:56:26:56:27 | Entry | Patterns.cs:57:5:63:5 | {...} | | +| Patterns.cs:56:26:56:27 | Entry | Patterns.cs:56:33:56:33 | i | | | Patterns.cs:56:26:56:27 | Normal Exit | Patterns.cs:56:26:56:27 | Exit | | +| Patterns.cs:56:33:56:33 | i | Patterns.cs:57:5:63:5 | {...} | | | Patterns.cs:57:5:63:5 | {...} | Patterns.cs:58:9:62:10 | Before return ...; | | | Patterns.cs:58:9:62:10 | Before return ...; | Patterns.cs:58:16:62:9 | ... switch { ... } | | | Patterns.cs:58:9:62:10 | return ...; | Patterns.cs:56:26:56:27 | Normal Exit | return | @@ -5772,8 +5917,9 @@ | Patterns.cs:70:13:70:27 | After ... => ... [match] | Patterns.cs:70:13:70:13 | 2 | | | Patterns.cs:70:13:70:27 | After ... => ... [no-match] | Patterns.cs:67:16:71:9 | After ... switch { ... } | | | Patterns.cs:70:18:70:27 | "possible" | Patterns.cs:67:16:71:9 | After ... switch { ... } | | -| Patterns.cs:74:26:74:27 | Entry | Patterns.cs:75:5:83:5 | {...} | | +| Patterns.cs:74:26:74:27 | Entry | Patterns.cs:74:33:74:33 | i | | | Patterns.cs:74:26:74:27 | Normal Exit | Patterns.cs:74:26:74:27 | Exit | | +| Patterns.cs:74:33:74:33 | i | Patterns.cs:75:5:83:5 | {...} | | | Patterns.cs:75:5:83:5 | {...} | Patterns.cs:76:9:82:10 | Before return ...; | | | Patterns.cs:76:9:82:10 | Before return ...; | Patterns.cs:76:16:82:9 | ... switch { ... } | | | Patterns.cs:76:9:82:10 | return ...; | Patterns.cs:74:26:74:27 | Normal Exit | return | @@ -5808,8 +5954,9 @@ | Patterns.cs:81:13:81:20 | ... => ... | Patterns.cs:81:13:81:20 | After ... => ... [match] | match | | Patterns.cs:81:13:81:20 | After ... => ... [match] | Patterns.cs:81:13:81:13 | _ | | | Patterns.cs:81:18:81:20 | "0" | Patterns.cs:76:16:82:9 | After ... switch { ... } | | -| Patterns.cs:85:26:85:27 | Entry | Patterns.cs:85:39:85:69 | ... ? ... : ... | | +| Patterns.cs:85:26:85:27 | Entry | Patterns.cs:85:33:85:33 | i | | | Patterns.cs:85:26:85:27 | Normal Exit | Patterns.cs:85:26:85:27 | Exit | | +| Patterns.cs:85:33:85:33 | i | Patterns.cs:85:39:85:69 | ... ? ... : ... | | | Patterns.cs:85:39:85:39 | access to parameter i | Patterns.cs:85:39:85:53 | ... is ... | | | Patterns.cs:85:39:85:53 | ... is ... | Patterns.cs:85:39:85:53 | After ... is ... [false] | false | | Patterns.cs:85:39:85:53 | ... is ... | Patterns.cs:85:39:85:53 | [MatchTrue] ... is ... | true | @@ -5829,8 +5976,9 @@ | Patterns.cs:85:53:85:53 | 2 | Patterns.cs:85:49:85:53 | not ... | | | Patterns.cs:85:57:85:63 | "not 2" | Patterns.cs:85:39:85:69 | After ... ? ... : ... | | | Patterns.cs:85:67:85:69 | "2" | Patterns.cs:85:39:85:69 | After ... ? ... : ... | | -| Patterns.cs:87:26:87:27 | Entry | Patterns.cs:87:39:87:70 | ... ? ... : ... | | +| Patterns.cs:87:26:87:27 | Entry | Patterns.cs:87:33:87:33 | i | | | Patterns.cs:87:26:87:27 | Normal Exit | Patterns.cs:87:26:87:27 | Exit | | +| Patterns.cs:87:33:87:33 | i | Patterns.cs:87:39:87:70 | ... ? ... : ... | | | Patterns.cs:87:39:87:39 | access to parameter i | Patterns.cs:87:39:87:54 | ... is ... | | | Patterns.cs:87:39:87:54 | ... is ... | Patterns.cs:87:39:87:54 | After ... is ... [false] | false | | Patterns.cs:87:39:87:54 | ... is ... | Patterns.cs:87:39:87:54 | [MatchTrue] ... is ... | true | @@ -5892,8 +6040,9 @@ | PostDominance.cs:3:7:3:19 | call to method | PostDominance.cs:3:7:3:19 | After call to method | | | PostDominance.cs:3:7:3:19 | this access | PostDominance.cs:3:7:3:19 | call to method | | | PostDominance.cs:3:7:3:19 | {...} | PostDominance.cs:3:7:3:19 | Normal Exit | | -| PostDominance.cs:5:10:5:11 | Entry | PostDominance.cs:6:5:8:5 | {...} | | +| PostDominance.cs:5:10:5:11 | Entry | PostDominance.cs:5:20:5:20 | s | | | PostDominance.cs:5:10:5:11 | Normal Exit | PostDominance.cs:5:10:5:11 | Exit | | +| PostDominance.cs:5:20:5:20 | s | PostDominance.cs:6:5:8:5 | {...} | | | PostDominance.cs:6:5:8:5 | After {...} | PostDominance.cs:5:10:5:11 | Normal Exit | | | PostDominance.cs:6:5:8:5 | {...} | PostDominance.cs:7:9:7:29 | ...; | | | PostDominance.cs:7:9:7:28 | After call to method WriteLine | PostDominance.cs:7:9:7:29 | After ...; | | @@ -5902,8 +6051,9 @@ | PostDominance.cs:7:9:7:29 | ...; | PostDominance.cs:7:9:7:28 | Before call to method WriteLine | | | PostDominance.cs:7:9:7:29 | After ...; | PostDominance.cs:6:5:8:5 | After {...} | | | PostDominance.cs:7:27:7:27 | access to parameter s | PostDominance.cs:7:9:7:28 | call to method WriteLine | | -| PostDominance.cs:10:10:10:11 | Entry | PostDominance.cs:11:5:15:5 | {...} | | +| PostDominance.cs:10:10:10:11 | Entry | PostDominance.cs:10:20:10:20 | s | | | PostDominance.cs:10:10:10:11 | Normal Exit | PostDominance.cs:10:10:10:11 | Exit | | +| PostDominance.cs:10:20:10:20 | s | PostDominance.cs:11:5:15:5 | {...} | | | PostDominance.cs:11:5:15:5 | After {...} | PostDominance.cs:10:10:10:11 | Normal Exit | | | PostDominance.cs:11:5:15:5 | {...} | PostDominance.cs:12:9:13:19 | if (...) ... | | | PostDominance.cs:12:9:13:19 | After if (...) ... | PostDominance.cs:14:9:14:29 | ...; | | @@ -5924,9 +6074,10 @@ | PostDominance.cs:14:9:14:29 | ...; | PostDominance.cs:14:9:14:28 | Before call to method WriteLine | | | PostDominance.cs:14:9:14:29 | After ...; | PostDominance.cs:11:5:15:5 | After {...} | | | PostDominance.cs:14:27:14:27 | access to parameter s | PostDominance.cs:14:9:14:28 | call to method WriteLine | | -| PostDominance.cs:17:10:17:11 | Entry | PostDominance.cs:18:5:22:5 | {...} | | +| PostDominance.cs:17:10:17:11 | Entry | PostDominance.cs:17:20:17:20 | s | | | PostDominance.cs:17:10:17:11 | Exceptional Exit | PostDominance.cs:17:10:17:11 | Exit | | | PostDominance.cs:17:10:17:11 | Normal Exit | PostDominance.cs:17:10:17:11 | Exit | | +| PostDominance.cs:17:20:17:20 | s | PostDominance.cs:18:5:22:5 | {...} | | | PostDominance.cs:18:5:22:5 | After {...} | PostDominance.cs:17:10:17:11 | Normal Exit | | | PostDominance.cs:18:5:22:5 | {...} | PostDominance.cs:19:9:20:55 | if (...) ... | | | PostDominance.cs:19:9:20:55 | After if (...) ... | PostDominance.cs:21:9:21:29 | ...; | | @@ -6125,16 +6276,18 @@ | Switch.cs:3:7:3:12 | call to method | Switch.cs:3:7:3:12 | After call to method | | | Switch.cs:3:7:3:12 | this access | Switch.cs:3:7:3:12 | call to method | | | Switch.cs:3:7:3:12 | {...} | Switch.cs:3:7:3:12 | Normal Exit | | -| Switch.cs:5:10:5:11 | Entry | Switch.cs:6:5:8:5 | {...} | | +| Switch.cs:5:10:5:11 | Entry | Switch.cs:5:20:5:20 | o | | | Switch.cs:5:10:5:11 | Normal Exit | Switch.cs:5:10:5:11 | Exit | | +| Switch.cs:5:20:5:20 | o | Switch.cs:6:5:8:5 | {...} | | | Switch.cs:6:5:8:5 | After {...} | Switch.cs:5:10:5:11 | Normal Exit | | | Switch.cs:6:5:8:5 | {...} | Switch.cs:7:9:7:22 | switch (...) {...} | | | Switch.cs:7:9:7:22 | After switch (...) {...} | Switch.cs:6:5:8:5 | After {...} | | | Switch.cs:7:9:7:22 | switch (...) {...} | Switch.cs:7:17:7:17 | access to parameter o | | | Switch.cs:7:17:7:17 | access to parameter o | Switch.cs:7:9:7:22 | After switch (...) {...} | | -| Switch.cs:10:10:10:11 | Entry | Switch.cs:11:5:33:5 | {...} | | +| Switch.cs:10:10:10:11 | Entry | Switch.cs:10:20:10:20 | o | | | Switch.cs:10:10:10:11 | Exceptional Exit | Switch.cs:10:10:10:11 | Exit | | | Switch.cs:10:10:10:11 | Normal Exit | Switch.cs:10:10:10:11 | Exit | | +| Switch.cs:10:20:10:20 | o | Switch.cs:11:5:33:5 | {...} | | | Switch.cs:11:5:33:5 | {...} | Switch.cs:12:9:32:9 | switch (...) {...} | | | Switch.cs:12:9:32:9 | switch (...) {...} | Switch.cs:12:17:12:17 | access to parameter o | | | Switch.cs:12:17:12:17 | access to parameter o | Switch.cs:14:13:14:21 | case ...: | | @@ -6234,8 +6387,9 @@ | Switch.cs:37:9:41:9 | switch (...) {...} | Switch.cs:37:17:37:23 | Before call to method Throw | | | Switch.cs:37:17:37:23 | Before call to method Throw | Switch.cs:37:17:37:23 | call to method Throw | | | Switch.cs:37:17:37:23 | call to method Throw | Switch.cs:35:10:35:11 | Exceptional Exit | exception | -| Switch.cs:44:10:44:11 | Entry | Switch.cs:45:5:53:5 | {...} | | +| Switch.cs:44:10:44:11 | Entry | Switch.cs:44:20:44:20 | o | | | Switch.cs:44:10:44:11 | Normal Exit | Switch.cs:44:10:44:11 | Exit | | +| Switch.cs:44:20:44:20 | o | Switch.cs:45:5:53:5 | {...} | | | Switch.cs:45:5:53:5 | After {...} | Switch.cs:44:10:44:11 | Normal Exit | | | Switch.cs:45:5:53:5 | {...} | Switch.cs:46:9:52:9 | switch (...) {...} | | | Switch.cs:46:9:52:9 | After switch (...) {...} | Switch.cs:45:5:53:5 | After {...} | | @@ -6287,8 +6441,9 @@ | Switch.cs:61:18:61:18 | 3 | Switch.cs:62:17:62:22 | Before break; | | | Switch.cs:62:17:62:22 | Before break; | Switch.cs:62:17:62:22 | break; | | | Switch.cs:62:17:62:22 | break; | Switch.cs:57:9:63:9 | After switch (...) {...} | break | -| Switch.cs:66:10:66:11 | Entry | Switch.cs:67:5:75:5 | {...} | | +| Switch.cs:66:10:66:11 | Entry | Switch.cs:66:20:66:20 | s | | | Switch.cs:66:10:66:11 | Normal Exit | Switch.cs:66:10:66:11 | Exit | | +| Switch.cs:66:20:66:20 | s | Switch.cs:67:5:75:5 | {...} | | | Switch.cs:67:5:75:5 | After {...} | Switch.cs:66:10:66:11 | Normal Exit | | | Switch.cs:67:5:75:5 | {...} | Switch.cs:68:9:74:9 | switch (...) {...} | | | Switch.cs:68:9:74:9 | After switch (...) {...} | Switch.cs:67:5:75:5 | After {...} | | @@ -6311,8 +6466,10 @@ | Switch.cs:72:18:72:19 | "" | Switch.cs:73:17:73:22 | Before break; | | | Switch.cs:73:17:73:22 | Before break; | Switch.cs:73:17:73:22 | break; | | | Switch.cs:73:17:73:22 | break; | Switch.cs:68:9:74:9 | After switch (...) {...} | break | -| Switch.cs:77:10:77:11 | Entry | Switch.cs:78:5:89:5 | {...} | | +| Switch.cs:77:10:77:11 | Entry | Switch.cs:77:17:77:17 | i | | | Switch.cs:77:10:77:11 | Normal Exit | Switch.cs:77:10:77:11 | Exit | | +| Switch.cs:77:17:77:17 | i | Switch.cs:77:24:77:24 | j | | +| Switch.cs:77:24:77:24 | j | Switch.cs:78:5:89:5 | {...} | | | Switch.cs:78:5:89:5 | {...} | Switch.cs:79:9:87:9 | switch (...) {...} | | | Switch.cs:79:9:87:9 | After switch (...) {...} | Switch.cs:88:9:88:21 | Before return ...; | | | Switch.cs:79:9:87:9 | switch (...) {...} | Switch.cs:79:17:79:17 | access to parameter i | | @@ -6347,8 +6504,9 @@ | Switch.cs:88:9:88:21 | Before return ...; | Switch.cs:88:16:88:20 | false | | | Switch.cs:88:9:88:21 | return ...; | Switch.cs:77:10:77:11 | Normal Exit | return | | Switch.cs:88:16:88:20 | false | Switch.cs:88:9:88:21 | return ...; | | -| Switch.cs:91:10:91:11 | Entry | Switch.cs:92:5:99:5 | {...} | | +| Switch.cs:91:10:91:11 | Entry | Switch.cs:91:20:91:20 | o | | | Switch.cs:91:10:91:11 | Normal Exit | Switch.cs:91:10:91:11 | Exit | | +| Switch.cs:91:20:91:20 | o | Switch.cs:92:5:99:5 | {...} | | | Switch.cs:92:5:99:5 | {...} | Switch.cs:93:9:97:9 | switch (...) {...} | | | Switch.cs:93:9:97:9 | After switch (...) {...} | Switch.cs:98:9:98:21 | Before return ...; | | | Switch.cs:93:9:97:9 | switch (...) {...} | Switch.cs:93:17:93:17 | access to parameter o | | @@ -6364,8 +6522,9 @@ | Switch.cs:98:9:98:21 | Before return ...; | Switch.cs:98:16:98:20 | false | | | Switch.cs:98:9:98:21 | return ...; | Switch.cs:91:10:91:11 | Normal Exit | return | | Switch.cs:98:16:98:20 | false | Switch.cs:98:9:98:21 | return ...; | | -| Switch.cs:101:9:101:10 | Entry | Switch.cs:102:5:109:5 | {...} | | +| Switch.cs:101:9:101:10 | Entry | Switch.cs:101:19:101:19 | s | | | Switch.cs:101:9:101:10 | Normal Exit | Switch.cs:101:9:101:10 | Exit | | +| Switch.cs:101:19:101:19 | s | Switch.cs:102:5:109:5 | {...} | | | Switch.cs:102:5:109:5 | {...} | Switch.cs:103:9:107:9 | switch (...) {...} | | | Switch.cs:103:9:107:9 | After switch (...) {...} | Switch.cs:108:9:108:18 | Before return ...; | | | Switch.cs:103:9:107:9 | switch (...) {...} | Switch.cs:103:17:103:25 | Before access to property Length | | @@ -6405,8 +6564,9 @@ | Switch.cs:111:34:111:48 | After object creation of type Exception | Switch.cs:111:28:111:48 | throw ... | | | Switch.cs:111:34:111:48 | Before object creation of type Exception | Switch.cs:111:34:111:48 | object creation of type Exception | | | Switch.cs:111:34:111:48 | object creation of type Exception | Switch.cs:111:34:111:48 | After object creation of type Exception | | -| Switch.cs:113:9:113:11 | Entry | Switch.cs:114:5:121:5 | {...} | | +| Switch.cs:113:9:113:11 | Entry | Switch.cs:113:20:113:20 | s | | | Switch.cs:113:9:113:11 | Normal Exit | Switch.cs:113:9:113:11 | Exit | | +| Switch.cs:113:20:113:20 | s | Switch.cs:114:5:121:5 | {...} | | | Switch.cs:114:5:121:5 | {...} | Switch.cs:115:9:119:9 | switch (...) {...} | | | Switch.cs:115:9:119:9 | After switch (...) {...} | Switch.cs:120:9:120:18 | Before return ...; | | | Switch.cs:115:9:119:9 | switch (...) {...} | Switch.cs:115:17:115:24 | Before access to property Length | | @@ -6450,8 +6610,9 @@ | Switch.cs:120:16:120:17 | After -... | Switch.cs:120:9:120:18 | return ...; | | | Switch.cs:120:16:120:17 | Before -... | Switch.cs:120:17:120:17 | 1 | | | Switch.cs:120:17:120:17 | 1 | Switch.cs:120:16:120:17 | -... | | -| Switch.cs:123:10:123:12 | Entry | Switch.cs:124:5:127:5 | {...} | | +| Switch.cs:123:10:123:12 | Entry | Switch.cs:123:21:123:21 | o | | | Switch.cs:123:10:123:12 | Normal Exit | Switch.cs:123:10:123:12 | Exit | | +| Switch.cs:123:21:123:21 | o | Switch.cs:124:5:127:5 | {...} | | | Switch.cs:124:5:127:5 | After {...} | Switch.cs:123:10:123:12 | Normal Exit | | | Switch.cs:124:5:127:5 | {...} | Switch.cs:125:9:126:19 | if (...) ... | | | Switch.cs:125:9:126:19 | After if (...) ... | Switch.cs:124:5:127:5 | After {...} | | @@ -6474,8 +6635,9 @@ | Switch.cs:125:42:125:46 | false | Switch.cs:125:13:125:48 | After ... switch { ... } [true] | true | | Switch.cs:126:13:126:19 | Before return ...; | Switch.cs:126:13:126:19 | return ...; | | | Switch.cs:126:13:126:19 | return ...; | Switch.cs:123:10:123:12 | Normal Exit | return | -| Switch.cs:129:12:129:14 | Entry | Switch.cs:130:5:132:5 | {...} | | +| Switch.cs:129:12:129:14 | Entry | Switch.cs:129:23:129:23 | o | | | Switch.cs:129:12:129:14 | Normal Exit | Switch.cs:129:12:129:14 | Exit | | +| Switch.cs:129:23:129:23 | o | Switch.cs:130:5:132:5 | {...} | | | Switch.cs:130:5:132:5 | {...} | Switch.cs:131:9:131:67 | Before return ...; | | | Switch.cs:131:9:131:67 | Before return ...; | Switch.cs:131:16:131:66 | Before call to method ToString | | | Switch.cs:131:9:131:67 | return ...; | Switch.cs:129:12:129:14 | Normal Exit | return | @@ -6498,8 +6660,9 @@ | Switch.cs:131:43:131:51 | After ... => ... [match] | Switch.cs:131:43:131:43 | _ | | | Switch.cs:131:48:131:51 | null | Switch.cs:131:17:131:53 | After ... switch { ... } [non-null] | non-null | | Switch.cs:131:48:131:51 | null | Switch.cs:131:17:131:53 | After ... switch { ... } [null] | null | -| Switch.cs:134:9:134:11 | Entry | Switch.cs:135:5:142:5 | {...} | | +| Switch.cs:134:9:134:11 | Entry | Switch.cs:134:17:134:17 | i | | | Switch.cs:134:9:134:11 | Normal Exit | Switch.cs:134:9:134:11 | Exit | | +| Switch.cs:134:17:134:17 | i | Switch.cs:135:5:142:5 | {...} | | | Switch.cs:135:5:142:5 | {...} | Switch.cs:136:9:141:9 | switch (...) {...} | | | Switch.cs:136:9:141:9 | switch (...) {...} | Switch.cs:136:17:136:17 | access to parameter i | | | Switch.cs:136:17:136:17 | access to parameter i | Switch.cs:139:13:139:19 | case ...: | | @@ -6527,8 +6690,9 @@ | Switch.cs:140:21:140:29 | Before return ...; | Switch.cs:140:28:140:28 | 2 | | | Switch.cs:140:21:140:29 | return ...; | Switch.cs:134:9:134:11 | Normal Exit | return | | Switch.cs:140:28:140:28 | 2 | Switch.cs:140:21:140:29 | return ...; | | -| Switch.cs:144:9:144:11 | Entry | Switch.cs:145:5:152:5 | {...} | | +| Switch.cs:144:9:144:11 | Entry | Switch.cs:144:17:144:17 | i | | | Switch.cs:144:9:144:11 | Normal Exit | Switch.cs:144:9:144:11 | Exit | | +| Switch.cs:144:17:144:17 | i | Switch.cs:145:5:152:5 | {...} | | | Switch.cs:145:5:152:5 | {...} | Switch.cs:146:9:151:9 | switch (...) {...} | | | Switch.cs:146:9:151:9 | switch (...) {...} | Switch.cs:146:17:146:17 | access to parameter i | | | Switch.cs:146:17:146:17 | access to parameter i | Switch.cs:148:13:148:19 | case ...: | | @@ -6556,8 +6720,9 @@ | Switch.cs:150:21:150:29 | Before return ...; | Switch.cs:150:28:150:28 | 2 | | | Switch.cs:150:21:150:29 | return ...; | Switch.cs:144:9:144:11 | Normal Exit | return | | Switch.cs:150:28:150:28 | 2 | Switch.cs:150:21:150:29 | return ...; | | -| Switch.cs:154:10:154:12 | Entry | Switch.cs:155:5:161:5 | {...} | | +| Switch.cs:154:10:154:12 | Entry | Switch.cs:154:19:154:19 | b | | | Switch.cs:154:10:154:12 | Normal Exit | Switch.cs:154:10:154:12 | Exit | | +| Switch.cs:154:19:154:19 | b | Switch.cs:155:5:161:5 | {...} | | | Switch.cs:155:5:161:5 | After {...} | Switch.cs:154:10:154:12 | Normal Exit | | | Switch.cs:155:5:161:5 | {...} | Switch.cs:156:9:156:55 | ... ...; | | | Switch.cs:156:9:156:55 | ... ...; | Switch.cs:156:13:156:54 | Before String s = ... | | @@ -6613,8 +6778,9 @@ | Switch.cs:160:44:160:46 | Before {...} | Switch.cs:160:45:160:45 | access to local variable s | | | Switch.cs:160:44:160:46 | {...} | Switch.cs:160:44:160:46 | After {...} | | | Switch.cs:160:45:160:45 | access to local variable s | Switch.cs:160:44:160:46 | {...} | | -| Switch.cs:163:10:163:12 | Entry | Switch.cs:164:5:178:5 | {...} | | +| Switch.cs:163:10:163:12 | Entry | Switch.cs:163:18:163:18 | i | | | Switch.cs:163:10:163:12 | Normal Exit | Switch.cs:163:10:163:12 | Exit | | +| Switch.cs:163:18:163:18 | i | Switch.cs:164:5:178:5 | {...} | | | Switch.cs:164:5:178:5 | After {...} | Switch.cs:163:10:163:12 | Normal Exit | | | Switch.cs:164:5:178:5 | {...} | Switch.cs:165:9:177:9 | switch (...) {...} | | | Switch.cs:165:9:177:9 | After switch (...) {...} | Switch.cs:164:5:178:5 | After {...} | | @@ -6671,8 +6837,9 @@ | TypeAccesses.cs:1:7:1:18 | call to method | TypeAccesses.cs:1:7:1:18 | After call to method | | | TypeAccesses.cs:1:7:1:18 | this access | TypeAccesses.cs:1:7:1:18 | call to method | | | TypeAccesses.cs:1:7:1:18 | {...} | TypeAccesses.cs:1:7:1:18 | Normal Exit | | -| TypeAccesses.cs:3:10:3:10 | Entry | TypeAccesses.cs:4:5:9:5 | {...} | | +| TypeAccesses.cs:3:10:3:10 | Entry | TypeAccesses.cs:3:19:3:19 | o | | | TypeAccesses.cs:3:10:3:10 | Normal Exit | TypeAccesses.cs:3:10:3:10 | Exit | | +| TypeAccesses.cs:3:19:3:19 | o | TypeAccesses.cs:4:5:9:5 | {...} | | | TypeAccesses.cs:4:5:9:5 | After {...} | TypeAccesses.cs:3:10:3:10 | Normal Exit | | | TypeAccesses.cs:4:5:9:5 | {...} | TypeAccesses.cs:5:9:5:26 | ... ...; | | | TypeAccesses.cs:5:9:5:26 | ... ...; | TypeAccesses.cs:5:13:5:25 | Before String s = ... | | @@ -6723,8 +6890,9 @@ | VarDecls.cs:3:7:3:14 | call to method | VarDecls.cs:3:7:3:14 | After call to method | | | VarDecls.cs:3:7:3:14 | this access | VarDecls.cs:3:7:3:14 | call to method | | | VarDecls.cs:3:7:3:14 | {...} | VarDecls.cs:3:7:3:14 | Normal Exit | | -| VarDecls.cs:5:18:5:19 | Entry | VarDecls.cs:6:5:11:5 | {...} | | +| VarDecls.cs:5:18:5:19 | Entry | VarDecls.cs:5:30:5:36 | strings | | | VarDecls.cs:5:18:5:19 | Normal Exit | VarDecls.cs:5:18:5:19 | Exit | | +| VarDecls.cs:5:30:5:36 | strings | VarDecls.cs:6:5:11:5 | {...} | | | VarDecls.cs:6:5:11:5 | {...} | VarDecls.cs:7:9:10:9 | fixed(...) { ... } | | | VarDecls.cs:7:9:10:9 | fixed(...) { ... } | VarDecls.cs:7:22:7:36 | Before Char* c1 = ... | | | VarDecls.cs:7:22:7:23 | access to local variable c1 | VarDecls.cs:7:27:7:36 | Before (...) ... | | @@ -6758,8 +6926,9 @@ | VarDecls.cs:9:20:9:28 | After (...) ... | VarDecls.cs:9:13:9:29 | return ...; | | | VarDecls.cs:9:20:9:28 | Before (...) ... | VarDecls.cs:9:27:9:28 | access to local variable c1 | | | VarDecls.cs:9:27:9:28 | access to local variable c1 | VarDecls.cs:9:20:9:28 | (...) ... | | -| VarDecls.cs:13:12:13:13 | Entry | VarDecls.cs:14:5:17:5 | {...} | | +| VarDecls.cs:13:12:13:13 | Entry | VarDecls.cs:13:22:13:22 | s | | | VarDecls.cs:13:12:13:13 | Normal Exit | VarDecls.cs:13:12:13:13 | Exit | | +| VarDecls.cs:13:22:13:22 | s | VarDecls.cs:14:5:17:5 | {...} | | | VarDecls.cs:14:5:17:5 | {...} | VarDecls.cs:15:9:15:30 | ... ...; | | | VarDecls.cs:15:9:15:30 | ... ...; | VarDecls.cs:15:16:15:21 | Before String s1 = ... | | | VarDecls.cs:15:9:15:30 | After ... ...; | VarDecls.cs:16:9:16:23 | Before return ...; | | @@ -6780,8 +6949,9 @@ | VarDecls.cs:16:16:16:22 | After ... + ... | VarDecls.cs:16:9:16:23 | return ...; | | | VarDecls.cs:16:16:16:22 | Before ... + ... | VarDecls.cs:16:16:16:17 | access to local variable s1 | | | VarDecls.cs:16:21:16:22 | access to local variable s2 | VarDecls.cs:16:16:16:22 | ... + ... | | -| VarDecls.cs:19:7:19:8 | Entry | VarDecls.cs:20:5:26:5 | {...} | | +| VarDecls.cs:19:7:19:8 | Entry | VarDecls.cs:19:15:19:15 | b | | | VarDecls.cs:19:7:19:8 | Normal Exit | VarDecls.cs:19:7:19:8 | Exit | | +| VarDecls.cs:19:15:19:15 | b | VarDecls.cs:20:5:26:5 | {...} | | | VarDecls.cs:20:5:26:5 | {...} | VarDecls.cs:21:9:22:13 | using (...) {...} | | | VarDecls.cs:21:9:22:13 | After using (...) {...} | VarDecls.cs:24:9:25:29 | using (...) {...} | | | VarDecls.cs:21:9:22:13 | using (...) {...} | VarDecls.cs:21:16:21:22 | Before object creation of type C | | @@ -6827,8 +6997,9 @@ | VarDecls.cs:28:41:28:47 | Entry | VarDecls.cs:28:51:28:53 | {...} | | | VarDecls.cs:28:41:28:47 | Normal Exit | VarDecls.cs:28:41:28:47 | Exit | | | VarDecls.cs:28:51:28:53 | {...} | VarDecls.cs:28:41:28:47 | Normal Exit | | -| cflow.cs:5:17:5:20 | Entry | cflow.cs:6:5:35:5 | {...} | | +| cflow.cs:5:17:5:20 | Entry | cflow.cs:5:31:5:34 | args | | | cflow.cs:5:17:5:20 | Normal Exit | cflow.cs:5:17:5:20 | Exit | | +| cflow.cs:5:31:5:34 | args | cflow.cs:6:5:35:5 | {...} | | | cflow.cs:6:5:35:5 | After {...} | cflow.cs:5:17:5:20 | Normal Exit | | | cflow.cs:6:5:35:5 | {...} | cflow.cs:7:9:7:28 | ... ...; | | | cflow.cs:7:9:7:28 | ... ...; | cflow.cs:7:13:7:27 | Before Int32 a = ... | | @@ -7016,9 +7187,10 @@ | cflow.cs:33:17:33:37 | ...; | cflow.cs:33:17:33:36 | Before call to method WriteLine | | | cflow.cs:33:17:33:37 | After ...; | cflow.cs:30:18:33:37 | After if (...) ... | | | cflow.cs:33:35:33:35 | access to local variable i | cflow.cs:33:17:33:36 | call to method WriteLine | | -| cflow.cs:37:17:37:22 | Entry | cflow.cs:38:5:68:5 | {...} | | +| cflow.cs:37:17:37:22 | Entry | cflow.cs:37:28:37:28 | a | | | cflow.cs:37:17:37:22 | Exceptional Exit | cflow.cs:37:17:37:22 | Exit | | | cflow.cs:37:17:37:22 | Normal Exit | cflow.cs:37:17:37:22 | Exit | | +| cflow.cs:37:28:37:28 | a | cflow.cs:38:5:68:5 | {...} | | | cflow.cs:38:5:68:5 | {...} | cflow.cs:39:9:50:9 | switch (...) {...} | | | cflow.cs:39:9:50:9 | After switch (...) {...} | cflow.cs:51:9:59:9 | switch (...) {...} | | | cflow.cs:39:9:50:9 | switch (...) {...} | cflow.cs:39:17:39:17 | access to parameter a | | @@ -7129,8 +7301,9 @@ | cflow.cs:67:9:67:17 | Before return ...; | cflow.cs:67:16:67:16 | access to parameter a | | | cflow.cs:67:9:67:17 | return ...; | cflow.cs:37:17:37:22 | Normal Exit | return | | cflow.cs:67:16:67:16 | access to parameter a | cflow.cs:67:9:67:17 | return ...; | | -| cflow.cs:70:18:70:18 | Entry | cflow.cs:71:5:82:5 | {...} | | +| cflow.cs:70:18:70:18 | Entry | cflow.cs:70:27:70:27 | s | | | cflow.cs:70:18:70:18 | Normal Exit | cflow.cs:70:18:70:18 | Exit | | +| cflow.cs:70:27:70:27 | s | cflow.cs:71:5:82:5 | {...} | | | cflow.cs:71:5:82:5 | After {...} | cflow.cs:70:18:70:18 | Normal Exit | | | cflow.cs:71:5:82:5 | {...} | cflow.cs:72:9:73:19 | if (...) ... | | | cflow.cs:72:9:73:19 | After if (...) ... | cflow.cs:74:9:81:9 | if (...) ... | | @@ -7172,8 +7345,9 @@ | cflow.cs:80:13:80:48 | ...; | cflow.cs:80:13:80:47 | Before call to method WriteLine | | | cflow.cs:80:13:80:48 | After ...; | cflow.cs:79:9:81:9 | After {...} | | | cflow.cs:80:31:80:46 | "" | cflow.cs:80:13:80:47 | call to method WriteLine | | -| cflow.cs:84:18:84:19 | Entry | cflow.cs:85:5:88:5 | {...} | | +| cflow.cs:84:18:84:19 | Entry | cflow.cs:84:28:84:28 | s | | | cflow.cs:84:18:84:19 | Normal Exit | cflow.cs:84:18:84:19 | Exit | | +| cflow.cs:84:28:84:28 | s | cflow.cs:85:5:88:5 | {...} | | | cflow.cs:85:5:88:5 | After {...} | cflow.cs:84:18:84:19 | Normal Exit | | | cflow.cs:85:5:88:5 | {...} | cflow.cs:86:9:87:33 | if (...) ... | | | cflow.cs:86:9:87:33 | After if (...) ... | cflow.cs:85:5:88:5 | After {...} | | @@ -7204,9 +7378,10 @@ | cflow.cs:87:13:87:33 | ...; | cflow.cs:87:13:87:32 | Before call to method WriteLine | | | cflow.cs:87:13:87:33 | After ...; | cflow.cs:86:9:87:33 | After if (...) ... | | | cflow.cs:87:31:87:31 | access to parameter s | cflow.cs:87:13:87:32 | call to method WriteLine | | -| cflow.cs:90:18:90:19 | Entry | cflow.cs:91:5:104:5 | {...} | | +| cflow.cs:90:18:90:19 | Entry | cflow.cs:90:28:90:28 | s | | | cflow.cs:90:18:90:19 | Exceptional Exit | cflow.cs:90:18:90:19 | Exit | | | cflow.cs:90:18:90:19 | Normal Exit | cflow.cs:90:18:90:19 | Exit | | +| cflow.cs:90:28:90:28 | s | cflow.cs:91:5:104:5 | {...} | | | cflow.cs:91:5:104:5 | After {...} | cflow.cs:90:18:90:19 | Normal Exit | | | cflow.cs:91:5:104:5 | {...} | cflow.cs:92:9:93:49 | if (...) ... | | | cflow.cs:92:9:93:49 | After if (...) ... | cflow.cs:94:9:94:29 | ...; | | @@ -7295,8 +7470,9 @@ | cflow.cs:103:31:103:34 | Before access to property Prop | cflow.cs:103:31:103:34 | this access | | | cflow.cs:103:31:103:34 | access to property Prop | cflow.cs:103:31:103:34 | After access to property Prop | | | cflow.cs:103:31:103:34 | this access | cflow.cs:103:31:103:34 | access to property Prop | | -| cflow.cs:106:18:106:19 | Entry | cflow.cs:107:5:117:5 | {...} | | +| cflow.cs:106:18:106:19 | Entry | cflow.cs:106:28:106:28 | s | | | cflow.cs:106:18:106:19 | Normal Exit | cflow.cs:106:18:106:19 | Exit | | +| cflow.cs:106:28:106:28 | s | cflow.cs:107:5:117:5 | {...} | | | cflow.cs:107:5:117:5 | After {...} | cflow.cs:106:18:106:19 | Normal Exit | | | cflow.cs:107:5:117:5 | {...} | cflow.cs:108:9:115:9 | if (...) ... | | | cflow.cs:108:9:115:9 | After if (...) ... | cflow.cs:116:9:116:29 | ...; | | @@ -7327,8 +7503,9 @@ | cflow.cs:116:9:116:29 | ...; | cflow.cs:116:9:116:28 | Before call to method WriteLine | | | cflow.cs:116:9:116:29 | After ...; | cflow.cs:107:5:117:5 | After {...} | | | cflow.cs:116:27:116:27 | access to parameter s | cflow.cs:116:9:116:28 | call to method WriteLine | | -| cflow.cs:119:20:119:21 | Entry | cflow.cs:120:5:124:5 | {...} | | +| cflow.cs:119:20:119:21 | Entry | cflow.cs:119:30:119:30 | s | | | cflow.cs:119:20:119:21 | Normal Exit | cflow.cs:119:20:119:21 | Exit | | +| cflow.cs:119:30:119:30 | s | cflow.cs:120:5:124:5 | {...} | | | cflow.cs:120:5:124:5 | {...} | cflow.cs:121:9:121:18 | ... ...; | | | cflow.cs:121:9:121:18 | ... ...; | cflow.cs:121:13:121:17 | Before String x = ... | | | cflow.cs:121:9:121:18 | After ... ...; | cflow.cs:122:9:122:20 | ...; | | @@ -7373,8 +7550,9 @@ | cflow.cs:127:53:127:57 | Before access to field Field | cflow.cs:127:53:127:57 | this access | | | cflow.cs:127:53:127:57 | access to field Field | cflow.cs:127:53:127:57 | After access to field Field | | | cflow.cs:127:53:127:57 | this access | cflow.cs:127:53:127:57 | access to field Field | | -| cflow.cs:127:62:127:64 | Entry | cflow.cs:127:66:127:83 | {...} | | +| cflow.cs:127:62:127:64 | Entry | cflow.cs:127:62:127:64 | value | | | cflow.cs:127:62:127:64 | Normal Exit | cflow.cs:127:62:127:64 | Exit | | +| cflow.cs:127:62:127:64 | value | cflow.cs:127:66:127:83 | {...} | | | cflow.cs:127:66:127:83 | After {...} | cflow.cs:127:62:127:64 | Normal Exit | | | cflow.cs:127:66:127:83 | {...} | cflow.cs:127:68:127:81 | ...; | | | cflow.cs:127:68:127:72 | After access to field Field | cflow.cs:127:76:127:80 | access to parameter value | | @@ -7391,11 +7569,12 @@ | cflow.cs:129:5:129:15 | After call to method | cflow.cs:129:5:129:15 | Before call to constructor Object | | | cflow.cs:129:5:129:15 | Before call to constructor Object | cflow.cs:129:5:129:15 | call to constructor Object | | | cflow.cs:129:5:129:15 | Before call to method | cflow.cs:129:5:129:15 | this access | | -| cflow.cs:129:5:129:15 | Entry | cflow.cs:129:5:129:15 | Before call to method | | +| cflow.cs:129:5:129:15 | Entry | cflow.cs:129:24:129:24 | s | | | cflow.cs:129:5:129:15 | Normal Exit | cflow.cs:129:5:129:15 | Exit | | | cflow.cs:129:5:129:15 | call to constructor Object | cflow.cs:129:5:129:15 | After call to constructor Object | | | cflow.cs:129:5:129:15 | call to method | cflow.cs:129:5:129:15 | After call to method | | | cflow.cs:129:5:129:15 | this access | cflow.cs:129:5:129:15 | call to method | | +| cflow.cs:129:24:129:24 | s | cflow.cs:129:5:129:15 | Before call to method | | | cflow.cs:130:5:132:5 | After {...} | cflow.cs:129:5:129:15 | Normal Exit | | | cflow.cs:130:5:132:5 | {...} | cflow.cs:131:9:131:18 | ...; | | | cflow.cs:131:9:131:13 | After access to field Field | cflow.cs:131:17:131:17 | access to parameter s | | @@ -7408,8 +7587,9 @@ | cflow.cs:131:9:131:18 | ...; | cflow.cs:131:9:131:17 | Before ... = ... | | | cflow.cs:131:9:131:18 | After ...; | cflow.cs:130:5:132:5 | After {...} | | | cflow.cs:131:17:131:17 | access to parameter s | cflow.cs:131:9:131:17 | ... = ... | | -| cflow.cs:134:5:134:15 | Entry | cflow.cs:134:26:134:29 | Before call to constructor ControlFlow | | +| cflow.cs:134:5:134:15 | Entry | cflow.cs:134:21:134:21 | i | | | cflow.cs:134:5:134:15 | Normal Exit | cflow.cs:134:5:134:15 | Exit | | +| cflow.cs:134:21:134:21 | i | cflow.cs:134:26:134:29 | Before call to constructor ControlFlow | | | cflow.cs:134:26:134:29 | After call to constructor ControlFlow | cflow.cs:134:39:134:41 | {...} | | | cflow.cs:134:26:134:29 | Before call to constructor ControlFlow | cflow.cs:134:31:134:36 | Before ... + ... | | | cflow.cs:134:26:134:29 | call to constructor ControlFlow | cflow.cs:134:26:134:29 | After call to constructor ControlFlow | | @@ -7433,8 +7613,10 @@ | cflow.cs:136:33:136:37 | Before ... + ... | cflow.cs:136:33:136:33 | 0 | | | cflow.cs:136:37:136:37 | 1 | cflow.cs:136:33:136:37 | ... + ... | | | cflow.cs:136:40:136:42 | {...} | cflow.cs:136:12:136:22 | Normal Exit | | -| cflow.cs:138:40:138:40 | Entry | cflow.cs:139:5:142:5 | {...} | | +| cflow.cs:138:40:138:40 | Entry | cflow.cs:138:54:138:54 | x | | | cflow.cs:138:40:138:40 | Normal Exit | cflow.cs:138:40:138:40 | Exit | | +| cflow.cs:138:54:138:54 | x | cflow.cs:138:69:138:69 | y | | +| cflow.cs:138:69:138:69 | y | cflow.cs:139:5:142:5 | {...} | | | cflow.cs:139:5:142:5 | {...} | cflow.cs:140:9:140:29 | ...; | | | cflow.cs:140:9:140:28 | After call to method WriteLine | cflow.cs:140:9:140:29 | After ...; | | | cflow.cs:140:9:140:28 | Before call to method WriteLine | cflow.cs:140:27:140:27 | access to parameter x | | @@ -7445,7 +7627,9 @@ | cflow.cs:141:9:141:17 | Before return ...; | cflow.cs:141:16:141:16 | access to parameter y | | | cflow.cs:141:9:141:17 | return ...; | cflow.cs:138:40:138:40 | Normal Exit | return | | cflow.cs:141:16:141:16 | access to parameter y | cflow.cs:141:9:141:17 | return ...; | | -| cflow.cs:144:33:144:35 | Entry | cflow.cs:144:37:144:54 | {...} | | +| cflow.cs:144:28:144:28 | i | cflow.cs:144:37:144:54 | {...} | | +| cflow.cs:144:28:144:28 | i | cflow.cs:144:56:144:58 | value | | +| cflow.cs:144:33:144:35 | Entry | cflow.cs:144:28:144:28 | i | | | cflow.cs:144:33:144:35 | Normal Exit | cflow.cs:144:33:144:35 | Exit | | | cflow.cs:144:37:144:54 | {...} | cflow.cs:144:39:144:52 | Before return ...; | | | cflow.cs:144:39:144:52 | Before return ...; | cflow.cs:144:46:144:51 | Before ... + ... | | @@ -7458,8 +7642,9 @@ | cflow.cs:144:46:144:51 | After ... + ... | cflow.cs:144:39:144:52 | return ...; | | | cflow.cs:144:46:144:51 | Before ... + ... | cflow.cs:144:46:144:46 | Before (...) ... | | | cflow.cs:144:50:144:51 | "" | cflow.cs:144:46:144:51 | ... + ... | | -| cflow.cs:144:56:144:58 | Entry | cflow.cs:144:60:144:62 | {...} | | +| cflow.cs:144:56:144:58 | Entry | cflow.cs:144:28:144:28 | i | | | cflow.cs:144:56:144:58 | Normal Exit | cflow.cs:144:56:144:58 | Exit | | +| cflow.cs:144:56:144:58 | value | cflow.cs:144:60:144:62 | {...} | | | cflow.cs:144:60:144:62 | {...} | cflow.cs:144:56:144:58 | Normal Exit | | | cflow.cs:146:10:146:12 | Entry | cflow.cs:147:5:177:5 | {...} | | | cflow.cs:146:10:146:12 | Normal Exit | cflow.cs:146:10:146:12 | Exit | | @@ -7624,8 +7809,9 @@ | cflow.cs:181:24:181:37 | After Func y = ... | cflow.cs:181:9:181:38 | After ... ...; | | | cflow.cs:181:24:181:37 | Before Func y = ... | cflow.cs:181:24:181:24 | access to local variable y | | | cflow.cs:181:24:181:37 | Func y = ... | cflow.cs:181:24:181:37 | After Func y = ... | | +| cflow.cs:181:28:181:28 | x | cflow.cs:181:33:181:37 | Before ... + ... | | | cflow.cs:181:28:181:37 | (...) => ... | cflow.cs:181:24:181:37 | Func y = ... | | -| cflow.cs:181:28:181:37 | Entry | cflow.cs:181:33:181:37 | Before ... + ... | | +| cflow.cs:181:28:181:37 | Entry | cflow.cs:181:28:181:28 | x | | | cflow.cs:181:28:181:37 | Normal Exit | cflow.cs:181:28:181:37 | Exit | | | cflow.cs:181:33:181:33 | access to parameter x | cflow.cs:181:37:181:37 | 1 | | | cflow.cs:181:33:181:37 | ... + ... | cflow.cs:181:33:181:37 | After ... + ... | | @@ -7638,9 +7824,10 @@ | cflow.cs:182:24:182:61 | After Func z = ... | cflow.cs:182:9:182:62 | After ... ...; | | | cflow.cs:182:24:182:61 | Before Func z = ... | cflow.cs:182:24:182:24 | access to local variable z | | | cflow.cs:182:24:182:61 | Func z = ... | cflow.cs:182:24:182:61 | After Func z = ... | | -| cflow.cs:182:28:182:61 | Entry | cflow.cs:182:45:182:61 | {...} | | +| cflow.cs:182:28:182:61 | Entry | cflow.cs:182:42:182:42 | x | | | cflow.cs:182:28:182:61 | Normal Exit | cflow.cs:182:28:182:61 | Exit | | | cflow.cs:182:28:182:61 | delegate(...) { ... } | cflow.cs:182:24:182:61 | Func z = ... | | +| cflow.cs:182:42:182:42 | x | cflow.cs:182:45:182:61 | {...} | | | cflow.cs:182:45:182:61 | {...} | cflow.cs:182:47:182:59 | Before return ...; | | | cflow.cs:182:47:182:59 | Before return ...; | cflow.cs:182:54:182:58 | Before ... + ... | | | cflow.cs:182:47:182:59 | return ...; | cflow.cs:182:28:182:61 | Normal Exit | return | @@ -8130,14 +8317,16 @@ | cflow.cs:282:24:282:27 | Before call to constructor ControlFlow | cflow.cs:282:24:282:27 | call to constructor ControlFlow | | | cflow.cs:282:24:282:27 | call to constructor ControlFlow | cflow.cs:282:24:282:27 | After call to constructor ControlFlow | | | cflow.cs:282:31:282:33 | {...} | cflow.cs:282:5:282:18 | Normal Exit | | -| cflow.cs:284:5:284:18 | Entry | cflow.cs:284:32:284:35 | Before call to constructor ControlFlowSub | | +| cflow.cs:284:5:284:18 | Entry | cflow.cs:284:27:284:27 | s | | | cflow.cs:284:5:284:18 | Normal Exit | cflow.cs:284:5:284:18 | Exit | | +| cflow.cs:284:27:284:27 | s | cflow.cs:284:32:284:35 | Before call to constructor ControlFlowSub | | | cflow.cs:284:32:284:35 | After call to constructor ControlFlowSub | cflow.cs:284:39:284:41 | {...} | | | cflow.cs:284:32:284:35 | Before call to constructor ControlFlowSub | cflow.cs:284:32:284:35 | call to constructor ControlFlowSub | | | cflow.cs:284:32:284:35 | call to constructor ControlFlowSub | cflow.cs:284:32:284:35 | After call to constructor ControlFlowSub | | | cflow.cs:284:39:284:41 | {...} | cflow.cs:284:5:284:18 | Normal Exit | | -| cflow.cs:286:5:286:18 | Entry | cflow.cs:286:29:286:32 | Before call to constructor ControlFlowSub | | +| cflow.cs:286:5:286:18 | Entry | cflow.cs:286:24:286:24 | i | | | cflow.cs:286:5:286:18 | Normal Exit | cflow.cs:286:5:286:18 | Exit | | +| cflow.cs:286:24:286:24 | i | cflow.cs:286:29:286:32 | Before call to constructor ControlFlowSub | | | cflow.cs:286:29:286:32 | After call to constructor ControlFlowSub | cflow.cs:286:48:286:50 | {...} | | | cflow.cs:286:29:286:32 | Before call to constructor ControlFlowSub | cflow.cs:286:34:286:45 | Before call to method ToString | | | cflow.cs:286:29:286:32 | call to constructor ControlFlowSub | cflow.cs:286:29:286:32 | After call to constructor ControlFlowSub | | @@ -8156,8 +8345,9 @@ | cflow.cs:289:7:289:18 | call to method | cflow.cs:289:7:289:18 | After call to method | | | cflow.cs:289:7:289:18 | this access | cflow.cs:289:7:289:18 | call to method | | | cflow.cs:289:7:289:18 | {...} | cflow.cs:289:7:289:18 | Normal Exit | | -| cflow.cs:291:12:291:12 | Entry | cflow.cs:291:38:291:41 | Before delegate call | | +| cflow.cs:291:12:291:12 | Entry | cflow.cs:291:32:291:32 | f | | | cflow.cs:291:12:291:12 | Normal Exit | cflow.cs:291:12:291:12 | Exit | | +| cflow.cs:291:32:291:32 | f | cflow.cs:291:38:291:41 | Before delegate call | | | cflow.cs:291:38:291:38 | access to parameter f | cflow.cs:291:40:291:40 | 0 | | | cflow.cs:291:38:291:41 | After delegate call | cflow.cs:291:12:291:12 | Normal Exit | | | cflow.cs:291:38:291:41 | Before delegate call | cflow.cs:291:38:291:38 | access to parameter f | | @@ -8167,14 +8357,20 @@ | cflow.cs:296:5:296:25 | After call to method | cflow.cs:296:5:296:25 | Before call to constructor Object | | | cflow.cs:296:5:296:25 | Before call to constructor Object | cflow.cs:296:5:296:25 | call to constructor Object | | | cflow.cs:296:5:296:25 | Before call to method | cflow.cs:296:5:296:25 | this access | | -| cflow.cs:296:5:296:25 | Entry | cflow.cs:296:5:296:25 | Before call to method | | +| cflow.cs:296:5:296:25 | Entry | cflow.cs:296:32:296:32 | b | | | cflow.cs:296:5:296:25 | Normal Exit | cflow.cs:296:5:296:25 | Exit | | | cflow.cs:296:5:296:25 | call to constructor Object | cflow.cs:296:5:296:25 | After call to constructor Object | | | cflow.cs:296:5:296:25 | call to method | cflow.cs:296:5:296:25 | After call to method | | | cflow.cs:296:5:296:25 | this access | cflow.cs:296:5:296:25 | call to method | | +| cflow.cs:296:32:296:32 | b | cflow.cs:296:39:296:39 | i | | +| cflow.cs:296:39:296:39 | i | cflow.cs:296:49:296:49 | s | | +| cflow.cs:296:49:296:49 | s | cflow.cs:296:5:296:25 | Before call to method | | | cflow.cs:296:52:296:54 | {...} | cflow.cs:296:5:296:25 | Normal Exit | | -| cflow.cs:298:10:298:10 | Entry | cflow.cs:299:5:301:5 | {...} | | +| cflow.cs:298:10:298:10 | Entry | cflow.cs:298:16:298:16 | i | | | cflow.cs:298:10:298:10 | Normal Exit | cflow.cs:298:10:298:10 | Exit | | +| cflow.cs:298:16:298:16 | i | cflow.cs:298:26:298:26 | s | | +| cflow.cs:298:26:298:26 | s | cflow.cs:298:34:298:34 | b | | +| cflow.cs:298:34:298:34 | b | cflow.cs:299:5:301:5 | {...} | | | cflow.cs:299:5:301:5 | After {...} | cflow.cs:298:10:298:10 | Normal Exit | | | cflow.cs:299:5:301:5 | {...} | cflow.cs:300:9:300:73 | ...; | | | cflow.cs:300:9:300:72 | After object creation of type NegationInConstructor | cflow.cs:300:9:300:73 | After ...; | | @@ -8213,9 +8409,11 @@ | cflow.cs:304:7:304:18 | {...} | cflow.cs:304:7:304:18 | Normal Exit | | | cflow.cs:306:60:310:5 | (...) => ... | cflow.cs:306:60:310:5 | Normal Exit | | | cflow.cs:306:60:310:5 | Entry | cflow.cs:306:60:310:5 | (...) => ... | | -| cflow.cs:306:60:310:5 | Entry | cflow.cs:307:5:310:5 | {...} | | +| cflow.cs:306:60:310:5 | Entry | cflow.cs:306:61:306:61 | o | | | cflow.cs:306:60:310:5 | Normal Exit | cflow.cs:306:60:310:5 | Exit | | | cflow.cs:306:60:310:5 | Normal Exit | cflow.cs:306:60:310:5 | Exit | | +| cflow.cs:306:61:306:61 | o | cflow.cs:306:64:306:64 | n | | +| cflow.cs:306:64:306:64 | n | cflow.cs:307:5:310:5 | {...} | | | cflow.cs:307:5:310:5 | {...} | cflow.cs:308:9:308:21 | ... ...; | | | cflow.cs:308:9:308:21 | ... ...; | cflow.cs:308:16:308:20 | Before Object x = ... | | | cflow.cs:308:9:308:21 | After ... ...; | cflow.cs:309:9:309:17 | Before return ...; | | diff --git a/csharp/ql/test/library-tests/controlflow/graph/Nodes.expected b/csharp/ql/test/library-tests/controlflow/graph/Nodes.expected index f64038d21588..c4141e7d6a10 100644 --- a/csharp/ql/test/library-tests/controlflow/graph/Nodes.expected +++ b/csharp/ql/test/library-tests/controlflow/graph/Nodes.expected @@ -1,65 +1,71 @@ -| AccessorCalls.cs:5:23:5:25 | get_Item | AccessorCalls.cs:5:30:5:30 | access to parameter i | -| AccessorCalls.cs:5:33:5:35 | set_Item | AccessorCalls.cs:5:37:5:39 | {...} | -| AccessorCalls.cs:7:32:7:34 | add_Event | AccessorCalls.cs:7:36:7:38 | {...} | -| AccessorCalls.cs:7:40:7:45 | remove_Event | AccessorCalls.cs:7:47:7:49 | {...} | -| AccessorCalls.cs:10:10:10:11 | M1 | AccessorCalls.cs:11:5:17:5 | {...} | -| AccessorCalls.cs:19:10:19:11 | M2 | AccessorCalls.cs:20:5:26:5 | {...} | +| AccessorCalls.cs:5:23:5:25 | get_Item | AccessorCalls.cs:5:18:5:18 | i | +| AccessorCalls.cs:5:33:5:35 | set_Item | AccessorCalls.cs:5:18:5:18 | i | +| AccessorCalls.cs:7:32:7:34 | add_Event | AccessorCalls.cs:7:32:7:34 | value | +| AccessorCalls.cs:7:40:7:45 | remove_Event | AccessorCalls.cs:7:40:7:45 | value | +| AccessorCalls.cs:10:10:10:11 | M1 | AccessorCalls.cs:10:26:10:26 | e | +| AccessorCalls.cs:19:10:19:11 | M2 | AccessorCalls.cs:19:26:19:26 | e | | AccessorCalls.cs:28:10:28:11 | M3 | AccessorCalls.cs:29:5:33:5 | {...} | | AccessorCalls.cs:35:10:35:11 | M4 | AccessorCalls.cs:36:5:40:5 | {...} | | AccessorCalls.cs:42:10:42:11 | M5 | AccessorCalls.cs:43:5:47:5 | {...} | | AccessorCalls.cs:49:10:49:11 | M6 | AccessorCalls.cs:50:5:54:5 | {...} | -| AccessorCalls.cs:56:10:56:11 | M7 | AccessorCalls.cs:57:5:59:5 | {...} | -| AccessorCalls.cs:61:10:61:11 | M8 | AccessorCalls.cs:62:5:64:5 | {...} | -| AccessorCalls.cs:66:10:66:11 | M9 | AccessorCalls.cs:67:5:74:5 | {...} | -| Assert.cs:7:10:7:11 | M1 | Assert.cs:8:5:12:5 | {...} | -| Assert.cs:14:10:14:11 | M2 | Assert.cs:15:5:19:5 | {...} | -| Assert.cs:21:10:21:11 | M3 | Assert.cs:22:5:26:5 | {...} | -| Assert.cs:28:10:28:11 | M4 | Assert.cs:29:5:33:5 | {...} | -| Assert.cs:35:10:35:11 | M5 | Assert.cs:36:5:40:5 | {...} | -| Assert.cs:42:10:42:11 | M6 | Assert.cs:43:5:47:5 | {...} | -| Assert.cs:49:10:49:11 | M7 | Assert.cs:50:5:54:5 | {...} | -| Assert.cs:56:10:56:11 | M8 | Assert.cs:57:5:61:5 | {...} | -| Assert.cs:63:10:63:11 | M9 | Assert.cs:64:5:68:5 | {...} | -| Assert.cs:70:10:70:12 | M10 | Assert.cs:71:5:75:5 | {...} | -| Assert.cs:77:10:77:12 | M11 | Assert.cs:78:5:82:5 | {...} | -| Assert.cs:84:10:84:12 | M12 | Assert.cs:85:5:129:5 | {...} | -| Assert.cs:131:18:131:32 | AssertTrueFalse | Assert.cs:135:5:136:5 | {...} | -| Assert.cs:138:10:138:12 | M13 | Assert.cs:139:5:142:5 | {...} | +| AccessorCalls.cs:56:10:56:11 | M7 | AccessorCalls.cs:56:17:56:17 | i | +| AccessorCalls.cs:61:10:61:11 | M8 | AccessorCalls.cs:61:17:61:17 | i | +| AccessorCalls.cs:66:10:66:11 | M9 | AccessorCalls.cs:66:20:66:20 | o | +| Assert.cs:7:10:7:11 | M1 | Assert.cs:7:18:7:18 | b | +| Assert.cs:14:10:14:11 | M2 | Assert.cs:14:18:14:18 | b | +| Assert.cs:21:10:21:11 | M3 | Assert.cs:21:18:21:18 | b | +| Assert.cs:28:10:28:11 | M4 | Assert.cs:28:18:28:18 | b | +| Assert.cs:35:10:35:11 | M5 | Assert.cs:35:18:35:18 | b | +| Assert.cs:42:10:42:11 | M6 | Assert.cs:42:18:42:18 | b | +| Assert.cs:49:10:49:11 | M7 | Assert.cs:49:18:49:18 | b | +| Assert.cs:56:10:56:11 | M8 | Assert.cs:56:18:56:18 | b | +| Assert.cs:63:10:63:11 | M9 | Assert.cs:63:18:63:18 | b | +| Assert.cs:70:10:70:12 | M10 | Assert.cs:70:19:70:19 | b | +| Assert.cs:77:10:77:12 | M11 | Assert.cs:77:19:77:19 | b | +| Assert.cs:84:10:84:12 | M12 | Assert.cs:84:19:84:19 | b | +| Assert.cs:131:18:131:32 | AssertTrueFalse | Assert.cs:132:74:132:83 | condition1 | +| Assert.cs:138:10:138:12 | M13 | Assert.cs:138:19:138:20 | b1 | | Assignments.cs:3:10:3:10 | M | Assignments.cs:4:5:15:5 | {...} | -| Assignments.cs:14:18:14:35 | (...) => ... | Assignments.cs:14:33:14:35 | {...} | -| Assignments.cs:17:40:17:40 | + | Assignments.cs:18:5:20:5 | {...} | -| Assignments.cs:27:10:27:23 | SetParamSingle | Assignments.cs:28:5:30:5 | {...} | -| Assignments.cs:32:10:32:22 | SetParamMulti | Assignments.cs:33:5:36:5 | {...} | +| Assignments.cs:14:18:14:35 | (...) => ... | Assignments.cs:14:19:14:24 | sender | +| Assignments.cs:17:40:17:40 | + | Assignments.cs:17:54:17:54 | x | +| Assignments.cs:27:10:27:23 | SetParamSingle | Assignments.cs:27:33:27:33 | x | +| Assignments.cs:32:10:32:22 | SetParamMulti | Assignments.cs:32:32:32:32 | x | | Assignments.cs:38:10:38:11 | M2 | Assignments.cs:39:5:45:5 | {...} | -| BreakInTry.cs:3:10:3:11 | M1 | BreakInTry.cs:4:5:18:5 | {...} | -| BreakInTry.cs:20:10:20:11 | M2 | BreakInTry.cs:21:5:36:5 | {...} | -| BreakInTry.cs:38:10:38:11 | M3 | BreakInTry.cs:39:5:54:5 | {...} | -| BreakInTry.cs:56:10:56:11 | M4 | BreakInTry.cs:57:5:71:5 | {...} | +| BreakInTry.cs:3:10:3:11 | M1 | BreakInTry.cs:3:22:3:25 | args | +| BreakInTry.cs:20:10:20:11 | M2 | BreakInTry.cs:20:22:20:25 | args | +| BreakInTry.cs:38:10:38:11 | M3 | BreakInTry.cs:38:22:38:25 | args | +| BreakInTry.cs:56:10:56:11 | M4 | BreakInTry.cs:56:22:56:25 | args | | CompileTimeOperators.cs:5:9:5:15 | Default | CompileTimeOperators.cs:6:5:8:5 | {...} | | CompileTimeOperators.cs:10:9:10:14 | Sizeof | CompileTimeOperators.cs:11:5:13:5 | {...} | | CompileTimeOperators.cs:15:10:15:15 | Typeof | CompileTimeOperators.cs:16:5:18:5 | {...} | -| CompileTimeOperators.cs:20:12:20:17 | Nameof | CompileTimeOperators.cs:21:5:23:5 | {...} | +| CompileTimeOperators.cs:20:12:20:17 | Nameof | CompileTimeOperators.cs:20:23:20:23 | i | | CompileTimeOperators.cs:28:10:28:10 | M | CompileTimeOperators.cs:29:5:41:5 | {...} | -| ConditionalAccess.cs:9:9:9:10 | M4 | ConditionalAccess.cs:9:25:9:38 | ... ?? ... | -| ConditionalAccess.cs:11:9:11:10 | M5 | ConditionalAccess.cs:12:5:17:5 | {...} | -| ConditionalAccess.cs:21:10:21:11 | M7 | ConditionalAccess.cs:22:5:26:5 | {...} | -| ConditionalAccess.cs:32:10:32:11 | M8 | ConditionalAccess.cs:33:5:36:5 | {...} | -| ConditionalAccess.cs:42:9:42:11 | get_Item | ConditionalAccess.cs:42:13:42:28 | {...} | -| ConditionalAccess.cs:43:9:43:11 | set_Item | ConditionalAccess.cs:43:13:43:15 | {...} | -| ConditionalAccess.cs:46:10:46:11 | M9 | ConditionalAccess.cs:47:5:55:5 | {...} | -| Conditions.cs:3:10:3:19 | IncrOrDecr | Conditions.cs:4:5:9:5 | {...} | -| Conditions.cs:11:9:11:10 | M1 | Conditions.cs:12:5:20:5 | {...} | -| Conditions.cs:22:9:22:10 | M2 | Conditions.cs:23:5:31:5 | {...} | -| Conditions.cs:33:9:33:10 | M3 | Conditions.cs:34:5:44:5 | {...} | -| Conditions.cs:46:9:46:10 | M4 | Conditions.cs:47:5:55:5 | {...} | -| Conditions.cs:57:9:57:10 | M5 | Conditions.cs:58:5:68:5 | {...} | -| Conditions.cs:70:9:70:10 | M6 | Conditions.cs:71:5:84:5 | {...} | -| Conditions.cs:86:9:86:10 | M7 | Conditions.cs:87:5:100:5 | {...} | -| Conditions.cs:102:12:102:13 | M8 | Conditions.cs:103:5:111:5 | {...} | -| Conditions.cs:113:10:113:11 | M9 | Conditions.cs:114:5:124:5 | {...} | +| ConditionalAccess.cs:3:12:3:13 | M1 | ConditionalAccess.cs:3:20:3:20 | i | +| ConditionalAccess.cs:5:10:5:11 | M2 | ConditionalAccess.cs:5:20:5:20 | s | +| ConditionalAccess.cs:7:10:7:11 | M3 | ConditionalAccess.cs:7:20:7:21 | s1 | +| ConditionalAccess.cs:9:9:9:10 | M4 | ConditionalAccess.cs:9:19:9:19 | s | +| ConditionalAccess.cs:11:9:11:10 | M5 | ConditionalAccess.cs:11:19:11:19 | s | +| ConditionalAccess.cs:19:12:19:13 | M6 | ConditionalAccess.cs:19:22:19:23 | s1 | +| ConditionalAccess.cs:21:10:21:11 | M7 | ConditionalAccess.cs:21:17:21:17 | i | +| ConditionalAccess.cs:30:10:30:12 | Out | ConditionalAccess.cs:30:22:30:22 | i | +| ConditionalAccess.cs:32:10:32:11 | M8 | ConditionalAccess.cs:32:18:32:18 | b | +| ConditionalAccess.cs:42:9:42:11 | get_Item | ConditionalAccess.cs:40:21:40:25 | index | +| ConditionalAccess.cs:43:9:43:11 | set_Item | ConditionalAccess.cs:40:21:40:25 | index | +| ConditionalAccess.cs:46:10:46:11 | M9 | ConditionalAccess.cs:46:31:46:32 | ca | +| ConditionalAccess.cs:60:26:60:38 | CommaJoinWith | ConditionalAccess.cs:60:52:60:53 | s1 | +| Conditions.cs:3:10:3:19 | IncrOrDecr | Conditions.cs:3:26:3:28 | inc | +| Conditions.cs:11:9:11:10 | M1 | Conditions.cs:11:17:11:17 | b | +| Conditions.cs:22:9:22:10 | M2 | Conditions.cs:22:17:22:18 | b1 | +| Conditions.cs:33:9:33:10 | M3 | Conditions.cs:33:17:33:18 | b1 | +| Conditions.cs:46:9:46:10 | M4 | Conditions.cs:46:17:46:17 | b | +| Conditions.cs:57:9:57:10 | M5 | Conditions.cs:57:17:57:17 | b | +| Conditions.cs:70:9:70:10 | M6 | Conditions.cs:70:21:70:22 | ss | +| Conditions.cs:86:9:86:10 | M7 | Conditions.cs:86:21:86:22 | ss | +| Conditions.cs:102:12:102:13 | M8 | Conditions.cs:102:20:102:20 | b | +| Conditions.cs:113:10:113:11 | M9 | Conditions.cs:113:22:113:25 | args | | Conditions.cs:129:10:129:12 | M10 | Conditions.cs:130:5:141:5 | {...} | -| Conditions.cs:143:10:143:12 | M11 | Conditions.cs:144:5:150:5 | {...} | -| DefaultParam.cs:3:12:3:13 | M1 | DefaultParam.cs:4:5:6:5 | {...} | +| Conditions.cs:143:10:143:12 | M11 | Conditions.cs:143:19:143:19 | b | +| DefaultParam.cs:3:12:3:13 | M1 | DefaultParam.cs:3:20:3:20 | b | | ExitMethods.cs:8:10:8:11 | M1 | ExitMethods.cs:9:5:12:5 | {...} | | ExitMethods.cs:14:10:14:11 | M2 | ExitMethods.cs:15:5:18:5 | {...} | | ExitMethods.cs:20:10:20:11 | M3 | ExitMethods.cs:21:5:24:5 | {...} | @@ -68,21 +74,22 @@ | ExitMethods.cs:38:10:38:11 | M6 | ExitMethods.cs:39:5:52:5 | {...} | | ExitMethods.cs:54:10:54:11 | M7 | ExitMethods.cs:55:5:58:5 | {...} | | ExitMethods.cs:60:10:60:11 | M8 | ExitMethods.cs:61:5:64:5 | {...} | -| ExitMethods.cs:66:17:66:26 | ErrorMaybe | ExitMethods.cs:67:5:70:5 | {...} | -| ExitMethods.cs:72:17:72:27 | ErrorAlways | ExitMethods.cs:73:5:78:5 | {...} | +| ExitMethods.cs:66:17:66:26 | ErrorMaybe | ExitMethods.cs:66:33:66:33 | b | +| ExitMethods.cs:72:17:72:27 | ErrorAlways | ExitMethods.cs:72:34:72:34 | b | | ExitMethods.cs:80:17:80:28 | ErrorAlways2 | ExitMethods.cs:81:5:83:5 | {...} | | ExitMethods.cs:87:10:87:13 | Exit | ExitMethods.cs:88:5:90:5 | {...} | | ExitMethods.cs:92:10:92:18 | ExitInTry | ExitMethods.cs:93:5:103:5 | {...} | | ExitMethods.cs:105:10:105:24 | ApplicationExit | ExitMethods.cs:106:5:108:5 | {...} | -| ExitMethods.cs:110:13:110:21 | ThrowExpr | ExitMethods.cs:111:5:113:5 | {...} | -| ExitMethods.cs:115:16:115:34 | ExtensionMethodCall | ExitMethods.cs:116:5:118:5 | {...} | +| ExitMethods.cs:110:13:110:21 | ThrowExpr | ExitMethods.cs:110:31:110:35 | input | +| ExitMethods.cs:115:16:115:34 | ExtensionMethodCall | ExitMethods.cs:115:43:115:43 | s | | ExitMethods.cs:120:17:120:32 | FailingAssertion | ExitMethods.cs:121:5:124:5 | {...} | | ExitMethods.cs:126:17:126:33 | FailingAssertion2 | ExitMethods.cs:127:5:130:5 | {...} | +| ExitMethods.cs:132:10:132:20 | AssertFalse | ExitMethods.cs:132:27:132:27 | b | | ExitMethods.cs:134:17:134:33 | FailingAssertion3 | ExitMethods.cs:135:5:138:5 | {...} | -| ExitMethods.cs:140:17:140:42 | ExceptionDispatchInfoThrow | ExitMethods.cs:141:5:147:5 | {...} | -| Extensions.cs:5:23:5:29 | ToInt32 | Extensions.cs:6:5:8:5 | {...} | -| Extensions.cs:10:24:10:29 | ToBool | Extensions.cs:11:5:13:5 | {...} | -| Extensions.cs:20:17:20:20 | Main | Extensions.cs:21:5:26:5 | {...} | +| ExitMethods.cs:140:17:140:42 | ExceptionDispatchInfoThrow | ExitMethods.cs:140:49:140:49 | b | +| Extensions.cs:5:23:5:29 | ToInt32 | Extensions.cs:5:43:5:43 | s | +| Extensions.cs:10:24:10:29 | ToBool | Extensions.cs:10:43:10:43 | s | +| Extensions.cs:20:17:20:20 | Main | Extensions.cs:20:29:20:29 | s | | Finally.cs:7:10:7:11 | M1 | Finally.cs:8:5:17:5 | {...} | | Finally.cs:19:10:19:11 | M2 | Finally.cs:20:5:52:5 | {...} | | Finally.cs:54:10:54:11 | M3 | Finally.cs:55:5:72:5 | {...} | @@ -90,113 +97,123 @@ | Finally.cs:103:10:103:11 | M5 | Finally.cs:104:5:119:5 | {...} | | Finally.cs:121:10:121:11 | M6 | Finally.cs:122:5:131:5 | {...} | | Finally.cs:133:10:133:11 | M7 | Finally.cs:134:5:145:5 | {...} | -| Finally.cs:147:10:147:11 | M8 | Finally.cs:148:5:170:5 | {...} | -| Finally.cs:176:10:176:11 | M9 | Finally.cs:177:5:193:5 | {...} | -| Finally.cs:195:10:195:12 | M10 | Finally.cs:196:5:214:5 | {...} | +| Finally.cs:147:10:147:11 | M8 | Finally.cs:147:22:147:25 | args | +| Finally.cs:176:10:176:11 | M9 | Finally.cs:176:18:176:19 | b1 | +| Finally.cs:195:10:195:12 | M10 | Finally.cs:195:19:195:20 | b1 | | Finally.cs:216:10:216:12 | M11 | Finally.cs:217:5:231:5 | {...} | -| Finally.cs:233:10:233:12 | M12 | Finally.cs:234:5:261:5 | {...} | -| Finally.cs:263:10:263:12 | M13 | Finally.cs:264:5:274:5 | {...} | -| Foreach.cs:6:10:6:11 | M1 | Foreach.cs:7:5:10:5 | {...} | -| Foreach.cs:12:10:12:11 | M2 | Foreach.cs:13:5:16:5 | {...} | -| Foreach.cs:18:10:18:11 | M3 | Foreach.cs:19:5:22:5 | {...} | -| Foreach.cs:24:10:24:11 | M4 | Foreach.cs:25:5:28:5 | {...} | -| Foreach.cs:30:10:30:11 | M5 | Foreach.cs:31:5:34:5 | {...} | -| Foreach.cs:36:10:36:11 | M6 | Foreach.cs:37:5:40:5 | {...} | +| Finally.cs:233:10:233:12 | M12 | Finally.cs:233:19:233:20 | b1 | +| Finally.cs:263:10:263:12 | M13 | Finally.cs:263:18:263:18 | i | +| Foreach.cs:6:10:6:11 | M1 | Foreach.cs:6:22:6:25 | args | +| Foreach.cs:12:10:12:11 | M2 | Foreach.cs:12:22:12:25 | args | +| Foreach.cs:18:10:18:11 | M3 | Foreach.cs:18:33:18:33 | e | +| Foreach.cs:24:10:24:11 | M4 | Foreach.cs:24:40:24:43 | args | +| Foreach.cs:30:10:30:11 | M5 | Foreach.cs:30:40:30:43 | args | +| Foreach.cs:36:10:36:11 | M6 | Foreach.cs:36:40:36:43 | args | +| Initializers.cs:10:5:10:16 | Initializers | Initializers.cs:10:25:10:25 | s | | Initializers.cs:12:10:12:10 | M | Initializers.cs:13:5:16:5 | {...} | -| Initializers.cs:51:10:51:13 | Test | Initializers.cs:52:5:66:5 | {...} | -| LoopUnrolling.cs:7:10:7:11 | M1 | LoopUnrolling.cs:8:5:13:5 | {...} | +| Initializers.cs:33:9:33:11 | Sub | Initializers.cs:33:17:33:17 | i | +| Initializers.cs:35:9:35:11 | Sub | Initializers.cs:35:17:35:17 | i | +| Initializers.cs:51:10:51:13 | Test | Initializers.cs:51:19:51:19 | i | +| LoopUnrolling.cs:7:10:7:11 | M1 | LoopUnrolling.cs:7:22:7:25 | args | | LoopUnrolling.cs:15:10:15:11 | M2 | LoopUnrolling.cs:16:5:20:5 | {...} | -| LoopUnrolling.cs:22:10:22:11 | M3 | LoopUnrolling.cs:23:5:27:5 | {...} | +| LoopUnrolling.cs:22:10:22:11 | M3 | LoopUnrolling.cs:22:20:22:23 | args | | LoopUnrolling.cs:29:10:29:11 | M4 | LoopUnrolling.cs:30:5:34:5 | {...} | | LoopUnrolling.cs:36:10:36:11 | M5 | LoopUnrolling.cs:37:5:43:5 | {...} | | LoopUnrolling.cs:45:10:45:11 | M6 | LoopUnrolling.cs:46:5:53:5 | {...} | -| LoopUnrolling.cs:55:10:55:11 | M7 | LoopUnrolling.cs:56:5:65:5 | {...} | -| LoopUnrolling.cs:67:10:67:11 | M8 | LoopUnrolling.cs:68:5:74:5 | {...} | +| LoopUnrolling.cs:55:10:55:11 | M7 | LoopUnrolling.cs:55:18:55:18 | b | +| LoopUnrolling.cs:67:10:67:11 | M8 | LoopUnrolling.cs:67:26:67:29 | args | | LoopUnrolling.cs:76:10:76:11 | M9 | LoopUnrolling.cs:77:5:83:5 | {...} | | LoopUnrolling.cs:85:10:85:12 | M10 | LoopUnrolling.cs:86:5:92:5 | {...} | | LoopUnrolling.cs:94:10:94:12 | M11 | LoopUnrolling.cs:95:5:101:5 | {...} | | MultiImplementationA.cs:6:22:6:31 | get_P1 | MultiImplementationB.cs:3:22:3:22 | 0 | | MultiImplementationA.cs:7:21:7:23 | get_P2 | MultiImplementationA.cs:7:25:7:39 | {...} | | MultiImplementationA.cs:7:21:7:23 | get_P2 | MultiImplementationB.cs:4:25:4:37 | {...} | -| MultiImplementationA.cs:7:41:7:43 | set_P2 | MultiImplementationA.cs:7:45:7:59 | {...} | -| MultiImplementationA.cs:7:41:7:43 | set_P2 | MultiImplementationB.cs:4:43:4:45 | {...} | +| MultiImplementationA.cs:7:41:7:43 | set_P2 | MultiImplementationA.cs:7:41:7:43 | value | | MultiImplementationA.cs:8:16:8:16 | M | MultiImplementationB.cs:5:23:5:23 | 2 | -| MultiImplementationA.cs:14:31:14:31 | get_Item | MultiImplementationA.cs:14:31:14:31 | access to parameter i | -| MultiImplementationA.cs:15:36:15:38 | get_Item | MultiImplementationA.cs:15:40:15:52 | {...} | -| MultiImplementationA.cs:15:36:15:38 | get_Item | MultiImplementationB.cs:13:40:13:54 | {...} | -| MultiImplementationA.cs:15:54:15:56 | set_Item | MultiImplementationA.cs:15:58:15:60 | {...} | -| MultiImplementationA.cs:15:54:15:56 | set_Item | MultiImplementationB.cs:13:60:13:62 | {...} | -| MultiImplementationA.cs:16:17:16:18 | M1 | MultiImplementationA.cs:17:5:19:5 | {...} | -| MultiImplementationA.cs:16:17:16:18 | M1 | MultiImplementationB.cs:15:5:17:5 | {...} | +| MultiImplementationA.cs:14:31:14:31 | get_Item | MultiImplementationA.cs:14:25:14:25 | i | +| MultiImplementationA.cs:15:36:15:38 | get_Item | MultiImplementationA.cs:15:31:15:31 | s | +| MultiImplementationA.cs:15:54:15:56 | set_Item | MultiImplementationA.cs:15:31:15:31 | s | +| MultiImplementationA.cs:16:17:16:18 | M1 | MultiImplementationA.cs:16:24:16:24 | i | | MultiImplementationA.cs:18:9:18:22 | M2 | MultiImplementationA.cs:18:21:18:21 | 0 | +| MultiImplementationA.cs:20:12:20:13 | C2 | MultiImplementationA.cs:20:19:20:19 | i | | MultiImplementationA.cs:22:6:22:7 | ~C2 | MultiImplementationA.cs:22:11:22:13 | {...} | | MultiImplementationA.cs:22:6:22:7 | ~C2 | MultiImplementationB.cs:20:11:20:25 | {...} | -| MultiImplementationA.cs:23:28:23:35 | implicit conversion | MultiImplementationA.cs:23:50:23:53 | null | +| MultiImplementationA.cs:23:28:23:35 | implicit conversion | MultiImplementationA.cs:23:44:23:44 | i | | MultiImplementationA.cs:36:9:36:10 | M1 | MultiImplementationA.cs:36:14:36:28 | {...} | | MultiImplementationA.cs:36:9:36:10 | M1 | MultiImplementationB.cs:32:17:32:17 | 0 | | MultiImplementationA.cs:37:9:37:10 | M2 | MultiImplementationA.cs:37:14:37:28 | {...} | -| NullCoalescing.cs:3:9:3:10 | M1 | NullCoalescing.cs:3:23:3:28 | ... ?? ... | -| NullCoalescing.cs:5:9:5:10 | M2 | NullCoalescing.cs:5:24:5:43 | ... ? ... : ... | -| NullCoalescing.cs:7:12:7:13 | M3 | NullCoalescing.cs:7:40:7:53 | ... ?? ... | -| NullCoalescing.cs:9:12:9:13 | M4 | NullCoalescing.cs:9:36:9:58 | ... ?? ... | -| NullCoalescing.cs:11:9:11:10 | M5 | NullCoalescing.cs:11:43:11:68 | ... ? ... : ... | -| NullCoalescing.cs:13:10:13:11 | M6 | NullCoalescing.cs:14:5:18:5 | {...} | +| NullCoalescing.cs:3:9:3:10 | M1 | NullCoalescing.cs:3:17:3:17 | i | +| NullCoalescing.cs:5:9:5:10 | M2 | NullCoalescing.cs:5:18:5:18 | b | +| NullCoalescing.cs:7:12:7:13 | M3 | NullCoalescing.cs:7:22:7:23 | s1 | +| NullCoalescing.cs:9:12:9:13 | M4 | NullCoalescing.cs:9:20:9:20 | b | +| NullCoalescing.cs:11:9:11:10 | M5 | NullCoalescing.cs:11:18:11:19 | b1 | +| NullCoalescing.cs:13:10:13:11 | M6 | NullCoalescing.cs:13:17:13:17 | i | +| PartialImplementationA.cs:3:12:3:18 | Partial | PartialImplementationA.cs:3:24:3:24 | i | | Patterns.cs:5:10:5:11 | M1 | Patterns.cs:6:5:43:5 | {...} | -| Patterns.cs:50:24:50:25 | M3 | Patterns.cs:51:9:51:39 | ... ? ... : ... | -| Patterns.cs:56:26:56:27 | M5 | Patterns.cs:57:5:63:5 | {...} | +| Patterns.cs:47:24:47:25 | M2 | Patterns.cs:47:32:47:32 | c | +| Patterns.cs:50:24:50:25 | M3 | Patterns.cs:50:34:50:34 | c | +| Patterns.cs:53:24:53:25 | M4 | Patterns.cs:53:34:53:34 | c | +| Patterns.cs:56:26:56:27 | M5 | Patterns.cs:56:33:56:33 | i | | Patterns.cs:65:26:65:27 | M6 | Patterns.cs:66:5:72:5 | {...} | -| Patterns.cs:74:26:74:27 | M7 | Patterns.cs:75:5:83:5 | {...} | -| Patterns.cs:85:26:85:27 | M8 | Patterns.cs:85:39:85:69 | ... ? ... : ... | -| Patterns.cs:87:26:87:27 | M9 | Patterns.cs:87:39:87:70 | ... ? ... : ... | +| Patterns.cs:74:26:74:27 | M7 | Patterns.cs:74:33:74:33 | i | +| Patterns.cs:85:26:85:27 | M8 | Patterns.cs:85:33:85:33 | i | +| Patterns.cs:87:26:87:27 | M9 | Patterns.cs:87:33:87:33 | i | | Patterns.cs:93:17:93:19 | M10 | Patterns.cs:94:5:99:5 | {...} | -| PostDominance.cs:5:10:5:11 | M1 | PostDominance.cs:6:5:8:5 | {...} | -| PostDominance.cs:10:10:10:11 | M2 | PostDominance.cs:11:5:15:5 | {...} | -| PostDominance.cs:17:10:17:11 | M3 | PostDominance.cs:18:5:22:5 | {...} | +| PostDominance.cs:5:10:5:11 | M1 | PostDominance.cs:5:20:5:20 | s | +| PostDominance.cs:10:10:10:11 | M2 | PostDominance.cs:10:20:10:20 | s | +| PostDominance.cs:17:10:17:11 | M3 | PostDominance.cs:17:20:17:20 | s | | Qualifiers.cs:7:16:7:21 | Method | Qualifiers.cs:7:28:7:31 | null | | Qualifiers.cs:8:23:8:34 | StaticMethod | Qualifiers.cs:8:41:8:44 | null | | Qualifiers.cs:10:10:10:10 | M | Qualifiers.cs:11:5:31:5 | {...} | -| Switch.cs:5:10:5:11 | M1 | Switch.cs:6:5:8:5 | {...} | -| Switch.cs:10:10:10:11 | M2 | Switch.cs:11:5:33:5 | {...} | +| Switch.cs:5:10:5:11 | M1 | Switch.cs:5:20:5:20 | o | +| Switch.cs:10:10:10:11 | M2 | Switch.cs:10:20:10:20 | o | | Switch.cs:35:10:35:11 | M3 | Switch.cs:36:5:42:5 | {...} | -| Switch.cs:44:10:44:11 | M4 | Switch.cs:45:5:53:5 | {...} | +| Switch.cs:44:10:44:11 | M4 | Switch.cs:44:20:44:20 | o | | Switch.cs:55:10:55:11 | M5 | Switch.cs:56:5:64:5 | {...} | -| Switch.cs:66:10:66:11 | M6 | Switch.cs:67:5:75:5 | {...} | -| Switch.cs:77:10:77:11 | M7 | Switch.cs:78:5:89:5 | {...} | -| Switch.cs:91:10:91:11 | M8 | Switch.cs:92:5:99:5 | {...} | -| Switch.cs:101:9:101:10 | M9 | Switch.cs:102:5:109:5 | {...} | -| Switch.cs:113:9:113:11 | M10 | Switch.cs:114:5:121:5 | {...} | -| Switch.cs:123:10:123:12 | M11 | Switch.cs:124:5:127:5 | {...} | -| Switch.cs:129:12:129:14 | M12 | Switch.cs:130:5:132:5 | {...} | -| Switch.cs:134:9:134:11 | M13 | Switch.cs:135:5:142:5 | {...} | -| Switch.cs:144:9:144:11 | M14 | Switch.cs:145:5:152:5 | {...} | -| Switch.cs:154:10:154:12 | M15 | Switch.cs:155:5:161:5 | {...} | -| Switch.cs:163:10:163:12 | M16 | Switch.cs:164:5:178:5 | {...} | -| TypeAccesses.cs:3:10:3:10 | M | TypeAccesses.cs:4:5:9:5 | {...} | -| VarDecls.cs:5:18:5:19 | M1 | VarDecls.cs:6:5:11:5 | {...} | -| VarDecls.cs:13:12:13:13 | M2 | VarDecls.cs:14:5:17:5 | {...} | -| VarDecls.cs:19:7:19:8 | M3 | VarDecls.cs:20:5:26:5 | {...} | +| Switch.cs:66:10:66:11 | M6 | Switch.cs:66:20:66:20 | s | +| Switch.cs:77:10:77:11 | M7 | Switch.cs:77:17:77:17 | i | +| Switch.cs:91:10:91:11 | M8 | Switch.cs:91:20:91:20 | o | +| Switch.cs:101:9:101:10 | M9 | Switch.cs:101:19:101:19 | s | +| Switch.cs:113:9:113:11 | M10 | Switch.cs:113:20:113:20 | s | +| Switch.cs:123:10:123:12 | M11 | Switch.cs:123:21:123:21 | o | +| Switch.cs:129:12:129:14 | M12 | Switch.cs:129:23:129:23 | o | +| Switch.cs:134:9:134:11 | M13 | Switch.cs:134:17:134:17 | i | +| Switch.cs:144:9:144:11 | M14 | Switch.cs:144:17:144:17 | i | +| Switch.cs:154:10:154:12 | M15 | Switch.cs:154:19:154:19 | b | +| Switch.cs:163:10:163:12 | M16 | Switch.cs:163:18:163:18 | i | +| TypeAccesses.cs:3:10:3:10 | M | TypeAccesses.cs:3:19:3:19 | o | +| VarDecls.cs:5:18:5:19 | M1 | VarDecls.cs:5:30:5:36 | strings | +| VarDecls.cs:13:12:13:13 | M2 | VarDecls.cs:13:22:13:22 | s | +| VarDecls.cs:19:7:19:8 | M3 | VarDecls.cs:19:15:19:15 | b | | VarDecls.cs:28:41:28:47 | Dispose | VarDecls.cs:28:51:28:53 | {...} | -| cflow.cs:5:17:5:20 | Main | cflow.cs:6:5:35:5 | {...} | -| cflow.cs:37:17:37:22 | Switch | cflow.cs:38:5:68:5 | {...} | -| cflow.cs:70:18:70:18 | M | cflow.cs:71:5:82:5 | {...} | -| cflow.cs:84:18:84:19 | M2 | cflow.cs:85:5:88:5 | {...} | -| cflow.cs:90:18:90:19 | M3 | cflow.cs:91:5:104:5 | {...} | -| cflow.cs:106:18:106:19 | M4 | cflow.cs:107:5:117:5 | {...} | -| cflow.cs:119:20:119:21 | M5 | cflow.cs:120:5:124:5 | {...} | +| cflow.cs:5:17:5:20 | Main | cflow.cs:5:31:5:34 | args | +| cflow.cs:37:17:37:22 | Switch | cflow.cs:37:28:37:28 | a | +| cflow.cs:70:18:70:18 | M | cflow.cs:70:27:70:27 | s | +| cflow.cs:84:18:84:19 | M2 | cflow.cs:84:28:84:28 | s | +| cflow.cs:90:18:90:19 | M3 | cflow.cs:90:28:90:28 | s | +| cflow.cs:106:18:106:19 | M4 | cflow.cs:106:28:106:28 | s | +| cflow.cs:119:20:119:21 | M5 | cflow.cs:119:30:119:30 | s | | cflow.cs:127:19:127:21 | get_Prop | cflow.cs:127:23:127:60 | {...} | -| cflow.cs:127:62:127:64 | set_Prop | cflow.cs:127:66:127:83 | {...} | -| cflow.cs:138:40:138:40 | + | cflow.cs:139:5:142:5 | {...} | -| cflow.cs:144:33:144:35 | get_Item | cflow.cs:144:37:144:54 | {...} | -| cflow.cs:144:56:144:58 | set_Item | cflow.cs:144:60:144:62 | {...} | +| cflow.cs:127:62:127:64 | set_Prop | cflow.cs:127:62:127:64 | value | +| cflow.cs:129:5:129:15 | ControlFlow | cflow.cs:129:24:129:24 | s | +| cflow.cs:134:5:134:15 | ControlFlow | cflow.cs:134:21:134:21 | i | +| cflow.cs:138:40:138:40 | + | cflow.cs:138:54:138:54 | x | +| cflow.cs:144:33:144:35 | get_Item | cflow.cs:144:28:144:28 | i | +| cflow.cs:144:56:144:58 | set_Item | cflow.cs:144:28:144:28 | i | | cflow.cs:146:10:146:12 | For | cflow.cs:147:5:177:5 | {...} | | cflow.cs:179:10:179:16 | Lambdas | cflow.cs:180:5:183:5 | {...} | -| cflow.cs:182:28:182:61 | delegate(...) { ... } | cflow.cs:182:45:182:61 | {...} | +| cflow.cs:181:28:181:37 | (...) => ... | cflow.cs:181:28:181:28 | x | +| cflow.cs:182:28:182:61 | delegate(...) { ... } | cflow.cs:182:42:182:42 | x | | cflow.cs:185:10:185:18 | LogicalOr | cflow.cs:186:5:191:5 | {...} | | cflow.cs:193:10:193:17 | Booleans | cflow.cs:194:5:206:5 | {...} | | cflow.cs:208:10:208:11 | Do | cflow.cs:209:5:222:5 | {...} | | cflow.cs:224:10:224:16 | Foreach | cflow.cs:225:5:238:5 | {...} | | cflow.cs:240:10:240:13 | Goto | cflow.cs:241:5:259:5 | {...} | | cflow.cs:261:49:261:53 | Yield | cflow.cs:262:5:277:5 | {...} | -| cflow.cs:298:10:298:10 | M | cflow.cs:299:5:301:5 | {...} | -| cflow.cs:306:60:310:5 | (...) => ... | cflow.cs:307:5:310:5 | {...} | +| cflow.cs:284:5:284:18 | ControlFlowSub | cflow.cs:284:27:284:27 | s | +| cflow.cs:286:5:286:18 | ControlFlowSub | cflow.cs:286:24:286:24 | i | +| cflow.cs:291:12:291:12 | M | cflow.cs:291:32:291:32 | f | +| cflow.cs:296:5:296:25 | NegationInConstructor | cflow.cs:296:32:296:32 | b | +| cflow.cs:298:10:298:10 | M | cflow.cs:298:16:298:16 | i | +| cflow.cs:306:60:310:5 | (...) => ... | cflow.cs:306:61:306:61 | o | | cflow.cs:306:60:310:5 | get__getter | cflow.cs:306:60:310:5 | (...) => ... | diff --git a/csharp/ql/test/library-tests/csharp8/switchexprcontrolflow.expected b/csharp/ql/test/library-tests/csharp8/switchexprcontrolflow.expected index 9d35bd27b38e..898a1ff46912 100644 --- a/csharp/ql/test/library-tests/csharp8/switchexprcontrolflow.expected +++ b/csharp/ql/test/library-tests/csharp8/switchexprcontrolflow.expected @@ -1,5 +1,6 @@ -| patterns.cs:98:10:98:20 | Entry | patterns.cs:99:5:121:5 | {...} | semmle.label | successor | +| patterns.cs:98:10:98:20 | Entry | patterns.cs:98:26:98:26 | x | semmle.label | successor | | patterns.cs:98:10:98:20 | Normal Exit | patterns.cs:98:10:98:20 | Exit | semmle.label | successor | +| patterns.cs:98:26:98:26 | x | patterns.cs:99:5:121:5 | {...} | semmle.label | successor | | patterns.cs:99:5:121:5 | After {...} | patterns.cs:98:10:98:20 | Normal Exit | semmle.label | successor | | patterns.cs:99:5:121:5 | {...} | patterns.cs:100:9:103:10 | ... ...; | semmle.label | successor | | patterns.cs:100:9:103:10 | ... ...; | patterns.cs:100:13:103:9 | Before String size = ... | semmle.label | successor | @@ -159,9 +160,10 @@ | patterns.cs:119:33:119:38 | Before (..., ...) | patterns.cs:119:34:119:34 | 0 | semmle.label | successor | | patterns.cs:119:34:119:34 | 0 | patterns.cs:119:37:119:37 | 0 | semmle.label | successor | | patterns.cs:119:37:119:37 | 0 | patterns.cs:119:33:119:38 | (..., ...) | semmle.label | successor | -| patterns.cs:123:10:123:21 | Entry | patterns.cs:124:5:149:5 | {...} | semmle.label | successor | +| patterns.cs:123:10:123:21 | Entry | patterns.cs:123:30:123:30 | o | semmle.label | successor | | patterns.cs:123:10:123:21 | Exceptional Exit | patterns.cs:123:10:123:21 | Exit | semmle.label | successor | | patterns.cs:123:10:123:21 | Normal Exit | patterns.cs:123:10:123:21 | Exit | semmle.label | successor | +| patterns.cs:123:30:123:30 | o | patterns.cs:124:5:149:5 | {...} | semmle.label | successor | | patterns.cs:124:5:149:5 | After {...} | patterns.cs:123:10:123:21 | Normal Exit | semmle.label | successor | | patterns.cs:124:5:149:5 | {...} | patterns.cs:125:9:125:39 | ... ...; | semmle.label | successor | | patterns.cs:125:9:125:39 | ... ...; | patterns.cs:125:13:125:38 | Before MyStruct s = ... | semmle.label | successor | diff --git a/csharp/ql/test/library-tests/dataflow/defuse/defUseEquivalence.ql b/csharp/ql/test/library-tests/dataflow/defuse/defUseEquivalence.ql index abac840ab102..c69890be8c35 100644 --- a/csharp/ql/test/library-tests/dataflow/defuse/defUseEquivalence.ql +++ b/csharp/ql/test/library-tests/dataflow/defuse/defUseEquivalence.ql @@ -5,7 +5,12 @@ private import semmle.code.csharp.dataflow.internal.BaseSSA predicate defReaches( AssignableDefinition def, BaseSsa::SimpleLocalScopeVariable v, ControlFlowNode cfn ) { - def.getTarget() = v and cfn = def.getExpr().getControlFlowNode().getASuccessor() + def.getTarget() = v and + cfn = + [ + def.getExpr().getControlFlowNode(), + def.(AssignableDefinitions::ImplicitParameterDefinition).getParameter().getControlFlowNode() + ].getASuccessor() or exists(ControlFlowNode mid | defReaches(def, v, mid) | not mid = diff --git a/csharp/ql/test/library-tests/obinit/ObInit.expected b/csharp/ql/test/library-tests/obinit/ObInit.expected index 2b89fa6670e5..d55e1add0527 100644 --- a/csharp/ql/test/library-tests/obinit/ObInit.expected +++ b/csharp/ql/test/library-tests/obinit/ObInit.expected @@ -34,23 +34,26 @@ cfg | obinit.cs:7:16:7:16 | A | obinit.cs:7:16:7:16 | call to method | obinit.cs:7:16:7:16 | After call to method | successor | 3 | | obinit.cs:7:16:7:16 | A | obinit.cs:7:16:7:16 | this access | obinit.cs:7:16:7:16 | call to method | successor | 2 | | obinit.cs:7:16:7:16 | A | obinit.cs:7:20:7:22 | {...} | obinit.cs:7:16:7:16 | Normal Exit | successor | 8 | -| obinit.cs:9:16:9:16 | A | obinit.cs:9:16:9:16 | After call to constructor Object | obinit.cs:9:25:9:27 | {...} | successor | 7 | -| obinit.cs:9:16:9:16 | A | obinit.cs:9:16:9:16 | After call to method | obinit.cs:9:16:9:16 | Before call to constructor Object | successor | 4 | -| obinit.cs:9:16:9:16 | A | obinit.cs:9:16:9:16 | Before call to constructor Object | obinit.cs:9:16:9:16 | call to constructor Object | successor | 5 | -| obinit.cs:9:16:9:16 | A | obinit.cs:9:16:9:16 | Before call to method | obinit.cs:9:16:9:16 | this access | successor | 1 | -| obinit.cs:9:16:9:16 | A | obinit.cs:9:16:9:16 | Entry | obinit.cs:9:16:9:16 | Before call to method | successor | 0 | -| obinit.cs:9:16:9:16 | A | obinit.cs:9:16:9:16 | Normal Exit | obinit.cs:9:16:9:16 | Exit | successor | 9 | -| obinit.cs:9:16:9:16 | A | obinit.cs:9:16:9:16 | call to constructor Object | obinit.cs:9:16:9:16 | After call to constructor Object | successor | 6 | -| obinit.cs:9:16:9:16 | A | obinit.cs:9:16:9:16 | call to method | obinit.cs:9:16:9:16 | After call to method | successor | 3 | -| obinit.cs:9:16:9:16 | A | obinit.cs:9:16:9:16 | this access | obinit.cs:9:16:9:16 | call to method | successor | 2 | -| obinit.cs:9:16:9:16 | A | obinit.cs:9:25:9:27 | {...} | obinit.cs:9:16:9:16 | Normal Exit | successor | 8 | -| obinit.cs:11:16:11:16 | A | obinit.cs:11:16:11:16 | Entry | obinit.cs:11:34:11:37 | Before call to constructor A | successor | 0 | -| obinit.cs:11:16:11:16 | A | obinit.cs:11:16:11:16 | Normal Exit | obinit.cs:11:16:11:16 | Exit | successor | 6 | -| obinit.cs:11:16:11:16 | A | obinit.cs:11:34:11:37 | After call to constructor A | obinit.cs:11:42:11:44 | {...} | successor | 4 | -| obinit.cs:11:16:11:16 | A | obinit.cs:11:34:11:37 | Before call to constructor A | obinit.cs:11:39:11:39 | access to parameter y | successor | 1 | -| obinit.cs:11:16:11:16 | A | obinit.cs:11:34:11:37 | call to constructor A | obinit.cs:11:34:11:37 | After call to constructor A | successor | 3 | -| obinit.cs:11:16:11:16 | A | obinit.cs:11:39:11:39 | access to parameter y | obinit.cs:11:34:11:37 | call to constructor A | successor | 2 | -| obinit.cs:11:16:11:16 | A | obinit.cs:11:42:11:44 | {...} | obinit.cs:11:16:11:16 | Normal Exit | successor | 5 | +| obinit.cs:9:16:9:16 | A | obinit.cs:9:16:9:16 | After call to constructor Object | obinit.cs:9:25:9:27 | {...} | successor | 8 | +| obinit.cs:9:16:9:16 | A | obinit.cs:9:16:9:16 | After call to method | obinit.cs:9:16:9:16 | Before call to constructor Object | successor | 5 | +| obinit.cs:9:16:9:16 | A | obinit.cs:9:16:9:16 | Before call to constructor Object | obinit.cs:9:16:9:16 | call to constructor Object | successor | 6 | +| obinit.cs:9:16:9:16 | A | obinit.cs:9:16:9:16 | Before call to method | obinit.cs:9:16:9:16 | this access | successor | 2 | +| obinit.cs:9:16:9:16 | A | obinit.cs:9:16:9:16 | Entry | obinit.cs:9:22:9:22 | y | successor | 0 | +| obinit.cs:9:16:9:16 | A | obinit.cs:9:16:9:16 | Normal Exit | obinit.cs:9:16:9:16 | Exit | successor | 10 | +| obinit.cs:9:16:9:16 | A | obinit.cs:9:16:9:16 | call to constructor Object | obinit.cs:9:16:9:16 | After call to constructor Object | successor | 7 | +| obinit.cs:9:16:9:16 | A | obinit.cs:9:16:9:16 | call to method | obinit.cs:9:16:9:16 | After call to method | successor | 4 | +| obinit.cs:9:16:9:16 | A | obinit.cs:9:16:9:16 | this access | obinit.cs:9:16:9:16 | call to method | successor | 3 | +| obinit.cs:9:16:9:16 | A | obinit.cs:9:22:9:22 | y | obinit.cs:9:16:9:16 | Before call to method | successor | 1 | +| obinit.cs:9:16:9:16 | A | obinit.cs:9:25:9:27 | {...} | obinit.cs:9:16:9:16 | Normal Exit | successor | 9 | +| obinit.cs:11:16:11:16 | A | obinit.cs:11:16:11:16 | Entry | obinit.cs:11:22:11:22 | y | successor | 0 | +| obinit.cs:11:16:11:16 | A | obinit.cs:11:16:11:16 | Normal Exit | obinit.cs:11:16:11:16 | Exit | successor | 8 | +| obinit.cs:11:16:11:16 | A | obinit.cs:11:22:11:22 | y | obinit.cs:11:29:11:29 | z | successor | 1 | +| obinit.cs:11:16:11:16 | A | obinit.cs:11:29:11:29 | z | obinit.cs:11:34:11:37 | Before call to constructor A | successor | 2 | +| obinit.cs:11:16:11:16 | A | obinit.cs:11:34:11:37 | After call to constructor A | obinit.cs:11:42:11:44 | {...} | successor | 6 | +| obinit.cs:11:16:11:16 | A | obinit.cs:11:34:11:37 | Before call to constructor A | obinit.cs:11:39:11:39 | access to parameter y | successor | 3 | +| obinit.cs:11:16:11:16 | A | obinit.cs:11:34:11:37 | call to constructor A | obinit.cs:11:34:11:37 | After call to constructor A | successor | 5 | +| obinit.cs:11:16:11:16 | A | obinit.cs:11:39:11:39 | access to parameter y | obinit.cs:11:34:11:37 | call to constructor A | successor | 4 | +| obinit.cs:11:16:11:16 | A | obinit.cs:11:42:11:44 | {...} | obinit.cs:11:16:11:16 | Normal Exit | successor | 7 | | obinit.cs:15:16:15:16 | B | obinit.cs:15:16:15:16 | After call to method | obinit.cs:15:22:15:25 | Before call to constructor A | successor | 4 | | obinit.cs:15:16:15:16 | B | obinit.cs:15:16:15:16 | Before call to method | obinit.cs:15:16:15:16 | this access | successor | 1 | | obinit.cs:15:16:15:16 | B | obinit.cs:15:16:15:16 | Entry | obinit.cs:15:16:15:16 | Before call to method | successor | 0 | diff --git a/shared/controlflow/codeql/controlflow/ControlFlowGraph.qll b/shared/controlflow/codeql/controlflow/ControlFlowGraph.qll index 4e8b37531296..e0fff1f616c2 100644 --- a/shared/controlflow/codeql/controlflow/ControlFlowGraph.qll +++ b/shared/controlflow/codeql/controlflow/ControlFlowGraph.qll @@ -50,6 +50,15 @@ signature module AstSig { /** Gets the body of callable `c`, if any. */ AstNode callableGetBody(Callable c); + /** A parameter of a callable. */ + class Parameter extends AstNode { + /** Gets the default value of this parameter, if any. */ + Expr getDefaultValue(); + } + + /** Gets the `index`th parameter of callable `c`. */ + Parameter callableGetParameter(Callable c, int index); + /** A statement. */ class Stmt extends AstNode; @@ -456,11 +465,11 @@ module Make0 Ast> { } /** - * An additional context needed to identify the body parts of a callable. + * An additional context needed to identify the parameters or body parts of a callable. * * When not used, instantiate with the `Void` type. */ - class CallableBodyPartContext { + class CallableContext { /** Gets a textual representation of this context. */ string toString(); } @@ -473,9 +482,13 @@ module Make0 Ast> { * of the body parts, in case a singleton `callableGetBody(c)` is inadequate * to describe the child nodes of `c`. */ - default AstNode callableGetBodyPart(Callable c, CallableBodyPartContext ctx, int index) { - none() - } + default AstNode callableGetBodyPart(Callable c, CallableContext ctx, int index) { none() } + + /** + * Gets the `index`th parameter of `c` in context `ctx`. The indices do not + * need to be consecutive nor start from a specific index. + */ + default Parameter callableGetParameter(Callable c, CallableContext ctx, int index) { none() } } /** @@ -484,6 +497,7 @@ module Make0 Ast> { */ module Make1 { private import codeql.util.DenseRank + private import codeql.util.Option /** * Holds if `n` is executed in post-order or in-order. This means that an @@ -592,9 +606,14 @@ module Make0 Ast> { or any(ForeachStmt foreachstmt).getCollection() = n and kind.isEmptiness() or - n instanceof CatchClause and kind.isMatching() - or - n instanceof Case and kind.isMatching() + kind.isMatching() and + ( + n instanceof CatchClause + or + n instanceof Case + or + exists(n.(Parameter).getDefaultValue()) + ) } /** @@ -692,7 +711,7 @@ module Make0 Ast> { private module BodyPartDenseRankInput implements DenseRankInputSig2 { class C1 = Callable; - class C2 = Input1::CallableBodyPartContext; + class C2 = Input1::CallableContext; class Ranked = AstNode; @@ -703,23 +722,56 @@ module Make0 Ast> { private predicate getRankedBodyPart = DenseRank2::denseRank/3; - private AstNode getBodyEntry(Callable c) { + private class CallableContextOption = Option::Option; + + private AstNode getBodyEntry(Callable c, CallableContextOption ctx) { result = callableGetBody(c) and - not exists(getRankedBodyPart(c, _, _)) + not exists(getRankedBodyPart(c, _, _)) and + ctx.isNone() or - result = getRankedBodyPart(c, _, 1) + result = getRankedBodyPart(c, ctx.asSome(), 1) } private AstNode getBodyExit(Callable c) { result = callableGetBody(c) and not exists(getRankedBodyPart(c, _, _)) or - exists(Input1::CallableBodyPartContext ctx, int last | + exists(Input1::CallableContext ctx, int last | result = getRankedBodyPart(c, ctx, last) and not exists(getRankedBodyPart(c, ctx, last + 1)) ) } + private module ParameterDenseRankInput implements DenseRankInputSig1 { + class C = Callable; + + class Ranked = Parameter; + + int getRank(C c, Ranked child) { + child = callableGetParameter(c, result) and + not exists(Input1::callableGetParameter(c, _, _)) + } + } + + private module ParameterCtxDenseRankInput implements DenseRankInputSig2 { + class C1 = Callable; + + class C2 = Input1::CallableContext; + + class Ranked = AstNode; + + int getRank(C1 c, C2 ctx, Ranked child) { + child = Input1::callableGetParameter(c, ctx, result) + } + } + + private Parameter getRankedParameter(Callable c, CallableContextOption ctx, int rnk) { + result = DenseRank1::denseRank(c, rnk) and + ctx.isNone() + or + result = DenseRank2::denseRank(c, ctx.asSome(), rnk) + } + cached private newtype TNode = TBeforeNode(AstNode n) { Input1::cfgCachedStageRef() and exists(getEnclosingCallable(n)) } or @@ -1320,15 +1372,45 @@ module Make0 Ast> { ) } + pragma[nomagic] + private AstNode getParameterOrBodyEntry(Callable c, CallableContextOption ctx, int i) { + result = getRankedParameter(c, ctx, i) + or + ( + not exists(getRankedParameter(c, _, _)) and + i = 1 + or + exists(getRankedParameter(c, ctx, i - 1)) and + not exists(getRankedParameter(c, ctx, i)) + ) and + result = getBodyEntry(c, ctx) + } + /** Holds if there is a local non-abrupt step from `n1` to `n2`. */ private predicate explicitStep(PreControlFlowNode n1, PreControlFlowNode n2) { Input2::step(n1, n2) or exists(Callable c | n1.(EntryNodeImpl).getEnclosingCallable() = c and - n2.isBefore(getBodyEntry(c)) + n2.isBefore(getParameterOrBodyEntry(c, _, 1)) + or + exists(CallableContextOption ctx, Parameter p, int i | p = getRankedParameter(c, ctx, i) | + exists(ConditionalSuccessor t | + n1.isAfterValue(p, t) and + t.getKind().isMatching() + | + t.getValue() = true and + n2.isBefore(getParameterOrBodyEntry(c, ctx, i + 1)) + or + t.getValue() = false and + n2.isBefore(p.getDefaultValue()) + ) + or + n1.isAfter(p.getDefaultValue()) and + n2.isBefore(getParameterOrBodyEntry(c, ctx, i + 1)) + ) or - exists(Input1::CallableBodyPartContext ctx, int i | + exists(Input1::CallableContext ctx, int i | n1.isAfter(getRankedBodyPart(c, ctx, i)) and n2.isBefore(getRankedBodyPart(c, ctx, i + 1)) ) @@ -2154,7 +2236,10 @@ module Make0 Ast> { any(MatchingSuccessor m | m.getValue() = true)) ) and // allow for functions with multiple bodies - not (t instanceof DirectSuccessor and node instanceof ControlFlow::EntryNode) + not exists(Callable c | + successor.getAstNode() = getBodyEntry(c, _) and + strictcount(getBodyEntry(c, _)) > 1 + ) } /** @@ -2203,11 +2288,29 @@ module Make0 Ast> { /** * Holds if `c` does not include `callableGetBody` in a non-empty `callableGetBodyPart`. */ - query predicate bodyPartOverlap(Callable c) { + query predicate bodyPartNonOverlap(Callable c) { exists(callableGetBody(c)) and exists(Input1::callableGetBodyPart(c, _, _)) and not Input1::callableGetBodyPart(c, _, _) = callableGetBody(c) } + + /** + * Holds if `c` does not include `p` in `callableGetParameter` but does in + * `Input1::callableGetParameter`. + */ + query predicate parameterNonOverlap(Callable c, Parameter p) { + p = Input1::callableGetParameter(c, _, _) and + not p = callableGetParameter(c, _) + } + + /** + * Holds if a parameter `p` of a callable `c` does not have `c` as its + * enclosing callable. + */ + query predicate parameterEnclosingCallable(Parameter p, Callable c) { + p = callableGetParameter(c, _) and + not c = getEnclosingCallable(p) + } } } } From 6c42418fafedf05c82f874fb71dcca2234423de9 Mon Sep 17 00:00:00 2001 From: Tom Hvitved Date: Mon, 27 Apr 2026 12:12:59 +0200 Subject: [PATCH 111/260] C#: Use parameter CFG nodes in SSA --- .../ql/lib/semmle/code/csharp/Assignable.qll | 48 +++++++++-- .../semmle/code/csharp/controlflow/Guards.qll | 2 +- .../semmle/code/csharp/dataflow/Nullness.qll | 7 +- .../lib/semmle/code/csharp/dataflow/SSA.qll | 66 +++++---------- .../dataflow/internal/DataFlowPrivate.qll | 4 +- .../code/csharp/dataflow/internal/SsaImpl.qll | 81 +++++++++++++++++-- .../ql/test/library-tests/csharp7/DefUse.ql | 2 +- .../defuse/parameterUseEquivalence.ql | 3 +- .../dataflow/local/DataFlow.expected | 1 + .../dataflow/local/DataFlowStep.expected | 3 + .../dataflow/local/TaintTracking.expected | 1 + .../dataflow/local/TaintTrackingStep.expected | 3 + .../dataflow/ssa/BaseSsaConsistency.ql | 2 +- .../dataflow/ssa/DefAdjacentRead.expected | 4 - .../dataflow/ssa/SSAPhi.expected | 4 + .../dataflow/ssa/SsaDef.expected | 4 + .../dataflow/ssa/SsaDefElement.expected | 8 +- .../dataflow/ssa/SsaExplicitDef.expected | 43 ++++++++++ .../dataflow/ssa/SsaImplicitParameterDef.ql | 2 +- .../dataflow/ssa/SsaRead.expected | 4 +- .../dataflow/ssa/SsaUltimateDef.expected | 6 ++ 21 files changed, 219 insertions(+), 79 deletions(-) diff --git a/csharp/ql/lib/semmle/code/csharp/Assignable.qll b/csharp/ql/lib/semmle/code/csharp/Assignable.qll index 5cd9ee9ede06..d2df0a5a05e0 100644 --- a/csharp/ql/lib/semmle/code/csharp/Assignable.qll +++ b/csharp/ql/lib/semmle/code/csharp/Assignable.qll @@ -271,6 +271,8 @@ module AssignableInternal { def = TPatternDefinition(result) or def = TAssignOperationDefinition(result) + or + def = TParameterDefaultDefinition(_, result) } /** A local variable declaration at the top-level of a pattern. */ @@ -308,10 +310,17 @@ module AssignableInternal { exists(Callable c | p = c.getAParameter() | c.hasBody() or - // Same as `c.(Constructor).hasInitializer()`, but avoids negative recursion warning - c.getAChildExpr() instanceof @constructor_init_expr + c.(Constructor).hasInitializer() ) } or + TParameterDefaultDefinition(Parameter p, Expr default) { + exists(Callable c | p = c.getAParameter() | + c.hasBody() + or + c.(Constructor).hasInitializer() + ) and + default = p.getDefaultValue() + } or TAddressOfDefinition(AddressOfExpr aoe) or TPatternDefinition(TopLevelPatternDecl tlpd) or TAssignOperationDefinition(AssignOperation ao) { @@ -350,6 +359,8 @@ module AssignableInternal { any(AssignableDefinitions::PatternDefinition pd | result = pd.getDeclaration().getVariable()) or def = any(AssignableDefinitions::InitializerDefinition init | result = init.getAssignable()) + or + def = TParameterDefaultDefinition(result, _) } // Not defined by dispatch in order to avoid too conservative negative recursion error @@ -493,11 +504,6 @@ class AssignableDefinition extends TAssignableDefinition { exists(Ssa::ExplicitDefinition def | result = def.getAFirstReadAtNode(cfn) | this = def.getADefinition() ) - or - exists(Ssa::ImplicitParameterDefinition def | result = def.getAFirstReadAtNode(cfn) | - this.(AssignableDefinitions::ImplicitParameterDefinition).getParameter() = - def.getParameter() - ) ) } @@ -689,7 +695,33 @@ module AssignableDefinitions { override string toString() { result = p.toString() } - override Location getLocation() { result = this.getTarget().getLocation() } + override Location getLocation() { result = p.getLocation() } + } + + /** + * A default value assigned to a parameter. + */ + class ParameterDefaultDefinition extends AssignableDefinition, TParameterDefaultDefinition { + Parameter p; + Expr default; + + ParameterDefaultDefinition() { this = TParameterDefaultDefinition(p, default) } + + /** Gets the underlying parameter. */ + Parameter getParameter() { result = p } + + /** Gets the default value expression for the parameter. */ + Expr getDefaultValue() { result = default } + + override Expr getSource() { result = default } + + override Expr getElement() { result = default } + + override Callable getEnclosingCallable() { result = p.getCallable() } + + override string toString() { result = p.toString() + " = ..." } + + override Location getLocation() { result = default.getLocation() } } /** diff --git a/csharp/ql/lib/semmle/code/csharp/controlflow/Guards.qll b/csharp/ql/lib/semmle/code/csharp/controlflow/Guards.qll index 52de1c2fe0ee..a8fe2e432e27 100644 --- a/csharp/ql/lib/semmle/code/csharp/controlflow/Guards.qll +++ b/csharp/ql/lib/semmle/code/csharp/controlflow/Guards.qll @@ -205,7 +205,7 @@ private module LogicInput implements GuardsImpl::LogicInputSig { } } - class SsaParameterInit extends SsaDefinition instanceof Ssa::ImplicitParameterDefinition { + class SsaParameterInit extends SsaDefinition instanceof Ssa::ParameterDefinition { Parameter getParameter() { result = super.getParameter() } } diff --git a/csharp/ql/lib/semmle/code/csharp/dataflow/Nullness.qll b/csharp/ql/lib/semmle/code/csharp/dataflow/Nullness.qll index d36fb68b9155..14d343dedfbb 100644 --- a/csharp/ql/lib/semmle/code/csharp/dataflow/Nullness.qll +++ b/csharp/ql/lib/semmle/code/csharp/dataflow/Nullness.qll @@ -130,7 +130,7 @@ private predicate dereferenceAt(ControlFlowNode node, Ssa::Definition def, Deref d = def.getAReadAtNode(node) } -private predicate isMaybeNullArgument(Ssa::ImplicitParameterDefinition def, MaybeNullExpr arg) { +private predicate isMaybeNullArgument(Ssa::ParameterDefinition def, MaybeNullExpr arg) { exists(AssignableDefinitions::ImplicitParameterDefinition pdef, Parameter p | p = def.getParameter() | @@ -181,7 +181,7 @@ private predicate hasMultipleParamsArguments(Call c) { ) } -private predicate isNullDefaultArgument(Ssa::ImplicitParameterDefinition def, AlwaysNullExpr arg) { +private predicate isNullDefaultArgument(Ssa::ParameterDefinition def, AlwaysNullExpr arg) { exists(AssignableDefinitions::ImplicitParameterDefinition pdef, Parameter p | p = def.getParameter() | @@ -337,8 +337,7 @@ class Dereference extends G::DereferenceableExpr { or p.fromSource() and exists( - Ssa::ImplicitParameterDefinition def, - AssignableDefinitions::ImplicitParameterDefinition pdef + Ssa::ParameterDefinition def, AssignableDefinitions::ImplicitParameterDefinition pdef | p = def.getParameter() | diff --git a/csharp/ql/lib/semmle/code/csharp/dataflow/SSA.qll b/csharp/ql/lib/semmle/code/csharp/dataflow/SSA.qll index 92149e026405..8f5b04c6708a 100644 --- a/csharp/ql/lib/semmle/code/csharp/dataflow/SSA.qll +++ b/csharp/ql/lib/semmle/code/csharp/dataflow/SSA.qll @@ -9,7 +9,6 @@ import csharp */ module Ssa { private import internal.SsaImpl as SsaImpl - private import semmle.code.csharp.internal.Location pragma[nomagic] private predicate assignableDefinitionLocalScopeVariable( @@ -19,15 +18,6 @@ module Ssa { ad.getEnclosingCallable() = c } - pragma[nomagic] - private predicate localScopeSourceVariable( - SourceVariables::LocalScopeSourceVariable sv, LocalScopeVariable v, Callable c1, Callable c2 - ) { - sv.getAssignable() = v and - sv.getEnclosingCallable() = c1 and - v.getCallable() = c2 - } - /** * A variable that can be SSA converted. * @@ -54,7 +44,7 @@ module Ssa { not exists(result.getTargetAccess()) and exists(LocalScopeVariable v, Callable c | assignableDefinitionLocalScopeVariable(result, v, c) and - localScopeSourceVariable(this, v, c, _) + SsaImpl::localScopeSourceVariable(this, v, c, _) ) } @@ -482,8 +472,8 @@ module Ssa { /** * An SSA definition representing the implicit initialization of a variable - * at the beginning of a callable. Either a parameter, a local scope variable - * captured by the callable, or a field or property accessed inside the callable. + * at the beginning of a callable. Either a local scope variable captured by + * the callable or a field or property accessed inside the callable. */ class ImplicitEntryDefinition extends ImplicitDefinition { ImplicitEntryDefinition() { @@ -507,51 +497,37 @@ module Ssa { override Location getLocation() { result = this.getCallable().getLocation() } } - private module NearestLocationInput implements NearestLocationInputSig { - class C = ImplicitParameterDefinition; + deprecated class ImplicitParameterDefinition = ParameterDefinition; - predicate relevantLocations(ImplicitParameterDefinition def, Location l1, Location l2) { - not def.getBasicBlock() instanceof EntryBasicBlock and - l1 = def.getParameter().getALocation() and - l2 = def.getBasicBlock().getLocation() - } - } + final class ParameterDefinition = SsaImpl::ParameterDefinitionImpl; - pragma[nomagic] - private predicate implicitEntryDef(ImplicitEntryDefinition def, SourceVariable v, Callable c) { - v = def.getSourceVariable() and - c = def.getCallable() + private class ExplicitParameterDefinition extends ExplicitDefinition, + SsaImpl::ParameterDefinitionImpl + { + private Parameter p; + override AssignableDefinitions::ImplicitParameterDefinition ad; + + ExplicitParameterDefinition() { p = ad.getParameter() } + + override Parameter getParameter() { result = p } + + override string toString() { result = SsaImpl::ParameterDefinitionImpl.super.toString() } } /** - * An SSA definition representing the implicit initialization of a parameter - * at the beginning of a callable. + * An SSA definition representing the default value of a parameter. */ - class ImplicitParameterDefinition extends ImplicitEntryDefinition { + class ParameterDefaultDefinition extends ExplicitDefinition { private Parameter p; + override AssignableDefinitions::ParameterDefaultDefinition ad; - ImplicitParameterDefinition() { - exists(SourceVariable sv, Callable c | - implicitEntryDef(this, sv, c) and - localScopeSourceVariable(sv, p, _, c) - ) - } + ParameterDefaultDefinition() { p = ad.getParameter() } /** Gets the parameter that this entry definition represents. */ Parameter getParameter() { result = p } - override Element getElement() { result = this.getParameter() } - override string toString() { - result = "SSA param(" + pragma[only_bind_out](this.getParameter()) + ")" - } - - override Location getLocation() { - not NearestLocation::nearestLocation(this, _, _) and - result = p.getLocation() - or - // multi-bodied method: use matching parameter location - NearestLocation::nearestLocation(this, result, _) + result = "SSA param_default(" + pragma[only_bind_out](this.getParameter()) + ")" } } diff --git a/csharp/ql/lib/semmle/code/csharp/dataflow/internal/DataFlowPrivate.qll b/csharp/ql/lib/semmle/code/csharp/dataflow/internal/DataFlowPrivate.qll index 1352f6e9f9f3..c4d2a8441033 100644 --- a/csharp/ql/lib/semmle/code/csharp/dataflow/internal/DataFlowPrivate.qll +++ b/csharp/ql/lib/semmle/code/csharp/dataflow/internal/DataFlowPrivate.qll @@ -1303,7 +1303,7 @@ private module NearestLocationInputParamAfterCallable implements NearestLocation private module ParameterNodes { pragma[nomagic] - private predicate ssaParamDef(Ssa::ImplicitParameterDefinition ssaDef, Parameter p, Location l) { + private predicate ssaParamDef(Ssa::ParameterDefinition ssaDef, Parameter p, Location l) { p = ssaDef.getParameter() and l = ssaDef.getLocation() } @@ -1358,7 +1358,7 @@ private module ParameterNodes { } /** Gets the SSA definition corresponding to this parameter, if any. */ - Ssa::ImplicitParameterDefinition getSsaDefinition() { + Ssa::ParameterDefinition getSsaDefinition() { exists(Parameter p, Location l | l = this.getParameterLocation(p) and ssaParamDef(result, p, l) diff --git a/csharp/ql/lib/semmle/code/csharp/dataflow/internal/SsaImpl.qll b/csharp/ql/lib/semmle/code/csharp/dataflow/internal/SsaImpl.qll index b2c445985245..b3a95977be99 100644 --- a/csharp/ql/lib/semmle/code/csharp/dataflow/internal/SsaImpl.qll +++ b/csharp/ql/lib/semmle/code/csharp/dataflow/internal/SsaImpl.qll @@ -7,6 +7,7 @@ private import codeql.ssa.Ssa as SsaImplCommon private import AssignableDefinitions private import semmle.code.csharp.controlflow.Guards as Guards private import semmle.code.csharp.dataflow.internal.BaseSSA +private import semmle.code.csharp.internal.Location private module SsaInput implements SsaImplCommon::InputSig { class SourceVariable = Ssa::SourceVariable; @@ -126,7 +127,6 @@ private module SourceVariableImpl { */ predicate variableDefinition(BasicBlock bb, int i, Ssa::SourceVariable v, AssignableDefinition ad) { ad = v.getADefinition() and - ad.getExpr().getControlFlowNode() = bb.getNode(i) and // In cases like `(x, x) = (0, 1)`, we discard the first (dead) definition of `x` not exists(TupleAssignmentDefinition first, TupleAssignmentDefinition second | first = ad | second.getAssignment() = first.getAssignment() and @@ -136,7 +136,13 @@ private module SourceVariableImpl { // In cases like `M(out x, out x)`, there is no inherent evaluation order, so we // collapse the two definitions of `x`, using the first access as the representative, // and expose both definitions in `ExplicitDefinition.getADefinition()` - not ad = getASameOutRefDefAfter(v, _) + not ad = getASameOutRefDefAfter(v, _) and + ( + ad.getExpr().getControlFlowNode() = bb.getNode(i) + or + ad.(AssignableDefinitions::ImplicitParameterDefinition).getParameter().getControlFlowNode() = + bb.getNode(i) + ) } /** @@ -243,6 +249,15 @@ private module SourceVariableImpl { private import SourceVariableImpl private import Ssa::SourceVariables +pragma[nomagic] +predicate localScopeSourceVariable( + Ssa::SourceVariables::LocalScopeSourceVariable sv, LocalScopeVariable v, Callable c1, Callable c2 +) { + sv.getAssignable() = v and + sv.getEnclosingCallable() = c1 and + v.getCallable() = c2 +} + private module CallGraph { private import semmle.code.csharp.dispatch.Dispatch @@ -767,9 +782,10 @@ private module Cached { v instanceof PlainFieldOrPropSourceVariable ) or - // In case `c` has multiple bodies, we want each body to get its own implicit - // entry definition, so we use the basic block containing the body instead of - // the entry block. + // In case `c` has multiple bodies, we want each body to get its own set of + // parameter definitions, so we add special writes to the start of the basic + // blocks containing the bodies + strictcount(c.getBody()) > 1 and v.getAssignable() instanceof Parameter and bb.getANode().isBefore(c.getBody()) ) @@ -962,7 +978,7 @@ private module DataFlowIntegrationInput implements Impl::DataFlowIntegrationInpu predicate ssaDefHasSource(WriteDefinition def) { // exclude flow directly from RHS to SSA definition, as we instead want to // go from RHS to matching assignable definition, and from there to SSA definition - def instanceof Ssa::ImplicitParameterDefinition + def instanceof Ssa::ParameterDefinition } /** @@ -994,3 +1010,56 @@ private module DataFlowIntegrationInput implements Impl::DataFlowIntegrationInpu } private module DataFlowIntegrationImpl = Impl::DataFlowIntegration; + +private module MultiBodyNearestLocationInput implements NearestLocationInputSig { + class C = MultiBodyParameterDefinition; + + predicate relevantLocations(MultiBodyParameterDefinition def, Location l1, Location l2) { + exists(Callable c, ControlFlowNode n | + l1 = def.getParameter().getALocation() and + n = def.getBasicBlock().getANode() and + n.isBefore(c.getBody()) and + l2 = n.getLocation() + ) + } +} + +pragma[nomagic] +private predicate implicitEntryDef( + Ssa::ImplicitEntryDefinition def, Ssa::SourceVariable v, Callable c +) { + v = def.getSourceVariable() and + c = def.getCallable() +} + +/** + * An SSA definition representing the implicit initialization of a parameter + * at the beginning of a callable. + */ +abstract class ParameterDefinitionImpl extends Ssa::Definition { + /** Gets the parameter that this definition represents. */ + abstract Parameter getParameter(); + + override string toString() { + result = "SSA param(" + pragma[only_bind_out](this.getParameter()) + ")" + } +} + +class MultiBodyParameterDefinition extends ParameterDefinitionImpl, Ssa::ImplicitEntryDefinition { + private Parameter p; + + MultiBodyParameterDefinition() { + exists(Ssa::SourceVariable sv, Callable c | + implicitEntryDef(this, sv, c) and + localScopeSourceVariable(sv, p, _, c) + ) + } + + override Parameter getParameter() { result = p } + + override string toString() { result = ParameterDefinitionImpl.super.toString() } + + override Location getLocation() { + NearestLocation::nearestLocation(this, result, _) + } +} diff --git a/csharp/ql/test/library-tests/csharp7/DefUse.ql b/csharp/ql/test/library-tests/csharp7/DefUse.ql index a37b867e086a..5957c0092604 100644 --- a/csharp/ql/test/library-tests/csharp7/DefUse.ql +++ b/csharp/ql/test/library-tests/csharp7/DefUse.ql @@ -6,7 +6,7 @@ where ( ult.(Ssa::ExplicitDefinition).getADefinition() = def or - ult.(Ssa::ImplicitParameterDefinition).getParameter() = + ult.(Ssa::ParameterDefinition).getParameter() = def.(AssignableDefinitions::ImplicitParameterDefinition).getParameter() ) and read = ssaDef.getARead() diff --git a/csharp/ql/test/library-tests/dataflow/defuse/parameterUseEquivalence.ql b/csharp/ql/test/library-tests/dataflow/defuse/parameterUseEquivalence.ql index e4216f899426..896092718a0e 100644 --- a/csharp/ql/test/library-tests/dataflow/defuse/parameterUseEquivalence.ql +++ b/csharp/ql/test/library-tests/dataflow/defuse/parameterUseEquivalence.ql @@ -24,8 +24,7 @@ private LocalScopeVariableRead getAReachableUncertainRead( AssignableDefinitions::ImplicitParameterDefinition p ) { exists(Ssa::Definition ssaDef | - p.getParameter() = - ssaDef.getAnUltimateDefinition().(Ssa::ImplicitParameterDefinition).getParameter() + p.getParameter() = ssaDef.getAnUltimateDefinition().(Ssa::ParameterDefinition).getParameter() | result = ssaDef.getARead() ) diff --git a/csharp/ql/test/library-tests/dataflow/local/DataFlow.expected b/csharp/ql/test/library-tests/dataflow/local/DataFlow.expected index ed80fa1e8b3b..ef002f0396f2 100644 --- a/csharp/ql/test/library-tests/dataflow/local/DataFlow.expected +++ b/csharp/ql/test/library-tests/dataflow/local/DataFlow.expected @@ -5,6 +5,7 @@ | LocalDataFlow.cs:315:15:315:20 | access to local variable sink73 | | LocalDataFlow.cs:316:15:316:20 | access to local variable sink74 | | LocalDataFlow.cs:342:15:342:21 | access to parameter tainted | +| LocalDataFlow.cs:387:15:387:15 | access to parameter s | | SSA.cs:9:15:9:22 | access to local variable ssaSink0 | | SSA.cs:25:15:25:22 | access to local variable ssaSink1 | | SSA.cs:43:15:43:22 | access to local variable ssaSink2 | diff --git a/csharp/ql/test/library-tests/dataflow/local/DataFlowStep.expected b/csharp/ql/test/library-tests/dataflow/local/DataFlowStep.expected index a22e56b0dd82..d1df5b77de02 100644 --- a/csharp/ql/test/library-tests/dataflow/local/DataFlowStep.expected +++ b/csharp/ql/test/library-tests/dataflow/local/DataFlowStep.expected @@ -529,6 +529,9 @@ | LocalDataFlow.cs:381:17:381:29 | "not tainted" | LocalDataFlow.cs:381:13:381:13 | access to local variable x | | LocalDataFlow.cs:385:34:385:34 | SSA param(s) | LocalDataFlow.cs:387:15:387:15 | access to parameter s | | LocalDataFlow.cs:385:34:385:34 | s | LocalDataFlow.cs:385:34:385:34 | SSA param(s) | +| LocalDataFlow.cs:385:38:385:51 | "taint source" | LocalDataFlow.cs:385:38:385:51 | s = ... | +| LocalDataFlow.cs:385:38:385:51 | SSA param_default(s) | LocalDataFlow.cs:387:15:387:15 | access to parameter s | +| LocalDataFlow.cs:385:38:385:51 | s = ... | LocalDataFlow.cs:385:38:385:51 | SSA param_default(s) | | SSA.cs:3:14:3:16 | this | SSA.cs:3:14:3:16 | this access | | SSA.cs:5:17:5:17 | SSA entry def(this.S) | SSA.cs:67:9:67:14 | access to field S | | SSA.cs:5:17:5:17 | this | SSA.cs:67:9:67:12 | this access | diff --git a/csharp/ql/test/library-tests/dataflow/local/TaintTracking.expected b/csharp/ql/test/library-tests/dataflow/local/TaintTracking.expected index 372d0bfb3e13..a7ba919f2d74 100644 --- a/csharp/ql/test/library-tests/dataflow/local/TaintTracking.expected +++ b/csharp/ql/test/library-tests/dataflow/local/TaintTracking.expected @@ -43,6 +43,7 @@ | LocalDataFlow.cs:315:15:315:20 | access to local variable sink73 | | LocalDataFlow.cs:316:15:316:20 | access to local variable sink74 | | LocalDataFlow.cs:342:15:342:21 | access to parameter tainted | +| LocalDataFlow.cs:387:15:387:15 | access to parameter s | | SSA.cs:9:15:9:22 | access to local variable ssaSink0 | | SSA.cs:25:15:25:22 | access to local variable ssaSink1 | | SSA.cs:43:15:43:22 | access to local variable ssaSink2 | diff --git a/csharp/ql/test/library-tests/dataflow/local/TaintTrackingStep.expected b/csharp/ql/test/library-tests/dataflow/local/TaintTrackingStep.expected index 87cd14bd25b2..06251245a058 100644 --- a/csharp/ql/test/library-tests/dataflow/local/TaintTrackingStep.expected +++ b/csharp/ql/test/library-tests/dataflow/local/TaintTrackingStep.expected @@ -641,6 +641,9 @@ | LocalDataFlow.cs:381:17:381:29 | "not tainted" | LocalDataFlow.cs:381:13:381:13 | access to local variable x | | LocalDataFlow.cs:385:34:385:34 | SSA param(s) | LocalDataFlow.cs:387:15:387:15 | access to parameter s | | LocalDataFlow.cs:385:34:385:34 | s | LocalDataFlow.cs:385:34:385:34 | SSA param(s) | +| LocalDataFlow.cs:385:38:385:51 | "taint source" | LocalDataFlow.cs:385:38:385:51 | s = ... | +| LocalDataFlow.cs:385:38:385:51 | SSA param_default(s) | LocalDataFlow.cs:387:15:387:15 | access to parameter s | +| LocalDataFlow.cs:385:38:385:51 | s = ... | LocalDataFlow.cs:385:38:385:51 | SSA param_default(s) | | SSA.cs:3:14:3:16 | this | SSA.cs:3:14:3:16 | this access | | SSA.cs:5:17:5:17 | SSA entry def(this.S) | SSA.cs:67:9:67:14 | access to field S | | SSA.cs:5:17:5:17 | this | SSA.cs:67:9:67:12 | this access | diff --git a/csharp/ql/test/library-tests/dataflow/ssa/BaseSsaConsistency.ql b/csharp/ql/test/library-tests/dataflow/ssa/BaseSsaConsistency.ql index 4748f516114c..d68e39fb3966 100644 --- a/csharp/ql/test/library-tests/dataflow/ssa/BaseSsaConsistency.ql +++ b/csharp/ql/test/library-tests/dataflow/ssa/BaseSsaConsistency.ql @@ -12,7 +12,7 @@ where edef.getADefinition() = def and edef.getARead() = ar ) and - not exists(Ssa::ImplicitParameterDefinition edef | + not exists(Ssa::ParameterDefinition edef | edef.getParameter() = def.(AssignableDefinitions::ImplicitParameterDefinition).getParameter() and edef.getARead() = ar ) diff --git a/csharp/ql/test/library-tests/dataflow/ssa/DefAdjacentRead.expected b/csharp/ql/test/library-tests/dataflow/ssa/DefAdjacentRead.expected index a6833b789f78..0350c73ce259 100644 --- a/csharp/ql/test/library-tests/dataflow/ssa/DefAdjacentRead.expected +++ b/csharp/ql/test/library-tests/dataflow/ssa/DefAdjacentRead.expected @@ -62,8 +62,6 @@ | DefUse.cs:171:23:171:23 | a | DefUse.cs:171:23:180:9 | Action a = ... | DefUse.cs:181:9:181:9 | access to local variable a | | DefUse.cs:171:23:171:23 | a | DefUse.cs:186:9:190:9 | ... = ... | DefUse.cs:191:9:191:9 | access to local variable a | | DefaultParam.cs:3:20:3:20 | b | DefaultParam.cs:3:20:3:20 | b | DefaultParam.cs:5:16:5:16 | access to parameter b | -| DefaultParam.cs:3:30:3:30 | s | DefaultParam.cs:3:30:3:30 | s | DefaultParam.cs:5:20:5:20 | access to parameter s | -| DefaultParam.cs:3:42:3:42 | i | DefaultParam.cs:3:42:3:42 | i | DefaultParam.cs:5:24:5:24 | access to parameter i | | Example.cs:4:9:4:13 | Field | Example.cs:8:9:8:22 | ... = ... | Example.cs:9:13:9:22 | access to field Field | | Example.cs:6:23:6:23 | i | Example.cs:6:23:6:23 | i | Example.cs:8:22:8:22 | access to parameter i | | Example.cs:18:16:18:16 | p | Example.cs:18:16:18:16 | p | Example.cs:22:17:22:17 | access to parameter p | @@ -85,8 +83,6 @@ | Fields.cs:93:19:93:23 | Field | Fields.cs:102:9:102:28 | ... = ... | Fields.cs:104:16:104:25 | access to field Field | | Fields.cs:95:19:95:19 | f | Fields.cs:95:19:95:19 | f | Fields.cs:97:9:97:9 | access to parameter f | | Fields.cs:107:33:107:33 | f | Fields.cs:107:33:107:33 | f | Fields.cs:107:38:107:38 | access to parameter f | -| MultiImplementationA.cs:5:22:5:22 | x | MultiImplementationA.cs:5:22:5:22 | x | MultiImplementationA.cs:5:28:5:28 | access to parameter x | -| MultiImplementationA.cs:5:22:5:22 | x | MultiImplementationA.cs:5:22:5:22 | x | MultiImplementationB.cs:3:28:3:28 | access to parameter x | | OutRef.cs:5:9:5:13 | Field | OutRef.cs:13:28:13:32 | access to field Field | OutRef.cs:15:13:15:17 | access to field Field | | OutRef.cs:5:9:5:13 | Field | OutRef.cs:16:21:16:25 | access to field Field | OutRef.cs:17:13:17:17 | access to field Field | | OutRef.cs:5:9:5:13 | Field | OutRef.cs:16:32:16:36 | access to field Field | OutRef.cs:17:13:17:17 | access to field Field | diff --git a/csharp/ql/test/library-tests/dataflow/ssa/SSAPhi.expected b/csharp/ql/test/library-tests/dataflow/ssa/SSAPhi.expected index 1acf66efd962..7ace8cd316df 100644 --- a/csharp/ql/test/library-tests/dataflow/ssa/SSAPhi.expected +++ b/csharp/ql/test/library-tests/dataflow/ssa/SSAPhi.expected @@ -8,6 +8,10 @@ | DefUse.cs:79:13:79:14 | x1 | DefUse.cs:80:9:80:51 | SSA phi(x1) | DefUse.cs:80:30:80:31 | SSA def(x1) | | DefUse.cs:97:13:97:14 | x5 | DefUse.cs:98:9:102:9 | SSA phi(x5) | DefUse.cs:97:13:97:18 | SSA def(x5) | | DefUse.cs:97:13:97:14 | x5 | DefUse.cs:98:9:102:9 | SSA phi(x5) | DefUse.cs:101:13:101:23 | SSA def(x5) | +| DefaultParam.cs:3:30:3:30 | s | DefaultParam.cs:3:42:3:42 | SSA phi(s) | DefaultParam.cs:3:30:3:30 | SSA param(s) | +| DefaultParam.cs:3:30:3:30 | s | DefaultParam.cs:3:42:3:42 | SSA phi(s) | DefaultParam.cs:3:34:3:35 | SSA param_default(s) | +| DefaultParam.cs:3:42:3:42 | i | DefaultParam.cs:4:5:6:5 | SSA phi(i) | DefaultParam.cs:3:42:3:42 | SSA param(i) | +| DefaultParam.cs:3:42:3:42 | i | DefaultParam.cs:4:5:6:5 | SSA phi(i) | DefaultParam.cs:3:46:3:46 | SSA param_default(i) | | Example.cs:8:9:8:18 | this.Field | Example.cs:10:9:13:24 | SSA phi(this.Field) | Example.cs:11:13:11:30 | SSA def(this.Field) | | Example.cs:8:9:8:18 | this.Field | Example.cs:10:9:13:24 | SSA phi(this.Field) | Example.cs:12:14:13:24 | SSA phi(this.Field) | | Example.cs:8:9:8:18 | this.Field | Example.cs:12:14:13:24 | SSA phi(this.Field) | Example.cs:8:9:8:22 | SSA def(this.Field) | diff --git a/csharp/ql/test/library-tests/dataflow/ssa/SsaDef.expected b/csharp/ql/test/library-tests/dataflow/ssa/SsaDef.expected index 8f4af9a3aac2..507ff8b2b6e5 100644 --- a/csharp/ql/test/library-tests/dataflow/ssa/SsaDef.expected +++ b/csharp/ql/test/library-tests/dataflow/ssa/SsaDef.expected @@ -95,7 +95,11 @@ | DefUse.cs:188:13:188:18 | this.Field5 | DefUse.cs:188:13:188:22 | SSA def(this.Field5) | | DefaultParam.cs:3:20:3:20 | b | DefaultParam.cs:3:20:3:20 | SSA param(b) | | DefaultParam.cs:3:30:3:30 | s | DefaultParam.cs:3:30:3:30 | SSA param(s) | +| DefaultParam.cs:3:30:3:30 | s | DefaultParam.cs:3:34:3:35 | SSA param_default(s) | +| DefaultParam.cs:3:30:3:30 | s | DefaultParam.cs:3:42:3:42 | SSA phi(s) | | DefaultParam.cs:3:42:3:42 | i | DefaultParam.cs:3:42:3:42 | SSA param(i) | +| DefaultParam.cs:3:42:3:42 | i | DefaultParam.cs:3:46:3:46 | SSA param_default(i) | +| DefaultParam.cs:3:42:3:42 | i | DefaultParam.cs:4:5:6:5 | SSA phi(i) | | Example.cs:6:23:6:23 | i | Example.cs:6:23:6:23 | SSA param(i) | | Example.cs:8:9:8:18 | this.Field | Example.cs:8:9:8:22 | SSA def(this.Field) | | Example.cs:8:9:8:18 | this.Field | Example.cs:10:9:13:24 | SSA phi(this.Field) | diff --git a/csharp/ql/test/library-tests/dataflow/ssa/SsaDefElement.expected b/csharp/ql/test/library-tests/dataflow/ssa/SsaDefElement.expected index d0e2984050d1..b6e2beaae692 100644 --- a/csharp/ql/test/library-tests/dataflow/ssa/SsaDefElement.expected +++ b/csharp/ql/test/library-tests/dataflow/ssa/SsaDefElement.expected @@ -90,7 +90,11 @@ | DefUse.cs:191:9:191:11 | SSA call def(this.Field5) | DefUse.cs:191:9:191:11 | delegate call | | DefaultParam.cs:3:20:3:20 | SSA param(b) | DefaultParam.cs:3:20:3:20 | b | | DefaultParam.cs:3:30:3:30 | SSA param(s) | DefaultParam.cs:3:30:3:30 | s | +| DefaultParam.cs:3:34:3:35 | SSA param_default(s) | DefaultParam.cs:3:34:3:35 | "" | | DefaultParam.cs:3:42:3:42 | SSA param(i) | DefaultParam.cs:3:42:3:42 | i | +| DefaultParam.cs:3:42:3:42 | SSA phi(s) | DefaultParam.cs:3:42:3:42 | i | +| DefaultParam.cs:3:46:3:46 | SSA param_default(i) | DefaultParam.cs:3:46:3:46 | 0 | +| DefaultParam.cs:4:5:6:5 | SSA phi(i) | DefaultParam.cs:4:5:6:5 | {...} | | Example.cs:6:23:6:23 | SSA param(i) | Example.cs:6:23:6:23 | i | | Example.cs:8:9:8:22 | SSA def(this.Field) | Example.cs:8:9:8:22 | ... = ... | | Example.cs:11:13:11:30 | SSA def(this.Field) | Example.cs:11:13:11:30 | ... = ... | @@ -148,8 +152,8 @@ | Fields.cs:114:9:114:22 | SSA call def(this.Field) | Fields.cs:114:9:114:22 | call to method SetField | | Fields.cs:114:9:114:22 | SSA call def(this.Field.Field) | Fields.cs:114:9:114:22 | call to method SetField | | Fields.cs:114:9:114:22 | SSA qualifier def(this.Field.Field.xs) | Fields.cs:114:9:114:22 | call to method SetField | -| MultiImplementationA.cs:5:22:5:22 | SSA param(x) | MultiImplementationA.cs:5:22:5:22 | x | -| MultiImplementationB.cs:3:22:3:22 | SSA param(x) | MultiImplementationA.cs:5:22:5:22 | x | +| MultiImplementationA.cs:5:22:5:22 | SSA param(x) | MultiImplementationA.cs:5:16:5:16 | M | +| MultiImplementationB.cs:3:22:3:22 | SSA param(x) | MultiImplementationA.cs:5:16:5:16 | M | | OutRef.cs:7:10:7:10 | SSA entry def(this.Field) | OutRef.cs:7:10:7:10 | M | | OutRef.cs:9:13:9:17 | SSA def(j) | OutRef.cs:9:13:9:17 | Int32 j = ... | | OutRef.cs:10:25:10:25 | SSA def(i) | OutRef.cs:10:9:10:33 | call to method OutRefM | diff --git a/csharp/ql/test/library-tests/dataflow/ssa/SsaExplicitDef.expected b/csharp/ql/test/library-tests/dataflow/ssa/SsaExplicitDef.expected index 8582dd1cf6e0..9a2e5c49b15f 100644 --- a/csharp/ql/test/library-tests/dataflow/ssa/SsaExplicitDef.expected +++ b/csharp/ql/test/library-tests/dataflow/ssa/SsaExplicitDef.expected @@ -3,10 +3,18 @@ | Capture.cs:19:20:19:20 | b | Capture.cs:19:20:23:13 | SSA def(b) | Capture.cs:19:20:23:13 | Action b = ... | | Capture.cs:30:16:30:16 | c | Capture.cs:30:16:30:35 | SSA def(c) | Capture.cs:30:16:30:35 | Action c = ... | | Capture.cs:52:16:52:16 | b | Capture.cs:52:16:52:43 | SSA def(b) | Capture.cs:52:16:52:43 | Action b = ... | +| Capture.cs:57:57:57:63 | strings | Capture.cs:57:57:57:63 | SSA param(strings) | Capture.cs:57:57:57:63 | strings | | Capture.cs:60:27:60:27 | e | Capture.cs:60:27:60:38 | SSA def(e) | Capture.cs:60:27:60:38 | Func e = ... | +| Capture.cs:65:45:65:51 | strings | Capture.cs:65:45:65:51 | SSA param(strings) | Capture.cs:65:45:65:51 | strings | +| Capture.cs:68:32:68:32 | s | Capture.cs:68:32:68:32 | SSA param(s) | Capture.cs:68:32:68:32 | s | +| Capture.cs:69:25:69:25 | s | Capture.cs:69:25:69:25 | SSA param(s) | Capture.cs:69:25:69:25 | s | +| Capture.cs:73:67:73:73 | strings | Capture.cs:73:67:73:73 | SSA param(strings) | Capture.cs:73:67:73:73 | strings | | Capture.cs:76:63:76:63 | e | Capture.cs:76:63:76:81 | SSA def(e) | Capture.cs:76:63:76:81 | Expression> e = ... | +| Capture.cs:81:28:81:28 | i | Capture.cs:81:28:81:28 | SSA param(i) | Capture.cs:81:28:81:28 | i | | Capture.cs:81:28:81:28 | i | Capture.cs:81:34:81:36 | SSA def(i) | Capture.cs:81:34:81:36 | ...++ | +| Capture.cs:83:65:83:71 | strings | Capture.cs:83:65:83:71 | SSA param(strings) | Capture.cs:83:65:83:71 | strings | | Capture.cs:86:64:86:64 | e | Capture.cs:86:64:86:73 | SSA def(e) | Capture.cs:86:64:86:73 | Expression> e = ... | +| Capture.cs:92:18:92:18 | d | Capture.cs:92:18:92:18 | SSA param(d) | Capture.cs:92:18:92:18 | d | | Capture.cs:98:17:98:17 | x | Capture.cs:98:17:98:21 | SSA def(x) | Capture.cs:98:17:98:21 | Int32 x = ... | | Capture.cs:117:17:117:17 | x | Capture.cs:117:17:117:21 | SSA def(x) | Capture.cs:117:17:117:21 | Int32 x = ... | | Capture.cs:198:28:198:29 | eh | Capture.cs:198:28:198:44 | SSA def(eh) | Capture.cs:198:28:198:44 | MyEventHandler eh = ... | @@ -14,13 +22,18 @@ | Capture.cs:210:24:210:24 | p | Capture.cs:210:24:210:59 | SSA def(p) | Capture.cs:210:24:210:59 | Process p = ... | | Capture.cs:212:30:212:35 | exited | Capture.cs:212:30:212:71 | SSA def(exited) | Capture.cs:212:30:212:71 | EventHandler exited = ... | | Capture.cs:248:36:248:36 | j | Capture.cs:251:13:251:17 | SSA def(j) | Capture.cs:251:13:251:17 | ... = ... | +| Consistency.cs:7:25:7:25 | b | Consistency.cs:7:25:7:25 | SSA param(b) | Consistency.cs:7:25:7:25 | b | | Consistency.cs:15:17:15:17 | i | Consistency.cs:15:17:15:21 | SSA def(i) | Consistency.cs:15:17:15:21 | Int32 i = ... | | Consistency.cs:25:29:25:29 | c | Consistency.cs:25:29:25:29 | SSA def(c) | Consistency.cs:25:29:25:29 | Consistency c | | Consistency.cs:30:30:30:30 | c | Consistency.cs:32:9:32:29 | SSA def(c) | Consistency.cs:32:9:32:29 | ... = ... | | Consistency.cs:44:11:44:11 | s | Consistency.cs:44:11:44:11 | SSA def(s) | Consistency.cs:44:11:44:11 | S s | +| Consistency.cs:49:30:49:30 | a | Consistency.cs:49:30:49:30 | SSA param(a) | Consistency.cs:49:30:49:30 | a | +| Consistency.cs:49:37:49:37 | i | Consistency.cs:49:37:49:37 | SSA param(i) | Consistency.cs:49:37:49:37 | i | +| Consistency.cs:51:20:51:20 | a | Consistency.cs:51:20:51:20 | SSA param(a) | Consistency.cs:51:20:51:20 | a | | Consistency.cs:56:17:56:17 | k | Consistency.cs:56:17:56:40 | SSA def(k) | Consistency.cs:56:17:56:40 | Int32 k = ... | | Consistency.cs:56:17:56:17 | k | Consistency.cs:57:9:57:13 | SSA def(k) | Consistency.cs:57:9:57:13 | ... = ... | | Consistency.cs:56:17:56:17 | k | Consistency.cs:58:9:58:13 | SSA def(k) | Consistency.cs:58:9:58:13 | ... = ... | +| DefUse.cs:3:26:3:26 | w | DefUse.cs:3:26:3:26 | SSA param(w) | DefUse.cs:3:26:3:26 | w | | DefUse.cs:3:26:3:26 | w | DefUse.cs:19:13:19:18 | SSA def(w) | DefUse.cs:19:13:19:18 | ... = ... | | DefUse.cs:3:26:3:26 | w | DefUse.cs:29:13:29:18 | SSA def(w) | DefUse.cs:29:13:29:18 | ... = ... | | DefUse.cs:5:13:5:13 | x | DefUse.cs:5:13:5:17 | SSA def(x) | DefUse.cs:5:13:5:17 | Int32 x = ... | @@ -50,17 +63,29 @@ | DefUse.cs:97:13:97:14 | x5 | DefUse.cs:104:9:104:15 | SSA def(x5) | DefUse.cs:104:9:104:15 | ... += ... | | DefUse.cs:114:42:114:42 | i | DefUse.cs:114:47:114:52 | SSA def(i) | DefUse.cs:114:47:114:52 | ... = ... | | DefUse.cs:116:42:116:42 | i | DefUse.cs:116:47:116:51 | SSA def(i) | DefUse.cs:116:47:116:51 | ... = ... | +| DefUse.cs:118:45:118:45 | i | DefUse.cs:118:45:118:45 | SSA param(i) | DefUse.cs:118:45:118:45 | i | | DefUse.cs:118:45:118:45 | i | DefUse.cs:118:68:118:72 | SSA def(i) | DefUse.cs:118:68:118:72 | ... = ... | | DefUse.cs:118:56:118:56 | j | DefUse.cs:118:61:118:65 | SSA def(j) | DefUse.cs:118:61:118:65 | ... = ... | +| DefUse.cs:128:19:128:19 | i | DefUse.cs:128:19:128:19 | SSA param(i) | DefUse.cs:128:19:128:19 | i | +| DefUse.cs:134:22:134:22 | d | DefUse.cs:134:22:134:22 | SSA param(d) | DefUse.cs:134:22:134:22 | d | +| DefUse.cs:142:68:142:69 | ie | DefUse.cs:142:68:142:69 | SSA param(ie) | DefUse.cs:142:68:142:69 | ie | | DefUse.cs:144:22:144:22 | x | DefUse.cs:144:22:144:22 | SSA def(x) | DefUse.cs:144:22:144:22 | String x | | DefUse.cs:155:9:155:14 | this.Field4 | DefUse.cs:155:9:155:18 | SSA def(this.Field4) | DefUse.cs:155:9:155:18 | ... = ... | | DefUse.cs:171:23:171:23 | a | DefUse.cs:171:23:180:9 | SSA def(a) | DefUse.cs:171:23:180:9 | Action a = ... | | DefUse.cs:171:23:171:23 | a | DefUse.cs:186:9:190:9 | SSA def(a) | DefUse.cs:186:9:190:9 | ... = ... | | DefUse.cs:184:9:184:14 | this.Field5 | DefUse.cs:184:9:184:18 | SSA def(this.Field5) | DefUse.cs:184:9:184:18 | ... = ... | | DefUse.cs:188:13:188:18 | this.Field5 | DefUse.cs:188:13:188:22 | SSA def(this.Field5) | DefUse.cs:188:13:188:22 | ... = ... | +| DefaultParam.cs:3:20:3:20 | b | DefaultParam.cs:3:20:3:20 | SSA param(b) | DefaultParam.cs:3:20:3:20 | b | +| DefaultParam.cs:3:30:3:30 | s | DefaultParam.cs:3:30:3:30 | SSA param(s) | DefaultParam.cs:3:30:3:30 | s | +| DefaultParam.cs:3:30:3:30 | s | DefaultParam.cs:3:34:3:35 | SSA param_default(s) | DefaultParam.cs:3:34:3:35 | s = ... | +| DefaultParam.cs:3:42:3:42 | i | DefaultParam.cs:3:42:3:42 | SSA param(i) | DefaultParam.cs:3:42:3:42 | i | +| DefaultParam.cs:3:42:3:42 | i | DefaultParam.cs:3:46:3:46 | SSA param_default(i) | DefaultParam.cs:3:46:3:46 | i = ... | +| Example.cs:6:23:6:23 | i | Example.cs:6:23:6:23 | SSA param(i) | Example.cs:6:23:6:23 | i | | Example.cs:8:9:8:18 | this.Field | Example.cs:8:9:8:22 | SSA def(this.Field) | Example.cs:8:9:8:22 | ... = ... | | Example.cs:8:9:8:18 | this.Field | Example.cs:11:13:11:30 | SSA def(this.Field) | Example.cs:11:13:11:30 | ... = ... | +| Example.cs:18:16:18:16 | p | Example.cs:18:16:18:16 | SSA param(p) | Example.cs:18:16:18:16 | p | | Example.cs:18:16:18:16 | p | Example.cs:23:13:23:17 | SSA def(p) | Example.cs:23:13:23:17 | ... = ... | +| Example.cs:18:24:18:24 | b | Example.cs:18:24:18:24 | SSA param(b) | Example.cs:18:24:18:24 | b | | Fields.cs:18:15:18:15 | x | Fields.cs:20:9:20:14 | SSA def(x) | Fields.cs:20:9:20:14 | ... = ... | | Fields.cs:18:19:18:20 | this.xs | Fields.cs:24:9:24:23 | SSA def(this.xs) | Fields.cs:24:9:24:23 | ... = ... | | Fields.cs:30:13:30:13 | f | Fields.cs:30:13:30:28 | SSA def(f) | Fields.cs:30:13:30:28 | Fields f = ... | @@ -76,8 +101,10 @@ | Fields.cs:80:9:80:12 | f.xs | Fields.cs:88:9:88:25 | SSA def(f.xs) | Fields.cs:88:9:88:25 | ... = ... | | Fields.cs:82:9:82:15 | this.xs | Fields.cs:85:9:85:22 | SSA def(this.xs) | Fields.cs:85:9:85:22 | ... = ... | | Fields.cs:82:9:82:15 | this.xs | Fields.cs:87:9:87:22 | SSA def(this.xs) | Fields.cs:87:9:87:22 | ... = ... | +| Fields.cs:95:19:95:19 | f | Fields.cs:95:19:95:19 | SSA param(f) | Fields.cs:95:19:95:19 | f | | Fields.cs:97:9:97:15 | f.Field | Fields.cs:97:9:97:30 | SSA def(f.Field) | Fields.cs:97:9:97:30 | ... = ... | | Fields.cs:102:9:102:18 | this.Field | Fields.cs:102:9:102:28 | SSA def(this.Field) | Fields.cs:102:9:102:28 | ... = ... | +| Fields.cs:107:33:107:33 | f | Fields.cs:107:33:107:33 | SSA param(f) | Fields.cs:107:33:107:33 | f | | OutRef.cs:9:13:9:13 | j | OutRef.cs:9:13:9:17 | SSA def(j) | OutRef.cs:9:13:9:17 | Int32 j = ... | | OutRef.cs:9:13:9:13 | j | OutRef.cs:10:32:10:32 | SSA def(j) | OutRef.cs:10:32:10:32 | access to local variable j | | OutRef.cs:9:13:9:13 | j | OutRef.cs:22:22:22:22 | SSA def(j) | OutRef.cs:22:22:22:22 | access to local variable j | @@ -91,8 +118,12 @@ | OutRef.cs:18:13:18:13 | t | OutRef.cs:18:13:18:28 | SSA def(t) | OutRef.cs:18:13:18:28 | OutRef t = ... | | OutRef.cs:19:32:19:38 | t.Field | OutRef.cs:19:32:19:38 | SSA def(t.Field) | OutRef.cs:19:32:19:38 | access to field Field | | OutRef.cs:28:26:28:26 | i | OutRef.cs:30:9:30:13 | SSA def(i) | OutRef.cs:30:9:30:13 | ... = ... | +| OutRef.cs:28:37:28:37 | j | OutRef.cs:28:37:28:37 | SSA param(j) | OutRef.cs:28:37:28:37 | j | | OutRef.cs:28:37:28:37 | j | OutRef.cs:31:9:31:13 | SSA def(j) | OutRef.cs:31:9:31:13 | ... = ... | | OutRef.cs:34:27:34:27 | i | OutRef.cs:36:9:36:13 | SSA def(i) | OutRef.cs:36:9:36:13 | ... = ... | +| OutRef.cs:34:38:34:38 | j | OutRef.cs:34:38:34:38 | SSA param(j) | OutRef.cs:34:38:34:38 | j | +| OutRef.cs:39:24:39:24 | b | OutRef.cs:39:24:39:24 | SSA param(b) | OutRef.cs:39:24:39:24 | b | +| OutRef.cs:39:35:39:35 | j | OutRef.cs:39:35:39:35 | SSA param(j) | OutRef.cs:39:35:39:35 | j | | OutRef.cs:39:35:39:35 | j | OutRef.cs:42:13:42:17 | SSA def(j) | OutRef.cs:42:13:42:17 | ... = ... | | Patterns.cs:7:16:7:16 | o | Patterns.cs:7:16:7:23 | SSA def(o) | Patterns.cs:7:16:7:23 | Object o = ... | | Patterns.cs:8:22:8:23 | i1 | Patterns.cs:8:18:8:23 | SSA def(i1) | Patterns.cs:8:18:8:23 | Int32 i1 | @@ -107,6 +138,7 @@ | Properties.cs:31:19:31:22 | f.xs | Properties.cs:45:9:45:25 | SSA def(f.xs) | Properties.cs:45:9:45:25 | ... = ... | | Properties.cs:32:15:32:15 | z | Properties.cs:47:9:47:14 | SSA def(z) | Properties.cs:47:9:47:14 | ... = ... | | Properties.cs:32:19:32:20 | this.xs | Properties.cs:42:9:42:23 | SSA def(this.xs) | Properties.cs:42:9:42:23 | ... = ... | +| Properties.cs:61:23:61:23 | i | Properties.cs:61:23:61:23 | SSA param(i) | Properties.cs:61:23:61:23 | i | | Properties.cs:61:23:61:23 | i | Properties.cs:63:16:63:18 | SSA def(i) | Properties.cs:63:16:63:18 | ...-- | | Properties.cs:73:13:73:13 | f | Properties.cs:73:13:73:32 | SSA def(f) | Properties.cs:73:13:73:32 | Properties f = ... | | Properties.cs:74:23:74:23 | a | Properties.cs:74:23:74:54 | SSA def(a) | Properties.cs:74:23:74:54 | Action a = ... | @@ -116,8 +148,11 @@ | Properties.cs:76:9:76:12 | f.xs | Properties.cs:84:9:84:25 | SSA def(f.xs) | Properties.cs:84:9:84:25 | ... = ... | | Properties.cs:78:9:78:15 | this.xs | Properties.cs:81:9:81:22 | SSA def(this.xs) | Properties.cs:81:9:81:22 | ... = ... | | Properties.cs:78:9:78:15 | this.xs | Properties.cs:83:9:83:22 | SSA def(this.xs) | Properties.cs:83:9:83:22 | ... = ... | +| Properties.cs:106:37:106:37 | p | Properties.cs:106:37:106:37 | SSA param(p) | Properties.cs:106:37:106:37 | p | +| Test.cs:5:15:5:20 | param1 | Test.cs:5:15:5:20 | SSA param(param1) | Test.cs:5:15:5:20 | param1 | | Test.cs:5:15:5:20 | param1 | Test.cs:27:17:27:24 | SSA def(param1) | Test.cs:27:17:27:24 | ...++ | | Test.cs:5:15:5:20 | param1 | Test.cs:41:13:41:23 | SSA def(param1) | Test.cs:41:13:41:23 | ... += ... | +| Test.cs:5:67:5:72 | param2 | Test.cs:5:67:5:72 | SSA param(param2) | Test.cs:5:67:5:72 | param2 | | Test.cs:7:9:7:13 | this.field | Test.cs:7:9:7:17 | SSA def(this.field) | Test.cs:7:9:7:17 | ... = ... | | Test.cs:7:9:7:13 | this.field | Test.cs:21:13:21:22 | SSA def(this.field) | Test.cs:21:13:21:22 | ... = ... | | Test.cs:8:13:8:13 | x | Test.cs:8:13:8:17 | SSA def(x) | Test.cs:8:13:8:17 | Int32 x = ... | @@ -133,10 +168,18 @@ | Test.cs:34:18:34:18 | i | Test.cs:34:18:34:22 | SSA def(i) | Test.cs:34:18:34:22 | Int32 i = ... | | Test.cs:34:18:34:18 | i | Test.cs:34:33:34:35 | SSA def(i) | Test.cs:34:33:34:35 | ...++ | | Test.cs:39:22:39:22 | w | Test.cs:39:22:39:22 | SSA def(w) | Test.cs:39:22:39:22 | Int32 w | +| Test.cs:46:16:46:18 | in | Test.cs:46:16:46:18 | SSA param(in) | Test.cs:46:16:46:18 | in | | Test.cs:46:29:46:32 | out | Test.cs:50:13:50:20 | SSA def(out) | Test.cs:50:13:50:20 | ... = ... | | Test.cs:46:29:46:32 | out | Test.cs:54:13:54:20 | SSA def(out) | Test.cs:54:13:54:20 | ... = ... | | Test.cs:56:13:56:17 | this.field | Test.cs:57:9:57:17 | SSA def(this.field) | Test.cs:57:9:57:17 | ... = ... | +| Test.cs:62:16:62:16 | x | Test.cs:62:16:62:16 | SSA param(x) | Test.cs:62:16:62:16 | x | | Test.cs:68:45:68:45 | e | Test.cs:68:45:68:45 | SSA def(e) | Test.cs:68:45:68:45 | DivideByZeroException e | +| Test.cs:76:24:76:25 | b1 | Test.cs:76:24:76:25 | SSA param(b1) | Test.cs:76:24:76:25 | b1 | +| Test.cs:76:33:76:34 | b2 | Test.cs:76:33:76:34 | SSA param(b2) | Test.cs:76:33:76:34 | b2 | +| Test.cs:76:42:76:43 | b3 | Test.cs:76:42:76:43 | SSA param(b3) | Test.cs:76:42:76:43 | b3 | +| Test.cs:76:51:76:52 | b4 | Test.cs:76:51:76:52 | SSA param(b4) | Test.cs:76:51:76:52 | b4 | +| Test.cs:76:60:76:61 | b5 | Test.cs:76:60:76:61 | SSA param(b5) | Test.cs:76:60:76:61 | b5 | +| Test.cs:76:69:76:70 | b6 | Test.cs:76:69:76:70 | SSA param(b6) | Test.cs:76:69:76:70 | b6 | | Test.cs:78:13:78:13 | x | Test.cs:78:13:78:17 | SSA def(x) | Test.cs:78:13:78:17 | Int32 x = ... | | Test.cs:78:13:78:13 | x | Test.cs:108:13:108:17 | SSA def(x) | Test.cs:108:13:108:17 | ... = ... | | Tuples.cs:10:14:10:14 | x | Tuples.cs:10:9:10:54 | SSA def(x) | Tuples.cs:10:9:10:54 | ... = ... | diff --git a/csharp/ql/test/library-tests/dataflow/ssa/SsaImplicitParameterDef.ql b/csharp/ql/test/library-tests/dataflow/ssa/SsaImplicitParameterDef.ql index 8608b90746e1..253fdea1ffa5 100644 --- a/csharp/ql/test/library-tests/dataflow/ssa/SsaImplicitParameterDef.ql +++ b/csharp/ql/test/library-tests/dataflow/ssa/SsaImplicitParameterDef.ql @@ -1,5 +1,5 @@ import csharp -from Ssa::SourceVariable v, Ssa::ImplicitParameterDefinition def +from Ssa::SourceVariable v, Ssa::ParameterDefinition def where v = def.getSourceVariable() select v, def, def.getParameter() diff --git a/csharp/ql/test/library-tests/dataflow/ssa/SsaRead.expected b/csharp/ql/test/library-tests/dataflow/ssa/SsaRead.expected index 96ae63b34fb6..88ed62336726 100644 --- a/csharp/ql/test/library-tests/dataflow/ssa/SsaRead.expected +++ b/csharp/ql/test/library-tests/dataflow/ssa/SsaRead.expected @@ -100,8 +100,8 @@ | DefUse.cs:184:9:184:14 | this.Field5 | DefUse.cs:191:9:191:11 | SSA call def(this.Field5) | DefUse.cs:192:13:192:18 | access to field Field5 | | DefUse.cs:188:13:188:18 | this.Field5 | DefUse.cs:188:13:188:22 | SSA def(this.Field5) | DefUse.cs:189:17:189:22 | access to field Field5 | | DefaultParam.cs:3:20:3:20 | b | DefaultParam.cs:3:20:3:20 | SSA param(b) | DefaultParam.cs:5:16:5:16 | access to parameter b | -| DefaultParam.cs:3:30:3:30 | s | DefaultParam.cs:3:30:3:30 | SSA param(s) | DefaultParam.cs:5:20:5:20 | access to parameter s | -| DefaultParam.cs:3:42:3:42 | i | DefaultParam.cs:3:42:3:42 | SSA param(i) | DefaultParam.cs:5:24:5:24 | access to parameter i | +| DefaultParam.cs:3:30:3:30 | s | DefaultParam.cs:3:42:3:42 | SSA phi(s) | DefaultParam.cs:5:20:5:20 | access to parameter s | +| DefaultParam.cs:3:42:3:42 | i | DefaultParam.cs:4:5:6:5 | SSA phi(i) | DefaultParam.cs:5:24:5:24 | access to parameter i | | Example.cs:6:23:6:23 | i | Example.cs:6:23:6:23 | SSA param(i) | Example.cs:8:22:8:22 | access to parameter i | | Example.cs:6:23:6:23 | i | Example.cs:6:23:6:23 | SSA param(i) | Example.cs:10:13:10:13 | access to parameter i | | Example.cs:6:23:6:23 | i | Example.cs:6:23:6:23 | SSA param(i) | Example.cs:11:26:11:26 | access to parameter i | diff --git a/csharp/ql/test/library-tests/dataflow/ssa/SsaUltimateDef.expected b/csharp/ql/test/library-tests/dataflow/ssa/SsaUltimateDef.expected index c3ccef11a447..00bacccf157b 100644 --- a/csharp/ql/test/library-tests/dataflow/ssa/SsaUltimateDef.expected +++ b/csharp/ql/test/library-tests/dataflow/ssa/SsaUltimateDef.expected @@ -101,7 +101,13 @@ | DefUse.cs:188:13:188:18 | this.Field5 | DefUse.cs:188:13:188:22 | SSA def(this.Field5) | DefUse.cs:188:13:188:22 | SSA def(this.Field5) | | DefaultParam.cs:3:20:3:20 | b | DefaultParam.cs:3:20:3:20 | SSA param(b) | DefaultParam.cs:3:20:3:20 | SSA param(b) | | DefaultParam.cs:3:30:3:30 | s | DefaultParam.cs:3:30:3:30 | SSA param(s) | DefaultParam.cs:3:30:3:30 | SSA param(s) | +| DefaultParam.cs:3:30:3:30 | s | DefaultParam.cs:3:34:3:35 | SSA param_default(s) | DefaultParam.cs:3:34:3:35 | SSA param_default(s) | +| DefaultParam.cs:3:30:3:30 | s | DefaultParam.cs:3:42:3:42 | SSA phi(s) | DefaultParam.cs:3:30:3:30 | SSA param(s) | +| DefaultParam.cs:3:30:3:30 | s | DefaultParam.cs:3:42:3:42 | SSA phi(s) | DefaultParam.cs:3:34:3:35 | SSA param_default(s) | | DefaultParam.cs:3:42:3:42 | i | DefaultParam.cs:3:42:3:42 | SSA param(i) | DefaultParam.cs:3:42:3:42 | SSA param(i) | +| DefaultParam.cs:3:42:3:42 | i | DefaultParam.cs:3:46:3:46 | SSA param_default(i) | DefaultParam.cs:3:46:3:46 | SSA param_default(i) | +| DefaultParam.cs:3:42:3:42 | i | DefaultParam.cs:4:5:6:5 | SSA phi(i) | DefaultParam.cs:3:42:3:42 | SSA param(i) | +| DefaultParam.cs:3:42:3:42 | i | DefaultParam.cs:4:5:6:5 | SSA phi(i) | DefaultParam.cs:3:46:3:46 | SSA param_default(i) | | Example.cs:6:23:6:23 | i | Example.cs:6:23:6:23 | SSA param(i) | Example.cs:6:23:6:23 | SSA param(i) | | Example.cs:8:9:8:18 | this.Field | Example.cs:8:9:8:22 | SSA def(this.Field) | Example.cs:8:9:8:22 | SSA def(this.Field) | | Example.cs:8:9:8:18 | this.Field | Example.cs:10:9:13:24 | SSA phi(this.Field) | Example.cs:8:9:8:22 | SSA def(this.Field) | From d4a32476da74aaa2d35428d7c7dbd37cf2762e40 Mon Sep 17 00:00:00 2001 From: Tom Hvitved Date: Tue, 28 Apr 2026 10:44:16 +0200 Subject: [PATCH 112/260] C#: No need to special-case default arguments in nullness analysis --- .../lib/semmle/code/csharp/dataflow/Nullness.qll | 14 -------------- .../test/query-tests/Nullness/NullMaybe.expected | 2 +- 2 files changed, 1 insertion(+), 15 deletions(-) diff --git a/csharp/ql/lib/semmle/code/csharp/dataflow/Nullness.qll b/csharp/ql/lib/semmle/code/csharp/dataflow/Nullness.qll index 14d343dedfbb..63205e52ae5e 100644 --- a/csharp/ql/lib/semmle/code/csharp/dataflow/Nullness.qll +++ b/csharp/ql/lib/semmle/code/csharp/dataflow/Nullness.qll @@ -181,16 +181,6 @@ private predicate hasMultipleParamsArguments(Call c) { ) } -private predicate isNullDefaultArgument(Ssa::ParameterDefinition def, AlwaysNullExpr arg) { - exists(AssignableDefinitions::ImplicitParameterDefinition pdef, Parameter p | - p = def.getParameter() - | - p = pdef.getParameter().getUnboundDeclaration() and - arg = p.getDefaultValue() and - not arg.getEnclosingCallable().getEnclosingCallable*() instanceof TestMethod - ) -} - /** Holds if `def` is an SSA definition that may be `null`. */ private predicate defMaybeNull(Ssa::Definition def, ControlFlowNode node, string msg, Element reason) { not nonNullDef(def) and @@ -216,10 +206,6 @@ private predicate defMaybeNull(Ssa::Definition def, ControlFlowNode node, string else msg = "because of $@ potential null argument" ) or - isNullDefaultArgument(def, reason) and - node = def.getControlFlowNode() and - msg = "because the parameter has a null default value" - or // If the source of a variable is `null` then the variable may be `null` exists(AssignableDefinition adef | adef = def.(Ssa::ExplicitDefinition).getADefinition() | adef.getSource() = maybeNullExpr(node.asExpr()) and diff --git a/csharp/ql/test/query-tests/Nullness/NullMaybe.expected b/csharp/ql/test/query-tests/Nullness/NullMaybe.expected index 3f5219d8c0c9..ba8c7eb90913 100644 --- a/csharp/ql/test/query-tests/Nullness/NullMaybe.expected +++ b/csharp/ql/test/query-tests/Nullness/NullMaybe.expected @@ -52,7 +52,7 @@ | E.cs:302:9:302:9 | access to local variable s | Variable $@ may be null at this access because of $@ assignment. | E.cs:301:13:301:13 | s | s | E.cs:301:13:301:27 | String s = ... | this | | E.cs:343:9:343:9 | access to local variable x | Variable $@ may be null at this access because of $@ assignment. | E.cs:342:13:342:13 | x | x | E.cs:342:13:342:32 | String x = ... | this | | E.cs:349:9:349:9 | access to local variable x | Variable $@ may be null at this access because of $@ assignment. | E.cs:348:17:348:17 | x | x | E.cs:348:17:348:36 | dynamic x = ... | this | -| E.cs:366:41:366:41 | access to parameter s | Variable $@ may be null at this access because the parameter has a null default value. | E.cs:366:28:366:28 | s | s | E.cs:366:32:366:35 | null | this | +| E.cs:366:41:366:41 | access to parameter s | Variable $@ may be null at this access because of $@ assignment. | E.cs:366:28:366:28 | s | s | E.cs:366:32:366:35 | null | this | | E.cs:375:20:375:20 | access to local variable s | Variable $@ may be null at this access because of $@ assignment. | E.cs:374:17:374:17 | s | s | E.cs:374:17:374:31 | String s = ... | this | | E.cs:417:34:417:34 | access to parameter i | Variable $@ may be null at this access because it has a nullable type. | E.cs:415:27:415:27 | i | i | E.cs:415:27:415:27 | i | this | | E.cs:423:38:423:38 | access to parameter i | Variable $@ may be null at this access because it has a nullable type. | E.cs:420:27:420:27 | i | i | E.cs:420:27:420:27 | i | this | From b6c464281babcea0692e799a98c82dadcde708c5 Mon Sep 17 00:00:00 2001 From: Tom Hvitved Date: Tue, 28 Apr 2026 14:22:28 +0200 Subject: [PATCH 113/260] C#: Move internal logic into `internal/ControlFlowGraph.qll` --- csharp/ql/lib/printCfg.ql | 1 + .../csharp/controlflow/ControlFlowGraph.qll | 284 +----------------- .../controlflow/internal/ControlFlowGraph.qll | 282 +++++++++++++++++ 3 files changed, 284 insertions(+), 283 deletions(-) create mode 100644 csharp/ql/lib/semmle/code/csharp/controlflow/internal/ControlFlowGraph.qll diff --git a/csharp/ql/lib/printCfg.ql b/csharp/ql/lib/printCfg.ql index c80b9b84ee05..c9910428bb09 100644 --- a/csharp/ql/lib/printCfg.ql +++ b/csharp/ql/lib/printCfg.ql @@ -8,6 +8,7 @@ */ import csharp +import semmle.code.csharp.controlflow.internal.ControlFlowGraph external string selectedSourceFile(); diff --git a/csharp/ql/lib/semmle/code/csharp/controlflow/ControlFlowGraph.qll b/csharp/ql/lib/semmle/code/csharp/controlflow/ControlFlowGraph.qll index f2ed17187150..c56d3dab420c 100644 --- a/csharp/ql/lib/semmle/code/csharp/controlflow/ControlFlowGraph.qll +++ b/csharp/ql/lib/semmle/code/csharp/controlflow/ControlFlowGraph.qll @@ -3,7 +3,7 @@ */ import csharp -private import codeql.controlflow.ControlFlowGraph +private import internal.ControlFlowGraph private import codeql.controlflow.SuccessorType private import semmle.code.csharp.commons.Compilation private import semmle.code.csharp.controlflow.internal.NonReturning as NonReturning @@ -19,224 +19,6 @@ private import Cfg1 private import Cfg2 import Public -/** - * INTERNAL: Do not use. - * - * Provides an implementation of the AST signature for C#. - */ -module Ast implements AstSig { - private import csharp as CS - - class AstNode = ControlFlowElementOrCallable; - - additional predicate skipControlFlow(AstNode e) { - e instanceof TypeAccess and - not e instanceof TypeAccessPatternExpr - or - not e.getFile().fromSource() - } - - private AstNode getExprChild0(Expr e, int i) { - not e instanceof NameOfExpr and - not e instanceof AnonymousFunctionExpr and - not skipControlFlow(result) and - result = e.getChild(i) - } - - private AstNode getStmtChild0(Stmt s, int i) { - not s instanceof FixedStmt and - not s instanceof UsingBlockStmt and - result = s.getChild(i) - or - s = - any(FixedStmt fs | - result = fs.getVariableDeclExpr(i) - or - result = fs.getBody() and - i = max(int j | exists(fs.getVariableDeclExpr(j))) + 1 - ) - or - s = - any(UsingBlockStmt us | - result = us.getExpr() and - i = 0 - or - result = us.getVariableDeclExpr(i) - or - result = us.getBody() and - i = max([1, count(us.getVariableDeclExpr(_))]) - ) - } - - AstNode getChild(AstNode n, int index) { - result = getStmtChild0(n, index) - or - result = getExprChild0(n, index) - } - - private AstNode getParent(AstNode n) { n = getChild(result, _) } - - Callable getEnclosingCallable(AstNode node) { - result = node.(ControlFlowElement).getEnclosingCallable() - or - result.(ObjectInitMethod).initializes(getParent*(node)) - or - Initializers::staticMemberInitializer(result, getParent*(node)) - or - result = node.(Parameter).getCallable() - or - not skipControlFlow(node) and - getParent*(node) = any(Parameter p | result = p.getCallable()).getDefaultValue() - } - - class Callable extends CS::Callable { - Callable() { this.isUnboundDeclaration() } - } - - AstNode callableGetBody(Callable c) { - not skipControlFlow(result) and - result = c.getBody() - } - - final private class ParameterFinal = CS::Parameter; - - class Parameter extends ParameterFinal { - Expr getDefaultValue() { - // Avoid combinatorial explosions for callables with multiple bodies - result = unique( | | super.getDefaultValue()) - } - } - - Parameter callableGetParameter(Callable c, int i) { - not skipControlFlow(result) and - result = c.getParameter(i) - } - - class Stmt = CS::Stmt; - - class Expr = CS::Expr; - - class BlockStmt = CS::BlockStmt; - - class ExprStmt = CS::ExprStmt; - - class IfStmt = CS::IfStmt; - - class LoopStmt = CS::LoopStmt; - - class WhileStmt = CS::WhileStmt; - - class DoStmt = CS::DoStmt; - - final private class FinalForStmt = CS::ForStmt; - - class ForStmt extends FinalForStmt { - Expr getInit(int index) { result = this.getInitializer(index) } - } - - final private class FinalForeachStmt = CS::ForeachStmt; - - class ForeachStmt extends FinalForeachStmt { - Expr getVariable() { - result = this.getVariableDeclExpr() or result = this.getVariableDeclTuple() - } - - Expr getCollection() { result = this.getIterableExpr() } - } - - class BreakStmt = CS::BreakStmt; - - class ContinueStmt = CS::ContinueStmt; - - class GotoStmt = CS::GotoStmt; - - class ReturnStmt = CS::ReturnStmt; - - class Throw = CS::ThrowElement; - - final private class FinalTryStmt = CS::TryStmt; - - class TryStmt extends FinalTryStmt { - Stmt getBody() { result = this.getBlock() } - - CatchClause getCatch(int index) { result = this.getCatchClause(index) } - - Stmt getFinally() { result = super.getFinally() } - } - - final private class FinalCatchClause = CS::CatchClause; - - class CatchClause extends FinalCatchClause { - AstNode getVariable() { result = this.(CS::SpecificCatchClause).getVariableDeclExpr() } - - Expr getCondition() { result = this.getFilterClause() } - - Stmt getBody() { result = this.getBlock() } - } - - final private class FinalSwitch = CS::Switch; - - class Switch extends FinalSwitch { - Case getCase(int index) { result = super.getCase(index) } - - Stmt getStmt(int index) { result = this.(CS::SwitchStmt).getStmt(index) } - } - - final private class FinalCase = CS::Case; - - class Case extends FinalCase { - AstNode getAPattern() { result = this.getPattern() } - - Expr getGuard() { result = this.getCondition() } - - AstNode getBody() { result = super.getBody() } - } - - class DefaultCase extends Case instanceof CS::DefaultCase { } - - class ConditionalExpr = CS::ConditionalExpr; - - class BinaryExpr = CS::BinaryOperation; - - class LogicalAndExpr = CS::LogicalAndExpr; - - class LogicalOrExpr = CS::LogicalOrExpr; - - class NullCoalescingExpr = CS::NullCoalescingExpr; - - class UnaryExpr = CS::UnaryOperation; - - class LogicalNotExpr = CS::LogicalNotExpr; - - class Assignment = CS::Assignment; - - class AssignExpr = CS::AssignExpr; - - class CompoundAssignment = CS::AssignOperation; - - class AssignLogicalAndExpr extends CompoundAssignment { - AssignLogicalAndExpr() { none() } - } - - class AssignLogicalOrExpr extends CompoundAssignment { - AssignLogicalOrExpr() { none() } - } - - class AssignNullCoalescingExpr = CS::AssignCoalesceExpr; - - final private class FinalBoolLiteral = CS::BoolLiteral; - - class BooleanLiteral extends FinalBoolLiteral { - boolean getValue() { result = this.getBoolValue() } - } - - final private class FinalIsExpr = CS::IsExpr; - - class PatternMatchExpr extends FinalIsExpr { - AstNode getPattern() { result = super.getPattern() } - } -} - /** * A compilation. * @@ -270,70 +52,6 @@ private CompilationExt getCompilation(Element e) { result = TBuildless() } -private module Initializers { - private import semmle.code.csharp.ExprOrStmtParent as ExprOrStmtParent - - /** - * The `expr_parent_top_level_adjusted()` relation restricted to exclude relations - * between properties and their getters' expression bodies in properties such as - * `int P => 0`. - * - * This is in order to only associate the expression body with one CFG scope, namely - * the getter (and not the declaration itself). - */ - private predicate expr_parent_top_level_adjusted2( - Expr child, int i, @top_level_exprorstmt_parent parent - ) { - ExprOrStmtParent::expr_parent_top_level_adjusted(child, i, parent) and - not exists(Getter g | - g.getDeclaration() = parent and - i = 0 - ) - } - - /** - * Holds if `init` is a static member initializer and `staticCtor` is the - * static constructor in the same declaring type. Hence, `staticCtor` can be - * considered to execute `init` prior to the execution of its body. - */ - predicate staticMemberInitializer(Constructor staticCtor, Expr init) { - exists(Assignable a | - a.(Modifiable).isStatic() and - expr_parent_top_level_adjusted2(init, _, a) and - a.getDeclaringType() = staticCtor.getDeclaringType() and - staticCtor.isStatic() - ) - } - - /** - * Gets the `i`th static member initializer expression for static constructor `staticCtor`. - */ - Expr initializedStaticMemberOrder(Constructor staticCtor, int i) { - result = - rank[i + 1](Expr init, Location l, string filepath, int startline, int startcolumn | - staticMemberInitializer(staticCtor, init) and - l = init.getLocation() and - l.hasLocationInfo(filepath, startline, startcolumn, _, _) - | - init order by startline, startcolumn, filepath - ) - } - - /** - * Gets the `i`th member initializer expression for object initializer method `obinit`. - */ - AssignExpr initializedInstanceMemberOrder(ObjectInitMethod obinit, int i) { - result = - rank[i + 1](AssignExpr ae0, Location l, string filepath, int startline, int startcolumn | - obinit.initializes(ae0) and - l = ae0.getLocation() and - l.hasLocationInfo(filepath, startline, startcolumn, _, _) - | - ae0 order by startline, startcolumn, filepath - ) - } -} - private module Exceptions { private import semmle.code.csharp.commons.Assertions diff --git a/csharp/ql/lib/semmle/code/csharp/controlflow/internal/ControlFlowGraph.qll b/csharp/ql/lib/semmle/code/csharp/controlflow/internal/ControlFlowGraph.qll new file mode 100644 index 000000000000..c44a3ef4a55e --- /dev/null +++ b/csharp/ql/lib/semmle/code/csharp/controlflow/internal/ControlFlowGraph.qll @@ -0,0 +1,282 @@ +import csharp +import codeql.controlflow.ControlFlowGraph + +module Initializers { + private import semmle.code.csharp.ExprOrStmtParent as ExprOrStmtParent + + /** + * The `expr_parent_top_level_adjusted()` relation restricted to exclude relations + * between properties and their getters' expression bodies in properties such as + * `int P => 0`. + * + * This is in order to only associate the expression body with one CFG scope, namely + * the getter (and not the declaration itself). + */ + private predicate expr_parent_top_level_adjusted2( + Expr child, int i, @top_level_exprorstmt_parent parent + ) { + ExprOrStmtParent::expr_parent_top_level_adjusted(child, i, parent) and + not exists(Getter g | + g.getDeclaration() = parent and + i = 0 + ) + } + + /** + * Holds if `init` is a static member initializer and `staticCtor` is the + * static constructor in the same declaring type. Hence, `staticCtor` can be + * considered to execute `init` prior to the execution of its body. + */ + predicate staticMemberInitializer(Constructor staticCtor, Expr init) { + exists(Assignable a | + a.(Modifiable).isStatic() and + expr_parent_top_level_adjusted2(init, _, a) and + a.getDeclaringType() = staticCtor.getDeclaringType() and + staticCtor.isStatic() + ) + } + + /** + * Gets the `i`th static member initializer expression for static constructor `staticCtor`. + */ + Expr initializedStaticMemberOrder(Constructor staticCtor, int i) { + result = + rank[i + 1](Expr init, Location l, string filepath, int startline, int startcolumn | + staticMemberInitializer(staticCtor, init) and + l = init.getLocation() and + l.hasLocationInfo(filepath, startline, startcolumn, _, _) + | + init order by startline, startcolumn, filepath + ) + } + + /** + * Gets the `i`th member initializer expression for object initializer method `obinit`. + */ + AssignExpr initializedInstanceMemberOrder(ObjectInitMethod obinit, int i) { + result = + rank[i + 1](AssignExpr ae0, Location l, string filepath, int startline, int startcolumn | + obinit.initializes(ae0) and + l = ae0.getLocation() and + l.hasLocationInfo(filepath, startline, startcolumn, _, _) + | + ae0 order by startline, startcolumn, filepath + ) + } +} + +/** + * Provides an implementation of the AST signature for C#. + */ +module Ast implements AstSig { + private import csharp as CS + + class AstNode = ControlFlowElementOrCallable; + + additional predicate skipControlFlow(AstNode e) { + e instanceof TypeAccess and + not e instanceof TypeAccessPatternExpr + or + not e.getFile().fromSource() + } + + private AstNode getExprChild0(Expr e, int i) { + not e instanceof NameOfExpr and + not e instanceof AnonymousFunctionExpr and + not skipControlFlow(result) and + result = e.getChild(i) + } + + private AstNode getStmtChild0(Stmt s, int i) { + not s instanceof FixedStmt and + not s instanceof UsingBlockStmt and + result = s.getChild(i) + or + s = + any(FixedStmt fs | + result = fs.getVariableDeclExpr(i) + or + result = fs.getBody() and + i = max(int j | exists(fs.getVariableDeclExpr(j))) + 1 + ) + or + s = + any(UsingBlockStmt us | + result = us.getExpr() and + i = 0 + or + result = us.getVariableDeclExpr(i) + or + result = us.getBody() and + i = max([1, count(us.getVariableDeclExpr(_))]) + ) + } + + AstNode getChild(AstNode n, int index) { + result = getStmtChild0(n, index) + or + result = getExprChild0(n, index) + } + + private AstNode getParent(AstNode n) { n = getChild(result, _) } + + Callable getEnclosingCallable(AstNode node) { + result = node.(ControlFlowElement).getEnclosingCallable() + or + result.(ObjectInitMethod).initializes(getParent*(node)) + or + Initializers::staticMemberInitializer(result, getParent*(node)) + or + result = node.(Parameter).getCallable() + or + not skipControlFlow(node) and + getParent*(node) = any(Parameter p | result = p.getCallable()).getDefaultValue() + } + + class Callable extends CS::Callable { + Callable() { this.isUnboundDeclaration() } + } + + AstNode callableGetBody(Callable c) { + not skipControlFlow(result) and + result = c.getBody() + } + + final private class ParameterFinal = CS::Parameter; + + class Parameter extends ParameterFinal { + Expr getDefaultValue() { + // Avoid combinatorial explosions for callables with multiple bodies + result = unique( | | super.getDefaultValue()) + } + } + + Parameter callableGetParameter(Callable c, int i) { + not skipControlFlow(result) and + result = c.getParameter(i) + } + + class Stmt = CS::Stmt; + + class Expr = CS::Expr; + + class BlockStmt = CS::BlockStmt; + + class ExprStmt = CS::ExprStmt; + + class IfStmt = CS::IfStmt; + + class LoopStmt = CS::LoopStmt; + + class WhileStmt = CS::WhileStmt; + + class DoStmt = CS::DoStmt; + + final private class FinalForStmt = CS::ForStmt; + + class ForStmt extends FinalForStmt { + Expr getInit(int index) { result = this.getInitializer(index) } + } + + final private class FinalForeachStmt = CS::ForeachStmt; + + class ForeachStmt extends FinalForeachStmt { + Expr getVariable() { + result = this.getVariableDeclExpr() or result = this.getVariableDeclTuple() + } + + Expr getCollection() { result = this.getIterableExpr() } + } + + class BreakStmt = CS::BreakStmt; + + class ContinueStmt = CS::ContinueStmt; + + class GotoStmt = CS::GotoStmt; + + class ReturnStmt = CS::ReturnStmt; + + class Throw = CS::ThrowElement; + + final private class FinalTryStmt = CS::TryStmt; + + class TryStmt extends FinalTryStmt { + Stmt getBody() { result = this.getBlock() } + + CatchClause getCatch(int index) { result = this.getCatchClause(index) } + + Stmt getFinally() { result = super.getFinally() } + } + + final private class FinalCatchClause = CS::CatchClause; + + class CatchClause extends FinalCatchClause { + AstNode getVariable() { result = this.(CS::SpecificCatchClause).getVariableDeclExpr() } + + Expr getCondition() { result = this.getFilterClause() } + + Stmt getBody() { result = this.getBlock() } + } + + final private class FinalSwitch = CS::Switch; + + class Switch extends FinalSwitch { + Case getCase(int index) { result = super.getCase(index) } + + Stmt getStmt(int index) { result = this.(CS::SwitchStmt).getStmt(index) } + } + + final private class FinalCase = CS::Case; + + class Case extends FinalCase { + AstNode getAPattern() { result = this.getPattern() } + + Expr getGuard() { result = this.getCondition() } + + AstNode getBody() { result = super.getBody() } + } + + class DefaultCase extends Case instanceof CS::DefaultCase { } + + class ConditionalExpr = CS::ConditionalExpr; + + class BinaryExpr = CS::BinaryOperation; + + class LogicalAndExpr = CS::LogicalAndExpr; + + class LogicalOrExpr = CS::LogicalOrExpr; + + class NullCoalescingExpr = CS::NullCoalescingExpr; + + class UnaryExpr = CS::UnaryOperation; + + class LogicalNotExpr = CS::LogicalNotExpr; + + class Assignment = CS::Assignment; + + class AssignExpr = CS::AssignExpr; + + class CompoundAssignment = CS::AssignOperation; + + class AssignLogicalAndExpr extends CompoundAssignment { + AssignLogicalAndExpr() { none() } + } + + class AssignLogicalOrExpr extends CompoundAssignment { + AssignLogicalOrExpr() { none() } + } + + class AssignNullCoalescingExpr = CS::AssignCoalesceExpr; + + final private class FinalBoolLiteral = CS::BoolLiteral; + + class BooleanLiteral extends FinalBoolLiteral { + boolean getValue() { result = this.getBoolValue() } + } + + final private class FinalIsExpr = CS::IsExpr; + + class PatternMatchExpr extends FinalIsExpr { + AstNode getPattern() { result = super.getPattern() } + } +} From 99023f8b59a7145d940c473eb278b4b733ce6c21 Mon Sep 17 00:00:00 2001 From: Tom Hvitved Date: Wed, 29 Apr 2026 14:02:43 +0200 Subject: [PATCH 114/260] C#: Add upgrade/downgrade scripts --- .../old.dbscheme | 1505 +++++++++++++++++ .../semmlecode.csharp.dbscheme | 1505 +++++++++++++++++ .../upgrade.properties | 2 + .../old.dbscheme | 1505 +++++++++++++++++ .../semmlecode.csharp.dbscheme | 1505 +++++++++++++++++ .../upgrade.properties | 2 + 6 files changed, 6024 insertions(+) create mode 100644 csharp/downgrades/3cabc77473cbbda95edebafea345c2e3fdfa12d9/old.dbscheme create mode 100644 csharp/downgrades/3cabc77473cbbda95edebafea345c2e3fdfa12d9/semmlecode.csharp.dbscheme create mode 100644 csharp/downgrades/3cabc77473cbbda95edebafea345c2e3fdfa12d9/upgrade.properties create mode 100644 csharp/ql/lib/upgrades/ea7ad33252e550241975676f09fcc7b0a703deab/old.dbscheme create mode 100644 csharp/ql/lib/upgrades/ea7ad33252e550241975676f09fcc7b0a703deab/semmlecode.csharp.dbscheme create mode 100644 csharp/ql/lib/upgrades/ea7ad33252e550241975676f09fcc7b0a703deab/upgrade.properties diff --git a/csharp/downgrades/3cabc77473cbbda95edebafea345c2e3fdfa12d9/old.dbscheme b/csharp/downgrades/3cabc77473cbbda95edebafea345c2e3fdfa12d9/old.dbscheme new file mode 100644 index 000000000000..3cabc77473cb --- /dev/null +++ b/csharp/downgrades/3cabc77473cbbda95edebafea345c2e3fdfa12d9/old.dbscheme @@ -0,0 +1,1505 @@ +/* This is a dummy line to alter the dbscheme, so we can make a database upgrade + * without actually changing any of the dbscheme predicates. It contains a date + * to allow for such updates in the future as well. + * + * 2021-07-14 + * + * DO NOT remove this comment carelessly, since it can revert the dbscheme back to a + * previously seen state (matching a previously seen SHA), which would make the upgrade + * mechanism not work properly. + */ + +/** + * An invocation of the compiler. Note that more than one file may be + * compiled per invocation. For example, this command compiles three + * source files: + * + * csc f1.cs f2.cs f3.cs + * + * The `id` simply identifies the invocation, while `cwd` is the working + * directory from which the compiler was invoked. + */ +compilations( + unique int id : @compilation, + string cwd : string ref +); + +compilation_info( + int id : @compilation ref, + string info_key: string ref, + string info_value: string ref +) + +/** + * The arguments that were passed to the extractor for a compiler + * invocation. If `id` is for the compiler invocation + * + * csc f1.cs f2.cs f3.cs + * + * then typically there will be rows for + * + * num | arg + * --- | --- + * 0 | --compiler + * 1 | *path to compiler* + * 2 | f1.cs + * 3 | f2.cs + * 4 | f3.cs + */ +#keyset[id, num] +compilation_args( + int id : @compilation ref, + int num : int ref, + string arg : string ref +); + +/** + * The expanded arguments that were passed to the extractor for a + * compiler invocation. This is similar to `compilation_args`, but + * for a `@someFile.rsp` argument, it includes the arguments from that + * file, rather than just taking the argument literally. + */ +#keyset[id, num] +compilation_expanded_args( + int id : @compilation ref, + int num : int ref, + string arg : string ref +); + +/** + * The source files that are compiled by a compiler invocation. + * If `id` is for the compiler invocation + * + * csc f1.cs f2.cs f3.cs + * + * then there will be rows for + * + * num | arg + * --- | --- + * 0 | f1.cs + * 1 | f2.cs + * 2 | f3.cs + */ +#keyset[id, num] +compilation_compiling_files( + int id : @compilation ref, + int num : int ref, + int file : @file ref +); + +/** + * The references used by a compiler invocation. + * If `id` is for the compiler invocation + * + * csc f1.cs f2.cs f3.cs /r:ref1.dll /r:ref2.dll /r:ref3.dll + * + * then there will be rows for + * + * num | arg + * --- | --- + * 0 | ref1.dll + * 1 | ref2.dll + * 2 | ref3.dll + */ +#keyset[id, num] +compilation_referencing_files( + int id : @compilation ref, + int num : int ref, + int file : @file ref +); + +/** + * The time taken by the extractor for a compiler invocation. + * + * For each file `num`, there will be rows for + * + * kind | seconds + * ---- | --- + * 1 | CPU seconds used by the extractor frontend + * 2 | Elapsed seconds during the extractor frontend + * 3 | CPU seconds used by the extractor backend + * 4 | Elapsed seconds during the extractor backend + */ +#keyset[id, num, kind] +compilation_time( + int id : @compilation ref, + int num : int ref, + /* kind: + 1 = frontend_cpu_seconds + 2 = frontend_elapsed_seconds + 3 = extractor_cpu_seconds + 4 = extractor_elapsed_seconds + */ + int kind : int ref, + float seconds : float ref +); + +/** + * An error or warning generated by the extractor. + * The diagnostic message `diagnostic` was generated during compiler + * invocation `compilation`, and is the `file_number_diagnostic_number`th + * message generated while extracting the `file_number`th file of that + * invocation. + */ +#keyset[compilation, file_number, file_number_diagnostic_number] +diagnostic_for( + unique int diagnostic : @diagnostic ref, + int compilation : @compilation ref, + int file_number : int ref, + int file_number_diagnostic_number : int ref +); + +diagnostics( + unique int id: @diagnostic, + int severity: int ref, + string error_tag: string ref, + string error_message: string ref, + string full_error_message: string ref, + int location: @location ref +); + +extractor_messages( + unique int id: @extractor_message, + int severity: int ref, + string origin : string ref, + string text : string ref, + string entity : string ref, + int location: @location ref, + string stack_trace : string ref +); + +/** + * If extraction was successful, then `cpu_seconds` and + * `elapsed_seconds` are the CPU time and elapsed time (respectively) + * that extraction took for compiler invocation `id`. + */ +compilation_finished( + unique int id : @compilation ref, + float cpu_seconds : float ref, + float elapsed_seconds : float ref +); + +compilation_assembly( + unique int id : @compilation ref, + int assembly: @assembly ref +) + +// Populated by the CSV extractor +externalData( + int id: @externalDataElement, + string path: string ref, + int column: int ref, + string value: string ref); + +sourceLocationPrefix( + string prefix: string ref); + +/* + * Overlay support + */ + +/** + * The CLI will automatically emit the tuple `databaseMetadata("isOverlay", "true")`, + * along with an `overlayChangedFiles` tuple for each new/modified/deleted file, + * when building an overlay database, and these can be used by the discard predicates. + */ +databaseMetadata( + string metadataKey : string ref, + string value : string ref +); + +overlayChangedFiles( + string path : string ref +); + +/* + * C# dbscheme + */ + +/** ELEMENTS **/ + +@element = @declaration | @stmt | @expr | @modifier | @attribute | @namespace_declaration + | @using_directive | @type_parameter_constraints | @externalDataElement + | @xmllocatable | @asp_element | @namespace | @preprocessor_directive; + +@declaration = @callable | @generic | @assignable | @namespace; + +@named_element = @namespace | @declaration; + +@declaration_with_accessors = @property | @indexer | @event; + +@assignable = @variable | @assignable_with_accessors | @event; + +@assignable_with_accessors = @property | @indexer; + +@attributable = @assembly | @field | @parameter | @operator | @method | @constructor + | @destructor | @callable_accessor | @value_or_ref_type | @declaration_with_accessors + | @local_function | @lambda_expr; + +/** LOCATIONS, ASEMMBLIES, MODULES, FILES and FOLDERS **/ + +@location = @location_default | @assembly; + +@locatable = @declaration_with_accessors | @callable_accessor | @declaration_or_directive + | @diagnostic | @extractor_message | @preprocessor_directive | @attribute | @type_mention | @type_parameter_constraints + | @declaration_with_accessors | @callable_accessor | @operator | @method + | @constructor | @destructor | @field | @local_variable | @parameter | @stmt | @expr + | @xmllocatable | @commentline | @commentblock | @asp_element + +locations_default( + unique int id: @location_default, + int file: @file ref, + int beginLine: int ref, + int beginColumn: int ref, + int endLine: int ref, + int endColumn: int ref); + +locations_mapped( + unique int id: @location_default ref, + int mapped_to: @location_default ref); + +@sourceline = @file | @callable | @xmllocatable; + +numlines( + int element_id: @sourceline ref, + int num_lines: int ref, + int num_code: int ref, + int num_comment: int ref); + +assemblies( + unique int id: @assembly, + int file: @file ref, + string fullname: string ref, + string name: string ref, + string version: string ref); + +files( + unique int id: @file, + string name: string ref); + +folders( + unique int id: @folder, + string name: string ref); + +@container = @folder | @file ; + +containerparent( + int parent: @container ref, + unique int child: @container ref); + +file_extraction_mode( + unique int file: @file ref, + int mode: int ref + /* 0 = normal, 1 = standalone extractor */ + ); + +/** NAMESPACES **/ + +@type_container = @namespace | @type; + +namespaces( + unique int id: @namespace, + string name: string ref); + +namespace_declarations( + unique int id: @namespace_declaration, + int namespace_id: @namespace ref); + +namespace_declaration_location( + unique int id: @namespace_declaration ref, + int loc: @location ref); + +parent_namespace( + unique int child_id: @type_container ref, + int namespace_id: @namespace ref); + +@declaration_or_directive = @namespace_declaration | @type | @using_directive; + +parent_namespace_declaration( + int child_id: @declaration_or_directive ref, // cannot be unique because of partial classes + int namespace_id: @namespace_declaration ref); + +@using_directive = @using_namespace_directive | @using_static_directive; + +using_global( + unique int id: @using_directive ref +); + +using_namespace_directives( + unique int id: @using_namespace_directive, + int namespace_id: @namespace ref); + +using_static_directives( + unique int id: @using_static_directive, + int type_id: @type_or_ref ref); + +using_directive_location( + unique int id: @using_directive ref, + int loc: @location ref); + +@preprocessor_directive = @pragma_warning | @pragma_checksum | @directive_define | @directive_undefine | @directive_warning + | @directive_error | @directive_nullable | @directive_line | @directive_region | @directive_endregion | @directive_if + | @directive_elif | @directive_else | @directive_endif; + +@conditional_directive = @directive_if | @directive_elif; +@branch_directive = @directive_if | @directive_elif | @directive_else; + +directive_ifs( + unique int id: @directive_if, + int branchTaken: int ref, /* 0: false, 1: true */ + int conditionValue: int ref); /* 0: false, 1: true */ + +directive_elifs( + unique int id: @directive_elif, + int branchTaken: int ref, /* 0: false, 1: true */ + int conditionValue: int ref, /* 0: false, 1: true */ + int parent: @directive_if ref, + int index: int ref); + +directive_elses( + unique int id: @directive_else, + int branchTaken: int ref, /* 0: false, 1: true */ + int parent: @directive_if ref, + int index: int ref); + +#keyset[id, start] +directive_endifs( + unique int id: @directive_endif, + unique int start: @directive_if ref); + +directive_define_symbols( + unique int id: @define_symbol_expr ref, + string name: string ref); + +directive_regions( + unique int id: @directive_region, + string name: string ref); + +#keyset[id, start] +directive_endregions( + unique int id: @directive_endregion, + unique int start: @directive_region ref); + +directive_lines( + unique int id: @directive_line, + int kind: int ref); /* 0: default, 1: hidden, 2: numeric, 3: span */ + +directive_line_value( + unique int id: @directive_line ref, + int line: int ref); + +directive_line_file( + unique int id: @directive_line ref, + int file: @file ref); + +directive_line_offset( + unique int id: @directive_line ref, + int offset: int ref); + +directive_line_span( + unique int id: @directive_line ref, + int startLine: int ref, + int startColumn: int ref, + int endLine: int ref, + int endColumn: int ref); + +directive_nullables( + unique int id: @directive_nullable, + int setting: int ref, /* 0: disable, 1: enable, 2: restore */ + int target: int ref); /* 0: none, 1: annotations, 2: warnings */ + +directive_warnings( + unique int id: @directive_warning, + string message: string ref); + +directive_errors( + unique int id: @directive_error, + string message: string ref); + +directive_undefines( + unique int id: @directive_undefine, + string name: string ref); + +directive_defines( + unique int id: @directive_define, + string name: string ref); + +pragma_checksums( + unique int id: @pragma_checksum, + int file: @file ref, + string guid: string ref, + string bytes: string ref); + +pragma_warnings( + unique int id: @pragma_warning, + int kind: int ref /* 0 = disable, 1 = restore */); + +#keyset[id, index] +pragma_warning_error_codes( + int id: @pragma_warning ref, + string errorCode: string ref, + int index: int ref); + +preprocessor_directive_location( + unique int id: @preprocessor_directive ref, + int loc: @location ref); + +preprocessor_directive_compilation( + int id: @preprocessor_directive ref, + int compilation: @compilation ref); + +preprocessor_directive_active( + unique int id: @preprocessor_directive ref, + int active: int ref); /* 0: false, 1: true */ + +/** TYPES **/ + +types( + unique int id: @type, + int kind: int ref, + string name: string ref); + +case @type.kind of + 1 = @bool_type +| 2 = @char_type +| 3 = @decimal_type +| 4 = @sbyte_type +| 5 = @short_type +| 6 = @int_type +| 7 = @long_type +| 8 = @byte_type +| 9 = @ushort_type +| 10 = @uint_type +| 11 = @ulong_type +| 12 = @float_type +| 13 = @double_type +| 14 = @enum_type +| 15 = @struct_type +| 17 = @class_type +| 19 = @interface_type +| 20 = @delegate_type +| 21 = @null_type +| 22 = @type_parameter +| 23 = @pointer_type +| 24 = @nullable_type +| 25 = @array_type +| 26 = @void_type +| 27 = @int_ptr_type +| 28 = @uint_ptr_type +| 29 = @dynamic_type +| 30 = @arglist_type +| 31 = @unknown_type +| 32 = @tuple_type +| 33 = @function_pointer_type +| 34 = @inline_array_type +| 35 = @extension_type + ; + +@simple_type = @bool_type | @char_type | @integral_type | @floating_point_type | @decimal_type; +@integral_type = @signed_integral_type | @unsigned_integral_type; +@signed_integral_type = @sbyte_type | @short_type | @int_type | @long_type; +@unsigned_integral_type = @byte_type | @ushort_type | @uint_type | @ulong_type; +@floating_point_type = @float_type | @double_type; +@value_type = @simple_type | @enum_type | @struct_type | @nullable_type | @int_ptr_type + | @uint_ptr_type | @tuple_type | @void_type | @inline_array_type; +@ref_type = @class_type | @interface_type | @array_type | @delegate_type | @null_type + | @dynamic_type | @extension_type; +@value_or_ref_type = @value_type | @ref_type; + +typerefs( + unique int id: @typeref, + string name: string ref); + +typeref_type( + int id: @typeref ref, + unique int typeId: @type ref); + +@type_or_ref = @type | @typeref; + +array_element_type( + unique int array: @array_type ref, + int dimension: int ref, + int rank: int ref, + int element: @type_or_ref ref); + +nullable_underlying_type( + unique int nullable: @nullable_type ref, + int underlying: @type_or_ref ref); + +pointer_referent_type( + unique int pointer: @pointer_type ref, + int referent: @type_or_ref ref); + +enum_underlying_type( + unique int enum_id: @enum_type ref, + int underlying_type_id: @type_or_ref ref); + +delegate_return_type( + unique int delegate_id: @delegate_type ref, + int return_type_id: @type_or_ref ref); + +function_pointer_return_type( + unique int function_pointer_id: @function_pointer_type ref, + int return_type_id: @type_or_ref ref); + +extension_receiver_type( + unique int extension: @extension_type ref, + int receiver_type_id: @type_or_ref ref); + +extend( + int sub: @type ref, + int super: @type_or_ref ref); + +anonymous_types( + unique int id: @type ref); + +@interface_or_ref = @interface_type | @typeref; + +implement( + int sub: @type ref, + int super: @type_or_ref ref); + +type_location( + int id: @type ref, + int loc: @location ref); + +tuple_underlying_type( + unique int tuple: @tuple_type ref, + int struct: @type_or_ref ref); + +#keyset[tuple, index] +tuple_element( + int tuple: @tuple_type ref, + int index: int ref, + unique int field: @field ref); + +attributes( + unique int id: @attribute, + int kind: int ref, + int type_id: @type_or_ref ref, + int target: @attributable ref); + +case @attribute.kind of + 0 = @attribute_default +| 1 = @attribute_return +| 2 = @attribute_assembly +| 3 = @attribute_module +; + +attribute_location( + int id: @attribute ref, + int loc: @location ref); + +@type_mention_parent = @element | @type_mention; + +type_mention( + unique int id: @type_mention, + int type_id: @type_or_ref ref, + int parent: @type_mention_parent ref); + +type_mention_location( + unique int id: @type_mention ref, + int loc: @location ref); + +@has_type_annotation = @assignable | @type_parameter | @callable | @expr | @delegate_type | @generic | @function_pointer_type; + +/** + * A direct annotation on an entity, for example `string? x;`. + * + * Annotations: + * 2 = reftype is not annotated "!" + * 3 = reftype is annotated "?" + * 4 = readonly ref type / in parameter + * 5 = ref type parameter, return or local variable + * 6 = out parameter + * + * Note that the annotation depends on the element it annotates. + * @assignable: The annotation is on the type of the assignable, for example the variable type. + * @type_parameter: The annotation is on the reftype constraint + * @callable: The annotation is on the return type + * @array_type: The annotation is on the element type + */ +type_annotation(int id: @has_type_annotation ref, int annotation: int ref); + +nullability(unique int nullability: @nullability, int kind: int ref); + +case @nullability.kind of + 0 = @oblivious +| 1 = @not_annotated +| 2 = @annotated +; + +#keyset[parent, index] +nullability_parent(int nullability: @nullability ref, int index: int ref, int parent: @nullability ref) + +type_nullability(int id: @has_type_annotation ref, int nullability: @nullability ref); + +/** + * The nullable flow state of an expression, as determined by Roslyn. + * 0 = none (default, not populated) + * 1 = not null + * 2 = maybe null + */ +expr_flowstate(unique int id: @expr ref, int state: int ref); + +/** GENERICS **/ + +@generic = @type | @method | @local_function; + +type_parameters( + unique int id: @type_parameter ref, + int index: int ref, + int generic_id: @generic ref, + int variance: int ref /* none = 0, out = 1, in = 2 */); + +#keyset[constructed_id, index] +type_arguments( + int id: @type_or_ref ref, + int index: int ref, + int constructed_id: @generic_or_ref ref); + +@generic_or_ref = @generic | @typeref; + +constructed_generic( + unique int constructed: @generic ref, + int generic: @generic_or_ref ref); + +type_parameter_constraints( + unique int id: @type_parameter_constraints, + int param_id: @type_parameter ref); + +type_parameter_constraints_location( + int id: @type_parameter_constraints ref, + int loc: @location ref); + +general_type_parameter_constraints( + int id: @type_parameter_constraints ref, + int kind: int ref /* class = 1, struct = 2, new = 3 */); + +specific_type_parameter_constraints( + int id: @type_parameter_constraints ref, + int base_id: @type_or_ref ref); + +specific_type_parameter_nullability( + int id: @type_parameter_constraints ref, + int base_id: @type_or_ref ref, + int nullability: @nullability ref); + +/** FUNCTION POINTERS */ + +function_pointer_calling_conventions( + int id: @function_pointer_type ref, + int kind: int ref); + +#keyset[id, index] +has_unmanaged_calling_conventions( + int id: @function_pointer_type ref, + int index: int ref, + int conv_id: @type_or_ref ref); + +/** MODIFIERS */ + +@modifiable = @modifiable_direct | @event_accessor; + +@modifiable_direct = @member | @accessor | @local_function | @anonymous_function_expr; + +modifiers( + unique int id: @modifier, + string name: string ref); + +has_modifiers( + int id: @modifiable_direct ref, + int mod_id: @modifier ref); + +/** MEMBERS **/ + +@member = @method | @constructor | @destructor | @field | @property | @event | @operator | @indexer | @type; + +@named_exprorstmt = @goto_stmt | @labeled_stmt | @expr; + +@virtualizable = @method | @property | @indexer | @event | @operator; + +exprorstmt_name( + unique int parent_id: @named_exprorstmt ref, + string name: string ref); + +nested_types( + unique int id: @type ref, + int declaring_type_id: @type ref, + int unbound_id: @type ref); + +properties( + unique int id: @property, + string name: string ref, + int declaring_type_id: @type ref, + int type_id: @type_or_ref ref, + int unbound_id: @property ref); + +property_location( + int id: @property ref, + int loc: @location ref); + +indexers( + unique int id: @indexer, + string name: string ref, + int declaring_type_id: @type ref, + int type_id: @type_or_ref ref, + int unbound_id: @indexer ref); + +indexer_location( + int id: @indexer ref, + int loc: @location ref); + +accessors( + unique int id: @accessor, + int kind: int ref, + string name: string ref, + int declaring_member_id: @member ref, + int unbound_id: @accessor ref); + +case @accessor.kind of + 1 = @getter +| 2 = @setter + ; + +init_only_accessors( + unique int id: @accessor ref); + +accessor_location( + int id: @accessor ref, + int loc: @location ref); + +events( + unique int id: @event, + string name: string ref, + int declaring_type_id: @type ref, + int type_id: @type_or_ref ref, + int unbound_id: @event ref); + +event_location( + int id: @event ref, + int loc: @location ref); + +event_accessors( + unique int id: @event_accessor, + int kind: int ref, + string name: string ref, + int declaring_event_id: @event ref, + int unbound_id: @event_accessor ref); + +case @event_accessor.kind of + 1 = @add_event_accessor +| 2 = @remove_event_accessor + ; + +event_accessor_location( + int id: @event_accessor ref, + int loc: @location ref); + +operators( + unique int id: @operator, + string name: string ref, + string symbol: string ref, + int declaring_type_id: @type ref, + int type_id: @type_or_ref ref, + int unbound_id: @operator ref); + +operator_location( + int id: @operator ref, + int loc: @location ref); + +constant_value( + int id: @variable ref, + string value: string ref); + +/** CALLABLES **/ + +@callable = @method | @constructor | @destructor | @operator | @callable_accessor | @anonymous_function_expr | @local_function; + +@callable_accessor = @accessor | @event_accessor; + +methods( + unique int id: @method, + string name: string ref, + int declaring_type_id: @type ref, + int type_id: @type_or_ref ref, + int unbound_id: @method ref); + +method_location( + int id: @method ref, + int loc: @location ref); + +constructors( + unique int id: @constructor, + string name: string ref, + int declaring_type_id: @type ref, + int unbound_id: @constructor ref); + +constructor_location( + int id: @constructor ref, + int loc: @location ref); + +destructors( + unique int id: @destructor, + string name: string ref, + int declaring_type_id: @type ref, + int unbound_id: @destructor ref); + +destructor_location( + int id: @destructor ref, + int loc: @location ref); + +overrides( + int id: @callable ref, + int base_id: @callable ref); + +explicitly_implements( + int id: @member ref, + int interface_id: @interface_or_ref ref); + +local_functions( + unique int id: @local_function, + string name: string ref, + int return_type: @type ref, + int unbound_id: @local_function ref); + +local_function_stmts( + unique int fn: @local_function_stmt ref, + int stmt: @local_function ref); + +/** VARIABLES **/ + +@variable = @local_scope_variable | @field; + +@local_scope_variable = @local_variable | @parameter; + +fields( + unique int id: @field, + int kind: int ref, + string name: string ref, + int declaring_type_id: @type ref, + int type_id: @type_or_ref ref, + int unbound_id: @field ref); + +case @field.kind of + 1 = @addressable_field +| 2 = @constant + ; + +field_location( + int id: @field ref, + int loc: @location ref); + +localvars( + unique int id: @local_variable, + int kind: int ref, + string name: string ref, + int implicitly_typed: int ref /* 0 = no, 1 = yes */, + int type_id: @type_or_ref ref, + int parent_id: @local_var_decl_expr ref); + +case @local_variable.kind of + 1 = @addressable_local_variable +| 2 = @local_constant +| 3 = @local_variable_ref + ; + +localvar_location( + unique int id: @local_variable ref, + int loc: @location ref); + +@parameterizable = @callable | @delegate_type | @indexer | @function_pointer_type | @extension_type; + +#keyset[name, parent_id] +#keyset[index, parent_id] +params( + unique int id: @parameter, + string name: string ref, + int type_id: @type_or_ref ref, + int index: int ref, + int mode: int ref, /* value = 0, ref = 1, out = 2, params/array = 3, this = 4, in = 5, ref readonly = 6 */ + int parent_id: @parameterizable ref, + int unbound_id: @parameter ref); + +param_location( + int id: @parameter ref, + int loc: @location ref); + +@has_scoped_annotation = @local_scope_variable + +scoped_annotation( + int id: @has_scoped_annotation ref, + int kind: int ref // scoped ref = 1, scoped value = 2 + ); + +/** STATEMENTS **/ + +@exprorstmt_parent = @control_flow_element | @top_level_exprorstmt_parent; + +statements( + unique int id: @stmt, + int kind: int ref); + +#keyset[index, parent] +stmt_parent( + unique int stmt: @stmt ref, + int index: int ref, + int parent: @control_flow_element ref); + +@top_level_stmt_parent = @callable; + +// [index, parent] is not a keyset because the same parent may be compiled multiple times +stmt_parent_top_level( + unique int stmt: @stmt ref, + int index: int ref, + int parent: @top_level_stmt_parent ref); + +case @stmt.kind of + 1 = @block_stmt +| 2 = @expr_stmt +| 3 = @if_stmt +| 4 = @switch_stmt +| 5 = @while_stmt +| 6 = @do_stmt +| 7 = @for_stmt +| 8 = @foreach_stmt +| 9 = @break_stmt +| 10 = @continue_stmt +| 11 = @goto_stmt +| 12 = @goto_case_stmt +| 13 = @goto_default_stmt +| 14 = @throw_stmt +| 15 = @return_stmt +| 16 = @yield_stmt +| 17 = @try_stmt +| 18 = @checked_stmt +| 19 = @unchecked_stmt +| 20 = @lock_stmt +| 21 = @using_block_stmt +| 22 = @var_decl_stmt +| 23 = @const_decl_stmt +| 24 = @empty_stmt +| 25 = @unsafe_stmt +| 26 = @fixed_stmt +| 27 = @label_stmt +| 28 = @catch +| 29 = @case_stmt +| 30 = @local_function_stmt +| 31 = @using_decl_stmt + ; + +@using_stmt = @using_block_stmt | @using_decl_stmt; + +@labeled_stmt = @label_stmt | @case; + +@decl_stmt = @var_decl_stmt | @const_decl_stmt | @using_decl_stmt; + +@cond_stmt = @if_stmt | @switch_stmt; + +@loop_stmt = @while_stmt | @do_stmt | @for_stmt | @foreach_stmt; + +@jump_stmt = @break_stmt | @goto_any_stmt | @continue_stmt | @throw_stmt | @return_stmt + | @yield_stmt; + +@goto_any_stmt = @goto_default_stmt | @goto_case_stmt | @goto_stmt; + + +stmt_location( + unique int id: @stmt ref, + int loc: @location ref); + +catch_type( + unique int catch_id: @catch ref, + int type_id: @type_or_ref ref, + int kind: int ref /* explicit = 1, implicit = 2 */); + +foreach_stmt_info( + unique int id: @foreach_stmt ref, + int kind: int ref /* non-async = 1, async = 2 */); + +@foreach_symbol = @method | @property | @type_or_ref; + +#keyset[id, kind] +foreach_stmt_desugar( + int id: @foreach_stmt ref, + int symbol: @foreach_symbol ref, + int kind: int ref /* GetEnumeratorMethod = 1, CurrentProperty = 2, MoveNextMethod = 3, DisposeMethod = 4, ElementType = 5 */); + +/** EXPRESSIONS **/ + +expressions( + unique int id: @expr, + int kind: int ref, + int type_id: @type_or_ref ref); + +#keyset[index, parent] +expr_parent( + unique int expr: @expr ref, + int index: int ref, + int parent: @control_flow_element ref); + +@top_level_expr_parent = @attribute | @field | @property | @indexer | @parameter | @directive_if | @directive_elif; + +@top_level_exprorstmt_parent = @top_level_expr_parent | @top_level_stmt_parent; + +// [index, parent] is not a keyset because the same parent may be compiled multiple times +expr_parent_top_level( + unique int expr: @expr ref, + int index: int ref, + int parent: @top_level_exprorstmt_parent ref); + +case @expr.kind of +/* literal */ + 1 = @bool_literal_expr +| 2 = @char_literal_expr +| 3 = @decimal_literal_expr +| 4 = @int_literal_expr +| 5 = @long_literal_expr +| 6 = @uint_literal_expr +| 7 = @ulong_literal_expr +| 8 = @float_literal_expr +| 9 = @double_literal_expr +| 10 = @utf16_string_literal_expr +| 11 = @null_literal_expr +/* primary & unary */ +| 12 = @this_access_expr +| 13 = @base_access_expr +| 14 = @local_variable_access_expr +| 15 = @parameter_access_expr +| 16 = @field_access_expr +| 17 = @property_access_expr +| 18 = @method_access_expr +| 19 = @event_access_expr +| 20 = @indexer_access_expr +| 21 = @array_access_expr +| 22 = @type_access_expr +| 23 = @typeof_expr +| 24 = @method_invocation_expr +| 25 = @delegate_invocation_expr +| 26 = @operator_invocation_expr +| 27 = @cast_expr +| 28 = @object_creation_expr +| 29 = @explicit_delegate_creation_expr +| 30 = @implicit_delegate_creation_expr +| 31 = @array_creation_expr +| 32 = @default_expr +| 33 = @plus_expr +| 34 = @minus_expr +| 35 = @bit_not_expr +| 36 = @log_not_expr +| 37 = @post_incr_expr +| 38 = @post_decr_expr +| 39 = @pre_incr_expr +| 40 = @pre_decr_expr +/* multiplicative */ +| 41 = @mul_expr +| 42 = @div_expr +| 43 = @rem_expr +/* additive */ +| 44 = @add_expr +| 45 = @sub_expr +/* shift */ +| 46 = @lshift_expr +| 47 = @rshift_expr +/* relational */ +| 48 = @lt_expr +| 49 = @gt_expr +| 50 = @le_expr +| 51 = @ge_expr +/* equality */ +| 52 = @eq_expr +| 53 = @ne_expr +/* logical */ +| 54 = @bit_and_expr +| 55 = @bit_xor_expr +| 56 = @bit_or_expr +| 57 = @log_and_expr +| 58 = @log_or_expr +/* type testing */ +| 59 = @is_expr +| 60 = @as_expr +/* null coalescing */ +| 61 = @null_coalescing_expr +/* conditional */ +| 62 = @conditional_expr +/* assignment */ +| 63 = @simple_assign_expr +| 64 = @assign_add_expr +| 65 = @assign_sub_expr +| 66 = @assign_mul_expr +| 67 = @assign_div_expr +| 68 = @assign_rem_expr +| 69 = @assign_and_expr +| 70 = @assign_xor_expr +| 71 = @assign_or_expr +| 72 = @assign_lshift_expr +| 73 = @assign_rshift_expr +/* more */ +| 74 = @object_init_expr +| 75 = @collection_init_expr +| 76 = @array_init_expr +| 77 = @checked_expr +| 78 = @unchecked_expr +| 79 = @constructor_init_expr +| 80 = @add_event_expr +| 81 = @remove_event_expr +| 82 = @par_expr +| 83 = @local_var_decl_expr +| 84 = @lambda_expr +| 85 = @anonymous_method_expr +| 86 = @namespace_expr +/* dynamic */ +| 92 = @dynamic_element_access_expr +| 93 = @dynamic_member_access_expr +/* unsafe */ +| 100 = @pointer_indirection_expr +| 101 = @address_of_expr +| 102 = @sizeof_expr +/* async */ +| 103 = @await_expr +/* C# 6.0 */ +| 104 = @nameof_expr +| 105 = @interpolated_string_expr +| 106 = @unknown_expr +/* C# 7.0 */ +| 107 = @throw_expr +| 108 = @tuple_expr +| 109 = @local_function_invocation_expr +| 110 = @ref_expr +| 111 = @discard_expr +/* C# 8.0 */ +| 112 = @range_expr +| 113 = @index_expr +| 114 = @switch_expr +| 115 = @recursive_pattern_expr +| 116 = @property_pattern_expr +| 117 = @positional_pattern_expr +| 118 = @switch_case_expr +| 119 = @assign_coalesce_expr +| 120 = @suppress_nullable_warning_expr +| 121 = @namespace_access_expr +/* C# 9.0 */ +| 122 = @lt_pattern_expr +| 123 = @gt_pattern_expr +| 124 = @le_pattern_expr +| 125 = @ge_pattern_expr +| 126 = @not_pattern_expr +| 127 = @and_pattern_expr +| 128 = @or_pattern_expr +| 129 = @function_pointer_invocation_expr +| 130 = @with_expr +/* C# 11.0 */ +| 131 = @list_pattern_expr +| 132 = @slice_pattern_expr +| 133 = @urshift_expr +| 134 = @assign_urshift_expr +| 135 = @utf8_string_literal_expr +/* C# 12.0 */ +| 136 = @collection_expr +| 137 = @spread_element_expr +| 138 = @interpolated_string_insert_expr +/* Preprocessor */ +| 999 = @define_symbol_expr +; + +@switch = @switch_stmt | @switch_expr; +@case = @case_stmt | @switch_case_expr; +@pattern_match = @case | @is_expr; +@unary_pattern_expr = @not_pattern_expr; +@relational_pattern_expr = @gt_pattern_expr | @lt_pattern_expr | @ge_pattern_expr | @le_pattern_expr; +@binary_pattern_expr = @and_pattern_expr | @or_pattern_expr; + +@integer_literal_expr = @int_literal_expr | @long_literal_expr | @uint_literal_expr | @ulong_literal_expr; +@real_literal_expr = @float_literal_expr | @double_literal_expr | @decimal_literal_expr; +@string_literal_expr = @utf16_string_literal_expr | @utf8_string_literal_expr; +@literal_expr = @bool_literal_expr | @char_literal_expr | @integer_literal_expr | @real_literal_expr + | @string_literal_expr | @null_literal_expr; + +@assign_expr = @simple_assign_expr | @assign_op_expr | @local_var_decl_expr; +@assign_op_call_expr = @assign_arith_expr | @assign_bitwise_expr +@assign_op_expr = @assign_op_call_expr | @assign_event_expr | @assign_coalesce_expr; +@assign_event_expr = @add_event_expr | @remove_event_expr; + +@add_operation = @add_expr | @assign_add_expr; +@sub_operation = @sub_expr | @assign_sub_expr; +@mul_operation = @mul_expr | @assign_mul_expr; +@div_operation = @div_expr | @assign_div_expr; +@rem_operation = @rem_expr | @assign_rem_expr; +@and_operation = @bit_and_expr | @assign_and_expr; +@xor_operation = @bit_xor_expr | @assign_xor_expr; +@or_operation = @bit_or_expr | @assign_or_expr; +@lshift_operation = @lshift_expr | @assign_lshift_expr; +@rshift_operation = @rshift_expr | @assign_rshift_expr; +@urshift_operation = @urshift_expr | @assign_urshift_expr; +@null_coalescing_operation = @null_coalescing_expr | @assign_coalesce_expr; + +@assign_arith_expr = @assign_add_expr | @assign_sub_expr | @assign_mul_expr | @assign_div_expr + | @assign_rem_expr +@assign_bitwise_expr = @assign_and_expr | @assign_or_expr | @assign_xor_expr + | @assign_lshift_expr | @assign_rshift_expr | @assign_urshift_expr; + +@member_access_expr = @field_access_expr | @property_access_expr | @indexer_access_expr | @event_access_expr + | @method_access_expr | @type_access_expr | @dynamic_member_access_expr; +@access_expr = @member_access_expr | @this_access_expr | @base_access_expr | @assignable_access_expr | @namespace_access_expr; +@element_access_expr = @indexer_access_expr | @array_access_expr | @dynamic_element_access_expr; + +@local_variable_access = @local_variable_access_expr | @local_var_decl_expr; +@local_scope_variable_access_expr = @parameter_access_expr | @local_variable_access; +@variable_access_expr = @local_scope_variable_access_expr | @field_access_expr; + +@assignable_access_expr = @variable_access_expr | @property_access_expr | @element_access_expr + | @event_access_expr | @dynamic_member_access_expr; + +@objectorcollection_init_expr = @object_init_expr | @collection_init_expr; + +@delegate_creation_expr = @explicit_delegate_creation_expr | @implicit_delegate_creation_expr; + +@bin_arith_op_expr = @mul_expr | @div_expr | @rem_expr | @add_expr | @sub_expr; +@incr_op_expr = @pre_incr_expr | @post_incr_expr; +@decr_op_expr = @pre_decr_expr | @post_decr_expr; +@mut_op_expr = @incr_op_expr | @decr_op_expr; +@un_arith_op_expr = @plus_expr | @minus_expr | @mut_op_expr; +@arith_op_expr = @bin_arith_op_expr | @un_arith_op_expr; + +@ternary_log_op_expr = @conditional_expr; +@bin_log_op_expr = @log_and_expr | @log_or_expr | @null_coalescing_expr; +@un_log_op_expr = @log_not_expr; +@log_expr = @un_log_op_expr | @bin_log_op_expr | @ternary_log_op_expr; + +@bin_bit_op_expr = @bit_and_expr | @bit_or_expr | @bit_xor_expr | @lshift_expr + | @rshift_expr | @urshift_expr; +@un_bit_op_expr = @bit_not_expr; +@bit_expr = @un_bit_op_expr | @bin_bit_op_expr; + +@equality_op_expr = @eq_expr | @ne_expr; +@rel_op_expr = @gt_expr | @lt_expr| @ge_expr | @le_expr; +@comp_expr = @equality_op_expr | @rel_op_expr; + +@op_expr = @un_op | @bin_op | @ternary_op; + +@ternary_op = @ternary_log_op_expr; +@bin_op = @assign_expr | @bin_arith_op_expr | @bin_log_op_expr | @bin_bit_op_expr | @comp_expr; +@un_op = @un_arith_op_expr | @un_log_op_expr | @un_bit_op_expr | @sizeof_expr + | @pointer_indirection_expr | @address_of_expr; + +@anonymous_function_expr = @lambda_expr | @anonymous_method_expr; + +@op_invoke_expr = @operator_invocation_expr | @assign_op_call_expr +@call = @method_invocation_expr | @constructor_init_expr | @op_invoke_expr + | @delegate_invocation_expr | @object_creation_expr | @call_access_expr + | @local_function_invocation_expr | @function_pointer_invocation_expr; + +@call_access_expr = @property_access_expr | @event_access_expr | @indexer_access_expr; + +@late_bindable_expr = @dynamic_element_access_expr | @dynamic_member_access_expr + | @object_creation_expr | @method_invocation_expr | @op_invoke_expr; + +@throw_element = @throw_expr | @throw_stmt; + +@implicitly_typeable_object_creation_expr = @object_creation_expr | @explicit_delegate_creation_expr; + +implicitly_typed_array_creation( + unique int id: @array_creation_expr ref); + +explicitly_sized_array_creation( + unique int id: @array_creation_expr ref); + +stackalloc_array_creation( + unique int id: @array_creation_expr ref); + +implicitly_typed_object_creation( + unique int id: @implicitly_typeable_object_creation_expr ref); + +mutator_invocation_mode( + unique int id: @operator_invocation_expr ref, + int mode: int ref /* prefix = 1, postfix = 2*/); + +expr_value( + unique int id: @expr ref, + string value: string ref); + +expr_call( + unique int caller_id: @expr ref, + int target_id: @callable ref); + +expr_access( + unique int accesser_id: @access_expr ref, + int target_id: @accessible ref); + +@accessible = @method | @assignable | @local_function | @namespace; + +expr_location( + unique int id: @expr ref, + int loc: @location ref); + +dynamic_member_name( + unique int id: @late_bindable_expr ref, + string name: string ref); + +@qualifiable_expr = @member_access_expr + | @method_invocation_expr + | @element_access_expr + | @assign_op_call_expr; + +conditional_access( + unique int id: @qualifiable_expr ref); + +expr_argument( + unique int id: @expr ref, + int mode: int ref); + /* mode is the same as params: value = 0, ref = 1, out = 2 */ + +expr_argument_name( + unique int id: @expr ref, + string name: string ref); + +lambda_expr_return_type( + unique int id: @lambda_expr ref, + int type_id: @type_or_ref ref); + +/* Compiler generated */ + +compiler_generated(unique int id: @element ref); + +/** CONTROL/DATA FLOW **/ + +@control_flow_element = @stmt | @expr | @parameter; + +/* XML Files */ + +xmlEncoding ( + unique int id: @file ref, + string encoding: string ref); + +xmlDTDs( + unique int id: @xmldtd, + string root: string ref, + string publicId: string ref, + string systemId: string ref, + int fileid: @file ref); + +xmlElements( + unique int id: @xmlelement, + string name: string ref, + int parentid: @xmlparent ref, + int idx: int ref, + int fileid: @file ref); + +xmlAttrs( + unique int id: @xmlattribute, + int elementid: @xmlelement ref, + string name: string ref, + string value: string ref, + int idx: int ref, + int fileid: @file ref); + +xmlNs( + int id: @xmlnamespace, + string prefixName: string ref, + string URI: string ref, + int fileid: @file ref); + +xmlHasNs( + int elementId: @xmlnamespaceable ref, + int nsId: @xmlnamespace ref, + int fileid: @file ref); + +xmlComments( + unique int id: @xmlcomment, + string text: string ref, + int parentid: @xmlparent ref, + int fileid: @file ref); + +xmlChars( + unique int id: @xmlcharacters, + string text: string ref, + int parentid: @xmlparent ref, + int idx: int ref, + int isCDATA: int ref, + int fileid: @file ref); + +@xmlparent = @file | @xmlelement; +@xmlnamespaceable = @xmlelement | @xmlattribute; + +xmllocations( + int xmlElement: @xmllocatable ref, + int location: @location_default ref); + +@xmllocatable = @xmlcharacters | @xmlelement | @xmlcomment | @xmlattribute | @xmldtd | @file | @xmlnamespace; + +/* Comments */ + +commentline( + unique int id: @commentline, + int kind: int ref, + string text: string ref, + string rawtext: string ref); + +case @commentline.kind of + 0 = @singlelinecomment +| 1 = @xmldoccomment +| 2 = @multilinecomment; + +commentline_location( + unique int id: @commentline ref, + int loc: @location ref); + +commentblock( + unique int id : @commentblock); + +commentblock_location( + unique int id: @commentblock ref, + int loc: @location ref); + +commentblock_binding( + int id: @commentblock ref, + int entity: @element ref, + int bindtype: int ref); /* 0: Parent, 1: Best, 2: Before, 3: After */ + +commentblock_child( + int id: @commentblock ref, + int commentline: @commentline ref, + int index: int ref); + +/* ASP.NET */ + +case @asp_element.kind of + 0=@asp_close_tag +| 1=@asp_code +| 2=@asp_comment +| 3=@asp_data_binding +| 4=@asp_directive +| 5=@asp_open_tag +| 6=@asp_quoted_string +| 7=@asp_text +| 8=@asp_xml_directive; + +@asp_attribute = @asp_code | @asp_data_binding | @asp_quoted_string; + +asp_elements( + unique int id: @asp_element, + int kind: int ref, + int loc: @location ref); + +asp_comment_server(unique int comment: @asp_comment ref); +asp_code_inline(unique int code: @asp_code ref); +asp_directive_attribute( + int directive: @asp_directive ref, + int index: int ref, + string name: string ref, + int value: @asp_quoted_string ref); +asp_directive_name( + unique int directive: @asp_directive ref, + string name: string ref); +asp_element_body( + unique int element: @asp_element ref, + string body: string ref); +asp_tag_attribute( + int tag: @asp_open_tag ref, + int index: int ref, + string name: string ref, + int attribute: @asp_attribute ref); +asp_tag_name( + unique int tag: @asp_open_tag ref, + string name: string ref); +asp_tag_isempty(int tag: @asp_open_tag ref); diff --git a/csharp/downgrades/3cabc77473cbbda95edebafea345c2e3fdfa12d9/semmlecode.csharp.dbscheme b/csharp/downgrades/3cabc77473cbbda95edebafea345c2e3fdfa12d9/semmlecode.csharp.dbscheme new file mode 100644 index 000000000000..ea7ad33252e5 --- /dev/null +++ b/csharp/downgrades/3cabc77473cbbda95edebafea345c2e3fdfa12d9/semmlecode.csharp.dbscheme @@ -0,0 +1,1505 @@ +/* This is a dummy line to alter the dbscheme, so we can make a database upgrade + * without actually changing any of the dbscheme predicates. It contains a date + * to allow for such updates in the future as well. + * + * 2021-07-14 + * + * DO NOT remove this comment carelessly, since it can revert the dbscheme back to a + * previously seen state (matching a previously seen SHA), which would make the upgrade + * mechanism not work properly. + */ + +/** + * An invocation of the compiler. Note that more than one file may be + * compiled per invocation. For example, this command compiles three + * source files: + * + * csc f1.cs f2.cs f3.cs + * + * The `id` simply identifies the invocation, while `cwd` is the working + * directory from which the compiler was invoked. + */ +compilations( + unique int id : @compilation, + string cwd : string ref +); + +compilation_info( + int id : @compilation ref, + string info_key: string ref, + string info_value: string ref +) + +/** + * The arguments that were passed to the extractor for a compiler + * invocation. If `id` is for the compiler invocation + * + * csc f1.cs f2.cs f3.cs + * + * then typically there will be rows for + * + * num | arg + * --- | --- + * 0 | --compiler + * 1 | *path to compiler* + * 2 | f1.cs + * 3 | f2.cs + * 4 | f3.cs + */ +#keyset[id, num] +compilation_args( + int id : @compilation ref, + int num : int ref, + string arg : string ref +); + +/** + * The expanded arguments that were passed to the extractor for a + * compiler invocation. This is similar to `compilation_args`, but + * for a `@someFile.rsp` argument, it includes the arguments from that + * file, rather than just taking the argument literally. + */ +#keyset[id, num] +compilation_expanded_args( + int id : @compilation ref, + int num : int ref, + string arg : string ref +); + +/** + * The source files that are compiled by a compiler invocation. + * If `id` is for the compiler invocation + * + * csc f1.cs f2.cs f3.cs + * + * then there will be rows for + * + * num | arg + * --- | --- + * 0 | f1.cs + * 1 | f2.cs + * 2 | f3.cs + */ +#keyset[id, num] +compilation_compiling_files( + int id : @compilation ref, + int num : int ref, + int file : @file ref +); + +/** + * The references used by a compiler invocation. + * If `id` is for the compiler invocation + * + * csc f1.cs f2.cs f3.cs /r:ref1.dll /r:ref2.dll /r:ref3.dll + * + * then there will be rows for + * + * num | arg + * --- | --- + * 0 | ref1.dll + * 1 | ref2.dll + * 2 | ref3.dll + */ +#keyset[id, num] +compilation_referencing_files( + int id : @compilation ref, + int num : int ref, + int file : @file ref +); + +/** + * The time taken by the extractor for a compiler invocation. + * + * For each file `num`, there will be rows for + * + * kind | seconds + * ---- | --- + * 1 | CPU seconds used by the extractor frontend + * 2 | Elapsed seconds during the extractor frontend + * 3 | CPU seconds used by the extractor backend + * 4 | Elapsed seconds during the extractor backend + */ +#keyset[id, num, kind] +compilation_time( + int id : @compilation ref, + int num : int ref, + /* kind: + 1 = frontend_cpu_seconds + 2 = frontend_elapsed_seconds + 3 = extractor_cpu_seconds + 4 = extractor_elapsed_seconds + */ + int kind : int ref, + float seconds : float ref +); + +/** + * An error or warning generated by the extractor. + * The diagnostic message `diagnostic` was generated during compiler + * invocation `compilation`, and is the `file_number_diagnostic_number`th + * message generated while extracting the `file_number`th file of that + * invocation. + */ +#keyset[compilation, file_number, file_number_diagnostic_number] +diagnostic_for( + unique int diagnostic : @diagnostic ref, + int compilation : @compilation ref, + int file_number : int ref, + int file_number_diagnostic_number : int ref +); + +diagnostics( + unique int id: @diagnostic, + int severity: int ref, + string error_tag: string ref, + string error_message: string ref, + string full_error_message: string ref, + int location: @location ref +); + +extractor_messages( + unique int id: @extractor_message, + int severity: int ref, + string origin : string ref, + string text : string ref, + string entity : string ref, + int location: @location ref, + string stack_trace : string ref +); + +/** + * If extraction was successful, then `cpu_seconds` and + * `elapsed_seconds` are the CPU time and elapsed time (respectively) + * that extraction took for compiler invocation `id`. + */ +compilation_finished( + unique int id : @compilation ref, + float cpu_seconds : float ref, + float elapsed_seconds : float ref +); + +compilation_assembly( + unique int id : @compilation ref, + int assembly: @assembly ref +) + +// Populated by the CSV extractor +externalData( + int id: @externalDataElement, + string path: string ref, + int column: int ref, + string value: string ref); + +sourceLocationPrefix( + string prefix: string ref); + +/* + * Overlay support + */ + +/** + * The CLI will automatically emit the tuple `databaseMetadata("isOverlay", "true")`, + * along with an `overlayChangedFiles` tuple for each new/modified/deleted file, + * when building an overlay database, and these can be used by the discard predicates. + */ +databaseMetadata( + string metadataKey : string ref, + string value : string ref +); + +overlayChangedFiles( + string path : string ref +); + +/* + * C# dbscheme + */ + +/** ELEMENTS **/ + +@element = @declaration | @stmt | @expr | @modifier | @attribute | @namespace_declaration + | @using_directive | @type_parameter_constraints | @externalDataElement + | @xmllocatable | @asp_element | @namespace | @preprocessor_directive; + +@declaration = @callable | @generic | @assignable | @namespace; + +@named_element = @namespace | @declaration; + +@declaration_with_accessors = @property | @indexer | @event; + +@assignable = @variable | @assignable_with_accessors | @event; + +@assignable_with_accessors = @property | @indexer; + +@attributable = @assembly | @field | @parameter | @operator | @method | @constructor + | @destructor | @callable_accessor | @value_or_ref_type | @declaration_with_accessors + | @local_function | @lambda_expr; + +/** LOCATIONS, ASEMMBLIES, MODULES, FILES and FOLDERS **/ + +@location = @location_default | @assembly; + +@locatable = @declaration_with_accessors | @callable_accessor | @declaration_or_directive + | @diagnostic | @extractor_message | @preprocessor_directive | @attribute | @type_mention | @type_parameter_constraints + | @declaration_with_accessors | @callable_accessor | @operator | @method + | @constructor | @destructor | @field | @local_variable | @parameter | @stmt | @expr + | @xmllocatable | @commentline | @commentblock | @asp_element + +locations_default( + unique int id: @location_default, + int file: @file ref, + int beginLine: int ref, + int beginColumn: int ref, + int endLine: int ref, + int endColumn: int ref); + +locations_mapped( + unique int id: @location_default ref, + int mapped_to: @location_default ref); + +@sourceline = @file | @callable | @xmllocatable; + +numlines( + int element_id: @sourceline ref, + int num_lines: int ref, + int num_code: int ref, + int num_comment: int ref); + +assemblies( + unique int id: @assembly, + int file: @file ref, + string fullname: string ref, + string name: string ref, + string version: string ref); + +files( + unique int id: @file, + string name: string ref); + +folders( + unique int id: @folder, + string name: string ref); + +@container = @folder | @file ; + +containerparent( + int parent: @container ref, + unique int child: @container ref); + +file_extraction_mode( + unique int file: @file ref, + int mode: int ref + /* 0 = normal, 1 = standalone extractor */ + ); + +/** NAMESPACES **/ + +@type_container = @namespace | @type; + +namespaces( + unique int id: @namespace, + string name: string ref); + +namespace_declarations( + unique int id: @namespace_declaration, + int namespace_id: @namespace ref); + +namespace_declaration_location( + unique int id: @namespace_declaration ref, + int loc: @location ref); + +parent_namespace( + unique int child_id: @type_container ref, + int namespace_id: @namespace ref); + +@declaration_or_directive = @namespace_declaration | @type | @using_directive; + +parent_namespace_declaration( + int child_id: @declaration_or_directive ref, // cannot be unique because of partial classes + int namespace_id: @namespace_declaration ref); + +@using_directive = @using_namespace_directive | @using_static_directive; + +using_global( + unique int id: @using_directive ref +); + +using_namespace_directives( + unique int id: @using_namespace_directive, + int namespace_id: @namespace ref); + +using_static_directives( + unique int id: @using_static_directive, + int type_id: @type_or_ref ref); + +using_directive_location( + unique int id: @using_directive ref, + int loc: @location ref); + +@preprocessor_directive = @pragma_warning | @pragma_checksum | @directive_define | @directive_undefine | @directive_warning + | @directive_error | @directive_nullable | @directive_line | @directive_region | @directive_endregion | @directive_if + | @directive_elif | @directive_else | @directive_endif; + +@conditional_directive = @directive_if | @directive_elif; +@branch_directive = @directive_if | @directive_elif | @directive_else; + +directive_ifs( + unique int id: @directive_if, + int branchTaken: int ref, /* 0: false, 1: true */ + int conditionValue: int ref); /* 0: false, 1: true */ + +directive_elifs( + unique int id: @directive_elif, + int branchTaken: int ref, /* 0: false, 1: true */ + int conditionValue: int ref, /* 0: false, 1: true */ + int parent: @directive_if ref, + int index: int ref); + +directive_elses( + unique int id: @directive_else, + int branchTaken: int ref, /* 0: false, 1: true */ + int parent: @directive_if ref, + int index: int ref); + +#keyset[id, start] +directive_endifs( + unique int id: @directive_endif, + unique int start: @directive_if ref); + +directive_define_symbols( + unique int id: @define_symbol_expr ref, + string name: string ref); + +directive_regions( + unique int id: @directive_region, + string name: string ref); + +#keyset[id, start] +directive_endregions( + unique int id: @directive_endregion, + unique int start: @directive_region ref); + +directive_lines( + unique int id: @directive_line, + int kind: int ref); /* 0: default, 1: hidden, 2: numeric, 3: span */ + +directive_line_value( + unique int id: @directive_line ref, + int line: int ref); + +directive_line_file( + unique int id: @directive_line ref, + int file: @file ref); + +directive_line_offset( + unique int id: @directive_line ref, + int offset: int ref); + +directive_line_span( + unique int id: @directive_line ref, + int startLine: int ref, + int startColumn: int ref, + int endLine: int ref, + int endColumn: int ref); + +directive_nullables( + unique int id: @directive_nullable, + int setting: int ref, /* 0: disable, 1: enable, 2: restore */ + int target: int ref); /* 0: none, 1: annotations, 2: warnings */ + +directive_warnings( + unique int id: @directive_warning, + string message: string ref); + +directive_errors( + unique int id: @directive_error, + string message: string ref); + +directive_undefines( + unique int id: @directive_undefine, + string name: string ref); + +directive_defines( + unique int id: @directive_define, + string name: string ref); + +pragma_checksums( + unique int id: @pragma_checksum, + int file: @file ref, + string guid: string ref, + string bytes: string ref); + +pragma_warnings( + unique int id: @pragma_warning, + int kind: int ref /* 0 = disable, 1 = restore */); + +#keyset[id, index] +pragma_warning_error_codes( + int id: @pragma_warning ref, + string errorCode: string ref, + int index: int ref); + +preprocessor_directive_location( + unique int id: @preprocessor_directive ref, + int loc: @location ref); + +preprocessor_directive_compilation( + int id: @preprocessor_directive ref, + int compilation: @compilation ref); + +preprocessor_directive_active( + unique int id: @preprocessor_directive ref, + int active: int ref); /* 0: false, 1: true */ + +/** TYPES **/ + +types( + unique int id: @type, + int kind: int ref, + string name: string ref); + +case @type.kind of + 1 = @bool_type +| 2 = @char_type +| 3 = @decimal_type +| 4 = @sbyte_type +| 5 = @short_type +| 6 = @int_type +| 7 = @long_type +| 8 = @byte_type +| 9 = @ushort_type +| 10 = @uint_type +| 11 = @ulong_type +| 12 = @float_type +| 13 = @double_type +| 14 = @enum_type +| 15 = @struct_type +| 17 = @class_type +| 19 = @interface_type +| 20 = @delegate_type +| 21 = @null_type +| 22 = @type_parameter +| 23 = @pointer_type +| 24 = @nullable_type +| 25 = @array_type +| 26 = @void_type +| 27 = @int_ptr_type +| 28 = @uint_ptr_type +| 29 = @dynamic_type +| 30 = @arglist_type +| 31 = @unknown_type +| 32 = @tuple_type +| 33 = @function_pointer_type +| 34 = @inline_array_type +| 35 = @extension_type + ; + +@simple_type = @bool_type | @char_type | @integral_type | @floating_point_type | @decimal_type; +@integral_type = @signed_integral_type | @unsigned_integral_type; +@signed_integral_type = @sbyte_type | @short_type | @int_type | @long_type; +@unsigned_integral_type = @byte_type | @ushort_type | @uint_type | @ulong_type; +@floating_point_type = @float_type | @double_type; +@value_type = @simple_type | @enum_type | @struct_type | @nullable_type | @int_ptr_type + | @uint_ptr_type | @tuple_type | @void_type | @inline_array_type; +@ref_type = @class_type | @interface_type | @array_type | @delegate_type | @null_type + | @dynamic_type | @extension_type; +@value_or_ref_type = @value_type | @ref_type; + +typerefs( + unique int id: @typeref, + string name: string ref); + +typeref_type( + int id: @typeref ref, + unique int typeId: @type ref); + +@type_or_ref = @type | @typeref; + +array_element_type( + unique int array: @array_type ref, + int dimension: int ref, + int rank: int ref, + int element: @type_or_ref ref); + +nullable_underlying_type( + unique int nullable: @nullable_type ref, + int underlying: @type_or_ref ref); + +pointer_referent_type( + unique int pointer: @pointer_type ref, + int referent: @type_or_ref ref); + +enum_underlying_type( + unique int enum_id: @enum_type ref, + int underlying_type_id: @type_or_ref ref); + +delegate_return_type( + unique int delegate_id: @delegate_type ref, + int return_type_id: @type_or_ref ref); + +function_pointer_return_type( + unique int function_pointer_id: @function_pointer_type ref, + int return_type_id: @type_or_ref ref); + +extension_receiver_type( + unique int extension: @extension_type ref, + int receiver_type_id: @type_or_ref ref); + +extend( + int sub: @type ref, + int super: @type_or_ref ref); + +anonymous_types( + unique int id: @type ref); + +@interface_or_ref = @interface_type | @typeref; + +implement( + int sub: @type ref, + int super: @type_or_ref ref); + +type_location( + int id: @type ref, + int loc: @location ref); + +tuple_underlying_type( + unique int tuple: @tuple_type ref, + int struct: @type_or_ref ref); + +#keyset[tuple, index] +tuple_element( + int tuple: @tuple_type ref, + int index: int ref, + unique int field: @field ref); + +attributes( + unique int id: @attribute, + int kind: int ref, + int type_id: @type_or_ref ref, + int target: @attributable ref); + +case @attribute.kind of + 0 = @attribute_default +| 1 = @attribute_return +| 2 = @attribute_assembly +| 3 = @attribute_module +; + +attribute_location( + int id: @attribute ref, + int loc: @location ref); + +@type_mention_parent = @element | @type_mention; + +type_mention( + unique int id: @type_mention, + int type_id: @type_or_ref ref, + int parent: @type_mention_parent ref); + +type_mention_location( + unique int id: @type_mention ref, + int loc: @location ref); + +@has_type_annotation = @assignable | @type_parameter | @callable | @expr | @delegate_type | @generic | @function_pointer_type; + +/** + * A direct annotation on an entity, for example `string? x;`. + * + * Annotations: + * 2 = reftype is not annotated "!" + * 3 = reftype is annotated "?" + * 4 = readonly ref type / in parameter + * 5 = ref type parameter, return or local variable + * 6 = out parameter + * + * Note that the annotation depends on the element it annotates. + * @assignable: The annotation is on the type of the assignable, for example the variable type. + * @type_parameter: The annotation is on the reftype constraint + * @callable: The annotation is on the return type + * @array_type: The annotation is on the element type + */ +type_annotation(int id: @has_type_annotation ref, int annotation: int ref); + +nullability(unique int nullability: @nullability, int kind: int ref); + +case @nullability.kind of + 0 = @oblivious +| 1 = @not_annotated +| 2 = @annotated +; + +#keyset[parent, index] +nullability_parent(int nullability: @nullability ref, int index: int ref, int parent: @nullability ref) + +type_nullability(int id: @has_type_annotation ref, int nullability: @nullability ref); + +/** + * The nullable flow state of an expression, as determined by Roslyn. + * 0 = none (default, not populated) + * 1 = not null + * 2 = maybe null + */ +expr_flowstate(unique int id: @expr ref, int state: int ref); + +/** GENERICS **/ + +@generic = @type | @method | @local_function; + +type_parameters( + unique int id: @type_parameter ref, + int index: int ref, + int generic_id: @generic ref, + int variance: int ref /* none = 0, out = 1, in = 2 */); + +#keyset[constructed_id, index] +type_arguments( + int id: @type_or_ref ref, + int index: int ref, + int constructed_id: @generic_or_ref ref); + +@generic_or_ref = @generic | @typeref; + +constructed_generic( + unique int constructed: @generic ref, + int generic: @generic_or_ref ref); + +type_parameter_constraints( + unique int id: @type_parameter_constraints, + int param_id: @type_parameter ref); + +type_parameter_constraints_location( + int id: @type_parameter_constraints ref, + int loc: @location ref); + +general_type_parameter_constraints( + int id: @type_parameter_constraints ref, + int kind: int ref /* class = 1, struct = 2, new = 3 */); + +specific_type_parameter_constraints( + int id: @type_parameter_constraints ref, + int base_id: @type_or_ref ref); + +specific_type_parameter_nullability( + int id: @type_parameter_constraints ref, + int base_id: @type_or_ref ref, + int nullability: @nullability ref); + +/** FUNCTION POINTERS */ + +function_pointer_calling_conventions( + int id: @function_pointer_type ref, + int kind: int ref); + +#keyset[id, index] +has_unmanaged_calling_conventions( + int id: @function_pointer_type ref, + int index: int ref, + int conv_id: @type_or_ref ref); + +/** MODIFIERS */ + +@modifiable = @modifiable_direct | @event_accessor; + +@modifiable_direct = @member | @accessor | @local_function | @anonymous_function_expr; + +modifiers( + unique int id: @modifier, + string name: string ref); + +has_modifiers( + int id: @modifiable_direct ref, + int mod_id: @modifier ref); + +/** MEMBERS **/ + +@member = @method | @constructor | @destructor | @field | @property | @event | @operator | @indexer | @type; + +@named_exprorstmt = @goto_stmt | @labeled_stmt | @expr; + +@virtualizable = @method | @property | @indexer | @event | @operator; + +exprorstmt_name( + unique int parent_id: @named_exprorstmt ref, + string name: string ref); + +nested_types( + unique int id: @type ref, + int declaring_type_id: @type ref, + int unbound_id: @type ref); + +properties( + unique int id: @property, + string name: string ref, + int declaring_type_id: @type ref, + int type_id: @type_or_ref ref, + int unbound_id: @property ref); + +property_location( + int id: @property ref, + int loc: @location ref); + +indexers( + unique int id: @indexer, + string name: string ref, + int declaring_type_id: @type ref, + int type_id: @type_or_ref ref, + int unbound_id: @indexer ref); + +indexer_location( + int id: @indexer ref, + int loc: @location ref); + +accessors( + unique int id: @accessor, + int kind: int ref, + string name: string ref, + int declaring_member_id: @member ref, + int unbound_id: @accessor ref); + +case @accessor.kind of + 1 = @getter +| 2 = @setter + ; + +init_only_accessors( + unique int id: @accessor ref); + +accessor_location( + int id: @accessor ref, + int loc: @location ref); + +events( + unique int id: @event, + string name: string ref, + int declaring_type_id: @type ref, + int type_id: @type_or_ref ref, + int unbound_id: @event ref); + +event_location( + int id: @event ref, + int loc: @location ref); + +event_accessors( + unique int id: @event_accessor, + int kind: int ref, + string name: string ref, + int declaring_event_id: @event ref, + int unbound_id: @event_accessor ref); + +case @event_accessor.kind of + 1 = @add_event_accessor +| 2 = @remove_event_accessor + ; + +event_accessor_location( + int id: @event_accessor ref, + int loc: @location ref); + +operators( + unique int id: @operator, + string name: string ref, + string symbol: string ref, + int declaring_type_id: @type ref, + int type_id: @type_or_ref ref, + int unbound_id: @operator ref); + +operator_location( + int id: @operator ref, + int loc: @location ref); + +constant_value( + int id: @variable ref, + string value: string ref); + +/** CALLABLES **/ + +@callable = @method | @constructor | @destructor | @operator | @callable_accessor | @anonymous_function_expr | @local_function; + +@callable_accessor = @accessor | @event_accessor; + +methods( + unique int id: @method, + string name: string ref, + int declaring_type_id: @type ref, + int type_id: @type_or_ref ref, + int unbound_id: @method ref); + +method_location( + int id: @method ref, + int loc: @location ref); + +constructors( + unique int id: @constructor, + string name: string ref, + int declaring_type_id: @type ref, + int unbound_id: @constructor ref); + +constructor_location( + int id: @constructor ref, + int loc: @location ref); + +destructors( + unique int id: @destructor, + string name: string ref, + int declaring_type_id: @type ref, + int unbound_id: @destructor ref); + +destructor_location( + int id: @destructor ref, + int loc: @location ref); + +overrides( + int id: @callable ref, + int base_id: @callable ref); + +explicitly_implements( + int id: @member ref, + int interface_id: @interface_or_ref ref); + +local_functions( + unique int id: @local_function, + string name: string ref, + int return_type: @type ref, + int unbound_id: @local_function ref); + +local_function_stmts( + unique int fn: @local_function_stmt ref, + int stmt: @local_function ref); + +/** VARIABLES **/ + +@variable = @local_scope_variable | @field; + +@local_scope_variable = @local_variable | @parameter; + +fields( + unique int id: @field, + int kind: int ref, + string name: string ref, + int declaring_type_id: @type ref, + int type_id: @type_or_ref ref, + int unbound_id: @field ref); + +case @field.kind of + 1 = @addressable_field +| 2 = @constant + ; + +field_location( + int id: @field ref, + int loc: @location ref); + +localvars( + unique int id: @local_variable, + int kind: int ref, + string name: string ref, + int implicitly_typed: int ref /* 0 = no, 1 = yes */, + int type_id: @type_or_ref ref, + int parent_id: @local_var_decl_expr ref); + +case @local_variable.kind of + 1 = @addressable_local_variable +| 2 = @local_constant +| 3 = @local_variable_ref + ; + +localvar_location( + unique int id: @local_variable ref, + int loc: @location ref); + +@parameterizable = @callable | @delegate_type | @indexer | @function_pointer_type | @extension_type; + +#keyset[name, parent_id] +#keyset[index, parent_id] +params( + unique int id: @parameter, + string name: string ref, + int type_id: @type_or_ref ref, + int index: int ref, + int mode: int ref, /* value = 0, ref = 1, out = 2, params/array = 3, this = 4, in = 5, ref readonly = 6 */ + int parent_id: @parameterizable ref, + int unbound_id: @parameter ref); + +param_location( + int id: @parameter ref, + int loc: @location ref); + +@has_scoped_annotation = @local_scope_variable + +scoped_annotation( + int id: @has_scoped_annotation ref, + int kind: int ref // scoped ref = 1, scoped value = 2 + ); + +/** STATEMENTS **/ + +@exprorstmt_parent = @control_flow_element | @top_level_exprorstmt_parent; + +statements( + unique int id: @stmt, + int kind: int ref); + +#keyset[index, parent] +stmt_parent( + unique int stmt: @stmt ref, + int index: int ref, + int parent: @control_flow_element ref); + +@top_level_stmt_parent = @callable; + +// [index, parent] is not a keyset because the same parent may be compiled multiple times +stmt_parent_top_level( + unique int stmt: @stmt ref, + int index: int ref, + int parent: @top_level_stmt_parent ref); + +case @stmt.kind of + 1 = @block_stmt +| 2 = @expr_stmt +| 3 = @if_stmt +| 4 = @switch_stmt +| 5 = @while_stmt +| 6 = @do_stmt +| 7 = @for_stmt +| 8 = @foreach_stmt +| 9 = @break_stmt +| 10 = @continue_stmt +| 11 = @goto_stmt +| 12 = @goto_case_stmt +| 13 = @goto_default_stmt +| 14 = @throw_stmt +| 15 = @return_stmt +| 16 = @yield_stmt +| 17 = @try_stmt +| 18 = @checked_stmt +| 19 = @unchecked_stmt +| 20 = @lock_stmt +| 21 = @using_block_stmt +| 22 = @var_decl_stmt +| 23 = @const_decl_stmt +| 24 = @empty_stmt +| 25 = @unsafe_stmt +| 26 = @fixed_stmt +| 27 = @label_stmt +| 28 = @catch +| 29 = @case_stmt +| 30 = @local_function_stmt +| 31 = @using_decl_stmt + ; + +@using_stmt = @using_block_stmt | @using_decl_stmt; + +@labeled_stmt = @label_stmt | @case; + +@decl_stmt = @var_decl_stmt | @const_decl_stmt | @using_decl_stmt; + +@cond_stmt = @if_stmt | @switch_stmt; + +@loop_stmt = @while_stmt | @do_stmt | @for_stmt | @foreach_stmt; + +@jump_stmt = @break_stmt | @goto_any_stmt | @continue_stmt | @throw_stmt | @return_stmt + | @yield_stmt; + +@goto_any_stmt = @goto_default_stmt | @goto_case_stmt | @goto_stmt; + + +stmt_location( + unique int id: @stmt ref, + int loc: @location ref); + +catch_type( + unique int catch_id: @catch ref, + int type_id: @type_or_ref ref, + int kind: int ref /* explicit = 1, implicit = 2 */); + +foreach_stmt_info( + unique int id: @foreach_stmt ref, + int kind: int ref /* non-async = 1, async = 2 */); + +@foreach_symbol = @method | @property | @type_or_ref; + +#keyset[id, kind] +foreach_stmt_desugar( + int id: @foreach_stmt ref, + int symbol: @foreach_symbol ref, + int kind: int ref /* GetEnumeratorMethod = 1, CurrentProperty = 2, MoveNextMethod = 3, DisposeMethod = 4, ElementType = 5 */); + +/** EXPRESSIONS **/ + +expressions( + unique int id: @expr, + int kind: int ref, + int type_id: @type_or_ref ref); + +#keyset[index, parent] +expr_parent( + unique int expr: @expr ref, + int index: int ref, + int parent: @control_flow_element ref); + +@top_level_expr_parent = @attribute | @field | @property | @indexer | @parameter | @directive_if | @directive_elif; + +@top_level_exprorstmt_parent = @top_level_expr_parent | @top_level_stmt_parent; + +// [index, parent] is not a keyset because the same parent may be compiled multiple times +expr_parent_top_level( + unique int expr: @expr ref, + int index: int ref, + int parent: @top_level_exprorstmt_parent ref); + +case @expr.kind of +/* literal */ + 1 = @bool_literal_expr +| 2 = @char_literal_expr +| 3 = @decimal_literal_expr +| 4 = @int_literal_expr +| 5 = @long_literal_expr +| 6 = @uint_literal_expr +| 7 = @ulong_literal_expr +| 8 = @float_literal_expr +| 9 = @double_literal_expr +| 10 = @utf16_string_literal_expr +| 11 = @null_literal_expr +/* primary & unary */ +| 12 = @this_access_expr +| 13 = @base_access_expr +| 14 = @local_variable_access_expr +| 15 = @parameter_access_expr +| 16 = @field_access_expr +| 17 = @property_access_expr +| 18 = @method_access_expr +| 19 = @event_access_expr +| 20 = @indexer_access_expr +| 21 = @array_access_expr +| 22 = @type_access_expr +| 23 = @typeof_expr +| 24 = @method_invocation_expr +| 25 = @delegate_invocation_expr +| 26 = @operator_invocation_expr +| 27 = @cast_expr +| 28 = @object_creation_expr +| 29 = @explicit_delegate_creation_expr +| 30 = @implicit_delegate_creation_expr +| 31 = @array_creation_expr +| 32 = @default_expr +| 33 = @plus_expr +| 34 = @minus_expr +| 35 = @bit_not_expr +| 36 = @log_not_expr +| 37 = @post_incr_expr +| 38 = @post_decr_expr +| 39 = @pre_incr_expr +| 40 = @pre_decr_expr +/* multiplicative */ +| 41 = @mul_expr +| 42 = @div_expr +| 43 = @rem_expr +/* additive */ +| 44 = @add_expr +| 45 = @sub_expr +/* shift */ +| 46 = @lshift_expr +| 47 = @rshift_expr +/* relational */ +| 48 = @lt_expr +| 49 = @gt_expr +| 50 = @le_expr +| 51 = @ge_expr +/* equality */ +| 52 = @eq_expr +| 53 = @ne_expr +/* logical */ +| 54 = @bit_and_expr +| 55 = @bit_xor_expr +| 56 = @bit_or_expr +| 57 = @log_and_expr +| 58 = @log_or_expr +/* type testing */ +| 59 = @is_expr +| 60 = @as_expr +/* null coalescing */ +| 61 = @null_coalescing_expr +/* conditional */ +| 62 = @conditional_expr +/* assignment */ +| 63 = @simple_assign_expr +| 64 = @assign_add_expr +| 65 = @assign_sub_expr +| 66 = @assign_mul_expr +| 67 = @assign_div_expr +| 68 = @assign_rem_expr +| 69 = @assign_and_expr +| 70 = @assign_xor_expr +| 71 = @assign_or_expr +| 72 = @assign_lshift_expr +| 73 = @assign_rshift_expr +/* more */ +| 74 = @object_init_expr +| 75 = @collection_init_expr +| 76 = @array_init_expr +| 77 = @checked_expr +| 78 = @unchecked_expr +| 79 = @constructor_init_expr +| 80 = @add_event_expr +| 81 = @remove_event_expr +| 82 = @par_expr +| 83 = @local_var_decl_expr +| 84 = @lambda_expr +| 85 = @anonymous_method_expr +| 86 = @namespace_expr +/* dynamic */ +| 92 = @dynamic_element_access_expr +| 93 = @dynamic_member_access_expr +/* unsafe */ +| 100 = @pointer_indirection_expr +| 101 = @address_of_expr +| 102 = @sizeof_expr +/* async */ +| 103 = @await_expr +/* C# 6.0 */ +| 104 = @nameof_expr +| 105 = @interpolated_string_expr +| 106 = @unknown_expr +/* C# 7.0 */ +| 107 = @throw_expr +| 108 = @tuple_expr +| 109 = @local_function_invocation_expr +| 110 = @ref_expr +| 111 = @discard_expr +/* C# 8.0 */ +| 112 = @range_expr +| 113 = @index_expr +| 114 = @switch_expr +| 115 = @recursive_pattern_expr +| 116 = @property_pattern_expr +| 117 = @positional_pattern_expr +| 118 = @switch_case_expr +| 119 = @assign_coalesce_expr +| 120 = @suppress_nullable_warning_expr +| 121 = @namespace_access_expr +/* C# 9.0 */ +| 122 = @lt_pattern_expr +| 123 = @gt_pattern_expr +| 124 = @le_pattern_expr +| 125 = @ge_pattern_expr +| 126 = @not_pattern_expr +| 127 = @and_pattern_expr +| 128 = @or_pattern_expr +| 129 = @function_pointer_invocation_expr +| 130 = @with_expr +/* C# 11.0 */ +| 131 = @list_pattern_expr +| 132 = @slice_pattern_expr +| 133 = @urshift_expr +| 134 = @assign_urshift_expr +| 135 = @utf8_string_literal_expr +/* C# 12.0 */ +| 136 = @collection_expr +| 137 = @spread_element_expr +| 138 = @interpolated_string_insert_expr +/* Preprocessor */ +| 999 = @define_symbol_expr +; + +@switch = @switch_stmt | @switch_expr; +@case = @case_stmt | @switch_case_expr; +@pattern_match = @case | @is_expr; +@unary_pattern_expr = @not_pattern_expr; +@relational_pattern_expr = @gt_pattern_expr | @lt_pattern_expr | @ge_pattern_expr | @le_pattern_expr; +@binary_pattern_expr = @and_pattern_expr | @or_pattern_expr; + +@integer_literal_expr = @int_literal_expr | @long_literal_expr | @uint_literal_expr | @ulong_literal_expr; +@real_literal_expr = @float_literal_expr | @double_literal_expr | @decimal_literal_expr; +@string_literal_expr = @utf16_string_literal_expr | @utf8_string_literal_expr; +@literal_expr = @bool_literal_expr | @char_literal_expr | @integer_literal_expr | @real_literal_expr + | @string_literal_expr | @null_literal_expr; + +@assign_expr = @simple_assign_expr | @assign_op_expr | @local_var_decl_expr; +@assign_op_call_expr = @assign_arith_expr | @assign_bitwise_expr +@assign_op_expr = @assign_op_call_expr | @assign_event_expr | @assign_coalesce_expr; +@assign_event_expr = @add_event_expr | @remove_event_expr; + +@add_operation = @add_expr | @assign_add_expr; +@sub_operation = @sub_expr | @assign_sub_expr; +@mul_operation = @mul_expr | @assign_mul_expr; +@div_operation = @div_expr | @assign_div_expr; +@rem_operation = @rem_expr | @assign_rem_expr; +@and_operation = @bit_and_expr | @assign_and_expr; +@xor_operation = @bit_xor_expr | @assign_xor_expr; +@or_operation = @bit_or_expr | @assign_or_expr; +@lshift_operation = @lshift_expr | @assign_lshift_expr; +@rshift_operation = @rshift_expr | @assign_rshift_expr; +@urshift_operation = @urshift_expr | @assign_urshift_expr; +@null_coalescing_operation = @null_coalescing_expr | @assign_coalesce_expr; + +@assign_arith_expr = @assign_add_expr | @assign_sub_expr | @assign_mul_expr | @assign_div_expr + | @assign_rem_expr +@assign_bitwise_expr = @assign_and_expr | @assign_or_expr | @assign_xor_expr + | @assign_lshift_expr | @assign_rshift_expr | @assign_urshift_expr; + +@member_access_expr = @field_access_expr | @property_access_expr | @indexer_access_expr | @event_access_expr + | @method_access_expr | @type_access_expr | @dynamic_member_access_expr; +@access_expr = @member_access_expr | @this_access_expr | @base_access_expr | @assignable_access_expr | @namespace_access_expr; +@element_access_expr = @indexer_access_expr | @array_access_expr | @dynamic_element_access_expr; + +@local_variable_access = @local_variable_access_expr | @local_var_decl_expr; +@local_scope_variable_access_expr = @parameter_access_expr | @local_variable_access; +@variable_access_expr = @local_scope_variable_access_expr | @field_access_expr; + +@assignable_access_expr = @variable_access_expr | @property_access_expr | @element_access_expr + | @event_access_expr | @dynamic_member_access_expr; + +@objectorcollection_init_expr = @object_init_expr | @collection_init_expr; + +@delegate_creation_expr = @explicit_delegate_creation_expr | @implicit_delegate_creation_expr; + +@bin_arith_op_expr = @mul_expr | @div_expr | @rem_expr | @add_expr | @sub_expr; +@incr_op_expr = @pre_incr_expr | @post_incr_expr; +@decr_op_expr = @pre_decr_expr | @post_decr_expr; +@mut_op_expr = @incr_op_expr | @decr_op_expr; +@un_arith_op_expr = @plus_expr | @minus_expr | @mut_op_expr; +@arith_op_expr = @bin_arith_op_expr | @un_arith_op_expr; + +@ternary_log_op_expr = @conditional_expr; +@bin_log_op_expr = @log_and_expr | @log_or_expr | @null_coalescing_expr; +@un_log_op_expr = @log_not_expr; +@log_expr = @un_log_op_expr | @bin_log_op_expr | @ternary_log_op_expr; + +@bin_bit_op_expr = @bit_and_expr | @bit_or_expr | @bit_xor_expr | @lshift_expr + | @rshift_expr | @urshift_expr; +@un_bit_op_expr = @bit_not_expr; +@bit_expr = @un_bit_op_expr | @bin_bit_op_expr; + +@equality_op_expr = @eq_expr | @ne_expr; +@rel_op_expr = @gt_expr | @lt_expr| @ge_expr | @le_expr; +@comp_expr = @equality_op_expr | @rel_op_expr; + +@op_expr = @un_op | @bin_op | @ternary_op; + +@ternary_op = @ternary_log_op_expr; +@bin_op = @assign_expr | @bin_arith_op_expr | @bin_log_op_expr | @bin_bit_op_expr | @comp_expr; +@un_op = @un_arith_op_expr | @un_log_op_expr | @un_bit_op_expr | @sizeof_expr + | @pointer_indirection_expr | @address_of_expr; + +@anonymous_function_expr = @lambda_expr | @anonymous_method_expr; + +@op_invoke_expr = @operator_invocation_expr | @assign_op_call_expr +@call = @method_invocation_expr | @constructor_init_expr | @op_invoke_expr + | @delegate_invocation_expr | @object_creation_expr | @call_access_expr + | @local_function_invocation_expr | @function_pointer_invocation_expr; + +@call_access_expr = @property_access_expr | @event_access_expr | @indexer_access_expr; + +@late_bindable_expr = @dynamic_element_access_expr | @dynamic_member_access_expr + | @object_creation_expr | @method_invocation_expr | @op_invoke_expr; + +@throw_element = @throw_expr | @throw_stmt; + +@implicitly_typeable_object_creation_expr = @object_creation_expr | @explicit_delegate_creation_expr; + +implicitly_typed_array_creation( + unique int id: @array_creation_expr ref); + +explicitly_sized_array_creation( + unique int id: @array_creation_expr ref); + +stackalloc_array_creation( + unique int id: @array_creation_expr ref); + +implicitly_typed_object_creation( + unique int id: @implicitly_typeable_object_creation_expr ref); + +mutator_invocation_mode( + unique int id: @operator_invocation_expr ref, + int mode: int ref /* prefix = 1, postfix = 2*/); + +expr_value( + unique int id: @expr ref, + string value: string ref); + +expr_call( + unique int caller_id: @expr ref, + int target_id: @callable ref); + +expr_access( + unique int accesser_id: @access_expr ref, + int target_id: @accessible ref); + +@accessible = @method | @assignable | @local_function | @namespace; + +expr_location( + unique int id: @expr ref, + int loc: @location ref); + +dynamic_member_name( + unique int id: @late_bindable_expr ref, + string name: string ref); + +@qualifiable_expr = @member_access_expr + | @method_invocation_expr + | @element_access_expr + | @assign_op_call_expr; + +conditional_access( + unique int id: @qualifiable_expr ref); + +expr_argument( + unique int id: @expr ref, + int mode: int ref); + /* mode is the same as params: value = 0, ref = 1, out = 2 */ + +expr_argument_name( + unique int id: @expr ref, + string name: string ref); + +lambda_expr_return_type( + unique int id: @lambda_expr ref, + int type_id: @type_or_ref ref); + +/* Compiler generated */ + +compiler_generated(unique int id: @element ref); + +/** CONTROL/DATA FLOW **/ + +@control_flow_element = @stmt | @expr; + +/* XML Files */ + +xmlEncoding ( + unique int id: @file ref, + string encoding: string ref); + +xmlDTDs( + unique int id: @xmldtd, + string root: string ref, + string publicId: string ref, + string systemId: string ref, + int fileid: @file ref); + +xmlElements( + unique int id: @xmlelement, + string name: string ref, + int parentid: @xmlparent ref, + int idx: int ref, + int fileid: @file ref); + +xmlAttrs( + unique int id: @xmlattribute, + int elementid: @xmlelement ref, + string name: string ref, + string value: string ref, + int idx: int ref, + int fileid: @file ref); + +xmlNs( + int id: @xmlnamespace, + string prefixName: string ref, + string URI: string ref, + int fileid: @file ref); + +xmlHasNs( + int elementId: @xmlnamespaceable ref, + int nsId: @xmlnamespace ref, + int fileid: @file ref); + +xmlComments( + unique int id: @xmlcomment, + string text: string ref, + int parentid: @xmlparent ref, + int fileid: @file ref); + +xmlChars( + unique int id: @xmlcharacters, + string text: string ref, + int parentid: @xmlparent ref, + int idx: int ref, + int isCDATA: int ref, + int fileid: @file ref); + +@xmlparent = @file | @xmlelement; +@xmlnamespaceable = @xmlelement | @xmlattribute; + +xmllocations( + int xmlElement: @xmllocatable ref, + int location: @location_default ref); + +@xmllocatable = @xmlcharacters | @xmlelement | @xmlcomment | @xmlattribute | @xmldtd | @file | @xmlnamespace; + +/* Comments */ + +commentline( + unique int id: @commentline, + int kind: int ref, + string text: string ref, + string rawtext: string ref); + +case @commentline.kind of + 0 = @singlelinecomment +| 1 = @xmldoccomment +| 2 = @multilinecomment; + +commentline_location( + unique int id: @commentline ref, + int loc: @location ref); + +commentblock( + unique int id : @commentblock); + +commentblock_location( + unique int id: @commentblock ref, + int loc: @location ref); + +commentblock_binding( + int id: @commentblock ref, + int entity: @element ref, + int bindtype: int ref); /* 0: Parent, 1: Best, 2: Before, 3: After */ + +commentblock_child( + int id: @commentblock ref, + int commentline: @commentline ref, + int index: int ref); + +/* ASP.NET */ + +case @asp_element.kind of + 0=@asp_close_tag +| 1=@asp_code +| 2=@asp_comment +| 3=@asp_data_binding +| 4=@asp_directive +| 5=@asp_open_tag +| 6=@asp_quoted_string +| 7=@asp_text +| 8=@asp_xml_directive; + +@asp_attribute = @asp_code | @asp_data_binding | @asp_quoted_string; + +asp_elements( + unique int id: @asp_element, + int kind: int ref, + int loc: @location ref); + +asp_comment_server(unique int comment: @asp_comment ref); +asp_code_inline(unique int code: @asp_code ref); +asp_directive_attribute( + int directive: @asp_directive ref, + int index: int ref, + string name: string ref, + int value: @asp_quoted_string ref); +asp_directive_name( + unique int directive: @asp_directive ref, + string name: string ref); +asp_element_body( + unique int element: @asp_element ref, + string body: string ref); +asp_tag_attribute( + int tag: @asp_open_tag ref, + int index: int ref, + string name: string ref, + int attribute: @asp_attribute ref); +asp_tag_name( + unique int tag: @asp_open_tag ref, + string name: string ref); +asp_tag_isempty(int tag: @asp_open_tag ref); diff --git a/csharp/downgrades/3cabc77473cbbda95edebafea345c2e3fdfa12d9/upgrade.properties b/csharp/downgrades/3cabc77473cbbda95edebafea345c2e3fdfa12d9/upgrade.properties new file mode 100644 index 000000000000..72af45e177b8 --- /dev/null +++ b/csharp/downgrades/3cabc77473cbbda95edebafea345c2e3fdfa12d9/upgrade.properties @@ -0,0 +1,2 @@ +description: Remove `@parameter` from `@control_flow_element` +compatibility: full diff --git a/csharp/ql/lib/upgrades/ea7ad33252e550241975676f09fcc7b0a703deab/old.dbscheme b/csharp/ql/lib/upgrades/ea7ad33252e550241975676f09fcc7b0a703deab/old.dbscheme new file mode 100644 index 000000000000..ea7ad33252e5 --- /dev/null +++ b/csharp/ql/lib/upgrades/ea7ad33252e550241975676f09fcc7b0a703deab/old.dbscheme @@ -0,0 +1,1505 @@ +/* This is a dummy line to alter the dbscheme, so we can make a database upgrade + * without actually changing any of the dbscheme predicates. It contains a date + * to allow for such updates in the future as well. + * + * 2021-07-14 + * + * DO NOT remove this comment carelessly, since it can revert the dbscheme back to a + * previously seen state (matching a previously seen SHA), which would make the upgrade + * mechanism not work properly. + */ + +/** + * An invocation of the compiler. Note that more than one file may be + * compiled per invocation. For example, this command compiles three + * source files: + * + * csc f1.cs f2.cs f3.cs + * + * The `id` simply identifies the invocation, while `cwd` is the working + * directory from which the compiler was invoked. + */ +compilations( + unique int id : @compilation, + string cwd : string ref +); + +compilation_info( + int id : @compilation ref, + string info_key: string ref, + string info_value: string ref +) + +/** + * The arguments that were passed to the extractor for a compiler + * invocation. If `id` is for the compiler invocation + * + * csc f1.cs f2.cs f3.cs + * + * then typically there will be rows for + * + * num | arg + * --- | --- + * 0 | --compiler + * 1 | *path to compiler* + * 2 | f1.cs + * 3 | f2.cs + * 4 | f3.cs + */ +#keyset[id, num] +compilation_args( + int id : @compilation ref, + int num : int ref, + string arg : string ref +); + +/** + * The expanded arguments that were passed to the extractor for a + * compiler invocation. This is similar to `compilation_args`, but + * for a `@someFile.rsp` argument, it includes the arguments from that + * file, rather than just taking the argument literally. + */ +#keyset[id, num] +compilation_expanded_args( + int id : @compilation ref, + int num : int ref, + string arg : string ref +); + +/** + * The source files that are compiled by a compiler invocation. + * If `id` is for the compiler invocation + * + * csc f1.cs f2.cs f3.cs + * + * then there will be rows for + * + * num | arg + * --- | --- + * 0 | f1.cs + * 1 | f2.cs + * 2 | f3.cs + */ +#keyset[id, num] +compilation_compiling_files( + int id : @compilation ref, + int num : int ref, + int file : @file ref +); + +/** + * The references used by a compiler invocation. + * If `id` is for the compiler invocation + * + * csc f1.cs f2.cs f3.cs /r:ref1.dll /r:ref2.dll /r:ref3.dll + * + * then there will be rows for + * + * num | arg + * --- | --- + * 0 | ref1.dll + * 1 | ref2.dll + * 2 | ref3.dll + */ +#keyset[id, num] +compilation_referencing_files( + int id : @compilation ref, + int num : int ref, + int file : @file ref +); + +/** + * The time taken by the extractor for a compiler invocation. + * + * For each file `num`, there will be rows for + * + * kind | seconds + * ---- | --- + * 1 | CPU seconds used by the extractor frontend + * 2 | Elapsed seconds during the extractor frontend + * 3 | CPU seconds used by the extractor backend + * 4 | Elapsed seconds during the extractor backend + */ +#keyset[id, num, kind] +compilation_time( + int id : @compilation ref, + int num : int ref, + /* kind: + 1 = frontend_cpu_seconds + 2 = frontend_elapsed_seconds + 3 = extractor_cpu_seconds + 4 = extractor_elapsed_seconds + */ + int kind : int ref, + float seconds : float ref +); + +/** + * An error or warning generated by the extractor. + * The diagnostic message `diagnostic` was generated during compiler + * invocation `compilation`, and is the `file_number_diagnostic_number`th + * message generated while extracting the `file_number`th file of that + * invocation. + */ +#keyset[compilation, file_number, file_number_diagnostic_number] +diagnostic_for( + unique int diagnostic : @diagnostic ref, + int compilation : @compilation ref, + int file_number : int ref, + int file_number_diagnostic_number : int ref +); + +diagnostics( + unique int id: @diagnostic, + int severity: int ref, + string error_tag: string ref, + string error_message: string ref, + string full_error_message: string ref, + int location: @location ref +); + +extractor_messages( + unique int id: @extractor_message, + int severity: int ref, + string origin : string ref, + string text : string ref, + string entity : string ref, + int location: @location ref, + string stack_trace : string ref +); + +/** + * If extraction was successful, then `cpu_seconds` and + * `elapsed_seconds` are the CPU time and elapsed time (respectively) + * that extraction took for compiler invocation `id`. + */ +compilation_finished( + unique int id : @compilation ref, + float cpu_seconds : float ref, + float elapsed_seconds : float ref +); + +compilation_assembly( + unique int id : @compilation ref, + int assembly: @assembly ref +) + +// Populated by the CSV extractor +externalData( + int id: @externalDataElement, + string path: string ref, + int column: int ref, + string value: string ref); + +sourceLocationPrefix( + string prefix: string ref); + +/* + * Overlay support + */ + +/** + * The CLI will automatically emit the tuple `databaseMetadata("isOverlay", "true")`, + * along with an `overlayChangedFiles` tuple for each new/modified/deleted file, + * when building an overlay database, and these can be used by the discard predicates. + */ +databaseMetadata( + string metadataKey : string ref, + string value : string ref +); + +overlayChangedFiles( + string path : string ref +); + +/* + * C# dbscheme + */ + +/** ELEMENTS **/ + +@element = @declaration | @stmt | @expr | @modifier | @attribute | @namespace_declaration + | @using_directive | @type_parameter_constraints | @externalDataElement + | @xmllocatable | @asp_element | @namespace | @preprocessor_directive; + +@declaration = @callable | @generic | @assignable | @namespace; + +@named_element = @namespace | @declaration; + +@declaration_with_accessors = @property | @indexer | @event; + +@assignable = @variable | @assignable_with_accessors | @event; + +@assignable_with_accessors = @property | @indexer; + +@attributable = @assembly | @field | @parameter | @operator | @method | @constructor + | @destructor | @callable_accessor | @value_or_ref_type | @declaration_with_accessors + | @local_function | @lambda_expr; + +/** LOCATIONS, ASEMMBLIES, MODULES, FILES and FOLDERS **/ + +@location = @location_default | @assembly; + +@locatable = @declaration_with_accessors | @callable_accessor | @declaration_or_directive + | @diagnostic | @extractor_message | @preprocessor_directive | @attribute | @type_mention | @type_parameter_constraints + | @declaration_with_accessors | @callable_accessor | @operator | @method + | @constructor | @destructor | @field | @local_variable | @parameter | @stmt | @expr + | @xmllocatable | @commentline | @commentblock | @asp_element + +locations_default( + unique int id: @location_default, + int file: @file ref, + int beginLine: int ref, + int beginColumn: int ref, + int endLine: int ref, + int endColumn: int ref); + +locations_mapped( + unique int id: @location_default ref, + int mapped_to: @location_default ref); + +@sourceline = @file | @callable | @xmllocatable; + +numlines( + int element_id: @sourceline ref, + int num_lines: int ref, + int num_code: int ref, + int num_comment: int ref); + +assemblies( + unique int id: @assembly, + int file: @file ref, + string fullname: string ref, + string name: string ref, + string version: string ref); + +files( + unique int id: @file, + string name: string ref); + +folders( + unique int id: @folder, + string name: string ref); + +@container = @folder | @file ; + +containerparent( + int parent: @container ref, + unique int child: @container ref); + +file_extraction_mode( + unique int file: @file ref, + int mode: int ref + /* 0 = normal, 1 = standalone extractor */ + ); + +/** NAMESPACES **/ + +@type_container = @namespace | @type; + +namespaces( + unique int id: @namespace, + string name: string ref); + +namespace_declarations( + unique int id: @namespace_declaration, + int namespace_id: @namespace ref); + +namespace_declaration_location( + unique int id: @namespace_declaration ref, + int loc: @location ref); + +parent_namespace( + unique int child_id: @type_container ref, + int namespace_id: @namespace ref); + +@declaration_or_directive = @namespace_declaration | @type | @using_directive; + +parent_namespace_declaration( + int child_id: @declaration_or_directive ref, // cannot be unique because of partial classes + int namespace_id: @namespace_declaration ref); + +@using_directive = @using_namespace_directive | @using_static_directive; + +using_global( + unique int id: @using_directive ref +); + +using_namespace_directives( + unique int id: @using_namespace_directive, + int namespace_id: @namespace ref); + +using_static_directives( + unique int id: @using_static_directive, + int type_id: @type_or_ref ref); + +using_directive_location( + unique int id: @using_directive ref, + int loc: @location ref); + +@preprocessor_directive = @pragma_warning | @pragma_checksum | @directive_define | @directive_undefine | @directive_warning + | @directive_error | @directive_nullable | @directive_line | @directive_region | @directive_endregion | @directive_if + | @directive_elif | @directive_else | @directive_endif; + +@conditional_directive = @directive_if | @directive_elif; +@branch_directive = @directive_if | @directive_elif | @directive_else; + +directive_ifs( + unique int id: @directive_if, + int branchTaken: int ref, /* 0: false, 1: true */ + int conditionValue: int ref); /* 0: false, 1: true */ + +directive_elifs( + unique int id: @directive_elif, + int branchTaken: int ref, /* 0: false, 1: true */ + int conditionValue: int ref, /* 0: false, 1: true */ + int parent: @directive_if ref, + int index: int ref); + +directive_elses( + unique int id: @directive_else, + int branchTaken: int ref, /* 0: false, 1: true */ + int parent: @directive_if ref, + int index: int ref); + +#keyset[id, start] +directive_endifs( + unique int id: @directive_endif, + unique int start: @directive_if ref); + +directive_define_symbols( + unique int id: @define_symbol_expr ref, + string name: string ref); + +directive_regions( + unique int id: @directive_region, + string name: string ref); + +#keyset[id, start] +directive_endregions( + unique int id: @directive_endregion, + unique int start: @directive_region ref); + +directive_lines( + unique int id: @directive_line, + int kind: int ref); /* 0: default, 1: hidden, 2: numeric, 3: span */ + +directive_line_value( + unique int id: @directive_line ref, + int line: int ref); + +directive_line_file( + unique int id: @directive_line ref, + int file: @file ref); + +directive_line_offset( + unique int id: @directive_line ref, + int offset: int ref); + +directive_line_span( + unique int id: @directive_line ref, + int startLine: int ref, + int startColumn: int ref, + int endLine: int ref, + int endColumn: int ref); + +directive_nullables( + unique int id: @directive_nullable, + int setting: int ref, /* 0: disable, 1: enable, 2: restore */ + int target: int ref); /* 0: none, 1: annotations, 2: warnings */ + +directive_warnings( + unique int id: @directive_warning, + string message: string ref); + +directive_errors( + unique int id: @directive_error, + string message: string ref); + +directive_undefines( + unique int id: @directive_undefine, + string name: string ref); + +directive_defines( + unique int id: @directive_define, + string name: string ref); + +pragma_checksums( + unique int id: @pragma_checksum, + int file: @file ref, + string guid: string ref, + string bytes: string ref); + +pragma_warnings( + unique int id: @pragma_warning, + int kind: int ref /* 0 = disable, 1 = restore */); + +#keyset[id, index] +pragma_warning_error_codes( + int id: @pragma_warning ref, + string errorCode: string ref, + int index: int ref); + +preprocessor_directive_location( + unique int id: @preprocessor_directive ref, + int loc: @location ref); + +preprocessor_directive_compilation( + int id: @preprocessor_directive ref, + int compilation: @compilation ref); + +preprocessor_directive_active( + unique int id: @preprocessor_directive ref, + int active: int ref); /* 0: false, 1: true */ + +/** TYPES **/ + +types( + unique int id: @type, + int kind: int ref, + string name: string ref); + +case @type.kind of + 1 = @bool_type +| 2 = @char_type +| 3 = @decimal_type +| 4 = @sbyte_type +| 5 = @short_type +| 6 = @int_type +| 7 = @long_type +| 8 = @byte_type +| 9 = @ushort_type +| 10 = @uint_type +| 11 = @ulong_type +| 12 = @float_type +| 13 = @double_type +| 14 = @enum_type +| 15 = @struct_type +| 17 = @class_type +| 19 = @interface_type +| 20 = @delegate_type +| 21 = @null_type +| 22 = @type_parameter +| 23 = @pointer_type +| 24 = @nullable_type +| 25 = @array_type +| 26 = @void_type +| 27 = @int_ptr_type +| 28 = @uint_ptr_type +| 29 = @dynamic_type +| 30 = @arglist_type +| 31 = @unknown_type +| 32 = @tuple_type +| 33 = @function_pointer_type +| 34 = @inline_array_type +| 35 = @extension_type + ; + +@simple_type = @bool_type | @char_type | @integral_type | @floating_point_type | @decimal_type; +@integral_type = @signed_integral_type | @unsigned_integral_type; +@signed_integral_type = @sbyte_type | @short_type | @int_type | @long_type; +@unsigned_integral_type = @byte_type | @ushort_type | @uint_type | @ulong_type; +@floating_point_type = @float_type | @double_type; +@value_type = @simple_type | @enum_type | @struct_type | @nullable_type | @int_ptr_type + | @uint_ptr_type | @tuple_type | @void_type | @inline_array_type; +@ref_type = @class_type | @interface_type | @array_type | @delegate_type | @null_type + | @dynamic_type | @extension_type; +@value_or_ref_type = @value_type | @ref_type; + +typerefs( + unique int id: @typeref, + string name: string ref); + +typeref_type( + int id: @typeref ref, + unique int typeId: @type ref); + +@type_or_ref = @type | @typeref; + +array_element_type( + unique int array: @array_type ref, + int dimension: int ref, + int rank: int ref, + int element: @type_or_ref ref); + +nullable_underlying_type( + unique int nullable: @nullable_type ref, + int underlying: @type_or_ref ref); + +pointer_referent_type( + unique int pointer: @pointer_type ref, + int referent: @type_or_ref ref); + +enum_underlying_type( + unique int enum_id: @enum_type ref, + int underlying_type_id: @type_or_ref ref); + +delegate_return_type( + unique int delegate_id: @delegate_type ref, + int return_type_id: @type_or_ref ref); + +function_pointer_return_type( + unique int function_pointer_id: @function_pointer_type ref, + int return_type_id: @type_or_ref ref); + +extension_receiver_type( + unique int extension: @extension_type ref, + int receiver_type_id: @type_or_ref ref); + +extend( + int sub: @type ref, + int super: @type_or_ref ref); + +anonymous_types( + unique int id: @type ref); + +@interface_or_ref = @interface_type | @typeref; + +implement( + int sub: @type ref, + int super: @type_or_ref ref); + +type_location( + int id: @type ref, + int loc: @location ref); + +tuple_underlying_type( + unique int tuple: @tuple_type ref, + int struct: @type_or_ref ref); + +#keyset[tuple, index] +tuple_element( + int tuple: @tuple_type ref, + int index: int ref, + unique int field: @field ref); + +attributes( + unique int id: @attribute, + int kind: int ref, + int type_id: @type_or_ref ref, + int target: @attributable ref); + +case @attribute.kind of + 0 = @attribute_default +| 1 = @attribute_return +| 2 = @attribute_assembly +| 3 = @attribute_module +; + +attribute_location( + int id: @attribute ref, + int loc: @location ref); + +@type_mention_parent = @element | @type_mention; + +type_mention( + unique int id: @type_mention, + int type_id: @type_or_ref ref, + int parent: @type_mention_parent ref); + +type_mention_location( + unique int id: @type_mention ref, + int loc: @location ref); + +@has_type_annotation = @assignable | @type_parameter | @callable | @expr | @delegate_type | @generic | @function_pointer_type; + +/** + * A direct annotation on an entity, for example `string? x;`. + * + * Annotations: + * 2 = reftype is not annotated "!" + * 3 = reftype is annotated "?" + * 4 = readonly ref type / in parameter + * 5 = ref type parameter, return or local variable + * 6 = out parameter + * + * Note that the annotation depends on the element it annotates. + * @assignable: The annotation is on the type of the assignable, for example the variable type. + * @type_parameter: The annotation is on the reftype constraint + * @callable: The annotation is on the return type + * @array_type: The annotation is on the element type + */ +type_annotation(int id: @has_type_annotation ref, int annotation: int ref); + +nullability(unique int nullability: @nullability, int kind: int ref); + +case @nullability.kind of + 0 = @oblivious +| 1 = @not_annotated +| 2 = @annotated +; + +#keyset[parent, index] +nullability_parent(int nullability: @nullability ref, int index: int ref, int parent: @nullability ref) + +type_nullability(int id: @has_type_annotation ref, int nullability: @nullability ref); + +/** + * The nullable flow state of an expression, as determined by Roslyn. + * 0 = none (default, not populated) + * 1 = not null + * 2 = maybe null + */ +expr_flowstate(unique int id: @expr ref, int state: int ref); + +/** GENERICS **/ + +@generic = @type | @method | @local_function; + +type_parameters( + unique int id: @type_parameter ref, + int index: int ref, + int generic_id: @generic ref, + int variance: int ref /* none = 0, out = 1, in = 2 */); + +#keyset[constructed_id, index] +type_arguments( + int id: @type_or_ref ref, + int index: int ref, + int constructed_id: @generic_or_ref ref); + +@generic_or_ref = @generic | @typeref; + +constructed_generic( + unique int constructed: @generic ref, + int generic: @generic_or_ref ref); + +type_parameter_constraints( + unique int id: @type_parameter_constraints, + int param_id: @type_parameter ref); + +type_parameter_constraints_location( + int id: @type_parameter_constraints ref, + int loc: @location ref); + +general_type_parameter_constraints( + int id: @type_parameter_constraints ref, + int kind: int ref /* class = 1, struct = 2, new = 3 */); + +specific_type_parameter_constraints( + int id: @type_parameter_constraints ref, + int base_id: @type_or_ref ref); + +specific_type_parameter_nullability( + int id: @type_parameter_constraints ref, + int base_id: @type_or_ref ref, + int nullability: @nullability ref); + +/** FUNCTION POINTERS */ + +function_pointer_calling_conventions( + int id: @function_pointer_type ref, + int kind: int ref); + +#keyset[id, index] +has_unmanaged_calling_conventions( + int id: @function_pointer_type ref, + int index: int ref, + int conv_id: @type_or_ref ref); + +/** MODIFIERS */ + +@modifiable = @modifiable_direct | @event_accessor; + +@modifiable_direct = @member | @accessor | @local_function | @anonymous_function_expr; + +modifiers( + unique int id: @modifier, + string name: string ref); + +has_modifiers( + int id: @modifiable_direct ref, + int mod_id: @modifier ref); + +/** MEMBERS **/ + +@member = @method | @constructor | @destructor | @field | @property | @event | @operator | @indexer | @type; + +@named_exprorstmt = @goto_stmt | @labeled_stmt | @expr; + +@virtualizable = @method | @property | @indexer | @event | @operator; + +exprorstmt_name( + unique int parent_id: @named_exprorstmt ref, + string name: string ref); + +nested_types( + unique int id: @type ref, + int declaring_type_id: @type ref, + int unbound_id: @type ref); + +properties( + unique int id: @property, + string name: string ref, + int declaring_type_id: @type ref, + int type_id: @type_or_ref ref, + int unbound_id: @property ref); + +property_location( + int id: @property ref, + int loc: @location ref); + +indexers( + unique int id: @indexer, + string name: string ref, + int declaring_type_id: @type ref, + int type_id: @type_or_ref ref, + int unbound_id: @indexer ref); + +indexer_location( + int id: @indexer ref, + int loc: @location ref); + +accessors( + unique int id: @accessor, + int kind: int ref, + string name: string ref, + int declaring_member_id: @member ref, + int unbound_id: @accessor ref); + +case @accessor.kind of + 1 = @getter +| 2 = @setter + ; + +init_only_accessors( + unique int id: @accessor ref); + +accessor_location( + int id: @accessor ref, + int loc: @location ref); + +events( + unique int id: @event, + string name: string ref, + int declaring_type_id: @type ref, + int type_id: @type_or_ref ref, + int unbound_id: @event ref); + +event_location( + int id: @event ref, + int loc: @location ref); + +event_accessors( + unique int id: @event_accessor, + int kind: int ref, + string name: string ref, + int declaring_event_id: @event ref, + int unbound_id: @event_accessor ref); + +case @event_accessor.kind of + 1 = @add_event_accessor +| 2 = @remove_event_accessor + ; + +event_accessor_location( + int id: @event_accessor ref, + int loc: @location ref); + +operators( + unique int id: @operator, + string name: string ref, + string symbol: string ref, + int declaring_type_id: @type ref, + int type_id: @type_or_ref ref, + int unbound_id: @operator ref); + +operator_location( + int id: @operator ref, + int loc: @location ref); + +constant_value( + int id: @variable ref, + string value: string ref); + +/** CALLABLES **/ + +@callable = @method | @constructor | @destructor | @operator | @callable_accessor | @anonymous_function_expr | @local_function; + +@callable_accessor = @accessor | @event_accessor; + +methods( + unique int id: @method, + string name: string ref, + int declaring_type_id: @type ref, + int type_id: @type_or_ref ref, + int unbound_id: @method ref); + +method_location( + int id: @method ref, + int loc: @location ref); + +constructors( + unique int id: @constructor, + string name: string ref, + int declaring_type_id: @type ref, + int unbound_id: @constructor ref); + +constructor_location( + int id: @constructor ref, + int loc: @location ref); + +destructors( + unique int id: @destructor, + string name: string ref, + int declaring_type_id: @type ref, + int unbound_id: @destructor ref); + +destructor_location( + int id: @destructor ref, + int loc: @location ref); + +overrides( + int id: @callable ref, + int base_id: @callable ref); + +explicitly_implements( + int id: @member ref, + int interface_id: @interface_or_ref ref); + +local_functions( + unique int id: @local_function, + string name: string ref, + int return_type: @type ref, + int unbound_id: @local_function ref); + +local_function_stmts( + unique int fn: @local_function_stmt ref, + int stmt: @local_function ref); + +/** VARIABLES **/ + +@variable = @local_scope_variable | @field; + +@local_scope_variable = @local_variable | @parameter; + +fields( + unique int id: @field, + int kind: int ref, + string name: string ref, + int declaring_type_id: @type ref, + int type_id: @type_or_ref ref, + int unbound_id: @field ref); + +case @field.kind of + 1 = @addressable_field +| 2 = @constant + ; + +field_location( + int id: @field ref, + int loc: @location ref); + +localvars( + unique int id: @local_variable, + int kind: int ref, + string name: string ref, + int implicitly_typed: int ref /* 0 = no, 1 = yes */, + int type_id: @type_or_ref ref, + int parent_id: @local_var_decl_expr ref); + +case @local_variable.kind of + 1 = @addressable_local_variable +| 2 = @local_constant +| 3 = @local_variable_ref + ; + +localvar_location( + unique int id: @local_variable ref, + int loc: @location ref); + +@parameterizable = @callable | @delegate_type | @indexer | @function_pointer_type | @extension_type; + +#keyset[name, parent_id] +#keyset[index, parent_id] +params( + unique int id: @parameter, + string name: string ref, + int type_id: @type_or_ref ref, + int index: int ref, + int mode: int ref, /* value = 0, ref = 1, out = 2, params/array = 3, this = 4, in = 5, ref readonly = 6 */ + int parent_id: @parameterizable ref, + int unbound_id: @parameter ref); + +param_location( + int id: @parameter ref, + int loc: @location ref); + +@has_scoped_annotation = @local_scope_variable + +scoped_annotation( + int id: @has_scoped_annotation ref, + int kind: int ref // scoped ref = 1, scoped value = 2 + ); + +/** STATEMENTS **/ + +@exprorstmt_parent = @control_flow_element | @top_level_exprorstmt_parent; + +statements( + unique int id: @stmt, + int kind: int ref); + +#keyset[index, parent] +stmt_parent( + unique int stmt: @stmt ref, + int index: int ref, + int parent: @control_flow_element ref); + +@top_level_stmt_parent = @callable; + +// [index, parent] is not a keyset because the same parent may be compiled multiple times +stmt_parent_top_level( + unique int stmt: @stmt ref, + int index: int ref, + int parent: @top_level_stmt_parent ref); + +case @stmt.kind of + 1 = @block_stmt +| 2 = @expr_stmt +| 3 = @if_stmt +| 4 = @switch_stmt +| 5 = @while_stmt +| 6 = @do_stmt +| 7 = @for_stmt +| 8 = @foreach_stmt +| 9 = @break_stmt +| 10 = @continue_stmt +| 11 = @goto_stmt +| 12 = @goto_case_stmt +| 13 = @goto_default_stmt +| 14 = @throw_stmt +| 15 = @return_stmt +| 16 = @yield_stmt +| 17 = @try_stmt +| 18 = @checked_stmt +| 19 = @unchecked_stmt +| 20 = @lock_stmt +| 21 = @using_block_stmt +| 22 = @var_decl_stmt +| 23 = @const_decl_stmt +| 24 = @empty_stmt +| 25 = @unsafe_stmt +| 26 = @fixed_stmt +| 27 = @label_stmt +| 28 = @catch +| 29 = @case_stmt +| 30 = @local_function_stmt +| 31 = @using_decl_stmt + ; + +@using_stmt = @using_block_stmt | @using_decl_stmt; + +@labeled_stmt = @label_stmt | @case; + +@decl_stmt = @var_decl_stmt | @const_decl_stmt | @using_decl_stmt; + +@cond_stmt = @if_stmt | @switch_stmt; + +@loop_stmt = @while_stmt | @do_stmt | @for_stmt | @foreach_stmt; + +@jump_stmt = @break_stmt | @goto_any_stmt | @continue_stmt | @throw_stmt | @return_stmt + | @yield_stmt; + +@goto_any_stmt = @goto_default_stmt | @goto_case_stmt | @goto_stmt; + + +stmt_location( + unique int id: @stmt ref, + int loc: @location ref); + +catch_type( + unique int catch_id: @catch ref, + int type_id: @type_or_ref ref, + int kind: int ref /* explicit = 1, implicit = 2 */); + +foreach_stmt_info( + unique int id: @foreach_stmt ref, + int kind: int ref /* non-async = 1, async = 2 */); + +@foreach_symbol = @method | @property | @type_or_ref; + +#keyset[id, kind] +foreach_stmt_desugar( + int id: @foreach_stmt ref, + int symbol: @foreach_symbol ref, + int kind: int ref /* GetEnumeratorMethod = 1, CurrentProperty = 2, MoveNextMethod = 3, DisposeMethod = 4, ElementType = 5 */); + +/** EXPRESSIONS **/ + +expressions( + unique int id: @expr, + int kind: int ref, + int type_id: @type_or_ref ref); + +#keyset[index, parent] +expr_parent( + unique int expr: @expr ref, + int index: int ref, + int parent: @control_flow_element ref); + +@top_level_expr_parent = @attribute | @field | @property | @indexer | @parameter | @directive_if | @directive_elif; + +@top_level_exprorstmt_parent = @top_level_expr_parent | @top_level_stmt_parent; + +// [index, parent] is not a keyset because the same parent may be compiled multiple times +expr_parent_top_level( + unique int expr: @expr ref, + int index: int ref, + int parent: @top_level_exprorstmt_parent ref); + +case @expr.kind of +/* literal */ + 1 = @bool_literal_expr +| 2 = @char_literal_expr +| 3 = @decimal_literal_expr +| 4 = @int_literal_expr +| 5 = @long_literal_expr +| 6 = @uint_literal_expr +| 7 = @ulong_literal_expr +| 8 = @float_literal_expr +| 9 = @double_literal_expr +| 10 = @utf16_string_literal_expr +| 11 = @null_literal_expr +/* primary & unary */ +| 12 = @this_access_expr +| 13 = @base_access_expr +| 14 = @local_variable_access_expr +| 15 = @parameter_access_expr +| 16 = @field_access_expr +| 17 = @property_access_expr +| 18 = @method_access_expr +| 19 = @event_access_expr +| 20 = @indexer_access_expr +| 21 = @array_access_expr +| 22 = @type_access_expr +| 23 = @typeof_expr +| 24 = @method_invocation_expr +| 25 = @delegate_invocation_expr +| 26 = @operator_invocation_expr +| 27 = @cast_expr +| 28 = @object_creation_expr +| 29 = @explicit_delegate_creation_expr +| 30 = @implicit_delegate_creation_expr +| 31 = @array_creation_expr +| 32 = @default_expr +| 33 = @plus_expr +| 34 = @minus_expr +| 35 = @bit_not_expr +| 36 = @log_not_expr +| 37 = @post_incr_expr +| 38 = @post_decr_expr +| 39 = @pre_incr_expr +| 40 = @pre_decr_expr +/* multiplicative */ +| 41 = @mul_expr +| 42 = @div_expr +| 43 = @rem_expr +/* additive */ +| 44 = @add_expr +| 45 = @sub_expr +/* shift */ +| 46 = @lshift_expr +| 47 = @rshift_expr +/* relational */ +| 48 = @lt_expr +| 49 = @gt_expr +| 50 = @le_expr +| 51 = @ge_expr +/* equality */ +| 52 = @eq_expr +| 53 = @ne_expr +/* logical */ +| 54 = @bit_and_expr +| 55 = @bit_xor_expr +| 56 = @bit_or_expr +| 57 = @log_and_expr +| 58 = @log_or_expr +/* type testing */ +| 59 = @is_expr +| 60 = @as_expr +/* null coalescing */ +| 61 = @null_coalescing_expr +/* conditional */ +| 62 = @conditional_expr +/* assignment */ +| 63 = @simple_assign_expr +| 64 = @assign_add_expr +| 65 = @assign_sub_expr +| 66 = @assign_mul_expr +| 67 = @assign_div_expr +| 68 = @assign_rem_expr +| 69 = @assign_and_expr +| 70 = @assign_xor_expr +| 71 = @assign_or_expr +| 72 = @assign_lshift_expr +| 73 = @assign_rshift_expr +/* more */ +| 74 = @object_init_expr +| 75 = @collection_init_expr +| 76 = @array_init_expr +| 77 = @checked_expr +| 78 = @unchecked_expr +| 79 = @constructor_init_expr +| 80 = @add_event_expr +| 81 = @remove_event_expr +| 82 = @par_expr +| 83 = @local_var_decl_expr +| 84 = @lambda_expr +| 85 = @anonymous_method_expr +| 86 = @namespace_expr +/* dynamic */ +| 92 = @dynamic_element_access_expr +| 93 = @dynamic_member_access_expr +/* unsafe */ +| 100 = @pointer_indirection_expr +| 101 = @address_of_expr +| 102 = @sizeof_expr +/* async */ +| 103 = @await_expr +/* C# 6.0 */ +| 104 = @nameof_expr +| 105 = @interpolated_string_expr +| 106 = @unknown_expr +/* C# 7.0 */ +| 107 = @throw_expr +| 108 = @tuple_expr +| 109 = @local_function_invocation_expr +| 110 = @ref_expr +| 111 = @discard_expr +/* C# 8.0 */ +| 112 = @range_expr +| 113 = @index_expr +| 114 = @switch_expr +| 115 = @recursive_pattern_expr +| 116 = @property_pattern_expr +| 117 = @positional_pattern_expr +| 118 = @switch_case_expr +| 119 = @assign_coalesce_expr +| 120 = @suppress_nullable_warning_expr +| 121 = @namespace_access_expr +/* C# 9.0 */ +| 122 = @lt_pattern_expr +| 123 = @gt_pattern_expr +| 124 = @le_pattern_expr +| 125 = @ge_pattern_expr +| 126 = @not_pattern_expr +| 127 = @and_pattern_expr +| 128 = @or_pattern_expr +| 129 = @function_pointer_invocation_expr +| 130 = @with_expr +/* C# 11.0 */ +| 131 = @list_pattern_expr +| 132 = @slice_pattern_expr +| 133 = @urshift_expr +| 134 = @assign_urshift_expr +| 135 = @utf8_string_literal_expr +/* C# 12.0 */ +| 136 = @collection_expr +| 137 = @spread_element_expr +| 138 = @interpolated_string_insert_expr +/* Preprocessor */ +| 999 = @define_symbol_expr +; + +@switch = @switch_stmt | @switch_expr; +@case = @case_stmt | @switch_case_expr; +@pattern_match = @case | @is_expr; +@unary_pattern_expr = @not_pattern_expr; +@relational_pattern_expr = @gt_pattern_expr | @lt_pattern_expr | @ge_pattern_expr | @le_pattern_expr; +@binary_pattern_expr = @and_pattern_expr | @or_pattern_expr; + +@integer_literal_expr = @int_literal_expr | @long_literal_expr | @uint_literal_expr | @ulong_literal_expr; +@real_literal_expr = @float_literal_expr | @double_literal_expr | @decimal_literal_expr; +@string_literal_expr = @utf16_string_literal_expr | @utf8_string_literal_expr; +@literal_expr = @bool_literal_expr | @char_literal_expr | @integer_literal_expr | @real_literal_expr + | @string_literal_expr | @null_literal_expr; + +@assign_expr = @simple_assign_expr | @assign_op_expr | @local_var_decl_expr; +@assign_op_call_expr = @assign_arith_expr | @assign_bitwise_expr +@assign_op_expr = @assign_op_call_expr | @assign_event_expr | @assign_coalesce_expr; +@assign_event_expr = @add_event_expr | @remove_event_expr; + +@add_operation = @add_expr | @assign_add_expr; +@sub_operation = @sub_expr | @assign_sub_expr; +@mul_operation = @mul_expr | @assign_mul_expr; +@div_operation = @div_expr | @assign_div_expr; +@rem_operation = @rem_expr | @assign_rem_expr; +@and_operation = @bit_and_expr | @assign_and_expr; +@xor_operation = @bit_xor_expr | @assign_xor_expr; +@or_operation = @bit_or_expr | @assign_or_expr; +@lshift_operation = @lshift_expr | @assign_lshift_expr; +@rshift_operation = @rshift_expr | @assign_rshift_expr; +@urshift_operation = @urshift_expr | @assign_urshift_expr; +@null_coalescing_operation = @null_coalescing_expr | @assign_coalesce_expr; + +@assign_arith_expr = @assign_add_expr | @assign_sub_expr | @assign_mul_expr | @assign_div_expr + | @assign_rem_expr +@assign_bitwise_expr = @assign_and_expr | @assign_or_expr | @assign_xor_expr + | @assign_lshift_expr | @assign_rshift_expr | @assign_urshift_expr; + +@member_access_expr = @field_access_expr | @property_access_expr | @indexer_access_expr | @event_access_expr + | @method_access_expr | @type_access_expr | @dynamic_member_access_expr; +@access_expr = @member_access_expr | @this_access_expr | @base_access_expr | @assignable_access_expr | @namespace_access_expr; +@element_access_expr = @indexer_access_expr | @array_access_expr | @dynamic_element_access_expr; + +@local_variable_access = @local_variable_access_expr | @local_var_decl_expr; +@local_scope_variable_access_expr = @parameter_access_expr | @local_variable_access; +@variable_access_expr = @local_scope_variable_access_expr | @field_access_expr; + +@assignable_access_expr = @variable_access_expr | @property_access_expr | @element_access_expr + | @event_access_expr | @dynamic_member_access_expr; + +@objectorcollection_init_expr = @object_init_expr | @collection_init_expr; + +@delegate_creation_expr = @explicit_delegate_creation_expr | @implicit_delegate_creation_expr; + +@bin_arith_op_expr = @mul_expr | @div_expr | @rem_expr | @add_expr | @sub_expr; +@incr_op_expr = @pre_incr_expr | @post_incr_expr; +@decr_op_expr = @pre_decr_expr | @post_decr_expr; +@mut_op_expr = @incr_op_expr | @decr_op_expr; +@un_arith_op_expr = @plus_expr | @minus_expr | @mut_op_expr; +@arith_op_expr = @bin_arith_op_expr | @un_arith_op_expr; + +@ternary_log_op_expr = @conditional_expr; +@bin_log_op_expr = @log_and_expr | @log_or_expr | @null_coalescing_expr; +@un_log_op_expr = @log_not_expr; +@log_expr = @un_log_op_expr | @bin_log_op_expr | @ternary_log_op_expr; + +@bin_bit_op_expr = @bit_and_expr | @bit_or_expr | @bit_xor_expr | @lshift_expr + | @rshift_expr | @urshift_expr; +@un_bit_op_expr = @bit_not_expr; +@bit_expr = @un_bit_op_expr | @bin_bit_op_expr; + +@equality_op_expr = @eq_expr | @ne_expr; +@rel_op_expr = @gt_expr | @lt_expr| @ge_expr | @le_expr; +@comp_expr = @equality_op_expr | @rel_op_expr; + +@op_expr = @un_op | @bin_op | @ternary_op; + +@ternary_op = @ternary_log_op_expr; +@bin_op = @assign_expr | @bin_arith_op_expr | @bin_log_op_expr | @bin_bit_op_expr | @comp_expr; +@un_op = @un_arith_op_expr | @un_log_op_expr | @un_bit_op_expr | @sizeof_expr + | @pointer_indirection_expr | @address_of_expr; + +@anonymous_function_expr = @lambda_expr | @anonymous_method_expr; + +@op_invoke_expr = @operator_invocation_expr | @assign_op_call_expr +@call = @method_invocation_expr | @constructor_init_expr | @op_invoke_expr + | @delegate_invocation_expr | @object_creation_expr | @call_access_expr + | @local_function_invocation_expr | @function_pointer_invocation_expr; + +@call_access_expr = @property_access_expr | @event_access_expr | @indexer_access_expr; + +@late_bindable_expr = @dynamic_element_access_expr | @dynamic_member_access_expr + | @object_creation_expr | @method_invocation_expr | @op_invoke_expr; + +@throw_element = @throw_expr | @throw_stmt; + +@implicitly_typeable_object_creation_expr = @object_creation_expr | @explicit_delegate_creation_expr; + +implicitly_typed_array_creation( + unique int id: @array_creation_expr ref); + +explicitly_sized_array_creation( + unique int id: @array_creation_expr ref); + +stackalloc_array_creation( + unique int id: @array_creation_expr ref); + +implicitly_typed_object_creation( + unique int id: @implicitly_typeable_object_creation_expr ref); + +mutator_invocation_mode( + unique int id: @operator_invocation_expr ref, + int mode: int ref /* prefix = 1, postfix = 2*/); + +expr_value( + unique int id: @expr ref, + string value: string ref); + +expr_call( + unique int caller_id: @expr ref, + int target_id: @callable ref); + +expr_access( + unique int accesser_id: @access_expr ref, + int target_id: @accessible ref); + +@accessible = @method | @assignable | @local_function | @namespace; + +expr_location( + unique int id: @expr ref, + int loc: @location ref); + +dynamic_member_name( + unique int id: @late_bindable_expr ref, + string name: string ref); + +@qualifiable_expr = @member_access_expr + | @method_invocation_expr + | @element_access_expr + | @assign_op_call_expr; + +conditional_access( + unique int id: @qualifiable_expr ref); + +expr_argument( + unique int id: @expr ref, + int mode: int ref); + /* mode is the same as params: value = 0, ref = 1, out = 2 */ + +expr_argument_name( + unique int id: @expr ref, + string name: string ref); + +lambda_expr_return_type( + unique int id: @lambda_expr ref, + int type_id: @type_or_ref ref); + +/* Compiler generated */ + +compiler_generated(unique int id: @element ref); + +/** CONTROL/DATA FLOW **/ + +@control_flow_element = @stmt | @expr; + +/* XML Files */ + +xmlEncoding ( + unique int id: @file ref, + string encoding: string ref); + +xmlDTDs( + unique int id: @xmldtd, + string root: string ref, + string publicId: string ref, + string systemId: string ref, + int fileid: @file ref); + +xmlElements( + unique int id: @xmlelement, + string name: string ref, + int parentid: @xmlparent ref, + int idx: int ref, + int fileid: @file ref); + +xmlAttrs( + unique int id: @xmlattribute, + int elementid: @xmlelement ref, + string name: string ref, + string value: string ref, + int idx: int ref, + int fileid: @file ref); + +xmlNs( + int id: @xmlnamespace, + string prefixName: string ref, + string URI: string ref, + int fileid: @file ref); + +xmlHasNs( + int elementId: @xmlnamespaceable ref, + int nsId: @xmlnamespace ref, + int fileid: @file ref); + +xmlComments( + unique int id: @xmlcomment, + string text: string ref, + int parentid: @xmlparent ref, + int fileid: @file ref); + +xmlChars( + unique int id: @xmlcharacters, + string text: string ref, + int parentid: @xmlparent ref, + int idx: int ref, + int isCDATA: int ref, + int fileid: @file ref); + +@xmlparent = @file | @xmlelement; +@xmlnamespaceable = @xmlelement | @xmlattribute; + +xmllocations( + int xmlElement: @xmllocatable ref, + int location: @location_default ref); + +@xmllocatable = @xmlcharacters | @xmlelement | @xmlcomment | @xmlattribute | @xmldtd | @file | @xmlnamespace; + +/* Comments */ + +commentline( + unique int id: @commentline, + int kind: int ref, + string text: string ref, + string rawtext: string ref); + +case @commentline.kind of + 0 = @singlelinecomment +| 1 = @xmldoccomment +| 2 = @multilinecomment; + +commentline_location( + unique int id: @commentline ref, + int loc: @location ref); + +commentblock( + unique int id : @commentblock); + +commentblock_location( + unique int id: @commentblock ref, + int loc: @location ref); + +commentblock_binding( + int id: @commentblock ref, + int entity: @element ref, + int bindtype: int ref); /* 0: Parent, 1: Best, 2: Before, 3: After */ + +commentblock_child( + int id: @commentblock ref, + int commentline: @commentline ref, + int index: int ref); + +/* ASP.NET */ + +case @asp_element.kind of + 0=@asp_close_tag +| 1=@asp_code +| 2=@asp_comment +| 3=@asp_data_binding +| 4=@asp_directive +| 5=@asp_open_tag +| 6=@asp_quoted_string +| 7=@asp_text +| 8=@asp_xml_directive; + +@asp_attribute = @asp_code | @asp_data_binding | @asp_quoted_string; + +asp_elements( + unique int id: @asp_element, + int kind: int ref, + int loc: @location ref); + +asp_comment_server(unique int comment: @asp_comment ref); +asp_code_inline(unique int code: @asp_code ref); +asp_directive_attribute( + int directive: @asp_directive ref, + int index: int ref, + string name: string ref, + int value: @asp_quoted_string ref); +asp_directive_name( + unique int directive: @asp_directive ref, + string name: string ref); +asp_element_body( + unique int element: @asp_element ref, + string body: string ref); +asp_tag_attribute( + int tag: @asp_open_tag ref, + int index: int ref, + string name: string ref, + int attribute: @asp_attribute ref); +asp_tag_name( + unique int tag: @asp_open_tag ref, + string name: string ref); +asp_tag_isempty(int tag: @asp_open_tag ref); diff --git a/csharp/ql/lib/upgrades/ea7ad33252e550241975676f09fcc7b0a703deab/semmlecode.csharp.dbscheme b/csharp/ql/lib/upgrades/ea7ad33252e550241975676f09fcc7b0a703deab/semmlecode.csharp.dbscheme new file mode 100644 index 000000000000..3cabc77473cb --- /dev/null +++ b/csharp/ql/lib/upgrades/ea7ad33252e550241975676f09fcc7b0a703deab/semmlecode.csharp.dbscheme @@ -0,0 +1,1505 @@ +/* This is a dummy line to alter the dbscheme, so we can make a database upgrade + * without actually changing any of the dbscheme predicates. It contains a date + * to allow for such updates in the future as well. + * + * 2021-07-14 + * + * DO NOT remove this comment carelessly, since it can revert the dbscheme back to a + * previously seen state (matching a previously seen SHA), which would make the upgrade + * mechanism not work properly. + */ + +/** + * An invocation of the compiler. Note that more than one file may be + * compiled per invocation. For example, this command compiles three + * source files: + * + * csc f1.cs f2.cs f3.cs + * + * The `id` simply identifies the invocation, while `cwd` is the working + * directory from which the compiler was invoked. + */ +compilations( + unique int id : @compilation, + string cwd : string ref +); + +compilation_info( + int id : @compilation ref, + string info_key: string ref, + string info_value: string ref +) + +/** + * The arguments that were passed to the extractor for a compiler + * invocation. If `id` is for the compiler invocation + * + * csc f1.cs f2.cs f3.cs + * + * then typically there will be rows for + * + * num | arg + * --- | --- + * 0 | --compiler + * 1 | *path to compiler* + * 2 | f1.cs + * 3 | f2.cs + * 4 | f3.cs + */ +#keyset[id, num] +compilation_args( + int id : @compilation ref, + int num : int ref, + string arg : string ref +); + +/** + * The expanded arguments that were passed to the extractor for a + * compiler invocation. This is similar to `compilation_args`, but + * for a `@someFile.rsp` argument, it includes the arguments from that + * file, rather than just taking the argument literally. + */ +#keyset[id, num] +compilation_expanded_args( + int id : @compilation ref, + int num : int ref, + string arg : string ref +); + +/** + * The source files that are compiled by a compiler invocation. + * If `id` is for the compiler invocation + * + * csc f1.cs f2.cs f3.cs + * + * then there will be rows for + * + * num | arg + * --- | --- + * 0 | f1.cs + * 1 | f2.cs + * 2 | f3.cs + */ +#keyset[id, num] +compilation_compiling_files( + int id : @compilation ref, + int num : int ref, + int file : @file ref +); + +/** + * The references used by a compiler invocation. + * If `id` is for the compiler invocation + * + * csc f1.cs f2.cs f3.cs /r:ref1.dll /r:ref2.dll /r:ref3.dll + * + * then there will be rows for + * + * num | arg + * --- | --- + * 0 | ref1.dll + * 1 | ref2.dll + * 2 | ref3.dll + */ +#keyset[id, num] +compilation_referencing_files( + int id : @compilation ref, + int num : int ref, + int file : @file ref +); + +/** + * The time taken by the extractor for a compiler invocation. + * + * For each file `num`, there will be rows for + * + * kind | seconds + * ---- | --- + * 1 | CPU seconds used by the extractor frontend + * 2 | Elapsed seconds during the extractor frontend + * 3 | CPU seconds used by the extractor backend + * 4 | Elapsed seconds during the extractor backend + */ +#keyset[id, num, kind] +compilation_time( + int id : @compilation ref, + int num : int ref, + /* kind: + 1 = frontend_cpu_seconds + 2 = frontend_elapsed_seconds + 3 = extractor_cpu_seconds + 4 = extractor_elapsed_seconds + */ + int kind : int ref, + float seconds : float ref +); + +/** + * An error or warning generated by the extractor. + * The diagnostic message `diagnostic` was generated during compiler + * invocation `compilation`, and is the `file_number_diagnostic_number`th + * message generated while extracting the `file_number`th file of that + * invocation. + */ +#keyset[compilation, file_number, file_number_diagnostic_number] +diagnostic_for( + unique int diagnostic : @diagnostic ref, + int compilation : @compilation ref, + int file_number : int ref, + int file_number_diagnostic_number : int ref +); + +diagnostics( + unique int id: @diagnostic, + int severity: int ref, + string error_tag: string ref, + string error_message: string ref, + string full_error_message: string ref, + int location: @location ref +); + +extractor_messages( + unique int id: @extractor_message, + int severity: int ref, + string origin : string ref, + string text : string ref, + string entity : string ref, + int location: @location ref, + string stack_trace : string ref +); + +/** + * If extraction was successful, then `cpu_seconds` and + * `elapsed_seconds` are the CPU time and elapsed time (respectively) + * that extraction took for compiler invocation `id`. + */ +compilation_finished( + unique int id : @compilation ref, + float cpu_seconds : float ref, + float elapsed_seconds : float ref +); + +compilation_assembly( + unique int id : @compilation ref, + int assembly: @assembly ref +) + +// Populated by the CSV extractor +externalData( + int id: @externalDataElement, + string path: string ref, + int column: int ref, + string value: string ref); + +sourceLocationPrefix( + string prefix: string ref); + +/* + * Overlay support + */ + +/** + * The CLI will automatically emit the tuple `databaseMetadata("isOverlay", "true")`, + * along with an `overlayChangedFiles` tuple for each new/modified/deleted file, + * when building an overlay database, and these can be used by the discard predicates. + */ +databaseMetadata( + string metadataKey : string ref, + string value : string ref +); + +overlayChangedFiles( + string path : string ref +); + +/* + * C# dbscheme + */ + +/** ELEMENTS **/ + +@element = @declaration | @stmt | @expr | @modifier | @attribute | @namespace_declaration + | @using_directive | @type_parameter_constraints | @externalDataElement + | @xmllocatable | @asp_element | @namespace | @preprocessor_directive; + +@declaration = @callable | @generic | @assignable | @namespace; + +@named_element = @namespace | @declaration; + +@declaration_with_accessors = @property | @indexer | @event; + +@assignable = @variable | @assignable_with_accessors | @event; + +@assignable_with_accessors = @property | @indexer; + +@attributable = @assembly | @field | @parameter | @operator | @method | @constructor + | @destructor | @callable_accessor | @value_or_ref_type | @declaration_with_accessors + | @local_function | @lambda_expr; + +/** LOCATIONS, ASEMMBLIES, MODULES, FILES and FOLDERS **/ + +@location = @location_default | @assembly; + +@locatable = @declaration_with_accessors | @callable_accessor | @declaration_or_directive + | @diagnostic | @extractor_message | @preprocessor_directive | @attribute | @type_mention | @type_parameter_constraints + | @declaration_with_accessors | @callable_accessor | @operator | @method + | @constructor | @destructor | @field | @local_variable | @parameter | @stmt | @expr + | @xmllocatable | @commentline | @commentblock | @asp_element + +locations_default( + unique int id: @location_default, + int file: @file ref, + int beginLine: int ref, + int beginColumn: int ref, + int endLine: int ref, + int endColumn: int ref); + +locations_mapped( + unique int id: @location_default ref, + int mapped_to: @location_default ref); + +@sourceline = @file | @callable | @xmllocatable; + +numlines( + int element_id: @sourceline ref, + int num_lines: int ref, + int num_code: int ref, + int num_comment: int ref); + +assemblies( + unique int id: @assembly, + int file: @file ref, + string fullname: string ref, + string name: string ref, + string version: string ref); + +files( + unique int id: @file, + string name: string ref); + +folders( + unique int id: @folder, + string name: string ref); + +@container = @folder | @file ; + +containerparent( + int parent: @container ref, + unique int child: @container ref); + +file_extraction_mode( + unique int file: @file ref, + int mode: int ref + /* 0 = normal, 1 = standalone extractor */ + ); + +/** NAMESPACES **/ + +@type_container = @namespace | @type; + +namespaces( + unique int id: @namespace, + string name: string ref); + +namespace_declarations( + unique int id: @namespace_declaration, + int namespace_id: @namespace ref); + +namespace_declaration_location( + unique int id: @namespace_declaration ref, + int loc: @location ref); + +parent_namespace( + unique int child_id: @type_container ref, + int namespace_id: @namespace ref); + +@declaration_or_directive = @namespace_declaration | @type | @using_directive; + +parent_namespace_declaration( + int child_id: @declaration_or_directive ref, // cannot be unique because of partial classes + int namespace_id: @namespace_declaration ref); + +@using_directive = @using_namespace_directive | @using_static_directive; + +using_global( + unique int id: @using_directive ref +); + +using_namespace_directives( + unique int id: @using_namespace_directive, + int namespace_id: @namespace ref); + +using_static_directives( + unique int id: @using_static_directive, + int type_id: @type_or_ref ref); + +using_directive_location( + unique int id: @using_directive ref, + int loc: @location ref); + +@preprocessor_directive = @pragma_warning | @pragma_checksum | @directive_define | @directive_undefine | @directive_warning + | @directive_error | @directive_nullable | @directive_line | @directive_region | @directive_endregion | @directive_if + | @directive_elif | @directive_else | @directive_endif; + +@conditional_directive = @directive_if | @directive_elif; +@branch_directive = @directive_if | @directive_elif | @directive_else; + +directive_ifs( + unique int id: @directive_if, + int branchTaken: int ref, /* 0: false, 1: true */ + int conditionValue: int ref); /* 0: false, 1: true */ + +directive_elifs( + unique int id: @directive_elif, + int branchTaken: int ref, /* 0: false, 1: true */ + int conditionValue: int ref, /* 0: false, 1: true */ + int parent: @directive_if ref, + int index: int ref); + +directive_elses( + unique int id: @directive_else, + int branchTaken: int ref, /* 0: false, 1: true */ + int parent: @directive_if ref, + int index: int ref); + +#keyset[id, start] +directive_endifs( + unique int id: @directive_endif, + unique int start: @directive_if ref); + +directive_define_symbols( + unique int id: @define_symbol_expr ref, + string name: string ref); + +directive_regions( + unique int id: @directive_region, + string name: string ref); + +#keyset[id, start] +directive_endregions( + unique int id: @directive_endregion, + unique int start: @directive_region ref); + +directive_lines( + unique int id: @directive_line, + int kind: int ref); /* 0: default, 1: hidden, 2: numeric, 3: span */ + +directive_line_value( + unique int id: @directive_line ref, + int line: int ref); + +directive_line_file( + unique int id: @directive_line ref, + int file: @file ref); + +directive_line_offset( + unique int id: @directive_line ref, + int offset: int ref); + +directive_line_span( + unique int id: @directive_line ref, + int startLine: int ref, + int startColumn: int ref, + int endLine: int ref, + int endColumn: int ref); + +directive_nullables( + unique int id: @directive_nullable, + int setting: int ref, /* 0: disable, 1: enable, 2: restore */ + int target: int ref); /* 0: none, 1: annotations, 2: warnings */ + +directive_warnings( + unique int id: @directive_warning, + string message: string ref); + +directive_errors( + unique int id: @directive_error, + string message: string ref); + +directive_undefines( + unique int id: @directive_undefine, + string name: string ref); + +directive_defines( + unique int id: @directive_define, + string name: string ref); + +pragma_checksums( + unique int id: @pragma_checksum, + int file: @file ref, + string guid: string ref, + string bytes: string ref); + +pragma_warnings( + unique int id: @pragma_warning, + int kind: int ref /* 0 = disable, 1 = restore */); + +#keyset[id, index] +pragma_warning_error_codes( + int id: @pragma_warning ref, + string errorCode: string ref, + int index: int ref); + +preprocessor_directive_location( + unique int id: @preprocessor_directive ref, + int loc: @location ref); + +preprocessor_directive_compilation( + int id: @preprocessor_directive ref, + int compilation: @compilation ref); + +preprocessor_directive_active( + unique int id: @preprocessor_directive ref, + int active: int ref); /* 0: false, 1: true */ + +/** TYPES **/ + +types( + unique int id: @type, + int kind: int ref, + string name: string ref); + +case @type.kind of + 1 = @bool_type +| 2 = @char_type +| 3 = @decimal_type +| 4 = @sbyte_type +| 5 = @short_type +| 6 = @int_type +| 7 = @long_type +| 8 = @byte_type +| 9 = @ushort_type +| 10 = @uint_type +| 11 = @ulong_type +| 12 = @float_type +| 13 = @double_type +| 14 = @enum_type +| 15 = @struct_type +| 17 = @class_type +| 19 = @interface_type +| 20 = @delegate_type +| 21 = @null_type +| 22 = @type_parameter +| 23 = @pointer_type +| 24 = @nullable_type +| 25 = @array_type +| 26 = @void_type +| 27 = @int_ptr_type +| 28 = @uint_ptr_type +| 29 = @dynamic_type +| 30 = @arglist_type +| 31 = @unknown_type +| 32 = @tuple_type +| 33 = @function_pointer_type +| 34 = @inline_array_type +| 35 = @extension_type + ; + +@simple_type = @bool_type | @char_type | @integral_type | @floating_point_type | @decimal_type; +@integral_type = @signed_integral_type | @unsigned_integral_type; +@signed_integral_type = @sbyte_type | @short_type | @int_type | @long_type; +@unsigned_integral_type = @byte_type | @ushort_type | @uint_type | @ulong_type; +@floating_point_type = @float_type | @double_type; +@value_type = @simple_type | @enum_type | @struct_type | @nullable_type | @int_ptr_type + | @uint_ptr_type | @tuple_type | @void_type | @inline_array_type; +@ref_type = @class_type | @interface_type | @array_type | @delegate_type | @null_type + | @dynamic_type | @extension_type; +@value_or_ref_type = @value_type | @ref_type; + +typerefs( + unique int id: @typeref, + string name: string ref); + +typeref_type( + int id: @typeref ref, + unique int typeId: @type ref); + +@type_or_ref = @type | @typeref; + +array_element_type( + unique int array: @array_type ref, + int dimension: int ref, + int rank: int ref, + int element: @type_or_ref ref); + +nullable_underlying_type( + unique int nullable: @nullable_type ref, + int underlying: @type_or_ref ref); + +pointer_referent_type( + unique int pointer: @pointer_type ref, + int referent: @type_or_ref ref); + +enum_underlying_type( + unique int enum_id: @enum_type ref, + int underlying_type_id: @type_or_ref ref); + +delegate_return_type( + unique int delegate_id: @delegate_type ref, + int return_type_id: @type_or_ref ref); + +function_pointer_return_type( + unique int function_pointer_id: @function_pointer_type ref, + int return_type_id: @type_or_ref ref); + +extension_receiver_type( + unique int extension: @extension_type ref, + int receiver_type_id: @type_or_ref ref); + +extend( + int sub: @type ref, + int super: @type_or_ref ref); + +anonymous_types( + unique int id: @type ref); + +@interface_or_ref = @interface_type | @typeref; + +implement( + int sub: @type ref, + int super: @type_or_ref ref); + +type_location( + int id: @type ref, + int loc: @location ref); + +tuple_underlying_type( + unique int tuple: @tuple_type ref, + int struct: @type_or_ref ref); + +#keyset[tuple, index] +tuple_element( + int tuple: @tuple_type ref, + int index: int ref, + unique int field: @field ref); + +attributes( + unique int id: @attribute, + int kind: int ref, + int type_id: @type_or_ref ref, + int target: @attributable ref); + +case @attribute.kind of + 0 = @attribute_default +| 1 = @attribute_return +| 2 = @attribute_assembly +| 3 = @attribute_module +; + +attribute_location( + int id: @attribute ref, + int loc: @location ref); + +@type_mention_parent = @element | @type_mention; + +type_mention( + unique int id: @type_mention, + int type_id: @type_or_ref ref, + int parent: @type_mention_parent ref); + +type_mention_location( + unique int id: @type_mention ref, + int loc: @location ref); + +@has_type_annotation = @assignable | @type_parameter | @callable | @expr | @delegate_type | @generic | @function_pointer_type; + +/** + * A direct annotation on an entity, for example `string? x;`. + * + * Annotations: + * 2 = reftype is not annotated "!" + * 3 = reftype is annotated "?" + * 4 = readonly ref type / in parameter + * 5 = ref type parameter, return or local variable + * 6 = out parameter + * + * Note that the annotation depends on the element it annotates. + * @assignable: The annotation is on the type of the assignable, for example the variable type. + * @type_parameter: The annotation is on the reftype constraint + * @callable: The annotation is on the return type + * @array_type: The annotation is on the element type + */ +type_annotation(int id: @has_type_annotation ref, int annotation: int ref); + +nullability(unique int nullability: @nullability, int kind: int ref); + +case @nullability.kind of + 0 = @oblivious +| 1 = @not_annotated +| 2 = @annotated +; + +#keyset[parent, index] +nullability_parent(int nullability: @nullability ref, int index: int ref, int parent: @nullability ref) + +type_nullability(int id: @has_type_annotation ref, int nullability: @nullability ref); + +/** + * The nullable flow state of an expression, as determined by Roslyn. + * 0 = none (default, not populated) + * 1 = not null + * 2 = maybe null + */ +expr_flowstate(unique int id: @expr ref, int state: int ref); + +/** GENERICS **/ + +@generic = @type | @method | @local_function; + +type_parameters( + unique int id: @type_parameter ref, + int index: int ref, + int generic_id: @generic ref, + int variance: int ref /* none = 0, out = 1, in = 2 */); + +#keyset[constructed_id, index] +type_arguments( + int id: @type_or_ref ref, + int index: int ref, + int constructed_id: @generic_or_ref ref); + +@generic_or_ref = @generic | @typeref; + +constructed_generic( + unique int constructed: @generic ref, + int generic: @generic_or_ref ref); + +type_parameter_constraints( + unique int id: @type_parameter_constraints, + int param_id: @type_parameter ref); + +type_parameter_constraints_location( + int id: @type_parameter_constraints ref, + int loc: @location ref); + +general_type_parameter_constraints( + int id: @type_parameter_constraints ref, + int kind: int ref /* class = 1, struct = 2, new = 3 */); + +specific_type_parameter_constraints( + int id: @type_parameter_constraints ref, + int base_id: @type_or_ref ref); + +specific_type_parameter_nullability( + int id: @type_parameter_constraints ref, + int base_id: @type_or_ref ref, + int nullability: @nullability ref); + +/** FUNCTION POINTERS */ + +function_pointer_calling_conventions( + int id: @function_pointer_type ref, + int kind: int ref); + +#keyset[id, index] +has_unmanaged_calling_conventions( + int id: @function_pointer_type ref, + int index: int ref, + int conv_id: @type_or_ref ref); + +/** MODIFIERS */ + +@modifiable = @modifiable_direct | @event_accessor; + +@modifiable_direct = @member | @accessor | @local_function | @anonymous_function_expr; + +modifiers( + unique int id: @modifier, + string name: string ref); + +has_modifiers( + int id: @modifiable_direct ref, + int mod_id: @modifier ref); + +/** MEMBERS **/ + +@member = @method | @constructor | @destructor | @field | @property | @event | @operator | @indexer | @type; + +@named_exprorstmt = @goto_stmt | @labeled_stmt | @expr; + +@virtualizable = @method | @property | @indexer | @event | @operator; + +exprorstmt_name( + unique int parent_id: @named_exprorstmt ref, + string name: string ref); + +nested_types( + unique int id: @type ref, + int declaring_type_id: @type ref, + int unbound_id: @type ref); + +properties( + unique int id: @property, + string name: string ref, + int declaring_type_id: @type ref, + int type_id: @type_or_ref ref, + int unbound_id: @property ref); + +property_location( + int id: @property ref, + int loc: @location ref); + +indexers( + unique int id: @indexer, + string name: string ref, + int declaring_type_id: @type ref, + int type_id: @type_or_ref ref, + int unbound_id: @indexer ref); + +indexer_location( + int id: @indexer ref, + int loc: @location ref); + +accessors( + unique int id: @accessor, + int kind: int ref, + string name: string ref, + int declaring_member_id: @member ref, + int unbound_id: @accessor ref); + +case @accessor.kind of + 1 = @getter +| 2 = @setter + ; + +init_only_accessors( + unique int id: @accessor ref); + +accessor_location( + int id: @accessor ref, + int loc: @location ref); + +events( + unique int id: @event, + string name: string ref, + int declaring_type_id: @type ref, + int type_id: @type_or_ref ref, + int unbound_id: @event ref); + +event_location( + int id: @event ref, + int loc: @location ref); + +event_accessors( + unique int id: @event_accessor, + int kind: int ref, + string name: string ref, + int declaring_event_id: @event ref, + int unbound_id: @event_accessor ref); + +case @event_accessor.kind of + 1 = @add_event_accessor +| 2 = @remove_event_accessor + ; + +event_accessor_location( + int id: @event_accessor ref, + int loc: @location ref); + +operators( + unique int id: @operator, + string name: string ref, + string symbol: string ref, + int declaring_type_id: @type ref, + int type_id: @type_or_ref ref, + int unbound_id: @operator ref); + +operator_location( + int id: @operator ref, + int loc: @location ref); + +constant_value( + int id: @variable ref, + string value: string ref); + +/** CALLABLES **/ + +@callable = @method | @constructor | @destructor | @operator | @callable_accessor | @anonymous_function_expr | @local_function; + +@callable_accessor = @accessor | @event_accessor; + +methods( + unique int id: @method, + string name: string ref, + int declaring_type_id: @type ref, + int type_id: @type_or_ref ref, + int unbound_id: @method ref); + +method_location( + int id: @method ref, + int loc: @location ref); + +constructors( + unique int id: @constructor, + string name: string ref, + int declaring_type_id: @type ref, + int unbound_id: @constructor ref); + +constructor_location( + int id: @constructor ref, + int loc: @location ref); + +destructors( + unique int id: @destructor, + string name: string ref, + int declaring_type_id: @type ref, + int unbound_id: @destructor ref); + +destructor_location( + int id: @destructor ref, + int loc: @location ref); + +overrides( + int id: @callable ref, + int base_id: @callable ref); + +explicitly_implements( + int id: @member ref, + int interface_id: @interface_or_ref ref); + +local_functions( + unique int id: @local_function, + string name: string ref, + int return_type: @type ref, + int unbound_id: @local_function ref); + +local_function_stmts( + unique int fn: @local_function_stmt ref, + int stmt: @local_function ref); + +/** VARIABLES **/ + +@variable = @local_scope_variable | @field; + +@local_scope_variable = @local_variable | @parameter; + +fields( + unique int id: @field, + int kind: int ref, + string name: string ref, + int declaring_type_id: @type ref, + int type_id: @type_or_ref ref, + int unbound_id: @field ref); + +case @field.kind of + 1 = @addressable_field +| 2 = @constant + ; + +field_location( + int id: @field ref, + int loc: @location ref); + +localvars( + unique int id: @local_variable, + int kind: int ref, + string name: string ref, + int implicitly_typed: int ref /* 0 = no, 1 = yes */, + int type_id: @type_or_ref ref, + int parent_id: @local_var_decl_expr ref); + +case @local_variable.kind of + 1 = @addressable_local_variable +| 2 = @local_constant +| 3 = @local_variable_ref + ; + +localvar_location( + unique int id: @local_variable ref, + int loc: @location ref); + +@parameterizable = @callable | @delegate_type | @indexer | @function_pointer_type | @extension_type; + +#keyset[name, parent_id] +#keyset[index, parent_id] +params( + unique int id: @parameter, + string name: string ref, + int type_id: @type_or_ref ref, + int index: int ref, + int mode: int ref, /* value = 0, ref = 1, out = 2, params/array = 3, this = 4, in = 5, ref readonly = 6 */ + int parent_id: @parameterizable ref, + int unbound_id: @parameter ref); + +param_location( + int id: @parameter ref, + int loc: @location ref); + +@has_scoped_annotation = @local_scope_variable + +scoped_annotation( + int id: @has_scoped_annotation ref, + int kind: int ref // scoped ref = 1, scoped value = 2 + ); + +/** STATEMENTS **/ + +@exprorstmt_parent = @control_flow_element | @top_level_exprorstmt_parent; + +statements( + unique int id: @stmt, + int kind: int ref); + +#keyset[index, parent] +stmt_parent( + unique int stmt: @stmt ref, + int index: int ref, + int parent: @control_flow_element ref); + +@top_level_stmt_parent = @callable; + +// [index, parent] is not a keyset because the same parent may be compiled multiple times +stmt_parent_top_level( + unique int stmt: @stmt ref, + int index: int ref, + int parent: @top_level_stmt_parent ref); + +case @stmt.kind of + 1 = @block_stmt +| 2 = @expr_stmt +| 3 = @if_stmt +| 4 = @switch_stmt +| 5 = @while_stmt +| 6 = @do_stmt +| 7 = @for_stmt +| 8 = @foreach_stmt +| 9 = @break_stmt +| 10 = @continue_stmt +| 11 = @goto_stmt +| 12 = @goto_case_stmt +| 13 = @goto_default_stmt +| 14 = @throw_stmt +| 15 = @return_stmt +| 16 = @yield_stmt +| 17 = @try_stmt +| 18 = @checked_stmt +| 19 = @unchecked_stmt +| 20 = @lock_stmt +| 21 = @using_block_stmt +| 22 = @var_decl_stmt +| 23 = @const_decl_stmt +| 24 = @empty_stmt +| 25 = @unsafe_stmt +| 26 = @fixed_stmt +| 27 = @label_stmt +| 28 = @catch +| 29 = @case_stmt +| 30 = @local_function_stmt +| 31 = @using_decl_stmt + ; + +@using_stmt = @using_block_stmt | @using_decl_stmt; + +@labeled_stmt = @label_stmt | @case; + +@decl_stmt = @var_decl_stmt | @const_decl_stmt | @using_decl_stmt; + +@cond_stmt = @if_stmt | @switch_stmt; + +@loop_stmt = @while_stmt | @do_stmt | @for_stmt | @foreach_stmt; + +@jump_stmt = @break_stmt | @goto_any_stmt | @continue_stmt | @throw_stmt | @return_stmt + | @yield_stmt; + +@goto_any_stmt = @goto_default_stmt | @goto_case_stmt | @goto_stmt; + + +stmt_location( + unique int id: @stmt ref, + int loc: @location ref); + +catch_type( + unique int catch_id: @catch ref, + int type_id: @type_or_ref ref, + int kind: int ref /* explicit = 1, implicit = 2 */); + +foreach_stmt_info( + unique int id: @foreach_stmt ref, + int kind: int ref /* non-async = 1, async = 2 */); + +@foreach_symbol = @method | @property | @type_or_ref; + +#keyset[id, kind] +foreach_stmt_desugar( + int id: @foreach_stmt ref, + int symbol: @foreach_symbol ref, + int kind: int ref /* GetEnumeratorMethod = 1, CurrentProperty = 2, MoveNextMethod = 3, DisposeMethod = 4, ElementType = 5 */); + +/** EXPRESSIONS **/ + +expressions( + unique int id: @expr, + int kind: int ref, + int type_id: @type_or_ref ref); + +#keyset[index, parent] +expr_parent( + unique int expr: @expr ref, + int index: int ref, + int parent: @control_flow_element ref); + +@top_level_expr_parent = @attribute | @field | @property | @indexer | @parameter | @directive_if | @directive_elif; + +@top_level_exprorstmt_parent = @top_level_expr_parent | @top_level_stmt_parent; + +// [index, parent] is not a keyset because the same parent may be compiled multiple times +expr_parent_top_level( + unique int expr: @expr ref, + int index: int ref, + int parent: @top_level_exprorstmt_parent ref); + +case @expr.kind of +/* literal */ + 1 = @bool_literal_expr +| 2 = @char_literal_expr +| 3 = @decimal_literal_expr +| 4 = @int_literal_expr +| 5 = @long_literal_expr +| 6 = @uint_literal_expr +| 7 = @ulong_literal_expr +| 8 = @float_literal_expr +| 9 = @double_literal_expr +| 10 = @utf16_string_literal_expr +| 11 = @null_literal_expr +/* primary & unary */ +| 12 = @this_access_expr +| 13 = @base_access_expr +| 14 = @local_variable_access_expr +| 15 = @parameter_access_expr +| 16 = @field_access_expr +| 17 = @property_access_expr +| 18 = @method_access_expr +| 19 = @event_access_expr +| 20 = @indexer_access_expr +| 21 = @array_access_expr +| 22 = @type_access_expr +| 23 = @typeof_expr +| 24 = @method_invocation_expr +| 25 = @delegate_invocation_expr +| 26 = @operator_invocation_expr +| 27 = @cast_expr +| 28 = @object_creation_expr +| 29 = @explicit_delegate_creation_expr +| 30 = @implicit_delegate_creation_expr +| 31 = @array_creation_expr +| 32 = @default_expr +| 33 = @plus_expr +| 34 = @minus_expr +| 35 = @bit_not_expr +| 36 = @log_not_expr +| 37 = @post_incr_expr +| 38 = @post_decr_expr +| 39 = @pre_incr_expr +| 40 = @pre_decr_expr +/* multiplicative */ +| 41 = @mul_expr +| 42 = @div_expr +| 43 = @rem_expr +/* additive */ +| 44 = @add_expr +| 45 = @sub_expr +/* shift */ +| 46 = @lshift_expr +| 47 = @rshift_expr +/* relational */ +| 48 = @lt_expr +| 49 = @gt_expr +| 50 = @le_expr +| 51 = @ge_expr +/* equality */ +| 52 = @eq_expr +| 53 = @ne_expr +/* logical */ +| 54 = @bit_and_expr +| 55 = @bit_xor_expr +| 56 = @bit_or_expr +| 57 = @log_and_expr +| 58 = @log_or_expr +/* type testing */ +| 59 = @is_expr +| 60 = @as_expr +/* null coalescing */ +| 61 = @null_coalescing_expr +/* conditional */ +| 62 = @conditional_expr +/* assignment */ +| 63 = @simple_assign_expr +| 64 = @assign_add_expr +| 65 = @assign_sub_expr +| 66 = @assign_mul_expr +| 67 = @assign_div_expr +| 68 = @assign_rem_expr +| 69 = @assign_and_expr +| 70 = @assign_xor_expr +| 71 = @assign_or_expr +| 72 = @assign_lshift_expr +| 73 = @assign_rshift_expr +/* more */ +| 74 = @object_init_expr +| 75 = @collection_init_expr +| 76 = @array_init_expr +| 77 = @checked_expr +| 78 = @unchecked_expr +| 79 = @constructor_init_expr +| 80 = @add_event_expr +| 81 = @remove_event_expr +| 82 = @par_expr +| 83 = @local_var_decl_expr +| 84 = @lambda_expr +| 85 = @anonymous_method_expr +| 86 = @namespace_expr +/* dynamic */ +| 92 = @dynamic_element_access_expr +| 93 = @dynamic_member_access_expr +/* unsafe */ +| 100 = @pointer_indirection_expr +| 101 = @address_of_expr +| 102 = @sizeof_expr +/* async */ +| 103 = @await_expr +/* C# 6.0 */ +| 104 = @nameof_expr +| 105 = @interpolated_string_expr +| 106 = @unknown_expr +/* C# 7.0 */ +| 107 = @throw_expr +| 108 = @tuple_expr +| 109 = @local_function_invocation_expr +| 110 = @ref_expr +| 111 = @discard_expr +/* C# 8.0 */ +| 112 = @range_expr +| 113 = @index_expr +| 114 = @switch_expr +| 115 = @recursive_pattern_expr +| 116 = @property_pattern_expr +| 117 = @positional_pattern_expr +| 118 = @switch_case_expr +| 119 = @assign_coalesce_expr +| 120 = @suppress_nullable_warning_expr +| 121 = @namespace_access_expr +/* C# 9.0 */ +| 122 = @lt_pattern_expr +| 123 = @gt_pattern_expr +| 124 = @le_pattern_expr +| 125 = @ge_pattern_expr +| 126 = @not_pattern_expr +| 127 = @and_pattern_expr +| 128 = @or_pattern_expr +| 129 = @function_pointer_invocation_expr +| 130 = @with_expr +/* C# 11.0 */ +| 131 = @list_pattern_expr +| 132 = @slice_pattern_expr +| 133 = @urshift_expr +| 134 = @assign_urshift_expr +| 135 = @utf8_string_literal_expr +/* C# 12.0 */ +| 136 = @collection_expr +| 137 = @spread_element_expr +| 138 = @interpolated_string_insert_expr +/* Preprocessor */ +| 999 = @define_symbol_expr +; + +@switch = @switch_stmt | @switch_expr; +@case = @case_stmt | @switch_case_expr; +@pattern_match = @case | @is_expr; +@unary_pattern_expr = @not_pattern_expr; +@relational_pattern_expr = @gt_pattern_expr | @lt_pattern_expr | @ge_pattern_expr | @le_pattern_expr; +@binary_pattern_expr = @and_pattern_expr | @or_pattern_expr; + +@integer_literal_expr = @int_literal_expr | @long_literal_expr | @uint_literal_expr | @ulong_literal_expr; +@real_literal_expr = @float_literal_expr | @double_literal_expr | @decimal_literal_expr; +@string_literal_expr = @utf16_string_literal_expr | @utf8_string_literal_expr; +@literal_expr = @bool_literal_expr | @char_literal_expr | @integer_literal_expr | @real_literal_expr + | @string_literal_expr | @null_literal_expr; + +@assign_expr = @simple_assign_expr | @assign_op_expr | @local_var_decl_expr; +@assign_op_call_expr = @assign_arith_expr | @assign_bitwise_expr +@assign_op_expr = @assign_op_call_expr | @assign_event_expr | @assign_coalesce_expr; +@assign_event_expr = @add_event_expr | @remove_event_expr; + +@add_operation = @add_expr | @assign_add_expr; +@sub_operation = @sub_expr | @assign_sub_expr; +@mul_operation = @mul_expr | @assign_mul_expr; +@div_operation = @div_expr | @assign_div_expr; +@rem_operation = @rem_expr | @assign_rem_expr; +@and_operation = @bit_and_expr | @assign_and_expr; +@xor_operation = @bit_xor_expr | @assign_xor_expr; +@or_operation = @bit_or_expr | @assign_or_expr; +@lshift_operation = @lshift_expr | @assign_lshift_expr; +@rshift_operation = @rshift_expr | @assign_rshift_expr; +@urshift_operation = @urshift_expr | @assign_urshift_expr; +@null_coalescing_operation = @null_coalescing_expr | @assign_coalesce_expr; + +@assign_arith_expr = @assign_add_expr | @assign_sub_expr | @assign_mul_expr | @assign_div_expr + | @assign_rem_expr +@assign_bitwise_expr = @assign_and_expr | @assign_or_expr | @assign_xor_expr + | @assign_lshift_expr | @assign_rshift_expr | @assign_urshift_expr; + +@member_access_expr = @field_access_expr | @property_access_expr | @indexer_access_expr | @event_access_expr + | @method_access_expr | @type_access_expr | @dynamic_member_access_expr; +@access_expr = @member_access_expr | @this_access_expr | @base_access_expr | @assignable_access_expr | @namespace_access_expr; +@element_access_expr = @indexer_access_expr | @array_access_expr | @dynamic_element_access_expr; + +@local_variable_access = @local_variable_access_expr | @local_var_decl_expr; +@local_scope_variable_access_expr = @parameter_access_expr | @local_variable_access; +@variable_access_expr = @local_scope_variable_access_expr | @field_access_expr; + +@assignable_access_expr = @variable_access_expr | @property_access_expr | @element_access_expr + | @event_access_expr | @dynamic_member_access_expr; + +@objectorcollection_init_expr = @object_init_expr | @collection_init_expr; + +@delegate_creation_expr = @explicit_delegate_creation_expr | @implicit_delegate_creation_expr; + +@bin_arith_op_expr = @mul_expr | @div_expr | @rem_expr | @add_expr | @sub_expr; +@incr_op_expr = @pre_incr_expr | @post_incr_expr; +@decr_op_expr = @pre_decr_expr | @post_decr_expr; +@mut_op_expr = @incr_op_expr | @decr_op_expr; +@un_arith_op_expr = @plus_expr | @minus_expr | @mut_op_expr; +@arith_op_expr = @bin_arith_op_expr | @un_arith_op_expr; + +@ternary_log_op_expr = @conditional_expr; +@bin_log_op_expr = @log_and_expr | @log_or_expr | @null_coalescing_expr; +@un_log_op_expr = @log_not_expr; +@log_expr = @un_log_op_expr | @bin_log_op_expr | @ternary_log_op_expr; + +@bin_bit_op_expr = @bit_and_expr | @bit_or_expr | @bit_xor_expr | @lshift_expr + | @rshift_expr | @urshift_expr; +@un_bit_op_expr = @bit_not_expr; +@bit_expr = @un_bit_op_expr | @bin_bit_op_expr; + +@equality_op_expr = @eq_expr | @ne_expr; +@rel_op_expr = @gt_expr | @lt_expr| @ge_expr | @le_expr; +@comp_expr = @equality_op_expr | @rel_op_expr; + +@op_expr = @un_op | @bin_op | @ternary_op; + +@ternary_op = @ternary_log_op_expr; +@bin_op = @assign_expr | @bin_arith_op_expr | @bin_log_op_expr | @bin_bit_op_expr | @comp_expr; +@un_op = @un_arith_op_expr | @un_log_op_expr | @un_bit_op_expr | @sizeof_expr + | @pointer_indirection_expr | @address_of_expr; + +@anonymous_function_expr = @lambda_expr | @anonymous_method_expr; + +@op_invoke_expr = @operator_invocation_expr | @assign_op_call_expr +@call = @method_invocation_expr | @constructor_init_expr | @op_invoke_expr + | @delegate_invocation_expr | @object_creation_expr | @call_access_expr + | @local_function_invocation_expr | @function_pointer_invocation_expr; + +@call_access_expr = @property_access_expr | @event_access_expr | @indexer_access_expr; + +@late_bindable_expr = @dynamic_element_access_expr | @dynamic_member_access_expr + | @object_creation_expr | @method_invocation_expr | @op_invoke_expr; + +@throw_element = @throw_expr | @throw_stmt; + +@implicitly_typeable_object_creation_expr = @object_creation_expr | @explicit_delegate_creation_expr; + +implicitly_typed_array_creation( + unique int id: @array_creation_expr ref); + +explicitly_sized_array_creation( + unique int id: @array_creation_expr ref); + +stackalloc_array_creation( + unique int id: @array_creation_expr ref); + +implicitly_typed_object_creation( + unique int id: @implicitly_typeable_object_creation_expr ref); + +mutator_invocation_mode( + unique int id: @operator_invocation_expr ref, + int mode: int ref /* prefix = 1, postfix = 2*/); + +expr_value( + unique int id: @expr ref, + string value: string ref); + +expr_call( + unique int caller_id: @expr ref, + int target_id: @callable ref); + +expr_access( + unique int accesser_id: @access_expr ref, + int target_id: @accessible ref); + +@accessible = @method | @assignable | @local_function | @namespace; + +expr_location( + unique int id: @expr ref, + int loc: @location ref); + +dynamic_member_name( + unique int id: @late_bindable_expr ref, + string name: string ref); + +@qualifiable_expr = @member_access_expr + | @method_invocation_expr + | @element_access_expr + | @assign_op_call_expr; + +conditional_access( + unique int id: @qualifiable_expr ref); + +expr_argument( + unique int id: @expr ref, + int mode: int ref); + /* mode is the same as params: value = 0, ref = 1, out = 2 */ + +expr_argument_name( + unique int id: @expr ref, + string name: string ref); + +lambda_expr_return_type( + unique int id: @lambda_expr ref, + int type_id: @type_or_ref ref); + +/* Compiler generated */ + +compiler_generated(unique int id: @element ref); + +/** CONTROL/DATA FLOW **/ + +@control_flow_element = @stmt | @expr | @parameter; + +/* XML Files */ + +xmlEncoding ( + unique int id: @file ref, + string encoding: string ref); + +xmlDTDs( + unique int id: @xmldtd, + string root: string ref, + string publicId: string ref, + string systemId: string ref, + int fileid: @file ref); + +xmlElements( + unique int id: @xmlelement, + string name: string ref, + int parentid: @xmlparent ref, + int idx: int ref, + int fileid: @file ref); + +xmlAttrs( + unique int id: @xmlattribute, + int elementid: @xmlelement ref, + string name: string ref, + string value: string ref, + int idx: int ref, + int fileid: @file ref); + +xmlNs( + int id: @xmlnamespace, + string prefixName: string ref, + string URI: string ref, + int fileid: @file ref); + +xmlHasNs( + int elementId: @xmlnamespaceable ref, + int nsId: @xmlnamespace ref, + int fileid: @file ref); + +xmlComments( + unique int id: @xmlcomment, + string text: string ref, + int parentid: @xmlparent ref, + int fileid: @file ref); + +xmlChars( + unique int id: @xmlcharacters, + string text: string ref, + int parentid: @xmlparent ref, + int idx: int ref, + int isCDATA: int ref, + int fileid: @file ref); + +@xmlparent = @file | @xmlelement; +@xmlnamespaceable = @xmlelement | @xmlattribute; + +xmllocations( + int xmlElement: @xmllocatable ref, + int location: @location_default ref); + +@xmllocatable = @xmlcharacters | @xmlelement | @xmlcomment | @xmlattribute | @xmldtd | @file | @xmlnamespace; + +/* Comments */ + +commentline( + unique int id: @commentline, + int kind: int ref, + string text: string ref, + string rawtext: string ref); + +case @commentline.kind of + 0 = @singlelinecomment +| 1 = @xmldoccomment +| 2 = @multilinecomment; + +commentline_location( + unique int id: @commentline ref, + int loc: @location ref); + +commentblock( + unique int id : @commentblock); + +commentblock_location( + unique int id: @commentblock ref, + int loc: @location ref); + +commentblock_binding( + int id: @commentblock ref, + int entity: @element ref, + int bindtype: int ref); /* 0: Parent, 1: Best, 2: Before, 3: After */ + +commentblock_child( + int id: @commentblock ref, + int commentline: @commentline ref, + int index: int ref); + +/* ASP.NET */ + +case @asp_element.kind of + 0=@asp_close_tag +| 1=@asp_code +| 2=@asp_comment +| 3=@asp_data_binding +| 4=@asp_directive +| 5=@asp_open_tag +| 6=@asp_quoted_string +| 7=@asp_text +| 8=@asp_xml_directive; + +@asp_attribute = @asp_code | @asp_data_binding | @asp_quoted_string; + +asp_elements( + unique int id: @asp_element, + int kind: int ref, + int loc: @location ref); + +asp_comment_server(unique int comment: @asp_comment ref); +asp_code_inline(unique int code: @asp_code ref); +asp_directive_attribute( + int directive: @asp_directive ref, + int index: int ref, + string name: string ref, + int value: @asp_quoted_string ref); +asp_directive_name( + unique int directive: @asp_directive ref, + string name: string ref); +asp_element_body( + unique int element: @asp_element ref, + string body: string ref); +asp_tag_attribute( + int tag: @asp_open_tag ref, + int index: int ref, + string name: string ref, + int attribute: @asp_attribute ref); +asp_tag_name( + unique int tag: @asp_open_tag ref, + string name: string ref); +asp_tag_isempty(int tag: @asp_open_tag ref); diff --git a/csharp/ql/lib/upgrades/ea7ad33252e550241975676f09fcc7b0a703deab/upgrade.properties b/csharp/ql/lib/upgrades/ea7ad33252e550241975676f09fcc7b0a703deab/upgrade.properties new file mode 100644 index 000000000000..cd2dfa3d4d5d --- /dev/null +++ b/csharp/ql/lib/upgrades/ea7ad33252e550241975676f09fcc7b0a703deab/upgrade.properties @@ -0,0 +1,2 @@ +description: Add `@parameter` to `@control_flow_element` +compatibility: full From 99b5cecb18efb0544d31adcb8cf490ba89a2de1b Mon Sep 17 00:00:00 2001 From: Tom Hvitved Date: Tue, 28 Apr 2026 10:32:53 +0200 Subject: [PATCH 115/260] Java: Adapt to changes in shared CFG library --- java/ql/lib/semmle/code/java/ControlFlowGraph.qll | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/java/ql/lib/semmle/code/java/ControlFlowGraph.qll b/java/ql/lib/semmle/code/java/ControlFlowGraph.qll index 1137b46f32c2..a1e071df10c4 100644 --- a/java/ql/lib/semmle/code/java/ControlFlowGraph.qll +++ b/java/ql/lib/semmle/code/java/ControlFlowGraph.qll @@ -57,6 +57,15 @@ private module Ast implements AstSig { AstNode callableGetBody(Callable c) { result = c.getBody() } + // TODO: Implement in order to include parameters in the CFG + class Parameter extends AstNode { + Parameter() { none() } + + Expr getDefaultValue() { none() } + } + + Parameter callableGetParameter(Callable c, int i) { result = c.getParameter(i) } + class Stmt = J::Stmt; class Expr = J::Expr; @@ -534,7 +543,7 @@ private module Input implements InputSig1, InputSig2 { l = TYield() and n instanceof SwitchExpr } - class CallableBodyPartContext = Void; + class CallableContext = Void; predicate inConditionalContext(Ast::AstNode n, ConditionKind kind) { kind.isBoolean() and From d27ee862427c4c2480de389a5ce19821b8ed3229 Mon Sep 17 00:00:00 2001 From: MarkLee131 Date: Wed, 29 Apr 2026 20:45:45 +0800 Subject: [PATCH 116/260] Java: refactor trust-boundary sanitizers into TrustBoundaryValidationSanitizer subclasses Address review feedback by introducing dedicated subclasses of TrustBoundaryValidationSanitizer for SimpleTypeSanitizer, RegexpCheckBarrier, and the HttpServletSession type check, so isBarrier only references the abstract class. --- .../security/TrustBoundaryViolationQuery.qll | 20 +++++++++++++------ 1 file changed, 14 insertions(+), 6 deletions(-) diff --git a/java/ql/lib/semmle/code/java/security/TrustBoundaryViolationQuery.qll b/java/ql/lib/semmle/code/java/security/TrustBoundaryViolationQuery.qll index 91e9b18cc9ba..78589add96dc 100644 --- a/java/ql/lib/semmle/code/java/security/TrustBoundaryViolationQuery.qll +++ b/java/ql/lib/semmle/code/java/security/TrustBoundaryViolationQuery.qll @@ -31,18 +31,26 @@ private class ExternalTrustBoundaryValidationSanitizer extends TrustBoundaryVali ExternalTrustBoundaryValidationSanitizer() { barrierNode(this, "trust-boundary-violation") } } +private class SimpleTypeTrustBoundaryValidationSanitizer extends TrustBoundaryValidationSanitizer instanceof SimpleTypeSanitizer +{ } + +private class RegexpCheckTrustBoundaryValidationSanitizer extends TrustBoundaryValidationSanitizer instanceof RegexpCheckBarrier +{ } + +private class HttpServletSessionTypeTrustBoundaryValidationSanitizer extends TrustBoundaryValidationSanitizer +{ + HttpServletSessionTypeTrustBoundaryValidationSanitizer() { + this.getType() instanceof HttpServletSession + } +} + /** * Taint tracking for data that crosses a trust boundary. */ module TrustBoundaryConfig implements DataFlow::ConfigSig { predicate isSource(DataFlow::Node source) { source instanceof TrustBoundaryViolationSource } - predicate isBarrier(DataFlow::Node node) { - node instanceof TrustBoundaryValidationSanitizer or - node.getType() instanceof HttpServletSession or - node instanceof SimpleTypeSanitizer or - node instanceof RegexpCheckBarrier - } + predicate isBarrier(DataFlow::Node node) { node instanceof TrustBoundaryValidationSanitizer } predicate isSink(DataFlow::Node sink) { sink instanceof TrustBoundaryViolationSink } From 75162bb9eb4efbd6617cca09483ea777db8338fc Mon Sep 17 00:00:00 2001 From: MarkLee131 Date: Wed, 29 Apr 2026 20:53:58 +0800 Subject: [PATCH 117/260] Update java/ql/test/query-tests/security/CWE-532/Test.java Co-authored-by: Owen Mansel-Chan <62447351+owen-mc@users.noreply.github.com> --- java/ql/test/query-tests/security/CWE-532/Test.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/java/ql/test/query-tests/security/CWE-532/Test.java b/java/ql/test/query-tests/security/CWE-532/Test.java index a25becb89bbe..cf1ca0aee68e 100644 --- a/java/ql/test/query-tests/security/CWE-532/Test.java +++ b/java/ql/test/query-tests/security/CWE-532/Test.java @@ -28,7 +28,7 @@ void testHashSanitizer(String password, String authToken) { logger.info("hash: " + hashPassword(password)); // Safe - hashed logger.info("hash: " + sha256Digest(authToken)); // Safe - digested logger.info("enc: " + encryptValue(password)); // Safe - encrypted - logger.info("pw: " + password); // $ Alert - not hashed + logger.info("pw: " + password); // $ Alert // not hashed } static String hashPassword(String input) { return input; } From 51e2a5418b7558c6ef86019afa68c37242b85cd6 Mon Sep 17 00:00:00 2001 From: MarkLee131 Date: Wed, 29 Apr 2026 20:56:36 +0800 Subject: [PATCH 118/260] Java: move EncryptedSensitiveMethodCall into Sanitizers.qll Address review feedback by moving the shared method-name-based encryption/hash/digest check into Sanitizers.qll, and reference it from both CleartextStorageQuery.qll and SensitiveLoggingQuery.qll instead of duplicating the definition. --- .../code/java/security/CleartextStorageQuery.qll | 12 +----------- java/ql/lib/semmle/code/java/security/Sanitizers.qll | 11 +++++++++++ .../code/java/security/SensitiveLoggingQuery.qll | 7 +------ 3 files changed, 13 insertions(+), 17 deletions(-) diff --git a/java/ql/lib/semmle/code/java/security/CleartextStorageQuery.qll b/java/ql/lib/semmle/code/java/security/CleartextStorageQuery.qll index 21d82bef657e..83f51f7eedfb 100644 --- a/java/ql/lib/semmle/code/java/security/CleartextStorageQuery.qll +++ b/java/ql/lib/semmle/code/java/security/CleartextStorageQuery.qll @@ -2,6 +2,7 @@ import java private import semmle.code.java.dataflow.TaintTracking +private import semmle.code.java.security.Sanitizers private import semmle.code.java.security.SensitiveActions /** A sink representing persistent storage that saves data in clear text. */ @@ -76,17 +77,6 @@ private class DefaultCleartextStorageSanitizer extends CleartextStorageSanitizer } } -/** - * Method call for encrypting sensitive information. As there are various implementations of - * encryption (reversible and non-reversible) from both JDK and third parties, this class simply - * checks method name to take a best guess to reduce false positives. - */ -private class EncryptedSensitiveMethodCall extends MethodCall { - EncryptedSensitiveMethodCall() { - this.getMethod().getName().toLowerCase().matches(["%encrypt%", "%hash%", "%digest%"]) - } -} - /** Flow configuration for encryption methods flowing to inputs of persistent storage. */ private module EncryptedValueFlowConfig implements DataFlow::ConfigSig { predicate isSource(DataFlow::Node src) { src.asExpr() instanceof EncryptedSensitiveMethodCall } diff --git a/java/ql/lib/semmle/code/java/security/Sanitizers.qll b/java/ql/lib/semmle/code/java/security/Sanitizers.qll index e00071da2d8c..0c5f9b98070a 100644 --- a/java/ql/lib/semmle/code/java/security/Sanitizers.qll +++ b/java/ql/lib/semmle/code/java/security/Sanitizers.qll @@ -63,3 +63,14 @@ class RegexpCheckBarrier extends DataFlow::Node { exists(RegexMatch rm | rm instanceof Annotation | this.asExpr() = rm.getString()) } } + +/** + * A method call for encrypting, hashing, or digesting sensitive information. As there are various + * implementations of encryption (reversible and non-reversible) from both JDK and third parties, + * this class simply checks the method name to take a best guess to reduce false positives. + */ +class EncryptedSensitiveMethodCall extends MethodCall { + EncryptedSensitiveMethodCall() { + this.getMethod().getName().toLowerCase().matches(["%encrypt%", "%hash%", "%digest%"]) + } +} diff --git a/java/ql/lib/semmle/code/java/security/SensitiveLoggingQuery.qll b/java/ql/lib/semmle/code/java/security/SensitiveLoggingQuery.qll index 5f11ae0d214b..f35cae0e67f3 100644 --- a/java/ql/lib/semmle/code/java/security/SensitiveLoggingQuery.qll +++ b/java/ql/lib/semmle/code/java/security/SensitiveLoggingQuery.qll @@ -125,12 +125,7 @@ private class DefaultSensitiveLoggerBarrier extends SensitiveLoggerBarrier { * This is consistent with the treatment of encryption in `CleartextStorageQuery.qll` (CWE-312). */ private class EncryptionBarrier extends SensitiveLoggerBarrier { - EncryptionBarrier() { - exists(MethodCall mc | - this.asExpr() = mc and - mc.getMethod().getName().toLowerCase().matches(["%encrypt%", "%hash%", "%digest%"]) - ) - } + EncryptionBarrier() { this.asExpr() instanceof EncryptedSensitiveMethodCall } } /** A data-flow configuration for identifying potentially-sensitive data flowing to a log output. */ From e14b654e8ad6b370ee68d7f2996f3847311a93ac Mon Sep 17 00:00:00 2001 From: Tom Hvitved Date: Wed, 29 Apr 2026 14:57:35 +0200 Subject: [PATCH 119/260] Update shared/controlflow/codeql/controlflow/ControlFlowGraph.qll Co-authored-by: Anders Schack-Mulligen --- .../codeql/controlflow/ControlFlowGraph.qll | 12 ++++-------- 1 file changed, 4 insertions(+), 8 deletions(-) diff --git a/shared/controlflow/codeql/controlflow/ControlFlowGraph.qll b/shared/controlflow/codeql/controlflow/ControlFlowGraph.qll index e0fff1f616c2..514a68cba474 100644 --- a/shared/controlflow/codeql/controlflow/ControlFlowGraph.qll +++ b/shared/controlflow/codeql/controlflow/ControlFlowGraph.qll @@ -1395,15 +1395,11 @@ module Make0 Ast> { n2.isBefore(getParameterOrBodyEntry(c, _, 1)) or exists(CallableContextOption ctx, Parameter p, int i | p = getRankedParameter(c, ctx, i) | - exists(ConditionalSuccessor t | + exists(MatchingSuccessor t | n1.isAfterValue(p, t) and - t.getKind().isMatching() - | - t.getValue() = true and - n2.isBefore(getParameterOrBodyEntry(c, ctx, i + 1)) - or - t.getValue() = false and - n2.isBefore(p.getDefaultValue()) + if t.isMatch() + then n2.isBefore(getParameterOrBodyEntry(c, ctx, i + 1)) + else n2.isBefore(p.getDefaultValue()) ) or n1.isAfter(p.getDefaultValue()) and From e29770c2b5f57b4dded344a394f237b92920e8f4 Mon Sep 17 00:00:00 2001 From: Michael Nebel Date: Wed, 29 Apr 2026 15:27:47 +0200 Subject: [PATCH 120/260] C#: Fix missing slash in comments. --- .../NugetPackageRestorer.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/csharp/extractor/Semmle.Extraction.CSharp.DependencyFetching/NugetPackageRestorer.cs b/csharp/extractor/Semmle.Extraction.CSharp.DependencyFetching/NugetPackageRestorer.cs index 6cc74349cb96..e042285af11c 100644 --- a/csharp/extractor/Semmle.Extraction.CSharp.DependencyFetching/NugetPackageRestorer.cs +++ b/csharp/extractor/Semmle.Extraction.CSharp.DependencyFetching/NugetPackageRestorer.cs @@ -367,8 +367,8 @@ private string FeedsToRestoreArgument(IEnumerable feeds) /// /// Constructs the list of NuGet sources to use for this restore. - // (1) Use the feeds we get from `dotnet nuget list source` - // (2) Use private registries, if they are configured + /// (1) Use the feeds we get from `dotnet nuget list source` + /// (2) Use private registries, if they are configured /// /// Path to project/solution /// The set of reachable NuGet feeds. From 03d70b9f94e0537ea1fa1dfddeb2d4192df7883a Mon Sep 17 00:00:00 2001 From: Michael Nebel Date: Wed, 29 Apr 2026 15:47:32 +0200 Subject: [PATCH 121/260] C#: Add another nuget.config integration test. --- .../Assemblies.expected | 1 + .../Assemblies.ql | 5 +++++ .../CompilationInfo.expected | 22 +++++++++++++++++++ .../CompilationInfo.ql | 15 +++++++++++++ .../clear/nuget.config | 6 +++++ .../global.json | 5 +++++ .../proj/Program.cs | 1 + .../proj/proj.csproj | 16 ++++++++++++++ .../test.py | 12 ++++++++++ 9 files changed, 83 insertions(+) create mode 100644 csharp/ql/integration-tests/posix/standalone_dependencies_nuget_clear/Assemblies.expected create mode 100644 csharp/ql/integration-tests/posix/standalone_dependencies_nuget_clear/Assemblies.ql create mode 100644 csharp/ql/integration-tests/posix/standalone_dependencies_nuget_clear/CompilationInfo.expected create mode 100644 csharp/ql/integration-tests/posix/standalone_dependencies_nuget_clear/CompilationInfo.ql create mode 100644 csharp/ql/integration-tests/posix/standalone_dependencies_nuget_clear/clear/nuget.config create mode 100644 csharp/ql/integration-tests/posix/standalone_dependencies_nuget_clear/global.json create mode 100644 csharp/ql/integration-tests/posix/standalone_dependencies_nuget_clear/proj/Program.cs create mode 100644 csharp/ql/integration-tests/posix/standalone_dependencies_nuget_clear/proj/proj.csproj create mode 100644 csharp/ql/integration-tests/posix/standalone_dependencies_nuget_clear/test.py diff --git a/csharp/ql/integration-tests/posix/standalone_dependencies_nuget_clear/Assemblies.expected b/csharp/ql/integration-tests/posix/standalone_dependencies_nuget_clear/Assemblies.expected new file mode 100644 index 000000000000..b676e41c1840 --- /dev/null +++ b/csharp/ql/integration-tests/posix/standalone_dependencies_nuget_clear/Assemblies.expected @@ -0,0 +1 @@ +| test-db/working/packages/newtonsoft.json/13.0.4/lib/net6.0/Newtonsoft.Json.dll:0:0:0:0 | Newtonsoft.Json, Version=13.0.0.0, Culture=neutral, PublicKeyToken=30ad4fe6b2a6aeed | diff --git a/csharp/ql/integration-tests/posix/standalone_dependencies_nuget_clear/Assemblies.ql b/csharp/ql/integration-tests/posix/standalone_dependencies_nuget_clear/Assemblies.ql new file mode 100644 index 000000000000..0eb33b7ae37b --- /dev/null +++ b/csharp/ql/integration-tests/posix/standalone_dependencies_nuget_clear/Assemblies.ql @@ -0,0 +1,5 @@ +import csharp + +from Assembly a +where exists(a.getFile().getAbsolutePath().indexOf("newtonsoft.json")) +select a diff --git a/csharp/ql/integration-tests/posix/standalone_dependencies_nuget_clear/CompilationInfo.expected b/csharp/ql/integration-tests/posix/standalone_dependencies_nuget_clear/CompilationInfo.expected new file mode 100644 index 000000000000..ff0b29da33fa --- /dev/null +++ b/csharp/ql/integration-tests/posix/standalone_dependencies_nuget_clear/CompilationInfo.expected @@ -0,0 +1,22 @@ +| All NuGet feeds reachable | 1.0 | +| Failed project restore with missing package error | 0.0 | +| Failed project restore with package source error | 0.0 | +| Failed solution restore with missing package error | 0.0 | +| Failed solution restore with package source error | 0.0 | +| Inherited NuGet feed count | 1.0 | +| NuGet feed responsiveness checked | 1.0 | +| Project files on filesystem | 1.0 | +| Reachable fallback NuGet feed count | 1.0 | +| Resolved assembly conflicts | 0.0 | +| Resource extraction enabled | 0.0 | +| Restored .NET framework variants | 1.0 | +| Restored projects through solution files | 0.0 | +| Solution files on filesystem | 0.0 | +| Source files generated | 0.0 | +| Source files on filesystem | 1.0 | +| Successfully restored project files | 1.0 | +| Successfully restored solution files | 0.0 | +| Unresolved references | 0.0 | +| UseWPF set | 0.0 | +| UseWindowsForms set | 0.0 | +| WebView extraction enabled | 1.0 | diff --git a/csharp/ql/integration-tests/posix/standalone_dependencies_nuget_clear/CompilationInfo.ql b/csharp/ql/integration-tests/posix/standalone_dependencies_nuget_clear/CompilationInfo.ql new file mode 100644 index 000000000000..073ffe3b224d --- /dev/null +++ b/csharp/ql/integration-tests/posix/standalone_dependencies_nuget_clear/CompilationInfo.ql @@ -0,0 +1,15 @@ +import csharp +import semmle.code.csharp.commons.Diagnostics + +query predicate compilationInfo(string key, float value) { + key != "Resolved references" and + not key.matches("Compiler diagnostic count for%") and + exists(Compilation c, string infoKey, string infoValue | infoValue = c.getInfo(infoKey) | + key = infoKey and + value = infoValue.toFloat() + or + not exists(infoValue.toFloat()) and + key = infoKey + ": " + infoValue and + value = 1 + ) +} diff --git a/csharp/ql/integration-tests/posix/standalone_dependencies_nuget_clear/clear/nuget.config b/csharp/ql/integration-tests/posix/standalone_dependencies_nuget_clear/clear/nuget.config new file mode 100644 index 000000000000..a3f3aea61c8f --- /dev/null +++ b/csharp/ql/integration-tests/posix/standalone_dependencies_nuget_clear/clear/nuget.config @@ -0,0 +1,6 @@ + + + + + + diff --git a/csharp/ql/integration-tests/posix/standalone_dependencies_nuget_clear/global.json b/csharp/ql/integration-tests/posix/standalone_dependencies_nuget_clear/global.json new file mode 100644 index 000000000000..ed6049740701 --- /dev/null +++ b/csharp/ql/integration-tests/posix/standalone_dependencies_nuget_clear/global.json @@ -0,0 +1,5 @@ +{ + "sdk": { + "version": "10.0.201" + } +} diff --git a/csharp/ql/integration-tests/posix/standalone_dependencies_nuget_clear/proj/Program.cs b/csharp/ql/integration-tests/posix/standalone_dependencies_nuget_clear/proj/Program.cs new file mode 100644 index 000000000000..c340f4c32fd4 --- /dev/null +++ b/csharp/ql/integration-tests/posix/standalone_dependencies_nuget_clear/proj/Program.cs @@ -0,0 +1 @@ +class Program { } diff --git a/csharp/ql/integration-tests/posix/standalone_dependencies_nuget_clear/proj/proj.csproj b/csharp/ql/integration-tests/posix/standalone_dependencies_nuget_clear/proj/proj.csproj new file mode 100644 index 000000000000..6010c6c7f37c --- /dev/null +++ b/csharp/ql/integration-tests/posix/standalone_dependencies_nuget_clear/proj/proj.csproj @@ -0,0 +1,16 @@ + + + + Exe + net10.0 + + + + + + + + + + + diff --git a/csharp/ql/integration-tests/posix/standalone_dependencies_nuget_clear/test.py b/csharp/ql/integration-tests/posix/standalone_dependencies_nuget_clear/test.py new file mode 100644 index 000000000000..cbbf2eb1d647 --- /dev/null +++ b/csharp/ql/integration-tests/posix/standalone_dependencies_nuget_clear/test.py @@ -0,0 +1,12 @@ +import os +import runs_on + + +@runs_on.posix +def test(codeql, csharp): + # Making sure the reachability test of `nuget.org` succeeds: + os.environ["CODEQL_EXTRACTOR_CSHARP_BUILDLESS_NUGET_FEEDS_CHECK_FALLBACK_TIMEOUT"] = "1000" + os.environ["CODEQL_EXTRACTOR_CSHARP_BUILDLESS_NUGET_FEEDS_CHECK_FALLBACK_LIMIT"] = "5" + + # This test checks that the nuget.config file in the clear folder is not applied to the restore of the project. + codeql.database.create(build_mode="none") From 7ef9e1b9392bae7c88bf7fb7c1f65c8036470eec Mon Sep 17 00:00:00 2001 From: Anders Schack-Mulligen Date: Fri, 17 Apr 2026 15:19:40 +0200 Subject: [PATCH 122/260] C#: Rename SsaImpl input. --- .../ql/lib/semmle/code/csharp/dataflow/internal/SsaImpl.qll | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/csharp/ql/lib/semmle/code/csharp/dataflow/internal/SsaImpl.qll b/csharp/ql/lib/semmle/code/csharp/dataflow/internal/SsaImpl.qll index b3a95977be99..274c495cf564 100644 --- a/csharp/ql/lib/semmle/code/csharp/dataflow/internal/SsaImpl.qll +++ b/csharp/ql/lib/semmle/code/csharp/dataflow/internal/SsaImpl.qll @@ -9,7 +9,7 @@ private import semmle.code.csharp.controlflow.Guards as Guards private import semmle.code.csharp.dataflow.internal.BaseSSA private import semmle.code.csharp.internal.Location -private module SsaInput implements SsaImplCommon::InputSig { +private module SsaImplInput implements SsaImplCommon::InputSig { class SourceVariable = Ssa::SourceVariable; /** @@ -41,7 +41,7 @@ private module SsaInput implements SsaImplCommon::InputSig } } -import SsaImplCommon::Make as Impl +import SsaImplCommon::Make as Impl class Definition = Impl::Definition; @@ -815,7 +815,7 @@ private module Cached { predicate variableWriteQualifier( BasicBlock bb, int i, QualifiedFieldOrPropSourceVariable v, boolean certain ) { - SsaInput::variableWrite(bb, i, v.getQualifier(), certain) and + SsaImplInput::variableWrite(bb, i, v.getQualifier(), certain) and // Eliminate corner case where a call definition can overlap with a // qualifier definition: if method `M` updates field `F`, then a call // to `M` is both an update of `x.M` and `x.M.M`, so the former call From 72d21a9a56c885f054cd2b4bcd0614f6e0586639 Mon Sep 17 00:00:00 2001 From: Anders Schack-Mulligen Date: Fri, 17 Apr 2026 15:25:22 +0200 Subject: [PATCH 123/260] C#: Instantiate shared SSA wrappers. --- .../lib/semmle/code/csharp/dataflow/SSA.qll | 4 ++- .../code/csharp/dataflow/internal/BaseSSA.qll | 25 ++++++++------ .../code/csharp/dataflow/internal/SsaImpl.qll | 33 +++++++++++++++++++ 3 files changed, 51 insertions(+), 11 deletions(-) diff --git a/csharp/ql/lib/semmle/code/csharp/dataflow/SSA.qll b/csharp/ql/lib/semmle/code/csharp/dataflow/SSA.qll index 8f5b04c6708a..7670774da980 100644 --- a/csharp/ql/lib/semmle/code/csharp/dataflow/SSA.qll +++ b/csharp/ql/lib/semmle/code/csharp/dataflow/SSA.qll @@ -3,12 +3,14 @@ */ import csharp +private import internal.SsaImpl as SsaImpl +import SsaImpl::Ssa_ /** * Provides classes for working with static single assignment (SSA) form. */ module Ssa { - private import internal.SsaImpl as SsaImpl + import SsaImpl::Ssa_ pragma[nomagic] private predicate assignableDefinitionLocalScopeVariable( diff --git a/csharp/ql/lib/semmle/code/csharp/dataflow/internal/BaseSSA.qll b/csharp/ql/lib/semmle/code/csharp/dataflow/internal/BaseSSA.qll index 63a9e782250f..0e879ac94123 100644 --- a/csharp/ql/lib/semmle/code/csharp/dataflow/internal/BaseSSA.qll +++ b/csharp/ql/lib/semmle/code/csharp/dataflow/internal/BaseSSA.qll @@ -1,9 +1,20 @@ -import csharp +private import csharp as CS /** * Provides a simple SSA implementation for local scope variables. */ module BaseSsa { + private import BaseSsaImpl + + class SimpleLocalScopeVariable = BaseSsaImpl::SimpleLocalScopeVariable; + + module Ssa = SsaImpl::MakeSsa; + + import Ssa +} + +private module BaseSsaImpl { + private import CS private import AssignableDefinitions private import codeql.ssa.Ssa as SsaImplCommon @@ -13,7 +24,7 @@ module BaseSsa { predicate ref() { any() } cached - predicate backref() { (exists(any(SsaDefinition def).getARead()) implies any()) } + predicate backref() { (exists(any(BaseSsa::SsaDefinition def).getARead()) implies any()) } } /** @@ -112,11 +123,9 @@ module BaseSsa { } } - private module SsaImpl = SsaImplCommon::Make; - - private module SsaInput implements SsaImpl::SsaInputSig { - private import csharp as CS + module SsaImpl = SsaImplCommon::Make; + module SsaInput implements SsaImpl::SsaInputSig { class Expr = CS::Expr; class Parameter = CS::Parameter; @@ -139,8 +148,4 @@ module BaseSsa { w.isParameterInit(v) } } - - module Ssa = SsaImpl::MakeSsa; - - import Ssa } diff --git a/csharp/ql/lib/semmle/code/csharp/dataflow/internal/SsaImpl.qll b/csharp/ql/lib/semmle/code/csharp/dataflow/internal/SsaImpl.qll index 274c495cf564..0c2ecf96b8f2 100644 --- a/csharp/ql/lib/semmle/code/csharp/dataflow/internal/SsaImpl.qll +++ b/csharp/ql/lib/semmle/code/csharp/dataflow/internal/SsaImpl.qll @@ -43,6 +43,39 @@ private module SsaImplInput implements SsaImplCommon::InputSig as Impl +private module SsaInput implements Impl::SsaInputSig { + private import csharp as CS + + class Expr = CS::Expr; + + class Parameter = CS::Parameter; + + class VariableWrite extends AssignableDefinition { + Expr asExpr() { result = this.getExpr() } + + Expr getValue() { result = this.getSource() } + + predicate isParameterInit(Parameter p) { this.(ImplicitParameterDefinition).getParameter() = p } + } + + predicate explicitWrite(VariableWrite w, BasicBlock bb, int i, SsaImplInput::SourceVariable v) { + exists(AssignableDefinition ad | variableDefinition(bb, i, v, ad) | + w = ad or + w = getASameOutRefDefAfter(v, ad) + ) + or + exists(Parameter p | + implicitEntryDefinition(bb, v) and + i = -1 and + p = v.getAssignable() and + pragma[only_bind_out](p.getCallable()) = pragma[only_bind_out](v.getEnclosingCallable()) and + w.isParameterInit(p) + ) + } +} + +module Ssa_ = Impl::MakeSsa; + class Definition = Impl::Definition; class WriteDefinition = Impl::WriteDefinition; From e5d219a039342f15d64d3a49ece1e1c5fbf3aa79 Mon Sep 17 00:00:00 2001 From: Anders Schack-Mulligen Date: Thu, 23 Apr 2026 13:38:28 +0200 Subject: [PATCH 124/260] C#: Simplify library instantiations. --- .../controlflow/ControlFlowReachability.qll | 12 +----------- .../semmle/code/csharp/controlflow/Guards.qll | 18 +----------------- .../semmle/code/csharp/dataflow/Nullness.qll | 4 ++-- 3 files changed, 4 insertions(+), 30 deletions(-) diff --git a/csharp/ql/lib/semmle/code/csharp/controlflow/ControlFlowReachability.qll b/csharp/ql/lib/semmle/code/csharp/controlflow/ControlFlowReachability.qll index 33d96a61fc7e..4ec4dad9e1be 100644 --- a/csharp/ql/lib/semmle/code/csharp/controlflow/ControlFlowReachability.qll +++ b/csharp/ql/lib/semmle/code/csharp/controlflow/ControlFlowReachability.qll @@ -26,17 +26,7 @@ private module ControlFlowInput implements InputSig; class GuardValue = GuardsImpl::GuardValue; private module LogicInput implements GuardsImpl::LogicInputSig { - class SsaDefinition extends Ssa::Definition { - Expr getARead() { super.getARead() = result } - } - - class SsaExplicitWrite extends SsaDefinition instanceof Ssa::ExplicitDefinition { - Expr getValue() { result = super.getADefinition().getSource() } - } - - class SsaPhiDefinition extends SsaDefinition instanceof Ssa::PhiNode { - predicate hasInputFromBlock(SsaDefinition inp, BasicBlock bb) { - super.hasInputFromBlock(inp, bb) - } - } - - class SsaParameterInit extends SsaDefinition instanceof Ssa::ParameterDefinition { - Parameter getParameter() { result = super.getParameter() } - } + import Ssa predicate additionalNullCheck(GuardsImpl::PreGuard guard, GuardValue val, Expr e, boolean isNull) { // Comparison with a non-`null` value, for example `x?.Length > 0` diff --git a/csharp/ql/lib/semmle/code/csharp/dataflow/Nullness.qll b/csharp/ql/lib/semmle/code/csharp/dataflow/Nullness.qll index 63205e52ae5e..6cd4fe311137 100644 --- a/csharp/ql/lib/semmle/code/csharp/dataflow/Nullness.qll +++ b/csharp/ql/lib/semmle/code/csharp/dataflow/Nullness.qll @@ -250,9 +250,9 @@ private predicate defReaches(Ssa::Definition def, ControlFlowNode cfn) { } private module NullnessConfig implements ControlFlowReachability::ConfigSig { - predicate source(ControlFlowNode node, Ssa::Definition def) { defMaybeNull(def, node, _, _) } + predicate source(ControlFlowNode node, SsaDefinition def) { defMaybeNull(def, node, _, _) } - predicate sink(ControlFlowNode node, Ssa::Definition def) { + predicate sink(ControlFlowNode node, SsaDefinition def) { exists(Dereference d | dereferenceAt(node, def, d) and not d instanceof NonNullExpr From fb438bf5127bd058de75f35e8d31897c84c5a08c Mon Sep 17 00:00:00 2001 From: Anders Schack-Mulligen Date: Thu, 23 Apr 2026 14:25:43 +0200 Subject: [PATCH 125/260] C#: Remove references to getAFirstReadAtNode. --- csharp/ql/lib/semmle/code/csharp/Assignable.qll | 6 +----- csharp/ql/lib/semmle/code/csharp/dataflow/Nullness.qll | 2 +- 2 files changed, 2 insertions(+), 6 deletions(-) diff --git a/csharp/ql/lib/semmle/code/csharp/Assignable.qll b/csharp/ql/lib/semmle/code/csharp/Assignable.qll index d2df0a5a05e0..a86e9d6de5cf 100644 --- a/csharp/ql/lib/semmle/code/csharp/Assignable.qll +++ b/csharp/ql/lib/semmle/code/csharp/Assignable.qll @@ -500,11 +500,7 @@ class AssignableDefinition extends TAssignableDefinition { */ pragma[nomagic] AssignableRead getAFirstRead() { - exists(ControlFlowNode cfn | cfn = result.getControlFlowNode() | - exists(Ssa::ExplicitDefinition def | result = def.getAFirstReadAtNode(cfn) | - this = def.getADefinition() - ) - ) + exists(Ssa::ExplicitDefinition def | result = def.getAFirstRead() | this = def.getADefinition()) } /** Gets a textual representation of this assignable definition. */ diff --git a/csharp/ql/lib/semmle/code/csharp/dataflow/Nullness.qll b/csharp/ql/lib/semmle/code/csharp/dataflow/Nullness.qll index 6cd4fe311137..693a91a3ce54 100644 --- a/csharp/ql/lib/semmle/code/csharp/dataflow/Nullness.qll +++ b/csharp/ql/lib/semmle/code/csharp/dataflow/Nullness.qll @@ -241,7 +241,7 @@ private Ssa::Definition getAnUltimateDefinition(Ssa::Definition def) { * exception. */ private predicate defReaches(Ssa::Definition def, ControlFlowNode cfn) { - exists(def.getAFirstReadAtNode(cfn)) + def.getAFirstRead().getControlFlowNode() = cfn or exists(ControlFlowNode mid | defReaches(def, mid) | SsaImpl::adjacentReadPairSameVar(_, mid, cfn) and From 83c7a33e53c2d300820c3afaefad0d384c1ff696 Mon Sep 17 00:00:00 2001 From: Anders Schack-Mulligen Date: Thu, 23 Apr 2026 14:45:46 +0200 Subject: [PATCH 126/260] C#: Deprecate member predicates Definition.getAFirstRead and getAFirstReadAtNode. --- .../ql/lib/semmle/code/csharp/Assignable.qll | 4 +- .../semmle/code/csharp/dataflow/Nullness.qll | 2 +- .../lib/semmle/code/csharp/dataflow/SSA.qll | 49 ++++++++++++++++++- .../dataflow/defuse/useUseEquivalence.ql | 4 +- 4 files changed, 53 insertions(+), 6 deletions(-) diff --git a/csharp/ql/lib/semmle/code/csharp/Assignable.qll b/csharp/ql/lib/semmle/code/csharp/Assignable.qll index a86e9d6de5cf..066cdeaed15a 100644 --- a/csharp/ql/lib/semmle/code/csharp/Assignable.qll +++ b/csharp/ql/lib/semmle/code/csharp/Assignable.qll @@ -500,7 +500,9 @@ class AssignableDefinition extends TAssignableDefinition { */ pragma[nomagic] AssignableRead getAFirstRead() { - exists(Ssa::ExplicitDefinition def | result = def.getAFirstRead() | this = def.getADefinition()) + exists(Ssa::ExplicitDefinition def | result = Ssa::ssaGetAFirstUse(def) | + this = def.getADefinition() + ) } /** Gets a textual representation of this assignable definition. */ diff --git a/csharp/ql/lib/semmle/code/csharp/dataflow/Nullness.qll b/csharp/ql/lib/semmle/code/csharp/dataflow/Nullness.qll index 693a91a3ce54..726f695e9b73 100644 --- a/csharp/ql/lib/semmle/code/csharp/dataflow/Nullness.qll +++ b/csharp/ql/lib/semmle/code/csharp/dataflow/Nullness.qll @@ -241,7 +241,7 @@ private Ssa::Definition getAnUltimateDefinition(Ssa::Definition def) { * exception. */ private predicate defReaches(Ssa::Definition def, ControlFlowNode cfn) { - def.getAFirstRead().getControlFlowNode() = cfn + Ssa::ssaGetAFirstUse(def).getControlFlowNode() = cfn or exists(ControlFlowNode mid | defReaches(def, mid) | SsaImpl::adjacentReadPairSameVar(_, mid, cfn) and diff --git a/csharp/ql/lib/semmle/code/csharp/dataflow/SSA.qll b/csharp/ql/lib/semmle/code/csharp/dataflow/SSA.qll index 7670774da980..9568adf6c274 100644 --- a/csharp/ql/lib/semmle/code/csharp/dataflow/SSA.qll +++ b/csharp/ql/lib/semmle/code/csharp/dataflow/SSA.qll @@ -149,6 +149,47 @@ module Ssa { } } + /** + * Gets a read of the source variable underlying the SSA definition `def` + * that can be reached from `def` without passing through any + * other SSA definition or read. Example: + * + * ```csharp + * int Field; + * + * void SetField(int i) { + * this.Field = i; + * Use(this.Field); + * if (i > 0) + * this.Field = i - 1; + * else if (i < 0) + * SetField(1); + * Use(this.Field); + * Use(this.Field); + * } + * ``` + * + * - The read of `i` on line 4 can be reached from the explicit SSA + * definition (wrapping an implicit entry definition) on line 3. + * - The reads of `i` on lines 6 and 7 are not the first reads of any SSA + * definition. + * - The read of `this.Field` on line 5 can be reached from the explicit SSA + * definition on line 4. + * - The read of `this.Field` on line 10 can be reached from the phi node + * between lines 9 and 10. + * - The read of `this.Field` on line 11 is not the first read of any SSA + * definition. + * + * Subsequent reads can be found by following the steps defined by + * `AssignableRead.getANextRead()`. + */ + AssignableRead ssaGetAFirstUse(SsaDefinition def) { + exists(ControlFlowNode cfn | + SsaImpl::firstReadSameVar(def, cfn) and + result.getControlFlowNode() = cfn + ) + } + /** * A static single assignment (SSA) definition. Either an explicit variable * definition (`ExplicitDefinition`), an implicit variable definition @@ -229,6 +270,8 @@ module Ssa { } /** + * DEPRECATED: Use `ssaGetAFirstUse` instead. + * * Gets a read of the source variable underlying this SSA definition that * can be reached from this SSA definition without passing through any * other SSA definition or read. Example: @@ -262,9 +305,11 @@ module Ssa { * Subsequent reads can be found by following the steps defined by * `AssignableRead.getANextRead()`. */ - final AssignableRead getAFirstRead() { result = this.getAFirstReadAtNode(_) } + deprecated final AssignableRead getAFirstRead() { result = this.getAFirstReadAtNode(_) } /** + * DEPRECATED: Use `ssaGetAFirstUse` instead. + * * Gets a read of the source variable underlying this SSA definition at * control flow node `cfn` that can be reached from this SSA definition * without passing through any other SSA definition or read. Example: @@ -298,7 +343,7 @@ module Ssa { * Subsequent reads can be found by following the steps defined by * `AssignableRead.getANextRead()`. */ - final AssignableRead getAFirstReadAtNode(ControlFlowNode cfn) { + deprecated final AssignableRead getAFirstReadAtNode(ControlFlowNode cfn) { SsaImpl::firstReadSameVar(this, cfn) and result.getControlFlowNode() = cfn } diff --git a/csharp/ql/test/library-tests/dataflow/defuse/useUseEquivalence.ql b/csharp/ql/test/library-tests/dataflow/defuse/useUseEquivalence.ql index bc3d6d422a6c..b6610aa25542 100644 --- a/csharp/ql/test/library-tests/dataflow/defuse/useUseEquivalence.ql +++ b/csharp/ql/test/library-tests/dataflow/defuse/useUseEquivalence.ql @@ -42,9 +42,9 @@ private TLocalScopeVariableReadOrSsaDef getANextReadOrDef(TLocalScopeVariableRea ) or exists(Ssa::Definition ssaDef | prev = TSsaDefinition(ssaDef) | - result = TLocalScopeVariableRead(ssaDef.getAFirstRead()) + result = TLocalScopeVariableRead(Ssa::ssaGetAFirstUse(ssaDef)) or - not exists(ssaDef.getAFirstRead()) and + not exists(Ssa::ssaGetAFirstUse(ssaDef)) and exists(Ssa::PhiNode phi | phi.getAnInput() = ssaDef and result = TSsaDefinition(phi) From 2545f06b525a076d897789d3fbc420f83a671a98 Mon Sep 17 00:00:00 2001 From: Anders Schack-Mulligen Date: Thu, 23 Apr 2026 14:59:01 +0200 Subject: [PATCH 127/260] C#: Deprecate member predicate Definition.getAReadAtNode. --- .../lib/semmle/code/csharp/controlflow/Guards.qll | 2 +- .../lib/semmle/code/csharp/dataflow/Nullness.qll | 14 +++++++------- csharp/ql/lib/semmle/code/csharp/dataflow/SSA.qll | 6 ++++-- .../csharp/dataflow/internal/DataFlowPrivate.qll | 2 +- .../rangeanalysis/SignAnalysisSpecific.qll | 2 +- .../dataflow/internal/rangeanalysis/SsaUtils.qll | 6 +++--- 6 files changed, 17 insertions(+), 15 deletions(-) diff --git a/csharp/ql/lib/semmle/code/csharp/controlflow/Guards.qll b/csharp/ql/lib/semmle/code/csharp/controlflow/Guards.qll index 296df458ff2c..45a73f008ddf 100644 --- a/csharp/ql/lib/semmle/code/csharp/controlflow/Guards.qll +++ b/csharp/ql/lib/semmle/code/csharp/controlflow/Guards.qll @@ -586,7 +586,7 @@ private Ssa::Definition getAnSsaQualifier(Expr e, ControlFlowNode cfn) { } private AssignableAccess getATrackedAccess(Ssa::Definition def, ControlFlowNode cfn) { - result = def.getAReadAtNode(cfn) + result = def.getARead() and cfn = result.getControlFlowNode() or result = def.(Ssa::ExplicitDefinition).getADefinition().getTargetAccess() and cfn = def.getControlFlowNode() diff --git a/csharp/ql/lib/semmle/code/csharp/dataflow/Nullness.qll b/csharp/ql/lib/semmle/code/csharp/dataflow/Nullness.qll index 726f695e9b73..9af83aa767ac 100644 --- a/csharp/ql/lib/semmle/code/csharp/dataflow/Nullness.qll +++ b/csharp/ql/lib/semmle/code/csharp/dataflow/Nullness.qll @@ -124,11 +124,9 @@ private predicate nonNullDef(Ssa::ExplicitDefinition def) { } /** - * Holds if `node` is a dereference `d` of SSA definition `def`. + * Holds if `d` is a dereference of SSA definition `def`. */ -private predicate dereferenceAt(ControlFlowNode node, Ssa::Definition def, Dereference d) { - d = def.getAReadAtNode(node) -} +private predicate dereferenceAt(Ssa::Definition def, Dereference d) { d = def.getARead() } private predicate isMaybeNullArgument(Ssa::ParameterDefinition def, MaybeNullExpr arg) { exists(AssignableDefinitions::ImplicitParameterDefinition pdef, Parameter p | @@ -214,7 +212,7 @@ private predicate defMaybeNull(Ssa::Definition def, ControlFlowNode node, string ) or // A variable of nullable type may be null - exists(Dereference d | dereferenceAt(_, def, d) | + exists(Dereference d | dereferenceAt(def, d) | node = def.getControlFlowNode() and d.hasNullableType() and not def instanceof Ssa::PhiNode and @@ -254,7 +252,8 @@ private module NullnessConfig implements ControlFlowReachability::ConfigSig { predicate sink(ControlFlowNode node, SsaDefinition def) { exists(Dereference d | - dereferenceAt(node, def, d) and + dereferenceAt(def, d) and + node = d.getControlFlowNode() and not d instanceof NonNullExpr ) } @@ -271,7 +270,8 @@ predicate maybeNullDeref(Dereference d, Ssa::SourceVariable v, string msg, Eleme defMaybeNull(origin, src, msg, reason) and NullnessFlow::flow(src, origin, sink, ssa) and ssa.getSourceVariable() = v and - dereferenceAt(sink, ssa, d) and + dereferenceAt(ssa, d) and + sink = d.getControlFlowNode() and not d.isAlwaysNull(v) ) } diff --git a/csharp/ql/lib/semmle/code/csharp/dataflow/SSA.qll b/csharp/ql/lib/semmle/code/csharp/dataflow/SSA.qll index 9568adf6c274..7d8809a700cf 100644 --- a/csharp/ql/lib/semmle/code/csharp/dataflow/SSA.qll +++ b/csharp/ql/lib/semmle/code/csharp/dataflow/SSA.qll @@ -236,9 +236,11 @@ module Ssa { * - The reads of `this.Field` on lines 10 and 11 can be reached from the phi * node between lines 9 and 10. */ - final AssignableRead getARead() { result = this.getAReadAtNode(_) } + final AssignableRead getARead() { result = SsaImpl::getAReadAtNode(this, _) } /** + * DEPRECATED: Use `getARead()` instead. + * * Gets a read of the source variable underlying this SSA definition at * control flow node `cfn` that can be reached from this SSA definition * without passing through any other SSA definitions. Example: @@ -265,7 +267,7 @@ module Ssa { * - The reads of `this.Field` on lines 10 and 11 can be reached from the phi * node between lines 9 and 10. */ - final AssignableRead getAReadAtNode(ControlFlowNode cfn) { + deprecated final AssignableRead getAReadAtNode(ControlFlowNode cfn) { result = SsaImpl::getAReadAtNode(this, cfn) } diff --git a/csharp/ql/lib/semmle/code/csharp/dataflow/internal/DataFlowPrivate.qll b/csharp/ql/lib/semmle/code/csharp/dataflow/internal/DataFlowPrivate.qll index c4d2a8441033..c498d4aa3a97 100644 --- a/csharp/ql/lib/semmle/code/csharp/dataflow/internal/DataFlowPrivate.qll +++ b/csharp/ql/lib/semmle/code/csharp/dataflow/internal/DataFlowPrivate.qll @@ -273,7 +273,7 @@ module VariableCapture { exists(Ssa::Definition def, AssignableDefinition adef | LocalFlow::defAssigns(adef, _, _, e1) and def.getAnUltimateDefinition().(Ssa::ExplicitDefinition).getADefinition() = adef and - exists(def.getAReadAtNode(e2)) + def.getARead().getControlFlowNode() = e2 ) } diff --git a/csharp/ql/lib/semmle/code/csharp/dataflow/internal/rangeanalysis/SignAnalysisSpecific.qll b/csharp/ql/lib/semmle/code/csharp/dataflow/internal/rangeanalysis/SignAnalysisSpecific.qll index f6dd4911256c..96245e460c71 100644 --- a/csharp/ql/lib/semmle/code/csharp/dataflow/internal/rangeanalysis/SignAnalysisSpecific.qll +++ b/csharp/ql/lib/semmle/code/csharp/dataflow/internal/rangeanalysis/SignAnalysisSpecific.qll @@ -245,7 +245,7 @@ private module Impl { ) } - ExprNode getARead(Ssa::Definition v) { exists(v.getAReadAtNode(result)) } + ExprNode getARead(Ssa::Definition v) { v.getARead().getControlFlowNode() = result } Field getField(ExprNode fa) { result = fa.getExpr().(FieldAccess).getTarget() } diff --git a/csharp/ql/lib/semmle/code/csharp/dataflow/internal/rangeanalysis/SsaUtils.qll b/csharp/ql/lib/semmle/code/csharp/dataflow/internal/rangeanalysis/SsaUtils.qll index 55267fad17cf..9ff12625a060 100644 --- a/csharp/ql/lib/semmle/code/csharp/dataflow/internal/rangeanalysis/SsaUtils.qll +++ b/csharp/ql/lib/semmle/code/csharp/dataflow/internal/rangeanalysis/SsaUtils.qll @@ -12,13 +12,13 @@ private class ExprNode = ControlFlowNodes::ExprNode; /** An SSA variable. */ class SsaVariable extends Definition { /** Gets a read of this SSA variable. */ - ExprNode getAUse() { exists(this.getAReadAtNode(result)) } + ExprNode getAUse() { this.getARead().getControlFlowNode() = result } } /** Gets a node that reads `src` via an SSA explicit definition. */ ExprNode getAnExplicitDefinitionRead(ExprNode src) { exists(ExplicitDefinition def | - exists(def.getAReadAtNode(result)) and + def.getARead().getControlFlowNode() = result and hasChild(def.getElement(), def.getADefinition().getSource(), def.getControlFlowNode(), src) ) } @@ -27,7 +27,7 @@ ExprNode getAnExplicitDefinitionRead(ExprNode src) { * Gets an expression that equals `v - delta`. */ ExprNode ssaRead(Definition v, int delta) { - exists(v.getAReadAtNode(result)) and delta = 0 + v.getARead().getControlFlowNode() = result and delta = 0 or exists(ExprNode::AddOperation add, int d1, ConstantIntegerExpr c | result = add and From c88a22ccf8e40cb80a94a278736229900bb8a9fd Mon Sep 17 00:00:00 2001 From: Anders Schack-Mulligen Date: Thu, 23 Apr 2026 16:21:29 +0200 Subject: [PATCH 128/260] C#: Replace most uses of Ssa::Definition with SsaDefinition. --- .../semmle/code/csharp/controlflow/Guards.qll | 24 ++++++++--------- .../semmle/code/csharp/dataflow/Nullness.qll | 26 +++++++++---------- .../dataflow/internal/DataFlowPrivate.qll | 4 +-- .../code/csharp/dataflow/internal/SsaImpl.qll | 4 +-- .../internal/rangeanalysis/RangeUtils.qll | 2 +- .../rangeanalysis/SignAnalysisSpecific.qll | 4 +-- .../rangeanalysis/SsaReadPositionSpecific.qll | 2 +- .../internal/rangeanalysis/SsaUtils.qll | 4 +-- .../Control-Flow/ConstantCondition.ql | 2 +- .../src/Likely Bugs/Dynamic/BadDynamicCall.ql | 2 +- .../ql/test/library-tests/csharp7/DefUse.ql | 2 +- .../dataflow/defuse/defUseEquivalence.ql | 2 +- .../defuse/parameterUseEquivalence.ql | 2 +- .../dataflow/defuse/useUseEquivalence.ql | 6 ++--- .../test/library-tests/dataflow/ssa/SSAPhi.ql | 2 +- .../test/library-tests/dataflow/ssa/SsaDef.ql | 2 +- .../library-tests/dataflow/ssa/SsaRead.ql | 2 +- .../dataflow/ssa/SsaUltimateDef.ql | 2 +- 18 files changed, 47 insertions(+), 47 deletions(-) diff --git a/csharp/ql/lib/semmle/code/csharp/controlflow/Guards.qll b/csharp/ql/lib/semmle/code/csharp/controlflow/Guards.qll index 45a73f008ddf..48adada60d85 100644 --- a/csharp/ql/lib/semmle/code/csharp/controlflow/Guards.qll +++ b/csharp/ql/lib/semmle/code/csharp/controlflow/Guards.qll @@ -570,7 +570,7 @@ class AccessOrCallExpr extends Expr { * An expression can have more than one SSA qualifier in the presence * of control flow splitting. */ - Ssa::Definition getAnSsaQualifier(ControlFlowNode cfn) { result = getAnSsaQualifier(this, cfn) } + SsaDefinition getAnSsaQualifier(ControlFlowNode cfn) { result = getAnSsaQualifier(this, cfn) } } private Declaration getDeclarationTarget(Expr e) { @@ -578,14 +578,14 @@ private Declaration getDeclarationTarget(Expr e) { result = e.(Call).getTarget() } -private Ssa::Definition getAnSsaQualifier(Expr e, ControlFlowNode cfn) { +private SsaDefinition getAnSsaQualifier(Expr e, ControlFlowNode cfn) { e = getATrackedAccess(result, cfn) or not e = getATrackedAccess(_, _) and result = getAnSsaQualifier(e.(QualifiableExpr).getQualifier(), cfn) } -private AssignableAccess getATrackedAccess(Ssa::Definition def, ControlFlowNode cfn) { +private AssignableAccess getATrackedAccess(SsaDefinition def, ControlFlowNode cfn) { result = def.getARead() and cfn = result.getControlFlowNode() or result = def.(Ssa::ExplicitDefinition).getADefinition().getTargetAccess() and @@ -593,7 +593,7 @@ private AssignableAccess getATrackedAccess(Ssa::Definition def, ControlFlowNode } private predicate ssaMustHaveValue(Expr e, GuardValue v) { - exists(Ssa::Definition def, BasicBlock bb | + exists(SsaDefinition def, BasicBlock bb | e = def.getARead() and e.getBasicBlock() = bb and Guards::ssaControls(def, bb, v) @@ -825,8 +825,8 @@ module Internal { ) or e = - any(Ssa::Definition def | - forex(Ssa::Definition u | u = def.getAnUltimateDefinition() | nullDef(u)) + any(SsaDefinition def | + forex(SsaDefinition u | u = def.getAnUltimateDefinition() | nullDef(u)) ).getARead() } @@ -840,8 +840,8 @@ module Internal { exists(Expr e1 | nonNullValueImplied(e1) and nonNullValueImpliedUnary(e1, e)) or e = - any(Ssa::Definition def | - forex(Ssa::Definition u | u = def.getAnUltimateDefinition() | nonNullDef(u)) + any(SsaDefinition def | + forex(SsaDefinition u | u = def.getAnUltimateDefinition() | nonNullDef(u)) ).getARead() } @@ -1104,7 +1104,7 @@ module Internal { private predicate nodeIsGuardedBySameSubExprSsaDef0( ControlFlowNode cfn, BasicBlock guardedBB, AccessOrCallExpr guarded, Guard g, ControlFlowNode subCfn, BasicBlock subCfnBB, AccessOrCallExpr sub, GuardValue v, - Ssa::Definition def + SsaDefinition def ) { nodeIsGuardedBySameSubExpr(cfn, guardedBB, guarded, g, sub, v) and def = sub.getAnSsaQualifier(subCfn) and @@ -1114,7 +1114,7 @@ module Internal { pragma[nomagic] private predicate nodeIsGuardedBySameSubExprSsaDef( ControlFlowNode guardedCfn, AccessOrCallExpr guarded, Guard g, ControlFlowNode subCfn, - AccessOrCallExpr sub, GuardValue v, Ssa::Definition def + AccessOrCallExpr sub, GuardValue v, SsaDefinition def ) { exists(BasicBlock guardedBB, BasicBlock subCfnBB | nodeIsGuardedBySameSubExprSsaDef0(guardedCfn, guardedBB, guarded, g, subCfn, subCfnBB, sub, @@ -1133,7 +1133,7 @@ module Internal { cached predicate isGuardedByExpr(AccessOrCallExpr guarded, Guard g, AccessOrCallExpr sub, GuardValue v) { isGuardedByExpr0(guarded, g, sub, v) and - forall(ControlFlowNode subCfn, Ssa::Definition def | + forall(ControlFlowNode subCfn, SsaDefinition def | nodeIsGuardedBySameSubExprSsaDef(_, guarded, g, subCfn, sub, v, def) | def = guarded.getAnSsaQualifier(_) @@ -1145,7 +1145,7 @@ module Internal { ControlFlowNodes::ElementNode guarded, Guard g, AccessOrCallExpr sub, GuardValue v ) { nodeIsGuardedBySameSubExpr(guarded, _, _, g, sub, v) and - forall(ControlFlowNode subCfn, Ssa::Definition def | + forall(ControlFlowNode subCfn, SsaDefinition def | nodeIsGuardedBySameSubExprSsaDef(guarded, _, g, subCfn, sub, v, def) | def = diff --git a/csharp/ql/lib/semmle/code/csharp/dataflow/Nullness.qll b/csharp/ql/lib/semmle/code/csharp/dataflow/Nullness.qll index 9af83aa767ac..95dfcf3f0ec3 100644 --- a/csharp/ql/lib/semmle/code/csharp/dataflow/Nullness.qll +++ b/csharp/ql/lib/semmle/code/csharp/dataflow/Nullness.qll @@ -67,8 +67,8 @@ class AlwaysNullExpr extends Expr { exists(AlwaysNullExpr e1, AlwaysNullExpr e2 | G::Internal::nullValueImpliedBinary(e1, e2, this)) or this = - any(Ssa::Definition def | - forex(Ssa::Definition u | u = def.getAnUltimateDefinition() | nullDef(u)) + any(SsaDefinition def | + forex(SsaDefinition u | u = def.getAnUltimateDefinition() | nullDef(u)) ).getARead() or exists(Callable target | @@ -94,8 +94,8 @@ class NonNullExpr extends Expr { this instanceof G::NullGuardedExpr or this = - any(Ssa::Definition def | - forex(Ssa::Definition u | u = def.getAnUltimateDefinition() | nonNullDef(u)) + any(SsaDefinition def | + forex(SsaDefinition u | u = def.getAnUltimateDefinition() | nonNullDef(u)) ).getARead() or exists(Callable target | @@ -126,7 +126,7 @@ private predicate nonNullDef(Ssa::ExplicitDefinition def) { /** * Holds if `d` is a dereference of SSA definition `def`. */ -private predicate dereferenceAt(Ssa::Definition def, Dereference d) { d = def.getARead() } +private predicate dereferenceAt(SsaDefinition def, Dereference d) { d = def.getARead() } private predicate isMaybeNullArgument(Ssa::ParameterDefinition def, MaybeNullExpr arg) { exists(AssignableDefinitions::ImplicitParameterDefinition pdef, Parameter p | @@ -180,7 +180,7 @@ private predicate hasMultipleParamsArguments(Call c) { } /** Holds if `def` is an SSA definition that may be `null`. */ -private predicate defMaybeNull(Ssa::Definition def, ControlFlowNode node, string msg, Element reason) { +private predicate defMaybeNull(SsaDefinition def, ControlFlowNode node, string msg, Element reason) { not nonNullDef(def) and ( // A variable compared to `null` might be `null` @@ -222,13 +222,13 @@ private predicate defMaybeNull(Ssa::Definition def, ControlFlowNode node, string ) } -private Ssa::Definition getAPseudoInput(Ssa::Definition def) { +private SsaDefinition getAPseudoInput(SsaDefinition def) { result = def.(Ssa::PhiNode).getAnInput() } // `def.getAnUltimateDefinition()` includes inputs into uncertain // definitions, but we only want inputs into pseudo nodes -private Ssa::Definition getAnUltimateDefinition(Ssa::Definition def) { +private SsaDefinition getAnUltimateDefinition(SsaDefinition def) { result = getAPseudoInput*(def) and not result instanceof Ssa::PhiNode } @@ -238,7 +238,7 @@ private Ssa::Definition getAnUltimateDefinition(Ssa::Definition def) { * through an intermediate dereference that always throws a null reference * exception. */ -private predicate defReaches(Ssa::Definition def, ControlFlowNode cfn) { +private predicate defReaches(SsaDefinition def, ControlFlowNode cfn) { Ssa::ssaGetAFirstUse(def).getControlFlowNode() = cfn or exists(ControlFlowNode mid | defReaches(def, mid) | @@ -266,7 +266,7 @@ private module NullnessConfig implements ControlFlowReachability::ConfigSig { private module NullnessFlow = ControlFlowReachability::Flow; predicate maybeNullDeref(Dereference d, Ssa::SourceVariable v, string msg, Element reason) { - exists(Ssa::Definition origin, Ssa::Definition ssa, ControlFlowNode src, ControlFlowNode sink | + exists(SsaDefinition origin, SsaDefinition ssa, ControlFlowNode src, ControlFlowNode sink | defMaybeNull(origin, src, msg, reason) and NullnessFlow::flow(src, origin, sink, ssa) and ssa.getSourceVariable() = v and @@ -334,8 +334,8 @@ class Dereference extends G::DereferenceableExpr { ) } - private predicate isAlwaysNull0(Ssa::Definition def) { - forall(Ssa::Definition input | input = getAnUltimateDefinition(def) | + private predicate isAlwaysNull0(SsaDefinition def) { + forall(SsaDefinition input | input = getAnUltimateDefinition(def) | input.(Ssa::ExplicitDefinition).getADefinition().getSource() instanceof AlwaysNullExpr ) and not nonNullDef(def) and @@ -352,7 +352,7 @@ class Dereference extends G::DereferenceableExpr { // Exclude fields and properties, as they may not have an accurate SSA representation v.getAssignable() instanceof LocalScopeVariable and ( - forex(Ssa::Definition def0 | this = def0.getARead() | this.isAlwaysNull0(def0)) + forex(SsaDefinition def0 | this = def0.getARead() | this.isAlwaysNull0(def0)) or exists(G::GuardValue nv | this.(G::GuardedExpr).mustHaveValue(nv) and diff --git a/csharp/ql/lib/semmle/code/csharp/dataflow/internal/DataFlowPrivate.qll b/csharp/ql/lib/semmle/code/csharp/dataflow/internal/DataFlowPrivate.qll index c498d4aa3a97..b6a6d3988740 100644 --- a/csharp/ql/lib/semmle/code/csharp/dataflow/internal/DataFlowPrivate.qll +++ b/csharp/ql/lib/semmle/code/csharp/dataflow/internal/DataFlowPrivate.qll @@ -270,7 +270,7 @@ module VariableCapture { private predicate closureFlowStep(ControlFlowNodes::ExprNode e1, ControlFlowNodes::ExprNode e2) { e1.getExpr() = LocalFlow::getALastEvalNode(e2.getExpr()) or - exists(Ssa::Definition def, AssignableDefinition adef | + exists(SsaDefinition def, AssignableDefinition adef | LocalFlow::defAssigns(adef, _, _, e1) and def.getAnUltimateDefinition().(Ssa::ExplicitDefinition).getADefinition() = adef and def.getARead().getControlFlowNode() = e2 @@ -2016,7 +2016,7 @@ private class FieldOrPropertyRead extends FieldOrPropertyAccess, AssignableRead * SSA updates. */ predicate hasNonlocalValue() { - exists(Ssa::Definition def, Ssa::ImplicitDefinition idef | + exists(SsaDefinition def, Ssa::ImplicitDefinition idef | def.getARead() = this and idef = def.getAnUltimateDefinition() | diff --git a/csharp/ql/lib/semmle/code/csharp/dataflow/internal/SsaImpl.qll b/csharp/ql/lib/semmle/code/csharp/dataflow/internal/SsaImpl.qll index 0c2ecf96b8f2..a4d788001a7e 100644 --- a/csharp/ql/lib/semmle/code/csharp/dataflow/internal/SsaImpl.qll +++ b/csharp/ql/lib/semmle/code/csharp/dataflow/internal/SsaImpl.qll @@ -915,9 +915,9 @@ private module Cached { } cached - predicate isLiveOutRefParameterDefinition(Ssa::Definition def, Parameter p) { + predicate isLiveOutRefParameterDefinition(SsaDefinition def, Parameter p) { p.isOutOrRef() and - exists(Ssa::SourceVariable v, Ssa::Definition def0, BasicBlock bb, int i | + exists(Ssa::SourceVariable v, SsaDefinition def0, BasicBlock bb, int i | v = def.getSourceVariable() and p = v.getAssignable() and def = def0.getAnUltimateDefinition() and diff --git a/csharp/ql/lib/semmle/code/csharp/dataflow/internal/rangeanalysis/RangeUtils.qll b/csharp/ql/lib/semmle/code/csharp/dataflow/internal/rangeanalysis/RangeUtils.qll index e53e3a44276d..fafb85440a27 100644 --- a/csharp/ql/lib/semmle/code/csharp/dataflow/internal/rangeanalysis/RangeUtils.qll +++ b/csharp/ql/lib/semmle/code/csharp/dataflow/internal/rangeanalysis/RangeUtils.qll @@ -106,7 +106,7 @@ private module Impl { * - `isEq = true` : `def == e + delta` * - `isEq = false` : `def != e + delta` */ - Guard eqFlowCond(Definition def, ExprNode e, int delta, boolean isEq, boolean testIsTrue) { + Guard eqFlowCond(SsaDefinition def, ExprNode e, int delta, boolean isEq, boolean testIsTrue) { exists(boolean eqpolarity | result.isEquality(ssaRead(def, delta), e, eqpolarity) and testIsTrue = [false, true] and diff --git a/csharp/ql/lib/semmle/code/csharp/dataflow/internal/rangeanalysis/SignAnalysisSpecific.qll b/csharp/ql/lib/semmle/code/csharp/dataflow/internal/rangeanalysis/SignAnalysisSpecific.qll index 96245e460c71..55b3ac31aa3e 100644 --- a/csharp/ql/lib/semmle/code/csharp/dataflow/internal/rangeanalysis/SignAnalysisSpecific.qll +++ b/csharp/ql/lib/semmle/code/csharp/dataflow/internal/rangeanalysis/SignAnalysisSpecific.qll @@ -13,7 +13,7 @@ module Private { class ConstantIntegerExpr = CU::ConstantIntegerExpr; - class SsaVariable = CS::Ssa::Definition; + class SsaVariable = CS::SsaDefinition; class SsaPhiNode = CS::Ssa::PhiNode; @@ -245,7 +245,7 @@ private module Impl { ) } - ExprNode getARead(Ssa::Definition v) { v.getARead().getControlFlowNode() = result } + ExprNode getARead(SsaDefinition v) { v.getARead().getControlFlowNode() = result } Field getField(ExprNode fa) { result = fa.getExpr().(FieldAccess).getTarget() } diff --git a/csharp/ql/lib/semmle/code/csharp/dataflow/internal/rangeanalysis/SsaReadPositionSpecific.qll b/csharp/ql/lib/semmle/code/csharp/dataflow/internal/rangeanalysis/SsaReadPositionSpecific.qll index 6da6ec8b11e6..18c843c0472c 100644 --- a/csharp/ql/lib/semmle/code/csharp/dataflow/internal/rangeanalysis/SsaReadPositionSpecific.qll +++ b/csharp/ql/lib/semmle/code/csharp/dataflow/internal/rangeanalysis/SsaReadPositionSpecific.qll @@ -5,7 +5,7 @@ private import csharp as CS private import SsaReadPositionCommon -class SsaVariable = CS::Ssa::Definition; +class SsaVariable = CS::SsaDefinition; class SsaPhiNode = CS::Ssa::PhiNode; diff --git a/csharp/ql/lib/semmle/code/csharp/dataflow/internal/rangeanalysis/SsaUtils.qll b/csharp/ql/lib/semmle/code/csharp/dataflow/internal/rangeanalysis/SsaUtils.qll index 9ff12625a060..5681976a378c 100644 --- a/csharp/ql/lib/semmle/code/csharp/dataflow/internal/rangeanalysis/SsaUtils.qll +++ b/csharp/ql/lib/semmle/code/csharp/dataflow/internal/rangeanalysis/SsaUtils.qll @@ -10,7 +10,7 @@ private import ConstantUtils private class ExprNode = ControlFlowNodes::ExprNode; /** An SSA variable. */ -class SsaVariable extends Definition { +class SsaVariable extends SsaDefinition { /** Gets a read of this SSA variable. */ ExprNode getAUse() { this.getARead().getControlFlowNode() = result } } @@ -26,7 +26,7 @@ ExprNode getAnExplicitDefinitionRead(ExprNode src) { /** * Gets an expression that equals `v - delta`. */ -ExprNode ssaRead(Definition v, int delta) { +ExprNode ssaRead(SsaDefinition v, int delta) { v.getARead().getControlFlowNode() = result and delta = 0 or exists(ExprNode::AddOperation add, int d1, ConstantIntegerExpr c | diff --git a/csharp/ql/src/Bad Practices/Control-Flow/ConstantCondition.ql b/csharp/ql/src/Bad Practices/Control-Flow/ConstantCondition.ql index 8e36f4f1ad1b..295bdba1f7af 100644 --- a/csharp/ql/src/Bad Practices/Control-Flow/ConstantCondition.ql +++ b/csharp/ql/src/Bad Practices/Control-Flow/ConstantCondition.ql @@ -20,7 +20,7 @@ import semmle.code.csharp.controlflow.Guards as Guards import codeql.controlflow.queries.ConstantCondition as ConstCond module ConstCondInput implements ConstCond::InputSig { - class SsaDefinition = Ssa::Definition; + class SsaDefinition = Ssa::SsaDefinition; class GuardValue = Guards::GuardValue; diff --git a/csharp/ql/src/Likely Bugs/Dynamic/BadDynamicCall.ql b/csharp/ql/src/Likely Bugs/Dynamic/BadDynamicCall.ql index 75f152b38de1..4d68f6ee6282 100644 --- a/csharp/ql/src/Likely Bugs/Dynamic/BadDynamicCall.ql +++ b/csharp/ql/src/Likely Bugs/Dynamic/BadDynamicCall.ql @@ -36,7 +36,7 @@ abstract class BadDynamicCall extends DynamicExpr { } private Type possibleTypeForRelevantSource(Variable v, int i, Expr source) { - exists(AssignableRead read, Ssa::Definition ssaDef, Ssa::ExplicitDefinition ultimateSsaDef | + exists(AssignableRead read, SsaDefinition ssaDef, Ssa::ExplicitDefinition ultimateSsaDef | read = this.getARelevantVariableAccess(i) and v = read.getTarget() and result = source.getType() and diff --git a/csharp/ql/test/library-tests/csharp7/DefUse.ql b/csharp/ql/test/library-tests/csharp7/DefUse.ql index 5957c0092604..e696307be28c 100644 --- a/csharp/ql/test/library-tests/csharp7/DefUse.ql +++ b/csharp/ql/test/library-tests/csharp7/DefUse.ql @@ -1,6 +1,6 @@ import csharp -from AssignableDefinition def, AssignableRead read, Ssa::Definition ult, Ssa::Definition ssaDef +from AssignableDefinition def, AssignableRead read, SsaDefinition ult, SsaDefinition ssaDef where ssaDef.getAnUltimateDefinition() = ult and ( diff --git a/csharp/ql/test/library-tests/dataflow/defuse/defUseEquivalence.ql b/csharp/ql/test/library-tests/dataflow/defuse/defUseEquivalence.ql index c69890be8c35..800ae9717598 100644 --- a/csharp/ql/test/library-tests/dataflow/defuse/defUseEquivalence.ql +++ b/csharp/ql/test/library-tests/dataflow/defuse/defUseEquivalence.ql @@ -29,7 +29,7 @@ predicate defUsePair(AssignableDefinition def, AssignableRead read) { } private LocalScopeVariableRead getAReachableUncertainRead(AssignableDefinition def) { - exists(Ssa::Definition ssaDef | + exists(SsaDefinition ssaDef | def = ssaDef.getAnUltimateDefinition().(Ssa::ExplicitDefinition).getADefinition() | result = ssaDef.getARead() diff --git a/csharp/ql/test/library-tests/dataflow/defuse/parameterUseEquivalence.ql b/csharp/ql/test/library-tests/dataflow/defuse/parameterUseEquivalence.ql index 896092718a0e..10b916ab3f41 100644 --- a/csharp/ql/test/library-tests/dataflow/defuse/parameterUseEquivalence.ql +++ b/csharp/ql/test/library-tests/dataflow/defuse/parameterUseEquivalence.ql @@ -23,7 +23,7 @@ predicate parameterUsePair(Parameter p, AssignableRead read) { private LocalScopeVariableRead getAReachableUncertainRead( AssignableDefinitions::ImplicitParameterDefinition p ) { - exists(Ssa::Definition ssaDef | + exists(SsaDefinition ssaDef | p.getParameter() = ssaDef.getAnUltimateDefinition().(Ssa::ParameterDefinition).getParameter() | result = ssaDef.getARead() diff --git a/csharp/ql/test/library-tests/dataflow/defuse/useUseEquivalence.ql b/csharp/ql/test/library-tests/dataflow/defuse/useUseEquivalence.ql index b6610aa25542..986707c018dd 100644 --- a/csharp/ql/test/library-tests/dataflow/defuse/useUseEquivalence.ql +++ b/csharp/ql/test/library-tests/dataflow/defuse/useUseEquivalence.ql @@ -25,14 +25,14 @@ predicate useUsePair(LocalScopeVariableRead read1, LocalScopeVariableRead read2) private newtype TLocalScopeVariableReadOrSsaDef = TLocalScopeVariableRead(LocalScopeVariableRead read) or - TSsaDefinition(Ssa::Definition ssaDef) + TSsaDefinition(SsaDefinition ssaDef) private TLocalScopeVariableReadOrSsaDef getANextReadOrDef(TLocalScopeVariableReadOrSsaDef prev) { exists(LocalScopeVariableRead read | prev = TLocalScopeVariableRead(read) | result = TLocalScopeVariableRead(read.getANextRead()) or not exists(read.getANextRead()) and - exists(Ssa::Definition ssaDef, Ssa::PhiNode phi, BasicBlock bb | + exists(SsaDefinition ssaDef, Ssa::PhiNode phi, BasicBlock bb | ssaDef.getARead() = read and phi.getAnInput() = ssaDef and phi.definesAt(_, bb, _) and @@ -41,7 +41,7 @@ private TLocalScopeVariableReadOrSsaDef getANextReadOrDef(TLocalScopeVariableRea ) ) or - exists(Ssa::Definition ssaDef | prev = TSsaDefinition(ssaDef) | + exists(SsaDefinition ssaDef | prev = TSsaDefinition(ssaDef) | result = TLocalScopeVariableRead(Ssa::ssaGetAFirstUse(ssaDef)) or not exists(Ssa::ssaGetAFirstUse(ssaDef)) and diff --git a/csharp/ql/test/library-tests/dataflow/ssa/SSAPhi.ql b/csharp/ql/test/library-tests/dataflow/ssa/SSAPhi.ql index 90726a62880f..db24031365a4 100644 --- a/csharp/ql/test/library-tests/dataflow/ssa/SSAPhi.ql +++ b/csharp/ql/test/library-tests/dataflow/ssa/SSAPhi.ql @@ -1,6 +1,6 @@ import csharp -from Ssa::SourceVariable v, Ssa::PhiNode phi, Ssa::Definition input +from Ssa::SourceVariable v, Ssa::PhiNode phi, SsaDefinition input where phi.getAnInput() = input and v = phi.getSourceVariable() diff --git a/csharp/ql/test/library-tests/dataflow/ssa/SsaDef.ql b/csharp/ql/test/library-tests/dataflow/ssa/SsaDef.ql index 5c9205fd68b7..87c4f53a56b9 100644 --- a/csharp/ql/test/library-tests/dataflow/ssa/SsaDef.ql +++ b/csharp/ql/test/library-tests/dataflow/ssa/SsaDef.ql @@ -1,5 +1,5 @@ import csharp -from Ssa::SourceVariable v, Ssa::Definition def +from Ssa::SourceVariable v, SsaDefinition def where v = def.getSourceVariable() select v, def diff --git a/csharp/ql/test/library-tests/dataflow/ssa/SsaRead.ql b/csharp/ql/test/library-tests/dataflow/ssa/SsaRead.ql index 44e4cdc23d0a..1cc573d32771 100644 --- a/csharp/ql/test/library-tests/dataflow/ssa/SsaRead.ql +++ b/csharp/ql/test/library-tests/dataflow/ssa/SsaRead.ql @@ -1,6 +1,6 @@ import csharp -from Ssa::SourceVariable v, Ssa::Definition def, AssignableRead read +from Ssa::SourceVariable v, SsaDefinition def, AssignableRead read where read = def.getARead() and v = def.getSourceVariable() diff --git a/csharp/ql/test/library-tests/dataflow/ssa/SsaUltimateDef.ql b/csharp/ql/test/library-tests/dataflow/ssa/SsaUltimateDef.ql index 5d47aeb4b2c7..df565c0edc03 100644 --- a/csharp/ql/test/library-tests/dataflow/ssa/SsaUltimateDef.ql +++ b/csharp/ql/test/library-tests/dataflow/ssa/SsaUltimateDef.ql @@ -1,6 +1,6 @@ import csharp -from Ssa::SourceVariable v, Ssa::Definition def, Ssa::Definition u +from Ssa::SourceVariable v, SsaDefinition def, SsaDefinition u where u = def.getAnUltimateDefinition() and v = def.getSourceVariable() From 9345c44e0f41624750a8d516441d0918d3ba3e9b Mon Sep 17 00:00:00 2001 From: Anders Schack-Mulligen Date: Thu, 23 Apr 2026 16:23:21 +0200 Subject: [PATCH 129/260] C#: Delete test for Definition.getElement. --- .../dataflow/ssa/SsaDefElement.expected | 277 ------------------ .../dataflow/ssa/SsaDefElement.ql | 4 - 2 files changed, 281 deletions(-) delete mode 100644 csharp/ql/test/library-tests/dataflow/ssa/SsaDefElement.expected delete mode 100644 csharp/ql/test/library-tests/dataflow/ssa/SsaDefElement.ql diff --git a/csharp/ql/test/library-tests/dataflow/ssa/SsaDefElement.expected b/csharp/ql/test/library-tests/dataflow/ssa/SsaDefElement.expected deleted file mode 100644 index b6e2beaae692..000000000000 --- a/csharp/ql/test/library-tests/dataflow/ssa/SsaDefElement.expected +++ /dev/null @@ -1,277 +0,0 @@ -| Capture.cs:10:16:27:9 | SSA def(a) | Capture.cs:10:16:27:9 | Action a = ... | -| Capture.cs:17:17:17:21 | SSA def(y) | Capture.cs:17:17:17:21 | Int32 y = ... | -| Capture.cs:19:20:23:13 | SSA def(b) | Capture.cs:19:20:23:13 | Action b = ... | -| Capture.cs:19:24:23:13 | SSA capture def(y) | Capture.cs:19:24:23:13 | (...) => ... | -| Capture.cs:30:16:30:35 | SSA def(c) | Capture.cs:30:16:30:35 | Action c = ... | -| Capture.cs:52:16:52:43 | SSA def(b) | Capture.cs:52:16:52:43 | Action b = ... | -| Capture.cs:57:57:57:63 | SSA param(strings) | Capture.cs:57:57:57:63 | strings | -| Capture.cs:60:27:60:38 | SSA def(e) | Capture.cs:60:27:60:38 | Func e = ... | -| Capture.cs:65:45:65:51 | SSA param(strings) | Capture.cs:65:45:65:51 | strings | -| Capture.cs:68:32:68:32 | SSA param(s) | Capture.cs:68:32:68:32 | s | -| Capture.cs:68:32:68:49 | SSA capture def(c) | Capture.cs:68:32:68:49 | (...) => ... | -| Capture.cs:69:9:69:62 | SSA capture def(c) | Capture.cs:69:9:69:62 | M | -| Capture.cs:69:25:69:25 | SSA param(s) | Capture.cs:69:25:69:25 | s | -| Capture.cs:73:67:73:73 | SSA param(strings) | Capture.cs:73:67:73:73 | strings | -| Capture.cs:76:63:76:81 | SSA def(e) | Capture.cs:76:63:76:81 | Expression> e = ... | -| Capture.cs:81:28:81:28 | SSA param(i) | Capture.cs:81:28:81:28 | i | -| Capture.cs:81:34:81:36 | SSA def(i) | Capture.cs:81:34:81:36 | ...++ | -| Capture.cs:83:65:83:71 | SSA param(strings) | Capture.cs:83:65:83:71 | strings | -| Capture.cs:86:64:86:73 | SSA def(e) | Capture.cs:86:64:86:73 | Expression> e = ... | -| Capture.cs:86:68:86:73 | SSA capture def(b) | Capture.cs:86:68:86:73 | (...) => ... | -| Capture.cs:92:18:92:18 | SSA param(d) | Capture.cs:92:18:92:18 | d | -| Capture.cs:96:12:100:9 | SSA capture def(y) | Capture.cs:96:12:100:9 | (...) => ... | -| Capture.cs:98:17:98:21 | SSA def(x) | Capture.cs:98:17:98:21 | Int32 x = ... | -| Capture.cs:115:9:119:9 | SSA capture def(a) | Capture.cs:115:9:119:9 | M1 | -| Capture.cs:117:17:117:21 | SSA def(x) | Capture.cs:117:17:117:21 | Int32 x = ... | -| Capture.cs:163:9:166:9 | SSA capture def(g) | Capture.cs:163:9:166:9 | M7 | -| Capture.cs:183:13:186:13 | SSA capture def(i) | Capture.cs:183:13:186:13 | M11 | -| Capture.cs:198:28:198:44 | SSA def(eh) | Capture.cs:198:28:198:44 | MyEventHandler eh = ... | -| Capture.cs:198:33:198:44 | SSA capture def(i) | Capture.cs:198:33:198:44 | (...) => ... | -| Capture.cs:203:28:203:45 | SSA def(eh2) | Capture.cs:203:28:203:45 | MyEventHandler eh2 = ... | -| Capture.cs:203:34:203:45 | SSA capture def(i) | Capture.cs:203:34:203:45 | (...) => ... | -| Capture.cs:210:24:210:59 | SSA def(p) | Capture.cs:210:24:210:59 | Process p = ... | -| Capture.cs:212:30:212:71 | SSA def(exited) | Capture.cs:212:30:212:71 | EventHandler exited = ... | -| Capture.cs:212:39:212:71 | SSA capture def(i) | Capture.cs:212:39:212:71 | (...) => ... | -| Capture.cs:251:13:251:17 | SSA def(j) | Capture.cs:251:13:251:17 | ... = ... | -| Consistency.cs:7:25:7:25 | SSA param(b) | Consistency.cs:7:25:7:25 | b | -| Consistency.cs:15:17:15:21 | SSA def(i) | Consistency.cs:15:17:15:21 | Int32 i = ... | -| Consistency.cs:25:29:25:29 | SSA def(c) | Consistency.cs:25:9:25:30 | call to method Out | -| Consistency.cs:25:29:25:29 | SSA qualifier def(c.Field) | Consistency.cs:25:9:25:30 | call to method Out | -| Consistency.cs:32:9:32:29 | SSA def(c) | Consistency.cs:32:9:32:29 | ... = ... | -| Consistency.cs:44:11:44:11 | SSA def(s) | Consistency.cs:44:11:44:11 | S s | -| Consistency.cs:49:30:49:30 | SSA param(a) | Consistency.cs:49:30:49:30 | a | -| Consistency.cs:49:37:49:37 | SSA param(i) | Consistency.cs:49:37:49:37 | i | -| Consistency.cs:51:20:51:20 | SSA param(a) | Consistency.cs:51:20:51:20 | a | -| Consistency.cs:56:17:56:40 | SSA def(k) | Consistency.cs:56:17:56:40 | Int32 k = ... | -| Consistency.cs:57:9:57:13 | SSA def(k) | Consistency.cs:57:9:57:13 | ... = ... | -| Consistency.cs:58:9:58:13 | SSA def(k) | Consistency.cs:58:9:58:13 | ... = ... | -| DefUse.cs:3:26:3:26 | SSA param(w) | DefUse.cs:3:26:3:26 | w | -| DefUse.cs:5:13:5:17 | SSA def(x) | DefUse.cs:5:13:5:17 | Int32 x = ... | -| DefUse.cs:6:14:6:19 | SSA def(y) | DefUse.cs:6:14:6:19 | Int64 y = ... | -| DefUse.cs:13:13:13:18 | SSA def(y) | DefUse.cs:13:13:13:18 | ... = ... | -| DefUse.cs:18:13:18:18 | SSA def(y) | DefUse.cs:18:13:18:18 | ... = ... | -| DefUse.cs:19:13:19:18 | SSA def(w) | DefUse.cs:19:13:19:18 | ... = ... | -| DefUse.cs:28:13:28:18 | SSA def(y) | DefUse.cs:28:13:28:18 | ... = ... | -| DefUse.cs:29:13:29:18 | SSA def(w) | DefUse.cs:29:13:29:18 | ... = ... | -| DefUse.cs:39:13:39:18 | SSA def(y) | DefUse.cs:39:13:39:18 | ... = ... | -| DefUse.cs:44:13:44:17 | SSA def(z) | DefUse.cs:44:13:44:17 | Int32 z = ... | -| DefUse.cs:47:23:47:23 | SSA def(z) | DefUse.cs:47:9:47:24 | call to method outMethod | -| DefUse.cs:50:23:50:23 | SSA def(z) | DefUse.cs:50:9:50:24 | call to method refMethod | -| DefUse.cs:53:9:53:17 | SSA def(this.Field) | DefUse.cs:53:9:53:17 | ... = ... | -| DefUse.cs:56:9:56:16 | SSA def(this.Prop) | DefUse.cs:56:9:56:16 | ... = ... | -| DefUse.cs:63:9:63:18 | SSA def(this.Field2) | DefUse.cs:63:9:63:18 | ... = ... | -| DefUse.cs:66:9:66:18 | SSA def(this.Field3) | DefUse.cs:66:9:66:18 | ... = ... | -| DefUse.cs:67:19:67:27 | SSA def(tc) | DefUse.cs:67:19:67:27 | TestClass tc = ... | -| DefUse.cs:79:13:79:18 | SSA def(x1) | DefUse.cs:79:13:79:18 | Int32 x1 = ... | -| DefUse.cs:80:30:80:31 | SSA def(x1) | DefUse.cs:80:16:80:32 | call to method refMethod | -| DefUse.cs:83:13:83:18 | SSA def(x2) | DefUse.cs:83:13:83:18 | Int32 x2 = ... | -| DefUse.cs:85:15:85:16 | SSA def(x2) | DefUse.cs:84:9:86:17 | call to method refOutMethod | -| DefUse.cs:89:13:89:18 | SSA def(x3) | DefUse.cs:89:13:89:18 | Int32 x3 = ... | -| DefUse.cs:92:15:92:16 | SSA def(x3) | DefUse.cs:91:9:93:17 | call to method refOutMethod | -| DefUse.cs:93:15:93:16 | SSA def(x4) | DefUse.cs:91:9:93:17 | call to method refOutMethod | -| DefUse.cs:97:13:97:18 | SSA def(x5) | DefUse.cs:97:13:97:18 | Int32 x5 = ... | -| DefUse.cs:101:13:101:23 | SSA def(x5) | DefUse.cs:101:13:101:23 | ... = ... | -| DefUse.cs:104:9:104:15 | SSA def(x5) | DefUse.cs:104:9:104:15 | ... += ... | -| DefUse.cs:114:47:114:52 | SSA def(i) | DefUse.cs:114:47:114:52 | ... = ... | -| DefUse.cs:116:47:116:51 | SSA def(i) | DefUse.cs:116:47:116:51 | ... = ... | -| DefUse.cs:118:45:118:45 | SSA param(i) | DefUse.cs:118:45:118:45 | i | -| DefUse.cs:118:61:118:65 | SSA def(j) | DefUse.cs:118:61:118:65 | ... = ... | -| DefUse.cs:118:68:118:72 | SSA def(i) | DefUse.cs:118:68:118:72 | ... = ... | -| DefUse.cs:128:19:128:19 | SSA param(i) | DefUse.cs:128:19:128:19 | i | -| DefUse.cs:134:22:134:22 | SSA param(d) | DefUse.cs:134:22:134:22 | d | -| DefUse.cs:142:68:142:69 | SSA param(ie) | DefUse.cs:142:68:142:69 | ie | -| DefUse.cs:144:22:144:22 | SSA def(x) | DefUse.cs:144:22:144:22 | String x | -| DefUse.cs:155:9:155:18 | SSA def(this.Field4) | DefUse.cs:155:9:155:18 | ... = ... | -| DefUse.cs:160:10:160:16 | SSA entry def(this.Field4) | DefUse.cs:160:10:160:16 | FieldM2 | -| DefUse.cs:171:23:180:9 | SSA def(a) | DefUse.cs:171:23:180:9 | Action a = ... | -| DefUse.cs:184:9:184:18 | SSA def(this.Field5) | DefUse.cs:184:9:184:18 | ... = ... | -| DefUse.cs:186:9:190:9 | SSA def(a) | DefUse.cs:186:9:190:9 | ... = ... | -| DefUse.cs:188:13:188:22 | SSA def(this.Field5) | DefUse.cs:188:13:188:22 | ... = ... | -| DefUse.cs:191:9:191:11 | SSA call def(this.Field5) | DefUse.cs:191:9:191:11 | delegate call | -| DefaultParam.cs:3:20:3:20 | SSA param(b) | DefaultParam.cs:3:20:3:20 | b | -| DefaultParam.cs:3:30:3:30 | SSA param(s) | DefaultParam.cs:3:30:3:30 | s | -| DefaultParam.cs:3:34:3:35 | SSA param_default(s) | DefaultParam.cs:3:34:3:35 | "" | -| DefaultParam.cs:3:42:3:42 | SSA param(i) | DefaultParam.cs:3:42:3:42 | i | -| DefaultParam.cs:3:42:3:42 | SSA phi(s) | DefaultParam.cs:3:42:3:42 | i | -| DefaultParam.cs:3:46:3:46 | SSA param_default(i) | DefaultParam.cs:3:46:3:46 | 0 | -| DefaultParam.cs:4:5:6:5 | SSA phi(i) | DefaultParam.cs:4:5:6:5 | {...} | -| Example.cs:6:23:6:23 | SSA param(i) | Example.cs:6:23:6:23 | i | -| Example.cs:8:9:8:22 | SSA def(this.Field) | Example.cs:8:9:8:22 | ... = ... | -| Example.cs:11:13:11:30 | SSA def(this.Field) | Example.cs:11:13:11:30 | ... = ... | -| Example.cs:13:13:13:23 | SSA call def(this.Field) | Example.cs:13:13:13:23 | call to method SetField | -| Example.cs:18:16:18:16 | SSA param(p) | Example.cs:18:16:18:16 | p | -| Example.cs:18:24:18:24 | SSA param(b) | Example.cs:18:24:18:24 | b | -| Example.cs:23:13:23:17 | SSA def(p) | Example.cs:23:13:23:17 | ... = ... | -| Fields.cs:16:17:16:17 | SSA entry def(this.xs) | Fields.cs:16:17:16:17 | F | -| Fields.cs:19:9:19:13 | SSA call def(this.xs) | Fields.cs:19:9:19:13 | call to method Upd | -| Fields.cs:20:9:20:14 | SSA def(x) | Fields.cs:20:9:20:14 | ... = ... | -| Fields.cs:22:13:22:17 | SSA call def(this.xs) | Fields.cs:22:13:22:17 | call to method Upd | -| Fields.cs:24:9:24:23 | SSA def(this.xs) | Fields.cs:24:9:24:23 | ... = ... | -| Fields.cs:28:17:28:17 | SSA entry def(Fields.stat) | Fields.cs:28:17:28:17 | G | -| Fields.cs:28:17:28:17 | SSA entry def(this.xs) | Fields.cs:28:17:28:17 | G | -| Fields.cs:30:13:30:28 | SSA def(f) | Fields.cs:30:13:30:28 | Fields f = ... | -| Fields.cs:30:13:30:28 | SSA qualifier def(f.xs) | Fields.cs:30:13:30:28 | Fields f = ... | -| Fields.cs:30:17:30:28 | SSA call def(Fields.stat) | Fields.cs:30:17:30:28 | object creation of type Fields | -| Fields.cs:34:9:34:16 | SSA call def(Fields.stat) | Fields.cs:34:9:34:16 | call to method F | -| Fields.cs:34:9:34:16 | SSA call def(f.xs) | Fields.cs:34:9:34:16 | call to method F | -| Fields.cs:34:9:34:16 | SSA call def(this.xs) | Fields.cs:34:9:34:16 | call to method F | -| Fields.cs:38:9:38:13 | SSA call def(Fields.stat) | Fields.cs:38:9:38:13 | call to method F | -| Fields.cs:38:9:38:13 | SSA call def(f.xs) | Fields.cs:38:9:38:13 | call to method F | -| Fields.cs:38:9:38:13 | SSA call def(this.xs) | Fields.cs:38:9:38:13 | call to method F | -| Fields.cs:42:9:42:23 | SSA def(this.xs) | Fields.cs:42:9:42:23 | ... = ... | -| Fields.cs:45:9:45:25 | SSA def(f.xs) | Fields.cs:45:9:45:25 | ... = ... | -| Fields.cs:47:9:47:14 | SSA def(z) | Fields.cs:47:9:47:14 | ... = ... | -| Fields.cs:49:13:49:28 | SSA def(f) | Fields.cs:49:13:49:28 | ... = ... | -| Fields.cs:49:13:49:28 | SSA qualifier def(f.xs) | Fields.cs:49:13:49:28 | ... = ... | -| Fields.cs:49:17:49:28 | SSA call def(Fields.stat) | Fields.cs:49:17:49:28 | object creation of type Fields | -| Fields.cs:51:9:51:20 | SSA call def(Fields.stat) | Fields.cs:51:9:51:20 | object creation of type Fields | -| Fields.cs:61:17:61:17 | SSA entry def(this.LoopField) | Fields.cs:61:17:61:17 | H | -| Fields.cs:61:17:61:17 | SSA entry def(this.SingleAccessedField) | Fields.cs:61:17:61:17 | H | -| Fields.cs:74:17:74:17 | SSA entry def(this.SingleAccessedField) | Fields.cs:74:17:74:17 | I | -| Fields.cs:77:13:77:45 | SSA def(f) | Fields.cs:77:13:77:45 | Fields f = ... | -| Fields.cs:78:23:78:54 | SSA def(a) | Fields.cs:78:23:78:54 | Action a = ... | -| Fields.cs:78:27:78:54 | SSA capture def(f) | Fields.cs:78:27:78:54 | (...) => ... | -| Fields.cs:79:23:79:35 | SSA def(b) | Fields.cs:79:23:79:35 | Action b = ... | -| Fields.cs:80:9:80:25 | SSA def(f.xs) | Fields.cs:80:9:80:25 | ... = ... | -| Fields.cs:81:9:81:11 | SSA call def(f.xs) | Fields.cs:81:9:81:11 | delegate call | -| Fields.cs:83:9:83:25 | SSA def(f.xs) | Fields.cs:83:9:83:25 | ... = ... | -| Fields.cs:85:9:85:22 | SSA def(this.xs) | Fields.cs:85:9:85:22 | ... = ... | -| Fields.cs:86:9:86:47 | SSA call def(f.xs) | Fields.cs:86:9:86:47 | call to method Select | -| Fields.cs:86:24:86:46 | SSA capture def(a) | Fields.cs:86:24:86:46 | (...) => ... | -| Fields.cs:87:9:87:22 | SSA def(this.xs) | Fields.cs:87:9:87:22 | ... = ... | -| Fields.cs:88:9:88:25 | SSA def(f.xs) | Fields.cs:88:9:88:25 | ... = ... | -| Fields.cs:89:24:89:46 | SSA capture def(b) | Fields.cs:89:24:89:46 | (...) => ... | -| Fields.cs:95:19:95:19 | SSA param(f) | Fields.cs:95:19:95:19 | f | -| Fields.cs:97:9:97:30 | SSA def(f.Field) | Fields.cs:97:9:97:30 | ... = ... | -| Fields.cs:97:9:97:30 | SSA qualifier def(f.Field.Field) | Fields.cs:97:9:97:30 | ... = ... | -| Fields.cs:97:9:97:30 | SSA qualifier def(f.Field.Field.Field) | Fields.cs:97:9:97:30 | ... = ... | -| Fields.cs:97:9:97:30 | SSA qualifier def(f.Field.Field.Field.Field) | Fields.cs:97:9:97:30 | ... = ... | -| Fields.cs:102:9:102:28 | SSA def(this.Field) | Fields.cs:102:9:102:28 | ... = ... | -| Fields.cs:107:33:107:33 | SSA param(f) | Fields.cs:107:33:107:33 | f | -| Fields.cs:109:10:109:10 | SSA entry def(this.Field) | Fields.cs:109:10:109:10 | K | -| Fields.cs:114:9:114:22 | SSA call def(this.Field) | Fields.cs:114:9:114:22 | call to method SetField | -| Fields.cs:114:9:114:22 | SSA call def(this.Field.Field) | Fields.cs:114:9:114:22 | call to method SetField | -| Fields.cs:114:9:114:22 | SSA qualifier def(this.Field.Field.xs) | Fields.cs:114:9:114:22 | call to method SetField | -| MultiImplementationA.cs:5:22:5:22 | SSA param(x) | MultiImplementationA.cs:5:16:5:16 | M | -| MultiImplementationB.cs:3:22:3:22 | SSA param(x) | MultiImplementationA.cs:5:16:5:16 | M | -| OutRef.cs:7:10:7:10 | SSA entry def(this.Field) | OutRef.cs:7:10:7:10 | M | -| OutRef.cs:9:13:9:17 | SSA def(j) | OutRef.cs:9:13:9:17 | Int32 j = ... | -| OutRef.cs:10:25:10:25 | SSA def(i) | OutRef.cs:10:9:10:33 | call to method OutRefM | -| OutRef.cs:10:32:10:32 | SSA def(j) | OutRef.cs:10:9:10:33 | call to method OutRefM | -| OutRef.cs:13:21:13:21 | SSA def(i) | OutRef.cs:13:9:13:33 | call to method OutRefM | -| OutRef.cs:13:28:13:32 | SSA def(this.Field) | OutRef.cs:13:9:13:33 | call to method OutRefM | -| OutRef.cs:16:21:16:25 | SSA def(this.Field) | OutRef.cs:16:9:16:37 | call to method OutRefM | -| OutRef.cs:18:13:18:28 | SSA def(t) | OutRef.cs:18:13:18:28 | OutRef t = ... | -| OutRef.cs:18:13:18:28 | SSA qualifier def(t.Field) | OutRef.cs:18:13:18:28 | OutRef t = ... | -| OutRef.cs:19:21:19:25 | SSA def(this.Field) | OutRef.cs:19:9:19:39 | call to method OutRefM | -| OutRef.cs:19:32:19:38 | SSA def(t.Field) | OutRef.cs:19:9:19:39 | call to method OutRefM | -| OutRef.cs:22:22:22:22 | SSA def(j) | OutRef.cs:22:9:22:30 | call to method OutRefM2 | -| OutRef.cs:24:29:24:29 | SSA def(j) | OutRef.cs:24:9:24:30 | call to method OutRefM3 | -| OutRef.cs:28:37:28:37 | SSA param(j) | OutRef.cs:28:37:28:37 | j | -| OutRef.cs:30:9:30:13 | SSA def(i) | OutRef.cs:30:9:30:13 | ... = ... | -| OutRef.cs:31:9:31:13 | SSA def(j) | OutRef.cs:31:9:31:13 | ... = ... | -| OutRef.cs:34:38:34:38 | SSA param(j) | OutRef.cs:34:38:34:38 | j | -| OutRef.cs:36:9:36:13 | SSA def(i) | OutRef.cs:36:9:36:13 | ... = ... | -| OutRef.cs:39:24:39:24 | SSA param(b) | OutRef.cs:39:24:39:24 | b | -| OutRef.cs:39:35:39:35 | SSA param(j) | OutRef.cs:39:35:39:35 | j | -| OutRef.cs:42:13:42:17 | SSA def(j) | OutRef.cs:42:13:42:17 | ... = ... | -| Patterns.cs:7:16:7:23 | SSA def(o) | Patterns.cs:7:16:7:23 | Object o = ... | -| Patterns.cs:8:18:8:23 | SSA def(i1) | Patterns.cs:8:18:8:23 | Int32 i1 | -| Patterns.cs:12:23:12:31 | SSA def(s1) | Patterns.cs:12:23:12:31 | String s1 | -| Patterns.cs:24:18:24:23 | SSA def(i2) | Patterns.cs:24:18:24:23 | Int32 i2 | -| Patterns.cs:27:18:27:23 | SSA def(i3) | Patterns.cs:27:18:27:23 | Int32 i3 | -| Patterns.cs:30:18:30:26 | SSA def(s2) | Patterns.cs:30:18:30:26 | String s2 | -| Properties.cs:16:17:16:17 | SSA entry def(this.xs) | Properties.cs:16:17:16:17 | F | -| Properties.cs:19:9:19:13 | SSA call def(this.xs) | Properties.cs:19:9:19:13 | call to method Upd | -| Properties.cs:20:9:20:14 | SSA def(x) | Properties.cs:20:9:20:14 | ... = ... | -| Properties.cs:22:13:22:17 | SSA call def(this.xs) | Properties.cs:22:13:22:17 | call to method Upd | -| Properties.cs:24:9:24:23 | SSA def(this.xs) | Properties.cs:24:9:24:23 | ... = ... | -| Properties.cs:28:17:28:17 | SSA entry def(Properties.stat) | Properties.cs:28:17:28:17 | G | -| Properties.cs:28:17:28:17 | SSA entry def(this.xs) | Properties.cs:28:17:28:17 | G | -| Properties.cs:30:13:30:32 | SSA def(f) | Properties.cs:30:13:30:32 | Properties f = ... | -| Properties.cs:30:13:30:32 | SSA qualifier def(f.xs) | Properties.cs:30:13:30:32 | Properties f = ... | -| Properties.cs:30:17:30:32 | SSA call def(Properties.stat) | Properties.cs:30:17:30:32 | object creation of type Properties | -| Properties.cs:34:9:34:16 | SSA call def(Properties.stat) | Properties.cs:34:9:34:16 | call to method F | -| Properties.cs:34:9:34:16 | SSA call def(f.xs) | Properties.cs:34:9:34:16 | call to method F | -| Properties.cs:34:9:34:16 | SSA call def(this.xs) | Properties.cs:34:9:34:16 | call to method F | -| Properties.cs:38:9:38:13 | SSA call def(Properties.stat) | Properties.cs:38:9:38:13 | call to method F | -| Properties.cs:38:9:38:13 | SSA call def(f.xs) | Properties.cs:38:9:38:13 | call to method F | -| Properties.cs:38:9:38:13 | SSA call def(this.xs) | Properties.cs:38:9:38:13 | call to method F | -| Properties.cs:42:9:42:23 | SSA def(this.xs) | Properties.cs:42:9:42:23 | ... = ... | -| Properties.cs:45:9:45:25 | SSA def(f.xs) | Properties.cs:45:9:45:25 | ... = ... | -| Properties.cs:47:9:47:14 | SSA def(z) | Properties.cs:47:9:47:14 | ... = ... | -| Properties.cs:49:13:49:32 | SSA def(f) | Properties.cs:49:13:49:32 | ... = ... | -| Properties.cs:49:13:49:32 | SSA qualifier def(f.xs) | Properties.cs:49:13:49:32 | ... = ... | -| Properties.cs:49:17:49:32 | SSA call def(Properties.stat) | Properties.cs:49:17:49:32 | object creation of type Properties | -| Properties.cs:51:9:51:24 | SSA call def(Properties.stat) | Properties.cs:51:9:51:24 | object creation of type Properties | -| Properties.cs:61:17:61:17 | SSA entry def(this.LoopProp) | Properties.cs:61:17:61:17 | H | -| Properties.cs:61:17:61:17 | SSA entry def(this.SingleAccessedProp) | Properties.cs:61:17:61:17 | H | -| Properties.cs:61:23:61:23 | SSA param(i) | Properties.cs:61:23:61:23 | i | -| Properties.cs:63:16:63:18 | SSA def(i) | Properties.cs:63:16:63:18 | ...-- | -| Properties.cs:70:17:70:17 | SSA entry def(this.SingleAccessedProp) | Properties.cs:70:17:70:17 | I | -| Properties.cs:73:13:73:32 | SSA def(f) | Properties.cs:73:13:73:32 | Properties f = ... | -| Properties.cs:74:23:74:54 | SSA def(a) | Properties.cs:74:23:74:54 | Action a = ... | -| Properties.cs:74:27:74:54 | SSA capture def(f) | Properties.cs:74:27:74:54 | (...) => ... | -| Properties.cs:75:23:75:35 | SSA def(b) | Properties.cs:75:23:75:35 | Action b = ... | -| Properties.cs:76:9:76:25 | SSA def(f.xs) | Properties.cs:76:9:76:25 | ... = ... | -| Properties.cs:77:9:77:11 | SSA call def(f.xs) | Properties.cs:77:9:77:11 | delegate call | -| Properties.cs:79:9:79:25 | SSA def(f.xs) | Properties.cs:79:9:79:25 | ... = ... | -| Properties.cs:81:9:81:22 | SSA def(this.xs) | Properties.cs:81:9:81:22 | ... = ... | -| Properties.cs:82:9:82:47 | SSA call def(f.xs) | Properties.cs:82:9:82:47 | call to method Select | -| Properties.cs:82:24:82:46 | SSA capture def(a) | Properties.cs:82:24:82:46 | (...) => ... | -| Properties.cs:83:9:83:22 | SSA def(this.xs) | Properties.cs:83:9:83:22 | ... = ... | -| Properties.cs:84:9:84:25 | SSA def(f.xs) | Properties.cs:84:9:84:25 | ... = ... | -| Properties.cs:85:24:85:46 | SSA capture def(b) | Properties.cs:85:24:85:46 | (...) => ... | -| Properties.cs:106:37:106:37 | SSA param(p) | Properties.cs:106:37:106:37 | p | -| Properties.cs:108:10:108:10 | SSA entry def(this.Props) | Properties.cs:108:10:108:10 | K | -| Properties.cs:113:9:113:22 | SSA call def(this.Props) | Properties.cs:113:9:113:22 | call to method SetProps | -| Properties.cs:113:9:113:22 | SSA call def(this.Props.Props) | Properties.cs:113:9:113:22 | call to method SetProps | -| Properties.cs:113:9:113:22 | SSA qualifier def(this.Props.Props.xs) | Properties.cs:113:9:113:22 | call to method SetProps | -| Test.cs:5:15:5:20 | SSA param(param1) | Test.cs:5:15:5:20 | param1 | -| Test.cs:5:67:5:72 | SSA param(param2) | Test.cs:5:67:5:72 | param2 | -| Test.cs:7:9:7:17 | SSA def(this.field) | Test.cs:7:9:7:17 | ... = ... | -| Test.cs:8:13:8:17 | SSA def(x) | Test.cs:8:13:8:17 | Int32 x = ... | -| Test.cs:13:13:13:15 | SSA def(x) | Test.cs:13:13:13:15 | ...++ | -| Test.cs:14:13:14:19 | SSA def(y) | Test.cs:14:13:14:19 | ... = ... | -| Test.cs:14:17:14:19 | SSA def(x) | Test.cs:14:17:14:19 | ++... | -| Test.cs:15:13:15:17 | SSA def(z) | Test.cs:15:13:15:17 | ... = ... | -| Test.cs:19:13:19:17 | SSA def(y) | Test.cs:19:13:19:17 | ... = ... | -| Test.cs:20:13:20:18 | SSA def(y) | Test.cs:20:13:20:18 | ... += ... | -| Test.cs:21:13:21:22 | SSA def(this.field) | Test.cs:21:13:21:22 | ... = ... | -| Test.cs:22:13:22:17 | SSA def(z) | Test.cs:22:13:22:17 | ... = ... | -| Test.cs:27:17:27:24 | SSA def(param1) | Test.cs:27:17:27:24 | ...++ | -| Test.cs:31:13:31:18 | SSA def(y) | Test.cs:31:13:31:18 | ... -= ... | -| Test.cs:34:18:34:22 | SSA def(i) | Test.cs:34:18:34:22 | Int32 i = ... | -| Test.cs:34:33:34:35 | SSA def(i) | Test.cs:34:33:34:35 | ...++ | -| Test.cs:36:13:36:18 | SSA def(x) | Test.cs:36:13:36:18 | ... += ... | -| Test.cs:39:22:39:22 | SSA def(w) | Test.cs:39:22:39:22 | Int32 w | -| Test.cs:39:22:39:22 | SSA phi(param1) | Test.cs:39:22:39:22 | Int32 w | -| Test.cs:41:13:41:23 | SSA def(param1) | Test.cs:41:13:41:23 | ... += ... | -| Test.cs:46:10:46:10 | SSA entry def(this.field) | Test.cs:46:10:46:10 | g | -| Test.cs:46:16:46:18 | SSA param(in) | Test.cs:46:16:46:18 | in | -| Test.cs:50:13:50:20 | SSA def(out) | Test.cs:50:13:50:20 | ... = ... | -| Test.cs:54:13:54:20 | SSA def(out) | Test.cs:54:13:54:20 | ... = ... | -| Test.cs:57:9:57:17 | SSA def(this.field) | Test.cs:57:9:57:17 | ... = ... | -| Test.cs:62:16:62:16 | SSA param(x) | Test.cs:62:16:62:16 | x | -| Test.cs:68:45:68:45 | SSA def(e) | Test.cs:68:45:68:45 | DivideByZeroException e | -| Test.cs:76:24:76:25 | SSA param(b1) | Test.cs:76:24:76:25 | b1 | -| Test.cs:76:33:76:34 | SSA param(b2) | Test.cs:76:33:76:34 | b2 | -| Test.cs:76:42:76:43 | SSA param(b3) | Test.cs:76:42:76:43 | b3 | -| Test.cs:76:51:76:52 | SSA param(b4) | Test.cs:76:51:76:52 | b4 | -| Test.cs:76:60:76:61 | SSA param(b5) | Test.cs:76:60:76:61 | b5 | -| Test.cs:76:69:76:70 | SSA param(b6) | Test.cs:76:69:76:70 | b6 | -| Test.cs:78:13:78:17 | SSA def(x) | Test.cs:78:13:78:17 | Int32 x = ... | -| Test.cs:108:13:108:17 | SSA def(x) | Test.cs:108:13:108:17 | ... = ... | -| Tuples.cs:10:9:10:54 | SSA def(b) | Tuples.cs:10:9:10:54 | ... = ... | -| Tuples.cs:10:9:10:54 | SSA def(s) | Tuples.cs:10:9:10:54 | ... = ... | -| Tuples.cs:10:9:10:54 | SSA def(x) | Tuples.cs:10:9:10:54 | ... = ... | -| Tuples.cs:14:9:14:32 | SSA def(b) | Tuples.cs:14:9:14:32 | ... = ... | -| Tuples.cs:14:9:14:32 | SSA def(s) | Tuples.cs:14:9:14:32 | ... = ... | -| Tuples.cs:14:9:14:32 | SSA def(x) | Tuples.cs:14:9:14:32 | ... = ... | -| Tuples.cs:18:40:18:57 | SSA def(tuple) | Tuples.cs:18:40:18:57 | (Int32,(Boolean,String)) tuple = ... | -| Tuples.cs:20:9:20:34 | SSA def(this.Field) | Tuples.cs:20:9:20:34 | ... = ... | -| Tuples.cs:20:9:20:34 | SSA def(this.Property) | Tuples.cs:20:9:20:34 | ... = ... | -| Tuples.cs:23:9:23:37 | SSA def(x) | Tuples.cs:23:9:23:37 | ... = ... | -| Tuples.cs:25:13:25:28 | SSA def(t) | Tuples.cs:25:13:25:28 | Tuples t = ... | -| Tuples.cs:26:9:26:33 | SSA def(t.Field) | Tuples.cs:26:9:26:33 | ... = ... | -| Tuples.cs:26:9:26:33 | SSA def(this.Field) | Tuples.cs:26:9:26:33 | ... = ... | diff --git a/csharp/ql/test/library-tests/dataflow/ssa/SsaDefElement.ql b/csharp/ql/test/library-tests/dataflow/ssa/SsaDefElement.ql deleted file mode 100644 index e404aee77679..000000000000 --- a/csharp/ql/test/library-tests/dataflow/ssa/SsaDefElement.ql +++ /dev/null @@ -1,4 +0,0 @@ -import csharp - -from Ssa::Definition def -select def, def.getElement() From ed6cdfc227f37e6b34d755699ca01aed1ce031d2 Mon Sep 17 00:00:00 2001 From: Anders Schack-Mulligen Date: Fri, 24 Apr 2026 08:47:36 +0200 Subject: [PATCH 130/260] C#: Move isLiveOutRefParameterDefinition to top-level. --- csharp/ql/lib/semmle/code/csharp/dataflow/SSA.qll | 6 +++++- .../code/csharp/dataflow/internal/DataFlowPrivate.qll | 4 ++-- .../ql/lib/semmle/code/csharp/dataflow/internal/SsaImpl.qll | 4 ++++ .../library-tests/dataflow/callablereturnsarg/Common.qll | 2 +- .../dataflow/ssa/IsLiveOutRefParameterDefinition.ql | 4 ++-- 5 files changed, 14 insertions(+), 6 deletions(-) diff --git a/csharp/ql/lib/semmle/code/csharp/dataflow/SSA.qll b/csharp/ql/lib/semmle/code/csharp/dataflow/SSA.qll index 7d8809a700cf..53866c77004d 100644 --- a/csharp/ql/lib/semmle/code/csharp/dataflow/SSA.qll +++ b/csharp/ql/lib/semmle/code/csharp/dataflow/SSA.qll @@ -190,6 +190,8 @@ module Ssa { ) } + predicate isLiveOutRefParameterDefinition = SsaImpl::isLiveOutRefParameterDefinition/2; + /** * A static single assignment (SSA) definition. Either an explicit variable * definition (`ExplicitDefinition`), an implicit variable definition @@ -408,10 +410,12 @@ module Ssa { } /** + * DEPRECATED: Use `isLiveOutRefParameterDefinition(SsaDefinition, Parameter)` instead. + * * Holds if this SSA definition assigns to `out`/`ref` parameter `p`, and the * parameter may remain unchanged throughout the rest of the enclosing callable. */ - final predicate isLiveOutRefParameterDefinition(Parameter p) { + deprecated final predicate isLiveOutRefParameterDefinition(Parameter p) { SsaImpl::isLiveOutRefParameterDefinition(this, p) } diff --git a/csharp/ql/lib/semmle/code/csharp/dataflow/internal/DataFlowPrivate.qll b/csharp/ql/lib/semmle/code/csharp/dataflow/internal/DataFlowPrivate.qll index b6a6d3988740..0f553b6e0361 100644 --- a/csharp/ql/lib/semmle/code/csharp/dataflow/internal/DataFlowPrivate.qll +++ b/csharp/ql/lib/semmle/code/csharp/dataflow/internal/DataFlowPrivate.qll @@ -1244,7 +1244,7 @@ class SsaNode extends NodeImpl, TSsaNode { class SsaDefinitionNode extends SsaNode { override SsaImpl::DataFlowIntegration::SsaDefinitionNode node; - Ssa::Definition getDefinition() { result = node.getDefinition() } + SsaDefinition getDefinition() { result = node.getDefinition() } override ControlFlowNode getControlFlowNodeImpl() { result = this.getDefinition().getControlFlowNode() @@ -1613,7 +1613,7 @@ private module ReturnNodes { OutRefReturnNode() { exists(Parameter p | - this.getDefinition().isLiveOutRefParameterDefinition(p) and + Ssa::isLiveOutRefParameterDefinition(this.getDefinition(), p) and kind.getPosition() = p.getPosition() | p.isOut() and kind instanceof OutReturnKind diff --git a/csharp/ql/lib/semmle/code/csharp/dataflow/internal/SsaImpl.qll b/csharp/ql/lib/semmle/code/csharp/dataflow/internal/SsaImpl.qll index a4d788001a7e..6966152475bc 100644 --- a/csharp/ql/lib/semmle/code/csharp/dataflow/internal/SsaImpl.qll +++ b/csharp/ql/lib/semmle/code/csharp/dataflow/internal/SsaImpl.qll @@ -914,6 +914,10 @@ private module Cached { Impl::uncertainWriteDefinitionInput(def, result) } + /** + * Holds if the SSA definition `def` assigns to `out`/`ref` parameter `p`, and the + * parameter may remain unchanged throughout the rest of the enclosing callable. + */ cached predicate isLiveOutRefParameterDefinition(SsaDefinition def, Parameter p) { p.isOutOrRef() and diff --git a/csharp/ql/test/library-tests/dataflow/callablereturnsarg/Common.qll b/csharp/ql/test/library-tests/dataflow/callablereturnsarg/Common.qll index 3a3a55e42ccc..95a93e24a2ae 100644 --- a/csharp/ql/test/library-tests/dataflow/callablereturnsarg/Common.qll +++ b/csharp/ql/test/library-tests/dataflow/callablereturnsarg/Common.qll @@ -5,7 +5,7 @@ private predicate outRefDef(DataFlow::ExprNode ne, int outRef) { exists(Ssa::ExplicitDefinition def, Parameter outRefParameter | outRefParameter.isOutOrRef() and ne.getExpr() = def.getADefinition().getSource() and - def.isLiveOutRefParameterDefinition(outRefParameter) and + Ssa::isLiveOutRefParameterDefinition(def, outRefParameter) and outRef = outRefParameter.getPosition() ) } diff --git a/csharp/ql/test/library-tests/dataflow/ssa/IsLiveOutRefParameterDefinition.ql b/csharp/ql/test/library-tests/dataflow/ssa/IsLiveOutRefParameterDefinition.ql index ca43b497dd53..130d91fb6fea 100644 --- a/csharp/ql/test/library-tests/dataflow/ssa/IsLiveOutRefParameterDefinition.ql +++ b/csharp/ql/test/library-tests/dataflow/ssa/IsLiveOutRefParameterDefinition.ql @@ -1,7 +1,7 @@ import csharp -from Ssa::SourceVariable v, Ssa::Definition def +from Ssa::SourceVariable v, SsaDefinition def where v = def.getSourceVariable() and - def.isLiveOutRefParameterDefinition(_) + Ssa::isLiveOutRefParameterDefinition(def, _) select v, def From a6c7f27fc12b015dd8cc2baec4d857b2ae2620ad Mon Sep 17 00:00:00 2001 From: Anders Schack-Mulligen Date: Fri, 24 Apr 2026 08:51:25 +0200 Subject: [PATCH 131/260] C#: Deprecate Definition.getEnclosingCallable. --- csharp/ql/lib/semmle/code/csharp/dataflow/SSA.qll | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/csharp/ql/lib/semmle/code/csharp/dataflow/SSA.qll b/csharp/ql/lib/semmle/code/csharp/dataflow/SSA.qll index 53866c77004d..dd07dcb9f28f 100644 --- a/csharp/ql/lib/semmle/code/csharp/dataflow/SSA.qll +++ b/csharp/ql/lib/semmle/code/csharp/dataflow/SSA.qll @@ -404,8 +404,12 @@ module Ssa { result.(ControlFlowElement).getControlFlowNode() = this.getControlFlowNode() } - /** Gets the callable to which this SSA definition belongs. */ - final Callable getEnclosingCallable() { + /** + * DEPRECATED: Use `getSourceVariable().getEnclosingCallable()` instead. + * + * Gets the callable to which this SSA definition belongs. + */ + deprecated final Callable getEnclosingCallable() { result = this.getSourceVariable().getEnclosingCallable() } From dc34b10cb6cc20b39dcb1522d2ecf81b0f91540c Mon Sep 17 00:00:00 2001 From: Anders Schack-Mulligen Date: Fri, 24 Apr 2026 16:04:36 +0200 Subject: [PATCH 132/260] C#: Replace Ssa::ExplicitDefinition with SsaExplicitWrite. --- .../ql/consistency-queries/SsaConsistency.ql | 4 +-- .../ql/lib/semmle/code/csharp/Assignable.qll | 4 +-- .../semmle/code/csharp/controlflow/Guards.qll | 10 ++---- .../semmle/code/csharp/dataflow/Nullness.qll | 16 ++++------ .../lib/semmle/code/csharp/dataflow/SSA.qll | 10 ++++-- .../dataflow/internal/DataFlowPrivate.qll | 11 +++---- .../code/csharp/dataflow/internal/SsaImpl.qll | 8 +++-- .../internal/rangeanalysis/RangeUtils.qll | 2 +- .../rangeanalysis/SignAnalysisSpecific.qll | 32 ++++++------------- .../internal/rangeanalysis/SsaUtils.qll | 14 ++++---- csharp/ql/src/Dead Code/DeadStoreOfLocal.ql | 2 +- .../src/Likely Bugs/Dynamic/BadDynamicCall.ql | 7 ++-- .../ql/test/library-tests/csharp7/DefUse.ql | 7 +--- .../dataflow/callablereturnsarg/Common.qll | 4 +-- .../dataflow/defuse/defUseEquivalence.ql | 6 +++- .../dataflow/ssa-large/countssa.ql | 4 +-- .../dataflow/ssa/BaseSsaConsistency.ql | 8 ++--- .../dataflow/ssa/SsaExplicitDef.ql | 4 +-- 18 files changed, 67 insertions(+), 86 deletions(-) diff --git a/csharp/ql/consistency-queries/SsaConsistency.ql b/csharp/ql/consistency-queries/SsaConsistency.ql index e9c9191b63a1..003e7ddd5e94 100644 --- a/csharp/ql/consistency-queries/SsaConsistency.ql +++ b/csharp/ql/consistency-queries/SsaConsistency.ql @@ -7,8 +7,8 @@ query predicate localDeclWithSsaDef(LocalVariableDeclExpr d) { // Local variables in C# must be initialized before every use, so uninitialized // local variables should not have an SSA definition, as that would imply that // the declaration is live (can reach a use without passing through a definition) - exists(ExplicitDefinition def | - d = def.getADefinition().(AssignableDefinitions::LocalVariableDefinition).getDeclaration() + exists(SsaExplicitWrite def | + d = def.getDefinition().(AssignableDefinitions::LocalVariableDefinition).getDeclaration() | not d = any(ForeachStmt fs).getVariableDeclExpr() and not d = any(SpecificCatchClause scc).getVariableDeclExpr() and diff --git a/csharp/ql/lib/semmle/code/csharp/Assignable.qll b/csharp/ql/lib/semmle/code/csharp/Assignable.qll index 066cdeaed15a..7bd432d48ce4 100644 --- a/csharp/ql/lib/semmle/code/csharp/Assignable.qll +++ b/csharp/ql/lib/semmle/code/csharp/Assignable.qll @@ -500,9 +500,7 @@ class AssignableDefinition extends TAssignableDefinition { */ pragma[nomagic] AssignableRead getAFirstRead() { - exists(Ssa::ExplicitDefinition def | result = Ssa::ssaGetAFirstUse(def) | - this = def.getADefinition() - ) + exists(SsaExplicitWrite def | result = Ssa::ssaGetAFirstUse(def) | this = def.getDefinition()) } /** Gets a textual representation of this assignable definition. */ diff --git a/csharp/ql/lib/semmle/code/csharp/controlflow/Guards.qll b/csharp/ql/lib/semmle/code/csharp/controlflow/Guards.qll index 48adada60d85..168ce6a1e5c8 100644 --- a/csharp/ql/lib/semmle/code/csharp/controlflow/Guards.qll +++ b/csharp/ql/lib/semmle/code/csharp/controlflow/Guards.qll @@ -588,7 +588,7 @@ private SsaDefinition getAnSsaQualifier(Expr e, ControlFlowNode cfn) { private AssignableAccess getATrackedAccess(SsaDefinition def, ControlFlowNode cfn) { result = def.getARead() and cfn = result.getControlFlowNode() or - result = def.(Ssa::ExplicitDefinition).getADefinition().getTargetAccess() and + result = def.(SsaExplicitWrite).getDefinition().getTargetAccess() and cfn = def.getControlFlowNode() } @@ -830,9 +830,7 @@ module Internal { ).getARead() } - private predicate nullDef(Ssa::ExplicitDefinition def) { - nullValueImplied(def.getADefinition().getSource()) - } + private predicate nullDef(SsaExplicitWrite def) { nullValueImplied(def.getValue()) } predicate nonNullValueImplied(Expr e) { nonNullValue(e) @@ -845,9 +843,7 @@ module Internal { ).getARead() } - private predicate nonNullDef(Ssa::ExplicitDefinition def) { - nonNullValueImplied(def.getADefinition().getSource()) - } + private predicate nonNullDef(SsaExplicitWrite def) { nonNullValueImplied(def.getValue()) } /** A callable that always returns a non-`null` value. */ private class NonNullCallable extends Callable { diff --git a/csharp/ql/lib/semmle/code/csharp/dataflow/Nullness.qll b/csharp/ql/lib/semmle/code/csharp/dataflow/Nullness.qll index 95dfcf3f0ec3..662cd5a5d189 100644 --- a/csharp/ql/lib/semmle/code/csharp/dataflow/Nullness.qll +++ b/csharp/ql/lib/semmle/code/csharp/dataflow/Nullness.qll @@ -80,9 +80,7 @@ class AlwaysNullExpr extends Expr { } /** Holds if SSA definition `def` is always `null`. */ -private predicate nullDef(Ssa::ExplicitDefinition def) { - def.getADefinition().getSource() instanceof AlwaysNullExpr -} +private predicate nullDef(SsaExplicitWrite def) { def.getValue() instanceof AlwaysNullExpr } /** An expression that is never `null`. */ class NonNullExpr extends Expr { @@ -108,10 +106,10 @@ class NonNullExpr extends Expr { } /** Holds if SSA definition `def` is never `null`. */ -private predicate nonNullDef(Ssa::ExplicitDefinition def) { - def.getADefinition().getSource() instanceof NonNullExpr +private predicate nonNullDef(SsaExplicitWrite def) { + def.getValue() instanceof NonNullExpr or - exists(AssignableDefinition ad | ad = def.getADefinition() | + exists(AssignableDefinition ad | ad = def.getDefinition() | ad instanceof AssignableDefinitions::PatternDefinition or ad = @@ -191,7 +189,7 @@ private predicate defMaybeNull(SsaDefinition def, ControlFlowNode node, string m not de = any(Ssa::PhiNode phi).getARead() and // Don't use a check as reason if there is a `null` assignment // or argument - not def.(Ssa::ExplicitDefinition).getADefinition().getSource() instanceof MaybeNullExpr and + not def.(SsaExplicitWrite).getValue() instanceof MaybeNullExpr and not isMaybeNullArgument(def, _) ) or @@ -205,7 +203,7 @@ private predicate defMaybeNull(SsaDefinition def, ControlFlowNode node, string m ) or // If the source of a variable is `null` then the variable may be `null` - exists(AssignableDefinition adef | adef = def.(Ssa::ExplicitDefinition).getADefinition() | + exists(AssignableDefinition adef | adef = def.(SsaExplicitWrite).getDefinition() | adef.getSource() = maybeNullExpr(node.asExpr()) and reason = adef.getExpr() and msg = "because of $@ assignment" @@ -336,7 +334,7 @@ class Dereference extends G::DereferenceableExpr { private predicate isAlwaysNull0(SsaDefinition def) { forall(SsaDefinition input | input = getAnUltimateDefinition(def) | - input.(Ssa::ExplicitDefinition).getADefinition().getSource() instanceof AlwaysNullExpr + input.(SsaExplicitWrite).getValue() instanceof AlwaysNullExpr ) and not nonNullDef(def) and this = def.getARead() and diff --git a/csharp/ql/lib/semmle/code/csharp/dataflow/SSA.qll b/csharp/ql/lib/semmle/code/csharp/dataflow/SSA.qll index dd07dcb9f28f..ed75874b8420 100644 --- a/csharp/ql/lib/semmle/code/csharp/dataflow/SSA.qll +++ b/csharp/ql/lib/semmle/code/csharp/dataflow/SSA.qll @@ -428,19 +428,25 @@ module Ssa { } /** + * DEPRECATED: Use `SsaExplicitWrite` instead. + * * An SSA definition that corresponds to an explicit assignable definition. */ - class ExplicitDefinition extends Definition, SsaImpl::WriteDefinition { + deprecated class ExplicitDefinition extends Definition, SsaImpl::WriteDefinition { AssignableDefinition ad; ExplicitDefinition() { SsaImpl::explicitDefinition(this, _, ad) } /** + * DEPRECATED: Use `SsaExplicitWrite.getDefinition()` instead. + * * Gets an underlying assignable definition. The result is always unique, * except for pathological `out`/`ref` assignments like `M(out x, out x)`, * where there may be more than one underlying definition. */ - final AssignableDefinition getADefinition() { result = SsaImpl::getADefinition(this) } + deprecated final AssignableDefinition getADefinition() { + result = SsaImpl::getADefinition(this) + } /** * DEPRECATED. diff --git a/csharp/ql/lib/semmle/code/csharp/dataflow/internal/DataFlowPrivate.qll b/csharp/ql/lib/semmle/code/csharp/dataflow/internal/DataFlowPrivate.qll index 0f553b6e0361..b55b0cbd9349 100644 --- a/csharp/ql/lib/semmle/code/csharp/dataflow/internal/DataFlowPrivate.qll +++ b/csharp/ql/lib/semmle/code/csharp/dataflow/internal/DataFlowPrivate.qll @@ -272,7 +272,7 @@ module VariableCapture { or exists(SsaDefinition def, AssignableDefinition adef | LocalFlow::defAssigns(adef, _, _, e1) and - def.getAnUltimateDefinition().(Ssa::ExplicitDefinition).getADefinition() = adef and + def.getAnUltimateDefinition().(SsaExplicitWrite).getDefinition() = adef and def.getARead().getControlFlowNode() = e2 ) } @@ -600,8 +600,8 @@ module LocalFlow { or ThisFlow::adjacentThisRefs(nodeFrom.(PostUpdateNode).getPreUpdateNode(), nodeTo) or - exists(AssignableDefinition def, ControlFlowNode cfn, Ssa::ExplicitDefinition ssaDef | - ssaDef.getADefinition() = def and + exists(AssignableDefinition def, ControlFlowNode cfn, SsaExplicitWrite ssaDef | + ssaDef.getDefinition() = def and ssaDef.getControlFlowNode() = cfn and nodeFrom = TAssignableDefinitionNode(def, cfn) and nodeTo.(SsaDefinitionNode).getDefinition() = ssaDef @@ -2220,12 +2220,11 @@ private predicate readContentStep(Node node1, Content c, Node node2) { c instanceof ElementContent or exists( - ForeachStmt fs, Ssa::ExplicitDefinition def, - AssignableDefinitions::LocalVariableDefinition defTo + ForeachStmt fs, SsaExplicitWrite def, AssignableDefinitions::LocalVariableDefinition defTo | node1.asExpr() = fs.getIterableExpr() and defTo.getDeclaration() = fs.getVariableDeclExpr() and - def.getADefinition() = defTo and + def.getDefinition() = defTo and node2.(SsaDefinitionNode).getDefinition() = def and c instanceof ElementContent ) diff --git a/csharp/ql/lib/semmle/code/csharp/dataflow/internal/SsaImpl.qll b/csharp/ql/lib/semmle/code/csharp/dataflow/internal/SsaImpl.qll index 6966152475bc..89c7276a1a29 100644 --- a/csharp/ql/lib/semmle/code/csharp/dataflow/internal/SsaImpl.qll +++ b/csharp/ql/lib/semmle/code/csharp/dataflow/internal/SsaImpl.qll @@ -825,7 +825,7 @@ private module Cached { } cached - AssignableDefinition getADefinition(Ssa::ExplicitDefinition def) { + deprecated AssignableDefinition getADefinition(Ssa::ExplicitDefinition def) { exists(Ssa::SourceVariable v, AssignableDefinition ad | explicitDefinition(def, v, ad) | result = ad or result = getASameOutRefDefAfter(v, ad) @@ -858,7 +858,9 @@ private module Cached { } cached - predicate explicitDefinition(WriteDefinition def, Ssa::SourceVariable v, AssignableDefinition ad) { + deprecated predicate explicitDefinition( + WriteDefinition def, Ssa::SourceVariable v, AssignableDefinition ad + ) { exists(BasicBlock bb, int i | def.definesAt(v, bb, i) and variableDefinition(bb, i, v, ad) @@ -1023,7 +1025,7 @@ private module DataFlowIntegrationInput implements Impl::DataFlowIntegrationInpu * as we, conservatively, consider such definitions to be certain. */ predicate allowFlowIntoUncertainDef(UncertainWriteDefinition def) { - def instanceof Ssa::ExplicitDefinition + def instanceof SsaExplicitWrite or def = any(Ssa::ImplicitQualifierDefinition qdef | diff --git a/csharp/ql/lib/semmle/code/csharp/dataflow/internal/rangeanalysis/RangeUtils.qll b/csharp/ql/lib/semmle/code/csharp/dataflow/internal/rangeanalysis/RangeUtils.qll index fafb85440a27..b85f68883ab6 100644 --- a/csharp/ql/lib/semmle/code/csharp/dataflow/internal/rangeanalysis/RangeUtils.qll +++ b/csharp/ql/lib/semmle/code/csharp/dataflow/internal/rangeanalysis/RangeUtils.qll @@ -19,7 +19,7 @@ private module Impl { } /** Holds if SSA definition `def` equals `e + delta`. */ - predicate ssaUpdateStep(ExplicitDefinition def, ExprNode e, int delta) { + predicate ssaUpdateStep(SsaExplicitWrite def, ExprNode e, int delta) { exists(ControlFlowNode cfn | cfn = def.getControlFlowNode() | e = cfn.(ExprNode::Assignment).getRightOperand() and delta = 0 and diff --git a/csharp/ql/lib/semmle/code/csharp/dataflow/internal/rangeanalysis/SignAnalysisSpecific.qll b/csharp/ql/lib/semmle/code/csharp/dataflow/internal/rangeanalysis/SignAnalysisSpecific.qll index 55b3ac31aa3e..96d6b2b979a4 100644 --- a/csharp/ql/lib/semmle/code/csharp/dataflow/internal/rangeanalysis/SignAnalysisSpecific.qll +++ b/csharp/ql/lib/semmle/code/csharp/dataflow/internal/rangeanalysis/SignAnalysisSpecific.qll @@ -35,7 +35,7 @@ module Private { class Expr = CS::ControlFlowNodes::ExprNode; - class VariableUpdate = CS::Ssa::ExplicitDefinition; + class VariableUpdate = CS::SsaExplicitWrite; class Field = CS::Field; @@ -122,37 +122,25 @@ private module Impl { } /** Returns the underlying variable update of the explicit SSA variable `v`. */ - Ssa::ExplicitDefinition getExplicitSsaAssignment(Ssa::ExplicitDefinition v) { result = v } + SsaExplicitWrite getExplicitSsaAssignment(SsaExplicitWrite v) { result = v } /** Returns the assignment of the variable update `def`. */ - ExprNode getExprFromSsaAssignment(Ssa::ExplicitDefinition def) { - exists(AssignableDefinition adef | - adef = def.getADefinition() and - hasChild(adef.getExpr(), adef.getSource(), def.getControlFlowNode(), result) - ) - or - exists(AssignableDefinitions::AssignOperationDefinition adef | - adef = def.getADefinition() and - result.getExpr() = adef.getSource() - ) - } + ExprNode getExprFromSsaAssignment(SsaExplicitWrite def) { result.getExpr() = def.getValue() } /** Holds if `def` can have any sign. */ - predicate explicitSsaDefWithAnySign(Ssa::ExplicitDefinition def) { - not exists(def.getADefinition().getSource()) and - not def.getElement() instanceof MutatorOperation + predicate explicitSsaDefWithAnySign(SsaExplicitWrite def) { + not exists(def.getValue()) and + not def.getDefiningExpr() instanceof MutatorOperation } /** Returns the operand of the operation if `def` is a decrement. */ - ExprNode getDecrementOperand(Ssa::ExplicitDefinition def) { - hasChild(def.getElement(), def.getElement().(DecrementOperation).getOperand(), - def.getControlFlowNode(), result) + ExprNode getDecrementOperand(SsaExplicitWrite def) { + result.getExpr() = def.getDefiningExpr().(DecrementOperation).getOperand() } /** Returns the operand of the operation if `def` is an increment. */ - ExprNode getIncrementOperand(Ssa::ExplicitDefinition def) { - hasChild(def.getElement(), def.getElement().(IncrementOperation).getOperand(), - def.getControlFlowNode(), result) + ExprNode getIncrementOperand(SsaExplicitWrite def) { + result.getExpr() = def.getDefiningExpr().(IncrementOperation).getOperand() } /** Gets the variable underlying the implicit SSA variable `def`. */ diff --git a/csharp/ql/lib/semmle/code/csharp/dataflow/internal/rangeanalysis/SsaUtils.qll b/csharp/ql/lib/semmle/code/csharp/dataflow/internal/rangeanalysis/SsaUtils.qll index 5681976a378c..33afe07dae33 100644 --- a/csharp/ql/lib/semmle/code/csharp/dataflow/internal/rangeanalysis/SsaUtils.qll +++ b/csharp/ql/lib/semmle/code/csharp/dataflow/internal/rangeanalysis/SsaUtils.qll @@ -17,9 +17,9 @@ class SsaVariable extends SsaDefinition { /** Gets a node that reads `src` via an SSA explicit definition. */ ExprNode getAnExplicitDefinitionRead(ExprNode src) { - exists(ExplicitDefinition def | + exists(SsaExplicitWrite def | def.getARead().getControlFlowNode() = result and - hasChild(def.getElement(), def.getADefinition().getSource(), def.getControlFlowNode(), src) + hasChild(def.getDefiningExpr(), def.getValue(), def.getControlFlowNode(), src) ) } @@ -45,15 +45,15 @@ ExprNode ssaRead(SsaDefinition v, int delta) { delta = d1 + c.getIntValue() ) or - v.(ExplicitDefinition).getControlFlowNode().(ExprNode::PreIncrExpr) = result and delta = 0 + v.(SsaExplicitWrite).getControlFlowNode().(ExprNode::PreIncrExpr) = result and delta = 0 or - v.(ExplicitDefinition).getControlFlowNode().(ExprNode::PreDecrExpr) = result and delta = 0 + v.(SsaExplicitWrite).getControlFlowNode().(ExprNode::PreDecrExpr) = result and delta = 0 or - v.(ExplicitDefinition).getControlFlowNode().(ExprNode::PostIncrExpr) = result and delta = 1 // x++ === ++x - 1 + v.(SsaExplicitWrite).getControlFlowNode().(ExprNode::PostIncrExpr) = result and delta = 1 // x++ === ++x - 1 or - v.(ExplicitDefinition).getControlFlowNode().(ExprNode::PostDecrExpr) = result and delta = -1 // x-- === --x + 1 + v.(SsaExplicitWrite).getControlFlowNode().(ExprNode::PostDecrExpr) = result and delta = -1 // x-- === --x + 1 or - v.(ExplicitDefinition).getControlFlowNode().(ExprNode::Assignment) = result and delta = 0 + v.(SsaExplicitWrite).getControlFlowNode().(ExprNode::Assignment) = result and delta = 0 or result.(ExprNode::AssignExpr).getRightOperand() = ssaRead(v, delta) } diff --git a/csharp/ql/src/Dead Code/DeadStoreOfLocal.ql b/csharp/ql/src/Dead Code/DeadStoreOfLocal.ql index 12baac99c78d..cf57707608b4 100644 --- a/csharp/ql/src/Dead Code/DeadStoreOfLocal.ql +++ b/csharp/ql/src/Dead Code/DeadStoreOfLocal.ql @@ -92,7 +92,7 @@ class RelevantDefinition extends AssignableDefinition { private predicate isMaybeLive() { exists(LocalVariable v | v = this.getTarget() | // SSA definitions are only created for live variables - this = any(Ssa::ExplicitDefinition ssaDef).getADefinition() + this = any(SsaExplicitWrite ssaDef).getDefinition() or mayEscape(v) or diff --git a/csharp/ql/src/Likely Bugs/Dynamic/BadDynamicCall.ql b/csharp/ql/src/Likely Bugs/Dynamic/BadDynamicCall.ql index 4d68f6ee6282..afb44727e34f 100644 --- a/csharp/ql/src/Likely Bugs/Dynamic/BadDynamicCall.ql +++ b/csharp/ql/src/Likely Bugs/Dynamic/BadDynamicCall.ql @@ -36,17 +36,16 @@ abstract class BadDynamicCall extends DynamicExpr { } private Type possibleTypeForRelevantSource(Variable v, int i, Expr source) { - exists(AssignableRead read, SsaDefinition ssaDef, Ssa::ExplicitDefinition ultimateSsaDef | + exists(AssignableRead read, SsaDefinition ssaDef, SsaExplicitWrite ultimateSsaDef | read = this.getARelevantVariableAccess(i) and v = read.getTarget() and result = source.getType() and read = ssaDef.getARead() and ultimateSsaDef = ssaDef.getAnUltimateDefinition() | - ultimateSsaDef.getADefinition() = - any(AssignableDefinition def | source = def.getSource().stripImplicit()) + ultimateSsaDef.getValue().stripImplicit() = source or - ultimateSsaDef.getADefinition() = + ultimateSsaDef.getDefinition() = any(AssignableDefinitions::ImplicitParameterDefinition p | source = p.getParameter().getAnAssignedValue().stripImplicit() ) diff --git a/csharp/ql/test/library-tests/csharp7/DefUse.ql b/csharp/ql/test/library-tests/csharp7/DefUse.ql index e696307be28c..ccdd4db01573 100644 --- a/csharp/ql/test/library-tests/csharp7/DefUse.ql +++ b/csharp/ql/test/library-tests/csharp7/DefUse.ql @@ -3,11 +3,6 @@ import csharp from AssignableDefinition def, AssignableRead read, SsaDefinition ult, SsaDefinition ssaDef where ssaDef.getAnUltimateDefinition() = ult and - ( - ult.(Ssa::ExplicitDefinition).getADefinition() = def - or - ult.(Ssa::ParameterDefinition).getParameter() = - def.(AssignableDefinitions::ImplicitParameterDefinition).getParameter() - ) and + ult.(SsaExplicitWrite).getDefinition() = def and read = ssaDef.getARead() select def, read diff --git a/csharp/ql/test/library-tests/dataflow/callablereturnsarg/Common.qll b/csharp/ql/test/library-tests/dataflow/callablereturnsarg/Common.qll index 95a93e24a2ae..2af01c723333 100644 --- a/csharp/ql/test/library-tests/dataflow/callablereturnsarg/Common.qll +++ b/csharp/ql/test/library-tests/dataflow/callablereturnsarg/Common.qll @@ -2,9 +2,9 @@ import csharp private import semmle.code.csharp.controlflow.Guards private predicate outRefDef(DataFlow::ExprNode ne, int outRef) { - exists(Ssa::ExplicitDefinition def, Parameter outRefParameter | + exists(SsaExplicitWrite def, Parameter outRefParameter | outRefParameter.isOutOrRef() and - ne.getExpr() = def.getADefinition().getSource() and + ne.getExpr() = def.getValue() and Ssa::isLiveOutRefParameterDefinition(def, outRefParameter) and outRef = outRefParameter.getPosition() ) diff --git a/csharp/ql/test/library-tests/dataflow/defuse/defUseEquivalence.ql b/csharp/ql/test/library-tests/dataflow/defuse/defUseEquivalence.ql index 800ae9717598..1897c97bd652 100644 --- a/csharp/ql/test/library-tests/dataflow/defuse/defUseEquivalence.ql +++ b/csharp/ql/test/library-tests/dataflow/defuse/defUseEquivalence.ql @@ -12,6 +12,10 @@ predicate defReaches( def.(AssignableDefinitions::ImplicitParameterDefinition).getParameter().getControlFlowNode() ].getASuccessor() or + def.getTarget() = v and + cfn = + def.(AssignableDefinitions::ImplicitParameterDefinition).getEnclosingCallable().getEntryPoint() + or exists(ControlFlowNode mid | defReaches(def, v, mid) | not mid = any(AssignableDefinition ad | ad.getTarget() = v and ad.isCertain()) @@ -30,7 +34,7 @@ predicate defUsePair(AssignableDefinition def, AssignableRead read) { private LocalScopeVariableRead getAReachableUncertainRead(AssignableDefinition def) { exists(SsaDefinition ssaDef | - def = ssaDef.getAnUltimateDefinition().(Ssa::ExplicitDefinition).getADefinition() + def = ssaDef.getAnUltimateDefinition().(SsaExplicitWrite).getDefinition() | result = ssaDef.getARead() ) diff --git a/csharp/ql/test/library-tests/dataflow/ssa-large/countssa.ql b/csharp/ql/test/library-tests/dataflow/ssa-large/countssa.ql index 94218ca6c7e5..e9d2f74ff27b 100644 --- a/csharp/ql/test/library-tests/dataflow/ssa-large/countssa.ql +++ b/csharp/ql/test/library-tests/dataflow/ssa-large/countssa.ql @@ -2,6 +2,6 @@ import csharp from int uses, int live where - uses = strictcount(Ssa::ExplicitDefinition ssa, AssignableRead read | read = ssa.getARead()) and - live = strictcount(Ssa::ExplicitDefinition ssa, BasicBlock bb | ssa.isLiveAtEndOfBlock(bb)) + uses = strictcount(SsaExplicitWrite ssa, AssignableRead read | read = ssa.getARead()) and + live = strictcount(SsaExplicitWrite ssa, BasicBlock bb | ssa.isLiveAtEndOfBlock(bb)) select uses, live diff --git a/csharp/ql/test/library-tests/dataflow/ssa/BaseSsaConsistency.ql b/csharp/ql/test/library-tests/dataflow/ssa/BaseSsaConsistency.ql index d68e39fb3966..2634ef14a37b 100644 --- a/csharp/ql/test/library-tests/dataflow/ssa/BaseSsaConsistency.ql +++ b/csharp/ql/test/library-tests/dataflow/ssa/BaseSsaConsistency.ql @@ -8,12 +8,8 @@ where ar = ssaDef.getARead() and def = ssaDef.getDefinition() and v = def.getTarget() and - not exists(Ssa::ExplicitDefinition edef | - edef.getADefinition() = def and - edef.getARead() = ar - ) and - not exists(Ssa::ParameterDefinition edef | - edef.getParameter() = def.(AssignableDefinitions::ImplicitParameterDefinition).getParameter() and + not exists(SsaExplicitWrite edef | + edef.getDefinition() = def and edef.getARead() = ar ) select ar, def diff --git a/csharp/ql/test/library-tests/dataflow/ssa/SsaExplicitDef.ql b/csharp/ql/test/library-tests/dataflow/ssa/SsaExplicitDef.ql index bf4c70ee6735..4e37c24b0cc5 100644 --- a/csharp/ql/test/library-tests/dataflow/ssa/SsaExplicitDef.ql +++ b/csharp/ql/test/library-tests/dataflow/ssa/SsaExplicitDef.ql @@ -1,5 +1,5 @@ import csharp -from Ssa::SourceVariable v, Ssa::ExplicitDefinition def +from Ssa::SourceVariable v, SsaExplicitWrite def where v = def.getSourceVariable() -select v, def, def.getADefinition() +select v, def, def.getDefinition() From 31e06bc0a928783833e82c07bd8a835e4b69c621 Mon Sep 17 00:00:00 2001 From: Anders Schack-Mulligen Date: Mon, 27 Apr 2026 14:56:52 +0200 Subject: [PATCH 133/260] C#: Remove SSA location overrides. --- .../lib/semmle/code/csharp/dataflow/SSA.qll | 21 ------------------- 1 file changed, 21 deletions(-) diff --git a/csharp/ql/lib/semmle/code/csharp/dataflow/SSA.qll b/csharp/ql/lib/semmle/code/csharp/dataflow/SSA.qll index ed75874b8420..39cbf602650b 100644 --- a/csharp/ql/lib/semmle/code/csharp/dataflow/SSA.qll +++ b/csharp/ql/lib/semmle/code/csharp/dataflow/SSA.qll @@ -422,9 +422,6 @@ module Ssa { deprecated final predicate isLiveOutRefParameterDefinition(Parameter p) { SsaImpl::isLiveOutRefParameterDefinition(this, p) } - - /** Gets the location of this SSA definition. */ - override Location getLocation() { none() } } /** @@ -509,8 +506,6 @@ module Ssa { override Element getElement() { result = ad.getElement() } override string toString() { result = "SSA def(" + this.getSourceVariable() + ")" } - - override Location getLocation() { result = ad.getLocation() } } /** @@ -556,8 +551,6 @@ module Ssa { then result = "SSA capture def(" + this.getSourceVariable() + ")" else result = "SSA entry def(" + this.getSourceVariable() + ")" } - - override Location getLocation() { result = this.getCallable().getLocation() } } deprecated class ImplicitParameterDefinition = ParameterDefinition; @@ -625,8 +618,6 @@ module Ssa { } override string toString() { result = "SSA call def(" + this.getSourceVariable() + ")" } - - override Location getLocation() { result = this.getCall().getLocation() } } /** @@ -649,8 +640,6 @@ module Ssa { final Definition getQualifierDefinition() { result = q } override string toString() { result = "SSA qualifier def(" + this.getSourceVariable() + ")" } - - override Location getLocation() { result = this.getQualifierDefinition().getLocation() } } /** @@ -689,16 +678,6 @@ module Ssa { } override string toString() { result = "SSA phi(" + this.getSourceVariable() + ")" } - - /* - * The location of a phi node is the same as the location of the first node - * in the basic block in which it is defined. - * - * Strictly speaking, the node is *before* the first node, but such a location - * does not exist in the source program. - */ - - override Location getLocation() { result = this.getBasicBlock().getFirstNode().getLocation() } } /** From 936f0c650c4efe35ba78005cdfc0308333c13129 Mon Sep 17 00:00:00 2001 From: MarkLee131 Date: Thu, 30 Apr 2026 19:06:04 +0800 Subject: [PATCH 134/260] Address review comments on path-injection[read] sub-kind - shared/mad/codeql/mad/ModelValidation.qll: shorten the comment for `path-injection[%]` to `// Java-only currently`, matching the style of other language-scoped entries and dropping API examples and the java/zipslip reference. - java/ql/lib/semmle/code/java/security/ZipSlipQuery.qll: replace the `File.exists` example in the QLDoc with `FileReader`, since `File.exists` is still labelled plain `path-injection`, not `path-injection[read]`. --- java/ql/lib/semmle/code/java/security/ZipSlipQuery.qll | 4 ++-- shared/mad/codeql/mad/ModelValidation.qll | 5 +---- 2 files changed, 3 insertions(+), 6 deletions(-) diff --git a/java/ql/lib/semmle/code/java/security/ZipSlipQuery.qll b/java/ql/lib/semmle/code/java/security/ZipSlipQuery.qll index 84a94d87dcea..b7bcbcceeb96 100644 --- a/java/ql/lib/semmle/code/java/security/ZipSlipQuery.qll +++ b/java/ql/lib/semmle/code/java/security/ZipSlipQuery.qll @@ -55,8 +55,8 @@ module ZipSlipFlow = TaintTracking::Global; * * This deliberately selects only the `path-injection` sink kind and excludes * `path-injection[read]`: Zip Slip is an archive-extraction vulnerability, so - * read-only path sinks (e.g. `ClassLoader.getResource`, `FileInputStream`, - * `File.exists`) are outside the threat model. + * read-only path sinks (for example `ClassLoader.getResource`, + * `FileInputStream`, and `FileReader`) are outside the threat model. */ private class FileCreationSink extends DataFlow::Node { FileCreationSink() { sinkNode(this, "path-injection") } diff --git a/shared/mad/codeql/mad/ModelValidation.qll b/shared/mad/codeql/mad/ModelValidation.qll index b5f3e078a527..3f11d3ce0896 100644 --- a/shared/mad/codeql/mad/ModelValidation.qll +++ b/shared/mad/codeql/mad/ModelValidation.qll @@ -54,10 +54,7 @@ module KindValidation { this.matches([ // shared "credentials-%", "encryption-%", "qltest%", "test-%", "regex-use%", - // shared: path-injection[read] identifies sinks that only read from a path - // (e.g. ClassLoader.getResource, FileInputStream, File.exists). Queries such - // as java/zipslip that only care about write/extraction deliberately exclude - // this sub-kind. + // Java-only currently "path-injection[%]", // Swift-only currently, but may be shared in the future "%string-%length", "weak-hash-input-%", From 4042bbec5bb604d325bc0e9e1a189fdada012b90 Mon Sep 17 00:00:00 2001 From: Tom Hvitved Date: Wed, 29 Apr 2026 11:11:44 +0200 Subject: [PATCH 135/260] Swift: Add type inference tests --- .../type-inference/type-inference.expected | 0 .../type-inference/type-inference.ql | 91 ++ .../type-inference/typeinference.swift | 1372 +++++++++++++++++ 3 files changed, 1463 insertions(+) create mode 100644 swift/ql/test/library-tests/type-inference/type-inference.expected create mode 100644 swift/ql/test/library-tests/type-inference/type-inference.ql create mode 100644 swift/ql/test/library-tests/type-inference/typeinference.swift diff --git a/swift/ql/test/library-tests/type-inference/type-inference.expected b/swift/ql/test/library-tests/type-inference/type-inference.expected new file mode 100644 index 000000000000..e69de29bb2d1 diff --git a/swift/ql/test/library-tests/type-inference/type-inference.ql b/swift/ql/test/library-tests/type-inference/type-inference.ql new file mode 100644 index 000000000000..cd51687e8af9 --- /dev/null +++ b/swift/ql/test/library-tests/type-inference/type-inference.ql @@ -0,0 +1,91 @@ +import swift +import TestUtils +import utils.test.InlineExpectationsTest + +pragma[nomagic] +private predicate declHasPotentialCommentAt(Decl d, string path, int line) { + d.getLocation().hasLocationInfo(path, line + 1, _, _, _) +} + +pragma[nomagic] +private SingleLineComment getPrecedingComment(Decl d) { + exists(string path, int line | + declHasPotentialCommentAt(d, path, line) and + result.getLocation().hasLocationInfo(path, line, _, _, _) + ) +} + +module ResolveTest implements TestSig { + string getARelevantTag() { result = "target" } + + private predicate declHasName(Decl c, string value) { + exists(string s | + s = getPrecedingComment(c).getText() and + value = s.substring(3, s.length() - 1) + ) + or + not exists(getPrecedingComment(c)) and + value = [c.(EnumElementDecl).getName(), c.(Function).getName()] + } + + predicate hasActualResult(Location location, string element, string tag, string value) { + exists(AstNode source, Decl target | + location = source.getLocation() and + element = source.toString() and + target = + [ + source.(CallExpr).getStaticTarget().(Decl), source.(MethodLookupExpr).getMember(), + source.(EnumElementPattern).getElement() + ] and + declHasName(target, value) and + tag = "target" and + toBeTested(source) and + toBeTested(target) + ) + } +} + +private Type getTypeAt(Type t, string path) { + path = "" and + result = t.getUnderlyingType() + or + exists(BoundGenericType b, GenericTypeDecl decl | + b = t and + decl = b.getDeclaration() + | + exists(string prefix, string suffix, int i | + result = getTypeAt(b.getArgType(i).getUnderlyingType(), suffix) and + prefix = decl.getName() + "<" + decl.getGenericTypeParam(i).getName() + ">" and + if suffix = "" then path = prefix else path = prefix + "." + suffix + ) + ) +} + +module TypeTest implements TestSig { + string getARelevantTag() { result = ["type", "certainType"] } + + predicate tagIsOptional(string expectedTag) { expectedTag = "type" } + + predicate hasActualResult(Location location, string element, string tag, string value) { none() } + + predicate hasOptionalResult(Location location, string element, string tag, string value) { + exists(Locatable e, string path, Type t, Type t0 | + t = [e.(Expr).getType(), e.(VarDecl).getType()] and + tag = "type" and + location = e.getLocation() and + t0 = getTypeAt(t, path) and + exists(string name, string at | + name = t0.(AnyGenericType).getDeclaration().getName() + or + not t0 instanceof AnyGenericType and + name = t0.getName() + | + (if path = "" then at = "" else at = "@" + path) and + value = element + at + ":" + name and + element = e.toString() + ) + ) + } +} + +import MakeTest> diff --git a/swift/ql/test/library-tests/type-inference/typeinference.swift b/swift/ql/test/library-tests/type-inference/typeinference.swift new file mode 100644 index 000000000000..0e718fa9b927 --- /dev/null +++ b/swift/ql/test/library-tests/type-inference/typeinference.swift @@ -0,0 +1,1372 @@ +var topLevelDecl : Int = 0 +0 +topLevelDecl + 1 // $ type=topLevelDecl:Int + +class C { + var myInt : Int + // C.init + init(n: Int) { + myInt = n // $ type=n:Int + } + + // C.getMyInt + func getMyInt() -> Int { + return myInt // $ type=.myInt:Int + } +} + +class Derived : C { + // Derived.init + init() { + super.init(n: 0) // $ type=super:C target=C.init + } + + // Derived.callGetMyInt + func callGetMyInt() -> Int { + let x = getMyInt(); // $ type=x:Int target=C.getMyInt + return x + } +} + +class Generic { + var value : T + // Generic.init + init(v: T) { + value = v // $ type=v:T + } + + // Generic.getValue + func getValue() -> T { + return value // $ type=.value:T + } +} + +class GenericDerived : Generic { + // GenericDerived.init + init() { + super.init(v: 0) // $ type=super@Generic:Int target=Generic.init + } +} + +func testGeneric() { + let g = Generic(v: 42) // $ type=g@Generic:Int target=Generic.init + let x = g.getValue() // $ type=x:Int target=Generic.getValue + + let gd = GenericDerived() // $ type=gd:GenericDerived target=GenericDerived.init + let y = gd.getValue() // $ type=y:Int target=Generic.getValue +} + +// --- Protocols and protocol conformance --- + +protocol Shape { + // Shape.area + func area() -> Double +} + +struct Circle : Shape { + var radius : Double + + // Circle.init + init(radius: Double) { + self.radius = radius // $ type=radius:Double + } + + // Circle.area + func area() -> Double { + return 3.14159 * radius * radius // $ type=.radius:Double + } +} + +struct Rectangle : Shape { + var width : Double + var height : Double + + // Rectangle.init + init(width: Double, height: Double) { + self.width = width // $ type=width:Double + self.height = height // $ type=height:Double + } + + // Rectangle.area + func area() -> Double { + return width * height // $ type=.width:Double + } +} + +func testProtocol() { + let c = Circle(radius: 5.0) // $ type=c:Circle target=Circle.init + let a1 = c.area() // $ type=a1:Double target=Circle.area + + let r = Rectangle(width: 3.0, height: 4.0) // $ type=r:Rectangle target=Rectangle.init + let a2 = r.area() // $ type=a2:Double target=Rectangle.area +} + +// --- Extensions --- + +extension C { + // C.doubled + func doubled() -> Int { + return myInt * 2 // $ type=.myInt:Int + } +} + +func testExtension() { + let obj = C(n: 10) // $ target=C.init + let d = obj.doubled() // $ type=d:Int target=C.doubled +} + +// --- Static methods --- + +class MathUtils { + // MathUtils.square + static func square(x: Int) -> Int { + return x * x // $ type=x:Int + } + + // MathUtils.cube + class func cube(x: Int) -> Int { + return x * x * x // $ type=x:Int + } +} + +func testStaticMethods() { + let s = MathUtils.square(x: 4) // $ type=s:Int target=MathUtils.square + let cu = MathUtils.cube(x: 3) // $ type=cu:Int target=MathUtils.cube +} + +// --- Overloading --- + +class Overloaded { + // Overloaded.process(_:Int) + func process(_ x: Int) -> Int { + return x + 1 // $ type=x:Int + } + + // Overloaded.process(_:String) + func process(_ s: String) -> String { + return s // $ type=s:String + } +} + +func testOverloading() { + let o = Overloaded() // $ target=init() + let r1 = o.process(42) // $ type=r1:Int target=Overloaded.process(_:Int) + let r2 = o.process("hello") // $ type=r2:String target=Overloaded.process(_:String) +} + +// --- Generic functions --- + +// identity +func identity(_ x: T) -> T { + return x // $ type=x:T +} + +// makePair +func makePair(_ a: A, _ b: B) -> (A, B) { + return (a, b) // $ type=a:A +} + +func testGenericFunctions() { + let i = identity(42) // $ type=i:Int target=identity + let s = identity("hello") // $ type=s:String target=identity + let p = makePair(1, "two") // $ target=makePair +} + +// --- Generic constraints --- + +struct Pair { + var first : A + var second : B + + // Pair.init + init(first: A, second: B) { + self.first = first // $ type=first:A + self.second = second // $ type=second:B + } + + // Pair.getFirst + func getFirst() -> A { + return first // $ type=.first:A + } + + // Pair.getSecond + func getSecond() -> B { + return second // $ type=.second:B + } +} + +func testGenericStruct() { + let p = Pair(first: 1, second: "x") // $ target=Pair.init type=p@Pair:Int type=p@Pair:String + let f = p.getFirst() // $ type=f:Int target=Pair.getFirst + let sc = p.getSecond() // $ type=sc:String target=Pair.getSecond +} + +// --- Enums with associated values --- + +enum Result { + // Result.success + case success(T) + // Result.failure + case failure(String) + + // Result.getValue + func getValue() -> T? { + switch self { + case .success(let v): // $ target=Result.success + return v // $ type=v:T + case .failure: // $ target=Result.failure + return nil + } + } +} + +func testEnum() { + let r = Result.success(42) // $ type=r@Result:Int target=Result.success + let v = r.getValue() // $ target=Result.getValue + + let r2 : Result = .success(42) // $ type=r2@Result:Int target=Result.success + let v2 = r2.getValue() // $ target=Result.getValue +} + +// --- Closures and type inference --- + +// applyTransform +func applyTransform(_ value: T, _ transform: (T) -> U) -> U { + return transform(value) +} + +func testClosures() { + let result = applyTransform(5, { x in x * 2 }) // $ target=applyTransform type=result:Int + let strings = applyTransform(10, { x in String(x) }) // $ target=applyTransform type=strings:String +} + +// --- Subscripts --- + +struct Matrix { + var data : [[Int]] + + // Matrix.init + init(data: [[Int]]) { + self.data = data + } + + // Matrix.rowCount + func rowCount() -> Int { + return data.count + } +} + +func testSubscripts() { + let m = Matrix(data: [[1, 2], [3, 4]]) // $ target=Matrix.init + let rc = m.rowCount() // $ type=rc:Int target=Matrix.rowCount +} + +// --- Nested types --- + +class Outer { + class Inner { + var value : Int + + // Outer.Inner.init + init(value: Int) { + self.value = value // $ type=value:Int + } + + // Outer.Inner.getValue + func getValue() -> Int { + return self.value // $ type=.value:Int + } + } +} + +func testNestedTypes() { + let inner = Outer.Inner(value: 99) // $ type=inner:Inner target=Outer.Inner.init + let v = inner.getValue() // $ type=v:Int target=Outer.Inner.getValue +} + +// --- Method chaining --- + +class Builder { + var value : Int = 0 + + // Builder.init + init() {} + + // Builder.set + func set(_ v: Int) -> Builder { + value = v + return self + } + + // Builder.add + func add(_ v: Int) -> Builder { + value += v + return self + } + + // Builder.build + func build() -> Int { + return value // $ type=.value:Int + } +} + +func testChaining() { + let b = Builder() // $ type=b:Builder target=Builder.init + let result = b.set(10).add(5).build() // $ type=result:Int target=Builder.set target=Builder.add target=Builder.build +} + +// --- Protocol with associated type-like patterns (using generics) --- + +protocol Container { + associatedtype Item + // Container.getItem + func getItem() -> Item + // Container.count + func count() -> Int +} + +struct IntContainer : Container { + typealias Item = Int + var items : [Int] + + // IntContainer.init + init(items: [Int]) { + self.items = items + } + + // IntContainer.getItem + func getItem() -> Int { + return items[0] + } + + // IntContainer.count + func count() -> Int { + return items.count + } +} + +func testAssociatedTypes() { + let ic = IntContainer(items: [1, 2, 3]) // $ type=ic:IntContainer target=IntContainer.init + let item = ic.getItem() // $ type=item:Int target=IntContainer.getItem + let cnt = ic.count() // $ type=cnt:Int target=IntContainer.count +} + +// --- Default parameter values --- + +class Config { + // Config.init + init() {} + + // Config.setup + func setup(retries: Int = 3, timeout: Double = 30.0) -> Int { + return retries // $ type=retries:Int + } +} + +func testDefaultParams() { + let cfg = Config() // $ type=cfg:Config target=Config.init + let r1 = cfg.setup() // $ type=r1:Int target=Config.setup + let r2 = cfg.setup(retries: 5) // $ type=r2:Int target=Config.setup + let r3 = cfg.setup(retries: 2, timeout: 60.0) // $ type=r3:Int target=Config.setup +} + +// --- Multiple inheritance (protocol conformance) --- + +protocol Printable { + // Printable.display + func display() -> String +} + +protocol Identifiable { + // Identifiable.id + func id() -> Int +} + +class Entity : Printable, Identifiable { + var name : String + var entityId : Int + + // Entity.init + init(name: String, entityId: Int) { + self.name = name // $ type=name:String + self.entityId = entityId // $ type=entityId:Int + } + + // Entity.display + func display() -> String { + return name // $ type=.name:String + } + + // Entity.id + func id() -> Int { + return entityId // $ type=.entityId:Int + } +} + +func testMultipleProtocols() { + let e = Entity(name: "test", entityId: 42) // $ type=e:Entity target=Entity.init + let d = e.display() // $ type=d:String target=Entity.display + let eid = e.id() // $ type=eid:Int target=Entity.id +} + +// --- Computed properties accessed via methods --- + +class Temperature { + var celsius : Double + + // Temperature.init + init(celsius: Double) { + self.celsius = celsius // $ type=celsius:Double + } + + // Temperature.toCelsius + func toCelsius() -> Double { + return celsius // $ type=.celsius:Double + } + + // Temperature.toFahrenheit + func toFahrenheit() -> Double { + return celsius * 9.0 / 5.0 + 32.0 // $ type=.celsius:Double + } +} + +func testTemperature() { + let t = Temperature(celsius: 100.0) // $ type=t:Temperature target=Temperature.init + let c = t.toCelsius() // $ type=c:Double target=Temperature.toCelsius + let f = t.toFahrenheit() // $ type=f:Double target=Temperature.toFahrenheit +} + +// --- Inheritance with overriding --- + +class Animal { + // Animal.init + init() {} + + // Animal.speak + func speak() -> String { + return "..." + } +} + +class Dog : Animal { + // Dog.init + override init() { + super.init() // $ target=Animal.init + } + + // Dog.speak + override func speak() -> String { + return "Woof" + } + + // Dog.fetch + func fetch() -> String { + return "ball" + } +} + +class Cat : Animal { + // Cat.init + override init() { + super.init() // $ target=Animal.init + } + + // Cat.speak + override func speak() -> String { + return "Meow" + } +} + +func testOverriding() { + let d = Dog() // $ type=d:Dog target=Dog.init + let ds = d.speak() // $ type=ds:String target=Dog.speak + let df = d.fetch() // $ type=df:String target=Dog.fetch + + let ct = Cat() // $ type=ct:Cat target=Cat.init + let cs = ct.speak() // $ type=cs:String target=Cat.speak +} + +// --- Generic class with constraints --- + +protocol MyProtocol { + associatedtype MyType + + // MyProtocol.foo + func foo() -> Self + + // MyProtocol.bar + func bar() -> MyType +} + +class Wrapper { + var inner : T + + // Wrapper.init + init(_ inner: T) { + self.inner = inner // $ type=inner:T + } + + // Wrapper.get + func get() -> T { + return inner // $ type=.inner:T + } + + // Wrapper.callFoo + func callFoo() -> T { + let x = inner.foo(); // $ type=x:T target=MyProtocol.foo + return x + } + + // Wrapper.callBar + func callBar() -> T.MyType { + let x = inner.bar(); // $ type=x:MyType target=MyProtocol.bar + return x + } +} + +extension Int : MyProtocol { + typealias MyType = String + + // Int.foo + func foo() -> Int { + return self * 2 // $ type=self:Int + } + + // Int.bar + func bar() -> String { + return "number" + } +} + +func testConstrainedGeneric() { + let w = Wrapper(42) // $ type=w@Wrapper:Int target=Wrapper.init + let v = w.get() // $ type=v:Int target=Wrapper.get + let z = w.callFoo() // $ type=z:Int target=Wrapper.callFoo +} + +// --- Mutating methods on structs --- + +struct Counter { + var count : Int = 0 + + // Counter.increment + mutating func increment() { + count += 1 + } + + // Counter.getCount + func getCount() -> Int { + return count // $ type=.count:Int + } +} + +func testMutating() { + var ctr = Counter() // $ type=ctr:Counter target=init() + ctr.increment() // $ target=Counter.increment + let val = ctr.getCount() // $ type=val:Int target=Counter.getCount +} + +// ============================================================ +// Overload resolution tests +// ============================================================ + +// --- Overload by parameter type --- + +class OverloadByType { + // OverloadByType.handle(_:Int) + func handle(_ x: Int) -> String { + return "int" + } + + // OverloadByType.handle(_:Double) + func handle(_ x: Double) -> String { + return "double" + } + + // OverloadByType.handle(_:String) + func handle(_ x: String) -> String { + return "string" + } + + // OverloadByType.handle(_:Bool) + func handle(_ x: Bool) -> String { + return "bool" + } +} + +func testOverloadByType() { + let o = OverloadByType() // $ target=init() + let r1 = o.handle(42) // $ type=r1:String target=OverloadByType.handle(_:Int) + let r2 = o.handle(3.14) // $ type=r2:String target=OverloadByType.handle(_:Double) + let r3 = o.handle("hi") // $ type=r3:String target=OverloadByType.handle(_:String) + let r4 = o.handle(true) // $ type=r4:String target=OverloadByType.handle(_:Bool) +} + +// --- Overload by argument label --- + +class OverloadByLabel { + // OverloadByLabel.configure(width:) + func configure(width: Int) -> String { + return "width" + } + + // OverloadByLabel.configure(height:) + func configure(height: Int) -> String { + return "height" + } + + // OverloadByLabel.configure(width:height:) + func configure(width: Int, height: Int) -> String { + return "both" + } + + // OverloadByLabel.configure(size:) + func configure(size: Int) -> String { + return "size" + } +} + +func testOverloadByLabel() { + let o = OverloadByLabel() // $ target=init() + let r1 = o.configure(width: 10) // $ type=r1:String target=OverloadByLabel.configure(width:) + let r2 = o.configure(height: 20) // $ type=r2:String target=OverloadByLabel.configure(height:) + let r3 = o.configure(width: 10, height: 20) // $ type=r3:String target=OverloadByLabel.configure(width:height:) + let r4 = o.configure(size: 30) // $ type=r4:String target=OverloadByLabel.configure(size:) +} + +// --- Overload by arity (number of parameters) --- + +class OverloadByArity { + // OverloadByArity.compute() + func compute() -> Int { + return 0 + } + + // OverloadByArity.compute(_:Int) + func compute(_ x: Int) -> Int { + return x + } + + // OverloadByArity.compute(_:Int,_:Int) + func compute(_ x: Int, _ y: Int) -> Int { + return x + y + } + + // OverloadByArity.compute(_:Int,_:Int,_:Int) + func compute(_ x: Int, _ y: Int, _ z: Int) -> Int { + return x + y + z + } +} + +func testOverloadByArity() { + let o = OverloadByArity() // $ target=init() + let r0 = o.compute() // $ type=r0:Int target=OverloadByArity.compute() + let r1 = o.compute(1) // $ type=r1:Int target=OverloadByArity.compute(_:Int) + let r2 = o.compute(1, 2) // $ type=r2:Int target=OverloadByArity.compute(_:Int,_:Int) + let r3 = o.compute(1, 2, 3) // $ type=r3:Int target=OverloadByArity.compute(_:Int,_:Int,_:Int) +} + +// --- Overload by return type (contextual type) --- + +class OverloadByReturn { + // OverloadByReturn.create()->Int + func create() -> Int { + return 0 + } + + // OverloadByReturn.create()->String + func create() -> String { + return "" + } + + // OverloadByReturn.create()->Double + func create() -> Double { + return 0.0 + } +} + +func testOverloadByReturn() { + let o = OverloadByReturn() // $ target=init() + let r1 : Int = o.create() // $ type=r1:Int target=OverloadByReturn.create()->Int + let r2 : String = o.create() // $ type=r2:String target=OverloadByReturn.create()->String + let r3 : Double = o.create() // $ type=r3:Double target=OverloadByReturn.create()->Double +} + +// --- Overload: generic vs non-generic (non-generic preferred) --- + +class OverloadGenericVsConcrete { + // OverloadGenericVsConcrete.process(_:Int) + func process(_ x: Int) -> String { + return "concrete" + } + + // OverloadGenericVsConcrete.process(_:) + func process(_ x: T) -> String { + return "generic" + } +} + +func testOverloadGenericVsConcrete() { + let o = OverloadGenericVsConcrete() // $ target=init() + let r1 = o.process(42) // $ type=r1:String target=OverloadGenericVsConcrete.process(_:Int) + let r2 = o.process("hello") // $ type=r2:String target=OverloadGenericVsConcrete.process(_:) + let r3 = o.process(true) // $ type=r3:String target=OverloadGenericVsConcrete.process(_:) +} + +// --- Overload: free functions by parameter type --- + +// freeOverload(_:Int) +func freeOverload(_ x: Int) -> String { + return "int" +} + +// freeOverload(_:String) +func freeOverload(_ x: String) -> String { + return "string" +} + +// freeOverload(_:Double) +func freeOverload(_ x: Double) -> String { + return "double" +} + +func testFreeOverload() { + let r1 = freeOverload(42) // $ type=r1:String target=freeOverload(_:Int) + let r2 = freeOverload("hi") // $ type=r2:String target=freeOverload(_:String) + let r3 = freeOverload(1.5) // $ type=r3:String target=freeOverload(_:Double) +} + +// --- Overload: init overloading --- + +class MultiInit { + var value : String + + // MultiInit.init() + init() { + value = "default" + } + + // MultiInit.init(int:) + init(int: Int) { + value = "int" + } + + // MultiInit.init(str:) + init(str: String) { + value = str // $ type=str:String + } + + // MultiInit.init(x:y:) + init(x: Int, y: Int) { + value = "pair" + } + + // MultiInit.getValue + func getValue() -> String { + return value // $ type=.value:String + } +} + +func testInitOverloading() { + let m1 = MultiInit() // $ type=m1:MultiInit target=MultiInit.init() + let m2 = MultiInit(int: 5) // $ type=m2:MultiInit target=MultiInit.init(int:) + let m3 = MultiInit(str: "x") // $ type=m3:MultiInit target=MultiInit.init(str:) + let m4 = MultiInit(x: 1, y: 2) // $ type=m4:MultiInit target=MultiInit.init(x:y:) + let v = m1.getValue() // $ type=v:String target=MultiInit.getValue +} + +// --- Overload: static vs instance method --- + +class StaticVsInstance { + // StaticVsInstance.action()->instance + func action() -> String { + return "instance" + } + + // StaticVsInstance.action()->static + static func action() -> String { + return "static" + } + + // StaticVsInstance.init + init() {} +} + +func testStaticVsInstance() { + let o = StaticVsInstance() // $ target=StaticVsInstance.init + let r1 = o.action() // $ type=r1:String target=StaticVsInstance.action()->instance + let r2 = StaticVsInstance.action() // $ type=r2:String target=StaticVsInstance.action()->static +} + +// --- Overload: protocol extension default vs concrete implementation --- + +protocol Describable { + // Describable.describe + func describe() -> String +} + +extension Describable { + // Describable.describe(default) + func describe() -> String { + return "default" + } + + // Describable.extra + func extra() -> String { + return "extra" + } +} + +class DescribableImpl : Describable { + // DescribableImpl.init + init() {} + + // DescribableImpl.describe + func describe() -> String { + return "concrete" + } +} + +func testProtocolExtensionOverload() { + let d = DescribableImpl() // $ target=DescribableImpl.init + let r1 = d.describe() // $ type=r1:String target=DescribableImpl.describe + let r2 = d.extra() // $ type=r2:String target=Describable.extra +} + +// --- Overload: subclass override resolution --- + +class Base { + // Base.init + init() {} + + // Base.action + func action() -> String { + return "base" + } + + // Base.baseOnly + func baseOnly() -> String { + return "baseOnly" + } +} + +class Sub : Base { + // Sub.init + override init() { + super.init() // $ target=Base.init + } + + // Sub.action + override func action() -> String { + return "sub" + } + + // Sub.subOnly + func subOnly() -> String { + return "subOnly" + } +} + +class SubSub : Sub { + // SubSub.init + override init() { + super.init() // $ target=Sub.init + } + + // SubSub.action + override func action() -> String { + return "subsub" + } +} + +func testOverrideResolution() { + let b = Base() // $ target=Base.init + let rb = b.action() // $ type=rb:String target=Base.action + + let s = Sub() // $ target=Sub.init + let rs = s.action() // $ type=rs:String target=Sub.action + let rbo = s.baseOnly() // $ type=rbo:String target=Base.baseOnly + let rso = s.subOnly() // $ type=rso:String target=Sub.subOnly + + let ss = SubSub() // $ target=SubSub.init + let rss = ss.action() // $ type=rss:String target=SubSub.action + let rbo2 = ss.baseOnly() // $ type=rbo2:String target=Base.baseOnly + let rso2 = ss.subOnly() // $ type=rso2:String target=Sub.subOnly +} + +// --- Overload: by external vs internal parameter names --- + +class LabelVariants { + // LabelVariants.send(to:) + func send(to target: String) -> String { + return target // $ type=target:String + } + + // LabelVariants.send(from:) + func send(from source: String) -> String { + return source // $ type=source:String + } + + // LabelVariants.send(to:from:) + func send(to target: String, from source: String) -> String { + return target + source + } +} + +func testLabelVariants() { + let o = LabelVariants() // $ target=init() + let r1 = o.send(to: "x") // $ type=r1:String target=LabelVariants.send(to:) + let r2 = o.send(from: "y") // $ type=r2:String target=LabelVariants.send(from:) + let r3 = o.send(to: "x", from: "y") // $ type=r3:String target=LabelVariants.send(to:from:) +} + +// --- Overload: generic function with different constraint satisfaction --- + +protocol Numeric2 : Equatable { + // Numeric2.zero + static func zero() -> Self +} + +extension Int : Numeric2 { + // Int.zero + static func zero() -> Int { return 0 } +} + +extension Double : Numeric2 { + // Double.zero + static func zero() -> Double { return 0.0 } +} + +// constrainedId(_:Numeric2) +func constrainedId(_ x: T) -> T { + return x +} + +// constrainedId(_:Equatable) +func constrainedId(_ x: T) -> T { + return x +} + +func testConstrainedOverload() { + let r1 = constrainedId(42) // $ type=r1:Int target=constrainedId(_:Numeric2) + let r2 = constrainedId("hello") // $ type=r2:String target=constrainedId(_:Equatable) +} + +// --- Overload: methods on generic type specialized differently --- + +class Box { + var item : T + + // Box.init + init(_ item: T) { + self.item = item // $ type=item:T + } + + // Box.get + func get() -> T { + return item // $ type=.item:T + } + + // Box.replace + func replace(_ newItem: T) { + item = newItem // $ type=newItem:T + } +} + +func testGenericMethodResolution() { + let intBox = Box(10) // $ type=intBox@Box:Int target=Box.init + let strBox = Box("hi") // $ type=strBox@Box:String target=Box.init + let v1 = intBox.get() // $ type=v1:Int target=Box.get + let v2 = strBox.get() // $ type=v2:String target=Box.get + intBox.replace(20) // $ target=Box.replace + strBox.replace("bye") // $ target=Box.replace +} + +// --- Overload: convenience init vs designated init --- + +class Widget { + var name : String + var size : Int + + // Widget.init(name:size:) + init(name: String, size: Int) { + self.name = name // $ type=name:String + self.size = size // $ type=size:Int + } + + // Widget.init(name:) + convenience init(name: String) { + self.init(name: name, size: 1) // $ target=Widget.init(name:size:) + } + + // Widget.init(size:) + convenience init(size: Int) { + self.init(name: "default", size: size) // $ target=Widget.init(name:size:) + } +} + +func testConvenienceInit() { + let w1 = Widget(name: "a", size: 5) // $ type=w1:Widget target=Widget.init(name:size:) + let w2 = Widget(name: "b") // $ type=w2:Widget target=Widget.init(name:) + let w3 = Widget(size: 10) // $ type=w3:Widget target=Widget.init(size:) +} + +// --- Overload: methods with closure parameters of different signatures --- + +class Processor { + // Processor.init + init() {} + + // Processor.apply(_:(Int)->Int) + func apply(_ f: (Int) -> Int) -> Int { + return f(0) + } + + // Processor.apply(_:(String)->String) + func apply(_ f: (String) -> String) -> String { + return f("") + } + + // Processor.apply(_:(Int,Int)->Int) + func apply(_ f: (Int, Int) -> Int) -> Int { + return f(0, 0) + } +} + +func testClosureOverload() { + let p = Processor() // $ target=Processor.init + let r1 = p.apply({ x in x + 1 }) // $ type=r1:Int target=Processor.apply(_:(Int)->Int) + let r2 = p.apply({ s in s + "!" }) // $ type=r2:String target=Processor.apply(_:(String)->String) + let r3 = p.apply({ x, y in x + y }) // $ type=r3:Int target=Processor.apply(_:(Int,Int)->Int) +} + +// --- Overload: subscript overloading --- + +class MultiSubscript { + var data : [Int] = [1, 2, 3] + var dict : [String: Int] = ["a": 1] + + // MultiSubscript.init + init() {} + + // MultiSubscript.get(_:) + func get(_ index: Int) -> Int { + return data[index] + } + + // MultiSubscript.get(_:String) + func get(_ key: String) -> Int { + return dict[key] ?? 0 + } +} + +func testMethodSubscriptLike() { + let ms = MultiSubscript() // $ target=MultiSubscript.init + let r1 = ms.get(0) // $ type=r1:Int target=MultiSubscript.get(_:) + let r2 = ms.get("a") // $ type=r2:Int target=MultiSubscript.get(_:String) +} + +// ============================================================ +// Type parameters with constraints +// ============================================================ + +// --- where clause on generic function --- + +// minOf(_:_:) +func minOf(_ a: T, _ b: T) -> T { + if a < b { return a } else { return b } +} + +// maxOf(_:_:) +func maxOf(_ a: T, _ b: T) -> T where T : Comparable { + if a > b { return a } else { return b } +} + +func testWhereClause() { + let m1 = minOf(3, 7) // $ type=m1:Int target=minOf(_:_:) + let m2 = minOf("a", "z") // $ type=m2:String target=minOf(_:_:) + let m3 = maxOf(3, 7) // $ type=m3:Int target=maxOf(_:_:) + let m4 = maxOf("a", "z") // $ type=m4:String target=maxOf(_:_:) +} + +// --- Multiple constraints on a single type parameter --- + +protocol Displayable2 { + // Displayable2.display + func display() -> String +} + +protocol Sortable { + // Sortable.sortKey + func sortKey() -> Int +} + +struct TaggedItem : Displayable2, Sortable, Equatable { + var tag : String + var priority : Int + + // TaggedItem.init + init(tag: String, priority: Int) { + self.tag = tag // $ type=tag:String + self.priority = priority // $ type=priority:Int + } + + // TaggedItem.display + func display() -> String { + return tag // $ type=.tag:String + } + + // TaggedItem.sortKey + func sortKey() -> Int { + return priority // $ type=.priority:Int + } +} + +// showAndSort(_:) +func showAndSort(_ item: T) -> String { + return item.display() // $ target=Displayable2.display +} + +// showSortAndCompare(_:_:) +func showSortAndCompare(_ a: T, _ b: T) -> Bool where T : Displayable2, T : Sortable, T : Equatable { + return a == b +} + +func testMultipleConstraints() { + let item = TaggedItem(tag: "x", priority: 1) // $ target=TaggedItem.init + let s = showAndSort(item) // $ type=s:String target=showAndSort(_:) + let eq = showSortAndCompare(item, item) // $ type=eq:Bool target=showSortAndCompare(_:_:) +} + +// --- Generic class with multiple constrained type parameters --- + +class SortedPair { + var first : T + var second : U + + // SortedPair.init + init(first: T, second: U) { + self.first = first // $ type=first:T + self.second = second // $ type=second:U + } + + // SortedPair.isFirstSmaller + func isFirstSmaller(than other: T) -> Bool { + return first < other // $ type=other:T + } + + // SortedPair.isSecondSmaller + func isSecondSmaller(than other: U) -> Bool { + return second < other // $ type=other:U + } +} + +func testMultiConstrainedParams() { + let sp = SortedPair(first: 3, second: "b") // $ target=SortedPair.init + let r1 = sp.isFirstSmaller(than: 5) // $ type=r1:Bool target=SortedPair.isFirstSmaller + let r2 = sp.isSecondSmaller(than: "z") // $ type=r2:Bool target=SortedPair.isSecondSmaller +} + +// --- Associated type constraints (same-type constraint) --- + +protocol ElementContainer { + associatedtype Element + // ElementContainer.first + func first() -> Element +} + +struct IntArray : ElementContainer { + typealias Element = Int + var items : [Int] + + // IntArray.init + init(items: [Int]) { + self.items = items + } + + // IntArray.first + func first() -> Int { + return items[0] + } +} + +struct StringArray : ElementContainer { + typealias Element = String + var items : [String] + + // StringArray.init + init(items: [String]) { + self.items = items + } + + // StringArray.first + func first() -> String { + return items[0] + } +} + +// extractFirst(from:Int) +func extractFirst(from container: C) -> C.Element where C.Element == Int { + return container.first() // $ target=ElementContainer.first +} + +// extractFirst(from:String) +func extractFirst(from container: C) -> C.Element where C.Element == String { + return container.first() // $ target=ElementContainer.first +} + +func testSameTypeConstraint() { + let ia = IntArray(items: [10, 20]) // $ target=IntArray.init + let sa = StringArray(items: ["hi", "there"]) // $ target=StringArray.init + let r1 = extractFirst(from: ia) // $ type=r1:Int target=extractFirst(from:Int) + let r2 = extractFirst(from: sa) // $ type=r2:String target=extractFirst(from:String) +} + +// --- Superclass constraint on type parameter --- + +class Vehicle { + var speed : Int + + // Vehicle.init + init(speed: Int) { + self.speed = speed // $ type=speed:Int + } + + // Vehicle.describe + func describe() -> String { + return "vehicle" + } +} + +class Car : Vehicle { + // Car.init + override init(speed: Int) { + super.init(speed: speed) // $ target=Vehicle.init + } + + // Car.describe + override func describe() -> String { + return "car" + } + + // Car.honk + func honk() -> String { + return "beep" + } +} + +class Truck : Vehicle { + // Truck.init + override init(speed: Int) { + super.init(speed: speed) // $ target=Vehicle.init + } + + // Truck.describe + override func describe() -> String { + return "truck" + } + + // Truck.haul + func haul() -> String { + return "hauling" + } +} + +// describeVehicle(_:) +func describeVehicle(_ v: T) -> String { + return v.describe() // $ target=Vehicle.describe +} + +func testSuperclassConstraint() { + let car = Car(speed: 100) // $ type=car:Car target=Car.init + let truck = Truck(speed: 60) // $ type=truck:Truck target=Truck.init + let d1 = describeVehicle(car) // $ type=d1:String target=describeVehicle(_:) + let d2 = describeVehicle(truck) // $ type=d2:String target=describeVehicle(_:) + let h = car.honk() // $ type=h:String target=Car.honk + let hl = truck.haul() // $ type=hl:String target=Truck.haul +} + +// --- Constrained extension methods --- + +protocol Summable { + // Summable.+ + static func +(lhs: Self, rhs: Self) -> Self +} + +extension Int : Summable {} +extension Double : Summable {} +extension String : Summable {} + +struct Accumulator { + var values : [T] + + // Accumulator.init + init(values: [T]) { + self.values = values + } + + // Accumulator.count + func count() -> Int { + return values.count + } +} + +extension Accumulator where T : Summable { + // Accumulator.total + func total() -> T { + return values[0] + values[1] // $ target=Summable.+ + } +} + +extension Accumulator where T : Equatable { + // Accumulator.contains + func contains(_ item: T) -> Bool { + return values.contains(where: { $0 == item }) + } +} + +func testConstrainedExtensions() { + let intAcc = Accumulator(values: [1, 2, 3]) // $ target=Accumulator.init + let cnt = intAcc.count() // $ type=cnt:Int target=Accumulator.count + let tot = intAcc.total() // $ type=tot:Int target=Accumulator.total + let has = intAcc.contains(2) // $ type=has:Bool target=Accumulator.contains +} + +// --- Generic method with its own constrained type parameter --- + +class Transformer { + // Transformer.init + init() {} + + // Transformer.transform + func transform(_ items: [T]) -> T { + return items[0] + items[1] // $ target=Summable.+ + } + + // Transformer.merge + func merge(_ a: A, _ b: B) -> Bool { + return true + } +} + +func testMethodTypeParams() { + let t = Transformer() // $ target=Transformer.init + let r1 = t.transform([3, 1, 2]) // $ type=r1:Int target=Transformer.transform + let r2 = t.transform(["c", "a", "b"]) // $ type=r2:String target=Transformer.transform + let r3 = t.merge(1, "x") // $ type=r3:Bool target=Transformer.merge +} + +// --- Recursive constraint (Comparable requiring Equatable) --- + +// clamp(_:min:max:) +func clamp(_ value: T, min lower: T, max upper: T) -> T { + if value < lower { return lower } + if value > upper { return upper } + return value +} + +func testRecursiveConstraint() { + let r1 = clamp(5, min: 0, max: 10) // $ type=r1:Int target=clamp(_:min:max:) + let r2 = clamp(3.5, min: 1.0, max: 2.0) // $ type=r2:Double target=clamp(_:min:max:) + let r3 = clamp("m", min: "a", max: "z") // $ type=r3:String target=clamp(_:min:max:) +} \ No newline at end of file From 6ecdf3fe3298c16cd232a4852185e83205a79c40 Mon Sep 17 00:00:00 2001 From: Anders Schack-Mulligen Date: Mon, 27 Apr 2026 14:59:22 +0200 Subject: [PATCH 136/260] C#: Replace Ssa::ImplicitParameterDefinition with SsaParameterInit. --- .../lib/semmle/code/csharp/dataflow/Nullness.qll | 6 ++---- csharp/ql/lib/semmle/code/csharp/dataflow/SSA.qll | 3 +++ .../csharp/dataflow/internal/DataFlowPrivate.qll | 14 +++----------- .../code/csharp/dataflow/internal/SsaImpl.qll | 2 +- .../dataflow/defuse/parameterUseEquivalence.ql | 2 +- .../dataflow/ssa/SsaImplicitParameterDef.ql | 2 +- 6 files changed, 11 insertions(+), 18 deletions(-) diff --git a/csharp/ql/lib/semmle/code/csharp/dataflow/Nullness.qll b/csharp/ql/lib/semmle/code/csharp/dataflow/Nullness.qll index 662cd5a5d189..3fc4f05a2788 100644 --- a/csharp/ql/lib/semmle/code/csharp/dataflow/Nullness.qll +++ b/csharp/ql/lib/semmle/code/csharp/dataflow/Nullness.qll @@ -126,7 +126,7 @@ private predicate nonNullDef(SsaExplicitWrite def) { */ private predicate dereferenceAt(SsaDefinition def, Dereference d) { d = def.getARead() } -private predicate isMaybeNullArgument(Ssa::ParameterDefinition def, MaybeNullExpr arg) { +private predicate isMaybeNullArgument(SsaParameterInit def, MaybeNullExpr arg) { exists(AssignableDefinitions::ImplicitParameterDefinition pdef, Parameter p | p = def.getParameter() | @@ -320,9 +320,7 @@ class Dereference extends G::DereferenceableExpr { not p.getAnnotatedType().isNullableRefType() or p.fromSource() and - exists( - Ssa::ParameterDefinition def, AssignableDefinitions::ImplicitParameterDefinition pdef - | + exists(SsaParameterInit def, AssignableDefinitions::ImplicitParameterDefinition pdef | p = def.getParameter() | p.getUnboundDeclaration() = pdef.getParameter() and diff --git a/csharp/ql/lib/semmle/code/csharp/dataflow/SSA.qll b/csharp/ql/lib/semmle/code/csharp/dataflow/SSA.qll index 39cbf602650b..384e327ff7eb 100644 --- a/csharp/ql/lib/semmle/code/csharp/dataflow/SSA.qll +++ b/csharp/ql/lib/semmle/code/csharp/dataflow/SSA.qll @@ -553,6 +553,9 @@ module Ssa { } } + /** + * DEPRECATED: Use `SsaParameterInit` instead. + */ deprecated class ImplicitParameterDefinition = ParameterDefinition; final class ParameterDefinition = SsaImpl::ParameterDefinitionImpl; diff --git a/csharp/ql/lib/semmle/code/csharp/dataflow/internal/DataFlowPrivate.qll b/csharp/ql/lib/semmle/code/csharp/dataflow/internal/DataFlowPrivate.qll index b55b0cbd9349..f581628a79c0 100644 --- a/csharp/ql/lib/semmle/code/csharp/dataflow/internal/DataFlowPrivate.qll +++ b/csharp/ql/lib/semmle/code/csharp/dataflow/internal/DataFlowPrivate.qll @@ -1302,12 +1302,6 @@ private module NearestLocationInputParamAfterCallable implements NearestLocation } private module ParameterNodes { - pragma[nomagic] - private predicate ssaParamDef(Ssa::ParameterDefinition ssaDef, Parameter p, Location l) { - p = ssaDef.getParameter() and - l = ssaDef.getLocation() - } - private module NearestLocationInputParamBeforeCallable implements NearestLocationInputSig { class C = Parameter; @@ -1358,11 +1352,9 @@ private module ParameterNodes { } /** Gets the SSA definition corresponding to this parameter, if any. */ - Ssa::ParameterDefinition getSsaDefinition() { - exists(Parameter p, Location l | - l = this.getParameterLocation(p) and - ssaParamDef(result, p, l) - ) + SsaParameterInit getSsaDefinition() { + result.getParameter() = parameter and + result.getBasicBlock() = callable.getABasicBlock() } override predicate isParameterOf(DataFlowCallable c, ParameterPosition pos) { diff --git a/csharp/ql/lib/semmle/code/csharp/dataflow/internal/SsaImpl.qll b/csharp/ql/lib/semmle/code/csharp/dataflow/internal/SsaImpl.qll index 89c7276a1a29..715fe4867590 100644 --- a/csharp/ql/lib/semmle/code/csharp/dataflow/internal/SsaImpl.qll +++ b/csharp/ql/lib/semmle/code/csharp/dataflow/internal/SsaImpl.qll @@ -1017,7 +1017,7 @@ private module DataFlowIntegrationInput implements Impl::DataFlowIntegrationInpu predicate ssaDefHasSource(WriteDefinition def) { // exclude flow directly from RHS to SSA definition, as we instead want to // go from RHS to matching assignable definition, and from there to SSA definition - def instanceof Ssa::ParameterDefinition + def instanceof SsaParameterInit } /** diff --git a/csharp/ql/test/library-tests/dataflow/defuse/parameterUseEquivalence.ql b/csharp/ql/test/library-tests/dataflow/defuse/parameterUseEquivalence.ql index 10b916ab3f41..fdb1a6e89950 100644 --- a/csharp/ql/test/library-tests/dataflow/defuse/parameterUseEquivalence.ql +++ b/csharp/ql/test/library-tests/dataflow/defuse/parameterUseEquivalence.ql @@ -24,7 +24,7 @@ private LocalScopeVariableRead getAReachableUncertainRead( AssignableDefinitions::ImplicitParameterDefinition p ) { exists(SsaDefinition ssaDef | - p.getParameter() = ssaDef.getAnUltimateDefinition().(Ssa::ParameterDefinition).getParameter() + p.getParameter() = ssaDef.getAnUltimateDefinition().(SsaParameterInit).getParameter() | result = ssaDef.getARead() ) diff --git a/csharp/ql/test/library-tests/dataflow/ssa/SsaImplicitParameterDef.ql b/csharp/ql/test/library-tests/dataflow/ssa/SsaImplicitParameterDef.ql index 253fdea1ffa5..b1c28f020d14 100644 --- a/csharp/ql/test/library-tests/dataflow/ssa/SsaImplicitParameterDef.ql +++ b/csharp/ql/test/library-tests/dataflow/ssa/SsaImplicitParameterDef.ql @@ -1,5 +1,5 @@ import csharp -from Ssa::SourceVariable v, Ssa::ParameterDefinition def +from Ssa::SourceVariable v, SsaParameterInit def where v = def.getSourceVariable() select v, def, def.getParameter() From 9a7eb8dfb9f46914a6e714b144846c1b261f94bf Mon Sep 17 00:00:00 2001 From: Anders Schack-Mulligen Date: Mon, 27 Apr 2026 15:05:12 +0200 Subject: [PATCH 137/260] C#: Replace Ssa::PhiNode with SsaPhiDefinition. --- csharp/ql/lib/semmle/code/csharp/dataflow/Nullness.qll | 8 ++++---- csharp/ql/lib/semmle/code/csharp/dataflow/SSA.qll | 8 +++++--- .../lib/semmle/code/csharp/dataflow/internal/SsaImpl.qll | 2 +- .../internal/rangeanalysis/ModulusAnalysisSpecific.qll | 2 +- .../internal/rangeanalysis/SignAnalysisSpecific.qll | 2 +- .../internal/rangeanalysis/SsaReadPositionSpecific.qll | 2 +- .../library-tests/dataflow/defuse/useUseEquivalence.ql | 4 ++-- csharp/ql/test/library-tests/dataflow/ssa/SSAPhi.ql | 2 +- 8 files changed, 16 insertions(+), 14 deletions(-) diff --git a/csharp/ql/lib/semmle/code/csharp/dataflow/Nullness.qll b/csharp/ql/lib/semmle/code/csharp/dataflow/Nullness.qll index 3fc4f05a2788..1cd9c71acfc9 100644 --- a/csharp/ql/lib/semmle/code/csharp/dataflow/Nullness.qll +++ b/csharp/ql/lib/semmle/code/csharp/dataflow/Nullness.qll @@ -186,7 +186,7 @@ private predicate defMaybeNull(SsaDefinition def, ControlFlowNode node, string m de.guardSuggestsMaybeNull(reason) and msg = "as suggested by $@ null check" and node = def.getControlFlowNode() and - not de = any(Ssa::PhiNode phi).getARead() and + not de = any(SsaPhiDefinition phi).getARead() and // Don't use a check as reason if there is a `null` assignment // or argument not def.(SsaExplicitWrite).getValue() instanceof MaybeNullExpr and @@ -213,7 +213,7 @@ private predicate defMaybeNull(SsaDefinition def, ControlFlowNode node, string m exists(Dereference d | dereferenceAt(def, d) | node = def.getControlFlowNode() and d.hasNullableType() and - not def instanceof Ssa::PhiNode and + not def instanceof SsaPhiDefinition and reason = def.getSourceVariable().getAssignable() and msg = "because it has a nullable type" ) @@ -221,14 +221,14 @@ private predicate defMaybeNull(SsaDefinition def, ControlFlowNode node, string m } private SsaDefinition getAPseudoInput(SsaDefinition def) { - result = def.(Ssa::PhiNode).getAnInput() + result = def.(SsaPhiDefinition).getAnInput() } // `def.getAnUltimateDefinition()` includes inputs into uncertain // definitions, but we only want inputs into pseudo nodes private SsaDefinition getAnUltimateDefinition(SsaDefinition def) { result = getAPseudoInput*(def) and - not result instanceof Ssa::PhiNode + not result instanceof SsaPhiDefinition } /** diff --git a/csharp/ql/lib/semmle/code/csharp/dataflow/SSA.qll b/csharp/ql/lib/semmle/code/csharp/dataflow/SSA.qll index 384e327ff7eb..812115050457 100644 --- a/csharp/ql/lib/semmle/code/csharp/dataflow/SSA.qll +++ b/csharp/ql/lib/semmle/code/csharp/dataflow/SSA.qll @@ -357,7 +357,7 @@ module Ssa { * includes inputs to phi nodes and the prior definitions of uncertain writes. */ private Definition getAPhiInputOrPriorDefinition() { - result = this.(PhiNode).getAnInput() or + result = this.(SsaPhiDefinition).getAnInput() or result = this.(UncertainDefinition).getPriorDefinition() } @@ -392,7 +392,7 @@ module Ssa { */ final Definition getAnUltimateDefinition() { result = this.getAPhiInputOrPriorDefinition*() and - not result instanceof PhiNode + not result instanceof SsaPhiDefinition } /** @@ -646,11 +646,13 @@ module Ssa { } /** + * DEPRECATED: Use `SsaPhiDefinition` instead. + * * An SSA phi node, that is, a pseudo definition for a variable at a point * in the flow graph where otherwise two or more definitions for the variable * would be visible. */ - class PhiNode extends Definition, SsaImpl::PhiNode { + deprecated class PhiNode extends Definition, SsaImpl::PhiNode { /** * Gets an input of this phi node. Example: * diff --git a/csharp/ql/lib/semmle/code/csharp/dataflow/internal/SsaImpl.qll b/csharp/ql/lib/semmle/code/csharp/dataflow/internal/SsaImpl.qll index 715fe4867590..74bc5651aeea 100644 --- a/csharp/ql/lib/semmle/code/csharp/dataflow/internal/SsaImpl.qll +++ b/csharp/ql/lib/semmle/code/csharp/dataflow/internal/SsaImpl.qll @@ -873,7 +873,7 @@ private module Cached { } cached - Definition phiHasInputFromBlock(Ssa::PhiNode phi, BasicBlock bb) { + deprecated Definition phiHasInputFromBlock(Ssa::PhiNode phi, BasicBlock bb) { Impl::phiHasInputFromBlock(phi, result, bb) } diff --git a/csharp/ql/lib/semmle/code/csharp/dataflow/internal/rangeanalysis/ModulusAnalysisSpecific.qll b/csharp/ql/lib/semmle/code/csharp/dataflow/internal/rangeanalysis/ModulusAnalysisSpecific.qll index fbc09e7ec52d..34b5ec9a5e85 100644 --- a/csharp/ql/lib/semmle/code/csharp/dataflow/internal/rangeanalysis/ModulusAnalysisSpecific.qll +++ b/csharp/ql/lib/semmle/code/csharp/dataflow/internal/rangeanalysis/ModulusAnalysisSpecific.qll @@ -9,7 +9,7 @@ module Private { class SsaVariable = SU::SsaVariable; - class SsaPhiNode = CS::Ssa::PhiNode; + class SsaPhiNode = CS::SsaPhiDefinition; class Expr = CS::ControlFlowNodes::ExprNode; diff --git a/csharp/ql/lib/semmle/code/csharp/dataflow/internal/rangeanalysis/SignAnalysisSpecific.qll b/csharp/ql/lib/semmle/code/csharp/dataflow/internal/rangeanalysis/SignAnalysisSpecific.qll index 96d6b2b979a4..77e30d239fd3 100644 --- a/csharp/ql/lib/semmle/code/csharp/dataflow/internal/rangeanalysis/SignAnalysisSpecific.qll +++ b/csharp/ql/lib/semmle/code/csharp/dataflow/internal/rangeanalysis/SignAnalysisSpecific.qll @@ -15,7 +15,7 @@ module Private { class SsaVariable = CS::SsaDefinition; - class SsaPhiNode = CS::Ssa::PhiNode; + class SsaPhiNode = CS::SsaPhiDefinition; class VarAccess = RU::ExprNode::AssignableAccess; diff --git a/csharp/ql/lib/semmle/code/csharp/dataflow/internal/rangeanalysis/SsaReadPositionSpecific.qll b/csharp/ql/lib/semmle/code/csharp/dataflow/internal/rangeanalysis/SsaReadPositionSpecific.qll index 18c843c0472c..77833591c3eb 100644 --- a/csharp/ql/lib/semmle/code/csharp/dataflow/internal/rangeanalysis/SsaReadPositionSpecific.qll +++ b/csharp/ql/lib/semmle/code/csharp/dataflow/internal/rangeanalysis/SsaReadPositionSpecific.qll @@ -7,7 +7,7 @@ private import SsaReadPositionCommon class SsaVariable = CS::SsaDefinition; -class SsaPhiNode = CS::Ssa::PhiNode; +class SsaPhiNode = CS::SsaPhiDefinition; class BasicBlock = CS::BasicBlock; diff --git a/csharp/ql/test/library-tests/dataflow/defuse/useUseEquivalence.ql b/csharp/ql/test/library-tests/dataflow/defuse/useUseEquivalence.ql index 986707c018dd..c92dd13ab1ee 100644 --- a/csharp/ql/test/library-tests/dataflow/defuse/useUseEquivalence.ql +++ b/csharp/ql/test/library-tests/dataflow/defuse/useUseEquivalence.ql @@ -32,7 +32,7 @@ private TLocalScopeVariableReadOrSsaDef getANextReadOrDef(TLocalScopeVariableRea result = TLocalScopeVariableRead(read.getANextRead()) or not exists(read.getANextRead()) and - exists(SsaDefinition ssaDef, Ssa::PhiNode phi, BasicBlock bb | + exists(SsaDefinition ssaDef, SsaPhiDefinition phi, BasicBlock bb | ssaDef.getARead() = read and phi.getAnInput() = ssaDef and phi.definesAt(_, bb, _) and @@ -45,7 +45,7 @@ private TLocalScopeVariableReadOrSsaDef getANextReadOrDef(TLocalScopeVariableRea result = TLocalScopeVariableRead(Ssa::ssaGetAFirstUse(ssaDef)) or not exists(Ssa::ssaGetAFirstUse(ssaDef)) and - exists(Ssa::PhiNode phi | + exists(SsaPhiDefinition phi | phi.getAnInput() = ssaDef and result = TSsaDefinition(phi) ) diff --git a/csharp/ql/test/library-tests/dataflow/ssa/SSAPhi.ql b/csharp/ql/test/library-tests/dataflow/ssa/SSAPhi.ql index db24031365a4..310bc40fcad4 100644 --- a/csharp/ql/test/library-tests/dataflow/ssa/SSAPhi.ql +++ b/csharp/ql/test/library-tests/dataflow/ssa/SSAPhi.ql @@ -1,6 +1,6 @@ import csharp -from Ssa::SourceVariable v, Ssa::PhiNode phi, SsaDefinition input +from Ssa::SourceVariable v, SsaPhiDefinition phi, SsaDefinition input where phi.getAnInput() = input and v = phi.getSourceVariable() From 65f647a8c0221cb305bff37e712ed1e38f5d4d52 Mon Sep 17 00:00:00 2001 From: Anders Schack-Mulligen Date: Mon, 27 Apr 2026 15:07:51 +0200 Subject: [PATCH 138/260] C#: Replace Ssa::UncertainDefinition with SsaUncertainWrite. --- csharp/ql/lib/semmle/code/csharp/dataflow/SSA.qll | 6 ++++-- .../ql/lib/semmle/code/csharp/dataflow/internal/SsaImpl.qll | 2 +- 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/csharp/ql/lib/semmle/code/csharp/dataflow/SSA.qll b/csharp/ql/lib/semmle/code/csharp/dataflow/SSA.qll index 812115050457..d29ace056b94 100644 --- a/csharp/ql/lib/semmle/code/csharp/dataflow/SSA.qll +++ b/csharp/ql/lib/semmle/code/csharp/dataflow/SSA.qll @@ -358,7 +358,7 @@ module Ssa { */ private Definition getAPhiInputOrPriorDefinition() { result = this.(SsaPhiDefinition).getAnInput() or - result = this.(UncertainDefinition).getPriorDefinition() + result = this.(SsaUncertainWrite).getPriorDefinition() } /** @@ -686,12 +686,14 @@ module Ssa { } /** + * DEPRECATED: Use `SsaUncertainWrite` instead. + * * An SSA definition that represents an uncertain update of the underlying * assignable. Either an explicit update that is uncertain (`ref` assignments * need not be certain), an implicit non-local update via a call, or an * uncertain update of the qualifier. */ - class UncertainDefinition extends Definition, SsaImpl::UncertainWriteDefinition { + deprecated class UncertainDefinition extends Definition, SsaImpl::UncertainWriteDefinition { /** * Gets the immediately preceding definition. Since this update is uncertain, * the value from the preceding definition might still be valid. diff --git a/csharp/ql/lib/semmle/code/csharp/dataflow/internal/SsaImpl.qll b/csharp/ql/lib/semmle/code/csharp/dataflow/internal/SsaImpl.qll index 74bc5651aeea..a610fd4bcd41 100644 --- a/csharp/ql/lib/semmle/code/csharp/dataflow/internal/SsaImpl.qll +++ b/csharp/ql/lib/semmle/code/csharp/dataflow/internal/SsaImpl.qll @@ -912,7 +912,7 @@ private module Cached { } cached - Definition uncertainWriteDefinitionInput(UncertainWriteDefinition def) { + deprecated Definition uncertainWriteDefinitionInput(UncertainWriteDefinition def) { Impl::uncertainWriteDefinitionInput(def, result) } From e1cd708c756e3f055595b0eb829b7cc1417de929 Mon Sep 17 00:00:00 2001 From: Tom Hvitved Date: Thu, 30 Apr 2026 13:33:32 +0200 Subject: [PATCH 139/260] Rust: Use verbose type paths in inline expectation comments --- .../type-inference/associated_types.rs | 12 +- .../type-inference/dereference.rs | 12 +- .../test/library-tests/type-inference/main.rs | 172 +++++++++--------- .../type-inference/pattern_matching.rs | 36 ++-- .../type-inference/raw_pointer.rs | 8 +- .../type-inference/regressions.rs | 4 +- .../type-inference/type-inference.ql | 9 +- .../typeinference/internal/TypeInference.qll | 29 ++- 8 files changed, 153 insertions(+), 129 deletions(-) diff --git a/rust/ql/test/library-tests/type-inference/associated_types.rs b/rust/ql/test/library-tests/type-inference/associated_types.rs index a678a531f8d4..f382f68ec26f 100644 --- a/rust/ql/test/library-tests/type-inference/associated_types.rs +++ b/rust/ql/test/library-tests/type-inference/associated_types.rs @@ -131,9 +131,9 @@ mod default_method_using_associated_type { println!("{:?}", y); let x5 = S2; - println!("{:?}", x5.m1()); // $ target=m1 type=x5.m1():A.S2 + println!("{:?}", x5.m1()); // $ target=m1 type=x5.m1()@Wrapper:S2 let x6 = S2; - println!("{:?}", x6.m2()); // $ target=m2 type=x6.m2():A.S2 + println!("{:?}", x6.m2()); // $ target=m2 type=x6.m2()@Wrapper:S2 } } @@ -400,10 +400,10 @@ mod generic_associated_type { pub fn test() { let s = S; // Call to the method in `impl` block - let _g1 = s.put(1i32); // $ target=S::put type=_g1:A.i32 + let _g1 = s.put(1i32); // $ target=S::put type=_g1@Wrapper:i32 // Call to default implementation in `trait` block - let _g2 = s.put_two(true, false); // $ target=MyTraitAssoc2::put_two MISSING: type=_g2:A.bool + let _g2 = s.put_two(true, false); // $ target=MyTraitAssoc2::put_two MISSING: type=_g2@Wrapper:bool } } @@ -534,12 +534,12 @@ mod generic_associated_type_name_clash { type Output = Result; fn get(&self) -> Self::Output { - Ok(self.0) // $ fieldof=ST type=Ok(...):Result type=Ok(...):T.Output type=Ok(...):E.Output + Ok(self.0) // $ fieldof=ST type=Ok(...)@Result:Output type=Ok(...)@Result:Output } } pub fn test() { - let _y = ST(true).get(); // $ type=_y:Result type=_y:T.bool type=_y:E.bool target=get + let _y = ST(true).get(); // $ type=_y@Result:bool type=_y@Result:bool target=get } } diff --git a/rust/ql/test/library-tests/type-inference/dereference.rs b/rust/ql/test/library-tests/type-inference/dereference.rs index 4767e07576f4..99886987d995 100644 --- a/rust/ql/test/library-tests/type-inference/dereference.rs +++ b/rust/ql/test/library-tests/type-inference/dereference.rs @@ -46,7 +46,7 @@ impl S { fn explicit_monomorphic_dereference() { // Dereference with method call let a1 = MyIntPointer { value: 34i64 }; - let _b1 = a1.deref(); // $ target=MyIntPointer::deref type=_b1:TRef.i64 + let _b1 = a1.deref(); // $ target=MyIntPointer::deref type=_b1@&:i64 // Dereference with overloaded dereference operator let a2 = MyIntPointer { value: 34i64 }; @@ -60,7 +60,7 @@ fn explicit_monomorphic_dereference() { fn explicit_polymorphic_dereference() { // Explicit dereference with type parameter let c1 = MySmartPointer { value: 'a' }; - let _d1 = c1.deref(); // $ target=MySmartPointer::deref type=_d1:TRef.char + let _d1 = c1.deref(); // $ target=MySmartPointer::deref type=_d1@&:char // Explicit dereference with type parameter let c2 = MySmartPointer { value: 'a' }; @@ -74,7 +74,7 @@ fn explicit_polymorphic_dereference() { fn explicit_ref_dereference() { // Explicit dereference with type parameter let e1 = &'a'; - let _f1 = e1.deref(); // $ target=deref type=_f1:TRef.char + let _f1 = e1.deref(); // $ target=deref type=_f1@&:char // Explicit dereference with type parameter let e2 = &'a'; @@ -88,7 +88,7 @@ fn explicit_ref_dereference() { fn explicit_box_dereference() { // Explicit dereference with type parameter let g1: Box = Box::new('a'); // $ target=new - let _h1 = g1.deref(); // $ target=deref type=_h1:TRef.char + let _h1 = g1.deref(); // $ target=deref type=_h1@&:char // Explicit dereference with type parameter let g2: Box = Box::new('a'); // $ target=new @@ -109,9 +109,9 @@ fn implicit_dereference() { let _y = x.is_positive(); // $ target=is_positive type=_y:bool let z = MySmartPointer { value: S(0i64) }; - let z_ = z.foo(); // $ target=foo type=z_:TRef.i64 + let z_ = z.foo(); // $ target=foo type=z_@&:i64 - let v = Vec::new(); // $ target=new type=v:T.i32 + let v = Vec::new(); // $ target=new type=v@Vec:i32 let mut x = MySmartPointer { value: v }; x.push(0); // $ target=push } diff --git a/rust/ql/test/library-tests/type-inference/main.rs b/rust/ql/test/library-tests/type-inference/main.rs index ecb4816ebb01..78d6ef3a2ede 100644 --- a/rust/ql/test/library-tests/type-inference/main.rs +++ b/rust/ql/test/library-tests/type-inference/main.rs @@ -34,7 +34,7 @@ mod field_access { fn generic_field_access() { // Explicit type argument - let x = GenericThing:: { a: S }; // $ certainType=x:A.S + let x = GenericThing:: { a: S }; // $ certainType=x@GenericThing:S println!("{:?}", x.a); // $ fieldof=GenericThing // Implicit type argument @@ -427,7 +427,7 @@ mod method_non_parametric_trait_impl { let x = call_trait_m1(thing_s1); // $ type=x:S1 target=call_trait_m1 println!("{:?}", x); - let y = call_trait_m1(thing_s2); // $ type=y:MyThing type=y:A.S2 target=call_trait_m1 + let y = call_trait_m1(thing_s2); // $ type=y:MyThing type=y@MyThing:S2 target=call_trait_m1 println!("{:?}", y.a); // $ fieldof=MyThing // First implementation @@ -566,7 +566,7 @@ mod trait_default_self_type_parameter { // The trait bound on `T` uses the default for `A` which contains `Self` fn tp_uses_default(thing: S) -> i64 { - let _ms = thing.get_a(); // $ target=TraitWithSelfTp::get_a type=_ms:T.S + let _ms = thing.get_a(); // $ target=TraitWithSelfTp::get_a type=_ms@Option:S 0 } @@ -575,7 +575,7 @@ mod trait_default_self_type_parameter { fn get_a_through_tp(thing: &S) { // `thing` is a `TraitWithSelfTp` through the trait hierarchy - let _ms = get_a(thing); // $ target=get_a type=_ms:T.S + let _ms = get_a(thing); // $ target=get_a type=_ms@Option:S } struct MyStruct { @@ -593,7 +593,7 @@ mod trait_default_self_type_parameter { pub fn test() { let s = MyStruct { value: 0 }; - let _ms = get_a(&s); // $ target=get_a type=_ms:T.MyStruct + let _ms = get_a(&s); // $ target=get_a type=_ms@Option:MyStruct } } @@ -871,7 +871,7 @@ mod method_supertraits { fn type_param_trait_to_supertrait>(x: T) { // Test that `MyTrait3` is a subtrait of `MyTrait1>` - let a = x.m1(); // $ target=MyTrait1::m1 type=a:MyThing type=a:A.S1 + let a = x.m1(); // $ target=MyTrait1::m1 type=a@MyThing:S1 println!("{:?}", a); } @@ -898,7 +898,7 @@ mod method_supertraits { let s = call_trait_m1(x); // $ type=s:S1 target=call_trait_m1 let x = MyThing2 { a: S2 }; - let s = call_trait_m1(x); // $ type=s:MyThing type=s:A.S2 target=call_trait_m1 + let s = call_trait_m1(x); // $ type=s@MyThing:S2 target=call_trait_m1 } } @@ -1011,20 +1011,20 @@ mod type_aliases { println!("{:?}", p1); // Type can be only inferred from the type alias - let p2: MyPair = PairOption::PairNone(); // $ certainType=p2:Fst.S1 certainType=p2:Snd.S2 + let p2: MyPair = PairOption::PairNone(); // $ certainType=p2@PairOption:S1 certainType=p2@PairOption:S2 println!("{:?}", p2); // First type from alias, second from constructor - let p3: AnotherPair<_> = PairOption::PairSnd(S3); // $ certainType=p3:Fst.S2 + let p3: AnotherPair<_> = PairOption::PairSnd(S3); // $ certainType=p3@PairOption:S2 println!("{:?}", p3); // First type from alias definition, second from argument to alias - let p3: AnotherPair = PairOption::PairNone(); // $ certainType=p3:Fst.S2 certainType=p3:Snd.S3 + let p3: AnotherPair = PairOption::PairNone(); // $ certainType=p3@PairOption:S2 certainType=p3@PairOption:S3 println!("{:?}", p3); g(PairOption::PairSnd(PairOption::PairSnd(S3))); // $ target=g - let x: S7; // $ certainType=x:Result $ certainType=x:E.S1 $ certainType=x:T.S4 $ certainType=x:T.T41.S2 $ certainType=x:T.T42.S5 $ certainType=x:T.T42.T5.S2 + let x: S7; // $ certainType=x@Result:S1 $ certainType=x@Result:S4 $ certainType=x@Result.S4:S2 $ certainType=x@Result.S4:S5 $ certainType=x@Result.S4.S5:S2 } } @@ -1068,7 +1068,7 @@ mod option_methods { struct S; pub fn f() { - let x1 = MyOption::::new(); // $ certainType=x1:T.S target=new + let x1 = MyOption::::new(); // $ certainType=x1@MyOption:S target=new println!("{:?}", x1); let mut x2 = MyOption::new(); // $ target=new @@ -1192,14 +1192,14 @@ mod method_call_type_conversion { let x7 = S(&S2); // Non-implicit dereference with nested borrow in order to test that the // implicit dereference handling doesn't affect nested borrows. - let t = x7.m1(); // $ target=m1 type=t:& type=t:TRef.S2 + let t = x7.m1(); // $ target=m1 type=t:& type=t@&:S2 println!("{:?}", x7); let x9: String = "Hello".to_string(); // $ certainType=x9:String target=to_string // Implicit `String` -> `str` conversion happens via the `Deref` trait: // https://doc.rust-lang.org/std/string/struct.String.html#deref. - let u = x9.parse::(); // $ target=parse type=u:T.u32 + let u = x9.parse::(); // $ target=parse type=u@Result:u32 let my_thing = &MyInt { a: 37 }; // implicit borrow of a `&` @@ -1382,7 +1382,7 @@ mod builtins { let z = x + y; // $ type=z:i32 target=add let z = x.abs(); // $ target=abs $ type=z:i32 let c = 'c'; // $ certainType=c:char - let hello = "Hello"; // $ certainType=hello:TRef.str + let hello = "Hello"; // $ certainType=hello@&:str let f = 123.0f64; // $ certainType=f:f64 let t = true; // $ certainType=t:bool let f = false; // $ certainType=f:bool @@ -1403,8 +1403,8 @@ mod builtins { } } - let x = [1, 2, 3].my_method(); // $ target=my_method type=x:TRef.i32 - let x = <[_; 3]>::my_method(&[1, 2, 3]); // $ target=my_method type=x:TRef.i32 + let x = [1, 2, 3].my_method(); // $ target=my_method type=x@&:i32 + let x = <[_; 3]>::my_method(&[1, 2, 3]); // $ target=my_method type=x@&:i32 let x = <[i32; 3]>::my_func(); // $ target=my_func type=x:i32 impl MyTrait for [T] { @@ -1418,8 +1418,8 @@ mod builtins { } let s: &[i32] = &[1, 2, 3]; - let x = s.my_method(); // $ target=my_method type=x:TRef.i32 - let x = <[_]>::my_method(s); // $ target=my_method type=x:TRef.i32 + let x = s.my_method(); // $ target=my_method type=x@&:i32 + let x = <[_]>::my_method(s); // $ target=my_method type=x@&:i32 let x = <[i32]>::my_func(); // $ target=my_func type=x:i32 impl MyTrait for (T, i32) { @@ -1433,8 +1433,8 @@ mod builtins { } let p = (42, 7); - let x = p.my_method(); // $ target=my_method type=x:TRef.i32 - let x = <(_, _)>::my_method(&p); // $ target=my_method type=x:TRef.i32 + let x = p.my_method(); // $ target=my_method type=x@&:i32 + let x = <(_, _)>::my_method(&p); // $ target=my_method type=x@&:i32 let x = <(i32, i32)>::my_func(); // $ target=my_func type=x:i32 impl MyTrait for &T { @@ -1448,8 +1448,8 @@ mod builtins { } let r = &42; - let x = r.my_method(); // $ target=my_method type=x:TRef.i32 - let x = <&_>::my_method(&r); // $ target=my_method type=x:TRef.i32 + let x = r.my_method(); // $ target=my_method type=x@&:i32 + let x = <&_>::my_method(&r); // $ target=my_method type=x@&:i32 let x = <&i32>::my_func(); // $ target=my_func type=x:i32 impl MyTrait for *mut T { @@ -1464,8 +1464,8 @@ mod builtins { let mut v = 42; let p: *mut i32 = &mut v; - let x = unsafe { p.my_method() }; // $ target=my_method type=x:TRef.i32 - let x = unsafe { <*mut _>::my_method(&p) }; // $ target=my_method type=x:TRef.i32 + let x = unsafe { p.my_method() }; // $ target=my_method type=x@&:i32 + let x = unsafe { <*mut _>::my_method(&p) }; // $ target=my_method type=x@&:i32 let x = <*mut i32>::my_func(); // $ target=my_func type=x:i32 } } @@ -2046,7 +2046,7 @@ mod indexers { } pub fn f() { - let mut vec = MyVec::new(); // $ type=vec:T.S target=new + let mut vec = MyVec::new(); // $ type=vec@MyVec:S target=new vec.push(S); // $ target=push vec[0].foo(); // $ target=MyVec::index target=foo @@ -2262,24 +2262,24 @@ mod loops { for i in [1, 2, 3].map(|x| x + 1) {} // $ target=map target=add type=i:i32 for i in [1, 2, 3].into_iter() {} // $ target=into_iter type=i:i32 - let vals1 = [1u8, 2, 3]; // $ type=vals1:TArray.u8 + let vals1 = [1u8, 2, 3]; // $ type=vals1@[;]:u8 for u in vals1 {} // $ type=u:u8 - let vals2 = [1u16; 3]; // $ type=vals2:TArray.u16 + let vals2 = [1u16; 3]; // $ type=vals2@[;]:u16 for u in vals2 {} // $ type=u:u16 - let vals3: [u32; 3] = [1, 2, 3]; // $ certainType=vals3:TArray.u32 + let vals3: [u32; 3] = [1, 2, 3]; // $ certainType=vals3@[;]:u32 for u in vals3 {} // $ type=u:u32 - let vals4: [u64; 3] = [1; 3]; // $ certainType=vals4:TArray.u64 + let vals4: [u64; 3] = [1; 3]; // $ certainType=vals4@[;]:u64 for u in vals4 {} // $ type=u:u64 - let mut strings1 = ["foo", "bar", "baz"]; // $ type=strings1:TArray.TRef.str - for s in &strings1 {} // $ type=s:TRef.TRef.str - for s in &mut strings1 {} // $ type=s:TRefMut.TRef.str - for s in strings1 {} // $ type=s:TRef.str + let mut strings1 = ["foo", "bar", "baz"]; // $ type=strings1@[;].&:str + for s in &strings1 {} // $ type=s@&.&:str + for s in &mut strings1 {} // $ type=s@&mut.&:str + for s in strings1 {} // $ type=s@&:str - let strings2 = // $ type=strings2:TArray.String + let strings2 = // $ type=strings2@[;]:String [ String::from("foo"), // $ target=from String::from("bar"), // $ target=from @@ -2287,15 +2287,15 @@ mod loops { ]; for s in strings2 {} // $ type=s:String - let strings3 = // $ type=strings3:TRef.TArray.String + let strings3 = // $ type=strings3@&.[;]:String &[ String::from("foo"), // $ target=from String::from("bar"), // $ target=from String::from("baz"), // $ target=from ]; - for s in strings3 {} // $ type=s:TRef.String + for s in strings3 {} // $ type=s@&:String - let callables = [MyCallable::new(), MyCallable::new(), MyCallable::new()]; // $ target=new $ type=callables:TArray.MyCallable + let callables = [MyCallable::new(), MyCallable::new(), MyCallable::new()]; // $ target=new $ type=callables@[;]:MyCallable for c // $ type=c:MyCallable in callables { @@ -2305,13 +2305,13 @@ mod loops { // for loops with ranges for i in 0..10 {} // $ type=i:i32 - for u in [0u8..10] {} // $ type=u:Range type=u:Idx.u8 - let range = 0..10; // $ certainType=range:Range type=range:Idx.i32 + for u in [0u8..10] {} // $ type=u:Range type=u@Range:u8 + let range = 0..10; // $ certainType=range:Range type=range@Range:i32 for i in range {} // $ type=i:i32 let range_full = ..; // $ certainType=range_full:RangeFull - for i in &[1i64, 2i64, 3i64][range_full] {} // $ target=index MISSING: type=i:TRef.i64 + for i in &[1i64, 2i64, 3i64][range_full] {} // $ target=index MISSING: type=i@&:i64 - let range1 = // $ certainType=range1:Range type=range1:Idx.u16 + let range1 = // $ certainType=range1:Range type=range1@Range:u16 std::ops::Range { start: 0u16, end: 10u16, @@ -2320,39 +2320,39 @@ mod loops { // for loops with containers - let vals3 = vec![1, 2, 3]; // $ type=vals3:Vec $ MISSING: type=vals3:T.i32 + let vals3 = vec![1, 2, 3]; // $ type=vals3:Vec $ MISSING: type=vals3@Vec:i32 for i in vals3 {} // $ MISSING: type=i:i32 - let vals4a: Vec = [1u16, 2, 3].to_vec(); // $ certainType=vals4a:Vec certainType=vals4a:T.u16 + let vals4a: Vec = [1u16, 2, 3].to_vec(); // $ certainType=vals4a@Vec:u16 for u in vals4a {} // $ type=u:u16 - let vals4b = [1u16, 2, 3].to_vec(); // $ MISSING: type=vals4b:Vec type=vals4b:T.u16 + let vals4b = [1u16, 2, 3].to_vec(); // $ MISSING: type=vals4b:Vec type=vals4b@Vec:u16 for u in vals4b {} // $ MISSING: type=u:u16 - let vals5 = Vec::from([1u32, 2, 3]); // $ certainType=vals5:Vec target=from type=vals5:T.u32 + let vals5 = Vec::from([1u32, 2, 3]); // $ target=from type=vals5@Vec:u32 for u in vals5 {} // $ type=u:u32 - let vals6: Vec<&u64> = [1u64, 2, 3].iter().collect(); // $ certainType=vals6:Vec certainType=vals6:T.TRef.u64 - for u in vals6 {} // $ type=u:TRef.u64 + let vals6: Vec<&u64> = [1u64, 2, 3].iter().collect(); // $ certainType=vals6@Vec.&:u64 + for u in vals6 {} // $ type=u@&:u64 - let mut vals7 = Vec::new(); // $ target=new certainType=vals7:Vec type=vals7:T.u8 + let mut vals7 = Vec::new(); // $ target=new type=vals7@Vec:u8 vals7.push(1u8); // $ target=push for u in vals7 {} // $ type=u:u8 - let matrix1 = vec![vec![1, 2], vec![3, 4]]; // $ type=matrix1:Vec $ MISSING: type=matrix1:T.Vec type=matrix1:T.T.i32 + let matrix1 = vec![vec![1, 2], vec![3, 4]]; // $ type=matrix1:Vec $ MISSING: type=matrix1@T:Vec type=matrix1@Vec.Vec:i32 #[rustfmt::skip] - let _ = for row in matrix1 { // $ MISSING: type=row:Vec type=row:T.i32 + let _ = for row in matrix1 { // $ MISSING: type=row:Vec type=row@Vec:i32 for cell in row { // $ MISSING: type=cell:i32 } }; - let mut map1 = std::collections::HashMap::new(); // $ target=new type=map1:K.i32 type=map1:V.Box $ MISSING: type=map1:Hashmap type1=map1:V.T.TRef.str + let mut map1 = std::collections::HashMap::new(); // $ target=new type=map1@HashMap:i32 type=map1@HashMap.Box.&:str map1.insert(1, Box::new("one")); // $ target=insert target=new map1.insert(2, Box::new("two")); // $ target=insert target=new - for key in map1.keys() {} // $ target=keys type=key:TRef.i32 - for value in map1.values() {} // $ target=values type=value:TRef.Box type=value:TRef.T.TRef.str - for (key, value) in map1.iter() {} // $ target=iter type=key:TRef.i32 type=value:TRef.Box type=value:TRef.T.TRef.str - for (key, value) in &map1 {} // $ type=key:TRef.i32 type=value:TRef.Box type=value:TRef.T.TRef.str + for key in map1.keys() {} // $ target=keys type=key@&:i32 + for value in map1.values() {} // $ target=values type=value@&.Box.&:str + for (key, value) in map1.iter() {} // $ target=iter type=key@&:i32 type=value@&.Box.&:str + for (key, value) in &map1 {} // $ type=key@&:i32 type=value@&.Box.&:str // while loops @@ -2398,27 +2398,27 @@ mod explicit_type_args { } pub fn f() { - let x1: Option> = S1::assoc_fun(); // $ certainType=x1:T.T.S2 target=assoc_fun - let x2 = S1::::assoc_fun(); // $ certainType=x2:T.T.S2 target=assoc_fun - let x3 = S3::assoc_fun(); // $ certainType=x3:T.T.S2 target=assoc_fun - let x4 = S1::::method(S1::default()); // $ target=method target=default certainType=x4:T.S2 - let x5 = S3::method(S1::default()); // $ target=method target=default certainType=x5:T.S2 - let x6 = S4::(Default::default()); // $ type=x6:T4.S2 target=default - let x7 = S4(S2); // $ type=x7:T4.S2 - let x8 = S4(0); // $ type=x8:T4.i32 - let x9 = S4(S2::default()); // $ type=x9:T4.S2 target=default - let x10 = S5:: // $ certainType=x10:T5.S2 + let x1: Option> = S1::assoc_fun(); // $ certainType=x1@Option.S1:S2 target=assoc_fun + let x2 = S1::::assoc_fun(); // $ certainType=x2@Option.S1:S2 target=assoc_fun + let x3 = S3::assoc_fun(); // $ certainType=x3@Option.S1:S2 target=assoc_fun + let x4 = S1::::method(S1::default()); // $ target=method target=default certainType=x4@S1:S2 + let x5 = S3::method(S1::default()); // $ target=method target=default certainType=x5@S1:S2 + let x6 = S4::(Default::default()); // $ type=x6@S4:S2 target=default + let x7 = S4(S2); // $ type=x7@S4:S2 + let x8 = S4(0); // $ type=x8@S4:i32 + let x9 = S4(S2::default()); // $ type=x9@S4:S2 target=default + let x10 = S5:: // $ certainType=x10@S5:S2 { field: Default::default(), // $ target=default }; - let x11 = S5 { field: S2 }; // $ type=x11:T5.S2 - let x12 = S5 { field: 0 }; // $ type=x12:T5.i32 - let x13 = S5 // $ type=x13:T5.S2 + let x11 = S5 { field: S2 }; // $ type=x11@S5:S2 + let x12 = S5 { field: 0 }; // $ type=x12@S5:i32 + let x13 = S5 // $ type=x13@S5:S2 { field: S2::default(), // $ target=default }; let x14 = foo::(Default::default()); // $ certainType=x14:i32 target=default target=foo - let x15 = S1::::default(); // $ certainType=x15:T.S2 target=default + let x15 = S1::::default(); // $ certainType=x15@S1:S2 target=default } } @@ -2454,11 +2454,11 @@ mod tuples { // `a` and `b` to be inferred. let a = Default::default(); // $ target=default type=a:i64 let b = Default::default(); // $ target=default type=b:bool - let pair = (a, b); // $ type=pair:T0.i64 type=pair:T1.bool + let pair = (a, b); // $ type=pair@(T_2):i64 type=pair@(T_2):bool let i: i64 = pair.0; // $ fieldof=Tuple2 let j: bool = pair.1; // $ fieldof=Tuple2 - let pair = [1, 1].into(); // $ type=pair:(T_2) type=pair:T0.i32 type=pair:T1.i32 target=into + let pair = [1, 1].into(); // $ type=pair@(T_2):i32 type=pair@(T_2):i32 target=into match pair { (0, 0) => print!("unexpected"), _ => print!("expected"), @@ -2572,7 +2572,7 @@ mod if_expr { pub fn f(b: bool) -> Box> { let x = if b { let y = Default::default(); // $ target=default - y // $ type=y:T.i32 + y // $ type=y@S:i32 } else { S(2) }; @@ -2648,14 +2648,14 @@ mod context_typed { } pub fn f() { - let x = None; // $ type=x:T.i32 + let x = None; // $ type=x@Option:i32 let x: Option = x; - let x = Option::::None; // $ type=x:T.i32 - let x = Option::None::; // $ type=x:T.i32 + let x = Option::::None; // $ type=x@Option:i32 + let x = Option::None::; // $ type=x@Option:i32 fn pin_option(opt: Option, x: T) {} - let x = None; // $ type=x:T.i32 + let x = None; // $ type=x@Option:i32 pin_option(x, 0); // $ target=pin_option enum MyEither { @@ -2663,33 +2663,33 @@ mod context_typed { B { right: T2 }, } - let x = MyEither::A { left: 0 }; // $ type=x:T1.i32 type=x:T2.String + let x = MyEither::A { left: 0 }; // $ type=x@MyEither:i32 type=x@MyEither:String let x: MyEither = x; - let x = MyEither::<_, String>::A { left: 0 }; // $ type=x:T1.i32 certainType=x:T2.String + let x = MyEither::<_, String>::A { left: 0 }; // $ type=x@MyEither:i32 certainType=x@MyEither:String #[rustfmt::skip] - let x = MyEither::B:: { // $ certainType=x:T1.i32 type=x:T2.String + let x = MyEither::B:: { // $ certainType=x@MyEither:i32 type=x@MyEither:String right: String::new(), // $ target=new }; fn pin_my_either(e: MyEither, x: T) {} #[rustfmt::skip] - let x = MyEither::B { // $ type=x:T1.i32 type=x:T2.String + let x = MyEither::B { // $ type=x@MyEither:i32 type=x@MyEither:String right: String::new(), // $ target=new }; pin_my_either(x, 0); // $ target=pin_my_either - let x = Result::Ok(0); // $ type=x:E.String + let x = Result::Ok(0); // $ type=x@Result:String let x: Result = x; - let x = Result::::Ok(0); // $ type=x:E.String - let x = Result::Ok::(0); // $ type=x:E.String + let x = Result::::Ok(0); // $ type=x@Result:String + let x = Result::Ok::(0); // $ type=x@Result:String fn pin_result(res: Result, x: E) {} - let x = Result::Ok(0); // $ type=x:T.i32 type=x:E.bool + let x = Result::Ok(0); // $ type=x@Result:i32 type=x@Result:bool pin_result(x, false); // $ target=pin_result - let mut x = Vec::new(); // $ type=x:T.i32 target=new + let mut x = Vec::new(); // $ type=x@Vec:i32 target=new x.push(0); // $ target=push let y = Default::default(); // $ type=y:i32 target=default diff --git a/rust/ql/test/library-tests/type-inference/pattern_matching.rs b/rust/ql/test/library-tests/type-inference/pattern_matching.rs index 33e6b9f09f30..bc85b0ee96ff 100755 --- a/rust/ql/test/library-tests/type-inference/pattern_matching.rs +++ b/rust/ql/test/library-tests/type-inference/pattern_matching.rs @@ -37,18 +37,18 @@ pub fn f() -> Option<()> { let value3 = 42; if let ref mesg = value3 { - let mesg = mesg; // $ type=mesg:TRef.i32 + let mesg = mesg; // $ type=mesg@&:i32 println!("{mesg}"); } let value4 = Some(42); if let Some(ref mesg) = value4 { - let mesg = mesg; // $ type=mesg:TRef.i32 + let mesg = mesg; // $ type=mesg@&:i32 println!("{mesg}"); } let ref value5 = 42; - let x = value5; // $ type=x:TRef.i32 + let x = value5; // $ type=x@&:i32 let my_record_struct = MyRecordStruct { value1: 42, @@ -102,27 +102,27 @@ pub fn f() -> Option<()> { ) => { let a = value1; // $ type=a:bool let b = x; // $ type=b:i32 - let c = y; // $ type=c:TRef.str + let c = y; // $ type=c@&:str (); } _ => (), } - let opt1 = Some(Default::default()); // $ type=opt1:T.i32 target=default + let opt1 = Some(Default::default()); // $ type=opt1@Option:i32 target=default #[rustfmt::skip] let _ = if let Some::(x) = opt1 { x; // $ type=x:i32 }; - let opt2 = Some(Default::default()); // $ type=opt2:T.i32 target=default + let opt2 = Some(Default::default()); // $ type=opt2@Option:i32 target=default #[rustfmt::skip] let _ = if let Option::Some::(x) = opt2 { x; // $ type=x:i32 }; - let opt3 = Some(Default::default()); // $ type=opt3:T.i32 target=default + let opt3 = Some(Default::default()); // $ type=opt3@Option:i32 target=default #[rustfmt::skip] let _ = if let Option::::Some(x) = opt3 { @@ -197,7 +197,7 @@ pub fn literal_patterns() { let string_val = "hello"; match string_val { "hello" => { - let hello_match = string_val; // $ certainType=hello_match:TRef.str + let hello_match = string_val; // $ certainType=hello_match@&:str println!("String literal: {}", hello_match); } _ => {} @@ -230,7 +230,7 @@ pub fn identifier_patterns() { // IdentPat with ref match &value { ref x => { - let ref_bound = x; // $ type=ref_bound:TRef.TRef.i32 + let ref_bound = x; // $ type=ref_bound@&.&:i32 println!("Reference identifier: {:?}", ref_bound); } } @@ -269,7 +269,7 @@ pub fn identifier_patterns() { let mut ref_mut_val = 5i32; match &mut ref_mut_val { ref mut x => { - let ref_mut_bound = x; // $ type=ref_mut_bound:TRefMut.TRefMut.i32 + let ref_mut_bound = x; // $ type=ref_mut_bound@&mut.&mut:i32 **ref_mut_bound += 1; // $ target=deref target=add_assign println!("Ref mut pattern"); } @@ -341,14 +341,14 @@ pub fn reference_patterns() { match &mut mutable_value { &mut ref x => { - let mut_ref_bound = x; // $ type=mut_ref_bound:TRef.i32 + let mut_ref_bound = x; // $ type=mut_ref_bound@&:i32 println!("Mutable ref pattern: {}", mut_ref_bound); } } match &value { ref x => { - let ref_pattern = x; // $ type=ref_pattern:TRef.TRef.i32 + let ref_pattern = x; // $ type=ref_pattern@&.&:i32 println!("Reference pattern: {}", ref_pattern); } } @@ -525,7 +525,7 @@ pub fn slice_patterns() { // SlicePat - Slice patterns match slice { [] => { - let empty_slice = slice; // $ certainType=empty_slice:TRef.TSlice.i32 + let empty_slice = slice; // $ certainType=empty_slice@&.[]:i32 println!("Empty slice: {:?}", empty_slice); } [x] => { @@ -540,7 +540,7 @@ pub fn slice_patterns() { [first, middle @ .., last] => { let slice_start = *first; // $ MISSING: type=slice_start:i32 let slice_end = *last; // $ MISSING: type=slice_end:i32 - let slice_middle = middle; // $ MISSING: type=slice_middle:TRef.TSlice.i32 + let slice_middle = middle; // $ MISSING: type=slice_middle@&.[]:i32 println!( "First: {}, last: {}, middle len: {}", slice_start, @@ -717,7 +717,7 @@ pub fn complex_nested_patterns() { } // Catch-all with identifier pattern other => { - let other_complex = other; // $ type=other_complex:T0.Point type=other_complex:T1.MyOption + let other_complex = other; // $ type=other_complex@(T_2):Point type=other_complex@(T_2):MyOption println!("Other complex data: {:?}", other_complex); } } @@ -750,7 +750,7 @@ pub fn patterns_in_let_statements() { // Let with reference pattern let value = 42i32; let ref ref_val = value; - let let_ref = ref_val; // $ certainType=let_ref:TRef.i32 + let let_ref = ref_val; // $ certainType=let_ref@&:i32 // Let with mutable pattern let mut mut_val = 10i32; @@ -779,13 +779,13 @@ pub fn patterns_in_function_parameters() { // Call the functions to use them let point = Point { x: 5, y: 10 }; - let extracted = extract_point(point); // $ target=extract_point certainType=extracted:T0.i32 certainType=extracted:T1.i32 + let extracted = extract_point(point); // $ target=extract_point certainType=extracted@(T_2):i32 certainType=extracted@(T_2):i32 let color = Color(200, 100, 50); let red = extract_color(color); // $ target=extract_color certainType=red:u8 let tuple = (42i32, 3.14f64, true); - let tuple_extracted = extract_tuple(tuple); // $ target=extract_tuple certainType=tuple_extracted:T0.i32 certainType=tuple_extracted:T1.bool + let tuple_extracted = extract_tuple(tuple); // $ target=extract_tuple certainType=tuple_extracted@(T_2):i32 certainType=tuple_extracted@(T_2):bool } #[rustfmt::skip] diff --git a/rust/ql/test/library-tests/type-inference/raw_pointer.rs b/rust/ql/test/library-tests/type-inference/raw_pointer.rs index bf4537f30ce6..065396b35f57 100644 --- a/rust/ql/test/library-tests/type-inference/raw_pointer.rs +++ b/rust/ql/test/library-tests/type-inference/raw_pointer.rs @@ -12,7 +12,7 @@ fn raw_pointer_mut_deref(x: *mut bool) -> i32 { fn raw_const_borrow() { let a: i64 = 10; - let x = &raw const a; // $ type=x:TPtrConst.i64 + let x = &raw const a; // $ type=x@*const:i64 unsafe { let _y = *x; // $ type=_y:i64 } @@ -20,7 +20,7 @@ fn raw_const_borrow() { fn raw_mut_borrow() { let mut a = 10i32; - let x = &raw mut a; // $ type=x:TPtrMut.i32 + let x = &raw mut a; // $ type=x@*mut:i32 unsafe { let _y = *x; // $ type=_y:i32 } @@ -29,7 +29,7 @@ fn raw_mut_borrow() { fn raw_mut_write(cond: bool) { let a = 10i32; // The type of `ptr_written` must be inferred from the write below. - let ptr_written = null_mut(); // $ target=null_mut type=ptr_written:TPtrMut.i32 + let ptr_written = null_mut(); // $ target=null_mut type=ptr_written@*mut:i32 if cond { unsafe { // NOTE: This write is undefined behavior because `ptr_written` is a null pointer. @@ -41,7 +41,7 @@ fn raw_mut_write(cond: bool) { fn raw_type_from_deref(cond: bool) { // The type of `ptr_read` must be inferred from the read below. - let ptr_read = null_mut(); // $ target=null_mut type=ptr_read:TPtrMut.i64 + let ptr_read = null_mut(); // $ target=null_mut type=ptr_read@*mut:i64 if cond { unsafe { // NOTE: This read is undefined behavior because `ptr_read` is a null pointer. diff --git a/rust/ql/test/library-tests/type-inference/regressions.rs b/rust/ql/test/library-tests/type-inference/regressions.rs index 465475475bfb..d854f55a1adc 100644 --- a/rust/ql/test/library-tests/type-inference/regressions.rs +++ b/rust/ql/test/library-tests/type-inference/regressions.rs @@ -149,7 +149,7 @@ mod regression5 { fn foo() -> S2 { let x = S1.into(); // $ target=into - x // $ type=x:T2.S1 + x // $ type=x@S2:S1 } } @@ -176,6 +176,6 @@ mod regression6 { } fn foo() { - let x = S(0) + S(1); // $ target=add1 $ SPURIOUS: target=add2 type=x:T.T.i32 + let x = S(0) + S(1); // $ target=add1 $ SPURIOUS: target=add2 type=x@S.S:i32 } } diff --git a/rust/ql/test/library-tests/type-inference/type-inference.ql b/rust/ql/test/library-tests/type-inference/type-inference.ql index c4653f557ac7..fa07dd4471e7 100644 --- a/rust/ql/test/library-tests/type-inference/type-inference.ql +++ b/rust/ql/test/library-tests/type-inference/type-inference.ql @@ -67,7 +67,7 @@ module TypeTest implements TestSig { predicate hasActualResult(Location location, string element, string tag, string value) { none() } predicate hasOptionalResult(Location location, string element, string tag, string value) { - exists(AstNode n, TypePath path, Type t | + exists(AstNode n, TypePath path, Type t, string at | t = TypeInference::inferType(n, path) and ( tag = "type" @@ -76,11 +76,8 @@ module TypeTest implements TestSig { tag = "certainType" ) and location = n.getLocation() and - ( - if path.isEmpty() - then value = element + ":" + t - else value = element + ":" + path.toString() + "." + t.toString() - ) and + (if path.isEmpty() then at = "" else at = "@" + TypePath::printTypePathVerbose(path)) and + value = element + at + ":" + t.toString() and element = [n.toString(), n.(IdentPat).getName().getText()] ) } diff --git a/shared/typeinference/codeql/typeinference/internal/TypeInference.qll b/shared/typeinference/codeql/typeinference/internal/TypeInference.qll index 1f4400d8f2d7..cf82d77b5e1d 100644 --- a/shared/typeinference/codeql/typeinference/internal/TypeInference.qll +++ b/shared/typeinference/codeql/typeinference/internal/TypeInference.qll @@ -275,7 +275,34 @@ module Make1 Input1> { class TypePath = UnboundList; /** Provides predicates for constructing `TypePath`s. */ - module TypePath = UnboundList; + module TypePath { + import UnboundList + + private string printTypeParameterVerbose(TypeParameter tp) { + exists(Type t | + t.getATypeParameter() = tp and + result = t.toString() + "<" + tp.toString() + ">" + ) + } + + /** + * Gets a verbose textual representation of `path`, which includes the names + * of the types that the type parameters belong to. + * + * For example, the verbose textual representation of the path `"T1.T2"` is + * `"S1.S2"`, provided that `T1` is a type parameter of `S1` and `T2` + * is a type parameter of `S2`. + */ + bindingset[path] + string printTypePathVerbose(TypePath path) { + result = + concat(int i, TypeParameter e | + e = path.getElement(i) + | + printTypeParameterVerbose(e), "." order by i + ) + } + } /** * A class that has a type tree associated with it. From 80d5e27b46885021323addc53026bbedcd913b30 Mon Sep 17 00:00:00 2001 From: Anders Schack-Mulligen Date: Tue, 28 Apr 2026 11:03:03 +0200 Subject: [PATCH 140/260] C#: Deprecate Ssa::ImplicitEntryDefinition. --- csharp/ql/lib/semmle/code/csharp/dataflow/SSA.qll | 4 +++- .../semmle/code/csharp/dataflow/internal/DataFlowPrivate.qll | 5 +---- 2 files changed, 4 insertions(+), 5 deletions(-) diff --git a/csharp/ql/lib/semmle/code/csharp/dataflow/SSA.qll b/csharp/ql/lib/semmle/code/csharp/dataflow/SSA.qll index d29ace056b94..edc7e6a6a89b 100644 --- a/csharp/ql/lib/semmle/code/csharp/dataflow/SSA.qll +++ b/csharp/ql/lib/semmle/code/csharp/dataflow/SSA.qll @@ -529,11 +529,13 @@ module Ssa { } /** + * DEPRECATED: Use `SsaParameterInit` or `SsaImplicitEntryDefinition` instead. + * * An SSA definition representing the implicit initialization of a variable * at the beginning of a callable. Either a local scope variable captured by * the callable or a field or property accessed inside the callable. */ - class ImplicitEntryDefinition extends ImplicitDefinition { + deprecated class ImplicitEntryDefinition extends ImplicitDefinition { ImplicitEntryDefinition() { exists(BasicBlock bb, SourceVariable v | this.definesAt(v, bb, -1) and diff --git a/csharp/ql/lib/semmle/code/csharp/dataflow/internal/DataFlowPrivate.qll b/csharp/ql/lib/semmle/code/csharp/dataflow/internal/DataFlowPrivate.qll index f581628a79c0..7b1d35c6e5a8 100644 --- a/csharp/ql/lib/semmle/code/csharp/dataflow/internal/DataFlowPrivate.qll +++ b/csharp/ql/lib/semmle/code/csharp/dataflow/internal/DataFlowPrivate.qll @@ -1430,7 +1430,7 @@ private module ParameterNodes { } /** An implicit entry definition for a captured variable. */ - class SsaCapturedEntryDefinition extends Ssa::ImplicitEntryDefinition { + deprecated class SsaCapturedEntryDefinition extends Ssa::ImplicitEntryDefinition { private LocalScopeVariable v; SsaCapturedEntryDefinition() { this.getSourceVariable().getAssignable() = v } @@ -2011,9 +2011,6 @@ private class FieldOrPropertyRead extends FieldOrPropertyAccess, AssignableRead exists(SsaDefinition def, Ssa::ImplicitDefinition idef | def.getARead() = this and idef = def.getAnUltimateDefinition() - | - idef instanceof Ssa::ImplicitEntryDefinition or - idef instanceof Ssa::ImplicitCallDefinition ) } } From de96b5acfd8910ec6e4970f5c3bad0362d01f3c4 Mon Sep 17 00:00:00 2001 From: Anders Schack-Mulligen Date: Tue, 28 Apr 2026 11:15:13 +0200 Subject: [PATCH 141/260] C#: Deprecate Ssa::ImplicitDefinition. --- csharp/ql/lib/semmle/code/csharp/dataflow/SSA.qll | 8 +++++--- .../code/csharp/dataflow/internal/DataFlowPrivate.qll | 4 ++-- .../internal/rangeanalysis/SignAnalysisSpecific.qll | 4 ++-- 3 files changed, 9 insertions(+), 7 deletions(-) diff --git a/csharp/ql/lib/semmle/code/csharp/dataflow/SSA.qll b/csharp/ql/lib/semmle/code/csharp/dataflow/SSA.qll index edc7e6a6a89b..be265188e5d2 100644 --- a/csharp/ql/lib/semmle/code/csharp/dataflow/SSA.qll +++ b/csharp/ql/lib/semmle/code/csharp/dataflow/SSA.qll @@ -509,13 +509,15 @@ module Ssa { } /** + * DEPRECATED: Use `SsaParameterInit` or `SsaImplicitWrite` instead. + * * An SSA definition that does not correspond to an explicit variable definition. * Either an implicit initialization of a variable at the beginning of a callable * (`ImplicitEntryDefinition`), an implicit definition via a call * (`ImplicitCallDefinition`), or an implicit definition where the qualifier is * updated (`ImplicitQualifierDefinition`). */ - class ImplicitDefinition extends Definition, SsaImpl::WriteDefinition { + deprecated class ImplicitDefinition extends Definition, SsaImpl::WriteDefinition { ImplicitDefinition() { exists(BasicBlock bb, SourceVariable v, int i | this.definesAt(v, bb, i) | SsaImpl::implicitEntryDefinition(bb, v) and @@ -596,7 +598,7 @@ module Ssa { * An SSA definition representing the potential definition of a variable * via a call. */ - class ImplicitCallDefinition extends ImplicitDefinition { + class ImplicitCallDefinition extends SsaImplicitWrite { private Call c; ImplicitCallDefinition() { @@ -629,7 +631,7 @@ module Ssa { * An SSA definition representing the potential definition of a variable * via an SSA definition for the qualifier. */ - class ImplicitQualifierDefinition extends ImplicitDefinition, SsaImpl::WriteDefinition { + class ImplicitQualifierDefinition extends SsaImplicitWrite { private Definition q; ImplicitQualifierDefinition() { diff --git a/csharp/ql/lib/semmle/code/csharp/dataflow/internal/DataFlowPrivate.qll b/csharp/ql/lib/semmle/code/csharp/dataflow/internal/DataFlowPrivate.qll index 7b1d35c6e5a8..ccf65ddb37c3 100644 --- a/csharp/ql/lib/semmle/code/csharp/dataflow/internal/DataFlowPrivate.qll +++ b/csharp/ql/lib/semmle/code/csharp/dataflow/internal/DataFlowPrivate.qll @@ -2008,9 +2008,9 @@ private class FieldOrPropertyRead extends FieldOrPropertyAccess, AssignableRead * SSA updates. */ predicate hasNonlocalValue() { - exists(SsaDefinition def, Ssa::ImplicitDefinition idef | + exists(SsaDefinition def | def.getARead() = this and - idef = def.getAnUltimateDefinition() + def.getAnUltimateDefinition() instanceof SsaImplicitWrite ) } } diff --git a/csharp/ql/lib/semmle/code/csharp/dataflow/internal/rangeanalysis/SignAnalysisSpecific.qll b/csharp/ql/lib/semmle/code/csharp/dataflow/internal/rangeanalysis/SignAnalysisSpecific.qll index 77e30d239fd3..48ed00858a0d 100644 --- a/csharp/ql/lib/semmle/code/csharp/dataflow/internal/rangeanalysis/SignAnalysisSpecific.qll +++ b/csharp/ql/lib/semmle/code/csharp/dataflow/internal/rangeanalysis/SignAnalysisSpecific.qll @@ -144,12 +144,12 @@ private module Impl { } /** Gets the variable underlying the implicit SSA variable `def`. */ - Declaration getImplicitSsaDeclaration(Ssa::ImplicitDefinition def) { + Declaration getImplicitSsaDeclaration(SsaImplicitWrite def) { result = def.getSourceVariable().getAssignable() } /** Holds if the variable underlying the implicit SSA variable `def` is not a field. */ - predicate nonFieldImplicitSsaDefinition(Ssa::ImplicitDefinition def) { + predicate nonFieldImplicitSsaDefinition(SsaImplicitWrite def) { not getImplicitSsaDeclaration(def) instanceof Field } From 55b83ca22aa04480b0bc901f1bbe9b99a9b47db1 Mon Sep 17 00:00:00 2001 From: Anders Schack-Mulligen Date: Tue, 28 Apr 2026 11:20:54 +0200 Subject: [PATCH 142/260] C#: Deprecate Ssa::Definition in favour of SsaDefinition. --- csharp/ql/lib/semmle/code/csharp/dataflow/SSA.qll | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/csharp/ql/lib/semmle/code/csharp/dataflow/SSA.qll b/csharp/ql/lib/semmle/code/csharp/dataflow/SSA.qll index be265188e5d2..4a7f774af072 100644 --- a/csharp/ql/lib/semmle/code/csharp/dataflow/SSA.qll +++ b/csharp/ql/lib/semmle/code/csharp/dataflow/SSA.qll @@ -74,7 +74,7 @@ module Ssa { * Gets an SSA definition that has this variable as its underlying * source variable. */ - Definition getAnSsaDefinition() { result.getSourceVariable() = this } + SsaDefinition getAnSsaDefinition() { result.getSourceVariable() = this } } /** Provides different types of `SourceVariable`s. */ @@ -193,11 +193,13 @@ module Ssa { predicate isLiveOutRefParameterDefinition = SsaImpl::isLiveOutRefParameterDefinition/2; /** + * DEPRECATED: Use `SsaDefinition` instead. + * * A static single assignment (SSA) definition. Either an explicit variable * definition (`ExplicitDefinition`), an implicit variable definition * (`ImplicitDefinition`), or a phi node (`PhiNode`). */ - class Definition extends SsaImpl::Definition { + deprecated class Definition extends SsaImpl::Definition { /** Gets the control flow node of this SSA definition. */ final ControlFlowNode getControlFlowNode() { exists(BasicBlock bb, int i | this.definesAt(_, bb, i) | result = bb.getNode(0.maximum(i))) @@ -632,7 +634,7 @@ module Ssa { * via an SSA definition for the qualifier. */ class ImplicitQualifierDefinition extends SsaImplicitWrite { - private Definition q; + private SsaDefinition q; ImplicitQualifierDefinition() { exists(BasicBlock bb, int i, SourceVariables::QualifiedFieldOrPropSourceVariable v | @@ -644,7 +646,7 @@ module Ssa { } /** Gets the SSA definition for the qualifier. */ - final Definition getQualifierDefinition() { result = q } + final SsaDefinition getQualifierDefinition() { result = q } override string toString() { result = "SSA qualifier def(" + this.getSourceVariable() + ")" } } From bedadc9f04f388e6c13ef9c2a3f2584dc42a46cc Mon Sep 17 00:00:00 2001 From: Anders Schack-Mulligen Date: Tue, 28 Apr 2026 13:35:14 +0200 Subject: [PATCH 143/260] C#: Deprecate some SSA internals. --- .../code/csharp/dataflow/internal/SsaImpl.qll | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/csharp/ql/lib/semmle/code/csharp/dataflow/internal/SsaImpl.qll b/csharp/ql/lib/semmle/code/csharp/dataflow/internal/SsaImpl.qll index a610fd4bcd41..6db089928e0d 100644 --- a/csharp/ql/lib/semmle/code/csharp/dataflow/internal/SsaImpl.qll +++ b/csharp/ql/lib/semmle/code/csharp/dataflow/internal/SsaImpl.qll @@ -78,11 +78,11 @@ module Ssa_ = Impl::MakeSsa; class Definition = Impl::Definition; -class WriteDefinition = Impl::WriteDefinition; +deprecated class WriteDefinition = Impl::WriteDefinition; -class UncertainWriteDefinition = Impl::UncertainWriteDefinition; +deprecated class UncertainWriteDefinition = Impl::UncertainWriteDefinition; -class PhiNode = Impl::PhiNode; +deprecated class PhiNode = Impl::PhiNode; module Consistency = Impl::Consistency; @@ -868,7 +868,7 @@ private module Cached { } cached - predicate isLiveAtEndOfBlock(Definition def, BasicBlock bb) { + deprecated predicate isLiveAtEndOfBlock(Definition def, BasicBlock bb) { Impl::ssaDefReachesEndOfBlock(bb, def, _) } @@ -878,7 +878,7 @@ private module Cached { } cached - AssignableRead getAReadAtNode(Definition def, ControlFlowNode cfn) { + deprecated AssignableRead getAReadAtNode(Definition def, ControlFlowNode cfn) { exists(Ssa::SourceVariable v, BasicBlock bb, int i | Impl::ssaDefReachesRead(v, def, bb, i) and variableReadActual(bb, i, v) and @@ -1012,9 +1012,9 @@ private module DataFlowIntegrationInput implements Impl::DataFlowIntegrationInpu predicate hasCfgNode(BasicBlock bb, int i) { this = bb.getNode(i) } } - Expr getARead(Definition def) { exists(getAReadAtNode(def, result)) } + Expr getARead(Definition def) { def.(SsaDefinition).getARead().getControlFlowNode() = result } - predicate ssaDefHasSource(WriteDefinition def) { + predicate ssaDefHasSource(Impl::WriteDefinition def) { // exclude flow directly from RHS to SSA definition, as we instead want to // go from RHS to matching assignable definition, and from there to SSA definition def instanceof SsaParameterInit @@ -1024,7 +1024,7 @@ private module DataFlowIntegrationInput implements Impl::DataFlowIntegrationInpu * Allows for flow into uncertain defintions that are not call definitions, * as we, conservatively, consider such definitions to be certain. */ - predicate allowFlowIntoUncertainDef(UncertainWriteDefinition def) { + predicate allowFlowIntoUncertainDef(Impl::UncertainWriteDefinition def) { def instanceof SsaExplicitWrite or def = From e0421dbf536230046c5ac20e502df469d47630f4 Mon Sep 17 00:00:00 2001 From: Anders Schack-Mulligen Date: Tue, 28 Apr 2026 13:38:14 +0200 Subject: [PATCH 144/260] C#: Reinstate toString for SSA data flow nodes. --- csharp/ql/lib/semmle/code/csharp/dataflow/SSA.qll | 14 -------------- .../code/csharp/dataflow/internal/SsaImpl.qll | 4 ++++ shared/ssa/codeql/ssa/Ssa.qll | 4 +++- 3 files changed, 7 insertions(+), 15 deletions(-) diff --git a/csharp/ql/lib/semmle/code/csharp/dataflow/SSA.qll b/csharp/ql/lib/semmle/code/csharp/dataflow/SSA.qll index 4a7f774af072..c251a30b3515 100644 --- a/csharp/ql/lib/semmle/code/csharp/dataflow/SSA.qll +++ b/csharp/ql/lib/semmle/code/csharp/dataflow/SSA.qll @@ -506,8 +506,6 @@ module Ssa { } override Element getElement() { result = ad.getElement() } - - override string toString() { result = "SSA def(" + this.getSourceVariable() + ")" } } /** @@ -551,12 +549,6 @@ module Ssa { final Callable getCallable() { result = this.getBasicBlock().getEnclosingCallable() } override Element getElement() { result = this.getCallable() } - - override string toString() { - if this.getSourceVariable().getAssignable() instanceof LocalScopeVariable - then result = "SSA capture def(" + this.getSourceVariable() + ")" - else result = "SSA entry def(" + this.getSourceVariable() + ")" - } } /** @@ -590,10 +582,6 @@ module Ssa { /** Gets the parameter that this entry definition represents. */ Parameter getParameter() { result = p } - - override string toString() { - result = "SSA param_default(" + pragma[only_bind_out](this.getParameter()) + ")" - } } /** @@ -687,8 +675,6 @@ module Ssa { predicate hasInputFromBlock(Definition inp, BasicBlock bb) { inp = SsaImpl::phiHasInputFromBlock(this, bb) } - - override string toString() { result = "SSA phi(" + this.getSourceVariable() + ")" } } /** diff --git a/csharp/ql/lib/semmle/code/csharp/dataflow/internal/SsaImpl.qll b/csharp/ql/lib/semmle/code/csharp/dataflow/internal/SsaImpl.qll index 6db089928e0d..218b8c977170 100644 --- a/csharp/ql/lib/semmle/code/csharp/dataflow/internal/SsaImpl.qll +++ b/csharp/ql/lib/semmle/code/csharp/dataflow/internal/SsaImpl.qll @@ -78,6 +78,10 @@ module Ssa_ = Impl::MakeSsa; class Definition = Impl::Definition; +private class SsaDefinitionToStringProxy extends Definition { + override string toString() { result = this.(SsaDefinition).toString() } +} + deprecated class WriteDefinition = Impl::WriteDefinition; deprecated class UncertainWriteDefinition = Impl::UncertainWriteDefinition; diff --git a/shared/ssa/codeql/ssa/Ssa.qll b/shared/ssa/codeql/ssa/Ssa.qll index 8d6b960b2833..861f797ed6d0 100644 --- a/shared/ssa/codeql/ssa/Ssa.qll +++ b/shared/ssa/codeql/ssa/Ssa.qll @@ -1054,7 +1054,7 @@ module Make< /** A static single assignment (SSA) definition. */ class SsaDefinition extends FinalDefinition { /** Gets a textual representation of this SSA definition. */ - string toString() { result = super.toString() } + string toString() { result = "SSA def(" + this.getSourceVariable() + ")" } /** * Gets the control flow node of this SSA definition. @@ -1207,6 +1207,8 @@ module Make< * a phi definition for `x` is inserted just before the call `puts x`. */ class SsaPhiDefinition extends SsaDefinition instanceof PhiNode { + override string toString() { result = "SSA phi(" + this.getSourceVariable() + ")" } + /** Holds if `inp` is an input to this phi definition along the edge originating in `bb`. */ predicate hasInputFromBlock(SsaDefinition inp, BasicBlock bb) { phiHasInputFromBlockCached(this, inp, bb) From 77807c83f84c531946a5d219b7a7480e43231c05 Mon Sep 17 00:00:00 2001 From: Anders Schack-Mulligen Date: Tue, 28 Apr 2026 14:46:43 +0200 Subject: [PATCH 145/260] C#: Exclude entry definitions from qualifier definitions. --- csharp/ql/lib/semmle/code/csharp/dataflow/SSA.qll | 1 + 1 file changed, 1 insertion(+) diff --git a/csharp/ql/lib/semmle/code/csharp/dataflow/SSA.qll b/csharp/ql/lib/semmle/code/csharp/dataflow/SSA.qll index c251a30b3515..23e1ee0afda6 100644 --- a/csharp/ql/lib/semmle/code/csharp/dataflow/SSA.qll +++ b/csharp/ql/lib/semmle/code/csharp/dataflow/SSA.qll @@ -625,6 +625,7 @@ module Ssa { private SsaDefinition q; ImplicitQualifierDefinition() { + not this instanceof SsaImplicitEntryDefinition and exists(BasicBlock bb, int i, SourceVariables::QualifiedFieldOrPropSourceVariable v | this.definesAt(v, bb, i) | From ff8ab191d13d73919cbeafdc7e3561d6970a4a64 Mon Sep 17 00:00:00 2001 From: Anders Schack-Mulligen Date: Tue, 28 Apr 2026 15:06:59 +0200 Subject: [PATCH 146/260] C#: Drop caching for deprecated predicates. --- .../code/csharp/dataflow/internal/SsaImpl.qll | 80 +++++++++---------- 1 file changed, 37 insertions(+), 43 deletions(-) diff --git a/csharp/ql/lib/semmle/code/csharp/dataflow/internal/SsaImpl.qll b/csharp/ql/lib/semmle/code/csharp/dataflow/internal/SsaImpl.qll index 218b8c977170..0f08e6d66ddf 100644 --- a/csharp/ql/lib/semmle/code/csharp/dataflow/internal/SsaImpl.qll +++ b/csharp/ql/lib/semmle/code/csharp/dataflow/internal/SsaImpl.qll @@ -828,14 +828,6 @@ private module Cached { ) } - cached - deprecated AssignableDefinition getADefinition(Ssa::ExplicitDefinition def) { - exists(Ssa::SourceVariable v, AssignableDefinition ad | explicitDefinition(def, v, ad) | - result = ad or - result = getASameOutRefDefAfter(v, ad) - ) - } - /** * Holds if `call` may change the value of field or property `fp`. The actual * update occurs in `setter`. @@ -861,36 +853,6 @@ private module Cached { not updatesNamedFieldOrProp(bb, i, _, v, _) } - cached - deprecated predicate explicitDefinition( - WriteDefinition def, Ssa::SourceVariable v, AssignableDefinition ad - ) { - exists(BasicBlock bb, int i | - def.definesAt(v, bb, i) and - variableDefinition(bb, i, v, ad) - ) - } - - cached - deprecated predicate isLiveAtEndOfBlock(Definition def, BasicBlock bb) { - Impl::ssaDefReachesEndOfBlock(bb, def, _) - } - - cached - deprecated Definition phiHasInputFromBlock(Ssa::PhiNode phi, BasicBlock bb) { - Impl::phiHasInputFromBlock(phi, result, bb) - } - - cached - deprecated AssignableRead getAReadAtNode(Definition def, ControlFlowNode cfn) { - exists(Ssa::SourceVariable v, BasicBlock bb, int i | - Impl::ssaDefReachesRead(v, def, bb, i) and - variableReadActual(bb, i, v) and - cfn = bb.getNode(i) and - result.getControlFlowNode() = cfn - ) - } - /** * Holds if the value defined at SSA definition `def` can reach a read at `cfn`, * without passing through any other read. @@ -915,11 +877,6 @@ private module Cached { ) } - cached - deprecated Definition uncertainWriteDefinitionInput(UncertainWriteDefinition def) { - Impl::uncertainWriteDefinitionInput(def, result) - } - /** * Holds if the SSA definition `def` assigns to `out`/`ref` parameter `p`, and the * parameter may remain unchanged throughout the rest of the enclosing callable. @@ -1009,6 +966,43 @@ private module Cached { import Cached +deprecated AssignableDefinition getADefinition(Ssa::ExplicitDefinition def) { + exists(Ssa::SourceVariable v, AssignableDefinition ad | explicitDefinition(def, v, ad) | + result = ad or + result = getASameOutRefDefAfter(v, ad) + ) +} + +deprecated predicate explicitDefinition( + WriteDefinition def, Ssa::SourceVariable v, AssignableDefinition ad +) { + exists(BasicBlock bb, int i | + def.definesAt(v, bb, i) and + variableDefinition(bb, i, v, ad) + ) +} + +deprecated predicate isLiveAtEndOfBlock(Definition def, BasicBlock bb) { + Impl::ssaDefReachesEndOfBlock(bb, def, _) +} + +deprecated Definition phiHasInputFromBlock(Ssa::PhiNode phi, BasicBlock bb) { + Impl::phiHasInputFromBlock(phi, result, bb) +} + +deprecated AssignableRead getAReadAtNode(Definition def, ControlFlowNode cfn) { + exists(Ssa::SourceVariable v, BasicBlock bb, int i | + Impl::ssaDefReachesRead(v, def, bb, i) and + variableReadActual(bb, i, v) and + cfn = bb.getNode(i) and + result.getControlFlowNode() = cfn + ) +} + +deprecated Definition uncertainWriteDefinitionInput(UncertainWriteDefinition def) { + Impl::uncertainWriteDefinitionInput(def, result) +} + private module DataFlowIntegrationInput implements Impl::DataFlowIntegrationInputSig { private import codeql.util.Boolean From a291548fd8070934135754ec3939a79e5fe5b0ee Mon Sep 17 00:00:00 2001 From: Tom Hvitved Date: Thu, 30 Apr 2026 14:31:24 +0200 Subject: [PATCH 147/260] Update rust/ql/test/library-tests/type-inference/main.rs Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> --- rust/ql/test/library-tests/type-inference/main.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rust/ql/test/library-tests/type-inference/main.rs b/rust/ql/test/library-tests/type-inference/main.rs index 78d6ef3a2ede..ddba6c53da86 100644 --- a/rust/ql/test/library-tests/type-inference/main.rs +++ b/rust/ql/test/library-tests/type-inference/main.rs @@ -2339,7 +2339,7 @@ mod loops { vals7.push(1u8); // $ target=push for u in vals7 {} // $ type=u:u8 - let matrix1 = vec![vec![1, 2], vec![3, 4]]; // $ type=matrix1:Vec $ MISSING: type=matrix1@T:Vec type=matrix1@Vec.Vec:i32 + let matrix1 = vec![vec![1, 2], vec![3, 4]]; // $ type=matrix1:Vec $ MISSING: type=matrix1@Vec:Vec type=matrix1@Vec.Vec:i32 #[rustfmt::skip] let _ = for row in matrix1 { // $ MISSING: type=row:Vec type=row@Vec:i32 for cell in row { // $ MISSING: type=cell:i32 From 4fd02220c783468ead2c2bc110c172a7d19f506f Mon Sep 17 00:00:00 2001 From: Kristen Newbury Date: Thu, 30 Apr 2026 10:50:06 -0400 Subject: [PATCH 148/260] Update help files CWE-829/UntrustedCheckoutX --- .../CWE-829/UntrustedCheckoutCritical.md | 32 ++++++++++++++++++- .../Security/CWE-829/UntrustedCheckoutHigh.md | 32 ++++++++++++++++++- .../CWE-829/UntrustedCheckoutMedium.md | 32 ++++++++++++++++++- 3 files changed, 93 insertions(+), 3 deletions(-) diff --git a/actions/ql/src/Security/CWE-829/UntrustedCheckoutCritical.md b/actions/ql/src/Security/CWE-829/UntrustedCheckoutCritical.md index a4fceb1f8da3..a6dd437c1baf 100644 --- a/actions/ql/src/Security/CWE-829/UntrustedCheckoutCritical.md +++ b/actions/ql/src/Security/CWE-829/UntrustedCheckoutCritical.md @@ -1,6 +1,35 @@ ## Overview -GitHub workflows can be triggered through various repository events, including incoming pull requests (PRs) or comments on Issues/PRs. A dangerous misuse of event triggers such as `pull_request_target` or `issue_comment` followed by an explicit checkout of untrusted input from the PR may lead to repository compromise if untrusted code gets executed in a privileged job. Untrusted code may get executed due to a modified build script, workflow injection, or registry hijacking. **Carefully review** whether least privileges is used and whether input is taken from untrusted sources. +GitHub workflows can be triggered through various repository events, including incoming pull requests (PRs) or comments on Issues/PRs. Under certain conditions described below, attackers can take over a repository by opening malicious PRs from forks. The attacks can result in malicious code execution causing unauthorized changes to the repository or exfiltration of repository secrets and a compromise of connected systems. + +## Workflow Security Model + +In GitHub Actions, there is a distinction between unprivileged and privileged workflows. For example, a workflow with a `pull_request` trigger is unprivileged while a workflow with `pull_request_target` is privileged. + +This is relevant especially for PRs from forks. Normal PRs can only be submitted by people who have write access to a repository, while PRs from forks can be submitted by anyone. + +On a PR from a fork, an unprivileged `pull_request` workflow has only limited capabilities but a privileged `pull_request_target` workflow is much more dangerous. A privileged workflow: + + * Runs in the context of the base repository + * Has access to organization and repository secrets (e.g., API keys, deployment tokens) + * Has a read/write `GITHUB_TOKEN` by default + * Can access private resources + +Certain triggers automatically grant a workflow elevated privileges: + + * `pull_request_target` as described above + * `workflow_run`: Triggered when another workflow completes. + * `issue_comment`: Triggered when a comment is made on an issue or PR. + +## Attack Details + + * A repository has a privileged workflow + * An attacker forks the repository and adds malicious code (e.g., in the build script) + * The attacker opens a PR from the fork, and, if needed, comments on the PR + * The workflow in the base repository checks out the forked code + * The workflow runs, (e.g. the build script etc.), which contains the malicious code + +Please note that not only build scripts can be malicious code vectors. There is a large number of other possibilities. Some of them are listed in the [LOTP](https://boostsecurityio.github.io/lotp/) catalog. ## Recommendation @@ -133,4 +162,5 @@ jobs: ## References - GitHub Security Lab Research: [Keeping your GitHub Actions and workflows secure Part 1: Preventing pwn requests](https://securitylab.github.com/research/github-actions-preventing-pwn-requests/). +- Mitigating risks of untrusted checkout: [GitHub Docs](https://docs.github.com/en/enterprise-cloud@latest/actions/reference/security/secure-use#mitigating-the-risks-of-untrusted-code-checkout). - Living Off the Pipeline: [LOTP](https://boostsecurityio.github.io/lotp/). diff --git a/actions/ql/src/Security/CWE-829/UntrustedCheckoutHigh.md b/actions/ql/src/Security/CWE-829/UntrustedCheckoutHigh.md index a4fceb1f8da3..a6dd437c1baf 100644 --- a/actions/ql/src/Security/CWE-829/UntrustedCheckoutHigh.md +++ b/actions/ql/src/Security/CWE-829/UntrustedCheckoutHigh.md @@ -1,6 +1,35 @@ ## Overview -GitHub workflows can be triggered through various repository events, including incoming pull requests (PRs) or comments on Issues/PRs. A dangerous misuse of event triggers such as `pull_request_target` or `issue_comment` followed by an explicit checkout of untrusted input from the PR may lead to repository compromise if untrusted code gets executed in a privileged job. Untrusted code may get executed due to a modified build script, workflow injection, or registry hijacking. **Carefully review** whether least privileges is used and whether input is taken from untrusted sources. +GitHub workflows can be triggered through various repository events, including incoming pull requests (PRs) or comments on Issues/PRs. Under certain conditions described below, attackers can take over a repository by opening malicious PRs from forks. The attacks can result in malicious code execution causing unauthorized changes to the repository or exfiltration of repository secrets and a compromise of connected systems. + +## Workflow Security Model + +In GitHub Actions, there is a distinction between unprivileged and privileged workflows. For example, a workflow with a `pull_request` trigger is unprivileged while a workflow with `pull_request_target` is privileged. + +This is relevant especially for PRs from forks. Normal PRs can only be submitted by people who have write access to a repository, while PRs from forks can be submitted by anyone. + +On a PR from a fork, an unprivileged `pull_request` workflow has only limited capabilities but a privileged `pull_request_target` workflow is much more dangerous. A privileged workflow: + + * Runs in the context of the base repository + * Has access to organization and repository secrets (e.g., API keys, deployment tokens) + * Has a read/write `GITHUB_TOKEN` by default + * Can access private resources + +Certain triggers automatically grant a workflow elevated privileges: + + * `pull_request_target` as described above + * `workflow_run`: Triggered when another workflow completes. + * `issue_comment`: Triggered when a comment is made on an issue or PR. + +## Attack Details + + * A repository has a privileged workflow + * An attacker forks the repository and adds malicious code (e.g., in the build script) + * The attacker opens a PR from the fork, and, if needed, comments on the PR + * The workflow in the base repository checks out the forked code + * The workflow runs, (e.g. the build script etc.), which contains the malicious code + +Please note that not only build scripts can be malicious code vectors. There is a large number of other possibilities. Some of them are listed in the [LOTP](https://boostsecurityio.github.io/lotp/) catalog. ## Recommendation @@ -133,4 +162,5 @@ jobs: ## References - GitHub Security Lab Research: [Keeping your GitHub Actions and workflows secure Part 1: Preventing pwn requests](https://securitylab.github.com/research/github-actions-preventing-pwn-requests/). +- Mitigating risks of untrusted checkout: [GitHub Docs](https://docs.github.com/en/enterprise-cloud@latest/actions/reference/security/secure-use#mitigating-the-risks-of-untrusted-code-checkout). - Living Off the Pipeline: [LOTP](https://boostsecurityio.github.io/lotp/). diff --git a/actions/ql/src/Security/CWE-829/UntrustedCheckoutMedium.md b/actions/ql/src/Security/CWE-829/UntrustedCheckoutMedium.md index a4fceb1f8da3..a6dd437c1baf 100644 --- a/actions/ql/src/Security/CWE-829/UntrustedCheckoutMedium.md +++ b/actions/ql/src/Security/CWE-829/UntrustedCheckoutMedium.md @@ -1,6 +1,35 @@ ## Overview -GitHub workflows can be triggered through various repository events, including incoming pull requests (PRs) or comments on Issues/PRs. A dangerous misuse of event triggers such as `pull_request_target` or `issue_comment` followed by an explicit checkout of untrusted input from the PR may lead to repository compromise if untrusted code gets executed in a privileged job. Untrusted code may get executed due to a modified build script, workflow injection, or registry hijacking. **Carefully review** whether least privileges is used and whether input is taken from untrusted sources. +GitHub workflows can be triggered through various repository events, including incoming pull requests (PRs) or comments on Issues/PRs. Under certain conditions described below, attackers can take over a repository by opening malicious PRs from forks. The attacks can result in malicious code execution causing unauthorized changes to the repository or exfiltration of repository secrets and a compromise of connected systems. + +## Workflow Security Model + +In GitHub Actions, there is a distinction between unprivileged and privileged workflows. For example, a workflow with a `pull_request` trigger is unprivileged while a workflow with `pull_request_target` is privileged. + +This is relevant especially for PRs from forks. Normal PRs can only be submitted by people who have write access to a repository, while PRs from forks can be submitted by anyone. + +On a PR from a fork, an unprivileged `pull_request` workflow has only limited capabilities but a privileged `pull_request_target` workflow is much more dangerous. A privileged workflow: + + * Runs in the context of the base repository + * Has access to organization and repository secrets (e.g., API keys, deployment tokens) + * Has a read/write `GITHUB_TOKEN` by default + * Can access private resources + +Certain triggers automatically grant a workflow elevated privileges: + + * `pull_request_target` as described above + * `workflow_run`: Triggered when another workflow completes. + * `issue_comment`: Triggered when a comment is made on an issue or PR. + +## Attack Details + + * A repository has a privileged workflow + * An attacker forks the repository and adds malicious code (e.g., in the build script) + * The attacker opens a PR from the fork, and, if needed, comments on the PR + * The workflow in the base repository checks out the forked code + * The workflow runs, (e.g. the build script etc.), which contains the malicious code + +Please note that not only build scripts can be malicious code vectors. There is a large number of other possibilities. Some of them are listed in the [LOTP](https://boostsecurityio.github.io/lotp/) catalog. ## Recommendation @@ -133,4 +162,5 @@ jobs: ## References - GitHub Security Lab Research: [Keeping your GitHub Actions and workflows secure Part 1: Preventing pwn requests](https://securitylab.github.com/research/github-actions-preventing-pwn-requests/). +- Mitigating risks of untrusted checkout: [GitHub Docs](https://docs.github.com/en/enterprise-cloud@latest/actions/reference/security/secure-use#mitigating-the-risks-of-untrusted-code-checkout). - Living Off the Pipeline: [LOTP](https://boostsecurityio.github.io/lotp/). From b0bc0fdd61f15a4a8b5bc00a1f7c025df73de658 Mon Sep 17 00:00:00 2001 From: Kristen Newbury Date: Thu, 30 Apr 2026 12:28:06 -0400 Subject: [PATCH 149/260] Adjust changenotes actions queries --- .../2026-04-15-poisonable-steps-additions-alterations.md | 4 ++++ .../2026-04-15-untrusted-checkout-improvements.md | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) create mode 100644 actions/ql/lib/change-notes/2026-04-15-poisonable-steps-additions-alterations.md diff --git a/actions/ql/lib/change-notes/2026-04-15-poisonable-steps-additions-alterations.md b/actions/ql/lib/change-notes/2026-04-15-poisonable-steps-additions-alterations.md new file mode 100644 index 000000000000..1d6a8a49a2ce --- /dev/null +++ b/actions/ql/lib/change-notes/2026-04-15-poisonable-steps-additions-alterations.md @@ -0,0 +1,4 @@ +--- +category: minorAnalysis +--- +* Altered 2 patterns in the `poisonable_steps` modelling. Extra sinks are detected in the following cases: scripts executed via python modules and `go run` in directories are detected as potential mechanisms of injection. For the go execution pattern, the pattern is updated to now ignore flags that occur between go and the specific command. This change may lead to more results being detected by any queries that use that library. \ No newline at end of file diff --git a/actions/ql/src/change-notes/2026-04-15-untrusted-checkout-improvements.md b/actions/ql/src/change-notes/2026-04-15-untrusted-checkout-improvements.md index ef16e84e2c21..b78cc74e089b 100644 --- a/actions/ql/src/change-notes/2026-04-15-untrusted-checkout-improvements.md +++ b/actions/ql/src/change-notes/2026-04-15-untrusted-checkout-improvements.md @@ -1,6 +1,6 @@ --- category: majorAnalysis --- -* Fixed help file descriptions for queries: `actions/untrusted-checkout/critical`, `actions/untrusted-checkout/high`, `actions/untrusted-checkout/medium`. Previously the messages were unclear as to why and how the vulnerabilities could occur. Additionally alter 2 patterns in the detection such that now extra sinks are detected in the following cases: scripts executed via python modules and `go run` in directories are detected as potential mechanisms of injection. This may lead to more results being detected by all 3 queries. +* Fixed help file descriptions for queries: `actions/untrusted-checkout/critical`, `actions/untrusted-checkout/high`, `actions/untrusted-checkout/medium`. Previously the messages were unclear as to why and how the vulnerabilities could occur. * Adjusted `actions/untrusted-checkout/critical` to align more with other untrusted resource queries, where the alert location is the location where the artifact is obtained from (the checkout point). This aligns with the other 2 related queries. This will cause the same alerts to re-open for closed alerts of this query. * Adjusted the name of `actions/untrusted-checkout/high` to more clearly describe which parts of the scenario are in a privileged context. This will cause the same alerts to re-open for closed alerts of this query. \ No newline at end of file From 119994b59f5fe20a2f64315f763be239c49ee74c Mon Sep 17 00:00:00 2001 From: MarkLee131 Date: Fri, 1 May 2026 16:04:29 +0800 Subject: [PATCH 150/260] Java: move File inspection methods to path-injection[read] Per review feedback on #21741: File.canRead/canWrite/canExecute, exists/isDirectory/isFile/isHidden only inspect a path, so move them under the path-injection[read] sub-kind. Update TaintedPath.expected and the experimental CWE-073 expected to match. --- java/ql/lib/ext/java.io.model.yml | 14 +++++++------- .../security/CWE-073/FilePathInjection.expected | 2 +- .../CWE-022/semmle/tests/TaintedPath.expected | 14 +++++++------- 3 files changed, 15 insertions(+), 15 deletions(-) diff --git a/java/ql/lib/ext/java.io.model.yml b/java/ql/lib/ext/java.io.model.yml index a611135f5db2..dd47342d590a 100644 --- a/java/ql/lib/ext/java.io.model.yml +++ b/java/ql/lib/ext/java.io.model.yml @@ -3,17 +3,17 @@ extensions: pack: codeql/java-all extensible: sinkModel data: - - ["java.io", "File", True, "canExecute", "()", "", "Argument[this]", "path-injection", "manual"] - - ["java.io", "File", True, "canRead", "()", "", "Argument[this]", "path-injection", "manual"] - - ["java.io", "File", True, "canWrite", "()", "", "Argument[this]", "path-injection", "manual"] + - ["java.io", "File", True, "canExecute", "()", "", "Argument[this]", "path-injection[read]", "manual"] + - ["java.io", "File", True, "canRead", "()", "", "Argument[this]", "path-injection[read]", "manual"] + - ["java.io", "File", True, "canWrite", "()", "", "Argument[this]", "path-injection[read]", "manual"] - ["java.io", "File", True, "createNewFile", "()", "", "Argument[this]", "path-injection", "ai-manual"] - ["java.io", "File", True, "createTempFile", "(String,String,File)", "", "Argument[2]", "path-injection", "ai-manual"] - ["java.io", "File", True, "delete", "()", "", "Argument[this]", "path-injection", "manual"] - ["java.io", "File", True, "deleteOnExit", "()", "", "Argument[this]", "path-injection", "manual"] - - ["java.io", "File", True, "exists", "()", "", "Argument[this]", "path-injection", "manual"] - - ["java.io", "File", True, "isDirectory", "()", "", "Argument[this]", "path-injection", "manual"] - - ["java.io", "File", True, "isFile", "()", "", "Argument[this]", "path-injection", "manual"] - - ["java.io", "File", True, "isHidden", "()", "", "Argument[this]", "path-injection", "manual"] + - ["java.io", "File", True, "exists", "()", "", "Argument[this]", "path-injection[read]", "manual"] + - ["java.io", "File", True, "isDirectory", "()", "", "Argument[this]", "path-injection[read]", "manual"] + - ["java.io", "File", True, "isFile", "()", "", "Argument[this]", "path-injection[read]", "manual"] + - ["java.io", "File", True, "isHidden", "()", "", "Argument[this]", "path-injection[read]", "manual"] - ["java.io", "File", True, "mkdir", "()", "", "Argument[this]", "path-injection", "manual"] - ["java.io", "File", True, "mkdirs", "()", "", "Argument[this]", "path-injection", "manual"] - ["java.io", "File", True, "renameTo", "(File)", "", "Argument[0]", "path-injection", "ai-manual"] diff --git a/java/ql/test/experimental/query-tests/security/CWE-073/FilePathInjection.expected b/java/ql/test/experimental/query-tests/security/CWE-073/FilePathInjection.expected index 5752ac764dfd..e1567af8ada1 100644 --- a/java/ql/test/experimental/query-tests/security/CWE-073/FilePathInjection.expected +++ b/java/ql/test/experimental/query-tests/security/CWE-073/FilePathInjection.expected @@ -9,7 +9,7 @@ edges | FilePathInjection.java:209:24:209:31 | filePath : String | FilePathInjection.java:209:15:209:32 | new File(...) : File | provenance | MaD:6 | | FilePathInjection.java:217:19:217:22 | file : File | FilePathInjection.java:177:50:177:58 | file : File | provenance | | models -| 1 | Sink: java.io; File; true; exists; (); ; Argument[this]; path-injection; manual | +| 1 | Sink: java.io; File; true; exists; (); ; Argument[this]; path-injection[read]; manual | | 2 | Sink: java.io; FileInputStream; true; FileInputStream; (File); ; Argument[0]; path-injection[read]; ai-manual | | 3 | Sink: java.io; FileOutputStream; false; FileOutputStream; ; ; Argument[0]; path-injection; manual | | 4 | Source: com.jfinal.core; Controller; true; getPara; ; ; ReturnValue; remote; manual | diff --git a/java/ql/test/query-tests/security/CWE-022/semmle/tests/TaintedPath.expected b/java/ql/test/query-tests/security/CWE-022/semmle/tests/TaintedPath.expected index 5a6fc6dab462..06ab1d6340d8 100644 --- a/java/ql/test/query-tests/security/CWE-022/semmle/tests/TaintedPath.expected +++ b/java/ql/test/query-tests/security/CWE-022/semmle/tests/TaintedPath.expected @@ -235,17 +235,17 @@ edges | Test.java:199:26:199:33 | source(...) : String | Test.java:199:19:199:33 | (...)... | provenance | Sink:MaD:59 | | Test.java:204:29:204:36 | source(...) : String | Test.java:204:20:204:36 | (...)... | provenance | Sink:MaD:68 | models -| 1 | Sink: java.io; File; true; canExecute; (); ; Argument[this]; path-injection; manual | -| 2 | Sink: java.io; File; true; canRead; (); ; Argument[this]; path-injection; manual | -| 3 | Sink: java.io; File; true; canWrite; (); ; Argument[this]; path-injection; manual | +| 1 | Sink: java.io; File; true; canExecute; (); ; Argument[this]; path-injection[read]; manual | +| 2 | Sink: java.io; File; true; canRead; (); ; Argument[this]; path-injection[read]; manual | +| 3 | Sink: java.io; File; true; canWrite; (); ; Argument[this]; path-injection[read]; manual | | 4 | Sink: java.io; File; true; createNewFile; (); ; Argument[this]; path-injection; ai-manual | | 5 | Sink: java.io; File; true; createTempFile; (String,String,File); ; Argument[2]; path-injection; ai-manual | | 6 | Sink: java.io; File; true; delete; (); ; Argument[this]; path-injection; manual | | 7 | Sink: java.io; File; true; deleteOnExit; (); ; Argument[this]; path-injection; manual | -| 8 | Sink: java.io; File; true; exists; (); ; Argument[this]; path-injection; manual | -| 9 | Sink: java.io; File; true; isDirectory; (); ; Argument[this]; path-injection; manual | -| 10 | Sink: java.io; File; true; isFile; (); ; Argument[this]; path-injection; manual | -| 11 | Sink: java.io; File; true; isHidden; (); ; Argument[this]; path-injection; manual | +| 8 | Sink: java.io; File; true; exists; (); ; Argument[this]; path-injection[read]; manual | +| 9 | Sink: java.io; File; true; isDirectory; (); ; Argument[this]; path-injection[read]; manual | +| 10 | Sink: java.io; File; true; isFile; (); ; Argument[this]; path-injection[read]; manual | +| 11 | Sink: java.io; File; true; isHidden; (); ; Argument[this]; path-injection[read]; manual | | 12 | Sink: java.io; File; true; mkdir; (); ; Argument[this]; path-injection; manual | | 13 | Sink: java.io; File; true; mkdirs; (); ; Argument[this]; path-injection; manual | | 14 | Sink: java.io; File; true; renameTo; (File); ; Argument[0]; path-injection; ai-manual | From d3df5ce110f4ec5659ed487754ad970097828af5 Mon Sep 17 00:00:00 2001 From: Anders Schack-Mulligen Date: Fri, 1 May 2026 10:22:53 +0200 Subject: [PATCH 151/260] C#: Deprecate ParameterDefinition in favour of SsaParameterInit. --- csharp/ql/lib/semmle/code/csharp/dataflow/SSA.qll | 6 ++---- .../semmle/code/csharp/dataflow/internal/SsaImpl.qll | 10 ++++++---- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/csharp/ql/lib/semmle/code/csharp/dataflow/SSA.qll b/csharp/ql/lib/semmle/code/csharp/dataflow/SSA.qll index 23e1ee0afda6..a570b7ba5639 100644 --- a/csharp/ql/lib/semmle/code/csharp/dataflow/SSA.qll +++ b/csharp/ql/lib/semmle/code/csharp/dataflow/SSA.qll @@ -554,11 +554,9 @@ module Ssa { /** * DEPRECATED: Use `SsaParameterInit` instead. */ - deprecated class ImplicitParameterDefinition = ParameterDefinition; + deprecated final class ImplicitParameterDefinition = SsaImpl::ParameterDefinitionImpl; - final class ParameterDefinition = SsaImpl::ParameterDefinitionImpl; - - private class ExplicitParameterDefinition extends ExplicitDefinition, + deprecated private class ExplicitParameterDefinition extends ExplicitDefinition, SsaImpl::ParameterDefinitionImpl { private Parameter p; diff --git a/csharp/ql/lib/semmle/code/csharp/dataflow/internal/SsaImpl.qll b/csharp/ql/lib/semmle/code/csharp/dataflow/internal/SsaImpl.qll index 0f08e6d66ddf..9f0ca12888f4 100644 --- a/csharp/ql/lib/semmle/code/csharp/dataflow/internal/SsaImpl.qll +++ b/csharp/ql/lib/semmle/code/csharp/dataflow/internal/SsaImpl.qll @@ -1048,7 +1048,7 @@ private module DataFlowIntegrationInput implements Impl::DataFlowIntegrationInpu private module DataFlowIntegrationImpl = Impl::DataFlowIntegration; -private module MultiBodyNearestLocationInput implements NearestLocationInputSig { +deprecated private module MultiBodyNearestLocationInput implements NearestLocationInputSig { class C = MultiBodyParameterDefinition; predicate relevantLocations(MultiBodyParameterDefinition def, Location l1, Location l2) { @@ -1062,7 +1062,7 @@ private module MultiBodyNearestLocationInput implements NearestLocationInputSig } pragma[nomagic] -private predicate implicitEntryDef( +deprecated private predicate implicitEntryDef( Ssa::ImplicitEntryDefinition def, Ssa::SourceVariable v, Callable c ) { v = def.getSourceVariable() and @@ -1073,7 +1073,7 @@ private predicate implicitEntryDef( * An SSA definition representing the implicit initialization of a parameter * at the beginning of a callable. */ -abstract class ParameterDefinitionImpl extends Ssa::Definition { +abstract deprecated class ParameterDefinitionImpl extends Ssa::Definition { /** Gets the parameter that this definition represents. */ abstract Parameter getParameter(); @@ -1082,7 +1082,9 @@ abstract class ParameterDefinitionImpl extends Ssa::Definition { } } -class MultiBodyParameterDefinition extends ParameterDefinitionImpl, Ssa::ImplicitEntryDefinition { +deprecated class MultiBodyParameterDefinition extends ParameterDefinitionImpl, + Ssa::ImplicitEntryDefinition +{ private Parameter p; MultiBodyParameterDefinition() { From 5fbba0e9fedc698d4b9e68a9abbfe4cd426a3c34 Mon Sep 17 00:00:00 2001 From: Anders Schack-Mulligen Date: Fri, 1 May 2026 10:24:23 +0200 Subject: [PATCH 152/260] C#: Delete ParameterDefaultDefinition. --- csharp/ql/lib/semmle/code/csharp/dataflow/SSA.qll | 13 ------------- 1 file changed, 13 deletions(-) diff --git a/csharp/ql/lib/semmle/code/csharp/dataflow/SSA.qll b/csharp/ql/lib/semmle/code/csharp/dataflow/SSA.qll index a570b7ba5639..7d49e0b27d17 100644 --- a/csharp/ql/lib/semmle/code/csharp/dataflow/SSA.qll +++ b/csharp/ql/lib/semmle/code/csharp/dataflow/SSA.qll @@ -569,19 +569,6 @@ module Ssa { override string toString() { result = SsaImpl::ParameterDefinitionImpl.super.toString() } } - /** - * An SSA definition representing the default value of a parameter. - */ - class ParameterDefaultDefinition extends ExplicitDefinition { - private Parameter p; - override AssignableDefinitions::ParameterDefaultDefinition ad; - - ParameterDefaultDefinition() { p = ad.getParameter() } - - /** Gets the parameter that this entry definition represents. */ - Parameter getParameter() { result = p } - } - /** * An SSA definition representing the potential definition of a variable * via a call. From 439a67a3feb656dcc34ba3bbf15e18f42980b3b1 Mon Sep 17 00:00:00 2001 From: Anders Schack-Mulligen Date: Fri, 1 May 2026 10:26:50 +0200 Subject: [PATCH 153/260] C#: Fix toString for capture definitions. --- csharp/ql/lib/semmle/code/csharp/dataflow/SSA.qll | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/csharp/ql/lib/semmle/code/csharp/dataflow/SSA.qll b/csharp/ql/lib/semmle/code/csharp/dataflow/SSA.qll index 7d49e0b27d17..fc640cccf77f 100644 --- a/csharp/ql/lib/semmle/code/csharp/dataflow/SSA.qll +++ b/csharp/ql/lib/semmle/code/csharp/dataflow/SSA.qll @@ -569,6 +569,15 @@ module Ssa { override string toString() { result = SsaImpl::ParameterDefinitionImpl.super.toString() } } + /** An SSA definition in a closure that captures a variable. */ + class SsaCapturedDefinition extends SsaImplicitEntryDefinition { + SsaCapturedDefinition() { + this.getSourceVariable().getAssignable() instanceof LocalScopeVariable + } + + override string toString() { result = "SSA capture def(" + this.getSourceVariable() + ")" } + } + /** * An SSA definition representing the potential definition of a variable * via a call. From 351e9cc91468b169994c8443ec4a77c33563b5bc Mon Sep 17 00:00:00 2001 From: Anders Schack-Mulligen Date: Fri, 1 May 2026 10:28:15 +0200 Subject: [PATCH 154/260] C#: Accept test changes. --- .../dataflow/local/DataFlowStep.expected | 38 +++++++++---------- .../dataflow/local/TaintTrackingStep.expected | 38 +++++++++---------- .../dataflow/ssa/DefAdjacentRead.expected | 2 + .../dataflow/ssa/SSAPhi.expected | 4 +- .../dataflow/ssa/SsaDef.expected | 14 +++---- .../dataflow/ssa/SsaExplicitDef.expected | 6 ++- .../ssa/SsaImplicitQualifier.expected | 6 +-- .../dataflow/ssa/SsaRead.expected | 4 +- .../dataflow/ssa/SsaUltimateDef.expected | 26 ++++++------- 9 files changed, 69 insertions(+), 69 deletions(-) diff --git a/csharp/ql/test/library-tests/dataflow/local/DataFlowStep.expected b/csharp/ql/test/library-tests/dataflow/local/DataFlowStep.expected index d1df5b77de02..3efa55f0ca47 100644 --- a/csharp/ql/test/library-tests/dataflow/local/DataFlowStep.expected +++ b/csharp/ql/test/library-tests/dataflow/local/DataFlowStep.expected @@ -530,8 +530,8 @@ | LocalDataFlow.cs:385:34:385:34 | SSA param(s) | LocalDataFlow.cs:387:15:387:15 | access to parameter s | | LocalDataFlow.cs:385:34:385:34 | s | LocalDataFlow.cs:385:34:385:34 | SSA param(s) | | LocalDataFlow.cs:385:38:385:51 | "taint source" | LocalDataFlow.cs:385:38:385:51 | s = ... | -| LocalDataFlow.cs:385:38:385:51 | SSA param_default(s) | LocalDataFlow.cs:387:15:387:15 | access to parameter s | -| LocalDataFlow.cs:385:38:385:51 | s = ... | LocalDataFlow.cs:385:38:385:51 | SSA param_default(s) | +| LocalDataFlow.cs:385:38:385:51 | SSA def(s) | LocalDataFlow.cs:387:15:387:15 | access to parameter s | +| LocalDataFlow.cs:385:38:385:51 | s = ... | LocalDataFlow.cs:385:38:385:51 | SSA def(s) | | SSA.cs:3:14:3:16 | this | SSA.cs:3:14:3:16 | this access | | SSA.cs:5:17:5:17 | SSA entry def(this.S) | SSA.cs:67:9:67:14 | access to field S | | SSA.cs:5:17:5:17 | this | SSA.cs:67:9:67:12 | this access | @@ -642,13 +642,13 @@ | SSA.cs:67:9:67:14 | [post] access to field S | SSA.cs:68:23:68:28 | access to field S | | SSA.cs:67:9:67:14 | access to field S | SSA.cs:68:23:68:28 | access to field S | | SSA.cs:67:9:67:28 | access to field SsaFieldSink0 | SSA.cs:67:9:67:38 | SSA def(this.S.SsaFieldSink0) | -| SSA.cs:67:9:67:38 | SSA def(this.S.SsaFieldSink0) | SSA.cs:68:23:68:28 | SSA qualifier def(this.S.SsaFieldSink0) | +| SSA.cs:67:9:67:38 | SSA def(this.S.SsaFieldSink0) | SSA.cs:68:9:68:29 | SSA qualifier def(this.S.SsaFieldSink0) | | SSA.cs:67:32:67:38 | access to parameter tainted | SSA.cs:67:9:67:28 | access to field SsaFieldSink0 | | SSA.cs:67:32:67:38 | access to parameter tainted | SSA.cs:77:20:77:26 | access to parameter tainted | +| SSA.cs:68:9:68:29 | SSA qualifier def(this.S.SsaFieldSink0) | SSA.cs:69:15:69:34 | access to field SsaFieldSink0 | | SSA.cs:68:23:68:26 | [post] this access | SSA.cs:69:15:69:18 | this access | | SSA.cs:68:23:68:26 | this access | SSA.cs:69:15:69:18 | this access | | SSA.cs:68:23:68:28 | SSA def(this.S) | SSA.cs:69:15:69:20 | access to field S | -| SSA.cs:68:23:68:28 | SSA qualifier def(this.S.SsaFieldSink0) | SSA.cs:69:15:69:34 | access to field SsaFieldSink0 | | SSA.cs:68:23:68:28 | [post] access to field S | SSA.cs:68:23:68:28 | SSA def(this.S) | | SSA.cs:68:23:68:28 | access to field S | SSA.cs:68:23:68:28 | SSA def(this.S) | | SSA.cs:68:23:68:28 | access to field S | SSA.cs:68:23:68:28 | SSA def(this.S) | @@ -661,12 +661,12 @@ | SSA.cs:72:9:72:14 | [post] access to field S | SSA.cs:73:23:73:28 | access to field S | | SSA.cs:72:9:72:14 | access to field S | SSA.cs:73:23:73:28 | access to field S | | SSA.cs:72:9:72:31 | access to field SsaFieldNonSink0 | SSA.cs:72:9:72:36 | SSA def(this.S.SsaFieldNonSink0) | -| SSA.cs:72:9:72:36 | SSA def(this.S.SsaFieldNonSink0) | SSA.cs:73:23:73:28 | SSA qualifier def(this.S.SsaFieldNonSink0) | +| SSA.cs:72:9:72:36 | SSA def(this.S.SsaFieldNonSink0) | SSA.cs:73:9:73:29 | SSA qualifier def(this.S.SsaFieldNonSink0) | | SSA.cs:72:35:72:36 | "" | SSA.cs:72:9:72:31 | access to field SsaFieldNonSink0 | +| SSA.cs:73:9:73:29 | SSA qualifier def(this.S.SsaFieldNonSink0) | SSA.cs:74:15:74:37 | access to field SsaFieldNonSink0 | | SSA.cs:73:23:73:26 | [post] this access | SSA.cs:74:15:74:18 | this access | | SSA.cs:73:23:73:26 | this access | SSA.cs:74:15:74:18 | this access | | SSA.cs:73:23:73:28 | SSA def(this.S) | SSA.cs:74:15:74:20 | access to field S | -| SSA.cs:73:23:73:28 | SSA qualifier def(this.S.SsaFieldNonSink0) | SSA.cs:74:15:74:37 | access to field SsaFieldNonSink0 | | SSA.cs:73:23:73:28 | [post] access to field S | SSA.cs:73:23:73:28 | SSA def(this.S) | | SSA.cs:73:23:73:28 | access to field S | SSA.cs:73:23:73:28 | SSA def(this.S) | | SSA.cs:73:23:73:28 | access to field S | SSA.cs:73:23:73:28 | SSA def(this.S) | @@ -690,10 +690,10 @@ | SSA.cs:80:9:80:14 | access to field S | SSA.cs:81:21:81:26 | access to field S | | SSA.cs:80:35:80:41 | access to parameter tainted | SSA.cs:80:9:80:31 | access to field SsaFieldNonSink0 | | SSA.cs:80:35:80:41 | access to parameter tainted | SSA.cs:83:35:83:41 | access to parameter tainted | +| SSA.cs:81:9:81:27 | SSA qualifier def(this.S.SsaFieldNonSink0) | SSA.cs:82:15:82:37 | access to field SsaFieldNonSink0 | | SSA.cs:81:21:81:24 | [post] this access | SSA.cs:82:15:82:18 | this access | | SSA.cs:81:21:81:24 | this access | SSA.cs:82:15:82:18 | this access | | SSA.cs:81:21:81:26 | SSA def(this.S) | SSA.cs:82:15:82:20 | access to field S | -| SSA.cs:81:21:81:26 | SSA qualifier def(this.S.SsaFieldNonSink0) | SSA.cs:82:15:82:37 | access to field SsaFieldNonSink0 | | SSA.cs:81:21:81:26 | access to field S | SSA.cs:81:21:81:26 | SSA def(this.S) | | SSA.cs:82:15:82:18 | [post] this access | SSA.cs:83:9:83:12 | this access | | SSA.cs:82:15:82:18 | this access | SSA.cs:83:9:83:12 | this access | @@ -768,7 +768,7 @@ | SSA.cs:114:9:114:14 | access to field S | SSA.cs:115:13:115:33 | [input] SSA phi read(this.S) | | SSA.cs:114:9:114:14 | access to field S | SSA.cs:117:13:117:18 | access to field S | | SSA.cs:114:9:114:28 | access to field SsaFieldSink1 | SSA.cs:114:9:114:33 | SSA def(this.S.SsaFieldSink1) | -| SSA.cs:114:9:114:33 | SSA def(this.S.SsaFieldSink1) | SSA.cs:123:23:123:28 | SSA qualifier def(this.S.SsaFieldSink1) | +| SSA.cs:114:9:114:33 | SSA def(this.S.SsaFieldSink1) | SSA.cs:123:9:123:29 | SSA qualifier def(this.S.SsaFieldSink1) | | SSA.cs:114:32:114:33 | "" | SSA.cs:114:9:114:28 | access to field SsaFieldSink1 | | SSA.cs:115:13:115:22 | [post] access to parameter nonTainted | SSA.cs:115:13:115:33 | [input] SSA phi read(nonTainted) | | SSA.cs:115:13:115:22 | [post] access to parameter nonTainted | SSA.cs:118:17:118:26 | access to parameter nonTainted | @@ -794,18 +794,18 @@ | SSA.cs:119:21:119:24 | this access | SSA.cs:123:23:123:26 | this access | | SSA.cs:119:21:119:26 | [post] access to field S | SSA.cs:123:23:123:28 | access to field S | | SSA.cs:119:21:119:26 | access to field S | SSA.cs:123:23:123:28 | access to field S | -| SSA.cs:119:21:119:40 | [post] access to field SsaFieldSink1 | SSA.cs:123:23:123:28 | SSA qualifier def(this.S.SsaFieldSink1) | -| SSA.cs:119:21:119:40 | access to field SsaFieldSink1 | SSA.cs:123:23:123:28 | SSA qualifier def(this.S.SsaFieldSink1) | +| SSA.cs:119:21:119:40 | [post] access to field SsaFieldSink1 | SSA.cs:123:9:123:29 | SSA qualifier def(this.S.SsaFieldSink1) | +| SSA.cs:119:21:119:40 | access to field SsaFieldSink1 | SSA.cs:123:9:123:29 | SSA qualifier def(this.S.SsaFieldSink1) | | SSA.cs:121:21:121:24 | [post] this access | SSA.cs:123:23:123:26 | this access | | SSA.cs:121:21:121:24 | this access | SSA.cs:123:23:123:26 | this access | | SSA.cs:121:21:121:26 | [post] access to field S | SSA.cs:123:23:123:28 | access to field S | | SSA.cs:121:21:121:26 | access to field S | SSA.cs:123:23:123:28 | access to field S | -| SSA.cs:121:21:121:40 | [post] access to field SsaFieldSink1 | SSA.cs:123:23:123:28 | SSA qualifier def(this.S.SsaFieldSink1) | -| SSA.cs:121:21:121:40 | access to field SsaFieldSink1 | SSA.cs:123:23:123:28 | SSA qualifier def(this.S.SsaFieldSink1) | +| SSA.cs:121:21:121:40 | [post] access to field SsaFieldSink1 | SSA.cs:123:9:123:29 | SSA qualifier def(this.S.SsaFieldSink1) | +| SSA.cs:121:21:121:40 | access to field SsaFieldSink1 | SSA.cs:123:9:123:29 | SSA qualifier def(this.S.SsaFieldSink1) | +| SSA.cs:123:9:123:29 | SSA qualifier def(this.S.SsaFieldSink1) | SSA.cs:124:15:124:34 | access to field SsaFieldSink1 | | SSA.cs:123:23:123:26 | [post] this access | SSA.cs:124:15:124:18 | this access | | SSA.cs:123:23:123:26 | this access | SSA.cs:124:15:124:18 | this access | | SSA.cs:123:23:123:28 | SSA def(this.S) | SSA.cs:124:15:124:20 | access to field S | -| SSA.cs:123:23:123:28 | SSA qualifier def(this.S.SsaFieldSink1) | SSA.cs:124:15:124:34 | access to field SsaFieldSink1 | | SSA.cs:123:23:123:28 | [post] access to field S | SSA.cs:123:23:123:28 | SSA def(this.S) | | SSA.cs:123:23:123:28 | access to field S | SSA.cs:123:23:123:28 | SSA def(this.S) | | SSA.cs:123:23:123:28 | access to field S | SSA.cs:123:23:123:28 | SSA def(this.S) | @@ -822,7 +822,7 @@ | SSA.cs:127:9:127:14 | access to field S | SSA.cs:128:13:128:33 | [input] SSA phi read(this.S) | | SSA.cs:127:9:127:14 | access to field S | SSA.cs:130:13:130:18 | access to field S | | SSA.cs:127:9:127:31 | access to field SsaFieldNonSink0 | SSA.cs:127:9:127:36 | SSA def(this.S.SsaFieldNonSink0) | -| SSA.cs:127:9:127:36 | SSA def(this.S.SsaFieldNonSink0) | SSA.cs:136:23:136:28 | SSA qualifier def(this.S.SsaFieldNonSink0) | +| SSA.cs:127:9:127:36 | SSA def(this.S.SsaFieldNonSink0) | SSA.cs:136:9:136:29 | SSA qualifier def(this.S.SsaFieldNonSink0) | | SSA.cs:127:35:127:36 | "" | SSA.cs:127:9:127:31 | access to field SsaFieldNonSink0 | | SSA.cs:128:13:128:22 | [post] access to parameter nonTainted | SSA.cs:131:17:131:26 | access to parameter nonTainted | | SSA.cs:128:13:128:22 | access to parameter nonTainted | SSA.cs:131:17:131:26 | access to parameter nonTainted | @@ -843,18 +843,18 @@ | SSA.cs:132:21:132:24 | this access | SSA.cs:136:23:136:26 | this access | | SSA.cs:132:21:132:26 | [post] access to field S | SSA.cs:136:23:136:28 | access to field S | | SSA.cs:132:21:132:26 | access to field S | SSA.cs:136:23:136:28 | access to field S | -| SSA.cs:132:21:132:43 | [post] access to field SsaFieldNonSink0 | SSA.cs:136:23:136:28 | SSA qualifier def(this.S.SsaFieldNonSink0) | -| SSA.cs:132:21:132:43 | access to field SsaFieldNonSink0 | SSA.cs:136:23:136:28 | SSA qualifier def(this.S.SsaFieldNonSink0) | +| SSA.cs:132:21:132:43 | [post] access to field SsaFieldNonSink0 | SSA.cs:136:9:136:29 | SSA qualifier def(this.S.SsaFieldNonSink0) | +| SSA.cs:132:21:132:43 | access to field SsaFieldNonSink0 | SSA.cs:136:9:136:29 | SSA qualifier def(this.S.SsaFieldNonSink0) | | SSA.cs:134:21:134:24 | [post] this access | SSA.cs:136:23:136:26 | this access | | SSA.cs:134:21:134:24 | this access | SSA.cs:136:23:136:26 | this access | | SSA.cs:134:21:134:26 | [post] access to field S | SSA.cs:136:23:136:28 | access to field S | | SSA.cs:134:21:134:26 | access to field S | SSA.cs:136:23:136:28 | access to field S | -| SSA.cs:134:21:134:43 | [post] access to field SsaFieldNonSink0 | SSA.cs:136:23:136:28 | SSA qualifier def(this.S.SsaFieldNonSink0) | -| SSA.cs:134:21:134:43 | access to field SsaFieldNonSink0 | SSA.cs:136:23:136:28 | SSA qualifier def(this.S.SsaFieldNonSink0) | +| SSA.cs:134:21:134:43 | [post] access to field SsaFieldNonSink0 | SSA.cs:136:9:136:29 | SSA qualifier def(this.S.SsaFieldNonSink0) | +| SSA.cs:134:21:134:43 | access to field SsaFieldNonSink0 | SSA.cs:136:9:136:29 | SSA qualifier def(this.S.SsaFieldNonSink0) | +| SSA.cs:136:9:136:29 | SSA qualifier def(this.S.SsaFieldNonSink0) | SSA.cs:137:15:137:37 | access to field SsaFieldNonSink0 | | SSA.cs:136:23:136:26 | [post] this access | SSA.cs:137:15:137:18 | this access | | SSA.cs:136:23:136:26 | this access | SSA.cs:137:15:137:18 | this access | | SSA.cs:136:23:136:28 | SSA def(this.S) | SSA.cs:137:15:137:20 | access to field S | -| SSA.cs:136:23:136:28 | SSA qualifier def(this.S.SsaFieldNonSink0) | SSA.cs:137:15:137:37 | access to field SsaFieldNonSink0 | | SSA.cs:136:23:136:28 | [post] access to field S | SSA.cs:136:23:136:28 | SSA def(this.S) | | SSA.cs:136:23:136:28 | access to field S | SSA.cs:136:23:136:28 | SSA def(this.S) | | SSA.cs:136:23:136:28 | access to field S | SSA.cs:136:23:136:28 | SSA def(this.S) | diff --git a/csharp/ql/test/library-tests/dataflow/local/TaintTrackingStep.expected b/csharp/ql/test/library-tests/dataflow/local/TaintTrackingStep.expected index 06251245a058..3229a5401481 100644 --- a/csharp/ql/test/library-tests/dataflow/local/TaintTrackingStep.expected +++ b/csharp/ql/test/library-tests/dataflow/local/TaintTrackingStep.expected @@ -642,8 +642,8 @@ | LocalDataFlow.cs:385:34:385:34 | SSA param(s) | LocalDataFlow.cs:387:15:387:15 | access to parameter s | | LocalDataFlow.cs:385:34:385:34 | s | LocalDataFlow.cs:385:34:385:34 | SSA param(s) | | LocalDataFlow.cs:385:38:385:51 | "taint source" | LocalDataFlow.cs:385:38:385:51 | s = ... | -| LocalDataFlow.cs:385:38:385:51 | SSA param_default(s) | LocalDataFlow.cs:387:15:387:15 | access to parameter s | -| LocalDataFlow.cs:385:38:385:51 | s = ... | LocalDataFlow.cs:385:38:385:51 | SSA param_default(s) | +| LocalDataFlow.cs:385:38:385:51 | SSA def(s) | LocalDataFlow.cs:387:15:387:15 | access to parameter s | +| LocalDataFlow.cs:385:38:385:51 | s = ... | LocalDataFlow.cs:385:38:385:51 | SSA def(s) | | SSA.cs:3:14:3:16 | this | SSA.cs:3:14:3:16 | this access | | SSA.cs:5:17:5:17 | SSA entry def(this.S) | SSA.cs:67:9:67:14 | access to field S | | SSA.cs:5:17:5:17 | this | SSA.cs:67:9:67:12 | this access | @@ -760,13 +760,13 @@ | SSA.cs:67:9:67:14 | [post] access to field S | SSA.cs:68:23:68:28 | access to field S | | SSA.cs:67:9:67:14 | access to field S | SSA.cs:68:23:68:28 | access to field S | | SSA.cs:67:9:67:28 | access to field SsaFieldSink0 | SSA.cs:67:9:67:38 | SSA def(this.S.SsaFieldSink0) | -| SSA.cs:67:9:67:38 | SSA def(this.S.SsaFieldSink0) | SSA.cs:68:23:68:28 | SSA qualifier def(this.S.SsaFieldSink0) | +| SSA.cs:67:9:67:38 | SSA def(this.S.SsaFieldSink0) | SSA.cs:68:9:68:29 | SSA qualifier def(this.S.SsaFieldSink0) | | SSA.cs:67:32:67:38 | access to parameter tainted | SSA.cs:67:9:67:28 | access to field SsaFieldSink0 | | SSA.cs:67:32:67:38 | access to parameter tainted | SSA.cs:77:20:77:26 | access to parameter tainted | +| SSA.cs:68:9:68:29 | SSA qualifier def(this.S.SsaFieldSink0) | SSA.cs:69:15:69:34 | access to field SsaFieldSink0 | | SSA.cs:68:23:68:26 | [post] this access | SSA.cs:69:15:69:18 | this access | | SSA.cs:68:23:68:26 | this access | SSA.cs:69:15:69:18 | this access | | SSA.cs:68:23:68:28 | SSA def(this.S) | SSA.cs:69:15:69:20 | access to field S | -| SSA.cs:68:23:68:28 | SSA qualifier def(this.S.SsaFieldSink0) | SSA.cs:69:15:69:34 | access to field SsaFieldSink0 | | SSA.cs:68:23:68:28 | [post] access to field S | SSA.cs:68:23:68:28 | SSA def(this.S) | | SSA.cs:68:23:68:28 | access to field S | SSA.cs:68:23:68:28 | SSA def(this.S) | | SSA.cs:68:23:68:28 | access to field S | SSA.cs:68:23:68:28 | SSA def(this.S) | @@ -779,12 +779,12 @@ | SSA.cs:72:9:72:14 | [post] access to field S | SSA.cs:73:23:73:28 | access to field S | | SSA.cs:72:9:72:14 | access to field S | SSA.cs:73:23:73:28 | access to field S | | SSA.cs:72:9:72:31 | access to field SsaFieldNonSink0 | SSA.cs:72:9:72:36 | SSA def(this.S.SsaFieldNonSink0) | -| SSA.cs:72:9:72:36 | SSA def(this.S.SsaFieldNonSink0) | SSA.cs:73:23:73:28 | SSA qualifier def(this.S.SsaFieldNonSink0) | +| SSA.cs:72:9:72:36 | SSA def(this.S.SsaFieldNonSink0) | SSA.cs:73:9:73:29 | SSA qualifier def(this.S.SsaFieldNonSink0) | | SSA.cs:72:35:72:36 | "" | SSA.cs:72:9:72:31 | access to field SsaFieldNonSink0 | +| SSA.cs:73:9:73:29 | SSA qualifier def(this.S.SsaFieldNonSink0) | SSA.cs:74:15:74:37 | access to field SsaFieldNonSink0 | | SSA.cs:73:23:73:26 | [post] this access | SSA.cs:74:15:74:18 | this access | | SSA.cs:73:23:73:26 | this access | SSA.cs:74:15:74:18 | this access | | SSA.cs:73:23:73:28 | SSA def(this.S) | SSA.cs:74:15:74:20 | access to field S | -| SSA.cs:73:23:73:28 | SSA qualifier def(this.S.SsaFieldNonSink0) | SSA.cs:74:15:74:37 | access to field SsaFieldNonSink0 | | SSA.cs:73:23:73:28 | [post] access to field S | SSA.cs:73:23:73:28 | SSA def(this.S) | | SSA.cs:73:23:73:28 | access to field S | SSA.cs:73:23:73:28 | SSA def(this.S) | | SSA.cs:73:23:73:28 | access to field S | SSA.cs:73:23:73:28 | SSA def(this.S) | @@ -808,10 +808,10 @@ | SSA.cs:80:9:80:14 | access to field S | SSA.cs:81:21:81:26 | access to field S | | SSA.cs:80:35:80:41 | access to parameter tainted | SSA.cs:80:9:80:31 | access to field SsaFieldNonSink0 | | SSA.cs:80:35:80:41 | access to parameter tainted | SSA.cs:83:35:83:41 | access to parameter tainted | +| SSA.cs:81:9:81:27 | SSA qualifier def(this.S.SsaFieldNonSink0) | SSA.cs:82:15:82:37 | access to field SsaFieldNonSink0 | | SSA.cs:81:21:81:24 | [post] this access | SSA.cs:82:15:82:18 | this access | | SSA.cs:81:21:81:24 | this access | SSA.cs:82:15:82:18 | this access | | SSA.cs:81:21:81:26 | SSA def(this.S) | SSA.cs:82:15:82:20 | access to field S | -| SSA.cs:81:21:81:26 | SSA qualifier def(this.S.SsaFieldNonSink0) | SSA.cs:82:15:82:37 | access to field SsaFieldNonSink0 | | SSA.cs:81:21:81:26 | access to field S | SSA.cs:81:21:81:26 | SSA def(this.S) | | SSA.cs:82:15:82:18 | [post] this access | SSA.cs:83:9:83:12 | this access | | SSA.cs:82:15:82:18 | this access | SSA.cs:83:9:83:12 | this access | @@ -890,7 +890,7 @@ | SSA.cs:114:9:114:14 | access to field S | SSA.cs:115:13:115:33 | [input] SSA phi read(this.S) | | SSA.cs:114:9:114:14 | access to field S | SSA.cs:117:13:117:18 | access to field S | | SSA.cs:114:9:114:28 | access to field SsaFieldSink1 | SSA.cs:114:9:114:33 | SSA def(this.S.SsaFieldSink1) | -| SSA.cs:114:9:114:33 | SSA def(this.S.SsaFieldSink1) | SSA.cs:123:23:123:28 | SSA qualifier def(this.S.SsaFieldSink1) | +| SSA.cs:114:9:114:33 | SSA def(this.S.SsaFieldSink1) | SSA.cs:123:9:123:29 | SSA qualifier def(this.S.SsaFieldSink1) | | SSA.cs:114:32:114:33 | "" | SSA.cs:114:9:114:28 | access to field SsaFieldSink1 | | SSA.cs:115:13:115:22 | [post] access to parameter nonTainted | SSA.cs:115:13:115:33 | [input] SSA phi read(nonTainted) | | SSA.cs:115:13:115:22 | [post] access to parameter nonTainted | SSA.cs:118:17:118:26 | access to parameter nonTainted | @@ -918,18 +918,18 @@ | SSA.cs:119:21:119:24 | this access | SSA.cs:123:23:123:26 | this access | | SSA.cs:119:21:119:26 | [post] access to field S | SSA.cs:123:23:123:28 | access to field S | | SSA.cs:119:21:119:26 | access to field S | SSA.cs:123:23:123:28 | access to field S | -| SSA.cs:119:21:119:40 | [post] access to field SsaFieldSink1 | SSA.cs:123:23:123:28 | SSA qualifier def(this.S.SsaFieldSink1) | -| SSA.cs:119:21:119:40 | access to field SsaFieldSink1 | SSA.cs:123:23:123:28 | SSA qualifier def(this.S.SsaFieldSink1) | +| SSA.cs:119:21:119:40 | [post] access to field SsaFieldSink1 | SSA.cs:123:9:123:29 | SSA qualifier def(this.S.SsaFieldSink1) | +| SSA.cs:119:21:119:40 | access to field SsaFieldSink1 | SSA.cs:123:9:123:29 | SSA qualifier def(this.S.SsaFieldSink1) | | SSA.cs:121:21:121:24 | [post] this access | SSA.cs:123:23:123:26 | this access | | SSA.cs:121:21:121:24 | this access | SSA.cs:123:23:123:26 | this access | | SSA.cs:121:21:121:26 | [post] access to field S | SSA.cs:123:23:123:28 | access to field S | | SSA.cs:121:21:121:26 | access to field S | SSA.cs:123:23:123:28 | access to field S | -| SSA.cs:121:21:121:40 | [post] access to field SsaFieldSink1 | SSA.cs:123:23:123:28 | SSA qualifier def(this.S.SsaFieldSink1) | -| SSA.cs:121:21:121:40 | access to field SsaFieldSink1 | SSA.cs:123:23:123:28 | SSA qualifier def(this.S.SsaFieldSink1) | +| SSA.cs:121:21:121:40 | [post] access to field SsaFieldSink1 | SSA.cs:123:9:123:29 | SSA qualifier def(this.S.SsaFieldSink1) | +| SSA.cs:121:21:121:40 | access to field SsaFieldSink1 | SSA.cs:123:9:123:29 | SSA qualifier def(this.S.SsaFieldSink1) | +| SSA.cs:123:9:123:29 | SSA qualifier def(this.S.SsaFieldSink1) | SSA.cs:124:15:124:34 | access to field SsaFieldSink1 | | SSA.cs:123:23:123:26 | [post] this access | SSA.cs:124:15:124:18 | this access | | SSA.cs:123:23:123:26 | this access | SSA.cs:124:15:124:18 | this access | | SSA.cs:123:23:123:28 | SSA def(this.S) | SSA.cs:124:15:124:20 | access to field S | -| SSA.cs:123:23:123:28 | SSA qualifier def(this.S.SsaFieldSink1) | SSA.cs:124:15:124:34 | access to field SsaFieldSink1 | | SSA.cs:123:23:123:28 | [post] access to field S | SSA.cs:123:23:123:28 | SSA def(this.S) | | SSA.cs:123:23:123:28 | access to field S | SSA.cs:123:23:123:28 | SSA def(this.S) | | SSA.cs:123:23:123:28 | access to field S | SSA.cs:123:23:123:28 | SSA def(this.S) | @@ -946,7 +946,7 @@ | SSA.cs:127:9:127:14 | access to field S | SSA.cs:128:13:128:33 | [input] SSA phi read(this.S) | | SSA.cs:127:9:127:14 | access to field S | SSA.cs:130:13:130:18 | access to field S | | SSA.cs:127:9:127:31 | access to field SsaFieldNonSink0 | SSA.cs:127:9:127:36 | SSA def(this.S.SsaFieldNonSink0) | -| SSA.cs:127:9:127:36 | SSA def(this.S.SsaFieldNonSink0) | SSA.cs:136:23:136:28 | SSA qualifier def(this.S.SsaFieldNonSink0) | +| SSA.cs:127:9:127:36 | SSA def(this.S.SsaFieldNonSink0) | SSA.cs:136:9:136:29 | SSA qualifier def(this.S.SsaFieldNonSink0) | | SSA.cs:127:35:127:36 | "" | SSA.cs:127:9:127:31 | access to field SsaFieldNonSink0 | | SSA.cs:128:13:128:22 | [post] access to parameter nonTainted | SSA.cs:131:17:131:26 | access to parameter nonTainted | | SSA.cs:128:13:128:22 | access to parameter nonTainted | SSA.cs:131:17:131:26 | access to parameter nonTainted | @@ -969,18 +969,18 @@ | SSA.cs:132:21:132:24 | this access | SSA.cs:136:23:136:26 | this access | | SSA.cs:132:21:132:26 | [post] access to field S | SSA.cs:136:23:136:28 | access to field S | | SSA.cs:132:21:132:26 | access to field S | SSA.cs:136:23:136:28 | access to field S | -| SSA.cs:132:21:132:43 | [post] access to field SsaFieldNonSink0 | SSA.cs:136:23:136:28 | SSA qualifier def(this.S.SsaFieldNonSink0) | -| SSA.cs:132:21:132:43 | access to field SsaFieldNonSink0 | SSA.cs:136:23:136:28 | SSA qualifier def(this.S.SsaFieldNonSink0) | +| SSA.cs:132:21:132:43 | [post] access to field SsaFieldNonSink0 | SSA.cs:136:9:136:29 | SSA qualifier def(this.S.SsaFieldNonSink0) | +| SSA.cs:132:21:132:43 | access to field SsaFieldNonSink0 | SSA.cs:136:9:136:29 | SSA qualifier def(this.S.SsaFieldNonSink0) | | SSA.cs:134:21:134:24 | [post] this access | SSA.cs:136:23:136:26 | this access | | SSA.cs:134:21:134:24 | this access | SSA.cs:136:23:136:26 | this access | | SSA.cs:134:21:134:26 | [post] access to field S | SSA.cs:136:23:136:28 | access to field S | | SSA.cs:134:21:134:26 | access to field S | SSA.cs:136:23:136:28 | access to field S | -| SSA.cs:134:21:134:43 | [post] access to field SsaFieldNonSink0 | SSA.cs:136:23:136:28 | SSA qualifier def(this.S.SsaFieldNonSink0) | -| SSA.cs:134:21:134:43 | access to field SsaFieldNonSink0 | SSA.cs:136:23:136:28 | SSA qualifier def(this.S.SsaFieldNonSink0) | +| SSA.cs:134:21:134:43 | [post] access to field SsaFieldNonSink0 | SSA.cs:136:9:136:29 | SSA qualifier def(this.S.SsaFieldNonSink0) | +| SSA.cs:134:21:134:43 | access to field SsaFieldNonSink0 | SSA.cs:136:9:136:29 | SSA qualifier def(this.S.SsaFieldNonSink0) | +| SSA.cs:136:9:136:29 | SSA qualifier def(this.S.SsaFieldNonSink0) | SSA.cs:137:15:137:37 | access to field SsaFieldNonSink0 | | SSA.cs:136:23:136:26 | [post] this access | SSA.cs:137:15:137:18 | this access | | SSA.cs:136:23:136:26 | this access | SSA.cs:137:15:137:18 | this access | | SSA.cs:136:23:136:28 | SSA def(this.S) | SSA.cs:137:15:137:20 | access to field S | -| SSA.cs:136:23:136:28 | SSA qualifier def(this.S.SsaFieldNonSink0) | SSA.cs:137:15:137:37 | access to field SsaFieldNonSink0 | | SSA.cs:136:23:136:28 | [post] access to field S | SSA.cs:136:23:136:28 | SSA def(this.S) | | SSA.cs:136:23:136:28 | access to field S | SSA.cs:136:23:136:28 | SSA def(this.S) | | SSA.cs:136:23:136:28 | access to field S | SSA.cs:136:23:136:28 | SSA def(this.S) | diff --git a/csharp/ql/test/library-tests/dataflow/ssa/DefAdjacentRead.expected b/csharp/ql/test/library-tests/dataflow/ssa/DefAdjacentRead.expected index 0350c73ce259..3015fea1770e 100644 --- a/csharp/ql/test/library-tests/dataflow/ssa/DefAdjacentRead.expected +++ b/csharp/ql/test/library-tests/dataflow/ssa/DefAdjacentRead.expected @@ -83,6 +83,8 @@ | Fields.cs:93:19:93:23 | Field | Fields.cs:102:9:102:28 | ... = ... | Fields.cs:104:16:104:25 | access to field Field | | Fields.cs:95:19:95:19 | f | Fields.cs:95:19:95:19 | f | Fields.cs:97:9:97:9 | access to parameter f | | Fields.cs:107:33:107:33 | f | Fields.cs:107:33:107:33 | f | Fields.cs:107:38:107:38 | access to parameter f | +| MultiImplementationA.cs:5:22:5:22 | x | MultiImplementationA.cs:5:22:5:22 | x | MultiImplementationA.cs:5:28:5:28 | access to parameter x | +| MultiImplementationA.cs:5:22:5:22 | x | MultiImplementationA.cs:5:22:5:22 | x | MultiImplementationB.cs:3:28:3:28 | access to parameter x | | OutRef.cs:5:9:5:13 | Field | OutRef.cs:13:28:13:32 | access to field Field | OutRef.cs:15:13:15:17 | access to field Field | | OutRef.cs:5:9:5:13 | Field | OutRef.cs:16:21:16:25 | access to field Field | OutRef.cs:17:13:17:17 | access to field Field | | OutRef.cs:5:9:5:13 | Field | OutRef.cs:16:32:16:36 | access to field Field | OutRef.cs:17:13:17:17 | access to field Field | diff --git a/csharp/ql/test/library-tests/dataflow/ssa/SSAPhi.expected b/csharp/ql/test/library-tests/dataflow/ssa/SSAPhi.expected index 7ace8cd316df..dd72baf4f299 100644 --- a/csharp/ql/test/library-tests/dataflow/ssa/SSAPhi.expected +++ b/csharp/ql/test/library-tests/dataflow/ssa/SSAPhi.expected @@ -9,9 +9,9 @@ | DefUse.cs:97:13:97:14 | x5 | DefUse.cs:98:9:102:9 | SSA phi(x5) | DefUse.cs:97:13:97:18 | SSA def(x5) | | DefUse.cs:97:13:97:14 | x5 | DefUse.cs:98:9:102:9 | SSA phi(x5) | DefUse.cs:101:13:101:23 | SSA def(x5) | | DefaultParam.cs:3:30:3:30 | s | DefaultParam.cs:3:42:3:42 | SSA phi(s) | DefaultParam.cs:3:30:3:30 | SSA param(s) | -| DefaultParam.cs:3:30:3:30 | s | DefaultParam.cs:3:42:3:42 | SSA phi(s) | DefaultParam.cs:3:34:3:35 | SSA param_default(s) | +| DefaultParam.cs:3:30:3:30 | s | DefaultParam.cs:3:42:3:42 | SSA phi(s) | DefaultParam.cs:3:34:3:35 | SSA def(s) | | DefaultParam.cs:3:42:3:42 | i | DefaultParam.cs:4:5:6:5 | SSA phi(i) | DefaultParam.cs:3:42:3:42 | SSA param(i) | -| DefaultParam.cs:3:42:3:42 | i | DefaultParam.cs:4:5:6:5 | SSA phi(i) | DefaultParam.cs:3:46:3:46 | SSA param_default(i) | +| DefaultParam.cs:3:42:3:42 | i | DefaultParam.cs:4:5:6:5 | SSA phi(i) | DefaultParam.cs:3:46:3:46 | SSA def(i) | | Example.cs:8:9:8:18 | this.Field | Example.cs:10:9:13:24 | SSA phi(this.Field) | Example.cs:11:13:11:30 | SSA def(this.Field) | | Example.cs:8:9:8:18 | this.Field | Example.cs:10:9:13:24 | SSA phi(this.Field) | Example.cs:12:14:13:24 | SSA phi(this.Field) | | Example.cs:8:9:8:18 | this.Field | Example.cs:12:14:13:24 | SSA phi(this.Field) | Example.cs:8:9:8:22 | SSA def(this.Field) | diff --git a/csharp/ql/test/library-tests/dataflow/ssa/SsaDef.expected b/csharp/ql/test/library-tests/dataflow/ssa/SsaDef.expected index 507ff8b2b6e5..1e185b8456f4 100644 --- a/csharp/ql/test/library-tests/dataflow/ssa/SsaDef.expected +++ b/csharp/ql/test/library-tests/dataflow/ssa/SsaDef.expected @@ -36,7 +36,7 @@ | Consistency.cs:7:25:7:25 | b | Consistency.cs:7:25:7:25 | SSA param(b) | | Consistency.cs:15:17:15:17 | i | Consistency.cs:15:17:15:21 | SSA def(i) | | Consistency.cs:25:29:25:29 | c | Consistency.cs:25:29:25:29 | SSA def(c) | -| Consistency.cs:26:13:26:19 | c.Field | Consistency.cs:25:29:25:29 | SSA qualifier def(c.Field) | +| Consistency.cs:26:13:26:19 | c.Field | Consistency.cs:25:9:25:30 | SSA qualifier def(c.Field) | | Consistency.cs:30:30:30:30 | c | Consistency.cs:32:9:32:29 | SSA def(c) | | Consistency.cs:44:11:44:11 | s | Consistency.cs:44:11:44:11 | SSA def(s) | | Consistency.cs:49:30:49:30 | a | Consistency.cs:49:30:49:30 | SSA param(a) | @@ -95,10 +95,10 @@ | DefUse.cs:188:13:188:18 | this.Field5 | DefUse.cs:188:13:188:22 | SSA def(this.Field5) | | DefaultParam.cs:3:20:3:20 | b | DefaultParam.cs:3:20:3:20 | SSA param(b) | | DefaultParam.cs:3:30:3:30 | s | DefaultParam.cs:3:30:3:30 | SSA param(s) | -| DefaultParam.cs:3:30:3:30 | s | DefaultParam.cs:3:34:3:35 | SSA param_default(s) | +| DefaultParam.cs:3:30:3:30 | s | DefaultParam.cs:3:34:3:35 | SSA def(s) | | DefaultParam.cs:3:30:3:30 | s | DefaultParam.cs:3:42:3:42 | SSA phi(s) | | DefaultParam.cs:3:42:3:42 | i | DefaultParam.cs:3:42:3:42 | SSA param(i) | -| DefaultParam.cs:3:42:3:42 | i | DefaultParam.cs:3:46:3:46 | SSA param_default(i) | +| DefaultParam.cs:3:42:3:42 | i | DefaultParam.cs:3:46:3:46 | SSA def(i) | | DefaultParam.cs:3:42:3:42 | i | DefaultParam.cs:4:5:6:5 | SSA phi(i) | | Example.cs:6:23:6:23 | i | Example.cs:6:23:6:23 | SSA param(i) | | Example.cs:8:9:8:18 | this.Field | Example.cs:8:9:8:22 | SSA def(this.Field) | @@ -162,9 +162,9 @@ | Fields.cs:107:33:107:33 | f | Fields.cs:107:33:107:33 | SSA param(f) | | Fields.cs:115:20:115:29 | this.Field | Fields.cs:109:10:109:10 | SSA entry def(this.Field) | | Fields.cs:115:20:115:29 | this.Field | Fields.cs:114:9:114:22 | SSA call def(this.Field) | -| Fields.cs:115:20:115:35 | this.Field.Field | Fields.cs:109:10:109:10 | SSA qualifier def(this.Field.Field) | +| Fields.cs:115:20:115:35 | this.Field.Field | Fields.cs:109:10:109:10 | SSA entry def(this.Field.Field) | | Fields.cs:115:20:115:35 | this.Field.Field | Fields.cs:114:9:114:22 | SSA call def(this.Field.Field) | -| Fields.cs:116:21:116:39 | this.Field.Field.xs | Fields.cs:109:10:109:10 | SSA qualifier def(this.Field.Field.xs) | +| Fields.cs:116:21:116:39 | this.Field.Field.xs | Fields.cs:109:10:109:10 | SSA entry def(this.Field.Field.xs) | | Fields.cs:116:21:116:39 | this.Field.Field.xs | Fields.cs:114:9:114:22 | SSA qualifier def(this.Field.Field.xs) | | MultiImplementationA.cs:5:22:5:22 | x | MultiImplementationA.cs:5:22:5:22 | SSA param(x) | | MultiImplementationA.cs:5:22:5:22 | x | MultiImplementationB.cs:3:22:3:22 | SSA param(x) | @@ -245,9 +245,9 @@ | Properties.cs:106:37:106:37 | p | Properties.cs:106:37:106:37 | SSA param(p) | | Properties.cs:114:20:114:29 | this.Props | Properties.cs:108:10:108:10 | SSA entry def(this.Props) | | Properties.cs:114:20:114:29 | this.Props | Properties.cs:113:9:113:22 | SSA call def(this.Props) | -| Properties.cs:114:20:114:35 | this.Props.Props | Properties.cs:108:10:108:10 | SSA qualifier def(this.Props.Props) | +| Properties.cs:114:20:114:35 | this.Props.Props | Properties.cs:108:10:108:10 | SSA entry def(this.Props.Props) | | Properties.cs:114:20:114:35 | this.Props.Props | Properties.cs:113:9:113:22 | SSA call def(this.Props.Props) | -| Properties.cs:115:21:115:39 | this.Props.Props.xs | Properties.cs:108:10:108:10 | SSA qualifier def(this.Props.Props.xs) | +| Properties.cs:115:21:115:39 | this.Props.Props.xs | Properties.cs:108:10:108:10 | SSA entry def(this.Props.Props.xs) | | Properties.cs:115:21:115:39 | this.Props.Props.xs | Properties.cs:113:9:113:22 | SSA qualifier def(this.Props.Props.xs) | | Test.cs:5:15:5:20 | param1 | Test.cs:5:15:5:20 | SSA param(param1) | | Test.cs:5:15:5:20 | param1 | Test.cs:25:9:32:9 | SSA phi(param1) | diff --git a/csharp/ql/test/library-tests/dataflow/ssa/SsaExplicitDef.expected b/csharp/ql/test/library-tests/dataflow/ssa/SsaExplicitDef.expected index 9a2e5c49b15f..1d8a06035dc9 100644 --- a/csharp/ql/test/library-tests/dataflow/ssa/SsaExplicitDef.expected +++ b/csharp/ql/test/library-tests/dataflow/ssa/SsaExplicitDef.expected @@ -77,9 +77,9 @@ | DefUse.cs:188:13:188:18 | this.Field5 | DefUse.cs:188:13:188:22 | SSA def(this.Field5) | DefUse.cs:188:13:188:22 | ... = ... | | DefaultParam.cs:3:20:3:20 | b | DefaultParam.cs:3:20:3:20 | SSA param(b) | DefaultParam.cs:3:20:3:20 | b | | DefaultParam.cs:3:30:3:30 | s | DefaultParam.cs:3:30:3:30 | SSA param(s) | DefaultParam.cs:3:30:3:30 | s | -| DefaultParam.cs:3:30:3:30 | s | DefaultParam.cs:3:34:3:35 | SSA param_default(s) | DefaultParam.cs:3:34:3:35 | s = ... | +| DefaultParam.cs:3:30:3:30 | s | DefaultParam.cs:3:34:3:35 | SSA def(s) | DefaultParam.cs:3:34:3:35 | s = ... | | DefaultParam.cs:3:42:3:42 | i | DefaultParam.cs:3:42:3:42 | SSA param(i) | DefaultParam.cs:3:42:3:42 | i | -| DefaultParam.cs:3:42:3:42 | i | DefaultParam.cs:3:46:3:46 | SSA param_default(i) | DefaultParam.cs:3:46:3:46 | i = ... | +| DefaultParam.cs:3:42:3:42 | i | DefaultParam.cs:3:46:3:46 | SSA def(i) | DefaultParam.cs:3:46:3:46 | i = ... | | Example.cs:6:23:6:23 | i | Example.cs:6:23:6:23 | SSA param(i) | Example.cs:6:23:6:23 | i | | Example.cs:8:9:8:18 | this.Field | Example.cs:8:9:8:22 | SSA def(this.Field) | Example.cs:8:9:8:22 | ... = ... | | Example.cs:8:9:8:18 | this.Field | Example.cs:11:13:11:30 | SSA def(this.Field) | Example.cs:11:13:11:30 | ... = ... | @@ -105,6 +105,8 @@ | Fields.cs:97:9:97:15 | f.Field | Fields.cs:97:9:97:30 | SSA def(f.Field) | Fields.cs:97:9:97:30 | ... = ... | | Fields.cs:102:9:102:18 | this.Field | Fields.cs:102:9:102:28 | SSA def(this.Field) | Fields.cs:102:9:102:28 | ... = ... | | Fields.cs:107:33:107:33 | f | Fields.cs:107:33:107:33 | SSA param(f) | Fields.cs:107:33:107:33 | f | +| MultiImplementationA.cs:5:22:5:22 | x | MultiImplementationA.cs:5:22:5:22 | SSA param(x) | MultiImplementationA.cs:5:22:5:22 | x | +| MultiImplementationA.cs:5:22:5:22 | x | MultiImplementationB.cs:3:22:3:22 | SSA param(x) | MultiImplementationA.cs:5:22:5:22 | x | | OutRef.cs:9:13:9:13 | j | OutRef.cs:9:13:9:17 | SSA def(j) | OutRef.cs:9:13:9:17 | Int32 j = ... | | OutRef.cs:9:13:9:13 | j | OutRef.cs:10:32:10:32 | SSA def(j) | OutRef.cs:10:32:10:32 | access to local variable j | | OutRef.cs:9:13:9:13 | j | OutRef.cs:22:22:22:22 | SSA def(j) | OutRef.cs:22:22:22:22 | access to local variable j | diff --git a/csharp/ql/test/library-tests/dataflow/ssa/SsaImplicitQualifier.expected b/csharp/ql/test/library-tests/dataflow/ssa/SsaImplicitQualifier.expected index c64c419cb48b..f4b936fa5307 100644 --- a/csharp/ql/test/library-tests/dataflow/ssa/SsaImplicitQualifier.expected +++ b/csharp/ql/test/library-tests/dataflow/ssa/SsaImplicitQualifier.expected @@ -1,15 +1,11 @@ -| Consistency.cs:26:13:26:19 | c.Field | Consistency.cs:25:29:25:29 | SSA qualifier def(c.Field) | Consistency.cs:25:29:25:29 | SSA def(c) | +| Consistency.cs:26:13:26:19 | c.Field | Consistency.cs:25:9:25:30 | SSA qualifier def(c.Field) | Consistency.cs:25:29:25:29 | SSA def(c) | | Fields.cs:31:19:31:22 | f.xs | Fields.cs:30:13:30:28 | SSA qualifier def(f.xs) | Fields.cs:30:13:30:28 | SSA def(f) | | Fields.cs:31:19:31:22 | f.xs | Fields.cs:49:13:49:28 | SSA qualifier def(f.xs) | Fields.cs:49:13:49:28 | SSA def(f) | | Fields.cs:98:20:98:32 | f.Field.Field | Fields.cs:97:9:97:30 | SSA qualifier def(f.Field.Field) | Fields.cs:97:9:97:30 | SSA def(f.Field) | | Fields.cs:99:16:99:34 | f.Field.Field.Field | Fields.cs:97:9:97:30 | SSA qualifier def(f.Field.Field.Field) | Fields.cs:97:9:97:30 | SSA qualifier def(f.Field.Field) | | Fields.cs:100:16:100:40 | f.Field.Field.Field.Field | Fields.cs:97:9:97:30 | SSA qualifier def(f.Field.Field.Field.Field) | Fields.cs:97:9:97:30 | SSA qualifier def(f.Field.Field.Field) | -| Fields.cs:115:20:115:35 | this.Field.Field | Fields.cs:109:10:109:10 | SSA qualifier def(this.Field.Field) | Fields.cs:109:10:109:10 | SSA entry def(this.Field) | -| Fields.cs:116:21:116:39 | this.Field.Field.xs | Fields.cs:109:10:109:10 | SSA qualifier def(this.Field.Field.xs) | Fields.cs:109:10:109:10 | SSA qualifier def(this.Field.Field) | | Fields.cs:116:21:116:39 | this.Field.Field.xs | Fields.cs:114:9:114:22 | SSA qualifier def(this.Field.Field.xs) | Fields.cs:114:9:114:22 | SSA call def(this.Field.Field) | | OutRef.cs:19:32:19:38 | t.Field | OutRef.cs:18:13:18:28 | SSA qualifier def(t.Field) | OutRef.cs:18:13:18:28 | SSA def(t) | | Properties.cs:31:19:31:22 | f.xs | Properties.cs:30:13:30:32 | SSA qualifier def(f.xs) | Properties.cs:30:13:30:32 | SSA def(f) | | Properties.cs:31:19:31:22 | f.xs | Properties.cs:49:13:49:32 | SSA qualifier def(f.xs) | Properties.cs:49:13:49:32 | SSA def(f) | -| Properties.cs:114:20:114:35 | this.Props.Props | Properties.cs:108:10:108:10 | SSA qualifier def(this.Props.Props) | Properties.cs:108:10:108:10 | SSA entry def(this.Props) | -| Properties.cs:115:21:115:39 | this.Props.Props.xs | Properties.cs:108:10:108:10 | SSA qualifier def(this.Props.Props.xs) | Properties.cs:108:10:108:10 | SSA qualifier def(this.Props.Props) | | Properties.cs:115:21:115:39 | this.Props.Props.xs | Properties.cs:113:9:113:22 | SSA qualifier def(this.Props.Props.xs) | Properties.cs:113:9:113:22 | SSA call def(this.Props.Props) | diff --git a/csharp/ql/test/library-tests/dataflow/ssa/SsaRead.expected b/csharp/ql/test/library-tests/dataflow/ssa/SsaRead.expected index 88ed62336726..f82cab61409d 100644 --- a/csharp/ql/test/library-tests/dataflow/ssa/SsaRead.expected +++ b/csharp/ql/test/library-tests/dataflow/ssa/SsaRead.expected @@ -37,8 +37,8 @@ | Consistency.cs:15:17:15:17 | i | Consistency.cs:15:17:15:21 | SSA def(i) | Consistency.cs:16:17:16:17 | access to local variable i | | Consistency.cs:25:29:25:29 | c | Consistency.cs:25:29:25:29 | SSA def(c) | Consistency.cs:26:13:26:13 | access to local variable c | | Consistency.cs:25:29:25:29 | c | Consistency.cs:25:29:25:29 | SSA def(c) | Consistency.cs:27:13:27:13 | access to local variable c | -| Consistency.cs:26:13:26:19 | c.Field | Consistency.cs:25:29:25:29 | SSA qualifier def(c.Field) | Consistency.cs:26:13:26:19 | access to field Field | -| Consistency.cs:26:13:26:19 | c.Field | Consistency.cs:25:29:25:29 | SSA qualifier def(c.Field) | Consistency.cs:27:13:27:19 | access to field Field | +| Consistency.cs:26:13:26:19 | c.Field | Consistency.cs:25:9:25:30 | SSA qualifier def(c.Field) | Consistency.cs:26:13:26:19 | access to field Field | +| Consistency.cs:26:13:26:19 | c.Field | Consistency.cs:25:9:25:30 | SSA qualifier def(c.Field) | Consistency.cs:27:13:27:19 | access to field Field | | Consistency.cs:30:30:30:30 | c | Consistency.cs:32:9:32:29 | SSA def(c) | Consistency.cs:33:9:33:9 | access to parameter c | | Consistency.cs:44:11:44:11 | s | Consistency.cs:44:11:44:11 | SSA def(s) | Consistency.cs:45:9:45:9 | access to local variable s | | Consistency.cs:44:11:44:11 | s | Consistency.cs:44:11:44:11 | SSA def(s) | Consistency.cs:46:13:46:13 | access to local variable s | diff --git a/csharp/ql/test/library-tests/dataflow/ssa/SsaUltimateDef.expected b/csharp/ql/test/library-tests/dataflow/ssa/SsaUltimateDef.expected index 00bacccf157b..a34b470ccdcf 100644 --- a/csharp/ql/test/library-tests/dataflow/ssa/SsaUltimateDef.expected +++ b/csharp/ql/test/library-tests/dataflow/ssa/SsaUltimateDef.expected @@ -36,7 +36,7 @@ | Consistency.cs:7:25:7:25 | b | Consistency.cs:7:25:7:25 | SSA param(b) | Consistency.cs:7:25:7:25 | SSA param(b) | | Consistency.cs:15:17:15:17 | i | Consistency.cs:15:17:15:21 | SSA def(i) | Consistency.cs:15:17:15:21 | SSA def(i) | | Consistency.cs:25:29:25:29 | c | Consistency.cs:25:29:25:29 | SSA def(c) | Consistency.cs:25:29:25:29 | SSA def(c) | -| Consistency.cs:26:13:26:19 | c.Field | Consistency.cs:25:29:25:29 | SSA qualifier def(c.Field) | Consistency.cs:25:29:25:29 | SSA qualifier def(c.Field) | +| Consistency.cs:26:13:26:19 | c.Field | Consistency.cs:25:9:25:30 | SSA qualifier def(c.Field) | Consistency.cs:25:9:25:30 | SSA qualifier def(c.Field) | | Consistency.cs:30:30:30:30 | c | Consistency.cs:32:9:32:29 | SSA def(c) | Consistency.cs:32:9:32:29 | SSA def(c) | | Consistency.cs:44:11:44:11 | s | Consistency.cs:44:11:44:11 | SSA def(s) | Consistency.cs:44:11:44:11 | SSA def(s) | | Consistency.cs:49:30:49:30 | a | Consistency.cs:49:30:49:30 | SSA param(a) | Consistency.cs:49:30:49:30 | SSA param(a) | @@ -101,13 +101,13 @@ | DefUse.cs:188:13:188:18 | this.Field5 | DefUse.cs:188:13:188:22 | SSA def(this.Field5) | DefUse.cs:188:13:188:22 | SSA def(this.Field5) | | DefaultParam.cs:3:20:3:20 | b | DefaultParam.cs:3:20:3:20 | SSA param(b) | DefaultParam.cs:3:20:3:20 | SSA param(b) | | DefaultParam.cs:3:30:3:30 | s | DefaultParam.cs:3:30:3:30 | SSA param(s) | DefaultParam.cs:3:30:3:30 | SSA param(s) | -| DefaultParam.cs:3:30:3:30 | s | DefaultParam.cs:3:34:3:35 | SSA param_default(s) | DefaultParam.cs:3:34:3:35 | SSA param_default(s) | +| DefaultParam.cs:3:30:3:30 | s | DefaultParam.cs:3:34:3:35 | SSA def(s) | DefaultParam.cs:3:34:3:35 | SSA def(s) | | DefaultParam.cs:3:30:3:30 | s | DefaultParam.cs:3:42:3:42 | SSA phi(s) | DefaultParam.cs:3:30:3:30 | SSA param(s) | -| DefaultParam.cs:3:30:3:30 | s | DefaultParam.cs:3:42:3:42 | SSA phi(s) | DefaultParam.cs:3:34:3:35 | SSA param_default(s) | +| DefaultParam.cs:3:30:3:30 | s | DefaultParam.cs:3:42:3:42 | SSA phi(s) | DefaultParam.cs:3:34:3:35 | SSA def(s) | | DefaultParam.cs:3:42:3:42 | i | DefaultParam.cs:3:42:3:42 | SSA param(i) | DefaultParam.cs:3:42:3:42 | SSA param(i) | -| DefaultParam.cs:3:42:3:42 | i | DefaultParam.cs:3:46:3:46 | SSA param_default(i) | DefaultParam.cs:3:46:3:46 | SSA param_default(i) | +| DefaultParam.cs:3:42:3:42 | i | DefaultParam.cs:3:46:3:46 | SSA def(i) | DefaultParam.cs:3:46:3:46 | SSA def(i) | | DefaultParam.cs:3:42:3:42 | i | DefaultParam.cs:4:5:6:5 | SSA phi(i) | DefaultParam.cs:3:42:3:42 | SSA param(i) | -| DefaultParam.cs:3:42:3:42 | i | DefaultParam.cs:4:5:6:5 | SSA phi(i) | DefaultParam.cs:3:46:3:46 | SSA param_default(i) | +| DefaultParam.cs:3:42:3:42 | i | DefaultParam.cs:4:5:6:5 | SSA phi(i) | DefaultParam.cs:3:46:3:46 | SSA def(i) | | Example.cs:6:23:6:23 | i | Example.cs:6:23:6:23 | SSA param(i) | Example.cs:6:23:6:23 | SSA param(i) | | Example.cs:8:9:8:18 | this.Field | Example.cs:8:9:8:22 | SSA def(this.Field) | Example.cs:8:9:8:22 | SSA def(this.Field) | | Example.cs:8:9:8:18 | this.Field | Example.cs:10:9:13:24 | SSA phi(this.Field) | Example.cs:8:9:8:22 | SSA def(this.Field) | @@ -210,11 +210,11 @@ | Fields.cs:115:20:115:29 | this.Field | Fields.cs:109:10:109:10 | SSA entry def(this.Field) | Fields.cs:109:10:109:10 | SSA entry def(this.Field) | | Fields.cs:115:20:115:29 | this.Field | Fields.cs:114:9:114:22 | SSA call def(this.Field) | Fields.cs:109:10:109:10 | SSA entry def(this.Field) | | Fields.cs:115:20:115:29 | this.Field | Fields.cs:114:9:114:22 | SSA call def(this.Field) | Fields.cs:114:9:114:22 | SSA call def(this.Field) | -| Fields.cs:115:20:115:35 | this.Field.Field | Fields.cs:109:10:109:10 | SSA qualifier def(this.Field.Field) | Fields.cs:109:10:109:10 | SSA qualifier def(this.Field.Field) | -| Fields.cs:115:20:115:35 | this.Field.Field | Fields.cs:114:9:114:22 | SSA call def(this.Field.Field) | Fields.cs:109:10:109:10 | SSA qualifier def(this.Field.Field) | +| Fields.cs:115:20:115:35 | this.Field.Field | Fields.cs:109:10:109:10 | SSA entry def(this.Field.Field) | Fields.cs:109:10:109:10 | SSA entry def(this.Field.Field) | +| Fields.cs:115:20:115:35 | this.Field.Field | Fields.cs:114:9:114:22 | SSA call def(this.Field.Field) | Fields.cs:109:10:109:10 | SSA entry def(this.Field.Field) | | Fields.cs:115:20:115:35 | this.Field.Field | Fields.cs:114:9:114:22 | SSA call def(this.Field.Field) | Fields.cs:114:9:114:22 | SSA call def(this.Field.Field) | -| Fields.cs:116:21:116:39 | this.Field.Field.xs | Fields.cs:109:10:109:10 | SSA qualifier def(this.Field.Field.xs) | Fields.cs:109:10:109:10 | SSA qualifier def(this.Field.Field.xs) | -| Fields.cs:116:21:116:39 | this.Field.Field.xs | Fields.cs:114:9:114:22 | SSA qualifier def(this.Field.Field.xs) | Fields.cs:109:10:109:10 | SSA qualifier def(this.Field.Field.xs) | +| Fields.cs:116:21:116:39 | this.Field.Field.xs | Fields.cs:109:10:109:10 | SSA entry def(this.Field.Field.xs) | Fields.cs:109:10:109:10 | SSA entry def(this.Field.Field.xs) | +| Fields.cs:116:21:116:39 | this.Field.Field.xs | Fields.cs:114:9:114:22 | SSA qualifier def(this.Field.Field.xs) | Fields.cs:109:10:109:10 | SSA entry def(this.Field.Field.xs) | | Fields.cs:116:21:116:39 | this.Field.Field.xs | Fields.cs:114:9:114:22 | SSA qualifier def(this.Field.Field.xs) | Fields.cs:114:9:114:22 | SSA qualifier def(this.Field.Field.xs) | | MultiImplementationA.cs:5:22:5:22 | x | MultiImplementationA.cs:5:22:5:22 | SSA param(x) | MultiImplementationA.cs:5:22:5:22 | SSA param(x) | | MultiImplementationA.cs:5:22:5:22 | x | MultiImplementationB.cs:3:22:3:22 | SSA param(x) | MultiImplementationB.cs:3:22:3:22 | SSA param(x) | @@ -333,11 +333,11 @@ | Properties.cs:114:20:114:29 | this.Props | Properties.cs:108:10:108:10 | SSA entry def(this.Props) | Properties.cs:108:10:108:10 | SSA entry def(this.Props) | | Properties.cs:114:20:114:29 | this.Props | Properties.cs:113:9:113:22 | SSA call def(this.Props) | Properties.cs:108:10:108:10 | SSA entry def(this.Props) | | Properties.cs:114:20:114:29 | this.Props | Properties.cs:113:9:113:22 | SSA call def(this.Props) | Properties.cs:113:9:113:22 | SSA call def(this.Props) | -| Properties.cs:114:20:114:35 | this.Props.Props | Properties.cs:108:10:108:10 | SSA qualifier def(this.Props.Props) | Properties.cs:108:10:108:10 | SSA qualifier def(this.Props.Props) | -| Properties.cs:114:20:114:35 | this.Props.Props | Properties.cs:113:9:113:22 | SSA call def(this.Props.Props) | Properties.cs:108:10:108:10 | SSA qualifier def(this.Props.Props) | +| Properties.cs:114:20:114:35 | this.Props.Props | Properties.cs:108:10:108:10 | SSA entry def(this.Props.Props) | Properties.cs:108:10:108:10 | SSA entry def(this.Props.Props) | +| Properties.cs:114:20:114:35 | this.Props.Props | Properties.cs:113:9:113:22 | SSA call def(this.Props.Props) | Properties.cs:108:10:108:10 | SSA entry def(this.Props.Props) | | Properties.cs:114:20:114:35 | this.Props.Props | Properties.cs:113:9:113:22 | SSA call def(this.Props.Props) | Properties.cs:113:9:113:22 | SSA call def(this.Props.Props) | -| Properties.cs:115:21:115:39 | this.Props.Props.xs | Properties.cs:108:10:108:10 | SSA qualifier def(this.Props.Props.xs) | Properties.cs:108:10:108:10 | SSA qualifier def(this.Props.Props.xs) | -| Properties.cs:115:21:115:39 | this.Props.Props.xs | Properties.cs:113:9:113:22 | SSA qualifier def(this.Props.Props.xs) | Properties.cs:108:10:108:10 | SSA qualifier def(this.Props.Props.xs) | +| Properties.cs:115:21:115:39 | this.Props.Props.xs | Properties.cs:108:10:108:10 | SSA entry def(this.Props.Props.xs) | Properties.cs:108:10:108:10 | SSA entry def(this.Props.Props.xs) | +| Properties.cs:115:21:115:39 | this.Props.Props.xs | Properties.cs:113:9:113:22 | SSA qualifier def(this.Props.Props.xs) | Properties.cs:108:10:108:10 | SSA entry def(this.Props.Props.xs) | | Properties.cs:115:21:115:39 | this.Props.Props.xs | Properties.cs:113:9:113:22 | SSA qualifier def(this.Props.Props.xs) | Properties.cs:113:9:113:22 | SSA qualifier def(this.Props.Props.xs) | | Test.cs:5:15:5:20 | param1 | Test.cs:5:15:5:20 | SSA param(param1) | Test.cs:5:15:5:20 | SSA param(param1) | | Test.cs:5:15:5:20 | param1 | Test.cs:25:9:32:9 | SSA phi(param1) | Test.cs:5:15:5:20 | SSA param(param1) | From e012981e5b559c5f2ae43f7610a390e0e973fdf0 Mon Sep 17 00:00:00 2001 From: Anders Schack-Mulligen Date: Fri, 1 May 2026 10:32:18 +0200 Subject: [PATCH 155/260] C#: Accept test changes for out/ref SSA location changes. --- .../csharp7/LocalTaintFlow.expected | 16 ++-- .../dataflow/local/DataFlowStep.expected | 76 +++++++++---------- .../dataflow/local/TaintTrackingStep.expected | 76 +++++++++---------- .../dataflow/ssa/SSAPhi.expected | 2 +- .../dataflow/ssa/SsaDef.expected | 32 ++++---- .../dataflow/ssa/SsaExplicitDef.expected | 36 ++++----- .../ssa/SsaImplicitQualifier.expected | 2 +- .../dataflow/ssa/SsaRead.expected | 42 +++++----- .../dataflow/ssa/SsaUltimateDef.expected | 36 ++++----- 9 files changed, 159 insertions(+), 159 deletions(-) diff --git a/csharp/ql/test/library-tests/csharp7/LocalTaintFlow.expected b/csharp/ql/test/library-tests/csharp7/LocalTaintFlow.expected index 61693ac518ee..e2d3b18e0366 100644 --- a/csharp/ql/test/library-tests/csharp7/LocalTaintFlow.expected +++ b/csharp/ql/test/library-tests/csharp7/LocalTaintFlow.expected @@ -35,23 +35,23 @@ | CSharp7.cs:44:9:44:9 | access to parameter y | CSharp7.cs:44:9:44:13 | SSA def(y) | | CSharp7.cs:44:13:44:13 | access to parameter x | CSharp7.cs:44:9:44:9 | access to parameter y | | CSharp7.cs:47:10:47:10 | this | CSharp7.cs:49:9:49:24 | this access | +| CSharp7.cs:49:9:49:24 | SSA def(t1) | CSharp7.cs:51:18:51:19 | access to local variable t1 | | CSharp7.cs:49:9:49:24 | [post] this access | CSharp7.cs:50:9:50:21 | this access | | CSharp7.cs:49:9:49:24 | this access | CSharp7.cs:50:9:50:21 | this access | -| CSharp7.cs:49:22:49:23 | SSA def(t1) | CSharp7.cs:51:18:51:19 | access to local variable t1 | -| CSharp7.cs:49:22:49:23 | String t1 | CSharp7.cs:49:22:49:23 | SSA def(t1) | +| CSharp7.cs:49:22:49:23 | String t1 | CSharp7.cs:49:9:49:24 | SSA def(t1) | +| CSharp7.cs:50:9:50:21 | SSA def(t2) | CSharp7.cs:54:14:54:15 | access to local variable t2 | | CSharp7.cs:50:9:50:21 | [post] this access | CSharp7.cs:52:9:52:17 | this access | | CSharp7.cs:50:9:50:21 | this access | CSharp7.cs:52:9:52:17 | this access | -| CSharp7.cs:50:19:50:20 | SSA def(t2) | CSharp7.cs:54:14:54:15 | access to local variable t2 | -| CSharp7.cs:50:19:50:20 | String t2 | CSharp7.cs:50:19:50:20 | SSA def(t2) | +| CSharp7.cs:50:19:50:20 | String t2 | CSharp7.cs:50:9:50:21 | SSA def(t2) | | CSharp7.cs:51:18:51:19 | access to local variable t1 | CSharp7.cs:51:13:51:14 | access to local variable t3 | +| CSharp7.cs:52:9:52:17 | SSA def(t1) | CSharp7.cs:53:14:53:15 | access to local variable t1 | | CSharp7.cs:52:9:52:17 | [post] this access | CSharp7.cs:55:9:55:32 | this access | | CSharp7.cs:52:9:52:17 | this access | CSharp7.cs:55:9:55:32 | this access | -| CSharp7.cs:52:15:52:16 | SSA def(t1) | CSharp7.cs:53:14:53:15 | access to local variable t1 | -| CSharp7.cs:52:15:52:16 | access to local variable t1 | CSharp7.cs:52:15:52:16 | SSA def(t1) | +| CSharp7.cs:52:15:52:16 | access to local variable t1 | CSharp7.cs:52:9:52:17 | SSA def(t1) | | CSharp7.cs:53:14:53:15 | access to local variable t1 | CSharp7.cs:53:9:53:10 | access to local variable t3 | | CSharp7.cs:54:14:54:15 | access to local variable t2 | CSharp7.cs:54:9:54:10 | access to local variable t3 | -| CSharp7.cs:55:30:55:31 | SSA def(t4) | CSharp7.cs:56:18:56:19 | access to local variable t4 | -| CSharp7.cs:55:30:55:31 | String t4 | CSharp7.cs:55:30:55:31 | SSA def(t4) | +| CSharp7.cs:55:9:55:32 | SSA def(t4) | CSharp7.cs:56:18:56:19 | access to local variable t4 | +| CSharp7.cs:55:30:55:31 | String t4 | CSharp7.cs:55:9:55:32 | SSA def(t4) | | CSharp7.cs:56:18:56:19 | access to local variable t4 | CSharp7.cs:56:13:56:14 | access to local variable t5 | | CSharp7.cs:60:7:60:12 | this | CSharp7.cs:60:7:60:12 | this access | | CSharp7.cs:67:10:67:20 | this | CSharp7.cs:69:26:69:28 | this access | diff --git a/csharp/ql/test/library-tests/dataflow/local/DataFlowStep.expected b/csharp/ql/test/library-tests/dataflow/local/DataFlowStep.expected index 3efa55f0ca47..2a88f163a3aa 100644 --- a/csharp/ql/test/library-tests/dataflow/local/DataFlowStep.expected +++ b/csharp/ql/test/library-tests/dataflow/local/DataFlowStep.expected @@ -629,14 +629,14 @@ | SSA.cs:58:16:58:33 | SSA def(ssaSink3) | SSA.cs:59:23:59:30 | access to local variable ssaSink3 | | SSA.cs:58:27:58:33 | access to parameter tainted | SSA.cs:58:16:58:23 | access to local variable ssaSink3 | | SSA.cs:58:27:58:33 | access to parameter tainted | SSA.cs:67:32:67:38 | access to parameter tainted | -| SSA.cs:59:23:59:30 | SSA def(ssaSink3) | SSA.cs:60:15:60:22 | access to local variable ssaSink3 | -| SSA.cs:59:23:59:30 | [post] access to local variable ssaSink3 | SSA.cs:59:23:59:30 | SSA def(ssaSink3) | -| SSA.cs:59:23:59:30 | access to local variable ssaSink3 | SSA.cs:59:23:59:30 | SSA def(ssaSink3) | -| SSA.cs:59:23:59:30 | access to local variable ssaSink3 | SSA.cs:59:23:59:30 | SSA def(ssaSink3) | -| SSA.cs:63:23:63:30 | SSA def(nonSink0) | SSA.cs:64:15:64:22 | access to local variable nonSink0 | -| SSA.cs:63:23:63:30 | [post] access to local variable nonSink0 | SSA.cs:63:23:63:30 | SSA def(nonSink0) | -| SSA.cs:63:23:63:30 | access to local variable nonSink0 | SSA.cs:63:23:63:30 | SSA def(nonSink0) | -| SSA.cs:63:23:63:30 | access to local variable nonSink0 | SSA.cs:63:23:63:30 | SSA def(nonSink0) | +| SSA.cs:59:9:59:31 | SSA def(ssaSink3) | SSA.cs:60:15:60:22 | access to local variable ssaSink3 | +| SSA.cs:59:23:59:30 | [post] access to local variable ssaSink3 | SSA.cs:59:9:59:31 | SSA def(ssaSink3) | +| SSA.cs:59:23:59:30 | access to local variable ssaSink3 | SSA.cs:59:9:59:31 | SSA def(ssaSink3) | +| SSA.cs:59:23:59:30 | access to local variable ssaSink3 | SSA.cs:59:9:59:31 | SSA def(ssaSink3) | +| SSA.cs:63:9:63:31 | SSA def(nonSink0) | SSA.cs:64:15:64:22 | access to local variable nonSink0 | +| SSA.cs:63:23:63:30 | [post] access to local variable nonSink0 | SSA.cs:63:9:63:31 | SSA def(nonSink0) | +| SSA.cs:63:23:63:30 | access to local variable nonSink0 | SSA.cs:63:9:63:31 | SSA def(nonSink0) | +| SSA.cs:63:23:63:30 | access to local variable nonSink0 | SSA.cs:63:9:63:31 | SSA def(nonSink0) | | SSA.cs:67:9:67:12 | [post] this access | SSA.cs:68:23:68:26 | this access | | SSA.cs:67:9:67:12 | this access | SSA.cs:68:23:68:26 | this access | | SSA.cs:67:9:67:14 | [post] access to field S | SSA.cs:68:23:68:28 | access to field S | @@ -645,13 +645,13 @@ | SSA.cs:67:9:67:38 | SSA def(this.S.SsaFieldSink0) | SSA.cs:68:9:68:29 | SSA qualifier def(this.S.SsaFieldSink0) | | SSA.cs:67:32:67:38 | access to parameter tainted | SSA.cs:67:9:67:28 | access to field SsaFieldSink0 | | SSA.cs:67:32:67:38 | access to parameter tainted | SSA.cs:77:20:77:26 | access to parameter tainted | +| SSA.cs:68:9:68:29 | SSA def(this.S) | SSA.cs:69:15:69:20 | access to field S | | SSA.cs:68:9:68:29 | SSA qualifier def(this.S.SsaFieldSink0) | SSA.cs:69:15:69:34 | access to field SsaFieldSink0 | | SSA.cs:68:23:68:26 | [post] this access | SSA.cs:69:15:69:18 | this access | | SSA.cs:68:23:68:26 | this access | SSA.cs:69:15:69:18 | this access | -| SSA.cs:68:23:68:28 | SSA def(this.S) | SSA.cs:69:15:69:20 | access to field S | -| SSA.cs:68:23:68:28 | [post] access to field S | SSA.cs:68:23:68:28 | SSA def(this.S) | -| SSA.cs:68:23:68:28 | access to field S | SSA.cs:68:23:68:28 | SSA def(this.S) | -| SSA.cs:68:23:68:28 | access to field S | SSA.cs:68:23:68:28 | SSA def(this.S) | +| SSA.cs:68:23:68:28 | [post] access to field S | SSA.cs:68:9:68:29 | SSA def(this.S) | +| SSA.cs:68:23:68:28 | access to field S | SSA.cs:68:9:68:29 | SSA def(this.S) | +| SSA.cs:68:23:68:28 | access to field S | SSA.cs:68:9:68:29 | SSA def(this.S) | | SSA.cs:69:15:69:18 | [post] this access | SSA.cs:72:9:72:12 | this access | | SSA.cs:69:15:69:18 | this access | SSA.cs:72:9:72:12 | this access | | SSA.cs:69:15:69:20 | [post] access to field S | SSA.cs:72:9:72:14 | access to field S | @@ -663,13 +663,13 @@ | SSA.cs:72:9:72:31 | access to field SsaFieldNonSink0 | SSA.cs:72:9:72:36 | SSA def(this.S.SsaFieldNonSink0) | | SSA.cs:72:9:72:36 | SSA def(this.S.SsaFieldNonSink0) | SSA.cs:73:9:73:29 | SSA qualifier def(this.S.SsaFieldNonSink0) | | SSA.cs:72:35:72:36 | "" | SSA.cs:72:9:72:31 | access to field SsaFieldNonSink0 | +| SSA.cs:73:9:73:29 | SSA def(this.S) | SSA.cs:74:15:74:20 | access to field S | | SSA.cs:73:9:73:29 | SSA qualifier def(this.S.SsaFieldNonSink0) | SSA.cs:74:15:74:37 | access to field SsaFieldNonSink0 | | SSA.cs:73:23:73:26 | [post] this access | SSA.cs:74:15:74:18 | this access | | SSA.cs:73:23:73:26 | this access | SSA.cs:74:15:74:18 | this access | -| SSA.cs:73:23:73:28 | SSA def(this.S) | SSA.cs:74:15:74:20 | access to field S | -| SSA.cs:73:23:73:28 | [post] access to field S | SSA.cs:73:23:73:28 | SSA def(this.S) | -| SSA.cs:73:23:73:28 | access to field S | SSA.cs:73:23:73:28 | SSA def(this.S) | -| SSA.cs:73:23:73:28 | access to field S | SSA.cs:73:23:73:28 | SSA def(this.S) | +| SSA.cs:73:23:73:28 | [post] access to field S | SSA.cs:73:9:73:29 | SSA def(this.S) | +| SSA.cs:73:23:73:28 | access to field S | SSA.cs:73:9:73:29 | SSA def(this.S) | +| SSA.cs:73:23:73:28 | access to field S | SSA.cs:73:9:73:29 | SSA def(this.S) | | SSA.cs:74:15:74:18 | [post] this access | SSA.cs:80:9:80:12 | this access | | SSA.cs:74:15:74:18 | this access | SSA.cs:80:9:80:12 | this access | | SSA.cs:74:15:74:20 | [post] access to field S | SSA.cs:80:9:80:14 | access to field S | @@ -678,8 +678,8 @@ | SSA.cs:77:9:77:26 | SSA def(nonSink0) | SSA.cs:78:21:78:28 | access to local variable nonSink0 | | SSA.cs:77:20:77:26 | access to parameter tainted | SSA.cs:77:9:77:16 | access to local variable nonSink0 | | SSA.cs:77:20:77:26 | access to parameter tainted | SSA.cs:80:35:80:41 | access to parameter tainted | -| SSA.cs:78:21:78:28 | SSA def(nonSink0) | SSA.cs:79:15:79:22 | access to local variable nonSink0 | -| SSA.cs:78:21:78:28 | access to local variable nonSink0 | SSA.cs:78:21:78:28 | SSA def(nonSink0) | +| SSA.cs:78:9:78:29 | SSA def(nonSink0) | SSA.cs:79:15:79:22 | access to local variable nonSink0 | +| SSA.cs:78:21:78:28 | access to local variable nonSink0 | SSA.cs:78:9:78:29 | SSA def(nonSink0) | | SSA.cs:79:15:79:22 | [post] access to local variable nonSink0 | SSA.cs:102:13:102:33 | [input] SSA phi read(nonSink0) | | SSA.cs:79:15:79:22 | [post] access to local variable nonSink0 | SSA.cs:104:24:104:31 | access to local variable nonSink0 | | SSA.cs:79:15:79:22 | access to local variable nonSink0 | SSA.cs:102:13:102:33 | [input] SSA phi read(nonSink0) | @@ -690,11 +690,11 @@ | SSA.cs:80:9:80:14 | access to field S | SSA.cs:81:21:81:26 | access to field S | | SSA.cs:80:35:80:41 | access to parameter tainted | SSA.cs:80:9:80:31 | access to field SsaFieldNonSink0 | | SSA.cs:80:35:80:41 | access to parameter tainted | SSA.cs:83:35:83:41 | access to parameter tainted | +| SSA.cs:81:9:81:27 | SSA def(this.S) | SSA.cs:82:15:82:20 | access to field S | | SSA.cs:81:9:81:27 | SSA qualifier def(this.S.SsaFieldNonSink0) | SSA.cs:82:15:82:37 | access to field SsaFieldNonSink0 | | SSA.cs:81:21:81:24 | [post] this access | SSA.cs:82:15:82:18 | this access | | SSA.cs:81:21:81:24 | this access | SSA.cs:82:15:82:18 | this access | -| SSA.cs:81:21:81:26 | SSA def(this.S) | SSA.cs:82:15:82:20 | access to field S | -| SSA.cs:81:21:81:26 | access to field S | SSA.cs:81:21:81:26 | SSA def(this.S) | +| SSA.cs:81:21:81:26 | access to field S | SSA.cs:81:9:81:27 | SSA def(this.S) | | SSA.cs:82:15:82:18 | [post] this access | SSA.cs:83:9:83:12 | this access | | SSA.cs:82:15:82:18 | this access | SSA.cs:83:9:83:12 | this access | | SSA.cs:82:15:82:20 | [post] access to field S | SSA.cs:83:9:83:14 | access to field S | @@ -731,10 +731,10 @@ | SSA.cs:93:21:93:28 | access to local variable ssaSink4 | SSA.cs:97:23:97:30 | access to local variable ssaSink4 | | SSA.cs:95:21:95:28 | [post] access to local variable ssaSink4 | SSA.cs:97:23:97:30 | access to local variable ssaSink4 | | SSA.cs:95:21:95:28 | access to local variable ssaSink4 | SSA.cs:97:23:97:30 | access to local variable ssaSink4 | -| SSA.cs:97:23:97:30 | SSA def(ssaSink4) | SSA.cs:98:15:98:22 | access to local variable ssaSink4 | -| SSA.cs:97:23:97:30 | [post] access to local variable ssaSink4 | SSA.cs:97:23:97:30 | SSA def(ssaSink4) | -| SSA.cs:97:23:97:30 | access to local variable ssaSink4 | SSA.cs:97:23:97:30 | SSA def(ssaSink4) | -| SSA.cs:97:23:97:30 | access to local variable ssaSink4 | SSA.cs:97:23:97:30 | SSA def(ssaSink4) | +| SSA.cs:97:9:97:31 | SSA def(ssaSink4) | SSA.cs:98:15:98:22 | access to local variable ssaSink4 | +| SSA.cs:97:23:97:30 | [post] access to local variable ssaSink4 | SSA.cs:97:9:97:31 | SSA def(ssaSink4) | +| SSA.cs:97:23:97:30 | access to local variable ssaSink4 | SSA.cs:97:9:97:31 | SSA def(ssaSink4) | +| SSA.cs:97:23:97:30 | access to local variable ssaSink4 | SSA.cs:97:9:97:31 | SSA def(ssaSink4) | | SSA.cs:101:16:101:23 | access to local variable nonSink3 | SSA.cs:101:16:101:28 | SSA def(nonSink3) | | SSA.cs:101:16:101:28 | SSA def(nonSink3) | SSA.cs:110:23:110:30 | access to local variable nonSink3 | | SSA.cs:101:27:101:28 | "" | SSA.cs:101:16:101:23 | access to local variable nonSink3 | @@ -755,10 +755,10 @@ | SSA.cs:106:21:106:28 | access to local variable nonSink3 | SSA.cs:110:23:110:30 | access to local variable nonSink3 | | SSA.cs:108:21:108:28 | [post] access to local variable nonSink3 | SSA.cs:110:23:110:30 | access to local variable nonSink3 | | SSA.cs:108:21:108:28 | access to local variable nonSink3 | SSA.cs:110:23:110:30 | access to local variable nonSink3 | -| SSA.cs:110:23:110:30 | SSA def(nonSink3) | SSA.cs:111:15:111:22 | access to local variable nonSink3 | -| SSA.cs:110:23:110:30 | [post] access to local variable nonSink3 | SSA.cs:110:23:110:30 | SSA def(nonSink3) | -| SSA.cs:110:23:110:30 | access to local variable nonSink3 | SSA.cs:110:23:110:30 | SSA def(nonSink3) | -| SSA.cs:110:23:110:30 | access to local variable nonSink3 | SSA.cs:110:23:110:30 | SSA def(nonSink3) | +| SSA.cs:110:9:110:31 | SSA def(nonSink3) | SSA.cs:111:15:111:22 | access to local variable nonSink3 | +| SSA.cs:110:23:110:30 | [post] access to local variable nonSink3 | SSA.cs:110:9:110:31 | SSA def(nonSink3) | +| SSA.cs:110:23:110:30 | access to local variable nonSink3 | SSA.cs:110:9:110:31 | SSA def(nonSink3) | +| SSA.cs:110:23:110:30 | access to local variable nonSink3 | SSA.cs:110:9:110:31 | SSA def(nonSink3) | | SSA.cs:114:9:114:12 | [post] this access | SSA.cs:117:13:117:16 | this access | | SSA.cs:114:9:114:12 | [post] this access | SSA.cs:123:23:123:26 | this access | | SSA.cs:114:9:114:12 | this access | SSA.cs:117:13:117:16 | this access | @@ -802,13 +802,13 @@ | SSA.cs:121:21:121:26 | access to field S | SSA.cs:123:23:123:28 | access to field S | | SSA.cs:121:21:121:40 | [post] access to field SsaFieldSink1 | SSA.cs:123:9:123:29 | SSA qualifier def(this.S.SsaFieldSink1) | | SSA.cs:121:21:121:40 | access to field SsaFieldSink1 | SSA.cs:123:9:123:29 | SSA qualifier def(this.S.SsaFieldSink1) | +| SSA.cs:123:9:123:29 | SSA def(this.S) | SSA.cs:124:15:124:20 | access to field S | | SSA.cs:123:9:123:29 | SSA qualifier def(this.S.SsaFieldSink1) | SSA.cs:124:15:124:34 | access to field SsaFieldSink1 | | SSA.cs:123:23:123:26 | [post] this access | SSA.cs:124:15:124:18 | this access | | SSA.cs:123:23:123:26 | this access | SSA.cs:124:15:124:18 | this access | -| SSA.cs:123:23:123:28 | SSA def(this.S) | SSA.cs:124:15:124:20 | access to field S | -| SSA.cs:123:23:123:28 | [post] access to field S | SSA.cs:123:23:123:28 | SSA def(this.S) | -| SSA.cs:123:23:123:28 | access to field S | SSA.cs:123:23:123:28 | SSA def(this.S) | -| SSA.cs:123:23:123:28 | access to field S | SSA.cs:123:23:123:28 | SSA def(this.S) | +| SSA.cs:123:23:123:28 | [post] access to field S | SSA.cs:123:9:123:29 | SSA def(this.S) | +| SSA.cs:123:23:123:28 | access to field S | SSA.cs:123:9:123:29 | SSA def(this.S) | +| SSA.cs:123:23:123:28 | access to field S | SSA.cs:123:9:123:29 | SSA def(this.S) | | SSA.cs:124:15:124:18 | [post] this access | SSA.cs:127:9:127:12 | this access | | SSA.cs:124:15:124:18 | this access | SSA.cs:127:9:127:12 | this access | | SSA.cs:124:15:124:20 | [post] access to field S | SSA.cs:127:9:127:14 | access to field S | @@ -851,13 +851,13 @@ | SSA.cs:134:21:134:26 | access to field S | SSA.cs:136:23:136:28 | access to field S | | SSA.cs:134:21:134:43 | [post] access to field SsaFieldNonSink0 | SSA.cs:136:9:136:29 | SSA qualifier def(this.S.SsaFieldNonSink0) | | SSA.cs:134:21:134:43 | access to field SsaFieldNonSink0 | SSA.cs:136:9:136:29 | SSA qualifier def(this.S.SsaFieldNonSink0) | +| SSA.cs:136:9:136:29 | SSA def(this.S) | SSA.cs:137:15:137:20 | access to field S | | SSA.cs:136:9:136:29 | SSA qualifier def(this.S.SsaFieldNonSink0) | SSA.cs:137:15:137:37 | access to field SsaFieldNonSink0 | | SSA.cs:136:23:136:26 | [post] this access | SSA.cs:137:15:137:18 | this access | | SSA.cs:136:23:136:26 | this access | SSA.cs:137:15:137:18 | this access | -| SSA.cs:136:23:136:28 | SSA def(this.S) | SSA.cs:137:15:137:20 | access to field S | -| SSA.cs:136:23:136:28 | [post] access to field S | SSA.cs:136:23:136:28 | SSA def(this.S) | -| SSA.cs:136:23:136:28 | access to field S | SSA.cs:136:23:136:28 | SSA def(this.S) | -| SSA.cs:136:23:136:28 | access to field S | SSA.cs:136:23:136:28 | SSA def(this.S) | +| SSA.cs:136:23:136:28 | [post] access to field S | SSA.cs:136:9:136:29 | SSA def(this.S) | +| SSA.cs:136:23:136:28 | access to field S | SSA.cs:136:9:136:29 | SSA def(this.S) | +| SSA.cs:136:23:136:28 | access to field S | SSA.cs:136:9:136:29 | SSA def(this.S) | | SSA.cs:144:34:144:34 | SSA param(t) | SSA.cs:146:13:146:13 | access to parameter t | | SSA.cs:144:34:144:34 | t | SSA.cs:144:34:144:34 | SSA param(t) | | SSA.cs:146:13:146:13 | access to parameter t | SSA.cs:146:13:146:13 | (...) ... | @@ -874,8 +874,8 @@ | SSA.cs:154:13:154:13 | access to parameter t | SSA.cs:154:13:154:21 | [input] SSA phi(t) | | SSA.cs:154:13:154:13 | access to parameter t | SSA.cs:155:25:155:25 | access to parameter t | | SSA.cs:154:13:154:21 | [input] SSA phi(t) | SSA.cs:154:9:155:27 | SSA phi(t) | -| SSA.cs:155:25:155:25 | SSA def(t) | SSA.cs:154:9:155:27 | SSA phi(t) | -| SSA.cs:155:25:155:25 | access to parameter t | SSA.cs:155:25:155:25 | SSA def(t) | +| SSA.cs:155:13:155:26 | SSA def(t) | SSA.cs:154:9:155:27 | SSA phi(t) | +| SSA.cs:155:25:155:25 | access to parameter t | SSA.cs:155:13:155:26 | SSA def(t) | | SSA.cs:166:10:166:13 | this | SSA.cs:166:19:166:22 | this access | | SSA.cs:166:28:166:31 | null | SSA.cs:166:19:166:24 | access to field S | | SSA.cs:168:22:168:28 | SSA param(tainted) | SSA.cs:173:24:173:30 | access to parameter tainted | diff --git a/csharp/ql/test/library-tests/dataflow/local/TaintTrackingStep.expected b/csharp/ql/test/library-tests/dataflow/local/TaintTrackingStep.expected index 3229a5401481..8f059acc6caa 100644 --- a/csharp/ql/test/library-tests/dataflow/local/TaintTrackingStep.expected +++ b/csharp/ql/test/library-tests/dataflow/local/TaintTrackingStep.expected @@ -747,14 +747,14 @@ | SSA.cs:58:16:58:33 | SSA def(ssaSink3) | SSA.cs:59:23:59:30 | access to local variable ssaSink3 | | SSA.cs:58:27:58:33 | access to parameter tainted | SSA.cs:58:16:58:23 | access to local variable ssaSink3 | | SSA.cs:58:27:58:33 | access to parameter tainted | SSA.cs:67:32:67:38 | access to parameter tainted | -| SSA.cs:59:23:59:30 | SSA def(ssaSink3) | SSA.cs:60:15:60:22 | access to local variable ssaSink3 | -| SSA.cs:59:23:59:30 | [post] access to local variable ssaSink3 | SSA.cs:59:23:59:30 | SSA def(ssaSink3) | -| SSA.cs:59:23:59:30 | access to local variable ssaSink3 | SSA.cs:59:23:59:30 | SSA def(ssaSink3) | -| SSA.cs:59:23:59:30 | access to local variable ssaSink3 | SSA.cs:59:23:59:30 | SSA def(ssaSink3) | -| SSA.cs:63:23:63:30 | SSA def(nonSink0) | SSA.cs:64:15:64:22 | access to local variable nonSink0 | -| SSA.cs:63:23:63:30 | [post] access to local variable nonSink0 | SSA.cs:63:23:63:30 | SSA def(nonSink0) | -| SSA.cs:63:23:63:30 | access to local variable nonSink0 | SSA.cs:63:23:63:30 | SSA def(nonSink0) | -| SSA.cs:63:23:63:30 | access to local variable nonSink0 | SSA.cs:63:23:63:30 | SSA def(nonSink0) | +| SSA.cs:59:9:59:31 | SSA def(ssaSink3) | SSA.cs:60:15:60:22 | access to local variable ssaSink3 | +| SSA.cs:59:23:59:30 | [post] access to local variable ssaSink3 | SSA.cs:59:9:59:31 | SSA def(ssaSink3) | +| SSA.cs:59:23:59:30 | access to local variable ssaSink3 | SSA.cs:59:9:59:31 | SSA def(ssaSink3) | +| SSA.cs:59:23:59:30 | access to local variable ssaSink3 | SSA.cs:59:9:59:31 | SSA def(ssaSink3) | +| SSA.cs:63:9:63:31 | SSA def(nonSink0) | SSA.cs:64:15:64:22 | access to local variable nonSink0 | +| SSA.cs:63:23:63:30 | [post] access to local variable nonSink0 | SSA.cs:63:9:63:31 | SSA def(nonSink0) | +| SSA.cs:63:23:63:30 | access to local variable nonSink0 | SSA.cs:63:9:63:31 | SSA def(nonSink0) | +| SSA.cs:63:23:63:30 | access to local variable nonSink0 | SSA.cs:63:9:63:31 | SSA def(nonSink0) | | SSA.cs:67:9:67:12 | [post] this access | SSA.cs:68:23:68:26 | this access | | SSA.cs:67:9:67:12 | this access | SSA.cs:68:23:68:26 | this access | | SSA.cs:67:9:67:14 | [post] access to field S | SSA.cs:68:23:68:28 | access to field S | @@ -763,13 +763,13 @@ | SSA.cs:67:9:67:38 | SSA def(this.S.SsaFieldSink0) | SSA.cs:68:9:68:29 | SSA qualifier def(this.S.SsaFieldSink0) | | SSA.cs:67:32:67:38 | access to parameter tainted | SSA.cs:67:9:67:28 | access to field SsaFieldSink0 | | SSA.cs:67:32:67:38 | access to parameter tainted | SSA.cs:77:20:77:26 | access to parameter tainted | +| SSA.cs:68:9:68:29 | SSA def(this.S) | SSA.cs:69:15:69:20 | access to field S | | SSA.cs:68:9:68:29 | SSA qualifier def(this.S.SsaFieldSink0) | SSA.cs:69:15:69:34 | access to field SsaFieldSink0 | | SSA.cs:68:23:68:26 | [post] this access | SSA.cs:69:15:69:18 | this access | | SSA.cs:68:23:68:26 | this access | SSA.cs:69:15:69:18 | this access | -| SSA.cs:68:23:68:28 | SSA def(this.S) | SSA.cs:69:15:69:20 | access to field S | -| SSA.cs:68:23:68:28 | [post] access to field S | SSA.cs:68:23:68:28 | SSA def(this.S) | -| SSA.cs:68:23:68:28 | access to field S | SSA.cs:68:23:68:28 | SSA def(this.S) | -| SSA.cs:68:23:68:28 | access to field S | SSA.cs:68:23:68:28 | SSA def(this.S) | +| SSA.cs:68:23:68:28 | [post] access to field S | SSA.cs:68:9:68:29 | SSA def(this.S) | +| SSA.cs:68:23:68:28 | access to field S | SSA.cs:68:9:68:29 | SSA def(this.S) | +| SSA.cs:68:23:68:28 | access to field S | SSA.cs:68:9:68:29 | SSA def(this.S) | | SSA.cs:69:15:69:18 | [post] this access | SSA.cs:72:9:72:12 | this access | | SSA.cs:69:15:69:18 | this access | SSA.cs:72:9:72:12 | this access | | SSA.cs:69:15:69:20 | [post] access to field S | SSA.cs:72:9:72:14 | access to field S | @@ -781,13 +781,13 @@ | SSA.cs:72:9:72:31 | access to field SsaFieldNonSink0 | SSA.cs:72:9:72:36 | SSA def(this.S.SsaFieldNonSink0) | | SSA.cs:72:9:72:36 | SSA def(this.S.SsaFieldNonSink0) | SSA.cs:73:9:73:29 | SSA qualifier def(this.S.SsaFieldNonSink0) | | SSA.cs:72:35:72:36 | "" | SSA.cs:72:9:72:31 | access to field SsaFieldNonSink0 | +| SSA.cs:73:9:73:29 | SSA def(this.S) | SSA.cs:74:15:74:20 | access to field S | | SSA.cs:73:9:73:29 | SSA qualifier def(this.S.SsaFieldNonSink0) | SSA.cs:74:15:74:37 | access to field SsaFieldNonSink0 | | SSA.cs:73:23:73:26 | [post] this access | SSA.cs:74:15:74:18 | this access | | SSA.cs:73:23:73:26 | this access | SSA.cs:74:15:74:18 | this access | -| SSA.cs:73:23:73:28 | SSA def(this.S) | SSA.cs:74:15:74:20 | access to field S | -| SSA.cs:73:23:73:28 | [post] access to field S | SSA.cs:73:23:73:28 | SSA def(this.S) | -| SSA.cs:73:23:73:28 | access to field S | SSA.cs:73:23:73:28 | SSA def(this.S) | -| SSA.cs:73:23:73:28 | access to field S | SSA.cs:73:23:73:28 | SSA def(this.S) | +| SSA.cs:73:23:73:28 | [post] access to field S | SSA.cs:73:9:73:29 | SSA def(this.S) | +| SSA.cs:73:23:73:28 | access to field S | SSA.cs:73:9:73:29 | SSA def(this.S) | +| SSA.cs:73:23:73:28 | access to field S | SSA.cs:73:9:73:29 | SSA def(this.S) | | SSA.cs:74:15:74:18 | [post] this access | SSA.cs:80:9:80:12 | this access | | SSA.cs:74:15:74:18 | this access | SSA.cs:80:9:80:12 | this access | | SSA.cs:74:15:74:20 | [post] access to field S | SSA.cs:80:9:80:14 | access to field S | @@ -796,8 +796,8 @@ | SSA.cs:77:9:77:26 | SSA def(nonSink0) | SSA.cs:78:21:78:28 | access to local variable nonSink0 | | SSA.cs:77:20:77:26 | access to parameter tainted | SSA.cs:77:9:77:16 | access to local variable nonSink0 | | SSA.cs:77:20:77:26 | access to parameter tainted | SSA.cs:80:35:80:41 | access to parameter tainted | -| SSA.cs:78:21:78:28 | SSA def(nonSink0) | SSA.cs:79:15:79:22 | access to local variable nonSink0 | -| SSA.cs:78:21:78:28 | access to local variable nonSink0 | SSA.cs:78:21:78:28 | SSA def(nonSink0) | +| SSA.cs:78:9:78:29 | SSA def(nonSink0) | SSA.cs:79:15:79:22 | access to local variable nonSink0 | +| SSA.cs:78:21:78:28 | access to local variable nonSink0 | SSA.cs:78:9:78:29 | SSA def(nonSink0) | | SSA.cs:79:15:79:22 | [post] access to local variable nonSink0 | SSA.cs:102:13:102:33 | [input] SSA phi read(nonSink0) | | SSA.cs:79:15:79:22 | [post] access to local variable nonSink0 | SSA.cs:104:24:104:31 | access to local variable nonSink0 | | SSA.cs:79:15:79:22 | access to local variable nonSink0 | SSA.cs:102:13:102:33 | [input] SSA phi read(nonSink0) | @@ -808,11 +808,11 @@ | SSA.cs:80:9:80:14 | access to field S | SSA.cs:81:21:81:26 | access to field S | | SSA.cs:80:35:80:41 | access to parameter tainted | SSA.cs:80:9:80:31 | access to field SsaFieldNonSink0 | | SSA.cs:80:35:80:41 | access to parameter tainted | SSA.cs:83:35:83:41 | access to parameter tainted | +| SSA.cs:81:9:81:27 | SSA def(this.S) | SSA.cs:82:15:82:20 | access to field S | | SSA.cs:81:9:81:27 | SSA qualifier def(this.S.SsaFieldNonSink0) | SSA.cs:82:15:82:37 | access to field SsaFieldNonSink0 | | SSA.cs:81:21:81:24 | [post] this access | SSA.cs:82:15:82:18 | this access | | SSA.cs:81:21:81:24 | this access | SSA.cs:82:15:82:18 | this access | -| SSA.cs:81:21:81:26 | SSA def(this.S) | SSA.cs:82:15:82:20 | access to field S | -| SSA.cs:81:21:81:26 | access to field S | SSA.cs:81:21:81:26 | SSA def(this.S) | +| SSA.cs:81:21:81:26 | access to field S | SSA.cs:81:9:81:27 | SSA def(this.S) | | SSA.cs:82:15:82:18 | [post] this access | SSA.cs:83:9:83:12 | this access | | SSA.cs:82:15:82:18 | this access | SSA.cs:83:9:83:12 | this access | | SSA.cs:82:15:82:20 | [post] access to field S | SSA.cs:83:9:83:14 | access to field S | @@ -851,10 +851,10 @@ | SSA.cs:93:21:93:28 | access to local variable ssaSink4 | SSA.cs:97:23:97:30 | access to local variable ssaSink4 | | SSA.cs:95:21:95:28 | [post] access to local variable ssaSink4 | SSA.cs:97:23:97:30 | access to local variable ssaSink4 | | SSA.cs:95:21:95:28 | access to local variable ssaSink4 | SSA.cs:97:23:97:30 | access to local variable ssaSink4 | -| SSA.cs:97:23:97:30 | SSA def(ssaSink4) | SSA.cs:98:15:98:22 | access to local variable ssaSink4 | -| SSA.cs:97:23:97:30 | [post] access to local variable ssaSink4 | SSA.cs:97:23:97:30 | SSA def(ssaSink4) | -| SSA.cs:97:23:97:30 | access to local variable ssaSink4 | SSA.cs:97:23:97:30 | SSA def(ssaSink4) | -| SSA.cs:97:23:97:30 | access to local variable ssaSink4 | SSA.cs:97:23:97:30 | SSA def(ssaSink4) | +| SSA.cs:97:9:97:31 | SSA def(ssaSink4) | SSA.cs:98:15:98:22 | access to local variable ssaSink4 | +| SSA.cs:97:23:97:30 | [post] access to local variable ssaSink4 | SSA.cs:97:9:97:31 | SSA def(ssaSink4) | +| SSA.cs:97:23:97:30 | access to local variable ssaSink4 | SSA.cs:97:9:97:31 | SSA def(ssaSink4) | +| SSA.cs:97:23:97:30 | access to local variable ssaSink4 | SSA.cs:97:9:97:31 | SSA def(ssaSink4) | | SSA.cs:101:16:101:23 | access to local variable nonSink3 | SSA.cs:101:16:101:28 | SSA def(nonSink3) | | SSA.cs:101:16:101:28 | SSA def(nonSink3) | SSA.cs:110:23:110:30 | access to local variable nonSink3 | | SSA.cs:101:27:101:28 | "" | SSA.cs:101:16:101:23 | access to local variable nonSink3 | @@ -877,10 +877,10 @@ | SSA.cs:106:21:106:28 | access to local variable nonSink3 | SSA.cs:110:23:110:30 | access to local variable nonSink3 | | SSA.cs:108:21:108:28 | [post] access to local variable nonSink3 | SSA.cs:110:23:110:30 | access to local variable nonSink3 | | SSA.cs:108:21:108:28 | access to local variable nonSink3 | SSA.cs:110:23:110:30 | access to local variable nonSink3 | -| SSA.cs:110:23:110:30 | SSA def(nonSink3) | SSA.cs:111:15:111:22 | access to local variable nonSink3 | -| SSA.cs:110:23:110:30 | [post] access to local variable nonSink3 | SSA.cs:110:23:110:30 | SSA def(nonSink3) | -| SSA.cs:110:23:110:30 | access to local variable nonSink3 | SSA.cs:110:23:110:30 | SSA def(nonSink3) | -| SSA.cs:110:23:110:30 | access to local variable nonSink3 | SSA.cs:110:23:110:30 | SSA def(nonSink3) | +| SSA.cs:110:9:110:31 | SSA def(nonSink3) | SSA.cs:111:15:111:22 | access to local variable nonSink3 | +| SSA.cs:110:23:110:30 | [post] access to local variable nonSink3 | SSA.cs:110:9:110:31 | SSA def(nonSink3) | +| SSA.cs:110:23:110:30 | access to local variable nonSink3 | SSA.cs:110:9:110:31 | SSA def(nonSink3) | +| SSA.cs:110:23:110:30 | access to local variable nonSink3 | SSA.cs:110:9:110:31 | SSA def(nonSink3) | | SSA.cs:114:9:114:12 | [post] this access | SSA.cs:117:13:117:16 | this access | | SSA.cs:114:9:114:12 | [post] this access | SSA.cs:123:23:123:26 | this access | | SSA.cs:114:9:114:12 | this access | SSA.cs:117:13:117:16 | this access | @@ -926,13 +926,13 @@ | SSA.cs:121:21:121:26 | access to field S | SSA.cs:123:23:123:28 | access to field S | | SSA.cs:121:21:121:40 | [post] access to field SsaFieldSink1 | SSA.cs:123:9:123:29 | SSA qualifier def(this.S.SsaFieldSink1) | | SSA.cs:121:21:121:40 | access to field SsaFieldSink1 | SSA.cs:123:9:123:29 | SSA qualifier def(this.S.SsaFieldSink1) | +| SSA.cs:123:9:123:29 | SSA def(this.S) | SSA.cs:124:15:124:20 | access to field S | | SSA.cs:123:9:123:29 | SSA qualifier def(this.S.SsaFieldSink1) | SSA.cs:124:15:124:34 | access to field SsaFieldSink1 | | SSA.cs:123:23:123:26 | [post] this access | SSA.cs:124:15:124:18 | this access | | SSA.cs:123:23:123:26 | this access | SSA.cs:124:15:124:18 | this access | -| SSA.cs:123:23:123:28 | SSA def(this.S) | SSA.cs:124:15:124:20 | access to field S | -| SSA.cs:123:23:123:28 | [post] access to field S | SSA.cs:123:23:123:28 | SSA def(this.S) | -| SSA.cs:123:23:123:28 | access to field S | SSA.cs:123:23:123:28 | SSA def(this.S) | -| SSA.cs:123:23:123:28 | access to field S | SSA.cs:123:23:123:28 | SSA def(this.S) | +| SSA.cs:123:23:123:28 | [post] access to field S | SSA.cs:123:9:123:29 | SSA def(this.S) | +| SSA.cs:123:23:123:28 | access to field S | SSA.cs:123:9:123:29 | SSA def(this.S) | +| SSA.cs:123:23:123:28 | access to field S | SSA.cs:123:9:123:29 | SSA def(this.S) | | SSA.cs:124:15:124:18 | [post] this access | SSA.cs:127:9:127:12 | this access | | SSA.cs:124:15:124:18 | this access | SSA.cs:127:9:127:12 | this access | | SSA.cs:124:15:124:20 | [post] access to field S | SSA.cs:127:9:127:14 | access to field S | @@ -977,13 +977,13 @@ | SSA.cs:134:21:134:26 | access to field S | SSA.cs:136:23:136:28 | access to field S | | SSA.cs:134:21:134:43 | [post] access to field SsaFieldNonSink0 | SSA.cs:136:9:136:29 | SSA qualifier def(this.S.SsaFieldNonSink0) | | SSA.cs:134:21:134:43 | access to field SsaFieldNonSink0 | SSA.cs:136:9:136:29 | SSA qualifier def(this.S.SsaFieldNonSink0) | +| SSA.cs:136:9:136:29 | SSA def(this.S) | SSA.cs:137:15:137:20 | access to field S | | SSA.cs:136:9:136:29 | SSA qualifier def(this.S.SsaFieldNonSink0) | SSA.cs:137:15:137:37 | access to field SsaFieldNonSink0 | | SSA.cs:136:23:136:26 | [post] this access | SSA.cs:137:15:137:18 | this access | | SSA.cs:136:23:136:26 | this access | SSA.cs:137:15:137:18 | this access | -| SSA.cs:136:23:136:28 | SSA def(this.S) | SSA.cs:137:15:137:20 | access to field S | -| SSA.cs:136:23:136:28 | [post] access to field S | SSA.cs:136:23:136:28 | SSA def(this.S) | -| SSA.cs:136:23:136:28 | access to field S | SSA.cs:136:23:136:28 | SSA def(this.S) | -| SSA.cs:136:23:136:28 | access to field S | SSA.cs:136:23:136:28 | SSA def(this.S) | +| SSA.cs:136:23:136:28 | [post] access to field S | SSA.cs:136:9:136:29 | SSA def(this.S) | +| SSA.cs:136:23:136:28 | access to field S | SSA.cs:136:9:136:29 | SSA def(this.S) | +| SSA.cs:136:23:136:28 | access to field S | SSA.cs:136:9:136:29 | SSA def(this.S) | | SSA.cs:144:34:144:34 | SSA param(t) | SSA.cs:146:13:146:13 | access to parameter t | | SSA.cs:144:34:144:34 | t | SSA.cs:144:34:144:34 | SSA param(t) | | SSA.cs:146:13:146:13 | (...) ... | SSA.cs:146:13:146:21 | ... == ... | @@ -1002,8 +1002,8 @@ | SSA.cs:154:13:154:13 | access to parameter t | SSA.cs:154:13:154:21 | [input] SSA phi(t) | | SSA.cs:154:13:154:13 | access to parameter t | SSA.cs:155:25:155:25 | access to parameter t | | SSA.cs:154:13:154:21 | [input] SSA phi(t) | SSA.cs:154:9:155:27 | SSA phi(t) | -| SSA.cs:155:25:155:25 | SSA def(t) | SSA.cs:154:9:155:27 | SSA phi(t) | -| SSA.cs:155:25:155:25 | access to parameter t | SSA.cs:155:25:155:25 | SSA def(t) | +| SSA.cs:155:13:155:26 | SSA def(t) | SSA.cs:154:9:155:27 | SSA phi(t) | +| SSA.cs:155:25:155:25 | access to parameter t | SSA.cs:155:13:155:26 | SSA def(t) | | SSA.cs:166:10:166:13 | this | SSA.cs:166:19:166:22 | this access | | SSA.cs:166:28:166:31 | null | SSA.cs:166:19:166:24 | access to field S | | SSA.cs:168:22:168:28 | SSA param(tainted) | SSA.cs:173:24:173:30 | access to parameter tainted | diff --git a/csharp/ql/test/library-tests/dataflow/ssa/SSAPhi.expected b/csharp/ql/test/library-tests/dataflow/ssa/SSAPhi.expected index dd72baf4f299..7be0fb7c46df 100644 --- a/csharp/ql/test/library-tests/dataflow/ssa/SSAPhi.expected +++ b/csharp/ql/test/library-tests/dataflow/ssa/SSAPhi.expected @@ -5,7 +5,7 @@ | DefUse.cs:6:14:6:14 | y | DefUse.cs:37:9:40:9 | SSA phi(y) | DefUse.cs:28:13:28:18 | SSA def(y) | | DefUse.cs:6:14:6:14 | y | DefUse.cs:37:9:40:9 | SSA phi(y) | DefUse.cs:39:13:39:18 | SSA def(y) | | DefUse.cs:79:13:79:14 | x1 | DefUse.cs:80:9:80:51 | SSA phi(x1) | DefUse.cs:79:13:79:18 | SSA def(x1) | -| DefUse.cs:79:13:79:14 | x1 | DefUse.cs:80:9:80:51 | SSA phi(x1) | DefUse.cs:80:30:80:31 | SSA def(x1) | +| DefUse.cs:79:13:79:14 | x1 | DefUse.cs:80:9:80:51 | SSA phi(x1) | DefUse.cs:80:16:80:32 | SSA def(x1) | | DefUse.cs:97:13:97:14 | x5 | DefUse.cs:98:9:102:9 | SSA phi(x5) | DefUse.cs:97:13:97:18 | SSA def(x5) | | DefUse.cs:97:13:97:14 | x5 | DefUse.cs:98:9:102:9 | SSA phi(x5) | DefUse.cs:101:13:101:23 | SSA def(x5) | | DefaultParam.cs:3:30:3:30 | s | DefaultParam.cs:3:42:3:42 | SSA phi(s) | DefaultParam.cs:3:30:3:30 | SSA param(s) | diff --git a/csharp/ql/test/library-tests/dataflow/ssa/SsaDef.expected b/csharp/ql/test/library-tests/dataflow/ssa/SsaDef.expected index 1e185b8456f4..b7d177bf7852 100644 --- a/csharp/ql/test/library-tests/dataflow/ssa/SsaDef.expected +++ b/csharp/ql/test/library-tests/dataflow/ssa/SsaDef.expected @@ -35,7 +35,7 @@ | Capture.cs:248:36:248:36 | j | Capture.cs:251:13:251:17 | SSA def(j) | | Consistency.cs:7:25:7:25 | b | Consistency.cs:7:25:7:25 | SSA param(b) | | Consistency.cs:15:17:15:17 | i | Consistency.cs:15:17:15:21 | SSA def(i) | -| Consistency.cs:25:29:25:29 | c | Consistency.cs:25:29:25:29 | SSA def(c) | +| Consistency.cs:25:29:25:29 | c | Consistency.cs:25:9:25:30 | SSA def(c) | | Consistency.cs:26:13:26:19 | c.Field | Consistency.cs:25:9:25:30 | SSA qualifier def(c.Field) | | Consistency.cs:30:30:30:30 | c | Consistency.cs:32:9:32:29 | SSA def(c) | | Consistency.cs:44:11:44:11 | s | Consistency.cs:44:11:44:11 | SSA def(s) | @@ -58,8 +58,8 @@ | DefUse.cs:6:14:6:14 | y | DefUse.cs:37:9:40:9 | SSA phi(y) | | DefUse.cs:6:14:6:14 | y | DefUse.cs:39:13:39:18 | SSA def(y) | | DefUse.cs:44:13:44:13 | z | DefUse.cs:44:13:44:17 | SSA def(z) | -| DefUse.cs:44:13:44:13 | z | DefUse.cs:47:23:47:23 | SSA def(z) | -| DefUse.cs:44:13:44:13 | z | DefUse.cs:50:23:50:23 | SSA def(z) | +| DefUse.cs:44:13:44:13 | z | DefUse.cs:47:9:47:24 | SSA def(z) | +| DefUse.cs:44:13:44:13 | z | DefUse.cs:50:9:50:24 | SSA def(z) | | DefUse.cs:53:9:53:13 | this.Field | DefUse.cs:53:9:53:17 | SSA def(this.Field) | | DefUse.cs:56:9:56:12 | this.Prop | DefUse.cs:56:9:56:16 | SSA def(this.Prop) | | DefUse.cs:63:9:63:14 | this.Field2 | DefUse.cs:63:9:63:18 | SSA def(this.Field2) | @@ -67,12 +67,12 @@ | DefUse.cs:67:19:67:20 | tc | DefUse.cs:67:19:67:27 | SSA def(tc) | | DefUse.cs:79:13:79:14 | x1 | DefUse.cs:79:13:79:18 | SSA def(x1) | | DefUse.cs:79:13:79:14 | x1 | DefUse.cs:80:9:80:51 | SSA phi(x1) | -| DefUse.cs:79:13:79:14 | x1 | DefUse.cs:80:30:80:31 | SSA def(x1) | +| DefUse.cs:79:13:79:14 | x1 | DefUse.cs:80:16:80:32 | SSA def(x1) | | DefUse.cs:83:13:83:14 | x2 | DefUse.cs:83:13:83:18 | SSA def(x2) | -| DefUse.cs:83:13:83:14 | x2 | DefUse.cs:85:15:85:16 | SSA def(x2) | +| DefUse.cs:83:13:83:14 | x2 | DefUse.cs:84:9:86:17 | SSA def(x2) | | DefUse.cs:89:13:89:14 | x3 | DefUse.cs:89:13:89:18 | SSA def(x3) | -| DefUse.cs:89:13:89:14 | x3 | DefUse.cs:92:15:92:16 | SSA def(x3) | -| DefUse.cs:90:13:90:14 | x4 | DefUse.cs:93:15:93:16 | SSA def(x4) | +| DefUse.cs:89:13:89:14 | x3 | DefUse.cs:91:9:93:17 | SSA def(x3) | +| DefUse.cs:90:13:90:14 | x4 | DefUse.cs:91:9:93:17 | SSA def(x4) | | DefUse.cs:97:13:97:14 | x5 | DefUse.cs:97:13:97:18 | SSA def(x5) | | DefUse.cs:97:13:97:14 | x5 | DefUse.cs:98:9:102:9 | SSA phi(x5) | | DefUse.cs:97:13:97:14 | x5 | DefUse.cs:101:13:101:23 | SSA def(x5) | @@ -169,18 +169,18 @@ | MultiImplementationA.cs:5:22:5:22 | x | MultiImplementationA.cs:5:22:5:22 | SSA param(x) | | MultiImplementationA.cs:5:22:5:22 | x | MultiImplementationB.cs:3:22:3:22 | SSA param(x) | | OutRef.cs:9:13:9:13 | j | OutRef.cs:9:13:9:17 | SSA def(j) | -| OutRef.cs:9:13:9:13 | j | OutRef.cs:10:32:10:32 | SSA def(j) | -| OutRef.cs:9:13:9:13 | j | OutRef.cs:22:22:22:22 | SSA def(j) | -| OutRef.cs:9:13:9:13 | j | OutRef.cs:24:29:24:29 | SSA def(j) | -| OutRef.cs:10:25:10:25 | i | OutRef.cs:10:25:10:25 | SSA def(i) | -| OutRef.cs:10:25:10:25 | i | OutRef.cs:13:21:13:21 | SSA def(i) | +| OutRef.cs:9:13:9:13 | j | OutRef.cs:10:9:10:33 | SSA def(j) | +| OutRef.cs:9:13:9:13 | j | OutRef.cs:22:9:22:30 | SSA def(j) | +| OutRef.cs:9:13:9:13 | j | OutRef.cs:24:9:24:30 | SSA def(j) | +| OutRef.cs:10:25:10:25 | i | OutRef.cs:10:9:10:33 | SSA def(i) | +| OutRef.cs:10:25:10:25 | i | OutRef.cs:13:9:13:33 | SSA def(i) | | OutRef.cs:13:28:13:32 | this.Field | OutRef.cs:7:10:7:10 | SSA entry def(this.Field) | -| OutRef.cs:13:28:13:32 | this.Field | OutRef.cs:13:28:13:32 | SSA def(this.Field) | -| OutRef.cs:13:28:13:32 | this.Field | OutRef.cs:16:21:16:25 | SSA def(this.Field) | -| OutRef.cs:13:28:13:32 | this.Field | OutRef.cs:19:21:19:25 | SSA def(this.Field) | +| OutRef.cs:13:28:13:32 | this.Field | OutRef.cs:13:9:13:33 | SSA def(this.Field) | +| OutRef.cs:13:28:13:32 | this.Field | OutRef.cs:16:9:16:37 | SSA def(this.Field) | +| OutRef.cs:13:28:13:32 | this.Field | OutRef.cs:19:9:19:39 | SSA def(this.Field) | | OutRef.cs:18:13:18:13 | t | OutRef.cs:18:13:18:28 | SSA def(t) | | OutRef.cs:19:32:19:38 | t.Field | OutRef.cs:18:13:18:28 | SSA qualifier def(t.Field) | -| OutRef.cs:19:32:19:38 | t.Field | OutRef.cs:19:32:19:38 | SSA def(t.Field) | +| OutRef.cs:19:32:19:38 | t.Field | OutRef.cs:19:9:19:39 | SSA def(t.Field) | | OutRef.cs:28:26:28:26 | i | OutRef.cs:30:9:30:13 | SSA def(i) | | OutRef.cs:28:37:28:37 | j | OutRef.cs:28:37:28:37 | SSA param(j) | | OutRef.cs:28:37:28:37 | j | OutRef.cs:31:9:31:13 | SSA def(j) | diff --git a/csharp/ql/test/library-tests/dataflow/ssa/SsaExplicitDef.expected b/csharp/ql/test/library-tests/dataflow/ssa/SsaExplicitDef.expected index 1d8a06035dc9..4ea7d32e32f5 100644 --- a/csharp/ql/test/library-tests/dataflow/ssa/SsaExplicitDef.expected +++ b/csharp/ql/test/library-tests/dataflow/ssa/SsaExplicitDef.expected @@ -24,7 +24,7 @@ | Capture.cs:248:36:248:36 | j | Capture.cs:251:13:251:17 | SSA def(j) | Capture.cs:251:13:251:17 | ... = ... | | Consistency.cs:7:25:7:25 | b | Consistency.cs:7:25:7:25 | SSA param(b) | Consistency.cs:7:25:7:25 | b | | Consistency.cs:15:17:15:17 | i | Consistency.cs:15:17:15:21 | SSA def(i) | Consistency.cs:15:17:15:21 | Int32 i = ... | -| Consistency.cs:25:29:25:29 | c | Consistency.cs:25:29:25:29 | SSA def(c) | Consistency.cs:25:29:25:29 | Consistency c | +| Consistency.cs:25:29:25:29 | c | Consistency.cs:25:9:25:30 | SSA def(c) | Consistency.cs:25:29:25:29 | Consistency c | | Consistency.cs:30:30:30:30 | c | Consistency.cs:32:9:32:29 | SSA def(c) | Consistency.cs:32:9:32:29 | ... = ... | | Consistency.cs:44:11:44:11 | s | Consistency.cs:44:11:44:11 | SSA def(s) | Consistency.cs:44:11:44:11 | S s | | Consistency.cs:49:30:49:30 | a | Consistency.cs:49:30:49:30 | SSA param(a) | Consistency.cs:49:30:49:30 | a | @@ -43,21 +43,21 @@ | DefUse.cs:6:14:6:14 | y | DefUse.cs:28:13:28:18 | SSA def(y) | DefUse.cs:28:13:28:18 | ... = ... | | DefUse.cs:6:14:6:14 | y | DefUse.cs:39:13:39:18 | SSA def(y) | DefUse.cs:39:13:39:18 | ... = ... | | DefUse.cs:44:13:44:13 | z | DefUse.cs:44:13:44:17 | SSA def(z) | DefUse.cs:44:13:44:17 | Int32 z = ... | -| DefUse.cs:44:13:44:13 | z | DefUse.cs:47:23:47:23 | SSA def(z) | DefUse.cs:47:23:47:23 | access to local variable z | -| DefUse.cs:44:13:44:13 | z | DefUse.cs:50:23:50:23 | SSA def(z) | DefUse.cs:50:23:50:23 | access to local variable z | +| DefUse.cs:44:13:44:13 | z | DefUse.cs:47:9:47:24 | SSA def(z) | DefUse.cs:47:23:47:23 | access to local variable z | +| DefUse.cs:44:13:44:13 | z | DefUse.cs:50:9:50:24 | SSA def(z) | DefUse.cs:50:23:50:23 | access to local variable z | | DefUse.cs:53:9:53:13 | this.Field | DefUse.cs:53:9:53:17 | SSA def(this.Field) | DefUse.cs:53:9:53:17 | ... = ... | | DefUse.cs:56:9:56:12 | this.Prop | DefUse.cs:56:9:56:16 | SSA def(this.Prop) | DefUse.cs:56:9:56:16 | ... = ... | | DefUse.cs:63:9:63:14 | this.Field2 | DefUse.cs:63:9:63:18 | SSA def(this.Field2) | DefUse.cs:63:9:63:18 | ... = ... | | DefUse.cs:66:9:66:14 | this.Field3 | DefUse.cs:66:9:66:18 | SSA def(this.Field3) | DefUse.cs:66:9:66:18 | ... = ... | | DefUse.cs:67:19:67:20 | tc | DefUse.cs:67:19:67:27 | SSA def(tc) | DefUse.cs:67:19:67:27 | TestClass tc = ... | | DefUse.cs:79:13:79:14 | x1 | DefUse.cs:79:13:79:18 | SSA def(x1) | DefUse.cs:79:13:79:18 | Int32 x1 = ... | -| DefUse.cs:79:13:79:14 | x1 | DefUse.cs:80:30:80:31 | SSA def(x1) | DefUse.cs:80:30:80:31 | access to local variable x1 | +| DefUse.cs:79:13:79:14 | x1 | DefUse.cs:80:16:80:32 | SSA def(x1) | DefUse.cs:80:30:80:31 | access to local variable x1 | | DefUse.cs:83:13:83:14 | x2 | DefUse.cs:83:13:83:18 | SSA def(x2) | DefUse.cs:83:13:83:18 | Int32 x2 = ... | -| DefUse.cs:83:13:83:14 | x2 | DefUse.cs:85:15:85:16 | SSA def(x2) | DefUse.cs:85:15:85:16 | access to local variable x2 | -| DefUse.cs:83:13:83:14 | x2 | DefUse.cs:85:15:85:16 | SSA def(x2) | DefUse.cs:86:15:86:16 | access to local variable x2 | +| DefUse.cs:83:13:83:14 | x2 | DefUse.cs:84:9:86:17 | SSA def(x2) | DefUse.cs:85:15:85:16 | access to local variable x2 | +| DefUse.cs:83:13:83:14 | x2 | DefUse.cs:84:9:86:17 | SSA def(x2) | DefUse.cs:86:15:86:16 | access to local variable x2 | | DefUse.cs:89:13:89:14 | x3 | DefUse.cs:89:13:89:18 | SSA def(x3) | DefUse.cs:89:13:89:18 | Int32 x3 = ... | -| DefUse.cs:89:13:89:14 | x3 | DefUse.cs:92:15:92:16 | SSA def(x3) | DefUse.cs:92:15:92:16 | access to local variable x3 | -| DefUse.cs:90:13:90:14 | x4 | DefUse.cs:93:15:93:16 | SSA def(x4) | DefUse.cs:93:15:93:16 | access to local variable x4 | +| DefUse.cs:89:13:89:14 | x3 | DefUse.cs:91:9:93:17 | SSA def(x3) | DefUse.cs:92:15:92:16 | access to local variable x3 | +| DefUse.cs:90:13:90:14 | x4 | DefUse.cs:91:9:93:17 | SSA def(x4) | DefUse.cs:93:15:93:16 | access to local variable x4 | | DefUse.cs:97:13:97:14 | x5 | DefUse.cs:97:13:97:18 | SSA def(x5) | DefUse.cs:97:13:97:18 | Int32 x5 = ... | | DefUse.cs:97:13:97:14 | x5 | DefUse.cs:101:13:101:23 | SSA def(x5) | DefUse.cs:101:13:101:23 | ... = ... | | DefUse.cs:97:13:97:14 | x5 | DefUse.cs:104:9:104:15 | SSA def(x5) | DefUse.cs:104:9:104:15 | ... += ... | @@ -108,17 +108,17 @@ | MultiImplementationA.cs:5:22:5:22 | x | MultiImplementationA.cs:5:22:5:22 | SSA param(x) | MultiImplementationA.cs:5:22:5:22 | x | | MultiImplementationA.cs:5:22:5:22 | x | MultiImplementationB.cs:3:22:3:22 | SSA param(x) | MultiImplementationA.cs:5:22:5:22 | x | | OutRef.cs:9:13:9:13 | j | OutRef.cs:9:13:9:17 | SSA def(j) | OutRef.cs:9:13:9:17 | Int32 j = ... | -| OutRef.cs:9:13:9:13 | j | OutRef.cs:10:32:10:32 | SSA def(j) | OutRef.cs:10:32:10:32 | access to local variable j | -| OutRef.cs:9:13:9:13 | j | OutRef.cs:22:22:22:22 | SSA def(j) | OutRef.cs:22:22:22:22 | access to local variable j | -| OutRef.cs:9:13:9:13 | j | OutRef.cs:24:29:24:29 | SSA def(j) | OutRef.cs:24:29:24:29 | access to local variable j | -| OutRef.cs:10:25:10:25 | i | OutRef.cs:10:25:10:25 | SSA def(i) | OutRef.cs:10:25:10:25 | Int32 i | -| OutRef.cs:10:25:10:25 | i | OutRef.cs:13:21:13:21 | SSA def(i) | OutRef.cs:13:21:13:21 | access to local variable i | -| OutRef.cs:13:28:13:32 | this.Field | OutRef.cs:13:28:13:32 | SSA def(this.Field) | OutRef.cs:13:28:13:32 | access to field Field | -| OutRef.cs:13:28:13:32 | this.Field | OutRef.cs:16:21:16:25 | SSA def(this.Field) | OutRef.cs:16:21:16:25 | access to field Field | -| OutRef.cs:13:28:13:32 | this.Field | OutRef.cs:16:21:16:25 | SSA def(this.Field) | OutRef.cs:16:32:16:36 | access to field Field | -| OutRef.cs:13:28:13:32 | this.Field | OutRef.cs:19:21:19:25 | SSA def(this.Field) | OutRef.cs:19:21:19:25 | access to field Field | +| OutRef.cs:9:13:9:13 | j | OutRef.cs:10:9:10:33 | SSA def(j) | OutRef.cs:10:32:10:32 | access to local variable j | +| OutRef.cs:9:13:9:13 | j | OutRef.cs:22:9:22:30 | SSA def(j) | OutRef.cs:22:22:22:22 | access to local variable j | +| OutRef.cs:9:13:9:13 | j | OutRef.cs:24:9:24:30 | SSA def(j) | OutRef.cs:24:29:24:29 | access to local variable j | +| OutRef.cs:10:25:10:25 | i | OutRef.cs:10:9:10:33 | SSA def(i) | OutRef.cs:10:25:10:25 | Int32 i | +| OutRef.cs:10:25:10:25 | i | OutRef.cs:13:9:13:33 | SSA def(i) | OutRef.cs:13:21:13:21 | access to local variable i | +| OutRef.cs:13:28:13:32 | this.Field | OutRef.cs:13:9:13:33 | SSA def(this.Field) | OutRef.cs:13:28:13:32 | access to field Field | +| OutRef.cs:13:28:13:32 | this.Field | OutRef.cs:16:9:16:37 | SSA def(this.Field) | OutRef.cs:16:21:16:25 | access to field Field | +| OutRef.cs:13:28:13:32 | this.Field | OutRef.cs:16:9:16:37 | SSA def(this.Field) | OutRef.cs:16:32:16:36 | access to field Field | +| OutRef.cs:13:28:13:32 | this.Field | OutRef.cs:19:9:19:39 | SSA def(this.Field) | OutRef.cs:19:21:19:25 | access to field Field | | OutRef.cs:18:13:18:13 | t | OutRef.cs:18:13:18:28 | SSA def(t) | OutRef.cs:18:13:18:28 | OutRef t = ... | -| OutRef.cs:19:32:19:38 | t.Field | OutRef.cs:19:32:19:38 | SSA def(t.Field) | OutRef.cs:19:32:19:38 | access to field Field | +| OutRef.cs:19:32:19:38 | t.Field | OutRef.cs:19:9:19:39 | SSA def(t.Field) | OutRef.cs:19:32:19:38 | access to field Field | | OutRef.cs:28:26:28:26 | i | OutRef.cs:30:9:30:13 | SSA def(i) | OutRef.cs:30:9:30:13 | ... = ... | | OutRef.cs:28:37:28:37 | j | OutRef.cs:28:37:28:37 | SSA param(j) | OutRef.cs:28:37:28:37 | j | | OutRef.cs:28:37:28:37 | j | OutRef.cs:31:9:31:13 | SSA def(j) | OutRef.cs:31:9:31:13 | ... = ... | diff --git a/csharp/ql/test/library-tests/dataflow/ssa/SsaImplicitQualifier.expected b/csharp/ql/test/library-tests/dataflow/ssa/SsaImplicitQualifier.expected index f4b936fa5307..0f283aa4b580 100644 --- a/csharp/ql/test/library-tests/dataflow/ssa/SsaImplicitQualifier.expected +++ b/csharp/ql/test/library-tests/dataflow/ssa/SsaImplicitQualifier.expected @@ -1,4 +1,4 @@ -| Consistency.cs:26:13:26:19 | c.Field | Consistency.cs:25:9:25:30 | SSA qualifier def(c.Field) | Consistency.cs:25:29:25:29 | SSA def(c) | +| Consistency.cs:26:13:26:19 | c.Field | Consistency.cs:25:9:25:30 | SSA qualifier def(c.Field) | Consistency.cs:25:9:25:30 | SSA def(c) | | Fields.cs:31:19:31:22 | f.xs | Fields.cs:30:13:30:28 | SSA qualifier def(f.xs) | Fields.cs:30:13:30:28 | SSA def(f) | | Fields.cs:31:19:31:22 | f.xs | Fields.cs:49:13:49:28 | SSA qualifier def(f.xs) | Fields.cs:49:13:49:28 | SSA def(f) | | Fields.cs:98:20:98:32 | f.Field.Field | Fields.cs:97:9:97:30 | SSA qualifier def(f.Field.Field) | Fields.cs:97:9:97:30 | SSA def(f.Field) | diff --git a/csharp/ql/test/library-tests/dataflow/ssa/SsaRead.expected b/csharp/ql/test/library-tests/dataflow/ssa/SsaRead.expected index f82cab61409d..a06115caf53a 100644 --- a/csharp/ql/test/library-tests/dataflow/ssa/SsaRead.expected +++ b/csharp/ql/test/library-tests/dataflow/ssa/SsaRead.expected @@ -35,8 +35,8 @@ | Capture.cs:212:30:212:35 | exited | Capture.cs:212:30:212:71 | SSA def(exited) | Capture.cs:213:29:213:34 | access to local variable exited | | Consistency.cs:7:25:7:25 | b | Consistency.cs:7:25:7:25 | SSA param(b) | Consistency.cs:11:17:11:17 | access to parameter b | | Consistency.cs:15:17:15:17 | i | Consistency.cs:15:17:15:21 | SSA def(i) | Consistency.cs:16:17:16:17 | access to local variable i | -| Consistency.cs:25:29:25:29 | c | Consistency.cs:25:29:25:29 | SSA def(c) | Consistency.cs:26:13:26:13 | access to local variable c | -| Consistency.cs:25:29:25:29 | c | Consistency.cs:25:29:25:29 | SSA def(c) | Consistency.cs:27:13:27:13 | access to local variable c | +| Consistency.cs:25:29:25:29 | c | Consistency.cs:25:9:25:30 | SSA def(c) | Consistency.cs:26:13:26:13 | access to local variable c | +| Consistency.cs:25:29:25:29 | c | Consistency.cs:25:9:25:30 | SSA def(c) | Consistency.cs:27:13:27:13 | access to local variable c | | Consistency.cs:26:13:26:19 | c.Field | Consistency.cs:25:9:25:30 | SSA qualifier def(c.Field) | Consistency.cs:26:13:26:19 | access to field Field | | Consistency.cs:26:13:26:19 | c.Field | Consistency.cs:25:9:25:30 | SSA qualifier def(c.Field) | Consistency.cs:27:13:27:19 | access to field Field | | Consistency.cs:30:30:30:30 | c | Consistency.cs:32:9:32:29 | SSA def(c) | Consistency.cs:33:9:33:9 | access to parameter c | @@ -63,9 +63,9 @@ | DefUse.cs:6:14:6:14 | y | DefUse.cs:28:13:28:18 | SSA def(y) | DefUse.cs:34:13:34:13 | access to local variable y | | DefUse.cs:6:14:6:14 | y | DefUse.cs:37:9:40:9 | SSA phi(y) | DefUse.cs:42:13:42:13 | access to local variable y | | DefUse.cs:44:13:44:13 | z | DefUse.cs:44:13:44:17 | SSA def(z) | DefUse.cs:45:13:45:13 | access to local variable z | -| DefUse.cs:44:13:44:13 | z | DefUse.cs:47:23:47:23 | SSA def(z) | DefUse.cs:48:13:48:13 | access to local variable z | -| DefUse.cs:44:13:44:13 | z | DefUse.cs:47:23:47:23 | SSA def(z) | DefUse.cs:50:23:50:23 | access to local variable z | -| DefUse.cs:44:13:44:13 | z | DefUse.cs:50:23:50:23 | SSA def(z) | DefUse.cs:51:13:51:13 | access to local variable z | +| DefUse.cs:44:13:44:13 | z | DefUse.cs:47:9:47:24 | SSA def(z) | DefUse.cs:48:13:48:13 | access to local variable z | +| DefUse.cs:44:13:44:13 | z | DefUse.cs:47:9:47:24 | SSA def(z) | DefUse.cs:50:23:50:23 | access to local variable z | +| DefUse.cs:44:13:44:13 | z | DefUse.cs:50:9:50:24 | SSA def(z) | DefUse.cs:51:13:51:13 | access to local variable z | | DefUse.cs:53:9:53:13 | this.Field | DefUse.cs:53:9:53:17 | SSA def(this.Field) | DefUse.cs:54:13:54:17 | access to field Field | | DefUse.cs:56:9:56:12 | this.Prop | DefUse.cs:56:9:56:16 | SSA def(this.Prop) | DefUse.cs:57:13:57:16 | access to property Prop | | DefUse.cs:63:9:63:14 | this.Field2 | DefUse.cs:63:9:63:18 | SSA def(this.Field2) | DefUse.cs:64:13:64:18 | access to field Field2 | @@ -73,12 +73,12 @@ | DefUse.cs:66:9:66:14 | this.Field3 | DefUse.cs:66:9:66:18 | SSA def(this.Field3) | DefUse.cs:69:13:69:18 | access to field Field3 | | DefUse.cs:67:19:67:20 | tc | DefUse.cs:67:19:67:27 | SSA def(tc) | DefUse.cs:68:9:68:10 | access to local variable tc | | DefUse.cs:79:13:79:14 | x1 | DefUse.cs:80:9:80:51 | SSA phi(x1) | DefUse.cs:80:30:80:31 | access to local variable x1 | -| DefUse.cs:79:13:79:14 | x1 | DefUse.cs:80:30:80:31 | SSA def(x1) | DefUse.cs:81:13:81:14 | access to local variable x1 | +| DefUse.cs:79:13:79:14 | x1 | DefUse.cs:80:16:80:32 | SSA def(x1) | DefUse.cs:81:13:81:14 | access to local variable x1 | | DefUse.cs:83:13:83:14 | x2 | DefUse.cs:83:13:83:18 | SSA def(x2) | DefUse.cs:85:15:85:16 | access to local variable x2 | -| DefUse.cs:83:13:83:14 | x2 | DefUse.cs:85:15:85:16 | SSA def(x2) | DefUse.cs:87:13:87:14 | access to local variable x2 | +| DefUse.cs:83:13:83:14 | x2 | DefUse.cs:84:9:86:17 | SSA def(x2) | DefUse.cs:87:13:87:14 | access to local variable x2 | | DefUse.cs:89:13:89:14 | x3 | DefUse.cs:89:13:89:18 | SSA def(x3) | DefUse.cs:92:15:92:16 | access to local variable x3 | -| DefUse.cs:89:13:89:14 | x3 | DefUse.cs:92:15:92:16 | SSA def(x3) | DefUse.cs:94:13:94:14 | access to local variable x3 | -| DefUse.cs:90:13:90:14 | x4 | DefUse.cs:93:15:93:16 | SSA def(x4) | DefUse.cs:95:13:95:14 | access to local variable x4 | +| DefUse.cs:89:13:89:14 | x3 | DefUse.cs:91:9:93:17 | SSA def(x3) | DefUse.cs:94:13:94:14 | access to local variable x3 | +| DefUse.cs:90:13:90:14 | x4 | DefUse.cs:91:9:93:17 | SSA def(x4) | DefUse.cs:95:13:95:14 | access to local variable x4 | | DefUse.cs:97:13:97:14 | x5 | DefUse.cs:98:9:102:9 | SSA phi(x5) | DefUse.cs:98:16:98:17 | access to local variable x5 | | DefUse.cs:97:13:97:14 | x5 | DefUse.cs:98:9:102:9 | SSA phi(x5) | DefUse.cs:100:17:100:18 | access to local variable x5 | | DefUse.cs:97:13:97:14 | x5 | DefUse.cs:98:9:102:9 | SSA phi(x5) | DefUse.cs:101:18:101:19 | access to local variable x5 | @@ -198,22 +198,22 @@ | MultiImplementationA.cs:5:22:5:22 | x | MultiImplementationA.cs:5:22:5:22 | SSA param(x) | MultiImplementationA.cs:5:28:5:28 | access to parameter x | | MultiImplementationA.cs:5:22:5:22 | x | MultiImplementationB.cs:3:22:3:22 | SSA param(x) | MultiImplementationB.cs:3:28:3:28 | access to parameter x | | OutRef.cs:9:13:9:13 | j | OutRef.cs:9:13:9:17 | SSA def(j) | OutRef.cs:10:32:10:32 | access to local variable j | -| OutRef.cs:9:13:9:13 | j | OutRef.cs:10:32:10:32 | SSA def(j) | OutRef.cs:12:13:12:13 | access to local variable j | -| OutRef.cs:9:13:9:13 | j | OutRef.cs:10:32:10:32 | SSA def(j) | OutRef.cs:22:29:22:29 | access to local variable j | -| OutRef.cs:9:13:9:13 | j | OutRef.cs:22:22:22:22 | SSA def(j) | OutRef.cs:23:13:23:13 | access to local variable j | -| OutRef.cs:9:13:9:13 | j | OutRef.cs:22:22:22:22 | SSA def(j) | OutRef.cs:24:29:24:29 | access to local variable j | -| OutRef.cs:9:13:9:13 | j | OutRef.cs:24:29:24:29 | SSA def(j) | OutRef.cs:25:13:25:13 | access to local variable j | -| OutRef.cs:10:25:10:25 | i | OutRef.cs:10:25:10:25 | SSA def(i) | OutRef.cs:11:13:11:13 | access to local variable i | -| OutRef.cs:10:25:10:25 | i | OutRef.cs:13:21:13:21 | SSA def(i) | OutRef.cs:14:13:14:13 | access to local variable i | +| OutRef.cs:9:13:9:13 | j | OutRef.cs:10:9:10:33 | SSA def(j) | OutRef.cs:12:13:12:13 | access to local variable j | +| OutRef.cs:9:13:9:13 | j | OutRef.cs:10:9:10:33 | SSA def(j) | OutRef.cs:22:29:22:29 | access to local variable j | +| OutRef.cs:9:13:9:13 | j | OutRef.cs:22:9:22:30 | SSA def(j) | OutRef.cs:23:13:23:13 | access to local variable j | +| OutRef.cs:9:13:9:13 | j | OutRef.cs:22:9:22:30 | SSA def(j) | OutRef.cs:24:29:24:29 | access to local variable j | +| OutRef.cs:9:13:9:13 | j | OutRef.cs:24:9:24:30 | SSA def(j) | OutRef.cs:25:13:25:13 | access to local variable j | +| OutRef.cs:10:25:10:25 | i | OutRef.cs:10:9:10:33 | SSA def(i) | OutRef.cs:11:13:11:13 | access to local variable i | +| OutRef.cs:10:25:10:25 | i | OutRef.cs:13:9:13:33 | SSA def(i) | OutRef.cs:14:13:14:13 | access to local variable i | | OutRef.cs:13:28:13:32 | this.Field | OutRef.cs:7:10:7:10 | SSA entry def(this.Field) | OutRef.cs:13:28:13:32 | access to field Field | -| OutRef.cs:13:28:13:32 | this.Field | OutRef.cs:13:28:13:32 | SSA def(this.Field) | OutRef.cs:15:13:15:17 | access to field Field | -| OutRef.cs:13:28:13:32 | this.Field | OutRef.cs:13:28:13:32 | SSA def(this.Field) | OutRef.cs:16:32:16:36 | access to field Field | -| OutRef.cs:13:28:13:32 | this.Field | OutRef.cs:16:21:16:25 | SSA def(this.Field) | OutRef.cs:17:13:17:17 | access to field Field | -| OutRef.cs:13:28:13:32 | this.Field | OutRef.cs:19:21:19:25 | SSA def(this.Field) | OutRef.cs:20:13:20:17 | access to field Field | +| OutRef.cs:13:28:13:32 | this.Field | OutRef.cs:13:9:13:33 | SSA def(this.Field) | OutRef.cs:15:13:15:17 | access to field Field | +| OutRef.cs:13:28:13:32 | this.Field | OutRef.cs:13:9:13:33 | SSA def(this.Field) | OutRef.cs:16:32:16:36 | access to field Field | +| OutRef.cs:13:28:13:32 | this.Field | OutRef.cs:16:9:16:37 | SSA def(this.Field) | OutRef.cs:17:13:17:17 | access to field Field | +| OutRef.cs:13:28:13:32 | this.Field | OutRef.cs:19:9:19:39 | SSA def(this.Field) | OutRef.cs:20:13:20:17 | access to field Field | | OutRef.cs:18:13:18:13 | t | OutRef.cs:18:13:18:28 | SSA def(t) | OutRef.cs:19:32:19:32 | access to local variable t | | OutRef.cs:18:13:18:13 | t | OutRef.cs:18:13:18:28 | SSA def(t) | OutRef.cs:21:13:21:13 | access to local variable t | | OutRef.cs:19:32:19:38 | t.Field | OutRef.cs:18:13:18:28 | SSA qualifier def(t.Field) | OutRef.cs:19:32:19:38 | access to field Field | -| OutRef.cs:19:32:19:38 | t.Field | OutRef.cs:19:32:19:38 | SSA def(t.Field) | OutRef.cs:21:13:21:19 | access to field Field | +| OutRef.cs:19:32:19:38 | t.Field | OutRef.cs:19:9:19:39 | SSA def(t.Field) | OutRef.cs:21:13:21:19 | access to field Field | | OutRef.cs:28:37:28:37 | j | OutRef.cs:28:37:28:37 | SSA param(j) | OutRef.cs:30:13:30:13 | access to parameter j | | OutRef.cs:34:38:34:38 | j | OutRef.cs:34:38:34:38 | SSA param(j) | OutRef.cs:36:13:36:13 | access to parameter j | | OutRef.cs:39:24:39:24 | b | OutRef.cs:39:24:39:24 | SSA param(b) | OutRef.cs:41:13:41:13 | access to parameter b | diff --git a/csharp/ql/test/library-tests/dataflow/ssa/SsaUltimateDef.expected b/csharp/ql/test/library-tests/dataflow/ssa/SsaUltimateDef.expected index a34b470ccdcf..f12eaaf98268 100644 --- a/csharp/ql/test/library-tests/dataflow/ssa/SsaUltimateDef.expected +++ b/csharp/ql/test/library-tests/dataflow/ssa/SsaUltimateDef.expected @@ -35,7 +35,7 @@ | Capture.cs:248:36:248:36 | j | Capture.cs:251:13:251:17 | SSA def(j) | Capture.cs:251:13:251:17 | SSA def(j) | | Consistency.cs:7:25:7:25 | b | Consistency.cs:7:25:7:25 | SSA param(b) | Consistency.cs:7:25:7:25 | SSA param(b) | | Consistency.cs:15:17:15:17 | i | Consistency.cs:15:17:15:21 | SSA def(i) | Consistency.cs:15:17:15:21 | SSA def(i) | -| Consistency.cs:25:29:25:29 | c | Consistency.cs:25:29:25:29 | SSA def(c) | Consistency.cs:25:29:25:29 | SSA def(c) | +| Consistency.cs:25:29:25:29 | c | Consistency.cs:25:9:25:30 | SSA def(c) | Consistency.cs:25:9:25:30 | SSA def(c) | | Consistency.cs:26:13:26:19 | c.Field | Consistency.cs:25:9:25:30 | SSA qualifier def(c.Field) | Consistency.cs:25:9:25:30 | SSA qualifier def(c.Field) | | Consistency.cs:30:30:30:30 | c | Consistency.cs:32:9:32:29 | SSA def(c) | Consistency.cs:32:9:32:29 | SSA def(c) | | Consistency.cs:44:11:44:11 | s | Consistency.cs:44:11:44:11 | SSA def(s) | Consistency.cs:44:11:44:11 | SSA def(s) | @@ -61,8 +61,8 @@ | DefUse.cs:6:14:6:14 | y | DefUse.cs:37:9:40:9 | SSA phi(y) | DefUse.cs:39:13:39:18 | SSA def(y) | | DefUse.cs:6:14:6:14 | y | DefUse.cs:39:13:39:18 | SSA def(y) | DefUse.cs:39:13:39:18 | SSA def(y) | | DefUse.cs:44:13:44:13 | z | DefUse.cs:44:13:44:17 | SSA def(z) | DefUse.cs:44:13:44:17 | SSA def(z) | -| DefUse.cs:44:13:44:13 | z | DefUse.cs:47:23:47:23 | SSA def(z) | DefUse.cs:47:23:47:23 | SSA def(z) | -| DefUse.cs:44:13:44:13 | z | DefUse.cs:50:23:50:23 | SSA def(z) | DefUse.cs:50:23:50:23 | SSA def(z) | +| DefUse.cs:44:13:44:13 | z | DefUse.cs:47:9:47:24 | SSA def(z) | DefUse.cs:47:9:47:24 | SSA def(z) | +| DefUse.cs:44:13:44:13 | z | DefUse.cs:50:9:50:24 | SSA def(z) | DefUse.cs:50:9:50:24 | SSA def(z) | | DefUse.cs:53:9:53:13 | this.Field | DefUse.cs:53:9:53:17 | SSA def(this.Field) | DefUse.cs:53:9:53:17 | SSA def(this.Field) | | DefUse.cs:56:9:56:12 | this.Prop | DefUse.cs:56:9:56:16 | SSA def(this.Prop) | DefUse.cs:56:9:56:16 | SSA def(this.Prop) | | DefUse.cs:63:9:63:14 | this.Field2 | DefUse.cs:63:9:63:18 | SSA def(this.Field2) | DefUse.cs:63:9:63:18 | SSA def(this.Field2) | @@ -70,13 +70,13 @@ | DefUse.cs:67:19:67:20 | tc | DefUse.cs:67:19:67:27 | SSA def(tc) | DefUse.cs:67:19:67:27 | SSA def(tc) | | DefUse.cs:79:13:79:14 | x1 | DefUse.cs:79:13:79:18 | SSA def(x1) | DefUse.cs:79:13:79:18 | SSA def(x1) | | DefUse.cs:79:13:79:14 | x1 | DefUse.cs:80:9:80:51 | SSA phi(x1) | DefUse.cs:79:13:79:18 | SSA def(x1) | -| DefUse.cs:79:13:79:14 | x1 | DefUse.cs:80:9:80:51 | SSA phi(x1) | DefUse.cs:80:30:80:31 | SSA def(x1) | -| DefUse.cs:79:13:79:14 | x1 | DefUse.cs:80:30:80:31 | SSA def(x1) | DefUse.cs:80:30:80:31 | SSA def(x1) | +| DefUse.cs:79:13:79:14 | x1 | DefUse.cs:80:9:80:51 | SSA phi(x1) | DefUse.cs:80:16:80:32 | SSA def(x1) | +| DefUse.cs:79:13:79:14 | x1 | DefUse.cs:80:16:80:32 | SSA def(x1) | DefUse.cs:80:16:80:32 | SSA def(x1) | | DefUse.cs:83:13:83:14 | x2 | DefUse.cs:83:13:83:18 | SSA def(x2) | DefUse.cs:83:13:83:18 | SSA def(x2) | -| DefUse.cs:83:13:83:14 | x2 | DefUse.cs:85:15:85:16 | SSA def(x2) | DefUse.cs:85:15:85:16 | SSA def(x2) | +| DefUse.cs:83:13:83:14 | x2 | DefUse.cs:84:9:86:17 | SSA def(x2) | DefUse.cs:84:9:86:17 | SSA def(x2) | | DefUse.cs:89:13:89:14 | x3 | DefUse.cs:89:13:89:18 | SSA def(x3) | DefUse.cs:89:13:89:18 | SSA def(x3) | -| DefUse.cs:89:13:89:14 | x3 | DefUse.cs:92:15:92:16 | SSA def(x3) | DefUse.cs:92:15:92:16 | SSA def(x3) | -| DefUse.cs:90:13:90:14 | x4 | DefUse.cs:93:15:93:16 | SSA def(x4) | DefUse.cs:93:15:93:16 | SSA def(x4) | +| DefUse.cs:89:13:89:14 | x3 | DefUse.cs:91:9:93:17 | SSA def(x3) | DefUse.cs:91:9:93:17 | SSA def(x3) | +| DefUse.cs:90:13:90:14 | x4 | DefUse.cs:91:9:93:17 | SSA def(x4) | DefUse.cs:91:9:93:17 | SSA def(x4) | | DefUse.cs:97:13:97:14 | x5 | DefUse.cs:97:13:97:18 | SSA def(x5) | DefUse.cs:97:13:97:18 | SSA def(x5) | | DefUse.cs:97:13:97:14 | x5 | DefUse.cs:98:9:102:9 | SSA phi(x5) | DefUse.cs:97:13:97:18 | SSA def(x5) | | DefUse.cs:97:13:97:14 | x5 | DefUse.cs:98:9:102:9 | SSA phi(x5) | DefUse.cs:101:13:101:23 | SSA def(x5) | @@ -219,19 +219,19 @@ | MultiImplementationA.cs:5:22:5:22 | x | MultiImplementationA.cs:5:22:5:22 | SSA param(x) | MultiImplementationA.cs:5:22:5:22 | SSA param(x) | | MultiImplementationA.cs:5:22:5:22 | x | MultiImplementationB.cs:3:22:3:22 | SSA param(x) | MultiImplementationB.cs:3:22:3:22 | SSA param(x) | | OutRef.cs:9:13:9:13 | j | OutRef.cs:9:13:9:17 | SSA def(j) | OutRef.cs:9:13:9:17 | SSA def(j) | -| OutRef.cs:9:13:9:13 | j | OutRef.cs:10:32:10:32 | SSA def(j) | OutRef.cs:10:32:10:32 | SSA def(j) | -| OutRef.cs:9:13:9:13 | j | OutRef.cs:22:22:22:22 | SSA def(j) | OutRef.cs:22:22:22:22 | SSA def(j) | -| OutRef.cs:9:13:9:13 | j | OutRef.cs:24:29:24:29 | SSA def(j) | OutRef.cs:22:22:22:22 | SSA def(j) | -| OutRef.cs:9:13:9:13 | j | OutRef.cs:24:29:24:29 | SSA def(j) | OutRef.cs:24:29:24:29 | SSA def(j) | -| OutRef.cs:10:25:10:25 | i | OutRef.cs:10:25:10:25 | SSA def(i) | OutRef.cs:10:25:10:25 | SSA def(i) | -| OutRef.cs:10:25:10:25 | i | OutRef.cs:13:21:13:21 | SSA def(i) | OutRef.cs:13:21:13:21 | SSA def(i) | +| OutRef.cs:9:13:9:13 | j | OutRef.cs:10:9:10:33 | SSA def(j) | OutRef.cs:10:9:10:33 | SSA def(j) | +| OutRef.cs:9:13:9:13 | j | OutRef.cs:22:9:22:30 | SSA def(j) | OutRef.cs:22:9:22:30 | SSA def(j) | +| OutRef.cs:9:13:9:13 | j | OutRef.cs:24:9:24:30 | SSA def(j) | OutRef.cs:22:9:22:30 | SSA def(j) | +| OutRef.cs:9:13:9:13 | j | OutRef.cs:24:9:24:30 | SSA def(j) | OutRef.cs:24:9:24:30 | SSA def(j) | +| OutRef.cs:10:25:10:25 | i | OutRef.cs:10:9:10:33 | SSA def(i) | OutRef.cs:10:9:10:33 | SSA def(i) | +| OutRef.cs:10:25:10:25 | i | OutRef.cs:13:9:13:33 | SSA def(i) | OutRef.cs:13:9:13:33 | SSA def(i) | | OutRef.cs:13:28:13:32 | this.Field | OutRef.cs:7:10:7:10 | SSA entry def(this.Field) | OutRef.cs:7:10:7:10 | SSA entry def(this.Field) | -| OutRef.cs:13:28:13:32 | this.Field | OutRef.cs:13:28:13:32 | SSA def(this.Field) | OutRef.cs:13:28:13:32 | SSA def(this.Field) | -| OutRef.cs:13:28:13:32 | this.Field | OutRef.cs:16:21:16:25 | SSA def(this.Field) | OutRef.cs:16:21:16:25 | SSA def(this.Field) | -| OutRef.cs:13:28:13:32 | this.Field | OutRef.cs:19:21:19:25 | SSA def(this.Field) | OutRef.cs:19:21:19:25 | SSA def(this.Field) | +| OutRef.cs:13:28:13:32 | this.Field | OutRef.cs:13:9:13:33 | SSA def(this.Field) | OutRef.cs:13:9:13:33 | SSA def(this.Field) | +| OutRef.cs:13:28:13:32 | this.Field | OutRef.cs:16:9:16:37 | SSA def(this.Field) | OutRef.cs:16:9:16:37 | SSA def(this.Field) | +| OutRef.cs:13:28:13:32 | this.Field | OutRef.cs:19:9:19:39 | SSA def(this.Field) | OutRef.cs:19:9:19:39 | SSA def(this.Field) | | OutRef.cs:18:13:18:13 | t | OutRef.cs:18:13:18:28 | SSA def(t) | OutRef.cs:18:13:18:28 | SSA def(t) | | OutRef.cs:19:32:19:38 | t.Field | OutRef.cs:18:13:18:28 | SSA qualifier def(t.Field) | OutRef.cs:18:13:18:28 | SSA qualifier def(t.Field) | -| OutRef.cs:19:32:19:38 | t.Field | OutRef.cs:19:32:19:38 | SSA def(t.Field) | OutRef.cs:19:32:19:38 | SSA def(t.Field) | +| OutRef.cs:19:32:19:38 | t.Field | OutRef.cs:19:9:19:39 | SSA def(t.Field) | OutRef.cs:19:9:19:39 | SSA def(t.Field) | | OutRef.cs:28:26:28:26 | i | OutRef.cs:30:9:30:13 | SSA def(i) | OutRef.cs:30:9:30:13 | SSA def(i) | | OutRef.cs:28:37:28:37 | j | OutRef.cs:28:37:28:37 | SSA param(j) | OutRef.cs:28:37:28:37 | SSA param(j) | | OutRef.cs:28:37:28:37 | j | OutRef.cs:31:9:31:13 | SSA def(j) | OutRef.cs:31:9:31:13 | SSA def(j) | From 21a0d1444fe608dccd92f8c3028f4c5f370786c6 Mon Sep 17 00:00:00 2001 From: Anders Schack-Mulligen Date: Fri, 1 May 2026 13:13:40 +0200 Subject: [PATCH 156/260] C#: Add change note. --- csharp/ql/lib/change-notes/2026-05-01-ssa-replacement.md | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 csharp/ql/lib/change-notes/2026-05-01-ssa-replacement.md diff --git a/csharp/ql/lib/change-notes/2026-05-01-ssa-replacement.md b/csharp/ql/lib/change-notes/2026-05-01-ssa-replacement.md new file mode 100644 index 000000000000..27988f36f2fd --- /dev/null +++ b/csharp/ql/lib/change-notes/2026-05-01-ssa-replacement.md @@ -0,0 +1,4 @@ +--- +category: deprecated +--- +* The QL classes in the C# SSA library have been renamed to improve consistency between languages. Any custom QL code that makes use of SSA needs to be updated. The old classes have been deprecated and include more detailed migration instructions in their qldoc. From 3ad2d8ca3d69e7005e1d4bb228d6e8557c7d2f16 Mon Sep 17 00:00:00 2001 From: MarkLee131 Date: Sun, 3 May 2026 14:04:35 +0800 Subject: [PATCH 157/260] Update java/ql/lib/ext/java.nio.file.model.yml Co-authored-by: Owen Mansel-Chan <62447351+owen-mc@users.noreply.github.com> --- java/ql/lib/ext/java.nio.file.model.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/java/ql/lib/ext/java.nio.file.model.yml b/java/ql/lib/ext/java.nio.file.model.yml index b74bdc4c290a..cf630a4b48a3 100644 --- a/java/ql/lib/ext/java.nio.file.model.yml +++ b/java/ql/lib/ext/java.nio.file.model.yml @@ -18,7 +18,7 @@ extensions: - ["java.nio.file", "Files", False, "delete", "(Path)", "", "Argument[0]", "path-injection", "ai-manual"] - ["java.nio.file", "Files", False, "deleteIfExists", "(Path)", "", "Argument[0]", "path-injection", "ai-manual"] - ["java.nio.file", "Files", False, "getFileStore", "(Path)", "", "Argument[0]", "path-injection", "ai-manual"] # the FileStore class is unlikely to be used for later sanitization - - ["java.nio.file", "Files", False, "exists", "(Path,LinkOption[])", "", "Argument[0]", "path-injection", "manual"] + - ["java.nio.file", "Files", False, "exists", "(Path,LinkOption[])", "", "Argument[0]", "path-injection[read]", "manual"] - ["java.nio.file", "Files", False, "lines", "(Path,Charset)", "", "Argument[0]", "path-injection[read]", "ai-manual"] - ["java.nio.file", "Files", False, "lines", "(Path)", "", "Argument[0]", "path-injection[read]", "ai-manual"] - ["java.nio.file", "Files", False, "move", "", "", "Argument[1]", "path-injection", "manual"] From 62a0a3e384788b281a05936a38d3646f1041ad60 Mon Sep 17 00:00:00 2001 From: MarkLee131 Date: Sun, 3 May 2026 14:08:12 +0800 Subject: [PATCH 158/260] Update java/ql/lib/ext/java.nio.file.model.yml Co-authored-by: Owen Mansel-Chan <62447351+owen-mc@users.noreply.github.com> --- java/ql/lib/ext/java.nio.file.model.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/java/ql/lib/ext/java.nio.file.model.yml b/java/ql/lib/ext/java.nio.file.model.yml index cf630a4b48a3..45c30426e08d 100644 --- a/java/ql/lib/ext/java.nio.file.model.yml +++ b/java/ql/lib/ext/java.nio.file.model.yml @@ -28,7 +28,7 @@ extensions: - ["java.nio.file", "Files", False, "newBufferedWriter", "", "", "Argument[0]", "path-injection", "manual"] - ["java.nio.file", "Files", False, "newInputStream", "(Path,OpenOption[])", "", "Argument[0]", "path-injection[read]", "ai-manual"] - ["java.nio.file", "Files", False, "newOutputStream", "", "", "Argument[0]", "path-injection", "manual"] - - ["java.nio.file", "Files", False, "notExists", "(Path,LinkOption[])", "", "Argument[0]", "path-injection", "manual"] + - ["java.nio.file", "Files", False, "notExists", "(Path,LinkOption[])", "", "Argument[0]", "path-injection[read]", "manual"] - ["java.nio.file", "Files", False, "probeContentType", "(Path)", "", "Argument[0]", "path-injection", "ai-manual"] # accesses the file based on user input, but only reads its content type from it - ["java.nio.file", "Files", False, "readAllBytes", "(Path)", "", "Argument[0]", "path-injection[read]", "ai-manual"] - ["java.nio.file", "Files", False, "readAllLines", "(Path,Charset)", "", "Argument[0]", "path-injection[read]", "ai-manual"] From 7050241a54161945b2193b277b15594f4672e6e9 Mon Sep 17 00:00:00 2001 From: MarkLee131 Date: Sun, 3 May 2026 14:08:21 +0800 Subject: [PATCH 159/260] Update java/ql/lib/ext/java.nio.file.model.yml Co-authored-by: Owen Mansel-Chan <62447351+owen-mc@users.noreply.github.com> --- java/ql/lib/ext/java.nio.file.model.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/java/ql/lib/ext/java.nio.file.model.yml b/java/ql/lib/ext/java.nio.file.model.yml index 45c30426e08d..4fb29e9e055d 100644 --- a/java/ql/lib/ext/java.nio.file.model.yml +++ b/java/ql/lib/ext/java.nio.file.model.yml @@ -29,7 +29,7 @@ extensions: - ["java.nio.file", "Files", False, "newInputStream", "(Path,OpenOption[])", "", "Argument[0]", "path-injection[read]", "ai-manual"] - ["java.nio.file", "Files", False, "newOutputStream", "", "", "Argument[0]", "path-injection", "manual"] - ["java.nio.file", "Files", False, "notExists", "(Path,LinkOption[])", "", "Argument[0]", "path-injection[read]", "manual"] - - ["java.nio.file", "Files", False, "probeContentType", "(Path)", "", "Argument[0]", "path-injection", "ai-manual"] # accesses the file based on user input, but only reads its content type from it + - ["java.nio.file", "Files", False, "probeContentType", "(Path)", "", "Argument[0]", "path-injection[read]", "ai-manual"] # accesses the file based on user input, but only reads its content type from it - ["java.nio.file", "Files", False, "readAllBytes", "(Path)", "", "Argument[0]", "path-injection[read]", "ai-manual"] - ["java.nio.file", "Files", False, "readAllLines", "(Path,Charset)", "", "Argument[0]", "path-injection[read]", "ai-manual"] - ["java.nio.file", "Files", False, "readAllLines", "(Path)", "", "Argument[0]", "path-injection[read]", "ai-manual"] From 9194cdad9c0d4d6375692a3409ee981e7f15f7e0 Mon Sep 17 00:00:00 2001 From: MarkLee131 Date: Sun, 3 May 2026 14:08:31 +0800 Subject: [PATCH 160/260] Update java/ql/lib/ext/java.nio.file.model.yml Co-authored-by: Owen Mansel-Chan <62447351+owen-mc@users.noreply.github.com> --- java/ql/lib/ext/java.nio.file.model.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/java/ql/lib/ext/java.nio.file.model.yml b/java/ql/lib/ext/java.nio.file.model.yml index 4fb29e9e055d..66cbe2da7b4a 100644 --- a/java/ql/lib/ext/java.nio.file.model.yml +++ b/java/ql/lib/ext/java.nio.file.model.yml @@ -17,7 +17,7 @@ extensions: - ["java.nio.file", "Files", False, "createTempFile", "(Path,String,String,FileAttribute[])", "", "Argument[0]", "path-injection", "manual"] - ["java.nio.file", "Files", False, "delete", "(Path)", "", "Argument[0]", "path-injection", "ai-manual"] - ["java.nio.file", "Files", False, "deleteIfExists", "(Path)", "", "Argument[0]", "path-injection", "ai-manual"] - - ["java.nio.file", "Files", False, "getFileStore", "(Path)", "", "Argument[0]", "path-injection", "ai-manual"] # the FileStore class is unlikely to be used for later sanitization + - ["java.nio.file", "Files", False, "getFileStore", "(Path)", "", "Argument[0]", "path-injection[read]", "ai-manual"] # the FileStore class is unlikely to be used for later sanitization - ["java.nio.file", "Files", False, "exists", "(Path,LinkOption[])", "", "Argument[0]", "path-injection[read]", "manual"] - ["java.nio.file", "Files", False, "lines", "(Path,Charset)", "", "Argument[0]", "path-injection[read]", "ai-manual"] - ["java.nio.file", "Files", False, "lines", "(Path)", "", "Argument[0]", "path-injection[read]", "ai-manual"] From dbc9d0de4a17ac5fa39ffe1deea4ec2448c615fb Mon Sep 17 00:00:00 2001 From: MarkLee131 Date: Sun, 3 May 2026 14:14:07 +0800 Subject: [PATCH 161/260] Update java/ql/lib/ext/org.apache.commons.io.model.yml Co-authored-by: Owen Mansel-Chan <62447351+owen-mc@users.noreply.github.com> --- java/ql/lib/ext/org.apache.commons.io.model.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/java/ql/lib/ext/org.apache.commons.io.model.yml b/java/ql/lib/ext/org.apache.commons.io.model.yml index de4085a44557..98a7788983f0 100644 --- a/java/ql/lib/ext/org.apache.commons.io.model.yml +++ b/java/ql/lib/ext/org.apache.commons.io.model.yml @@ -29,7 +29,8 @@ extensions: - ["org.apache.commons.io", "FileUtils", False, "forceMkdir", "(File)", "", "Argument[0]", "path-injection", "ai-manual"] - ["org.apache.commons.io", "FileUtils", False, "moveDirectory", "(File,File)", "", "Argument[0]", "path-injection", "ai-manual"] - ["org.apache.commons.io", "FileUtils", False, "readFileToByteArray", "(File)", "", "Argument[0]", "path-injection", "ai-manual"] - - ["org.apache.commons.io", "FileUtils", False, "readFileToString", "(File,Charset)", "", "Argument[0]", "path-injection", "ai-manual"] +- ["org.apache.commons.io", "FileUtils", False, "readFileToByteArray", "(File)", "", "Argument[0]", "path-injection[read]", "ai-manual"] +- ["org.apache.commons.io", "FileUtils", False, "readFileToString", "(File,Charset)", "", "Argument[0]", "path-injection[read]", "ai-manual"] - ["org.apache.commons.io", "FileUtils", False, "writeLines", "(File,String,Collection,String)", "", "Argument[3]", "file-content-store", "ai-manual"] - ["org.apache.commons.io", "FileUtils", False, "writeStringToFile", "(File,String,Charset,boolean)", "", "Argument[1]", "file-content-store", "ai-manual"] - ["org.apache.commons.io", "FileUtils", True, "copyInputStreamToFile", "(InputStream,File)", "", "Argument[0]", "file-content-store", "ai-manual"] From 8710e63011121f1fd15233d9f816cc5eceb40ef0 Mon Sep 17 00:00:00 2001 From: MarkLee131 Date: Sun, 3 May 2026 14:14:15 +0800 Subject: [PATCH 162/260] Update java/ql/lib/ext/javax.servlet.model.yml Co-authored-by: Owen Mansel-Chan <62447351+owen-mc@users.noreply.github.com> --- java/ql/lib/ext/javax.servlet.model.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/java/ql/lib/ext/javax.servlet.model.yml b/java/ql/lib/ext/javax.servlet.model.yml index 19a6690858ef..3d4a580edfc4 100644 --- a/java/ql/lib/ext/javax.servlet.model.yml +++ b/java/ql/lib/ext/javax.servlet.model.yml @@ -13,7 +13,7 @@ extensions: pack: codeql/java-all extensible: sinkModel data: - - ["javax.servlet", "ServletContext", True, "getResource", "(String)", "", "Argument[0]", "path-injection", "manual"] + - ["javax.servlet", "ServletContext", True, "getResource", "(String)", "", "Argument[0]", "path-injection[read]", "manual"] - ["javax.servlet", "ServletContext", True, "getResourceAsStream", "(String)", "", "Argument[0]", "path-injection[read]", "ai-manual"] - ["javax.servlet", "ServletContext", True, "getRequestDispatcher", "(String)", "", "Argument[0]", "url-forward", "manual"] - ["javax.servlet", "ServletRequest", True, "getRequestDispatcher", "(String)", "", "Argument[0]", "url-forward", "manual"] From c10a05f26a218afd202af4e58f9ef7b7b5afc700 Mon Sep 17 00:00:00 2001 From: MarkLee131 Date: Sun, 3 May 2026 14:14:48 +0800 Subject: [PATCH 163/260] Update java/ql/lib/ext/org.apache.commons.io.model.yml Co-authored-by: Owen Mansel-Chan <62447351+owen-mc@users.noreply.github.com> --- java/ql/lib/ext/org.apache.commons.io.model.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/java/ql/lib/ext/org.apache.commons.io.model.yml b/java/ql/lib/ext/org.apache.commons.io.model.yml index 98a7788983f0..910635ce19d3 100644 --- a/java/ql/lib/ext/org.apache.commons.io.model.yml +++ b/java/ql/lib/ext/org.apache.commons.io.model.yml @@ -44,4 +44,4 @@ extensions: - ["org.apache.commons.io", "FileUtils", True, "forceDelete", "(File)", "", "Argument[0]", "path-injection", "manual"] - ["org.apache.commons.io", "FileUtils", True, "forceDeleteOnExit", "(File)", "", "Argument[0]", "path-injection", "manual"] - ["org.apache.commons.io", "FileUtils", True, "forceMkdirParent", "(File)", "", "Argument[0]", "path-injection", "manual"] - - ["org.apache.commons.io", "IOUtils", False, "resourceToString", "(String,Charset)", "", "Argument[0]", "path-injection", "ai-manual"] + - ["org.apache.commons.io", "IOUtils", False, "resourceToString", "", "", "Argument[0]", "path-injection[read]", "ai-manual"] From 49e5886a06f8f8904f050c09f7ee30b206f8a469 Mon Sep 17 00:00:00 2001 From: MarkLee131 Date: Mon, 4 May 2026 12:56:11 +0800 Subject: [PATCH 164/260] Update java/ql/lib/ext/org.apache.commons.io.model.yml Co-authored-by: Owen Mansel-Chan <62447351+owen-mc@users.noreply.github.com> --- java/ql/lib/ext/org.apache.commons.io.model.yml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/java/ql/lib/ext/org.apache.commons.io.model.yml b/java/ql/lib/ext/org.apache.commons.io.model.yml index 910635ce19d3..f6ced2d2b858 100644 --- a/java/ql/lib/ext/org.apache.commons.io.model.yml +++ b/java/ql/lib/ext/org.apache.commons.io.model.yml @@ -29,8 +29,7 @@ extensions: - ["org.apache.commons.io", "FileUtils", False, "forceMkdir", "(File)", "", "Argument[0]", "path-injection", "ai-manual"] - ["org.apache.commons.io", "FileUtils", False, "moveDirectory", "(File,File)", "", "Argument[0]", "path-injection", "ai-manual"] - ["org.apache.commons.io", "FileUtils", False, "readFileToByteArray", "(File)", "", "Argument[0]", "path-injection", "ai-manual"] -- ["org.apache.commons.io", "FileUtils", False, "readFileToByteArray", "(File)", "", "Argument[0]", "path-injection[read]", "ai-manual"] -- ["org.apache.commons.io", "FileUtils", False, "readFileToString", "(File,Charset)", "", "Argument[0]", "path-injection[read]", "ai-manual"] +- ["org.apache.commons.io", "FileUtils", False, "readFileToByteArray", "", "", "Argument[0]", "path-injection[read]", "ai-manual"] - ["org.apache.commons.io", "FileUtils", False, "writeLines", "(File,String,Collection,String)", "", "Argument[3]", "file-content-store", "ai-manual"] - ["org.apache.commons.io", "FileUtils", False, "writeStringToFile", "(File,String,Charset,boolean)", "", "Argument[1]", "file-content-store", "ai-manual"] - ["org.apache.commons.io", "FileUtils", True, "copyInputStreamToFile", "(InputStream,File)", "", "Argument[0]", "file-content-store", "ai-manual"] From 1f3a8319ed4e607032bde23d773b00bcb62f41c1 Mon Sep 17 00:00:00 2001 From: Tom Hvitved Date: Mon, 4 May 2026 09:41:00 +0200 Subject: [PATCH 165/260] Update csharp/ql/lib/semmle/code/csharp/dataflow/internal/SsaImpl.qll Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> --- csharp/ql/lib/semmle/code/csharp/dataflow/internal/SsaImpl.qll | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/csharp/ql/lib/semmle/code/csharp/dataflow/internal/SsaImpl.qll b/csharp/ql/lib/semmle/code/csharp/dataflow/internal/SsaImpl.qll index 9f0ca12888f4..e248cf1c7e91 100644 --- a/csharp/ql/lib/semmle/code/csharp/dataflow/internal/SsaImpl.qll +++ b/csharp/ql/lib/semmle/code/csharp/dataflow/internal/SsaImpl.qll @@ -1019,7 +1019,7 @@ private module DataFlowIntegrationInput implements Impl::DataFlowIntegrationInpu } /** - * Allows for flow into uncertain defintions that are not call definitions, + * Allows for flow into uncertain definitions that are not call definitions, * as we, conservatively, consider such definitions to be certain. */ predicate allowFlowIntoUncertainDef(Impl::UncertainWriteDefinition def) { From 5546025f12f30459eadf7cd7c6c192644b17f43e Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Mon, 4 May 2026 08:19:28 +0000 Subject: [PATCH 166/260] update codeql documentation --- .../codeql-changelog/codeql-cli-2.25.3.rst | 124 ++++++++++++++++++ .../codeql-changelog/index.rst | 1 + 2 files changed, 125 insertions(+) create mode 100644 docs/codeql/codeql-overview/codeql-changelog/codeql-cli-2.25.3.rst diff --git a/docs/codeql/codeql-overview/codeql-changelog/codeql-cli-2.25.3.rst b/docs/codeql/codeql-overview/codeql-changelog/codeql-cli-2.25.3.rst new file mode 100644 index 000000000000..7fdf39c9c116 --- /dev/null +++ b/docs/codeql/codeql-overview/codeql-changelog/codeql-cli-2.25.3.rst @@ -0,0 +1,124 @@ +.. _codeql-cli-2.25.3: + +========================== +CodeQL 2.25.3 (2026-05-01) +========================== + +.. contents:: Contents + :depth: 2 + :local: + :backlinks: none + +This is an overview of changes in the CodeQL CLI and relevant CodeQL query and library packs. For additional updates on changes to the CodeQL code scanning experience, check out the `code scanning section on the GitHub blog `__, `relevant GitHub Changelog updates `__, `changes in the CodeQL extension for Visual Studio Code `__, and the `CodeQL Action changelog `__. + +Security Coverage +----------------- + +CodeQL 2.25.3 runs a total of 496 security queries when configured with the Default suite (covering 169 CWE). The Extended suite enables an additional 131 queries (covering 32 more CWE). + +CodeQL CLI +---------- + +Improvements +~~~~~~~~~~~~ + +* The :code:`codeql database finalize` command now accepts the :code:`--working-dir` flag. When specified, any extractor pre-finalize scripts will be run in that directory. If the flag is not used, the scripts will run in the source root directory (maintaining existing behavior). The flag will also be automatically passed through when running the higher-level + :code:`codeql database create` command. + +Query Packs +----------- + +Major Analysis Improvements +~~~~~~~~~~~~~~~~~~~~~~~~~~~ + +GitHub Actions +"""""""""""""" + +* Fixed alert messages in :code:`actions/artifact-poisoning/critical` and :code:`actions/artifact-poisoning/medium` as they previously included a redundant placeholder in the alert message that would on occasion contain a long block of yml that makes the alert difficult to understand. Also improved the wording to make it clearer that it is not the artifact that is being poisoned, but instead a potentially untrusted artifact that is consumed. Finally, changed the alert location to be the source, to align more with other queries reporting an artifact (e.g. zipslip) which is more useful. + +Minor Analysis Improvements +~~~~~~~~~~~~~~~~~~~~~~~~~~~ + +C/C++ +""""" + +* Added :code:`AllocationFunction` models for :code:`aligned_alloc`, :code:`std::aligned_alloc`, and :code:`bsl::aligned_alloc`. +* The "Comparison of narrow type with wide type in loop condition" (:code:`cpp/comparison-with-wider-type`) query has been upgraded to :code:`high` precision. This query will now run in the default code scanning suite. +* The "Multiplication result converted to larger type" (:code:`cpp/integer-multiplication-cast-to-long`) query has been upgraded to :code:`high` precision. This query will now run in the default code scanning suite. +* The "Suspicious add with sizeof" (:code:`cpp/suspicious-add-sizeof`) query has been upgraded to :code:`high` precision. This query will now run in the default code scanning suite. +* The "Wrong type of arguments to formatting function" (:code:`cpp/wrong-type-format-argument`) query has been upgraded to :code:`high` precision. This query will now run in the default code scanning suite. +* The "Implicit function declaration" (:code:`cpp/implicit-function-declaration`) query has been upgraded to :code:`high` precision. However, for :code:`build mode: none` databases, it no longer produces any results. The results in this mode were found to be very noisy and fundamentally imprecise. + +C# +"" + +* The query :code:`cs/useless-tostring-call` has been updated to avoid false positive results in calls to :code:`StringBuilder.AppendLine` and calls of the form :code:`base.ToString()`. Moreover, the alert message has been made more precise. + +JavaScript/TypeScript +""""""""""""""""""""" + +* The query :code:`js/missing-rate-limiting` now takes Fastify per-route rate limiting into account. + +Python +"""""" + +* The :code:`py/bind-socket-all-network-interfaces` query now uses the global data-flow library, leading to better precision and more results. Also, wrappers of :code:`socket.socket` in the :code:`eventlet` and :code:`gevent` libraries are now also recognized as socket binding operations. + +GitHub Actions +"""""""""""""" + +* The query :code:`actions/missing-workflow-permissions` no longer produces false positive results on reusable workflows where all callers set permissions. + +Language Libraries +------------------ + +Breaking Changes +~~~~~~~~~~~~~~~~ + +C/C++ +""""" + +* The deprecated :code:`NonThrowingFunction` class has been removed, use :code:`NonCppThrowingFunction` instead. +* The deprecated :code:`ThrowingFunction` class has been removed, use :code:`AlwaysSehThrowingFunction` instead. + +Major Analysis Improvements +~~~~~~~~~~~~~~~~~~~~~~~~~~~ + +Swift +""""" + +* Upgraded to allow analysis of Swift 6.3. + +Minor Analysis Improvements +~~~~~~~~~~~~~~~~~~~~~~~~~~~ + +Java/Kotlin +""""""""""" + +* The queries "Resolving XML external entity in user-controlled data" (:code:`java/xxe`) and "Resolving XML external entity in user-controlled data from local source" (:code:`java/xxe-local`) now recognize sinks in the Woodstox StAX library when :code:`com.ctc.wstx.stax.WstxInputFactory` or :code:`org.codehaus.stax2.XMLInputFactory2` are used directly. + +Python +"""""" + +* The Python extractor now supports the new :code:`lazy import ...` and :code:`lazy from ... import ...` (as defined in `PEP-810 `__) that will be part of Python 3.15. + +GitHub Actions +"""""""""""""" + +* Removed false positive injection sink models for the :code:`context` input of :code:`docker/build-push-action` and the :code:`allowed-endpoints` input of :code:`step-security/harden-runner`. + +Deprecated APIs +~~~~~~~~~~~~~~~ + +C# +"" + +* The predicates :code:`get[L|R]Value` in the class :code:`Assignment` have been deprecated. Use :code:`get[Left|Right]Operand` instead. + +New Features +~~~~~~~~~~~~ + +C/C++ +""""" + +* Added a subclass :code:`AutoconfConfigureTestFile` of :code:`ConfigurationTestFile` that represents files created by GNU autoconf configure scripts to test the build configuration. diff --git a/docs/codeql/codeql-overview/codeql-changelog/index.rst b/docs/codeql/codeql-overview/codeql-changelog/index.rst index 32a8b4574bb8..5835176a93fa 100644 --- a/docs/codeql/codeql-overview/codeql-changelog/index.rst +++ b/docs/codeql/codeql-overview/codeql-changelog/index.rst @@ -11,6 +11,7 @@ A list of queries for each suite and language `is available here Date: Mon, 4 May 2026 10:26:50 +0200 Subject: [PATCH 167/260] Docs: replace `build mode: none` with `build-mode: none` --- cpp/ql/src/CHANGELOG.md | 2 +- .../ImplicitFunctionDeclaration.qhelp | 2 +- .../Underspecified Functions/ImplicitFunctionDeclaration.ql | 2 +- cpp/ql/src/change-notes/released/1.6.1.md | 2 +- csharp/ql/lib/CHANGELOG.md | 4 ++-- csharp/ql/lib/change-notes/released/5.4.5.md | 4 ++-- .../codeql-overview/codeql-changelog/codeql-cli-2.24.0.rst | 4 ++-- .../codeql-overview/codeql-changelog/codeql-cli-2.25.3.rst | 2 +- 8 files changed, 11 insertions(+), 11 deletions(-) diff --git a/cpp/ql/src/CHANGELOG.md b/cpp/ql/src/CHANGELOG.md index 80b9ad0e4753..e677f584416c 100644 --- a/cpp/ql/src/CHANGELOG.md +++ b/cpp/ql/src/CHANGELOG.md @@ -7,7 +7,7 @@ * The "Multiplication result converted to larger type" (`cpp/integer-multiplication-cast-to-long`) query has been upgraded to `high` precision. This query will now run in the default code scanning suite. * The "Suspicious add with sizeof" (`cpp/suspicious-add-sizeof`) query has been upgraded to `high` precision. This query will now run in the default code scanning suite. * The "Wrong type of arguments to formatting function" (`cpp/wrong-type-format-argument`) query has been upgraded to `high` precision. This query will now run in the default code scanning suite. -* The "Implicit function declaration" (`cpp/implicit-function-declaration`) query has been upgraded to `high` precision. However, for `build mode: none` databases, it no longer produces any results. The results in this mode were found to be very noisy and fundamentally imprecise. +* The "Implicit function declaration" (`cpp/implicit-function-declaration`) query has been upgraded to `high` precision. However, for `build-mode: none` databases, it no longer produces any results. The results in this mode were found to be very noisy and fundamentally imprecise. ## 1.6.0 diff --git a/cpp/ql/src/Likely Bugs/Underspecified Functions/ImplicitFunctionDeclaration.qhelp b/cpp/ql/src/Likely Bugs/Underspecified Functions/ImplicitFunctionDeclaration.qhelp index 90a98e1bf573..d6c612abc759 100644 --- a/cpp/ql/src/Likely Bugs/Underspecified Functions/ImplicitFunctionDeclaration.qhelp +++ b/cpp/ql/src/Likely Bugs/Underspecified Functions/ImplicitFunctionDeclaration.qhelp @@ -14,7 +14,7 @@ function may behave unpredictably.

This may indicate a misspelled function name, or that the required header containing the function declaration has not been included.

-

Note: This query is not compatible with build mode: none databases, and produces +

Note: This query is not compatible with build-mode: none databases, and produces no results on those databases.

diff --git a/cpp/ql/src/Likely Bugs/Underspecified Functions/ImplicitFunctionDeclaration.ql b/cpp/ql/src/Likely Bugs/Underspecified Functions/ImplicitFunctionDeclaration.ql index 00b29efbd0f2..8e921faf2117 100644 --- a/cpp/ql/src/Likely Bugs/Underspecified Functions/ImplicitFunctionDeclaration.ql +++ b/cpp/ql/src/Likely Bugs/Underspecified Functions/ImplicitFunctionDeclaration.ql @@ -18,7 +18,7 @@ import TooManyArguments import semmle.code.cpp.commons.Exclusions /* - * This query is not compatible with build mode: none databases, and produces + * This query is not compatible with build-mode: none databases, and produces * no results on those databases. */ diff --git a/cpp/ql/src/change-notes/released/1.6.1.md b/cpp/ql/src/change-notes/released/1.6.1.md index 83781b87c584..02ca1c2cd064 100644 --- a/cpp/ql/src/change-notes/released/1.6.1.md +++ b/cpp/ql/src/change-notes/released/1.6.1.md @@ -7,4 +7,4 @@ * The "Multiplication result converted to larger type" (`cpp/integer-multiplication-cast-to-long`) query has been upgraded to `high` precision. This query will now run in the default code scanning suite. * The "Suspicious add with sizeof" (`cpp/suspicious-add-sizeof`) query has been upgraded to `high` precision. This query will now run in the default code scanning suite. * The "Wrong type of arguments to formatting function" (`cpp/wrong-type-format-argument`) query has been upgraded to `high` precision. This query will now run in the default code scanning suite. -* The "Implicit function declaration" (`cpp/implicit-function-declaration`) query has been upgraded to `high` precision. However, for `build mode: none` databases, it no longer produces any results. The results in this mode were found to be very noisy and fundamentally imprecise. +* The "Implicit function declaration" (`cpp/implicit-function-declaration`) query has been upgraded to `high` precision. However, for `build-mode: none` databases, it no longer produces any results. The results in this mode were found to be very noisy and fundamentally imprecise. diff --git a/csharp/ql/lib/CHANGELOG.md b/csharp/ql/lib/CHANGELOG.md index 32cd8f33c650..2e3f6c137eed 100644 --- a/csharp/ql/lib/CHANGELOG.md +++ b/csharp/ql/lib/CHANGELOG.md @@ -64,9 +64,9 @@ No user-facing changes. * When a code-scanning configuration specifies the `paths:` and/or `paths-ignore:` settings, these are now taken into account by the C# extractor's search for `.config`, `.props`, XML and project files. * Updated the generated .NET “models as data” runtime models to cover .NET 10. * C# 14: Support for *implicit* span conversions in the QL library. -* Basic extractor support for .NET 10 is now available. Extraction is supported for .NET 10 projects in both traced mode and `build mode: none`. However, code that uses language features new to C# 14 is not yet fully supported for extraction and analysis. +* Basic extractor support for .NET 10 is now available. Extraction is supported for .NET 10 projects in both traced mode and `build-mode: none`. However, code that uses language features new to C# 14 is not yet fully supported for extraction and analysis. * Added autobuilder and `build-mode: none` support for `.slnx` solution files. -* In `build mode: none`, .NET 10 is now used by default unless a specific .NET version is specified elsewhere. +* In `build-mode: none`, .NET 10 is now used by default unless a specific .NET version is specified elsewhere. * Added implicit reads of `System.Collections.Generic.KeyValuePair.Value` at taint-tracking sinks and at inputs to additional taint steps. As a result, taint-tracking queries will now produce more results when a container is tainted. ### Bug Fixes diff --git a/csharp/ql/lib/change-notes/released/5.4.5.md b/csharp/ql/lib/change-notes/released/5.4.5.md index a084df5f2008..fc1e8b8c4eeb 100644 --- a/csharp/ql/lib/change-notes/released/5.4.5.md +++ b/csharp/ql/lib/change-notes/released/5.4.5.md @@ -5,9 +5,9 @@ * When a code-scanning configuration specifies the `paths:` and/or `paths-ignore:` settings, these are now taken into account by the C# extractor's search for `.config`, `.props`, XML and project files. * Updated the generated .NET “models as data” runtime models to cover .NET 10. * C# 14: Support for *implicit* span conversions in the QL library. -* Basic extractor support for .NET 10 is now available. Extraction is supported for .NET 10 projects in both traced mode and `build mode: none`. However, code that uses language features new to C# 14 is not yet fully supported for extraction and analysis. +* Basic extractor support for .NET 10 is now available. Extraction is supported for .NET 10 projects in both traced mode and `build-mode: none`. However, code that uses language features new to C# 14 is not yet fully supported for extraction and analysis. * Added autobuilder and `build-mode: none` support for `.slnx` solution files. -* In `build mode: none`, .NET 10 is now used by default unless a specific .NET version is specified elsewhere. +* In `build-mode: none`, .NET 10 is now used by default unless a specific .NET version is specified elsewhere. * Added implicit reads of `System.Collections.Generic.KeyValuePair.Value` at taint-tracking sinks and at inputs to additional taint steps. As a result, taint-tracking queries will now produce more results when a container is tainted. ### Bug Fixes diff --git a/docs/codeql/codeql-overview/codeql-changelog/codeql-cli-2.24.0.rst b/docs/codeql/codeql-overview/codeql-changelog/codeql-cli-2.24.0.rst index 9c228de1fc25..39b5ce0772df 100644 --- a/docs/codeql/codeql-overview/codeql-changelog/codeql-cli-2.24.0.rst +++ b/docs/codeql/codeql-overview/codeql-changelog/codeql-cli-2.24.0.rst @@ -152,9 +152,9 @@ C# * When a code-scanning configuration specifies the :code:`paths:` and/or :code:`paths-ignore:` settings, these are now taken into account by the C# extractor's search for :code:`.config`, :code:`.props`, XML and project files. * Updated the generated .NET “models as data” runtime models to cover .NET 10. * C# 14: Support for *implicit* span conversions in the QL library. -* Basic extractor support for .NET 10 is now available. Extraction is supported for .NET 10 projects in both traced mode and :code:`build mode: none`. However, code that uses language features new to C# 14 is not yet fully supported for extraction and analysis. +* Basic extractor support for .NET 10 is now available. Extraction is supported for .NET 10 projects in both traced mode and :code:`build-mode: none`. However, code that uses language features new to C# 14 is not yet fully supported for extraction and analysis. * Added autobuilder and :code:`build-mode: none` support for :code:`.slnx` solution files. -* In :code:`build mode: none`, .NET 10 is now used by default unless a specific .NET version is specified elsewhere. +* In :code:`build-mode: none`, .NET 10 is now used by default unless a specific .NET version is specified elsewhere. * Added implicit reads of :code:`System.Collections.Generic.KeyValuePair.Value` at taint-tracking sinks and at inputs to additional taint steps. As a result, taint-tracking queries will now produce more results when a container is tainted. Golang diff --git a/docs/codeql/codeql-overview/codeql-changelog/codeql-cli-2.25.3.rst b/docs/codeql/codeql-overview/codeql-changelog/codeql-cli-2.25.3.rst index 7fdf39c9c116..88130515732f 100644 --- a/docs/codeql/codeql-overview/codeql-changelog/codeql-cli-2.25.3.rst +++ b/docs/codeql/codeql-overview/codeql-changelog/codeql-cli-2.25.3.rst @@ -47,7 +47,7 @@ C/C++ * The "Multiplication result converted to larger type" (:code:`cpp/integer-multiplication-cast-to-long`) query has been upgraded to :code:`high` precision. This query will now run in the default code scanning suite. * The "Suspicious add with sizeof" (:code:`cpp/suspicious-add-sizeof`) query has been upgraded to :code:`high` precision. This query will now run in the default code scanning suite. * The "Wrong type of arguments to formatting function" (:code:`cpp/wrong-type-format-argument`) query has been upgraded to :code:`high` precision. This query will now run in the default code scanning suite. -* The "Implicit function declaration" (:code:`cpp/implicit-function-declaration`) query has been upgraded to :code:`high` precision. However, for :code:`build mode: none` databases, it no longer produces any results. The results in this mode were found to be very noisy and fundamentally imprecise. +* The "Implicit function declaration" (:code:`cpp/implicit-function-declaration`) query has been upgraded to :code:`high` precision. However, for :code:`build-mode: none` databases, it no longer produces any results. The results in this mode were found to be very noisy and fundamentally imprecise. C# "" From 17fded4aa5636cad84fd1eb54be28bcb44207dbb Mon Sep 17 00:00:00 2001 From: Anders Schack-Mulligen Date: Fri, 1 May 2026 15:15:32 +0200 Subject: [PATCH 168/260] Java: Delete old deprecated code. --- java/ql/lib/semmle/code/java/Expr.qll | 5 - java/ql/lib/semmle/code/java/Member.qll | 8 -- java/ql/lib/semmle/code/java/Statement.qll | 5 - java/ql/lib/semmle/code/java/Type.qll | 3 - .../code/java/controlflow/Dominance.qll | 51 -------- .../semmle/code/java/dataflow/FlowSources.qll | 8 -- .../semmle/code/java/dataflow/FlowSummary.qll | 10 -- .../semmle/code/java/dataflow/NullGuards.qll | 24 ---- .../java/dataflow/internal/DataFlowNodes.qll | 13 -- .../lib/semmle/code/java/frameworks/Jndi.qll | 12 -- .../frameworks/spring/SpringController.qll | 3 - .../AndroidCertificatePinningQuery.qll | 7 -- .../security/ArithmeticTaintedLocalQuery.qll | 48 +------ .../java/security/ArithmeticTaintedQuery.qll | 20 --- .../code/java/security/CommandLineQuery.qll | 33 ----- .../java/security/ExecTaintedLocalQuery.qll | 26 +--- ...rnallyControlledFormatStringLocalQuery.qll | 25 +--- ...alidationOfArrayConstructionLocalQuery.qll | 23 +--- ...properValidationOfArrayIndexLocalQuery.qll | 27 +--- .../java/security/NumericCastTaintedQuery.qll | 31 ----- .../security/ResponseSplittingLocalQuery.qll | 38 +----- .../java/security/SqlTaintedLocalQuery.qll | 29 +---- .../code/java/security/TaintedPathQuery.qll | 25 ---- .../java/security/UrlRedirectLocalQuery.qll | 20 +-- .../code/java/security/XssLocalQuery.qll | 29 +---- .../code/java/security/XxeLocalQuery.qll | 27 +--- .../src/semmle/code/xml/MyBatisMapperXML.qll | 117 ------------------ 27 files changed, 20 insertions(+), 647 deletions(-) delete mode 100644 java/ql/src/semmle/code/xml/MyBatisMapperXML.qll diff --git a/java/ql/lib/semmle/code/java/Expr.qll b/java/ql/lib/semmle/code/java/Expr.qll index 31135429e2d8..c03be611067f 100644 --- a/java/ql/lib/semmle/code/java/Expr.qll +++ b/java/ql/lib/semmle/code/java/Expr.qll @@ -2732,11 +2732,6 @@ class PatternExpr extends Expr { */ LocalVariableDeclExpr asBindingOrUnnamedPattern() { result = this } - /** - * DEPRECATED: alias for `asBindingOrUnnamedPattern`. - */ - deprecated LocalVariableDeclExpr asBindingPattern() { result = this.asBindingOrUnnamedPattern() } - /** * Gets this pattern cast to a record pattern. */ diff --git a/java/ql/lib/semmle/code/java/Member.qll b/java/ql/lib/semmle/code/java/Member.qll index 23e08c4e6b60..0a8d80f4c36e 100644 --- a/java/ql/lib/semmle/code/java/Member.qll +++ b/java/ql/lib/semmle/code/java/Member.qll @@ -810,14 +810,6 @@ class Field extends Member, ExprParent, @field, Variable { ) } - /** - * DEPRECATED: The result is always `this`. - */ - deprecated Field getSourceDeclaration() { result = this } - - /** DEPRECATED: This always holds. */ - deprecated predicate isSourceDeclaration() { any() } - override predicate isPublic() { Member.super.isPublic() or diff --git a/java/ql/lib/semmle/code/java/Statement.qll b/java/ql/lib/semmle/code/java/Statement.qll index e2c7779b43cb..558e148d71ee 100644 --- a/java/ql/lib/semmle/code/java/Statement.qll +++ b/java/ql/lib/semmle/code/java/Statement.qll @@ -558,11 +558,6 @@ class ConstCase extends SwitchCase { class PatternCase extends SwitchCase { PatternCase() { exists(PatternExpr pe | pe.isNthChildOf(this, _)) } - /** - * DEPRECATED: alias for getPattern(0) - */ - deprecated PatternExpr getPattern() { result = this.getPattern(0) } - /** * Gets this case's `n`th pattern. */ diff --git a/java/ql/lib/semmle/code/java/Type.qll b/java/ql/lib/semmle/code/java/Type.qll index ef5cc5d941ce..8a46d863de2b 100644 --- a/java/ql/lib/semmle/code/java/Type.qll +++ b/java/ql/lib/semmle/code/java/Type.qll @@ -637,9 +637,6 @@ class RefType extends Type, Annotatable, Modifiable, @reftype { this.(NestedType).getEnclosingType().getNestedName() + "$" + this.getName() = result } - /** DEPRECATED: Alias for `getNestedName`. */ - deprecated string nestedName() { result = this.getNestedName() } - /** * Gets the source declaration of this type. * diff --git a/java/ql/lib/semmle/code/java/controlflow/Dominance.qll b/java/ql/lib/semmle/code/java/controlflow/Dominance.qll index e2a50ba06df6..de283e7c0a24 100644 --- a/java/ql/lib/semmle/code/java/controlflow/Dominance.qll +++ b/java/ql/lib/semmle/code/java/controlflow/Dominance.qll @@ -10,57 +10,6 @@ import java * Predicates for basic-block-level dominance. */ -/** - * DEPRECATED: Use `BasicBlock::immediatelyDominates` instead. - * - * The immediate dominance relation for basic blocks. - */ -deprecated predicate bbIDominates(BasicBlock dom, BasicBlock node) { - dom.immediatelyDominates(node) -} - -/** Exit points for basic-block control-flow. */ -private predicate bbSink(BasicBlock exit) { exit.getLastNode() instanceof ControlFlow::ExitNode } - -/** Reversed `bbSucc`. */ -private predicate bbPred(BasicBlock post, BasicBlock pre) { post = pre.getASuccessor() } - -/** The immediate post-dominance relation on basic blocks. */ -deprecated predicate bbIPostDominates(BasicBlock dominator, BasicBlock node) = - idominance(bbSink/1, bbPred/2)(_, dominator, node) - -/** - * DEPRECATED: Use `BasicBlock::strictlyDominates` instead. - * - * Holds if `dom` strictly dominates `node`. - */ -deprecated predicate bbStrictlyDominates(BasicBlock dom, BasicBlock node) { - dom.strictlyDominates(node) -} - -/** - * DEPRECATED: Use `BasicBlock::dominates` instead. - * - * Holds if `dom` dominates `node`. (This is reflexive.) - */ -deprecated predicate bbDominates(BasicBlock dom, BasicBlock node) { dom.dominates(node) } - -/** - * DEPRECATED: Use `BasicBlock::strictlyPostDominates` instead. - * - * Holds if `dom` strictly post-dominates `node`. - */ -deprecated predicate bbStrictlyPostDominates(BasicBlock dom, BasicBlock node) { - dom.strictlyPostDominates(node) -} - -/** - * DEPRECATED: Use `BasicBlock::postDominates` instead. - * - * Holds if `dom` post-dominates `node`. (This is reflexive.) - */ -deprecated predicate bbPostDominates(BasicBlock dom, BasicBlock node) { dom.postDominates(node) } - /** * The dominance frontier relation for basic blocks. * diff --git a/java/ql/lib/semmle/code/java/dataflow/FlowSources.qll b/java/ql/lib/semmle/code/java/dataflow/FlowSources.qll index 8c6ac60eb24f..f8bd1e605976 100644 --- a/java/ql/lib/semmle/code/java/dataflow/FlowSources.qll +++ b/java/ql/lib/semmle/code/java/dataflow/FlowSources.qll @@ -43,14 +43,6 @@ abstract class SourceNode extends DataFlow::Node { abstract string getThreatModel(); } -/** - * DEPRECATED: Use `ActiveThreatModelSource` instead. - * - * A class of data flow sources that respects the - * current threat model configuration. - */ -deprecated class ThreatModelFlowSource = ActiveThreatModelSource; - /** * A data flow source that is enabled in the current threat model configuration. */ diff --git a/java/ql/lib/semmle/code/java/dataflow/FlowSummary.qll b/java/ql/lib/semmle/code/java/dataflow/FlowSummary.qll index 5995e57a4ed5..b88db0272cea 100644 --- a/java/ql/lib/semmle/code/java/dataflow/FlowSummary.qll +++ b/java/ql/lib/semmle/code/java/dataflow/FlowSummary.qll @@ -8,14 +8,6 @@ import java private import internal.FlowSummaryImpl as Impl private import internal.DataFlowUtil -deprecated class SummaryComponent = Impl::Private::SummaryComponent; - -deprecated module SummaryComponent = Impl::Private::SummaryComponent; - -deprecated class SummaryComponentStack = Impl::Private::SummaryComponentStack; - -deprecated module SummaryComponentStack = Impl::Private::SummaryComponentStack; - /** A synthetic callable with a set of concrete call sites and a flow summary. */ abstract class SyntheticCallable extends string { bindingset[this] @@ -147,5 +139,3 @@ private class SummarizedSyntheticCallableAdapter extends SummarizedCallable::Ran ) } } - -deprecated class RequiredSummaryComponentStack = Impl::Private::RequiredSummaryComponentStack; diff --git a/java/ql/lib/semmle/code/java/dataflow/NullGuards.qll b/java/ql/lib/semmle/code/java/dataflow/NullGuards.qll index e10e54609077..77549c89d812 100644 --- a/java/ql/lib/semmle/code/java/dataflow/NullGuards.qll +++ b/java/ql/lib/semmle/code/java/dataflow/NullGuards.qll @@ -196,18 +196,6 @@ Expr basicNullGuard(Expr e, boolean branch, boolean isnull) { Guards_v3::nullGuard(result, any(GuardValue v | v.asBooleanValue() = branch), e, isnull) } -/** - * DEPRECATED: Use `basicNullGuard` instead. - * - * Gets an expression that directly tests whether a given expression, `e`, is null or not. - * - * If `result` evaluates to `branch`, then `e` is guaranteed to be null if `isnull` - * is true, and non-null if `isnull` is false. - */ -deprecated Expr basicOrCustomNullGuard(Expr e, boolean branch, boolean isnull) { - result = basicNullGuard(e, branch, isnull) -} - /** * Gets an expression that directly tests whether a given SSA variable is null or not. * @@ -218,18 +206,6 @@ Expr directNullGuard(SsaDefinition v, boolean branch, boolean isnull) { result = basicNullGuard(sameValue(v, _), branch, isnull) } -/** - * DEPRECATED: Use `nullGuardControls`/`nullGuardControlsBranchEdge` instead. - * - * Gets a `Guard` that tests (possibly indirectly) whether a given SSA variable is null or not. - * - * If `result` evaluates to `branch`, then `v` is guaranteed to be null if `isnull` - * is true, and non-null if `isnull` is false. - */ -deprecated Guard nullGuard(SsaDefinition v, boolean branch, boolean isnull) { - result = directNullGuard(v, branch, isnull) -} - /** * Holds if there exists a null check on `v`, such that taking the branch edge * from `bb1` to `bb2` implies that `v` is guaranteed to be null if `isnull` is diff --git a/java/ql/lib/semmle/code/java/dataflow/internal/DataFlowNodes.qll b/java/ql/lib/semmle/code/java/dataflow/internal/DataFlowNodes.qll index a280e531f91c..8957442b39ac 100644 --- a/java/ql/lib/semmle/code/java/dataflow/internal/DataFlowNodes.qll +++ b/java/ql/lib/semmle/code/java/dataflow/internal/DataFlowNodes.qll @@ -198,19 +198,6 @@ module Public { or result = this.getType() and not exists(this.getImprovedTypeBound()) } - - /** - * Holds if this element is at the specified location. - * The location spans column `startcolumn` of line `startline` to - * column `endcolumn` of line `endline` in file `filepath`. - * For more information, see - * [Locations](https://codeql.github.com/docs/writing-codeql-queries/providing-locations-in-codeql-queries/). - */ - deprecated predicate hasLocationInfo( - string filepath, int startline, int startcolumn, int endline, int endcolumn - ) { - this.getLocation().hasLocationInfo(filepath, startline, startcolumn, endline, endcolumn) - } } /** diff --git a/java/ql/lib/semmle/code/java/frameworks/Jndi.qll b/java/ql/lib/semmle/code/java/frameworks/Jndi.qll index d2b14d5f58ec..5d16dc5103a2 100644 --- a/java/ql/lib/semmle/code/java/frameworks/Jndi.qll +++ b/java/ql/lib/semmle/code/java/frameworks/Jndi.qll @@ -48,18 +48,6 @@ class MethodLdapNameAddAll extends Method { } } -/** - * DEPRECATED: No longer needed as clone steps are handled uniformly. - * - * A method with the name `clone` declared in `javax.naming.ldap.LdapName`. - */ -deprecated class MethodLdapNameClone extends Method { - MethodLdapNameClone() { - this.getDeclaringType() instanceof TypeLdapName and - this.hasName("clone") - } -} - /** A method with the name `getAll` declared in `javax.naming.ldap.LdapName`. */ class MethodLdapNameGetAll extends Method { MethodLdapNameGetAll() { diff --git a/java/ql/lib/semmle/code/java/frameworks/spring/SpringController.qll b/java/ql/lib/semmle/code/java/frameworks/spring/SpringController.qll index a26e4edc2771..3d910485d2fe 100644 --- a/java/ql/lib/semmle/code/java/frameworks/spring/SpringController.qll +++ b/java/ql/lib/semmle/code/java/frameworks/spring/SpringController.qll @@ -156,9 +156,6 @@ class SpringRequestMappingMethod extends SpringControllerMethod { result = this.getProducesExpr().(CompileTimeConstantExpr).getStringValue() } - /** DEPRECATED: Use `getAValue()` instead. */ - deprecated string getValue() { result = requestMappingAnnotation.getStringValue("value") } - /** * Gets a "value" @RequestMapping annotation string value, if present. * diff --git a/java/ql/lib/semmle/code/java/security/AndroidCertificatePinningQuery.qll b/java/ql/lib/semmle/code/java/security/AndroidCertificatePinningQuery.qll index 81c02e832760..7130e41eeb7e 100644 --- a/java/ql/lib/semmle/code/java/security/AndroidCertificatePinningQuery.qll +++ b/java/ql/lib/semmle/code/java/security/AndroidCertificatePinningQuery.qll @@ -20,13 +20,6 @@ class AndroidNetworkSecurityConfigFile extends XmlFile { } } -/** - * DEPRECATED. Use `semmle.code.java.frameworks.android.Android::inAndroidApplication` instead. - * - * Holds if this database contains an Android manifest file. - */ -deprecated predicate isAndroid() { exists(AndroidManifestXmlFile m) } - /** Holds if the given domain name is trusted by the Network Security Configuration XML file. */ private predicate trustedDomainViaXml(string domainName) { exists( diff --git a/java/ql/lib/semmle/code/java/security/ArithmeticTaintedLocalQuery.qll b/java/ql/lib/semmle/code/java/security/ArithmeticTaintedLocalQuery.qll index 453111749679..f9f98cd93acc 100644 --- a/java/ql/lib/semmle/code/java/security/ArithmeticTaintedLocalQuery.qll +++ b/java/ql/lib/semmle/code/java/security/ArithmeticTaintedLocalQuery.qll @@ -1,49 +1,5 @@ /** Provides taint-tracking configurations to reason about arithmetic using local-user-controlled data. */ +overlay[local?] +deprecated module; import java -private import semmle.code.java.dataflow.FlowSources -private import semmle.code.java.security.ArithmeticCommon - -/** - * DEPRECATED: Use `ArithmeticOverflowConfig` instead. - * - * A taint-tracking configuration to reason about arithmetic overflow using local-user-controlled data. - */ -deprecated module ArithmeticTaintedLocalOverflowConfig implements DataFlow::ConfigSig { - predicate isSource(DataFlow::Node source) { source instanceof LocalUserInput } - - predicate isSink(DataFlow::Node sink) { overflowSink(_, sink.asExpr()) } - - predicate isBarrier(DataFlow::Node n) { overflowBarrier(n) } - - predicate isBarrierIn(DataFlow::Node node) { isSource(node) } -} - -/** - * DEPRECATED: Use `ArithmeticOverflow` instead and configure threat model sources to include `local`. - * - * Taint-tracking flow for arithmetic overflow using local-user-controlled data. - */ -deprecated module ArithmeticTaintedLocalOverflowFlow = - TaintTracking::Global; - -/** - * A taint-tracking configuration to reason about arithmetic underflow using local-user-controlled data. - */ -deprecated module ArithmeticTaintedLocalUnderflowConfig implements DataFlow::ConfigSig { - predicate isSource(DataFlow::Node source) { source instanceof LocalUserInput } - - predicate isSink(DataFlow::Node sink) { underflowSink(_, sink.asExpr()) } - - predicate isBarrier(DataFlow::Node n) { underflowBarrier(n) } - - predicate isBarrierIn(DataFlow::Node node) { isSource(node) } -} - -/** - * DEPRECATED: Use `ArithmeticUnderflow` instead and configure threat model sources to include `local`. - * - * Taint-tracking flow for arithmetic underflow using local-user-controlled data. - */ -deprecated module ArithmeticTaintedLocalUnderflowFlow = - TaintTracking::Global; diff --git a/java/ql/lib/semmle/code/java/security/ArithmeticTaintedQuery.qll b/java/ql/lib/semmle/code/java/security/ArithmeticTaintedQuery.qll index 65e73f841495..9d123b379cd6 100644 --- a/java/ql/lib/semmle/code/java/security/ArithmeticTaintedQuery.qll +++ b/java/ql/lib/semmle/code/java/security/ArithmeticTaintedQuery.qll @@ -25,11 +25,6 @@ module ArithmeticOverflowConfig implements DataFlow::ConfigSig { } } -/** - * DEPRECATED: Use `ArithmeticOverflowConfig` instead. - */ -deprecated module RemoteUserInputOverflowConfig = ArithmeticOverflowConfig; - /** A taint-tracking configuration to reason about underflow from unvalidated input. */ module ArithmeticUnderflowConfig implements DataFlow::ConfigSig { predicate isSource(DataFlow::Node source) { source instanceof ActiveThreatModelSource } @@ -51,23 +46,8 @@ module ArithmeticUnderflowConfig implements DataFlow::ConfigSig { } } -/** - * DEPRECATED: Use `ArithmeticUnderflowConfig` instead. - */ -deprecated module RemoteUserInputUnderflowConfig = ArithmeticUnderflowConfig; - /** Taint-tracking flow for overflow from unvalidated input. */ module ArithmeticOverflow = TaintTracking::Global; -/** - * DEPRECATED: Use `ArithmeticOverflow` instead. - */ -deprecated module RemoteUserInputOverflow = ArithmeticOverflow; - /** Taint-tracking flow for underflow from unvalidated input. */ module ArithmeticUnderflow = TaintTracking::Global; - -/** - * DEPRECATED: Use `ArithmeticUnderflow` instead. - */ -deprecated module RemoteUserInputUnderflow = ArithmeticUnderflow; diff --git a/java/ql/lib/semmle/code/java/security/CommandLineQuery.qll b/java/ql/lib/semmle/code/java/security/CommandLineQuery.qll index 273c5360b815..9aa62d950c59 100644 --- a/java/ql/lib/semmle/code/java/security/CommandLineQuery.qll +++ b/java/ql/lib/semmle/code/java/security/CommandLineQuery.qll @@ -78,44 +78,11 @@ module InputToArgumentToExecFlowConfig implements DataFlow::ConfigSig { } } -/** - * DEPRECATED: Use `InputToArgumentToExecFlowConfig` instead. - */ -deprecated module RemoteUserInputToArgumentToExecFlowConfig = InputToArgumentToExecFlowConfig; - /** * Taint-tracking flow for unvalidated input that is used to run an external process. */ module InputToArgumentToExecFlow = TaintTracking::Global; -/** - * DEPRECATED: Use `InputToArgumentToExecFlow` instead. - */ -deprecated module RemoteUserInputToArgumentToExecFlow = InputToArgumentToExecFlow; - -/** - * A taint-tracking configuration for unvalidated local user input that is used to run an external process. - */ -deprecated module LocalUserInputToArgumentToExecFlowConfig implements DataFlow::ConfigSig { - predicate isSource(DataFlow::Node src) { src instanceof LocalUserInput } - - predicate isSink(DataFlow::Node sink) { sink instanceof CommandInjectionSink } - - predicate isBarrier(DataFlow::Node node) { node instanceof CommandInjectionSanitizer } - - predicate isAdditionalFlowStep(DataFlow::Node n1, DataFlow::Node n2) { - any(CommandInjectionAdditionalTaintStep s).step(n1, n2) - } -} - -/** - * DEPRECATED: Use `InputToArgumentToExecFlow` instead and configure threat model sources to include `local`. - * - * Taint-tracking flow for unvalidated local user input that is used to run an external process. - */ -deprecated module LocalUserInputToArgumentToExecFlow = - TaintTracking::Global; - /** * Implementation of `ExecTainted.ql`. It is extracted to a QLL * so that it can be excluded from `ExecUnescaped.ql` to avoid diff --git a/java/ql/lib/semmle/code/java/security/ExecTaintedLocalQuery.qll b/java/ql/lib/semmle/code/java/security/ExecTaintedLocalQuery.qll index 7a2d5b0947d0..dfc727e89d71 100644 --- a/java/ql/lib/semmle/code/java/security/ExecTaintedLocalQuery.qll +++ b/java/ql/lib/semmle/code/java/security/ExecTaintedLocalQuery.qll @@ -1,27 +1,5 @@ /** Provides a taint-tracking configuration to reason about use of externally controlled strings for command injection vulnerabilities. */ +overlay[local?] +deprecated module; import java -private import semmle.code.java.dataflow.FlowSources -private import semmle.code.java.security.ExternalProcess -private import semmle.code.java.security.CommandArguments -private import semmle.code.java.security.Sanitizers - -/** A taint-tracking configuration to reason about use of externally controlled strings to make command line commands. */ -deprecated module ExecTaintedLocalConfig implements DataFlow::ConfigSig { - predicate isSource(DataFlow::Node src) { src instanceof LocalUserInput } - - predicate isSink(DataFlow::Node sink) { sink.asExpr() instanceof ArgumentToExec } - - predicate isBarrier(DataFlow::Node node) { - node instanceof SimpleTypeSanitizer - or - isSafeCommandArgument(node.asExpr()) - } -} - -/** - * DEPRCATED: Unused. - * - * Taint-tracking flow for use of externally controlled strings to make command line commands. - */ -deprecated module ExecTaintedLocalFlow = TaintTracking::Global; diff --git a/java/ql/lib/semmle/code/java/security/ExternallyControlledFormatStringLocalQuery.qll b/java/ql/lib/semmle/code/java/security/ExternallyControlledFormatStringLocalQuery.qll index 482673bacc93..79cf2a300f47 100644 --- a/java/ql/lib/semmle/code/java/security/ExternallyControlledFormatStringLocalQuery.qll +++ b/java/ql/lib/semmle/code/java/security/ExternallyControlledFormatStringLocalQuery.qll @@ -1,26 +1,5 @@ /** Provides a taint-tracking configuration to reason about externally-controlled format strings from local sources. */ +overlay[local?] +deprecated module; import java -private import semmle.code.java.dataflow.FlowSources -private import semmle.code.java.StringFormat - -/** A taint-tracking configuration to reason about externally-controlled format strings from local sources. */ -deprecated module ExternallyControlledFormatStringLocalConfig implements DataFlow::ConfigSig { - predicate isSource(DataFlow::Node source) { source instanceof LocalUserInput } - - predicate isSink(DataFlow::Node sink) { - sink.asExpr() = any(StringFormat formatCall).getFormatArgument() - } - - predicate isBarrier(DataFlow::Node node) { - node.getType() instanceof NumericType or node.getType() instanceof BooleanType - } -} - -/** - * DEPRECATED: Use `ExternallyControlledFormatStringFlow` instead and configure threat model sources to include `local`. - * - * Taint-tracking flow for externally-controlled format strings from local sources. - */ -deprecated module ExternallyControlledFormatStringLocalFlow = - TaintTracking::Global; diff --git a/java/ql/lib/semmle/code/java/security/ImproperValidationOfArrayConstructionLocalQuery.qll b/java/ql/lib/semmle/code/java/security/ImproperValidationOfArrayConstructionLocalQuery.qll index 1d31d7afb872..e5b51c2ae53c 100644 --- a/java/ql/lib/semmle/code/java/security/ImproperValidationOfArrayConstructionLocalQuery.qll +++ b/java/ql/lib/semmle/code/java/security/ImproperValidationOfArrayConstructionLocalQuery.qll @@ -1,24 +1,5 @@ /** Provides a taint-tracking configuration to reason about improper validation of local user-provided size used for array construction. */ +overlay[local?] +deprecated module; import java -private import semmle.code.java.security.internal.ArraySizing -private import semmle.code.java.dataflow.FlowSources - -/** - * A taint-tracking configuration to reason about improper validation of local user-provided size used for array construction. - */ -deprecated module ImproperValidationOfArrayConstructionLocalConfig implements DataFlow::ConfigSig { - predicate isSource(DataFlow::Node source) { source instanceof LocalUserInput } - - predicate isSink(DataFlow::Node sink) { - any(CheckableArrayAccess caa).canThrowOutOfBoundsDueToEmptyArray(sink.asExpr(), _) - } -} - -/** - * DEPRECATED: Use `ImproperValidationOfArrayConstructionFlow` instead and configure threat model sources to include `local`. - * - * Taint-tracking flow for improper validation of local user-provided size used for array construction. - */ -deprecated module ImproperValidationOfArrayConstructionLocalFlow = - TaintTracking::Global; diff --git a/java/ql/lib/semmle/code/java/security/ImproperValidationOfArrayIndexLocalQuery.qll b/java/ql/lib/semmle/code/java/security/ImproperValidationOfArrayIndexLocalQuery.qll index 5f1e7c81e017..b6b1366fb402 100644 --- a/java/ql/lib/semmle/code/java/security/ImproperValidationOfArrayIndexLocalQuery.qll +++ b/java/ql/lib/semmle/code/java/security/ImproperValidationOfArrayIndexLocalQuery.qll @@ -1,28 +1,5 @@ /** Provides a taint-tracking configuration to reason about improper validation of local user-provided array index. */ +overlay[local?] +deprecated module; import java -private import semmle.code.java.security.internal.ArraySizing -private import semmle.code.java.dataflow.FlowSources - -/** - * A taint-tracking configuration to reason about improper validation of local user-provided array index. - */ -deprecated module ImproperValidationOfArrayIndexLocalConfig implements DataFlow::ConfigSig { - predicate isSource(DataFlow::Node source) { source instanceof LocalUserInput } - - predicate isSink(DataFlow::Node sink) { - any(CheckableArrayAccess caa).canThrowOutOfBounds(sink.asExpr()) - } - - predicate isBarrier(DataFlow::Node node) { node.getType() instanceof BooleanType } - - predicate isBarrierIn(DataFlow::Node node) { isSource(node) } -} - -/** - * DEPRECATED: Use `ImproperValidationOfArrayIndexFlow` instead and configure threat model sources to include `local`. - * - * Taint-tracking flow for improper validation of local user-provided array index. - */ -deprecated module ImproperValidationOfArrayIndexLocalFlow = - TaintTracking::Global; diff --git a/java/ql/lib/semmle/code/java/security/NumericCastTaintedQuery.qll b/java/ql/lib/semmle/code/java/security/NumericCastTaintedQuery.qll index 793871a4bd23..a4c3785feead 100644 --- a/java/ql/lib/semmle/code/java/security/NumericCastTaintedQuery.qll +++ b/java/ql/lib/semmle/code/java/security/NumericCastTaintedQuery.qll @@ -115,34 +115,3 @@ module NumericCastFlowConfig implements DataFlow::ConfigSig { * Taint-tracking flow for user input that is used in a numeric cast. */ module NumericCastFlow = TaintTracking::Global; - -/** - * A taint-tracking configuration for reasoning about local user input that is - * used in a numeric cast. - */ -deprecated module NumericCastLocalFlowConfig implements DataFlow::ConfigSig { - predicate isSource(DataFlow::Node src) { src instanceof LocalUserInput } - - predicate isSink(DataFlow::Node sink) { - sink.asExpr() = any(NumericNarrowingCastExpr cast).getExpr() and - sink.asExpr() instanceof VarAccess - } - - predicate isBarrier(DataFlow::Node node) { - boundedRead(node.asExpr()) or - castCheck(node.asExpr()) or - node.getType() instanceof SmallType or - smallExpr(node.asExpr()) or - node.getEnclosingCallable() instanceof HashCodeMethod or - exists(RightShiftOp e | e.getShiftedVariable().getAnAccess() = node.asExpr()) - } - - predicate isBarrierIn(DataFlow::Node node) { isSource(node) } -} - -/** - * DEPRECATED: Use `NumericCastFlow` instead and configure threat model sources to include `local`. - * - * Taint-tracking flow for local user input that is used in a numeric cast. - */ -deprecated module NumericCastLocalFlow = TaintTracking::Global; diff --git a/java/ql/lib/semmle/code/java/security/ResponseSplittingLocalQuery.qll b/java/ql/lib/semmle/code/java/security/ResponseSplittingLocalQuery.qll index e5845b630ec8..e0383cd52d9a 100644 --- a/java/ql/lib/semmle/code/java/security/ResponseSplittingLocalQuery.qll +++ b/java/ql/lib/semmle/code/java/security/ResponseSplittingLocalQuery.qll @@ -1,39 +1,5 @@ /** Provides a taint-tracking configuration to reason about response splitting vulnerabilities from local user input. */ +overlay[local?] +deprecated module; import java -private import semmle.code.java.dataflow.FlowSources -private import semmle.code.java.security.ResponseSplitting - -/** - * A taint-tracking configuration to reason about response splitting vulnerabilities from local user input. - */ -deprecated module ResponseSplittingLocalConfig implements DataFlow::ConfigSig { - predicate isSource(DataFlow::Node source) { source instanceof LocalUserInput } - - predicate isSink(DataFlow::Node sink) { sink instanceof HeaderSplittingSink } - - predicate isBarrier(DataFlow::Node node) { - node.getType() instanceof PrimitiveType - or - node.getType() instanceof BoxedType - or - exists(MethodCall ma, string methodName, CompileTimeConstantExpr target | - node.asExpr() = ma and - ma.getMethod().hasQualifiedName("java.lang", "String", methodName) and - target = ma.getArgument(0) and - ( - methodName = "replace" and target.getIntValue() = [10, 13] // 10 == "\n", 13 == "\r" - or - methodName = "replaceAll" and - target.getStringValue().regexpMatch(".*([\n\r]|\\[\\^[^\\]\r\n]*\\]).*") - ) - ) - } -} - -/** - * DEPRECATED: Use `ResponseSplittingFlow` instead and configure threat model sources to include `local`. - * - * Taint-tracking flow for response splitting vulnerabilities from local user input. - */ -deprecated module ResponseSplittingLocalFlow = TaintTracking::Global; diff --git a/java/ql/lib/semmle/code/java/security/SqlTaintedLocalQuery.qll b/java/ql/lib/semmle/code/java/security/SqlTaintedLocalQuery.qll index 7ff4b300ce8a..80cd491acf24 100644 --- a/java/ql/lib/semmle/code/java/security/SqlTaintedLocalQuery.qll +++ b/java/ql/lib/semmle/code/java/security/SqlTaintedLocalQuery.qll @@ -2,32 +2,7 @@ * Provides a taint-tracking configuration for reasoning about local user input * that is used in a SQL query. */ +overlay[local?] +deprecated module; import java -private import semmle.code.java.dataflow.FlowSources -private import semmle.code.java.security.SqlInjectionQuery -private import semmle.code.java.security.Sanitizers - -/** - * A taint-tracking configuration for reasoning about local user input that is - * used in a SQL query. - */ -deprecated module LocalUserInputToQueryInjectionFlowConfig implements DataFlow::ConfigSig { - predicate isSource(DataFlow::Node src) { src instanceof LocalUserInput } - - predicate isSink(DataFlow::Node sink) { sink instanceof QueryInjectionSink } - - predicate isBarrier(DataFlow::Node node) { node instanceof SimpleTypeSanitizer } - - predicate isAdditionalFlowStep(DataFlow::Node node1, DataFlow::Node node2) { - any(AdditionalQueryInjectionTaintStep s).step(node1, node2) - } -} - -/** - * DEPRECATED: Use `QueryInjectionFlow` instead and configure threat model sources to include `local`. - * - * Taint-tracking flow for local user input that is used in a SQL query. - */ -deprecated module LocalUserInputToQueryInjectionFlow = - TaintTracking::Global; diff --git a/java/ql/lib/semmle/code/java/security/TaintedPathQuery.qll b/java/ql/lib/semmle/code/java/security/TaintedPathQuery.qll index 6726bcc35086..27b65e7eae0b 100644 --- a/java/ql/lib/semmle/code/java/security/TaintedPathQuery.qll +++ b/java/ql/lib/semmle/code/java/security/TaintedPathQuery.qll @@ -78,28 +78,3 @@ module TaintedPathConfig implements DataFlow::ConfigSig { /** Tracks flow from remote sources to the creation of a path. */ module TaintedPathFlow = TaintTracking::Global; - -/** - * A taint-tracking configuration for tracking flow from local user input to the creation of a path. - */ -deprecated module TaintedPathLocalConfig implements DataFlow::ConfigSig { - predicate isSource(DataFlow::Node source) { source instanceof LocalUserInput } - - predicate isSink(DataFlow::Node sink) { sink instanceof TaintedPathSink } - - predicate isBarrier(DataFlow::Node sanitizer) { - sanitizer instanceof SimpleTypeSanitizer or - sanitizer instanceof PathInjectionSanitizer - } - - predicate isAdditionalFlowStep(DataFlow::Node n1, DataFlow::Node n2) { - any(TaintedPathAdditionalTaintStep s).step(n1, n2) - } -} - -/** - * DEPRECATED: Use `TaintedPathFlow` instead and configure threat model sources to include `local`. - * - * Tracks flow from local user input to the creation of a path. - */ -deprecated module TaintedPathLocalFlow = TaintTracking::Global; diff --git a/java/ql/lib/semmle/code/java/security/UrlRedirectLocalQuery.qll b/java/ql/lib/semmle/code/java/security/UrlRedirectLocalQuery.qll index f68fb959ea52..2016e9be14fa 100644 --- a/java/ql/lib/semmle/code/java/security/UrlRedirectLocalQuery.qll +++ b/java/ql/lib/semmle/code/java/security/UrlRedirectLocalQuery.qll @@ -1,21 +1,5 @@ /** Provides a taint-tracking configuration to reason about URL redirection from local sources. */ +overlay[local?] +deprecated module; import java -private import semmle.code.java.dataflow.FlowSources -private import semmle.code.java.security.UrlRedirect - -/** - * A taint-tracking configuration to reason about URL redirection from local sources. - */ -deprecated module UrlRedirectLocalConfig implements DataFlow::ConfigSig { - predicate isSource(DataFlow::Node source) { source instanceof LocalUserInput } - - predicate isSink(DataFlow::Node sink) { sink instanceof UrlRedirectSink } -} - -/** - * DEPRECATED: Use `UrlRedirectFlow` instead and configure threat model sources to include `local`. - * - * Taint-tracking flow for URL redirection from local sources. - */ -deprecated module UrlRedirectLocalFlow = TaintTracking::Global; diff --git a/java/ql/lib/semmle/code/java/security/XssLocalQuery.qll b/java/ql/lib/semmle/code/java/security/XssLocalQuery.qll index 5e1098865aa6..fd8fd6f451c2 100644 --- a/java/ql/lib/semmle/code/java/security/XssLocalQuery.qll +++ b/java/ql/lib/semmle/code/java/security/XssLocalQuery.qll @@ -1,30 +1,5 @@ /** Provides a taint-tracking configuration to reason about cross-site scripting from a local source. */ +overlay[local?] +deprecated module; import java -private import semmle.code.java.dataflow.FlowSources -private import semmle.code.java.dataflow.TaintTracking -private import semmle.code.java.security.XSS - -/** - * A taint-tracking configuration for reasoning about cross-site scripting vulnerabilities from a local source. - */ -deprecated module XssLocalConfig implements DataFlow::ConfigSig { - predicate isSource(DataFlow::Node source) { source instanceof LocalUserInput } - - predicate isSink(DataFlow::Node sink) { sink instanceof XssSink } - - predicate isBarrier(DataFlow::Node node) { node instanceof XssSanitizer } - - predicate isBarrierOut(DataFlow::Node node) { node instanceof XssSinkBarrier } - - predicate isAdditionalFlowStep(DataFlow::Node node1, DataFlow::Node node2) { - any(XssAdditionalTaintStep s).step(node1, node2) - } -} - -/** - * DEPRECATED: Use `XssFlow` instead and configure threat model sources to include `local`. - * - * Taint-tracking flow for cross-site scripting vulnerabilities from a local source. - */ -deprecated module XssLocalFlow = TaintTracking::Global; diff --git a/java/ql/lib/semmle/code/java/security/XxeLocalQuery.qll b/java/ql/lib/semmle/code/java/security/XxeLocalQuery.qll index f485137fc782..c45cd560cfca 100644 --- a/java/ql/lib/semmle/code/java/security/XxeLocalQuery.qll +++ b/java/ql/lib/semmle/code/java/security/XxeLocalQuery.qll @@ -1,28 +1,5 @@ /** Provides taint tracking configurations to be used in local XXE queries. */ +overlay[local?] +deprecated module; import java -private import semmle.code.java.dataflow.FlowSources -private import semmle.code.java.dataflow.TaintTracking -private import semmle.code.java.security.XxeQuery - -/** - * A taint-tracking configuration for unvalidated local user input that is used in XML external entity expansion. - */ -deprecated module XxeLocalConfig implements DataFlow::ConfigSig { - predicate isSource(DataFlow::Node src) { src instanceof LocalUserInput } - - predicate isSink(DataFlow::Node sink) { sink instanceof XxeSink } - - predicate isBarrier(DataFlow::Node sanitizer) { sanitizer instanceof XxeSanitizer } - - predicate isAdditionalFlowStep(DataFlow::Node n1, DataFlow::Node n2) { - any(XxeAdditionalTaintStep s).step(n1, n2) - } -} - -/** - * DEPRECATED: Use `XxeFlow` instead and configure threat model sources to include `local`. - * - * Detect taint flow of unvalidated local user input that is used in XML external entity expansion. - */ -deprecated module XxeLocalFlow = TaintTracking::Global; diff --git a/java/ql/src/semmle/code/xml/MyBatisMapperXML.qll b/java/ql/src/semmle/code/xml/MyBatisMapperXML.qll deleted file mode 100644 index 5d047f1e82a1..000000000000 --- a/java/ql/src/semmle/code/xml/MyBatisMapperXML.qll +++ /dev/null @@ -1,117 +0,0 @@ -/** - * Provides classes for working with MyBatis mapper xml files and their content. - */ -deprecated module; - -import java - -/** - * MyBatis Mapper XML file. - */ -class MyBatisMapperXmlFile extends XmlFile { - MyBatisMapperXmlFile() { - count(XmlElement e | e = this.getAChild()) = 1 and - this.getAChild().getName() = "mapper" - } -} - -/** - * An XML element in a `MyBatisMapperXMLFile`. - */ -class MyBatisMapperXmlElement extends XmlElement { - MyBatisMapperXmlElement() { this.getFile() instanceof MyBatisMapperXmlFile } - - /** - * Gets the value for this element, with leading and trailing whitespace trimmed. - */ - string getValue() { result = this.allCharactersString().trim() } - - /** - * Gets the reference type bound to MyBatis Mapper XML File. - */ - RefType getNamespaceRefType() { - result.getQualifiedName() = this.getAttribute("namespace").getValue() - } -} - -/** - * An MyBatis Mapper sql operation element. - */ -abstract class MyBatisMapperSqlOperation extends MyBatisMapperXmlElement { - /** - * Gets the value of the `id` attribute of MyBatis Mapper sql operation element. - */ - string getId() { result = this.getAttribute("id").getValue() } - - /** - * Gets the `` element in a `MyBatisMapperSqlOperation`. - */ - MyBatisMapperInclude getInclude() { result = this.getAChild*() } - - /** - * Gets the method bound to MyBatis Mapper XML File. - */ - Method getMapperMethod() { - result.getName() = this.getId() and - result.getDeclaringType() = this.getParent().(MyBatisMapperXmlElement).getNamespaceRefType() - } -} - -/** - * A `` element in a `MyBatisMapperSqlOperation`. - */ -class MyBatisMapperInsert extends MyBatisMapperSqlOperation { - MyBatisMapperInsert() { this.getName() = "insert" } -} - -/** - * A `` element in a `MyBatisMapperSqlOperation`. - */ -class MyBatisMapperUpdate extends MyBatisMapperSqlOperation { - MyBatisMapperUpdate() { this.getName() = "update" } -} - -/** - * A `` element in a `MyBatisMapperSqlOperation`. - */ -class MyBatisMapperDelete extends MyBatisMapperSqlOperation { - MyBatisMapperDelete() { this.getName() = "delete" } -} - -/** - * A `; + +class Container = Impl::Container; + +class Folder = Impl::Folder; + +/** A file. */ +class File extends Container, Impl::File { + /** Holds if this file was extracted from ordinary source code. */ + predicate fromSource() { any() } +} diff --git a/unified/ql/lib/codeql/unified/Ast.qll b/unified/ql/lib/codeql/unified/Ast.qll new file mode 100644 index 000000000000..54c1caceaf4b --- /dev/null +++ b/unified/ql/lib/codeql/unified/Ast.qll @@ -0,0 +1,2842 @@ +/** + * CodeQL library for Swift + * Automatically generated from the tree-sitter grammar; do not edit + */ + +import codeql.Locations as L + +/** Holds if the database is an overlay. */ +overlay[local] +private predicate isOverlay() { databaseMetadata("isOverlay", "true") } + +/** Holds if `loc` is in the `file` and is part of the overlay base database. */ +overlay[local] +private predicate discardableLocation(@file file, @location_default loc) { + not isOverlay() and locations_default(loc, file, _, _, _, _) +} + +/** Holds if `loc` should be discarded, because it is part of the overlay base and is in a file that was also extracted as part of the overlay database. */ +overlay[discard_entity] +private predicate discardLocation(@location_default loc) { + exists(@file file, string path | files(file, path) | + discardableLocation(file, loc) and overlayChangedFiles(path) + ) +} + +overlay[local] +module Swift { + /** The base class for all AST nodes */ + class AstNode extends @swift_ast_node { + /** Gets a string representation of this element. */ + string toString() { result = this.getAPrimaryQlClass() } + + /** Gets the location of this element. */ + final L::Location getLocation() { swift_ast_node_location(this, result) } + + /** Gets the parent of this element. */ + final AstNode getParent() { swift_ast_node_parent(this, result, _) } + + /** Gets the index of this node among the children of its parent. */ + final int getParentIndex() { swift_ast_node_parent(this, _, result) } + + /** Gets a field or child node of this node. */ + AstNode getAFieldOrChild() { none() } + + /** Gets the name of the primary QL class for this element. */ + string getAPrimaryQlClass() { result = "???" } + + /** Gets a comma-separated list of the names of the primary CodeQL classes to which this element belongs. */ + string getPrimaryQlClasses() { result = concat(this.getAPrimaryQlClass(), ",") } + } + + /** A token. */ + class Token extends @swift_token, AstNode { + /** Gets the value of this token. */ + final string getValue() { swift_tokeninfo(this, _, result) } + + /** Gets a string representation of this element. */ + final override string toString() { result = this.getValue() } + + /** Gets the name of the primary QL class for this element. */ + override string getAPrimaryQlClass() { result = "Token" } + } + + /** A reserved word. */ + class ReservedWord extends @swift_reserved_word, Token { + /** Gets the name of the primary QL class for this element. */ + final override string getAPrimaryQlClass() { result = "ReservedWord" } + } + + /** Gets the file containing the given `node`. */ + private @file getNodeFile(@swift_ast_node node) { + exists(@location_default loc | swift_ast_node_location(node, loc) | + locations_default(loc, result, _, _, _, _) + ) + } + + /** Holds if `node` is in the `file` and is part of the overlay base database. */ + private predicate discardableAstNode(@file file, @swift_ast_node node) { + not isOverlay() and file = getNodeFile(node) + } + + /** Holds if `node` should be discarded, because it is part of the overlay base and is in a file that was also extracted as part of the overlay database. */ + overlay[discard_entity] + private predicate discardAstNode(@swift_ast_node node) { + exists(@file file, string path | files(file, path) | + discardableAstNode(file, node) and overlayChangedFiles(path) + ) + } + + /** A class representing `_expression` tokens. */ + class UnderscoreExpression extends @swift_token__expression, Token { + /** Gets the name of the primary QL class for this element. */ + final override string getAPrimaryQlClass() { result = "UnderscoreExpression" } + } + + /** A class representing `additive_expression` nodes. */ + class AdditiveExpression extends @swift_additive_expression, AstNode { + /** Gets the name of the primary QL class for this element. */ + final override string getAPrimaryQlClass() { result = "AdditiveExpression" } + + /** Gets the node corresponding to the field `lhs`. */ + final AstNode getLhs(int i) { swift_additive_expression_lhs(this, i, result) } + + /** Gets the node corresponding to the field `op`. */ + final string getOp() { + exists(int value | swift_additive_expression_def(this, value) | + result = "+" and value = 0 + or + result = "-" and value = 1 + ) + } + + /** Gets the node corresponding to the field `rhs`. */ + final AstNode getRhs(int i) { swift_additive_expression_rhs(this, i, result) } + + /** Gets a field or child node of this node. */ + final override AstNode getAFieldOrChild() { + swift_additive_expression_lhs(this, _, result) or + swift_additive_expression_rhs(this, _, result) + } + } + + /** A class representing `array_literal` nodes. */ + class ArrayLiteral extends @swift_array_literal, AstNode { + /** Gets the name of the primary QL class for this element. */ + final override string getAPrimaryQlClass() { result = "ArrayLiteral" } + + /** Gets the node corresponding to the field `element`. */ + final AstNode getElement(int i) { swift_array_literal_element(this, i, result) } + + /** Gets a field or child node of this node. */ + final override AstNode getAFieldOrChild() { swift_array_literal_element(this, _, result) } + } + + /** A class representing `array_type` nodes. */ + class ArrayType extends @swift_array_type, AstNode { + /** Gets the name of the primary QL class for this element. */ + final override string getAPrimaryQlClass() { result = "ArrayType" } + + /** Gets the node corresponding to the field `element`. */ + final AstNode getElement(int i) { swift_array_type_element(this, i, result) } + + /** Gets the node corresponding to the field `name`. */ + final AstNode getName() { swift_array_type_def(this, result) } + + /** Gets a field or child node of this node. */ + final override AstNode getAFieldOrChild() { + swift_array_type_element(this, _, result) or swift_array_type_def(this, result) + } + } + + /** A class representing `as_expression` nodes. */ + class AsExpression extends @swift_as_expression, AstNode { + /** Gets the name of the primary QL class for this element. */ + final override string getAPrimaryQlClass() { result = "AsExpression" } + + /** Gets the node corresponding to the field `expr`. */ + final AstNode getExpr(int i) { swift_as_expression_expr(this, i, result) } + + /** Gets the node corresponding to the field `name`. */ + final AstNode getName() { swift_as_expression_def(this, result, _) } + + /** Gets the node corresponding to the field `type`. */ + final AstNode getType(int i) { swift_as_expression_type(this, i, result) } + + /** Gets the child of this node. */ + final AsOperator getChild() { swift_as_expression_def(this, _, result) } + + /** Gets a field or child node of this node. */ + final override AstNode getAFieldOrChild() { + swift_as_expression_expr(this, _, result) or + swift_as_expression_def(this, result, _) or + swift_as_expression_type(this, _, result) or + swift_as_expression_def(this, _, result) + } + } + + /** A class representing `as_operator` tokens. */ + class AsOperator extends @swift_token_as_operator, Token { + /** Gets the name of the primary QL class for this element. */ + final override string getAPrimaryQlClass() { result = "AsOperator" } + } + + /** A class representing `assignment` nodes. */ + class Assignment extends @swift_assignment, AstNode { + /** Gets the name of the primary QL class for this element. */ + final override string getAPrimaryQlClass() { result = "Assignment" } + + /** Gets the node corresponding to the field `operator`. */ + final string getOperator() { + exists(int value | swift_assignment_def(this, value, _) | + result = "%=" and value = 0 + or + result = "*=" and value = 1 + or + result = "+=" and value = 2 + or + result = "-=" and value = 3 + or + result = "/=" and value = 4 + or + result = "=" and value = 5 + ) + } + + /** Gets the node corresponding to the field `result`. */ + final AstNode getResult(int i) { swift_assignment_result(this, i, result) } + + /** Gets the node corresponding to the field `target`. */ + final DirectlyAssignableExpression getTarget() { swift_assignment_def(this, _, result) } + + /** Gets a field or child node of this node. */ + final override AstNode getAFieldOrChild() { + swift_assignment_result(this, _, result) or swift_assignment_def(this, _, result) + } + } + + /** A class representing `associatedtype_declaration` nodes. */ + class AssociatedtypeDeclaration extends @swift_associatedtype_declaration, AstNode { + /** Gets the name of the primary QL class for this element. */ + final override string getAPrimaryQlClass() { result = "AssociatedtypeDeclaration" } + + /** Gets the node corresponding to the field `default_value`. */ + final AstNode getDefaultValue(int i) { + swift_associatedtype_declaration_default_value(this, i, result) + } + + /** Gets the node corresponding to the field `must_inherit`. */ + final AstNode getMustInherit(int i) { + swift_associatedtype_declaration_must_inherit(this, i, result) + } + + /** Gets the node corresponding to the field `name`. */ + final AstNode getName(int i) { swift_associatedtype_declaration_name(this, i, result) } + + /** Gets the `i`th child of this node. */ + final AstNode getChild(int i) { swift_associatedtype_declaration_child(this, i, result) } + + /** Gets a field or child node of this node. */ + final override AstNode getAFieldOrChild() { + swift_associatedtype_declaration_default_value(this, _, result) or + swift_associatedtype_declaration_must_inherit(this, _, result) or + swift_associatedtype_declaration_name(this, _, result) or + swift_associatedtype_declaration_child(this, _, result) + } + } + + /** A class representing `attribute` nodes. */ + class Attribute extends @swift_attribute, AstNode { + /** Gets the name of the primary QL class for this element. */ + final override string getAPrimaryQlClass() { result = "Attribute" } + + /** Gets the `i`th child of this node. */ + final AstNode getChild(int i) { swift_attribute_child(this, i, result) } + + /** Gets a field or child node of this node. */ + final override AstNode getAFieldOrChild() { swift_attribute_child(this, _, result) } + } + + /** A class representing `availability_condition` nodes. */ + class AvailabilityCondition extends @swift_availability_condition, AstNode { + /** Gets the name of the primary QL class for this element. */ + final override string getAPrimaryQlClass() { result = "AvailabilityCondition" } + + /** Gets the `i`th child of this node. */ + final AstNode getChild(int i) { swift_availability_condition_child(this, i, result) } + + /** Gets a field or child node of this node. */ + final override AstNode getAFieldOrChild() { + swift_availability_condition_child(this, _, result) + } + } + + /** A class representing `await_expression` nodes. */ + class AwaitExpression extends @swift_await_expression, AstNode { + /** Gets the name of the primary QL class for this element. */ + final override string getAPrimaryQlClass() { result = "AwaitExpression" } + + /** Gets the node corresponding to the field `expr`. */ + final AstNode getExpr(int i) { swift_await_expression_expr(this, i, result) } + + /** Gets the child of this node. */ + final AstNode getChild() { swift_await_expression_child(this, result) } + + /** Gets a field or child node of this node. */ + final override AstNode getAFieldOrChild() { + swift_await_expression_expr(this, _, result) or swift_await_expression_child(this, result) + } + } + + /** A class representing `bang` tokens. */ + class Bang extends @swift_token_bang, Token { + /** Gets the name of the primary QL class for this element. */ + final override string getAPrimaryQlClass() { result = "Bang" } + } + + /** A class representing `bin_literal` tokens. */ + class BinLiteral extends @swift_token_bin_literal, Token { + /** Gets the name of the primary QL class for this element. */ + final override string getAPrimaryQlClass() { result = "BinLiteral" } + } + + /** A class representing `bitwise_operation` nodes. */ + class BitwiseOperation extends @swift_bitwise_operation, AstNode { + /** Gets the name of the primary QL class for this element. */ + final override string getAPrimaryQlClass() { result = "BitwiseOperation" } + + /** Gets the node corresponding to the field `lhs`. */ + final AstNode getLhs(int i) { swift_bitwise_operation_lhs(this, i, result) } + + /** Gets the node corresponding to the field `op`. */ + final string getOp() { + exists(int value | swift_bitwise_operation_def(this, value) | + result = "&" and value = 0 + or + result = "<<" and value = 1 + or + result = ">>" and value = 2 + or + result = "^" and value = 3 + or + result = "|" and value = 4 + ) + } + + /** Gets the node corresponding to the field `rhs`. */ + final AstNode getRhs(int i) { swift_bitwise_operation_rhs(this, i, result) } + + /** Gets a field or child node of this node. */ + final override AstNode getAFieldOrChild() { + swift_bitwise_operation_lhs(this, _, result) or swift_bitwise_operation_rhs(this, _, result) + } + } + + /** A class representing `boolean_literal` tokens. */ + class BooleanLiteral extends @swift_token_boolean_literal, Token { + /** Gets the name of the primary QL class for this element. */ + final override string getAPrimaryQlClass() { result = "BooleanLiteral" } + } + + /** A class representing `call_expression` nodes. */ + class CallExpression extends @swift_call_expression, AstNode { + /** Gets the name of the primary QL class for this element. */ + final override string getAPrimaryQlClass() { result = "CallExpression" } + + /** Gets the `i`th child of this node. */ + final AstNode getChild(int i) { swift_call_expression_child(this, i, result) } + + /** Gets a field or child node of this node. */ + final override AstNode getAFieldOrChild() { swift_call_expression_child(this, _, result) } + } + + /** A class representing `call_suffix` nodes. */ + class CallSuffix extends @swift_call_suffix, AstNode { + /** Gets the name of the primary QL class for this element. */ + final override string getAPrimaryQlClass() { result = "CallSuffix" } + + /** Gets the node corresponding to the field `name`. */ + final SimpleIdentifier getName(int i) { swift_call_suffix_name(this, i, result) } + + /** Gets the `i`th child of this node. */ + final AstNode getChild(int i) { swift_call_suffix_child(this, i, result) } + + /** Gets a field or child node of this node. */ + final override AstNode getAFieldOrChild() { + swift_call_suffix_name(this, _, result) or swift_call_suffix_child(this, _, result) + } + } + + /** A class representing `capture_list` nodes. */ + class CaptureList extends @swift_capture_list, AstNode { + /** Gets the name of the primary QL class for this element. */ + final override string getAPrimaryQlClass() { result = "CaptureList" } + + /** Gets the `i`th child of this node. */ + final CaptureListItem getChild(int i) { swift_capture_list_child(this, i, result) } + + /** Gets a field or child node of this node. */ + final override AstNode getAFieldOrChild() { swift_capture_list_child(this, _, result) } + } + + /** A class representing `capture_list_item` nodes. */ + class CaptureListItem extends @swift_capture_list_item, AstNode { + /** Gets the name of the primary QL class for this element. */ + final override string getAPrimaryQlClass() { result = "CaptureListItem" } + + /** Gets the node corresponding to the field `name`. */ + final AstNode getName() { swift_capture_list_item_def(this, result) } + + /** Gets the node corresponding to the field `value`. */ + final AstNode getValue(int i) { swift_capture_list_item_value(this, i, result) } + + /** Gets the child of this node. */ + final OwnershipModifier getChild() { swift_capture_list_item_child(this, result) } + + /** Gets a field or child node of this node. */ + final override AstNode getAFieldOrChild() { + swift_capture_list_item_def(this, result) or + swift_capture_list_item_value(this, _, result) or + swift_capture_list_item_child(this, result) + } + } + + /** A class representing `catch_block` nodes. */ + class CatchBlock extends @swift_catch_block, AstNode { + /** Gets the name of the primary QL class for this element. */ + final override string getAPrimaryQlClass() { result = "CatchBlock" } + + /** Gets the node corresponding to the field `error`. */ + final Pattern getError() { swift_catch_block_error(this, result) } + + /** Gets the `i`th child of this node. */ + final AstNode getChild(int i) { swift_catch_block_child(this, i, result) } + + /** Gets a field or child node of this node. */ + final override AstNode getAFieldOrChild() { + swift_catch_block_error(this, result) or swift_catch_block_child(this, _, result) + } + } + + /** A class representing `catch_keyword` tokens. */ + class CatchKeyword extends @swift_token_catch_keyword, Token { + /** Gets the name of the primary QL class for this element. */ + final override string getAPrimaryQlClass() { result = "CatchKeyword" } + } + + /** A class representing `check_expression` nodes. */ + class CheckExpression extends @swift_check_expression, AstNode { + /** Gets the name of the primary QL class for this element. */ + final override string getAPrimaryQlClass() { result = "CheckExpression" } + + /** Gets the node corresponding to the field `name`. */ + final AstNode getName() { swift_check_expression_def(this, result, _) } + + /** Gets the node corresponding to the field `op`. */ + final string getOp() { + exists(int value | swift_check_expression_def(this, _, value) | (result = "is" and value = 0)) + } + + /** Gets the node corresponding to the field `target`. */ + final AstNode getTarget(int i) { swift_check_expression_target(this, i, result) } + + /** Gets the node corresponding to the field `type`. */ + final AstNode getType(int i) { swift_check_expression_type(this, i, result) } + + /** Gets a field or child node of this node. */ + final override AstNode getAFieldOrChild() { + swift_check_expression_def(this, result, _) or + swift_check_expression_target(this, _, result) or + swift_check_expression_type(this, _, result) + } + } + + /** A class representing `class_body` nodes. */ + class ClassBody extends @swift_class_body, AstNode { + /** Gets the name of the primary QL class for this element. */ + final override string getAPrimaryQlClass() { result = "ClassBody" } + + /** Gets the `i`th child of this node. */ + final AstNode getChild(int i) { swift_class_body_child(this, i, result) } + + /** Gets a field or child node of this node. */ + final override AstNode getAFieldOrChild() { swift_class_body_child(this, _, result) } + } + + /** A class representing `class_declaration` nodes. */ + class ClassDeclaration extends @swift_class_declaration, AstNode { + /** Gets the name of the primary QL class for this element. */ + final override string getAPrimaryQlClass() { result = "ClassDeclaration" } + + /** Gets the node corresponding to the field `body`. */ + final AstNode getBody() { swift_class_declaration_def(this, result, _, _) } + + /** Gets the node corresponding to the field `declaration_kind`. */ + final string getDeclarationKind() { + exists(int value | swift_class_declaration_def(this, _, value, _) | + result = "actor" and value = 0 + or + result = "class" and value = 1 + or + result = "enum" and value = 2 + or + result = "extension" and value = 3 + or + result = "struct" and value = 4 + ) + } + + /** Gets the node corresponding to the field `name`. */ + final AstNode getName() { swift_class_declaration_def(this, _, _, result) } + + /** Gets the `i`th child of this node. */ + final AstNode getChild(int i) { swift_class_declaration_child(this, i, result) } + + /** Gets a field or child node of this node. */ + final override AstNode getAFieldOrChild() { + swift_class_declaration_def(this, result, _, _) or + swift_class_declaration_def(this, _, _, result) or + swift_class_declaration_child(this, _, result) + } + } + + /** A class representing `comment` tokens. */ + class Comment extends @swift_token_comment, Token { + /** Gets the name of the primary QL class for this element. */ + final override string getAPrimaryQlClass() { result = "Comment" } + } + + /** A class representing `comparison_expression` nodes. */ + class ComparisonExpression extends @swift_comparison_expression, AstNode { + /** Gets the name of the primary QL class for this element. */ + final override string getAPrimaryQlClass() { result = "ComparisonExpression" } + + /** Gets the node corresponding to the field `lhs`. */ + final AstNode getLhs(int i) { swift_comparison_expression_lhs(this, i, result) } + + /** Gets the node corresponding to the field `op`. */ + final string getOp() { + exists(int value | swift_comparison_expression_def(this, value) | + result = "<" and value = 0 + or + result = "<=" and value = 1 + or + result = ">" and value = 2 + or + result = ">=" and value = 3 + ) + } + + /** Gets the node corresponding to the field `rhs`. */ + final AstNode getRhs(int i) { swift_comparison_expression_rhs(this, i, result) } + + /** Gets a field or child node of this node. */ + final override AstNode getAFieldOrChild() { + swift_comparison_expression_lhs(this, _, result) or + swift_comparison_expression_rhs(this, _, result) + } + } + + /** A class representing `computed_getter` nodes. */ + class ComputedGetter extends @swift_computed_getter, AstNode { + /** Gets the name of the primary QL class for this element. */ + final override string getAPrimaryQlClass() { result = "ComputedGetter" } + + /** Gets the `i`th child of this node. */ + final AstNode getChild(int i) { swift_computed_getter_child(this, i, result) } + + /** Gets a field or child node of this node. */ + final override AstNode getAFieldOrChild() { swift_computed_getter_child(this, _, result) } + } + + /** A class representing `computed_modify` nodes. */ + class ComputedModify extends @swift_computed_modify, AstNode { + /** Gets the name of the primary QL class for this element. */ + final override string getAPrimaryQlClass() { result = "ComputedModify" } + + /** Gets the `i`th child of this node. */ + final AstNode getChild(int i) { swift_computed_modify_child(this, i, result) } + + /** Gets a field or child node of this node. */ + final override AstNode getAFieldOrChild() { swift_computed_modify_child(this, _, result) } + } + + /** A class representing `computed_property` nodes. */ + class ComputedProperty extends @swift_computed_property, AstNode { + /** Gets the name of the primary QL class for this element. */ + final override string getAPrimaryQlClass() { result = "ComputedProperty" } + + /** Gets the `i`th child of this node. */ + final AstNode getChild(int i) { swift_computed_property_child(this, i, result) } + + /** Gets a field or child node of this node. */ + final override AstNode getAFieldOrChild() { swift_computed_property_child(this, _, result) } + } + + /** A class representing `computed_setter` nodes. */ + class ComputedSetter extends @swift_computed_setter, AstNode { + /** Gets the name of the primary QL class for this element. */ + final override string getAPrimaryQlClass() { result = "ComputedSetter" } + + /** Gets the `i`th child of this node. */ + final AstNode getChild(int i) { swift_computed_setter_child(this, i, result) } + + /** Gets a field or child node of this node. */ + final override AstNode getAFieldOrChild() { swift_computed_setter_child(this, _, result) } + } + + /** A class representing `conjunction_expression` nodes. */ + class ConjunctionExpression extends @swift_conjunction_expression, AstNode { + /** Gets the name of the primary QL class for this element. */ + final override string getAPrimaryQlClass() { result = "ConjunctionExpression" } + + /** Gets the node corresponding to the field `lhs`. */ + final AstNode getLhs(int i) { swift_conjunction_expression_lhs(this, i, result) } + + /** Gets the node corresponding to the field `op`. */ + final string getOp() { + exists(int value | swift_conjunction_expression_def(this, value) | + (result = "&&" and value = 0) + ) + } + + /** Gets the node corresponding to the field `rhs`. */ + final AstNode getRhs(int i) { swift_conjunction_expression_rhs(this, i, result) } + + /** Gets a field or child node of this node. */ + final override AstNode getAFieldOrChild() { + swift_conjunction_expression_lhs(this, _, result) or + swift_conjunction_expression_rhs(this, _, result) + } + } + + /** A class representing `constructor_expression` nodes. */ + class ConstructorExpression extends @swift_constructor_expression, AstNode { + /** Gets the name of the primary QL class for this element. */ + final override string getAPrimaryQlClass() { result = "ConstructorExpression" } + + /** Gets the node corresponding to the field `constructed_type`. */ + final AstNode getConstructedType() { swift_constructor_expression_def(this, result, _) } + + /** Gets the child of this node. */ + final ConstructorSuffix getChild() { swift_constructor_expression_def(this, _, result) } + + /** Gets a field or child node of this node. */ + final override AstNode getAFieldOrChild() { + swift_constructor_expression_def(this, result, _) or + swift_constructor_expression_def(this, _, result) + } + } + + /** A class representing `constructor_suffix` nodes. */ + class ConstructorSuffix extends @swift_constructor_suffix, AstNode { + /** Gets the name of the primary QL class for this element. */ + final override string getAPrimaryQlClass() { result = "ConstructorSuffix" } + + /** Gets the node corresponding to the field `name`. */ + final SimpleIdentifier getName(int i) { swift_constructor_suffix_name(this, i, result) } + + /** Gets the `i`th child of this node. */ + final AstNode getChild(int i) { swift_constructor_suffix_child(this, i, result) } + + /** Gets a field or child node of this node. */ + final override AstNode getAFieldOrChild() { + swift_constructor_suffix_name(this, _, result) or + swift_constructor_suffix_child(this, _, result) + } + } + + /** A class representing `control_transfer_statement` nodes. */ + class ControlTransferStatement extends @swift_control_transfer_statement, AstNode { + /** Gets the name of the primary QL class for this element. */ + final override string getAPrimaryQlClass() { result = "ControlTransferStatement" } + + /** Gets the node corresponding to the field `result`. */ + final AstNode getResult(int i) { swift_control_transfer_statement_result(this, i, result) } + + /** Gets the `i`th child of this node. */ + final AstNode getChild(int i) { swift_control_transfer_statement_child(this, i, result) } + + /** Gets a field or child node of this node. */ + final override AstNode getAFieldOrChild() { + swift_control_transfer_statement_result(this, _, result) or + swift_control_transfer_statement_child(this, _, result) + } + } + + /** A class representing `custom_operator` tokens. */ + class CustomOperator extends @swift_token_custom_operator, Token { + /** Gets the name of the primary QL class for this element. */ + final override string getAPrimaryQlClass() { result = "CustomOperator" } + } + + /** A class representing `default_keyword` tokens. */ + class DefaultKeyword extends @swift_token_default_keyword, Token { + /** Gets the name of the primary QL class for this element. */ + final override string getAPrimaryQlClass() { result = "DefaultKeyword" } + } + + /** A class representing `deinit_declaration` nodes. */ + class DeinitDeclaration extends @swift_deinit_declaration, AstNode { + /** Gets the name of the primary QL class for this element. */ + final override string getAPrimaryQlClass() { result = "DeinitDeclaration" } + + /** Gets the node corresponding to the field `body`. */ + final FunctionBody getBody() { swift_deinit_declaration_def(this, result) } + + /** Gets the child of this node. */ + final Modifiers getChild() { swift_deinit_declaration_child(this, result) } + + /** Gets a field or child node of this node. */ + final override AstNode getAFieldOrChild() { + swift_deinit_declaration_def(this, result) or swift_deinit_declaration_child(this, result) + } + } + + /** A class representing `deprecated_operator_declaration_body` nodes. */ + class DeprecatedOperatorDeclarationBody extends @swift_deprecated_operator_declaration_body, + AstNode + { + /** Gets the name of the primary QL class for this element. */ + final override string getAPrimaryQlClass() { result = "DeprecatedOperatorDeclarationBody" } + + /** Gets the `i`th child of this node. */ + final AstNode getChild(int i) { + swift_deprecated_operator_declaration_body_child(this, i, result) + } + + /** Gets a field or child node of this node. */ + final override AstNode getAFieldOrChild() { + swift_deprecated_operator_declaration_body_child(this, _, result) + } + } + + /** A class representing `diagnostic` tokens. */ + class Diagnostic extends @swift_token_diagnostic, Token { + /** Gets the name of the primary QL class for this element. */ + final override string getAPrimaryQlClass() { result = "Diagnostic" } + } + + /** A class representing `dictionary_literal` nodes. */ + class DictionaryLiteral extends @swift_dictionary_literal, AstNode { + /** Gets the name of the primary QL class for this element. */ + final override string getAPrimaryQlClass() { result = "DictionaryLiteral" } + + /** Gets the node corresponding to the field `key`. */ + final AstNode getKey(int i) { swift_dictionary_literal_key(this, i, result) } + + /** Gets the node corresponding to the field `value`. */ + final AstNode getValue(int i) { swift_dictionary_literal_value(this, i, result) } + + /** Gets a field or child node of this node. */ + final override AstNode getAFieldOrChild() { + swift_dictionary_literal_key(this, _, result) or + swift_dictionary_literal_value(this, _, result) + } + } + + /** A class representing `dictionary_type` nodes. */ + class DictionaryType extends @swift_dictionary_type, AstNode { + /** Gets the name of the primary QL class for this element. */ + final override string getAPrimaryQlClass() { result = "DictionaryType" } + + /** Gets the node corresponding to the field `key`. */ + final AstNode getKey(int i) { swift_dictionary_type_key(this, i, result) } + + /** Gets the node corresponding to the field `name`. */ + final AstNode getName(int i) { swift_dictionary_type_name(this, i, result) } + + /** Gets the node corresponding to the field `value`. */ + final AstNode getValue(int i) { swift_dictionary_type_value(this, i, result) } + + /** Gets a field or child node of this node. */ + final override AstNode getAFieldOrChild() { + swift_dictionary_type_key(this, _, result) or + swift_dictionary_type_name(this, _, result) or + swift_dictionary_type_value(this, _, result) + } + } + + /** A class representing `didset_clause` nodes. */ + class DidsetClause extends @swift_didset_clause, AstNode { + /** Gets the name of the primary QL class for this element. */ + final override string getAPrimaryQlClass() { result = "DidsetClause" } + + /** Gets the `i`th child of this node. */ + final AstNode getChild(int i) { swift_didset_clause_child(this, i, result) } + + /** Gets a field or child node of this node. */ + final override AstNode getAFieldOrChild() { swift_didset_clause_child(this, _, result) } + } + + /** A class representing `directive` nodes. */ + class Directive extends @swift_directive, AstNode { + /** Gets the name of the primary QL class for this element. */ + final override string getAPrimaryQlClass() { result = "Directive" } + + /** Gets the `i`th child of this node. */ + final AstNode getChild(int i) { swift_directive_child(this, i, result) } + + /** Gets a field or child node of this node. */ + final override AstNode getAFieldOrChild() { swift_directive_child(this, _, result) } + } + + /** A class representing `directly_assignable_expression` nodes. */ + class DirectlyAssignableExpression extends @swift_directly_assignable_expression, AstNode { + /** Gets the name of the primary QL class for this element. */ + final override string getAPrimaryQlClass() { result = "DirectlyAssignableExpression" } + + /** Gets the child of this node. */ + final AstNode getChild() { swift_directly_assignable_expression_child(this, result) } + + /** Gets a field or child node of this node. */ + final override AstNode getAFieldOrChild() { + swift_directly_assignable_expression_child(this, result) + } + } + + /** A class representing `disjunction_expression` nodes. */ + class DisjunctionExpression extends @swift_disjunction_expression, AstNode { + /** Gets the name of the primary QL class for this element. */ + final override string getAPrimaryQlClass() { result = "DisjunctionExpression" } + + /** Gets the node corresponding to the field `lhs`. */ + final AstNode getLhs(int i) { swift_disjunction_expression_lhs(this, i, result) } + + /** Gets the node corresponding to the field `op`. */ + final string getOp() { + exists(int value | swift_disjunction_expression_def(this, value) | + (result = "||" and value = 0) + ) + } + + /** Gets the node corresponding to the field `rhs`. */ + final AstNode getRhs(int i) { swift_disjunction_expression_rhs(this, i, result) } + + /** Gets a field or child node of this node. */ + final override AstNode getAFieldOrChild() { + swift_disjunction_expression_lhs(this, _, result) or + swift_disjunction_expression_rhs(this, _, result) + } + } + + /** A class representing `do_statement` nodes. */ + class DoStatement extends @swift_do_statement, AstNode { + /** Gets the name of the primary QL class for this element. */ + final override string getAPrimaryQlClass() { result = "DoStatement" } + + /** Gets the `i`th child of this node. */ + final AstNode getChild(int i) { swift_do_statement_child(this, i, result) } + + /** Gets a field or child node of this node. */ + final override AstNode getAFieldOrChild() { swift_do_statement_child(this, _, result) } + } + + /** A class representing `else` tokens. */ + class Else extends @swift_token_else, Token { + /** Gets the name of the primary QL class for this element. */ + final override string getAPrimaryQlClass() { result = "Else" } + } + + /** A class representing `enum_class_body` nodes. */ + class EnumClassBody extends @swift_enum_class_body, AstNode { + /** Gets the name of the primary QL class for this element. */ + final override string getAPrimaryQlClass() { result = "EnumClassBody" } + + /** Gets the `i`th child of this node. */ + final AstNode getChild(int i) { swift_enum_class_body_child(this, i, result) } + + /** Gets a field or child node of this node. */ + final override AstNode getAFieldOrChild() { swift_enum_class_body_child(this, _, result) } + } + + /** A class representing `enum_entry` nodes. */ + class EnumEntry extends @swift_enum_entry, AstNode { + /** Gets the name of the primary QL class for this element. */ + final override string getAPrimaryQlClass() { result = "EnumEntry" } + + /** Gets the node corresponding to the field `data_contents`. */ + final EnumTypeParameters getDataContents(int i) { + swift_enum_entry_data_contents(this, i, result) + } + + /** Gets the node corresponding to the field `name`. */ + final SimpleIdentifier getName(int i) { swift_enum_entry_name(this, i, result) } + + /** Gets the node corresponding to the field `raw_value`. */ + final AstNode getRawValue(int i) { swift_enum_entry_raw_value(this, i, result) } + + /** Gets the child of this node. */ + final Modifiers getChild() { swift_enum_entry_child(this, result) } + + /** Gets a field or child node of this node. */ + final override AstNode getAFieldOrChild() { + swift_enum_entry_data_contents(this, _, result) or + swift_enum_entry_name(this, _, result) or + swift_enum_entry_raw_value(this, _, result) or + swift_enum_entry_child(this, result) + } + } + + /** A class representing `enum_type_parameters` nodes. */ + class EnumTypeParameters extends @swift_enum_type_parameters, AstNode { + /** Gets the name of the primary QL class for this element. */ + final override string getAPrimaryQlClass() { result = "EnumTypeParameters" } + + /** Gets the node corresponding to the field `name`. */ + final AstNode getName(int i) { swift_enum_type_parameters_name(this, i, result) } + + /** Gets the `i`th child of this node. */ + final AstNode getChild(int i) { swift_enum_type_parameters_child(this, i, result) } + + /** Gets a field or child node of this node. */ + final override AstNode getAFieldOrChild() { + swift_enum_type_parameters_name(this, _, result) or + swift_enum_type_parameters_child(this, _, result) + } + } + + /** A class representing `equality_constraint` nodes. */ + class EqualityConstraint extends @swift_equality_constraint, AstNode { + /** Gets the name of the primary QL class for this element. */ + final override string getAPrimaryQlClass() { result = "EqualityConstraint" } + + /** Gets the node corresponding to the field `constrained_type`. */ + final AstNode getConstrainedType(int i) { + swift_equality_constraint_constrained_type(this, i, result) + } + + /** Gets the node corresponding to the field `must_equal`. */ + final AstNode getMustEqual(int i) { swift_equality_constraint_must_equal(this, i, result) } + + /** Gets the node corresponding to the field `name`. */ + final AstNode getName() { swift_equality_constraint_def(this, result) } + + /** Gets the `i`th child of this node. */ + final Attribute getChild(int i) { swift_equality_constraint_child(this, i, result) } + + /** Gets a field or child node of this node. */ + final override AstNode getAFieldOrChild() { + swift_equality_constraint_constrained_type(this, _, result) or + swift_equality_constraint_must_equal(this, _, result) or + swift_equality_constraint_def(this, result) or + swift_equality_constraint_child(this, _, result) + } + } + + /** A class representing `equality_expression` nodes. */ + class EqualityExpression extends @swift_equality_expression, AstNode { + /** Gets the name of the primary QL class for this element. */ + final override string getAPrimaryQlClass() { result = "EqualityExpression" } + + /** Gets the node corresponding to the field `lhs`. */ + final AstNode getLhs(int i) { swift_equality_expression_lhs(this, i, result) } + + /** Gets the node corresponding to the field `op`. */ + final string getOp() { + exists(int value | swift_equality_expression_def(this, value) | + result = "!=" and value = 0 + or + result = "!==" and value = 1 + or + result = "==" and value = 2 + or + result = "===" and value = 3 + ) + } + + /** Gets the node corresponding to the field `rhs`. */ + final AstNode getRhs(int i) { swift_equality_expression_rhs(this, i, result) } + + /** Gets a field or child node of this node. */ + final override AstNode getAFieldOrChild() { + swift_equality_expression_lhs(this, _, result) or + swift_equality_expression_rhs(this, _, result) + } + } + + /** A class representing `existential_type` nodes. */ + class ExistentialType extends @swift_existential_type, AstNode { + /** Gets the name of the primary QL class for this element. */ + final override string getAPrimaryQlClass() { result = "ExistentialType" } + + /** Gets the child of this node. */ + final AstNode getChild() { swift_existential_type_def(this, result) } + + /** Gets a field or child node of this node. */ + final override AstNode getAFieldOrChild() { swift_existential_type_def(this, result) } + } + + /** A class representing `external_macro_definition` nodes. */ + class ExternalMacroDefinition extends @swift_external_macro_definition, AstNode { + /** Gets the name of the primary QL class for this element. */ + final override string getAPrimaryQlClass() { result = "ExternalMacroDefinition" } + + /** Gets the child of this node. */ + final ValueArguments getChild() { swift_external_macro_definition_def(this, result) } + + /** Gets a field or child node of this node. */ + final override AstNode getAFieldOrChild() { swift_external_macro_definition_def(this, result) } + } + + /** A class representing `for_statement` nodes. */ + class ForStatement extends @swift_for_statement, AstNode { + /** Gets the name of the primary QL class for this element. */ + final override string getAPrimaryQlClass() { result = "ForStatement" } + + /** Gets the node corresponding to the field `collection`. */ + final AstNode getCollection(int i) { swift_for_statement_collection(this, i, result) } + + /** Gets the node corresponding to the field `item`. */ + final Pattern getItem() { swift_for_statement_def(this, result) } + + /** Gets the `i`th child of this node. */ + final AstNode getChild(int i) { swift_for_statement_child(this, i, result) } + + /** Gets a field or child node of this node. */ + final override AstNode getAFieldOrChild() { + swift_for_statement_collection(this, _, result) or + swift_for_statement_def(this, result) or + swift_for_statement_child(this, _, result) + } + } + + /** A class representing `fully_open_range` tokens. */ + class FullyOpenRange extends @swift_token_fully_open_range, Token { + /** Gets the name of the primary QL class for this element. */ + final override string getAPrimaryQlClass() { result = "FullyOpenRange" } + } + + /** A class representing `function_body` nodes. */ + class FunctionBody extends @swift_function_body, AstNode { + /** Gets the name of the primary QL class for this element. */ + final override string getAPrimaryQlClass() { result = "FunctionBody" } + + /** Gets the child of this node. */ + final Statements getChild() { swift_function_body_child(this, result) } + + /** Gets a field or child node of this node. */ + final override AstNode getAFieldOrChild() { swift_function_body_child(this, result) } + } + + /** A class representing `function_declaration` nodes. */ + class FunctionDeclaration extends @swift_function_declaration, AstNode { + /** Gets the name of the primary QL class for this element. */ + final override string getAPrimaryQlClass() { result = "FunctionDeclaration" } + + /** Gets the node corresponding to the field `body`. */ + final FunctionBody getBody() { swift_function_declaration_def(this, result) } + + /** Gets the node corresponding to the field `default_value`. */ + final AstNode getDefaultValue(int i) { + swift_function_declaration_default_value(this, i, result) + } + + /** Gets the node corresponding to the field `name`. */ + final AstNode getName(int i) { swift_function_declaration_name(this, i, result) } + + /** Gets the node corresponding to the field `return_type`. */ + final AstNode getReturnType(int i) { swift_function_declaration_return_type(this, i, result) } + + /** Gets the `i`th child of this node. */ + final AstNode getChild(int i) { swift_function_declaration_child(this, i, result) } + + /** Gets a field or child node of this node. */ + final override AstNode getAFieldOrChild() { + swift_function_declaration_def(this, result) or + swift_function_declaration_default_value(this, _, result) or + swift_function_declaration_name(this, _, result) or + swift_function_declaration_return_type(this, _, result) or + swift_function_declaration_child(this, _, result) + } + } + + /** A class representing `function_modifier` tokens. */ + class FunctionModifier extends @swift_token_function_modifier, Token { + /** Gets the name of the primary QL class for this element. */ + final override string getAPrimaryQlClass() { result = "FunctionModifier" } + } + + /** A class representing `function_type` nodes. */ + class FunctionType extends @swift_function_type, AstNode { + /** Gets the name of the primary QL class for this element. */ + final override string getAPrimaryQlClass() { result = "FunctionType" } + + /** Gets the node corresponding to the field `name`. */ + final AstNode getName() { swift_function_type_def(this, result, _) } + + /** Gets the node corresponding to the field `params`. */ + final AstNode getParams() { swift_function_type_def(this, _, result) } + + /** Gets the node corresponding to the field `return_type`. */ + final AstNode getReturnType(int i) { swift_function_type_return_type(this, i, result) } + + /** Gets the child of this node. */ + final AstNode getChild() { swift_function_type_child(this, result) } + + /** Gets a field or child node of this node. */ + final override AstNode getAFieldOrChild() { + swift_function_type_def(this, result, _) or + swift_function_type_def(this, _, result) or + swift_function_type_return_type(this, _, result) or + swift_function_type_child(this, result) + } + } + + /** A class representing `getter_specifier` nodes. */ + class GetterSpecifier extends @swift_getter_specifier, AstNode { + /** Gets the name of the primary QL class for this element. */ + final override string getAPrimaryQlClass() { result = "GetterSpecifier" } + + /** Gets the `i`th child of this node. */ + final AstNode getChild(int i) { swift_getter_specifier_child(this, i, result) } + + /** Gets a field or child node of this node. */ + final override AstNode getAFieldOrChild() { swift_getter_specifier_child(this, _, result) } + } + + /** A class representing `guard_statement` nodes. */ + class GuardStatement extends @swift_guard_statement, AstNode { + /** Gets the name of the primary QL class for this element. */ + final override string getAPrimaryQlClass() { result = "GuardStatement" } + + /** Gets the node corresponding to the field `bound_identifier`. */ + final SimpleIdentifier getBoundIdentifier(int i) { + swift_guard_statement_bound_identifier(this, i, result) + } + + /** Gets the node corresponding to the field `condition`. */ + final AstNode getCondition(int i) { swift_guard_statement_condition(this, i, result) } + + /** Gets the node corresponding to the field `name`. */ + final AstNode getName(int i) { swift_guard_statement_name(this, i, result) } + + /** Gets the `i`th child of this node. */ + final AstNode getChild(int i) { swift_guard_statement_child(this, i, result) } + + /** Gets a field or child node of this node. */ + final override AstNode getAFieldOrChild() { + swift_guard_statement_bound_identifier(this, _, result) or + swift_guard_statement_condition(this, _, result) or + swift_guard_statement_name(this, _, result) or + swift_guard_statement_child(this, _, result) + } + } + + /** A class representing `hex_literal` tokens. */ + class HexLiteral extends @swift_token_hex_literal, Token { + /** Gets the name of the primary QL class for this element. */ + final override string getAPrimaryQlClass() { result = "HexLiteral" } + } + + /** A class representing `identifier` nodes. */ + class Identifier extends @swift_identifier, AstNode { + /** Gets the name of the primary QL class for this element. */ + final override string getAPrimaryQlClass() { result = "Identifier" } + + /** Gets the `i`th child of this node. */ + final SimpleIdentifier getChild(int i) { swift_identifier_child(this, i, result) } + + /** Gets a field or child node of this node. */ + final override AstNode getAFieldOrChild() { swift_identifier_child(this, _, result) } + } + + /** A class representing `if_statement` nodes. */ + class IfStatement extends @swift_if_statement, AstNode { + /** Gets the name of the primary QL class for this element. */ + final override string getAPrimaryQlClass() { result = "IfStatement" } + + /** Gets the node corresponding to the field `bound_identifier`. */ + final SimpleIdentifier getBoundIdentifier(int i) { + swift_if_statement_bound_identifier(this, i, result) + } + + /** Gets the node corresponding to the field `condition`. */ + final AstNode getCondition(int i) { swift_if_statement_condition(this, i, result) } + + /** Gets the node corresponding to the field `name`. */ + final AstNode getName(int i) { swift_if_statement_name(this, i, result) } + + /** Gets the `i`th child of this node. */ + final AstNode getChild(int i) { swift_if_statement_child(this, i, result) } + + /** Gets a field or child node of this node. */ + final override AstNode getAFieldOrChild() { + swift_if_statement_bound_identifier(this, _, result) or + swift_if_statement_condition(this, _, result) or + swift_if_statement_name(this, _, result) or + swift_if_statement_child(this, _, result) + } + } + + /** A class representing `import_declaration` nodes. */ + class ImportDeclaration extends @swift_import_declaration, AstNode { + /** Gets the name of the primary QL class for this element. */ + final override string getAPrimaryQlClass() { result = "ImportDeclaration" } + + /** Gets the `i`th child of this node. */ + final AstNode getChild(int i) { swift_import_declaration_child(this, i, result) } + + /** Gets a field or child node of this node. */ + final override AstNode getAFieldOrChild() { swift_import_declaration_child(this, _, result) } + } + + /** A class representing `infix_expression` nodes. */ + class InfixExpression extends @swift_infix_expression, AstNode { + /** Gets the name of the primary QL class for this element. */ + final override string getAPrimaryQlClass() { result = "InfixExpression" } + + /** Gets the node corresponding to the field `lhs`. */ + final AstNode getLhs(int i) { swift_infix_expression_lhs(this, i, result) } + + /** Gets the node corresponding to the field `op`. */ + final CustomOperator getOp() { swift_infix_expression_def(this, result) } + + /** Gets the node corresponding to the field `rhs`. */ + final AstNode getRhs(int i) { swift_infix_expression_rhs(this, i, result) } + + /** Gets a field or child node of this node. */ + final override AstNode getAFieldOrChild() { + swift_infix_expression_lhs(this, _, result) or + swift_infix_expression_def(this, result) or + swift_infix_expression_rhs(this, _, result) + } + } + + /** A class representing `inheritance_constraint` nodes. */ + class InheritanceConstraint extends @swift_inheritance_constraint, AstNode { + /** Gets the name of the primary QL class for this element. */ + final override string getAPrimaryQlClass() { result = "InheritanceConstraint" } + + /** Gets the node corresponding to the field `constrained_type`. */ + final AstNode getConstrainedType(int i) { + swift_inheritance_constraint_constrained_type(this, i, result) + } + + /** Gets the node corresponding to the field `inherits_from`. */ + final AstNode getInheritsFrom(int i) { + swift_inheritance_constraint_inherits_from(this, i, result) + } + + /** Gets the node corresponding to the field `name`. */ + final AstNode getName() { swift_inheritance_constraint_def(this, result) } + + /** Gets the `i`th child of this node. */ + final Attribute getChild(int i) { swift_inheritance_constraint_child(this, i, result) } + + /** Gets a field or child node of this node. */ + final override AstNode getAFieldOrChild() { + swift_inheritance_constraint_constrained_type(this, _, result) or + swift_inheritance_constraint_inherits_from(this, _, result) or + swift_inheritance_constraint_def(this, result) or + swift_inheritance_constraint_child(this, _, result) + } + } + + /** A class representing `inheritance_modifier` tokens. */ + class InheritanceModifier extends @swift_token_inheritance_modifier, Token { + /** Gets the name of the primary QL class for this element. */ + final override string getAPrimaryQlClass() { result = "InheritanceModifier" } + } + + /** A class representing `inheritance_specifier` nodes. */ + class InheritanceSpecifier extends @swift_inheritance_specifier, AstNode { + /** Gets the name of the primary QL class for this element. */ + final override string getAPrimaryQlClass() { result = "InheritanceSpecifier" } + + /** Gets the node corresponding to the field `inherits_from`. */ + final AstNode getInheritsFrom() { swift_inheritance_specifier_def(this, result) } + + /** Gets a field or child node of this node. */ + final override AstNode getAFieldOrChild() { swift_inheritance_specifier_def(this, result) } + } + + /** A class representing `init_declaration` nodes. */ + class InitDeclaration extends @swift_init_declaration, AstNode { + /** Gets the name of the primary QL class for this element. */ + final override string getAPrimaryQlClass() { result = "InitDeclaration" } + + /** Gets the node corresponding to the field `body`. */ + final FunctionBody getBody() { swift_init_declaration_body(this, result) } + + /** Gets the node corresponding to the field `default_value`. */ + final AstNode getDefaultValue(int i) { swift_init_declaration_default_value(this, i, result) } + + /** Gets the node corresponding to the field `name`. */ + final string getName() { + exists(int value | swift_init_declaration_def(this, value) | (result = "init" and value = 0)) + } + + /** Gets the `i`th child of this node. */ + final AstNode getChild(int i) { swift_init_declaration_child(this, i, result) } + + /** Gets a field or child node of this node. */ + final override AstNode getAFieldOrChild() { + swift_init_declaration_body(this, result) or + swift_init_declaration_default_value(this, _, result) or + swift_init_declaration_child(this, _, result) + } + } + + /** A class representing `integer_literal` tokens. */ + class IntegerLiteral extends @swift_token_integer_literal, Token { + /** Gets the name of the primary QL class for this element. */ + final override string getAPrimaryQlClass() { result = "IntegerLiteral" } + } + + /** A class representing `interpolated_expression` nodes. */ + class InterpolatedExpression extends @swift_interpolated_expression, AstNode { + /** Gets the name of the primary QL class for this element. */ + final override string getAPrimaryQlClass() { result = "InterpolatedExpression" } + + /** Gets the node corresponding to the field `name`. */ + final ValueArgumentLabel getName() { swift_interpolated_expression_name(this, result) } + + /** Gets the node corresponding to the field `reference_specifier`. */ + final ValueArgumentLabel getReferenceSpecifier(int i) { + swift_interpolated_expression_reference_specifier(this, i, result) + } + + /** Gets the node corresponding to the field `value`. */ + final AstNode getValue(int i) { swift_interpolated_expression_value(this, i, result) } + + /** Gets the child of this node. */ + final TypeModifiers getChild() { swift_interpolated_expression_child(this, result) } + + /** Gets a field or child node of this node. */ + final override AstNode getAFieldOrChild() { + swift_interpolated_expression_name(this, result) or + swift_interpolated_expression_reference_specifier(this, _, result) or + swift_interpolated_expression_value(this, _, result) or + swift_interpolated_expression_child(this, result) + } + } + + /** A class representing `key_path_expression` nodes. */ + class KeyPathExpression extends @swift_key_path_expression, AstNode { + /** Gets the name of the primary QL class for this element. */ + final override string getAPrimaryQlClass() { result = "KeyPathExpression" } + + /** Gets the `i`th child of this node. */ + final AstNode getChild(int i) { swift_key_path_expression_child(this, i, result) } + + /** Gets a field or child node of this node. */ + final override AstNode getAFieldOrChild() { swift_key_path_expression_child(this, _, result) } + } + + /** A class representing `key_path_string_expression` nodes. */ + class KeyPathStringExpression extends @swift_key_path_string_expression, AstNode { + /** Gets the name of the primary QL class for this element. */ + final override string getAPrimaryQlClass() { result = "KeyPathStringExpression" } + + /** Gets the child of this node. */ + final AstNode getChild() { swift_key_path_string_expression_child(this, result) } + + /** Gets a field or child node of this node. */ + final override AstNode getAFieldOrChild() { + swift_key_path_string_expression_child(this, result) + } + } + + /** A class representing `lambda_function_type` nodes. */ + class LambdaFunctionType extends @swift_lambda_function_type, AstNode { + /** Gets the name of the primary QL class for this element. */ + final override string getAPrimaryQlClass() { result = "LambdaFunctionType" } + + /** Gets the node corresponding to the field `name`. */ + final AstNode getName() { swift_lambda_function_type_name(this, result) } + + /** Gets the node corresponding to the field `return_type`. */ + final AstNode getReturnType(int i) { swift_lambda_function_type_return_type(this, i, result) } + + /** Gets the `i`th child of this node. */ + final AstNode getChild(int i) { swift_lambda_function_type_child(this, i, result) } + + /** Gets a field or child node of this node. */ + final override AstNode getAFieldOrChild() { + swift_lambda_function_type_name(this, result) or + swift_lambda_function_type_return_type(this, _, result) or + swift_lambda_function_type_child(this, _, result) + } + } + + /** A class representing `lambda_function_type_parameters` nodes. */ + class LambdaFunctionTypeParameters extends @swift_lambda_function_type_parameters, AstNode { + /** Gets the name of the primary QL class for this element. */ + final override string getAPrimaryQlClass() { result = "LambdaFunctionTypeParameters" } + + /** Gets the `i`th child of this node. */ + final LambdaParameter getChild(int i) { + swift_lambda_function_type_parameters_child(this, i, result) + } + + /** Gets a field or child node of this node. */ + final override AstNode getAFieldOrChild() { + swift_lambda_function_type_parameters_child(this, _, result) + } + } + + /** A class representing `lambda_literal` nodes. */ + class LambdaLiteral extends @swift_lambda_literal, AstNode { + /** Gets the name of the primary QL class for this element. */ + final override string getAPrimaryQlClass() { result = "LambdaLiteral" } + + /** Gets the node corresponding to the field `captures`. */ + final CaptureList getCaptures() { swift_lambda_literal_captures(this, result) } + + /** Gets the node corresponding to the field `type`. */ + final LambdaFunctionType getType() { swift_lambda_literal_type(this, result) } + + /** Gets the `i`th child of this node. */ + final AstNode getChild(int i) { swift_lambda_literal_child(this, i, result) } + + /** Gets a field or child node of this node. */ + final override AstNode getAFieldOrChild() { + swift_lambda_literal_captures(this, result) or + swift_lambda_literal_type(this, result) or + swift_lambda_literal_child(this, _, result) + } + } + + /** A class representing `lambda_parameter` nodes. */ + class LambdaParameter extends @swift_lambda_parameter, AstNode { + /** Gets the name of the primary QL class for this element. */ + final override string getAPrimaryQlClass() { result = "LambdaParameter" } + + /** Gets the node corresponding to the field `external_name`. */ + final SimpleIdentifier getExternalName() { swift_lambda_parameter_external_name(this, result) } + + /** Gets the node corresponding to the field `name`. */ + final AstNode getName(int i) { swift_lambda_parameter_name(this, i, result) } + + /** Gets the node corresponding to the field `type`. */ + final AstNode getType(int i) { swift_lambda_parameter_type(this, i, result) } + + /** Gets the child of this node. */ + final AstNode getChild() { swift_lambda_parameter_child(this, result) } + + /** Gets a field or child node of this node. */ + final override AstNode getAFieldOrChild() { + swift_lambda_parameter_external_name(this, result) or + swift_lambda_parameter_name(this, _, result) or + swift_lambda_parameter_type(this, _, result) or + swift_lambda_parameter_child(this, result) + } + } + + /** A class representing `line_str_text` tokens. */ + class LineStrText extends @swift_token_line_str_text, Token { + /** Gets the name of the primary QL class for this element. */ + final override string getAPrimaryQlClass() { result = "LineStrText" } + } + + /** A class representing `line_string_literal` nodes. */ + class LineStringLiteral extends @swift_line_string_literal, AstNode { + /** Gets the name of the primary QL class for this element. */ + final override string getAPrimaryQlClass() { result = "LineStringLiteral" } + + /** Gets the node corresponding to the field `interpolation`. */ + final InterpolatedExpression getInterpolation(int i) { + swift_line_string_literal_interpolation(this, i, result) + } + + /** Gets the node corresponding to the field `text`. */ + final AstNode getText(int i) { swift_line_string_literal_text(this, i, result) } + + /** Gets a field or child node of this node. */ + final override AstNode getAFieldOrChild() { + swift_line_string_literal_interpolation(this, _, result) or + swift_line_string_literal_text(this, _, result) + } + } + + /** A class representing `macro_declaration` nodes. */ + class MacroDeclaration extends @swift_macro_declaration, AstNode { + /** Gets the name of the primary QL class for this element. */ + final override string getAPrimaryQlClass() { result = "MacroDeclaration" } + + /** Gets the node corresponding to the field `default_value`. */ + final AstNode getDefaultValue(int i) { swift_macro_declaration_default_value(this, i, result) } + + /** Gets the node corresponding to the field `definition`. */ + final MacroDefinition getDefinition() { swift_macro_declaration_definition(this, result) } + + /** Gets the `i`th child of this node. */ + final AstNode getChild(int i) { swift_macro_declaration_child(this, i, result) } + + /** Gets a field or child node of this node. */ + final override AstNode getAFieldOrChild() { + swift_macro_declaration_default_value(this, _, result) or + swift_macro_declaration_definition(this, result) or + swift_macro_declaration_child(this, _, result) + } + } + + /** A class representing `macro_definition` nodes. */ + class MacroDefinition extends @swift_macro_definition, AstNode { + /** Gets the name of the primary QL class for this element. */ + final override string getAPrimaryQlClass() { result = "MacroDefinition" } + + /** Gets the node corresponding to the field `body`. */ + final AstNode getBody(int i) { swift_macro_definition_body(this, i, result) } + + /** Gets a field or child node of this node. */ + final override AstNode getAFieldOrChild() { swift_macro_definition_body(this, _, result) } + } + + /** A class representing `macro_invocation` nodes. */ + class MacroInvocation extends @swift_macro_invocation, AstNode { + /** Gets the name of the primary QL class for this element. */ + final override string getAPrimaryQlClass() { result = "MacroInvocation" } + + /** Gets the `i`th child of this node. */ + final AstNode getChild(int i) { swift_macro_invocation_child(this, i, result) } + + /** Gets a field or child node of this node. */ + final override AstNode getAFieldOrChild() { swift_macro_invocation_child(this, _, result) } + } + + /** A class representing `member_modifier` tokens. */ + class MemberModifier extends @swift_token_member_modifier, Token { + /** Gets the name of the primary QL class for this element. */ + final override string getAPrimaryQlClass() { result = "MemberModifier" } + } + + /** A class representing `metatype` nodes. */ + class Metatype extends @swift_metatype, AstNode { + /** Gets the name of the primary QL class for this element. */ + final override string getAPrimaryQlClass() { result = "Metatype" } + + /** Gets the child of this node. */ + final AstNode getChild() { swift_metatype_def(this, result) } + + /** Gets a field or child node of this node. */ + final override AstNode getAFieldOrChild() { swift_metatype_def(this, result) } + } + + /** A class representing `modifiers` nodes. */ + class Modifiers extends @swift_modifiers, AstNode { + /** Gets the name of the primary QL class for this element. */ + final override string getAPrimaryQlClass() { result = "Modifiers" } + + /** Gets the `i`th child of this node. */ + final AstNode getChild(int i) { swift_modifiers_child(this, i, result) } + + /** Gets a field or child node of this node. */ + final override AstNode getAFieldOrChild() { swift_modifiers_child(this, _, result) } + } + + /** A class representing `modify_specifier` nodes. */ + class ModifySpecifier extends @swift_modify_specifier, AstNode { + /** Gets the name of the primary QL class for this element. */ + final override string getAPrimaryQlClass() { result = "ModifySpecifier" } + + /** Gets the child of this node. */ + final MutationModifier getChild() { swift_modify_specifier_child(this, result) } + + /** Gets a field or child node of this node. */ + final override AstNode getAFieldOrChild() { swift_modify_specifier_child(this, result) } + } + + /** A class representing `multi_line_str_text` tokens. */ + class MultiLineStrText extends @swift_token_multi_line_str_text, Token { + /** Gets the name of the primary QL class for this element. */ + final override string getAPrimaryQlClass() { result = "MultiLineStrText" } + } + + /** A class representing `multi_line_string_literal` nodes. */ + class MultiLineStringLiteral extends @swift_multi_line_string_literal, AstNode { + /** Gets the name of the primary QL class for this element. */ + final override string getAPrimaryQlClass() { result = "MultiLineStringLiteral" } + + /** Gets the node corresponding to the field `interpolation`. */ + final InterpolatedExpression getInterpolation(int i) { + swift_multi_line_string_literal_interpolation(this, i, result) + } + + /** Gets the node corresponding to the field `text`. */ + final AstNode getText(int i) { swift_multi_line_string_literal_text(this, i, result) } + + /** Gets a field or child node of this node. */ + final override AstNode getAFieldOrChild() { + swift_multi_line_string_literal_interpolation(this, _, result) or + swift_multi_line_string_literal_text(this, _, result) + } + } + + /** A class representing `multiline_comment` tokens. */ + class MultilineComment extends @swift_token_multiline_comment, Token { + /** Gets the name of the primary QL class for this element. */ + final override string getAPrimaryQlClass() { result = "MultilineComment" } + } + + /** A class representing `multiplicative_expression` nodes. */ + class MultiplicativeExpression extends @swift_multiplicative_expression, AstNode { + /** Gets the name of the primary QL class for this element. */ + final override string getAPrimaryQlClass() { result = "MultiplicativeExpression" } + + /** Gets the node corresponding to the field `lhs`. */ + final AstNode getLhs(int i) { swift_multiplicative_expression_lhs(this, i, result) } + + /** Gets the node corresponding to the field `op`. */ + final string getOp() { + exists(int value | swift_multiplicative_expression_def(this, value) | + result = "%" and value = 0 + or + result = "*" and value = 1 + or + result = "/" and value = 2 + ) + } + + /** Gets the node corresponding to the field `rhs`. */ + final AstNode getRhs(int i) { swift_multiplicative_expression_rhs(this, i, result) } + + /** Gets a field or child node of this node. */ + final override AstNode getAFieldOrChild() { + swift_multiplicative_expression_lhs(this, _, result) or + swift_multiplicative_expression_rhs(this, _, result) + } + } + + /** A class representing `mutation_modifier` tokens. */ + class MutationModifier extends @swift_token_mutation_modifier, Token { + /** Gets the name of the primary QL class for this element. */ + final override string getAPrimaryQlClass() { result = "MutationModifier" } + } + + /** A class representing `navigation_expression` nodes. */ + class NavigationExpression extends @swift_navigation_expression, AstNode { + /** Gets the name of the primary QL class for this element. */ + final override string getAPrimaryQlClass() { result = "NavigationExpression" } + + /** Gets the node corresponding to the field `element`. */ + final AstNode getElement() { swift_navigation_expression_element(this, result) } + + /** Gets the node corresponding to the field `suffix`. */ + final NavigationSuffix getSuffix() { swift_navigation_expression_def(this, result) } + + /** Gets the node corresponding to the field `target`. */ + final AstNode getTarget(int i) { swift_navigation_expression_target(this, i, result) } + + /** Gets a field or child node of this node. */ + final override AstNode getAFieldOrChild() { + swift_navigation_expression_element(this, result) or + swift_navigation_expression_def(this, result) or + swift_navigation_expression_target(this, _, result) + } + } + + /** A class representing `navigation_suffix` nodes. */ + class NavigationSuffix extends @swift_navigation_suffix, AstNode { + /** Gets the name of the primary QL class for this element. */ + final override string getAPrimaryQlClass() { result = "NavigationSuffix" } + + /** Gets the node corresponding to the field `suffix`. */ + final AstNode getSuffix() { swift_navigation_suffix_def(this, result) } + + /** Gets a field or child node of this node. */ + final override AstNode getAFieldOrChild() { swift_navigation_suffix_def(this, result) } + } + + /** A class representing `nil_coalescing_expression` nodes. */ + class NilCoalescingExpression extends @swift_nil_coalescing_expression, AstNode { + /** Gets the name of the primary QL class for this element. */ + final override string getAPrimaryQlClass() { result = "NilCoalescingExpression" } + + /** Gets the node corresponding to the field `if_nil`. */ + final AstNode getIfNil(int i) { swift_nil_coalescing_expression_if_nil(this, i, result) } + + /** Gets the node corresponding to the field `value`. */ + final AstNode getValue(int i) { swift_nil_coalescing_expression_value(this, i, result) } + + /** Gets a field or child node of this node. */ + final override AstNode getAFieldOrChild() { + swift_nil_coalescing_expression_if_nil(this, _, result) or + swift_nil_coalescing_expression_value(this, _, result) + } + } + + /** A class representing `oct_literal` tokens. */ + class OctLiteral extends @swift_token_oct_literal, Token { + /** Gets the name of the primary QL class for this element. */ + final override string getAPrimaryQlClass() { result = "OctLiteral" } + } + + /** A class representing `opaque_type` nodes. */ + class OpaqueType extends @swift_opaque_type, AstNode { + /** Gets the name of the primary QL class for this element. */ + final override string getAPrimaryQlClass() { result = "OpaqueType" } + + /** Gets the child of this node. */ + final AstNode getChild() { swift_opaque_type_def(this, result) } + + /** Gets a field or child node of this node. */ + final override AstNode getAFieldOrChild() { swift_opaque_type_def(this, result) } + } + + /** A class representing `open_end_range_expression` nodes. */ + class OpenEndRangeExpression extends @swift_open_end_range_expression, AstNode { + /** Gets the name of the primary QL class for this element. */ + final override string getAPrimaryQlClass() { result = "OpenEndRangeExpression" } + + /** Gets the node corresponding to the field `start`. */ + final AstNode getStart(int i) { swift_open_end_range_expression_start(this, i, result) } + + /** Gets a field or child node of this node. */ + final override AstNode getAFieldOrChild() { + swift_open_end_range_expression_start(this, _, result) + } + } + + /** A class representing `open_start_range_expression` nodes. */ + class OpenStartRangeExpression extends @swift_open_start_range_expression, AstNode { + /** Gets the name of the primary QL class for this element. */ + final override string getAPrimaryQlClass() { result = "OpenStartRangeExpression" } + + /** Gets the node corresponding to the field `end`. */ + final AstNode getEnd(int i) { swift_open_start_range_expression_end(this, i, result) } + + /** Gets a field or child node of this node. */ + final override AstNode getAFieldOrChild() { + swift_open_start_range_expression_end(this, _, result) + } + } + + /** A class representing `operator_declaration` nodes. */ + class OperatorDeclaration extends @swift_operator_declaration, AstNode { + /** Gets the name of the primary QL class for this element. */ + final override string getAPrimaryQlClass() { result = "OperatorDeclaration" } + + /** Gets the `i`th child of this node. */ + final AstNode getChild(int i) { swift_operator_declaration_child(this, i, result) } + + /** Gets a field or child node of this node. */ + final override AstNode getAFieldOrChild() { swift_operator_declaration_child(this, _, result) } + } + + /** A class representing `optional_type` nodes. */ + class OptionalType extends @swift_optional_type, AstNode { + /** Gets the name of the primary QL class for this element. */ + final override string getAPrimaryQlClass() { result = "OptionalType" } + + /** Gets the node corresponding to the field `wrapped`. */ + final AstNode getWrapped() { swift_optional_type_def(this, result) } + + /** Gets a field or child node of this node. */ + final override AstNode getAFieldOrChild() { swift_optional_type_def(this, result) } + } + + /** A class representing `ownership_modifier` tokens. */ + class OwnershipModifier extends @swift_token_ownership_modifier, Token { + /** Gets the name of the primary QL class for this element. */ + final override string getAPrimaryQlClass() { result = "OwnershipModifier" } + } + + /** A class representing `parameter` nodes. */ + class Parameter extends @swift_parameter, AstNode { + /** Gets the name of the primary QL class for this element. */ + final override string getAPrimaryQlClass() { result = "Parameter" } + + /** Gets the node corresponding to the field `external_name`. */ + final SimpleIdentifier getExternalName() { swift_parameter_external_name(this, result) } + + /** Gets the node corresponding to the field `name`. */ + final AstNode getName(int i) { swift_parameter_name(this, i, result) } + + /** Gets the node corresponding to the field `type`. */ + final AstNode getType(int i) { swift_parameter_type(this, i, result) } + + /** Gets the child of this node. */ + final ParameterModifiers getChild() { swift_parameter_child(this, result) } + + /** Gets a field or child node of this node. */ + final override AstNode getAFieldOrChild() { + swift_parameter_external_name(this, result) or + swift_parameter_name(this, _, result) or + swift_parameter_type(this, _, result) or + swift_parameter_child(this, result) + } + } + + /** A class representing `parameter_modifier` tokens. */ + class ParameterModifier extends @swift_token_parameter_modifier, Token { + /** Gets the name of the primary QL class for this element. */ + final override string getAPrimaryQlClass() { result = "ParameterModifier" } + } + + /** A class representing `parameter_modifiers` nodes. */ + class ParameterModifiers extends @swift_parameter_modifiers, AstNode { + /** Gets the name of the primary QL class for this element. */ + final override string getAPrimaryQlClass() { result = "ParameterModifiers" } + + /** Gets the `i`th child of this node. */ + final ParameterModifier getChild(int i) { swift_parameter_modifiers_child(this, i, result) } + + /** Gets a field or child node of this node. */ + final override AstNode getAFieldOrChild() { swift_parameter_modifiers_child(this, _, result) } + } + + /** A class representing `pattern` nodes. */ + class Pattern extends @swift_pattern, AstNode { + /** Gets the name of the primary QL class for this element. */ + final override string getAPrimaryQlClass() { result = "Pattern" } + + /** Gets the node corresponding to the field `bound_identifier`. */ + final SimpleIdentifier getBoundIdentifier() { swift_pattern_bound_identifier(this, result) } + + /** Gets the node corresponding to the field `name`. */ + final AstNode getName() { swift_pattern_name(this, result) } + + /** Gets the `i`th child of this node. */ + final AstNode getChild(int i) { swift_pattern_child(this, i, result) } + + /** Gets a field or child node of this node. */ + final override AstNode getAFieldOrChild() { + swift_pattern_bound_identifier(this, result) or + swift_pattern_name(this, result) or + swift_pattern_child(this, _, result) + } + } + + /** A class representing `playground_literal` nodes. */ + class PlaygroundLiteral extends @swift_playground_literal, AstNode { + /** Gets the name of the primary QL class for this element. */ + final override string getAPrimaryQlClass() { result = "PlaygroundLiteral" } + + /** Gets the `i`th child of this node. */ + final AstNode getChild(int i) { swift_playground_literal_child(this, i, result) } + + /** Gets a field or child node of this node. */ + final override AstNode getAFieldOrChild() { swift_playground_literal_child(this, _, result) } + } + + /** A class representing `postfix_expression` nodes. */ + class PostfixExpression extends @swift_postfix_expression, AstNode { + /** Gets the name of the primary QL class for this element. */ + final override string getAPrimaryQlClass() { result = "PostfixExpression" } + + /** Gets the node corresponding to the field `operation`. */ + final AstNode getOperation() { swift_postfix_expression_def(this, result) } + + /** Gets the node corresponding to the field `target`. */ + final AstNode getTarget(int i) { swift_postfix_expression_target(this, i, result) } + + /** Gets a field or child node of this node. */ + final override AstNode getAFieldOrChild() { + swift_postfix_expression_def(this, result) or swift_postfix_expression_target(this, _, result) + } + } + + /** A class representing `precedence_group_attribute` nodes. */ + class PrecedenceGroupAttribute extends @swift_precedence_group_attribute, AstNode { + /** Gets the name of the primary QL class for this element. */ + final override string getAPrimaryQlClass() { result = "PrecedenceGroupAttribute" } + + /** Gets the `i`th child of this node. */ + final AstNode getChild(int i) { swift_precedence_group_attribute_child(this, i, result) } + + /** Gets a field or child node of this node. */ + final override AstNode getAFieldOrChild() { + swift_precedence_group_attribute_child(this, _, result) + } + } + + /** A class representing `precedence_group_attributes` nodes. */ + class PrecedenceGroupAttributes extends @swift_precedence_group_attributes, AstNode { + /** Gets the name of the primary QL class for this element. */ + final override string getAPrimaryQlClass() { result = "PrecedenceGroupAttributes" } + + /** Gets the `i`th child of this node. */ + final PrecedenceGroupAttribute getChild(int i) { + swift_precedence_group_attributes_child(this, i, result) + } + + /** Gets a field or child node of this node. */ + final override AstNode getAFieldOrChild() { + swift_precedence_group_attributes_child(this, _, result) + } + } + + /** A class representing `precedence_group_declaration` nodes. */ + class PrecedenceGroupDeclaration extends @swift_precedence_group_declaration, AstNode { + /** Gets the name of the primary QL class for this element. */ + final override string getAPrimaryQlClass() { result = "PrecedenceGroupDeclaration" } + + /** Gets the `i`th child of this node. */ + final AstNode getChild(int i) { swift_precedence_group_declaration_child(this, i, result) } + + /** Gets a field or child node of this node. */ + final override AstNode getAFieldOrChild() { + swift_precedence_group_declaration_child(this, _, result) + } + } + + /** A class representing `prefix_expression` nodes. */ + class PrefixExpression extends @swift_prefix_expression, AstNode { + /** Gets the name of the primary QL class for this element. */ + final override string getAPrimaryQlClass() { result = "PrefixExpression" } + + /** Gets the node corresponding to the field `operation`. */ + final AstNode getOperation() { swift_prefix_expression_def(this, result) } + + /** Gets the node corresponding to the field `target`. */ + final AstNode getTarget(int i) { swift_prefix_expression_target(this, i, result) } + + /** Gets a field or child node of this node. */ + final override AstNode getAFieldOrChild() { + swift_prefix_expression_def(this, result) or swift_prefix_expression_target(this, _, result) + } + } + + /** A class representing `property_behavior_modifier` tokens. */ + class PropertyBehaviorModifier extends @swift_token_property_behavior_modifier, Token { + /** Gets the name of the primary QL class for this element. */ + final override string getAPrimaryQlClass() { result = "PropertyBehaviorModifier" } + } + + /** A class representing `property_declaration` nodes. */ + class PropertyDeclaration extends @swift_property_declaration, AstNode { + /** Gets the name of the primary QL class for this element. */ + final override string getAPrimaryQlClass() { result = "PropertyDeclaration" } + + /** Gets the node corresponding to the field `computed_value`. */ + final ComputedProperty getComputedValue(int i) { + swift_property_declaration_computed_value(this, i, result) + } + + /** Gets the node corresponding to the field `name`. */ + final Pattern getName(int i) { swift_property_declaration_name(this, i, result) } + + /** Gets the node corresponding to the field `value`. */ + final AstNode getValue(int i) { swift_property_declaration_value(this, i, result) } + + /** Gets the `i`th child of this node. */ + final AstNode getChild(int i) { swift_property_declaration_child(this, i, result) } + + /** Gets a field or child node of this node. */ + final override AstNode getAFieldOrChild() { + swift_property_declaration_computed_value(this, _, result) or + swift_property_declaration_name(this, _, result) or + swift_property_declaration_value(this, _, result) or + swift_property_declaration_child(this, _, result) + } + } + + /** A class representing `property_modifier` tokens. */ + class PropertyModifier extends @swift_token_property_modifier, Token { + /** Gets the name of the primary QL class for this element. */ + final override string getAPrimaryQlClass() { result = "PropertyModifier" } + } + + /** A class representing `protocol_body` nodes. */ + class ProtocolBody extends @swift_protocol_body, AstNode { + /** Gets the name of the primary QL class for this element. */ + final override string getAPrimaryQlClass() { result = "ProtocolBody" } + + /** Gets the node corresponding to the field `body`. */ + final ProtocolFunctionDeclaration getBody(int i) { swift_protocol_body_body(this, i, result) } + + /** Gets the `i`th child of this node. */ + final AstNode getChild(int i) { swift_protocol_body_child(this, i, result) } + + /** Gets a field or child node of this node. */ + final override AstNode getAFieldOrChild() { + swift_protocol_body_body(this, _, result) or swift_protocol_body_child(this, _, result) + } + } + + /** A class representing `protocol_composition_type` nodes. */ + class ProtocolCompositionType extends @swift_protocol_composition_type, AstNode { + /** Gets the name of the primary QL class for this element. */ + final override string getAPrimaryQlClass() { result = "ProtocolCompositionType" } + + /** Gets the `i`th child of this node. */ + final AstNode getChild(int i) { swift_protocol_composition_type_child(this, i, result) } + + /** Gets a field or child node of this node. */ + final override AstNode getAFieldOrChild() { + swift_protocol_composition_type_child(this, _, result) + } + } + + /** A class representing `protocol_declaration` nodes. */ + class ProtocolDeclaration extends @swift_protocol_declaration, AstNode { + /** Gets the name of the primary QL class for this element. */ + final override string getAPrimaryQlClass() { result = "ProtocolDeclaration" } + + /** Gets the node corresponding to the field `body`. */ + final ProtocolBody getBody() { swift_protocol_declaration_def(this, result, _, _) } + + /** Gets the node corresponding to the field `declaration_kind`. */ + final string getDeclarationKind() { + exists(int value | swift_protocol_declaration_def(this, _, value, _) | + (result = "protocol" and value = 0) + ) + } + + /** Gets the node corresponding to the field `name`. */ + final TypeIdentifier getName() { swift_protocol_declaration_def(this, _, _, result) } + + /** Gets the `i`th child of this node. */ + final AstNode getChild(int i) { swift_protocol_declaration_child(this, i, result) } + + /** Gets a field or child node of this node. */ + final override AstNode getAFieldOrChild() { + swift_protocol_declaration_def(this, result, _, _) or + swift_protocol_declaration_def(this, _, _, result) or + swift_protocol_declaration_child(this, _, result) + } + } + + /** A class representing `protocol_function_declaration` nodes. */ + class ProtocolFunctionDeclaration extends @swift_protocol_function_declaration, AstNode { + /** Gets the name of the primary QL class for this element. */ + final override string getAPrimaryQlClass() { result = "ProtocolFunctionDeclaration" } + + /** Gets the node corresponding to the field `default_value`. */ + final AstNode getDefaultValue(int i) { + swift_protocol_function_declaration_default_value(this, i, result) + } + + /** Gets the node corresponding to the field `name`. */ + final AstNode getName(int i) { swift_protocol_function_declaration_name(this, i, result) } + + /** Gets the node corresponding to the field `return_type`. */ + final AstNode getReturnType(int i) { + swift_protocol_function_declaration_return_type(this, i, result) + } + + /** Gets the `i`th child of this node. */ + final AstNode getChild(int i) { swift_protocol_function_declaration_child(this, i, result) } + + /** Gets a field or child node of this node. */ + final override AstNode getAFieldOrChild() { + swift_protocol_function_declaration_default_value(this, _, result) or + swift_protocol_function_declaration_name(this, _, result) or + swift_protocol_function_declaration_return_type(this, _, result) or + swift_protocol_function_declaration_child(this, _, result) + } + } + + /** A class representing `protocol_property_declaration` nodes. */ + class ProtocolPropertyDeclaration extends @swift_protocol_property_declaration, AstNode { + /** Gets the name of the primary QL class for this element. */ + final override string getAPrimaryQlClass() { result = "ProtocolPropertyDeclaration" } + + /** Gets the node corresponding to the field `name`. */ + final Pattern getName() { swift_protocol_property_declaration_def(this, result) } + + /** Gets the `i`th child of this node. */ + final AstNode getChild(int i) { swift_protocol_property_declaration_child(this, i, result) } + + /** Gets a field or child node of this node. */ + final override AstNode getAFieldOrChild() { + swift_protocol_property_declaration_def(this, result) or + swift_protocol_property_declaration_child(this, _, result) + } + } + + /** A class representing `protocol_property_requirements` nodes. */ + class ProtocolPropertyRequirements extends @swift_protocol_property_requirements, AstNode { + /** Gets the name of the primary QL class for this element. */ + final override string getAPrimaryQlClass() { result = "ProtocolPropertyRequirements" } + + /** Gets the `i`th child of this node. */ + final AstNode getChild(int i) { swift_protocol_property_requirements_child(this, i, result) } + + /** Gets a field or child node of this node. */ + final override AstNode getAFieldOrChild() { + swift_protocol_property_requirements_child(this, _, result) + } + } + + /** A class representing `range_expression` nodes. */ + class RangeExpression extends @swift_range_expression, AstNode { + /** Gets the name of the primary QL class for this element. */ + final override string getAPrimaryQlClass() { result = "RangeExpression" } + + /** Gets the node corresponding to the field `end`. */ + final AstNode getEnd(int i) { swift_range_expression_end(this, i, result) } + + /** Gets the node corresponding to the field `op`. */ + final string getOp() { + exists(int value | swift_range_expression_def(this, value) | + result = "..." and value = 0 + or + result = "..<" and value = 1 + ) + } + + /** Gets the node corresponding to the field `start`. */ + final AstNode getStart(int i) { swift_range_expression_start(this, i, result) } + + /** Gets a field or child node of this node. */ + final override AstNode getAFieldOrChild() { + swift_range_expression_end(this, _, result) or swift_range_expression_start(this, _, result) + } + } + + /** A class representing `raw_str_continuing_indicator` tokens. */ + class RawStrContinuingIndicator extends @swift_token_raw_str_continuing_indicator, Token { + /** Gets the name of the primary QL class for this element. */ + final override string getAPrimaryQlClass() { result = "RawStrContinuingIndicator" } + } + + /** A class representing `raw_str_end_part` tokens. */ + class RawStrEndPart extends @swift_token_raw_str_end_part, Token { + /** Gets the name of the primary QL class for this element. */ + final override string getAPrimaryQlClass() { result = "RawStrEndPart" } + } + + /** A class representing `raw_str_interpolation` nodes. */ + class RawStrInterpolation extends @swift_raw_str_interpolation, AstNode { + /** Gets the name of the primary QL class for this element. */ + final override string getAPrimaryQlClass() { result = "RawStrInterpolation" } + + /** Gets the node corresponding to the field `interpolation`. */ + final InterpolatedExpression getInterpolation(int i) { + swift_raw_str_interpolation_interpolation(this, i, result) + } + + /** Gets the child of this node. */ + final RawStrInterpolationStart getChild() { swift_raw_str_interpolation_def(this, result) } + + /** Gets a field or child node of this node. */ + final override AstNode getAFieldOrChild() { + swift_raw_str_interpolation_interpolation(this, _, result) or + swift_raw_str_interpolation_def(this, result) + } + } + + /** A class representing `raw_str_interpolation_start` tokens. */ + class RawStrInterpolationStart extends @swift_token_raw_str_interpolation_start, Token { + /** Gets the name of the primary QL class for this element. */ + final override string getAPrimaryQlClass() { result = "RawStrInterpolationStart" } + } + + /** A class representing `raw_str_part` tokens. */ + class RawStrPart extends @swift_token_raw_str_part, Token { + /** Gets the name of the primary QL class for this element. */ + final override string getAPrimaryQlClass() { result = "RawStrPart" } + } + + /** A class representing `raw_string_literal` nodes. */ + class RawStringLiteral extends @swift_raw_string_literal, AstNode { + /** Gets the name of the primary QL class for this element. */ + final override string getAPrimaryQlClass() { result = "RawStringLiteral" } + + /** Gets the node corresponding to the field `interpolation`. */ + final RawStrInterpolation getInterpolation(int i) { + swift_raw_string_literal_interpolation(this, i, result) + } + + /** Gets the node corresponding to the field `text`. */ + final AstNode getText(int i) { swift_raw_string_literal_text(this, i, result) } + + /** Gets the `i`th child of this node. */ + final RawStrContinuingIndicator getChild(int i) { + swift_raw_string_literal_child(this, i, result) + } + + /** Gets a field or child node of this node. */ + final override AstNode getAFieldOrChild() { + swift_raw_string_literal_interpolation(this, _, result) or + swift_raw_string_literal_text(this, _, result) or + swift_raw_string_literal_child(this, _, result) + } + } + + /** A class representing `real_literal` tokens. */ + class RealLiteral extends @swift_token_real_literal, Token { + /** Gets the name of the primary QL class for this element. */ + final override string getAPrimaryQlClass() { result = "RealLiteral" } + } + + /** A class representing `regex_literal` tokens. */ + class RegexLiteral extends @swift_token_regex_literal, Token { + /** Gets the name of the primary QL class for this element. */ + final override string getAPrimaryQlClass() { result = "RegexLiteral" } + } + + /** A class representing `repeat_while_statement` nodes. */ + class RepeatWhileStatement extends @swift_repeat_while_statement, AstNode { + /** Gets the name of the primary QL class for this element. */ + final override string getAPrimaryQlClass() { result = "RepeatWhileStatement" } + + /** Gets the node corresponding to the field `bound_identifier`. */ + final SimpleIdentifier getBoundIdentifier(int i) { + swift_repeat_while_statement_bound_identifier(this, i, result) + } + + /** Gets the node corresponding to the field `condition`. */ + final AstNode getCondition(int i) { swift_repeat_while_statement_condition(this, i, result) } + + /** Gets the node corresponding to the field `name`. */ + final AstNode getName(int i) { swift_repeat_while_statement_name(this, i, result) } + + /** Gets the child of this node. */ + final Statements getChild() { swift_repeat_while_statement_child(this, result) } + + /** Gets a field or child node of this node. */ + final override AstNode getAFieldOrChild() { + swift_repeat_while_statement_bound_identifier(this, _, result) or + swift_repeat_while_statement_condition(this, _, result) or + swift_repeat_while_statement_name(this, _, result) or + swift_repeat_while_statement_child(this, result) + } + } + + /** A class representing `selector_expression` nodes. */ + class SelectorExpression extends @swift_selector_expression, AstNode { + /** Gets the name of the primary QL class for this element. */ + final override string getAPrimaryQlClass() { result = "SelectorExpression" } + + /** Gets the child of this node. */ + final AstNode getChild() { swift_selector_expression_child(this, result) } + + /** Gets a field or child node of this node. */ + final override AstNode getAFieldOrChild() { swift_selector_expression_child(this, result) } + } + + /** A class representing `self_expression` tokens. */ + class SelfExpression extends @swift_token_self_expression, Token { + /** Gets the name of the primary QL class for this element. */ + final override string getAPrimaryQlClass() { result = "SelfExpression" } + } + + /** A class representing `setter_specifier` nodes. */ + class SetterSpecifier extends @swift_setter_specifier, AstNode { + /** Gets the name of the primary QL class for this element. */ + final override string getAPrimaryQlClass() { result = "SetterSpecifier" } + + /** Gets the child of this node. */ + final MutationModifier getChild() { swift_setter_specifier_child(this, result) } + + /** Gets a field or child node of this node. */ + final override AstNode getAFieldOrChild() { swift_setter_specifier_child(this, result) } + } + + /** A class representing `shebang_line` tokens. */ + class ShebangLine extends @swift_token_shebang_line, Token { + /** Gets the name of the primary QL class for this element. */ + final override string getAPrimaryQlClass() { result = "ShebangLine" } + } + + /** A class representing `simple_identifier` tokens. */ + class SimpleIdentifier extends @swift_token_simple_identifier, Token { + /** Gets the name of the primary QL class for this element. */ + final override string getAPrimaryQlClass() { result = "SimpleIdentifier" } + } + + /** A class representing `source_file` nodes. */ + class SourceFile extends @swift_source_file, AstNode { + /** Gets the name of the primary QL class for this element. */ + final override string getAPrimaryQlClass() { result = "SourceFile" } + + /** Gets the `i`th child of this node. */ + final AstNode getChild(int i) { swift_source_file_child(this, i, result) } + + /** Gets a field or child node of this node. */ + final override AstNode getAFieldOrChild() { swift_source_file_child(this, _, result) } + } + + /** A class representing `special_literal` tokens. */ + class SpecialLiteral extends @swift_token_special_literal, Token { + /** Gets the name of the primary QL class for this element. */ + final override string getAPrimaryQlClass() { result = "SpecialLiteral" } + } + + /** A class representing `statement_label` tokens. */ + class StatementLabel extends @swift_token_statement_label, Token { + /** Gets the name of the primary QL class for this element. */ + final override string getAPrimaryQlClass() { result = "StatementLabel" } + } + + /** A class representing `statements` nodes. */ + class Statements extends @swift_statements, AstNode { + /** Gets the name of the primary QL class for this element. */ + final override string getAPrimaryQlClass() { result = "Statements" } + + /** Gets the `i`th child of this node. */ + final AstNode getChild(int i) { swift_statements_child(this, i, result) } + + /** Gets a field or child node of this node. */ + final override AstNode getAFieldOrChild() { swift_statements_child(this, _, result) } + } + + /** A class representing `str_escaped_char` tokens. */ + class StrEscapedChar extends @swift_token_str_escaped_char, Token { + /** Gets the name of the primary QL class for this element. */ + final override string getAPrimaryQlClass() { result = "StrEscapedChar" } + } + + /** A class representing `subscript_declaration` nodes. */ + class SubscriptDeclaration extends @swift_subscript_declaration, AstNode { + /** Gets the name of the primary QL class for this element. */ + final override string getAPrimaryQlClass() { result = "SubscriptDeclaration" } + + /** Gets the node corresponding to the field `default_value`. */ + final AstNode getDefaultValue(int i) { + swift_subscript_declaration_default_value(this, i, result) + } + + /** Gets the node corresponding to the field `name`. */ + final AstNode getName() { swift_subscript_declaration_name(this, result) } + + /** Gets the node corresponding to the field `return_type`. */ + final AstNode getReturnType(int i) { swift_subscript_declaration_return_type(this, i, result) } + + /** Gets the `i`th child of this node. */ + final AstNode getChild(int i) { swift_subscript_declaration_child(this, i, result) } + + /** Gets a field or child node of this node. */ + final override AstNode getAFieldOrChild() { + swift_subscript_declaration_default_value(this, _, result) or + swift_subscript_declaration_name(this, result) or + swift_subscript_declaration_return_type(this, _, result) or + swift_subscript_declaration_child(this, _, result) + } + } + + /** A class representing `super_expression` tokens. */ + class SuperExpression extends @swift_token_super_expression, Token { + /** Gets the name of the primary QL class for this element. */ + final override string getAPrimaryQlClass() { result = "SuperExpression" } + } + + /** A class representing `suppressed_constraint` nodes. */ + class SuppressedConstraint extends @swift_suppressed_constraint, AstNode { + /** Gets the name of the primary QL class for this element. */ + final override string getAPrimaryQlClass() { result = "SuppressedConstraint" } + + /** Gets the node corresponding to the field `suppressed`. */ + final TypeIdentifier getSuppressed() { swift_suppressed_constraint_def(this, result) } + + /** Gets a field or child node of this node. */ + final override AstNode getAFieldOrChild() { swift_suppressed_constraint_def(this, result) } + } + + /** A class representing `switch_entry` nodes. */ + class SwitchEntry extends @swift_switch_entry, AstNode { + /** Gets the name of the primary QL class for this element. */ + final override string getAPrimaryQlClass() { result = "SwitchEntry" } + + /** Gets the `i`th child of this node. */ + final AstNode getChild(int i) { swift_switch_entry_child(this, i, result) } + + /** Gets a field or child node of this node. */ + final override AstNode getAFieldOrChild() { swift_switch_entry_child(this, _, result) } + } + + /** A class representing `switch_pattern` nodes. */ + class SwitchPattern extends @swift_switch_pattern, AstNode { + /** Gets the name of the primary QL class for this element. */ + final override string getAPrimaryQlClass() { result = "SwitchPattern" } + + /** Gets the child of this node. */ + final Pattern getChild() { swift_switch_pattern_def(this, result) } + + /** Gets a field or child node of this node. */ + final override AstNode getAFieldOrChild() { swift_switch_pattern_def(this, result) } + } + + /** A class representing `switch_statement` nodes. */ + class SwitchStatement extends @swift_switch_statement, AstNode { + /** Gets the name of the primary QL class for this element. */ + final override string getAPrimaryQlClass() { result = "SwitchStatement" } + + /** Gets the node corresponding to the field `expr`. */ + final AstNode getExpr(int i) { swift_switch_statement_expr(this, i, result) } + + /** Gets the `i`th child of this node. */ + final SwitchEntry getChild(int i) { swift_switch_statement_child(this, i, result) } + + /** Gets a field or child node of this node. */ + final override AstNode getAFieldOrChild() { + swift_switch_statement_expr(this, _, result) or swift_switch_statement_child(this, _, result) + } + } + + /** A class representing `ternary_expression` nodes. */ + class TernaryExpression extends @swift_ternary_expression, AstNode { + /** Gets the name of the primary QL class for this element. */ + final override string getAPrimaryQlClass() { result = "TernaryExpression" } + + /** Gets the node corresponding to the field `condition`. */ + final AstNode getCondition(int i) { swift_ternary_expression_condition(this, i, result) } + + /** Gets the node corresponding to the field `if_false`. */ + final AstNode getIfFalse(int i) { swift_ternary_expression_if_false(this, i, result) } + + /** Gets the node corresponding to the field `if_true`. */ + final AstNode getIfTrue(int i) { swift_ternary_expression_if_true(this, i, result) } + + /** Gets a field or child node of this node. */ + final override AstNode getAFieldOrChild() { + swift_ternary_expression_condition(this, _, result) or + swift_ternary_expression_if_false(this, _, result) or + swift_ternary_expression_if_true(this, _, result) + } + } + + /** A class representing `throw_keyword` tokens. */ + class ThrowKeyword extends @swift_token_throw_keyword, Token { + /** Gets the name of the primary QL class for this element. */ + final override string getAPrimaryQlClass() { result = "ThrowKeyword" } + } + + /** A class representing `throws` tokens. */ + class Throws extends @swift_token_throws, Token { + /** Gets the name of the primary QL class for this element. */ + final override string getAPrimaryQlClass() { result = "Throws" } + } + + /** A class representing `throws_clause` nodes. */ + class ThrowsClause extends @swift_throws_clause, AstNode { + /** Gets the name of the primary QL class for this element. */ + final override string getAPrimaryQlClass() { result = "ThrowsClause" } + + /** Gets the node corresponding to the field `type`. */ + final AstNode getType() { swift_throws_clause_def(this, result) } + + /** Gets a field or child node of this node. */ + final override AstNode getAFieldOrChild() { swift_throws_clause_def(this, result) } + } + + /** A class representing `try_expression` nodes. */ + class TryExpression extends @swift_try_expression, AstNode { + /** Gets the name of the primary QL class for this element. */ + final override string getAPrimaryQlClass() { result = "TryExpression" } + + /** Gets the node corresponding to the field `expr`. */ + final AstNode getExpr(int i) { swift_try_expression_expr(this, i, result) } + + /** Gets the child of this node. */ + final TryOperator getChild() { swift_try_expression_def(this, result) } + + /** Gets a field or child node of this node. */ + final override AstNode getAFieldOrChild() { + swift_try_expression_expr(this, _, result) or swift_try_expression_def(this, result) + } + } + + /** A class representing `try_operator` tokens. */ + class TryOperator extends @swift_token_try_operator, Token { + /** Gets the name of the primary QL class for this element. */ + final override string getAPrimaryQlClass() { result = "TryOperator" } + } + + /** A class representing `tuple_expression` nodes. */ + class TupleExpression extends @swift_tuple_expression, AstNode { + /** Gets the name of the primary QL class for this element. */ + final override string getAPrimaryQlClass() { result = "TupleExpression" } + + /** Gets the node corresponding to the field `name`. */ + final SimpleIdentifier getName(int i) { swift_tuple_expression_name(this, i, result) } + + /** Gets the node corresponding to the field `value`. */ + final AstNode getValue(int i) { swift_tuple_expression_value(this, i, result) } + + /** Gets a field or child node of this node. */ + final override AstNode getAFieldOrChild() { + swift_tuple_expression_name(this, _, result) or swift_tuple_expression_value(this, _, result) + } + } + + /** A class representing `tuple_type` nodes. */ + class TupleType extends @swift_tuple_type, AstNode { + /** Gets the name of the primary QL class for this element. */ + final override string getAPrimaryQlClass() { result = "TupleType" } + + /** Gets the node corresponding to the field `element`. */ + final TupleTypeItem getElement(int i) { swift_tuple_type_element(this, i, result) } + + /** Gets the child of this node. */ + final TupleTypeItem getChild() { swift_tuple_type_child(this, result) } + + /** Gets a field or child node of this node. */ + final override AstNode getAFieldOrChild() { + swift_tuple_type_element(this, _, result) or swift_tuple_type_child(this, result) + } + } + + /** A class representing `tuple_type_item` nodes. */ + class TupleTypeItem extends @swift_tuple_type_item, AstNode { + /** Gets the name of the primary QL class for this element. */ + final override string getAPrimaryQlClass() { result = "TupleTypeItem" } + + /** Gets the node corresponding to the field `element`. */ + final AstNode getElement() { swift_tuple_type_item_element(this, result) } + + /** Gets the node corresponding to the field `name`. */ + final AstNode getName(int i) { swift_tuple_type_item_name(this, i, result) } + + /** Gets the node corresponding to the field `type`. */ + final AstNode getType(int i) { swift_tuple_type_item_type(this, i, result) } + + /** Gets the `i`th child of this node. */ + final AstNode getChild(int i) { swift_tuple_type_item_child(this, i, result) } + + /** Gets a field or child node of this node. */ + final override AstNode getAFieldOrChild() { + swift_tuple_type_item_element(this, result) or + swift_tuple_type_item_name(this, _, result) or + swift_tuple_type_item_type(this, _, result) or + swift_tuple_type_item_child(this, _, result) + } + } + + /** A class representing `type_annotation` nodes. */ + class TypeAnnotation extends @swift_type_annotation, AstNode { + /** Gets the name of the primary QL class for this element. */ + final override string getAPrimaryQlClass() { result = "TypeAnnotation" } + + /** Gets the node corresponding to the field `name`. */ + final AstNode getName() { swift_type_annotation_def(this, result) } + + /** Gets the node corresponding to the field `type`. */ + final AstNode getType(int i) { swift_type_annotation_type(this, i, result) } + + /** Gets a field or child node of this node. */ + final override AstNode getAFieldOrChild() { + swift_type_annotation_def(this, result) or swift_type_annotation_type(this, _, result) + } + } + + /** A class representing `type_arguments` nodes. */ + class TypeArguments extends @swift_type_arguments, AstNode { + /** Gets the name of the primary QL class for this element. */ + final override string getAPrimaryQlClass() { result = "TypeArguments" } + + /** Gets the node corresponding to the field `name`. */ + final AstNode getName(int i) { swift_type_arguments_name(this, i, result) } + + /** Gets the `i`th child of this node. */ + final TypeModifiers getChild(int i) { swift_type_arguments_child(this, i, result) } + + /** Gets a field or child node of this node. */ + final override AstNode getAFieldOrChild() { + swift_type_arguments_name(this, _, result) or swift_type_arguments_child(this, _, result) + } + } + + /** A class representing `type_constraint` nodes. */ + class TypeConstraint extends @swift_type_constraint, AstNode { + /** Gets the name of the primary QL class for this element. */ + final override string getAPrimaryQlClass() { result = "TypeConstraint" } + + /** Gets the child of this node. */ + final AstNode getChild() { swift_type_constraint_def(this, result) } + + /** Gets a field or child node of this node. */ + final override AstNode getAFieldOrChild() { swift_type_constraint_def(this, result) } + } + + /** A class representing `type_constraints` nodes. */ + class TypeConstraints extends @swift_type_constraints, AstNode { + /** Gets the name of the primary QL class for this element. */ + final override string getAPrimaryQlClass() { result = "TypeConstraints" } + + /** Gets the `i`th child of this node. */ + final AstNode getChild(int i) { swift_type_constraints_child(this, i, result) } + + /** Gets a field or child node of this node. */ + final override AstNode getAFieldOrChild() { swift_type_constraints_child(this, _, result) } + } + + /** A class representing `type_identifier` tokens. */ + class TypeIdentifier extends @swift_token_type_identifier, Token { + /** Gets the name of the primary QL class for this element. */ + final override string getAPrimaryQlClass() { result = "TypeIdentifier" } + } + + /** A class representing `type_modifiers` nodes. */ + class TypeModifiers extends @swift_type_modifiers, AstNode { + /** Gets the name of the primary QL class for this element. */ + final override string getAPrimaryQlClass() { result = "TypeModifiers" } + + /** Gets the `i`th child of this node. */ + final Attribute getChild(int i) { swift_type_modifiers_child(this, i, result) } + + /** Gets a field or child node of this node. */ + final override AstNode getAFieldOrChild() { swift_type_modifiers_child(this, _, result) } + } + + /** A class representing `type_pack_expansion` nodes. */ + class TypePackExpansion extends @swift_type_pack_expansion, AstNode { + /** Gets the name of the primary QL class for this element. */ + final override string getAPrimaryQlClass() { result = "TypePackExpansion" } + + /** Gets the child of this node. */ + final AstNode getChild() { swift_type_pack_expansion_def(this, result) } + + /** Gets a field or child node of this node. */ + final override AstNode getAFieldOrChild() { swift_type_pack_expansion_def(this, result) } + } + + /** A class representing `type_parameter` nodes. */ + class TypeParameter extends @swift_type_parameter, AstNode { + /** Gets the name of the primary QL class for this element. */ + final override string getAPrimaryQlClass() { result = "TypeParameter" } + + /** Gets the node corresponding to the field `name`. */ + final AstNode getName() { swift_type_parameter_name(this, result) } + + /** Gets the `i`th child of this node. */ + final AstNode getChild(int i) { swift_type_parameter_child(this, i, result) } + + /** Gets a field or child node of this node. */ + final override AstNode getAFieldOrChild() { + swift_type_parameter_name(this, result) or swift_type_parameter_child(this, _, result) + } + } + + /** A class representing `type_parameter_modifiers` nodes. */ + class TypeParameterModifiers extends @swift_type_parameter_modifiers, AstNode { + /** Gets the name of the primary QL class for this element. */ + final override string getAPrimaryQlClass() { result = "TypeParameterModifiers" } + + /** Gets the `i`th child of this node. */ + final Attribute getChild(int i) { swift_type_parameter_modifiers_child(this, i, result) } + + /** Gets a field or child node of this node. */ + final override AstNode getAFieldOrChild() { + swift_type_parameter_modifiers_child(this, _, result) + } + } + + /** A class representing `type_parameter_pack` nodes. */ + class TypeParameterPack extends @swift_type_parameter_pack, AstNode { + /** Gets the name of the primary QL class for this element. */ + final override string getAPrimaryQlClass() { result = "TypeParameterPack" } + + /** Gets the child of this node. */ + final AstNode getChild() { swift_type_parameter_pack_def(this, result) } + + /** Gets a field or child node of this node. */ + final override AstNode getAFieldOrChild() { swift_type_parameter_pack_def(this, result) } + } + + /** A class representing `type_parameters` nodes. */ + class TypeParameters extends @swift_type_parameters, AstNode { + /** Gets the name of the primary QL class for this element. */ + final override string getAPrimaryQlClass() { result = "TypeParameters" } + + /** Gets the `i`th child of this node. */ + final AstNode getChild(int i) { swift_type_parameters_child(this, i, result) } + + /** Gets a field or child node of this node. */ + final override AstNode getAFieldOrChild() { swift_type_parameters_child(this, _, result) } + } + + /** A class representing `typealias_declaration` nodes. */ + class TypealiasDeclaration extends @swift_typealias_declaration, AstNode { + /** Gets the name of the primary QL class for this element. */ + final override string getAPrimaryQlClass() { result = "TypealiasDeclaration" } + + /** Gets the node corresponding to the field `name`. */ + final AstNode getName(int i) { swift_typealias_declaration_name(this, i, result) } + + /** Gets the node corresponding to the field `value`. */ + final AstNode getValue(int i) { swift_typealias_declaration_value(this, i, result) } + + /** Gets the `i`th child of this node. */ + final AstNode getChild(int i) { swift_typealias_declaration_child(this, i, result) } + + /** Gets a field or child node of this node. */ + final override AstNode getAFieldOrChild() { + swift_typealias_declaration_name(this, _, result) or + swift_typealias_declaration_value(this, _, result) or + swift_typealias_declaration_child(this, _, result) + } + } + + /** A class representing `user_type` nodes. */ + class UserType extends @swift_user_type, AstNode { + /** Gets the name of the primary QL class for this element. */ + final override string getAPrimaryQlClass() { result = "UserType" } + + /** Gets the `i`th child of this node. */ + final AstNode getChild(int i) { swift_user_type_child(this, i, result) } + + /** Gets a field or child node of this node. */ + final override AstNode getAFieldOrChild() { swift_user_type_child(this, _, result) } + } + + /** A class representing `value_argument` nodes. */ + class ValueArgument extends @swift_value_argument, AstNode { + /** Gets the name of the primary QL class for this element. */ + final override string getAPrimaryQlClass() { result = "ValueArgument" } + + /** Gets the node corresponding to the field `name`. */ + final ValueArgumentLabel getName() { swift_value_argument_name(this, result) } + + /** Gets the node corresponding to the field `reference_specifier`. */ + final ValueArgumentLabel getReferenceSpecifier(int i) { + swift_value_argument_reference_specifier(this, i, result) + } + + /** Gets the node corresponding to the field `value`. */ + final AstNode getValue(int i) { swift_value_argument_value(this, i, result) } + + /** Gets the child of this node. */ + final TypeModifiers getChild() { swift_value_argument_child(this, result) } + + /** Gets a field or child node of this node. */ + final override AstNode getAFieldOrChild() { + swift_value_argument_name(this, result) or + swift_value_argument_reference_specifier(this, _, result) or + swift_value_argument_value(this, _, result) or + swift_value_argument_child(this, result) + } + } + + /** A class representing `value_argument_label` nodes. */ + class ValueArgumentLabel extends @swift_value_argument_label, AstNode { + /** Gets the name of the primary QL class for this element. */ + final override string getAPrimaryQlClass() { result = "ValueArgumentLabel" } + + /** Gets the child of this node. */ + final SimpleIdentifier getChild() { swift_value_argument_label_def(this, result) } + + /** Gets a field or child node of this node. */ + final override AstNode getAFieldOrChild() { swift_value_argument_label_def(this, result) } + } + + /** A class representing `value_arguments` nodes. */ + class ValueArguments extends @swift_value_arguments, AstNode { + /** Gets the name of the primary QL class for this element. */ + final override string getAPrimaryQlClass() { result = "ValueArguments" } + + /** Gets the `i`th child of this node. */ + final ValueArgument getChild(int i) { swift_value_arguments_child(this, i, result) } + + /** Gets a field or child node of this node. */ + final override AstNode getAFieldOrChild() { swift_value_arguments_child(this, _, result) } + } + + /** A class representing `value_binding_pattern` nodes. */ + class ValueBindingPattern extends @swift_value_binding_pattern, AstNode { + /** Gets the name of the primary QL class for this element. */ + final override string getAPrimaryQlClass() { result = "ValueBindingPattern" } + + /** Gets the node corresponding to the field `mutability`. */ + final string getMutability() { + exists(int value | swift_value_binding_pattern_def(this, value) | + result = "let" and value = 0 + or + result = "var" and value = 1 + ) + } + + /** Gets a field or child node of this node. */ + final override AstNode getAFieldOrChild() { none() } + } + + /** A class representing `value_pack_expansion` nodes. */ + class ValuePackExpansion extends @swift_value_pack_expansion, AstNode { + /** Gets the name of the primary QL class for this element. */ + final override string getAPrimaryQlClass() { result = "ValuePackExpansion" } + + /** Gets the child of this node. */ + final AstNode getChild() { swift_value_pack_expansion_child(this, result) } + + /** Gets a field or child node of this node. */ + final override AstNode getAFieldOrChild() { swift_value_pack_expansion_child(this, result) } + } + + /** A class representing `value_parameter_pack` nodes. */ + class ValueParameterPack extends @swift_value_parameter_pack, AstNode { + /** Gets the name of the primary QL class for this element. */ + final override string getAPrimaryQlClass() { result = "ValueParameterPack" } + + /** Gets the child of this node. */ + final AstNode getChild() { swift_value_parameter_pack_child(this, result) } + + /** Gets a field or child node of this node. */ + final override AstNode getAFieldOrChild() { swift_value_parameter_pack_child(this, result) } + } + + /** A class representing `visibility_modifier` tokens. */ + class VisibilityModifier extends @swift_token_visibility_modifier, Token { + /** Gets the name of the primary QL class for this element. */ + final override string getAPrimaryQlClass() { result = "VisibilityModifier" } + } + + /** A class representing `where_clause` nodes. */ + class WhereClause extends @swift_where_clause, AstNode { + /** Gets the name of the primary QL class for this element. */ + final override string getAPrimaryQlClass() { result = "WhereClause" } + + /** Gets the `i`th child of this node. */ + final AstNode getChild(int i) { swift_where_clause_child(this, i, result) } + + /** Gets a field or child node of this node. */ + final override AstNode getAFieldOrChild() { swift_where_clause_child(this, _, result) } + } + + /** A class representing `where_keyword` tokens. */ + class WhereKeyword extends @swift_token_where_keyword, Token { + /** Gets the name of the primary QL class for this element. */ + final override string getAPrimaryQlClass() { result = "WhereKeyword" } + } + + /** A class representing `while_statement` nodes. */ + class WhileStatement extends @swift_while_statement, AstNode { + /** Gets the name of the primary QL class for this element. */ + final override string getAPrimaryQlClass() { result = "WhileStatement" } + + /** Gets the node corresponding to the field `bound_identifier`. */ + final SimpleIdentifier getBoundIdentifier(int i) { + swift_while_statement_bound_identifier(this, i, result) + } + + /** Gets the node corresponding to the field `condition`. */ + final AstNode getCondition(int i) { swift_while_statement_condition(this, i, result) } + + /** Gets the node corresponding to the field `name`. */ + final AstNode getName(int i) { swift_while_statement_name(this, i, result) } + + /** Gets the child of this node. */ + final Statements getChild() { swift_while_statement_child(this, result) } + + /** Gets a field or child node of this node. */ + final override AstNode getAFieldOrChild() { + swift_while_statement_bound_identifier(this, _, result) or + swift_while_statement_condition(this, _, result) or + swift_while_statement_name(this, _, result) or + swift_while_statement_child(this, result) + } + } + + /** A class representing `wildcard_pattern` tokens. */ + class WildcardPattern extends @swift_token_wildcard_pattern, Token { + /** Gets the name of the primary QL class for this element. */ + final override string getAPrimaryQlClass() { result = "WildcardPattern" } + } + + /** A class representing `willset_clause` nodes. */ + class WillsetClause extends @swift_willset_clause, AstNode { + /** Gets the name of the primary QL class for this element. */ + final override string getAPrimaryQlClass() { result = "WillsetClause" } + + /** Gets the `i`th child of this node. */ + final AstNode getChild(int i) { swift_willset_clause_child(this, i, result) } + + /** Gets a field or child node of this node. */ + final override AstNode getAFieldOrChild() { swift_willset_clause_child(this, _, result) } + } + + /** A class representing `willset_didset_block` nodes. */ + class WillsetDidsetBlock extends @swift_willset_didset_block, AstNode { + /** Gets the name of the primary QL class for this element. */ + final override string getAPrimaryQlClass() { result = "WillsetDidsetBlock" } + + /** Gets the `i`th child of this node. */ + final AstNode getChild(int i) { swift_willset_didset_block_child(this, i, result) } + + /** Gets a field or child node of this node. */ + final override AstNode getAFieldOrChild() { swift_willset_didset_block_child(this, _, result) } + } +} diff --git a/unified/ql/lib/qlpack.lock.yml b/unified/ql/lib/qlpack.lock.yml new file mode 100644 index 000000000000..06dd07fc7dc7 --- /dev/null +++ b/unified/ql/lib/qlpack.lock.yml @@ -0,0 +1,4 @@ +--- +dependencies: {} +compiled: false +lockVersion: 1.0.0 diff --git a/unified/ql/lib/qlpack.yml b/unified/ql/lib/qlpack.yml new file mode 100644 index 000000000000..896bf37ac5e5 --- /dev/null +++ b/unified/ql/lib/qlpack.yml @@ -0,0 +1,11 @@ +name: codeql/unified-all +version: 0.0.1-dev +groups: unified +dbscheme: unified.dbscheme +extractor: unified +library: true +upgrades: upgrades +dependencies: + codeql/util: ${workspace} +warnOnImplicitThis: true +compileForOverlayEval: true diff --git a/unified/ql/lib/unified.dbscheme b/unified/ql/lib/unified.dbscheme new file mode 100644 index 000000000000..026d4add415d --- /dev/null +++ b/unified/ql/lib/unified.dbscheme @@ -0,0 +1,2741 @@ +// CodeQL database schema for Swift +// Automatically generated from the tree-sitter grammar; do not edit +// To regenerate, run ql/unified/scripts/create-extractor-pack.sh + +/*- Files and folders -*/ + +/** + * The location of an element. + * The location spans column `startcolumn` of line `startline` to + * column `endcolumn` of line `endline` in file `file`. + * For more information, see + * [Locations](https://codeql.github.com/docs/writing-codeql-queries/providing-locations-in-codeql-queries/). + */ +locations_default( + unique int id: @location_default, + int file: @file ref, + int beginLine: int ref, + int beginColumn: int ref, + int endLine: int ref, + int endColumn: int ref +); + +files( + unique int id: @file, + string name: string ref +); + +folders( + unique int id: @folder, + string name: string ref +); + +@container = @file | @folder + +containerparent( + int parent: @container ref, + unique int child: @container ref +); + +/*- Empty location -*/ + +empty_location( + int location: @location_default ref +); + +/*- Source location prefix -*/ + +/** + * The source location of the snapshot. + */ +sourceLocationPrefix(string prefix : string ref); + +/*- Diagnostic messages -*/ + +diagnostics( + unique int id: @diagnostic, + int severity: int ref, + string error_tag: string ref, + string error_message: string ref, + string full_error_message: string ref, + int location: @location_default ref +); + +/*- Diagnostic messages: severity -*/ + +case @diagnostic.severity of + 10 = @diagnostic_debug +| 20 = @diagnostic_info +| 30 = @diagnostic_warning +| 40 = @diagnostic_error +; + +/*- YAML -*/ + +#keyset[parent, idx] +yaml (unique int id: @yaml_node, + int kind: int ref, + int parent: @yaml_node_parent ref, + int idx: int ref, + string tag: string ref, + string tostring: string ref); + +case @yaml_node.kind of + 0 = @yaml_scalar_node +| 1 = @yaml_mapping_node +| 2 = @yaml_sequence_node +| 3 = @yaml_alias_node +; + +@yaml_collection_node = @yaml_mapping_node | @yaml_sequence_node; + +@yaml_node_parent = @yaml_collection_node | @file; + +yaml_anchors (unique int node: @yaml_node ref, + string anchor: string ref); + +yaml_aliases (unique int alias: @yaml_alias_node ref, + string target: string ref); + +yaml_scalars (unique int scalar: @yaml_scalar_node ref, + int style: int ref, + string value: string ref); + +yaml_errors (unique int id: @yaml_error, + string message: string ref); + +yaml_locations(unique int locatable: @yaml_locatable ref, + int location: @location_default ref); + +@yaml_locatable = @yaml_node | @yaml_error; + +/*- Database metadata -*/ + +/** + * The CLI will automatically emit applicable tuples for this table, + * such as `databaseMetadata("isOverlay", "true")` when building an + * overlay database. + */ +databaseMetadata( + string metadataKey: string ref, + string value: string ref +); + +/*- Overlay support -*/ + +/** + * The CLI will automatically emit tuples for each new/modified/deleted file + * when building an overlay database. + */ +overlayChangedFiles( + string path: string ref +); + +/*- Swift dbscheme -*/ +@swift_additive_expression_lhs_type = @swift_additive_expression | @swift_array_literal | @swift_as_expression | @swift_assignment | @swift_await_expression | @swift_bitwise_operation | @swift_call_expression | @swift_check_expression | @swift_comparison_expression | @swift_conjunction_expression | @swift_constructor_expression | @swift_dictionary_literal | @swift_directive | @swift_disjunction_expression | @swift_equality_expression | @swift_if_statement | @swift_infix_expression | @swift_key_path_expression | @swift_key_path_string_expression | @swift_lambda_literal | @swift_line_string_literal | @swift_macro_invocation | @swift_multi_line_string_literal | @swift_multiplicative_expression | @swift_navigation_expression | @swift_nil_coalescing_expression | @swift_open_end_range_expression | @swift_open_start_range_expression | @swift_playground_literal | @swift_postfix_expression | @swift_prefix_expression | @swift_range_expression | @swift_raw_string_literal | @swift_reserved_word | @swift_selector_expression | @swift_switch_statement | @swift_ternary_expression | @swift_token_bang | @swift_token_bin_literal | @swift_token_boolean_literal | @swift_token_custom_operator | @swift_token_diagnostic | @swift_token_fully_open_range | @swift_token_hex_literal | @swift_token_integer_literal | @swift_token_oct_literal | @swift_token_real_literal | @swift_token_regex_literal | @swift_token_self_expression | @swift_token_simple_identifier | @swift_token_special_literal | @swift_token_super_expression | @swift_try_expression | @swift_tuple_expression | @swift_value_pack_expansion | @swift_value_parameter_pack + +#keyset[swift_additive_expression, index] +swift_additive_expression_lhs( + int swift_additive_expression: @swift_additive_expression ref, + int index: int ref, + unique int lhs: @swift_additive_expression_lhs_type ref +); + +case @swift_additive_expression.op of + 0 = @swift_additive_expression_plus +| 1 = @swift_additive_expression_minus +; + + +@swift_additive_expression_rhs_type = @swift_additive_expression | @swift_array_literal | @swift_as_expression | @swift_assignment | @swift_await_expression | @swift_bitwise_operation | @swift_call_expression | @swift_check_expression | @swift_comparison_expression | @swift_conjunction_expression | @swift_constructor_expression | @swift_dictionary_literal | @swift_directive | @swift_disjunction_expression | @swift_equality_expression | @swift_if_statement | @swift_infix_expression | @swift_key_path_expression | @swift_key_path_string_expression | @swift_lambda_literal | @swift_line_string_literal | @swift_macro_invocation | @swift_multi_line_string_literal | @swift_multiplicative_expression | @swift_navigation_expression | @swift_nil_coalescing_expression | @swift_open_end_range_expression | @swift_open_start_range_expression | @swift_playground_literal | @swift_postfix_expression | @swift_prefix_expression | @swift_range_expression | @swift_raw_string_literal | @swift_reserved_word | @swift_selector_expression | @swift_switch_statement | @swift_ternary_expression | @swift_token_bang | @swift_token_bin_literal | @swift_token_boolean_literal | @swift_token_custom_operator | @swift_token_diagnostic | @swift_token_fully_open_range | @swift_token_hex_literal | @swift_token_integer_literal | @swift_token_oct_literal | @swift_token_real_literal | @swift_token_regex_literal | @swift_token_self_expression | @swift_token_simple_identifier | @swift_token_special_literal | @swift_token_super_expression | @swift_try_expression | @swift_tuple_expression | @swift_value_pack_expansion | @swift_value_parameter_pack + +#keyset[swift_additive_expression, index] +swift_additive_expression_rhs( + int swift_additive_expression: @swift_additive_expression ref, + int index: int ref, + unique int rhs: @swift_additive_expression_rhs_type ref +); + +swift_additive_expression_def( + unique int id: @swift_additive_expression, + int op: int ref +); + +@swift_array_literal_element_type = @swift_additive_expression | @swift_array_literal | @swift_as_expression | @swift_assignment | @swift_await_expression | @swift_bitwise_operation | @swift_call_expression | @swift_check_expression | @swift_comparison_expression | @swift_conjunction_expression | @swift_constructor_expression | @swift_dictionary_literal | @swift_directive | @swift_disjunction_expression | @swift_equality_expression | @swift_if_statement | @swift_infix_expression | @swift_key_path_expression | @swift_key_path_string_expression | @swift_lambda_literal | @swift_line_string_literal | @swift_macro_invocation | @swift_multi_line_string_literal | @swift_multiplicative_expression | @swift_navigation_expression | @swift_nil_coalescing_expression | @swift_open_end_range_expression | @swift_open_start_range_expression | @swift_playground_literal | @swift_postfix_expression | @swift_prefix_expression | @swift_range_expression | @swift_raw_string_literal | @swift_reserved_word | @swift_selector_expression | @swift_switch_statement | @swift_ternary_expression | @swift_token_bang | @swift_token_bin_literal | @swift_token_boolean_literal | @swift_token_custom_operator | @swift_token_diagnostic | @swift_token_fully_open_range | @swift_token_hex_literal | @swift_token_integer_literal | @swift_token_oct_literal | @swift_token_real_literal | @swift_token_regex_literal | @swift_token_self_expression | @swift_token_simple_identifier | @swift_token_special_literal | @swift_token_super_expression | @swift_try_expression | @swift_tuple_expression | @swift_value_pack_expansion | @swift_value_parameter_pack + +#keyset[swift_array_literal, index] +swift_array_literal_element( + int swift_array_literal: @swift_array_literal ref, + int index: int ref, + unique int element: @swift_array_literal_element_type ref +); + +swift_array_literal_def( + unique int id: @swift_array_literal +); + +@swift_array_type_element_type = @swift_array_type | @swift_dictionary_type | @swift_existential_type | @swift_function_type | @swift_metatype | @swift_opaque_type | @swift_optional_type | @swift_protocol_composition_type | @swift_suppressed_constraint | @swift_tuple_type | @swift_type_modifiers | @swift_type_pack_expansion | @swift_type_parameter_pack | @swift_user_type + +#keyset[swift_array_type, index] +swift_array_type_element( + int swift_array_type: @swift_array_type ref, + int index: int ref, + unique int element: @swift_array_type_element_type ref +); + +@swift_array_type_name_type = @swift_array_type | @swift_dictionary_type | @swift_existential_type | @swift_function_type | @swift_metatype | @swift_opaque_type | @swift_optional_type | @swift_protocol_composition_type | @swift_suppressed_constraint | @swift_tuple_type | @swift_type_pack_expansion | @swift_type_parameter_pack | @swift_user_type + +swift_array_type_def( + unique int id: @swift_array_type, + int name: @swift_array_type_name_type ref +); + +@swift_as_expression_expr_type = @swift_additive_expression | @swift_array_literal | @swift_as_expression | @swift_assignment | @swift_await_expression | @swift_bitwise_operation | @swift_call_expression | @swift_check_expression | @swift_comparison_expression | @swift_conjunction_expression | @swift_constructor_expression | @swift_dictionary_literal | @swift_directive | @swift_disjunction_expression | @swift_equality_expression | @swift_if_statement | @swift_infix_expression | @swift_key_path_expression | @swift_key_path_string_expression | @swift_lambda_literal | @swift_line_string_literal | @swift_macro_invocation | @swift_multi_line_string_literal | @swift_multiplicative_expression | @swift_navigation_expression | @swift_nil_coalescing_expression | @swift_open_end_range_expression | @swift_open_start_range_expression | @swift_playground_literal | @swift_postfix_expression | @swift_prefix_expression | @swift_range_expression | @swift_raw_string_literal | @swift_reserved_word | @swift_selector_expression | @swift_switch_statement | @swift_ternary_expression | @swift_token_bang | @swift_token_bin_literal | @swift_token_boolean_literal | @swift_token_custom_operator | @swift_token_diagnostic | @swift_token_fully_open_range | @swift_token_hex_literal | @swift_token_integer_literal | @swift_token_oct_literal | @swift_token_real_literal | @swift_token_regex_literal | @swift_token_self_expression | @swift_token_simple_identifier | @swift_token_special_literal | @swift_token_super_expression | @swift_try_expression | @swift_tuple_expression | @swift_value_pack_expansion | @swift_value_parameter_pack + +#keyset[swift_as_expression, index] +swift_as_expression_expr( + int swift_as_expression: @swift_as_expression ref, + int index: int ref, + unique int expr: @swift_as_expression_expr_type ref +); + +@swift_as_expression_name_type = @swift_array_type | @swift_dictionary_type | @swift_existential_type | @swift_function_type | @swift_metatype | @swift_opaque_type | @swift_optional_type | @swift_protocol_composition_type | @swift_suppressed_constraint | @swift_tuple_type | @swift_type_pack_expansion | @swift_type_parameter_pack | @swift_user_type + +@swift_as_expression_type_type = @swift_array_type | @swift_dictionary_type | @swift_existential_type | @swift_function_type | @swift_metatype | @swift_opaque_type | @swift_optional_type | @swift_protocol_composition_type | @swift_suppressed_constraint | @swift_tuple_type | @swift_type_modifiers | @swift_type_pack_expansion | @swift_type_parameter_pack | @swift_user_type + +#keyset[swift_as_expression, index] +swift_as_expression_type( + int swift_as_expression: @swift_as_expression ref, + int index: int ref, + unique int type__: @swift_as_expression_type_type ref +); + +swift_as_expression_def( + unique int id: @swift_as_expression, + int name: @swift_as_expression_name_type ref, + int child: @swift_token_as_operator ref +); + +case @swift_assignment.operator of + 0 = @swift_assignment_percentequal +| 1 = @swift_assignment_starequal +| 2 = @swift_assignment_plusequal +| 3 = @swift_assignment_minusequal +| 4 = @swift_assignment_slashequal +| 5 = @swift_assignment_equal +; + + +@swift_assignment_result_type = @swift_additive_expression | @swift_array_literal | @swift_as_expression | @swift_assignment | @swift_await_expression | @swift_bitwise_operation | @swift_call_expression | @swift_check_expression | @swift_comparison_expression | @swift_conjunction_expression | @swift_constructor_expression | @swift_dictionary_literal | @swift_directive | @swift_disjunction_expression | @swift_equality_expression | @swift_if_statement | @swift_infix_expression | @swift_key_path_expression | @swift_key_path_string_expression | @swift_lambda_literal | @swift_line_string_literal | @swift_macro_invocation | @swift_multi_line_string_literal | @swift_multiplicative_expression | @swift_navigation_expression | @swift_nil_coalescing_expression | @swift_open_end_range_expression | @swift_open_start_range_expression | @swift_playground_literal | @swift_postfix_expression | @swift_prefix_expression | @swift_range_expression | @swift_raw_string_literal | @swift_reserved_word | @swift_selector_expression | @swift_switch_statement | @swift_ternary_expression | @swift_token_bang | @swift_token_bin_literal | @swift_token_boolean_literal | @swift_token_custom_operator | @swift_token_diagnostic | @swift_token_fully_open_range | @swift_token_hex_literal | @swift_token_integer_literal | @swift_token_oct_literal | @swift_token_real_literal | @swift_token_regex_literal | @swift_token_self_expression | @swift_token_simple_identifier | @swift_token_special_literal | @swift_token_super_expression | @swift_try_expression | @swift_tuple_expression | @swift_value_pack_expansion | @swift_value_parameter_pack + +#keyset[swift_assignment, index] +swift_assignment_result( + int swift_assignment: @swift_assignment ref, + int index: int ref, + unique int result: @swift_assignment_result_type ref +); + +swift_assignment_def( + unique int id: @swift_assignment, + int operator: int ref, + int target: @swift_directly_assignable_expression ref +); + +@swift_associatedtype_declaration_default_value_type = @swift_array_type | @swift_dictionary_type | @swift_existential_type | @swift_function_type | @swift_metatype | @swift_opaque_type | @swift_optional_type | @swift_protocol_composition_type | @swift_suppressed_constraint | @swift_tuple_type | @swift_type_modifiers | @swift_type_pack_expansion | @swift_type_parameter_pack | @swift_user_type + +#keyset[swift_associatedtype_declaration, index] +swift_associatedtype_declaration_default_value( + int swift_associatedtype_declaration: @swift_associatedtype_declaration ref, + int index: int ref, + unique int default_value: @swift_associatedtype_declaration_default_value_type ref +); + +@swift_associatedtype_declaration_must_inherit_type = @swift_array_type | @swift_dictionary_type | @swift_existential_type | @swift_function_type | @swift_metatype | @swift_opaque_type | @swift_optional_type | @swift_protocol_composition_type | @swift_suppressed_constraint | @swift_tuple_type | @swift_type_modifiers | @swift_type_pack_expansion | @swift_type_parameter_pack | @swift_user_type + +#keyset[swift_associatedtype_declaration, index] +swift_associatedtype_declaration_must_inherit( + int swift_associatedtype_declaration: @swift_associatedtype_declaration ref, + int index: int ref, + unique int must_inherit: @swift_associatedtype_declaration_must_inherit_type ref +); + +@swift_associatedtype_declaration_name_type = @swift_array_type | @swift_dictionary_type | @swift_existential_type | @swift_function_type | @swift_metatype | @swift_opaque_type | @swift_optional_type | @swift_protocol_composition_type | @swift_suppressed_constraint | @swift_token_type_identifier | @swift_tuple_type | @swift_type_pack_expansion | @swift_type_parameter_pack | @swift_user_type + +#keyset[swift_associatedtype_declaration, index] +swift_associatedtype_declaration_name( + int swift_associatedtype_declaration: @swift_associatedtype_declaration ref, + int index: int ref, + unique int name: @swift_associatedtype_declaration_name_type ref +); + +@swift_associatedtype_declaration_child_type = @swift_modifiers | @swift_type_constraints + +#keyset[swift_associatedtype_declaration, index] +swift_associatedtype_declaration_child( + int swift_associatedtype_declaration: @swift_associatedtype_declaration ref, + int index: int ref, + unique int child: @swift_associatedtype_declaration_child_type ref +); + +swift_associatedtype_declaration_def( + unique int id: @swift_associatedtype_declaration +); + +@swift_attribute_child_type = @swift_additive_expression | @swift_array_literal | @swift_as_expression | @swift_assignment | @swift_await_expression | @swift_bitwise_operation | @swift_call_expression | @swift_check_expression | @swift_comparison_expression | @swift_conjunction_expression | @swift_constructor_expression | @swift_dictionary_literal | @swift_directive | @swift_disjunction_expression | @swift_equality_expression | @swift_if_statement | @swift_infix_expression | @swift_key_path_expression | @swift_key_path_string_expression | @swift_lambda_literal | @swift_line_string_literal | @swift_macro_invocation | @swift_multi_line_string_literal | @swift_multiplicative_expression | @swift_navigation_expression | @swift_nil_coalescing_expression | @swift_open_end_range_expression | @swift_open_start_range_expression | @swift_playground_literal | @swift_postfix_expression | @swift_prefix_expression | @swift_range_expression | @swift_raw_string_literal | @swift_selector_expression | @swift_switch_statement | @swift_ternary_expression | @swift_token_bang | @swift_token_bin_literal | @swift_token_boolean_literal | @swift_token_custom_operator | @swift_token_diagnostic | @swift_token_fully_open_range | @swift_token_hex_literal | @swift_token_integer_literal | @swift_token_oct_literal | @swift_token_real_literal | @swift_token_regex_literal | @swift_token_self_expression | @swift_token_simple_identifier | @swift_token_special_literal | @swift_token_super_expression | @swift_try_expression | @swift_tuple_expression | @swift_user_type | @swift_value_pack_expansion | @swift_value_parameter_pack + +#keyset[swift_attribute, index] +swift_attribute_child( + int swift_attribute: @swift_attribute ref, + int index: int ref, + unique int child: @swift_attribute_child_type ref +); + +swift_attribute_def( + unique int id: @swift_attribute +); + +@swift_availability_condition_child_type = @swift_identifier | @swift_token_integer_literal + +#keyset[swift_availability_condition, index] +swift_availability_condition_child( + int swift_availability_condition: @swift_availability_condition ref, + int index: int ref, + unique int child: @swift_availability_condition_child_type ref +); + +swift_availability_condition_def( + unique int id: @swift_availability_condition +); + +@swift_await_expression_expr_type = @swift_additive_expression | @swift_array_literal | @swift_as_expression | @swift_assignment | @swift_await_expression | @swift_bitwise_operation | @swift_call_expression | @swift_check_expression | @swift_comparison_expression | @swift_conjunction_expression | @swift_constructor_expression | @swift_dictionary_literal | @swift_directive | @swift_disjunction_expression | @swift_equality_expression | @swift_if_statement | @swift_infix_expression | @swift_key_path_expression | @swift_key_path_string_expression | @swift_lambda_literal | @swift_line_string_literal | @swift_macro_invocation | @swift_multi_line_string_literal | @swift_multiplicative_expression | @swift_navigation_expression | @swift_nil_coalescing_expression | @swift_open_end_range_expression | @swift_open_start_range_expression | @swift_playground_literal | @swift_postfix_expression | @swift_prefix_expression | @swift_range_expression | @swift_raw_string_literal | @swift_reserved_word | @swift_selector_expression | @swift_switch_statement | @swift_ternary_expression | @swift_token_bang | @swift_token_bin_literal | @swift_token_boolean_literal | @swift_token_custom_operator | @swift_token_diagnostic | @swift_token_fully_open_range | @swift_token_hex_literal | @swift_token_integer_literal | @swift_token_oct_literal | @swift_token_real_literal | @swift_token_regex_literal | @swift_token_self_expression | @swift_token_simple_identifier | @swift_token_special_literal | @swift_token_super_expression | @swift_try_expression | @swift_tuple_expression | @swift_value_pack_expansion | @swift_value_parameter_pack + +#keyset[swift_await_expression, index] +swift_await_expression_expr( + int swift_await_expression: @swift_await_expression ref, + int index: int ref, + unique int expr: @swift_await_expression_expr_type ref +); + +@swift_await_expression_child_type = @swift_additive_expression | @swift_array_literal | @swift_as_expression | @swift_assignment | @swift_await_expression | @swift_bitwise_operation | @swift_call_expression | @swift_check_expression | @swift_comparison_expression | @swift_conjunction_expression | @swift_constructor_expression | @swift_dictionary_literal | @swift_directive | @swift_disjunction_expression | @swift_equality_expression | @swift_if_statement | @swift_infix_expression | @swift_key_path_expression | @swift_key_path_string_expression | @swift_lambda_literal | @swift_line_string_literal | @swift_macro_invocation | @swift_multi_line_string_literal | @swift_multiplicative_expression | @swift_navigation_expression | @swift_nil_coalescing_expression | @swift_open_end_range_expression | @swift_open_start_range_expression | @swift_playground_literal | @swift_postfix_expression | @swift_prefix_expression | @swift_range_expression | @swift_raw_string_literal | @swift_selector_expression | @swift_switch_statement | @swift_ternary_expression | @swift_token_bang | @swift_token_bin_literal | @swift_token_boolean_literal | @swift_token_custom_operator | @swift_token_diagnostic | @swift_token_fully_open_range | @swift_token_hex_literal | @swift_token_integer_literal | @swift_token_oct_literal | @swift_token_real_literal | @swift_token_regex_literal | @swift_token_self_expression | @swift_token_simple_identifier | @swift_token_special_literal | @swift_token_super_expression | @swift_try_expression | @swift_tuple_expression | @swift_value_pack_expansion | @swift_value_parameter_pack + +swift_await_expression_child( + unique int swift_await_expression: @swift_await_expression ref, + unique int child: @swift_await_expression_child_type ref +); + +swift_await_expression_def( + unique int id: @swift_await_expression +); + +@swift_bitwise_operation_lhs_type = @swift_additive_expression | @swift_array_literal | @swift_as_expression | @swift_assignment | @swift_await_expression | @swift_bitwise_operation | @swift_call_expression | @swift_check_expression | @swift_comparison_expression | @swift_conjunction_expression | @swift_constructor_expression | @swift_dictionary_literal | @swift_directive | @swift_disjunction_expression | @swift_equality_expression | @swift_if_statement | @swift_infix_expression | @swift_key_path_expression | @swift_key_path_string_expression | @swift_lambda_literal | @swift_line_string_literal | @swift_macro_invocation | @swift_multi_line_string_literal | @swift_multiplicative_expression | @swift_navigation_expression | @swift_nil_coalescing_expression | @swift_open_end_range_expression | @swift_open_start_range_expression | @swift_playground_literal | @swift_postfix_expression | @swift_prefix_expression | @swift_range_expression | @swift_raw_string_literal | @swift_reserved_word | @swift_selector_expression | @swift_switch_statement | @swift_ternary_expression | @swift_token_bang | @swift_token_bin_literal | @swift_token_boolean_literal | @swift_token_custom_operator | @swift_token_diagnostic | @swift_token_fully_open_range | @swift_token_hex_literal | @swift_token_integer_literal | @swift_token_oct_literal | @swift_token_real_literal | @swift_token_regex_literal | @swift_token_self_expression | @swift_token_simple_identifier | @swift_token_special_literal | @swift_token_super_expression | @swift_try_expression | @swift_tuple_expression | @swift_value_pack_expansion | @swift_value_parameter_pack + +#keyset[swift_bitwise_operation, index] +swift_bitwise_operation_lhs( + int swift_bitwise_operation: @swift_bitwise_operation ref, + int index: int ref, + unique int lhs: @swift_bitwise_operation_lhs_type ref +); + +case @swift_bitwise_operation.op of + 0 = @swift_bitwise_operation_ampersand +| 1 = @swift_bitwise_operation_langlelangle +| 2 = @swift_bitwise_operation_ranglerangle +| 3 = @swift_bitwise_operation_caret +| 4 = @swift_bitwise_operation_pipe +; + + +@swift_bitwise_operation_rhs_type = @swift_additive_expression | @swift_array_literal | @swift_as_expression | @swift_assignment | @swift_await_expression | @swift_bitwise_operation | @swift_call_expression | @swift_check_expression | @swift_comparison_expression | @swift_conjunction_expression | @swift_constructor_expression | @swift_dictionary_literal | @swift_directive | @swift_disjunction_expression | @swift_equality_expression | @swift_if_statement | @swift_infix_expression | @swift_key_path_expression | @swift_key_path_string_expression | @swift_lambda_literal | @swift_line_string_literal | @swift_macro_invocation | @swift_multi_line_string_literal | @swift_multiplicative_expression | @swift_navigation_expression | @swift_nil_coalescing_expression | @swift_open_end_range_expression | @swift_open_start_range_expression | @swift_playground_literal | @swift_postfix_expression | @swift_prefix_expression | @swift_range_expression | @swift_raw_string_literal | @swift_reserved_word | @swift_selector_expression | @swift_switch_statement | @swift_ternary_expression | @swift_token_bang | @swift_token_bin_literal | @swift_token_boolean_literal | @swift_token_custom_operator | @swift_token_diagnostic | @swift_token_fully_open_range | @swift_token_hex_literal | @swift_token_integer_literal | @swift_token_oct_literal | @swift_token_real_literal | @swift_token_regex_literal | @swift_token_self_expression | @swift_token_simple_identifier | @swift_token_special_literal | @swift_token_super_expression | @swift_try_expression | @swift_tuple_expression | @swift_value_pack_expansion | @swift_value_parameter_pack + +#keyset[swift_bitwise_operation, index] +swift_bitwise_operation_rhs( + int swift_bitwise_operation: @swift_bitwise_operation ref, + int index: int ref, + unique int rhs: @swift_bitwise_operation_rhs_type ref +); + +swift_bitwise_operation_def( + unique int id: @swift_bitwise_operation, + int op: int ref +); + +@swift_call_expression_child_type = @swift_additive_expression | @swift_array_literal | @swift_as_expression | @swift_assignment | @swift_await_expression | @swift_bitwise_operation | @swift_call_expression | @swift_call_suffix | @swift_check_expression | @swift_comparison_expression | @swift_conjunction_expression | @swift_constructor_expression | @swift_dictionary_literal | @swift_directive | @swift_disjunction_expression | @swift_equality_expression | @swift_if_statement | @swift_infix_expression | @swift_key_path_expression | @swift_key_path_string_expression | @swift_lambda_literal | @swift_line_string_literal | @swift_macro_invocation | @swift_multi_line_string_literal | @swift_multiplicative_expression | @swift_navigation_expression | @swift_nil_coalescing_expression | @swift_open_end_range_expression | @swift_open_start_range_expression | @swift_playground_literal | @swift_postfix_expression | @swift_prefix_expression | @swift_range_expression | @swift_raw_string_literal | @swift_selector_expression | @swift_switch_statement | @swift_ternary_expression | @swift_token_bang | @swift_token_bin_literal | @swift_token_boolean_literal | @swift_token_custom_operator | @swift_token_diagnostic | @swift_token_fully_open_range | @swift_token_hex_literal | @swift_token_integer_literal | @swift_token_oct_literal | @swift_token_real_literal | @swift_token_regex_literal | @swift_token_self_expression | @swift_token_simple_identifier | @swift_token_special_literal | @swift_token_super_expression | @swift_try_expression | @swift_tuple_expression | @swift_value_pack_expansion | @swift_value_parameter_pack + +#keyset[swift_call_expression, index] +swift_call_expression_child( + int swift_call_expression: @swift_call_expression ref, + int index: int ref, + unique int child: @swift_call_expression_child_type ref +); + +swift_call_expression_def( + unique int id: @swift_call_expression +); + +#keyset[swift_call_suffix, index] +swift_call_suffix_name( + int swift_call_suffix: @swift_call_suffix ref, + int index: int ref, + unique int name: @swift_token_simple_identifier ref +); + +@swift_call_suffix_child_type = @swift_lambda_literal | @swift_value_arguments + +#keyset[swift_call_suffix, index] +swift_call_suffix_child( + int swift_call_suffix: @swift_call_suffix ref, + int index: int ref, + unique int child: @swift_call_suffix_child_type ref +); + +swift_call_suffix_def( + unique int id: @swift_call_suffix +); + +#keyset[swift_capture_list, index] +swift_capture_list_child( + int swift_capture_list: @swift_capture_list ref, + int index: int ref, + unique int child: @swift_capture_list_item ref +); + +swift_capture_list_def( + unique int id: @swift_capture_list +); + +@swift_capture_list_item_name_type = @swift_token_self_expression | @swift_token_simple_identifier + +@swift_capture_list_item_value_type = @swift_additive_expression | @swift_array_literal | @swift_as_expression | @swift_assignment | @swift_await_expression | @swift_bitwise_operation | @swift_call_expression | @swift_check_expression | @swift_comparison_expression | @swift_conjunction_expression | @swift_constructor_expression | @swift_dictionary_literal | @swift_directive | @swift_disjunction_expression | @swift_equality_expression | @swift_if_statement | @swift_infix_expression | @swift_key_path_expression | @swift_key_path_string_expression | @swift_lambda_literal | @swift_line_string_literal | @swift_macro_invocation | @swift_multi_line_string_literal | @swift_multiplicative_expression | @swift_navigation_expression | @swift_nil_coalescing_expression | @swift_open_end_range_expression | @swift_open_start_range_expression | @swift_playground_literal | @swift_postfix_expression | @swift_prefix_expression | @swift_range_expression | @swift_raw_string_literal | @swift_reserved_word | @swift_selector_expression | @swift_switch_statement | @swift_ternary_expression | @swift_token_bang | @swift_token_bin_literal | @swift_token_boolean_literal | @swift_token_custom_operator | @swift_token_diagnostic | @swift_token_fully_open_range | @swift_token_hex_literal | @swift_token_integer_literal | @swift_token_oct_literal | @swift_token_real_literal | @swift_token_regex_literal | @swift_token_self_expression | @swift_token_simple_identifier | @swift_token_special_literal | @swift_token_super_expression | @swift_try_expression | @swift_tuple_expression | @swift_value_pack_expansion | @swift_value_parameter_pack + +#keyset[swift_capture_list_item, index] +swift_capture_list_item_value( + int swift_capture_list_item: @swift_capture_list_item ref, + int index: int ref, + unique int value: @swift_capture_list_item_value_type ref +); + +swift_capture_list_item_child( + unique int swift_capture_list_item: @swift_capture_list_item ref, + unique int child: @swift_token_ownership_modifier ref +); + +swift_capture_list_item_def( + unique int id: @swift_capture_list_item, + int name: @swift_capture_list_item_name_type ref +); + +swift_catch_block_error( + unique int swift_catch_block: @swift_catch_block ref, + unique int error: @swift_pattern ref +); + +@swift_catch_block_child_type = @swift_statements | @swift_token_catch_keyword | @swift_where_clause + +#keyset[swift_catch_block, index] +swift_catch_block_child( + int swift_catch_block: @swift_catch_block ref, + int index: int ref, + unique int child: @swift_catch_block_child_type ref +); + +swift_catch_block_def( + unique int id: @swift_catch_block +); + +@swift_check_expression_name_type = @swift_array_type | @swift_dictionary_type | @swift_existential_type | @swift_function_type | @swift_metatype | @swift_opaque_type | @swift_optional_type | @swift_protocol_composition_type | @swift_suppressed_constraint | @swift_tuple_type | @swift_type_pack_expansion | @swift_type_parameter_pack | @swift_user_type + +case @swift_check_expression.op of + 0 = @swift_check_expression_is +; + + +@swift_check_expression_target_type = @swift_additive_expression | @swift_array_literal | @swift_as_expression | @swift_assignment | @swift_await_expression | @swift_bitwise_operation | @swift_call_expression | @swift_check_expression | @swift_comparison_expression | @swift_conjunction_expression | @swift_constructor_expression | @swift_dictionary_literal | @swift_directive | @swift_disjunction_expression | @swift_equality_expression | @swift_if_statement | @swift_infix_expression | @swift_key_path_expression | @swift_key_path_string_expression | @swift_lambda_literal | @swift_line_string_literal | @swift_macro_invocation | @swift_multi_line_string_literal | @swift_multiplicative_expression | @swift_navigation_expression | @swift_nil_coalescing_expression | @swift_open_end_range_expression | @swift_open_start_range_expression | @swift_playground_literal | @swift_postfix_expression | @swift_prefix_expression | @swift_range_expression | @swift_raw_string_literal | @swift_reserved_word | @swift_selector_expression | @swift_switch_statement | @swift_ternary_expression | @swift_token_bang | @swift_token_bin_literal | @swift_token_boolean_literal | @swift_token_custom_operator | @swift_token_diagnostic | @swift_token_fully_open_range | @swift_token_hex_literal | @swift_token_integer_literal | @swift_token_oct_literal | @swift_token_real_literal | @swift_token_regex_literal | @swift_token_self_expression | @swift_token_simple_identifier | @swift_token_special_literal | @swift_token_super_expression | @swift_try_expression | @swift_tuple_expression | @swift_value_pack_expansion | @swift_value_parameter_pack + +#keyset[swift_check_expression, index] +swift_check_expression_target( + int swift_check_expression: @swift_check_expression ref, + int index: int ref, + unique int target: @swift_check_expression_target_type ref +); + +@swift_check_expression_type_type = @swift_array_type | @swift_dictionary_type | @swift_existential_type | @swift_function_type | @swift_metatype | @swift_opaque_type | @swift_optional_type | @swift_protocol_composition_type | @swift_suppressed_constraint | @swift_tuple_type | @swift_type_modifiers | @swift_type_pack_expansion | @swift_type_parameter_pack | @swift_user_type + +#keyset[swift_check_expression, index] +swift_check_expression_type( + int swift_check_expression: @swift_check_expression ref, + int index: int ref, + unique int type__: @swift_check_expression_type_type ref +); + +swift_check_expression_def( + unique int id: @swift_check_expression, + int name: @swift_check_expression_name_type ref, + int op: int ref +); + +@swift_class_body_child_type = @swift_associatedtype_declaration | @swift_class_declaration | @swift_deinit_declaration | @swift_function_declaration | @swift_import_declaration | @swift_init_declaration | @swift_operator_declaration | @swift_precedence_group_declaration | @swift_property_declaration | @swift_protocol_declaration | @swift_subscript_declaration | @swift_token_multiline_comment | @swift_typealias_declaration + +#keyset[swift_class_body, index] +swift_class_body_child( + int swift_class_body: @swift_class_body ref, + int index: int ref, + unique int child: @swift_class_body_child_type ref +); + +swift_class_body_def( + unique int id: @swift_class_body +); + +@swift_class_declaration_body_type = @swift_class_body | @swift_enum_class_body + +case @swift_class_declaration.declaration_kind of + 0 = @swift_class_declaration_actor +| 1 = @swift_class_declaration_class +| 2 = @swift_class_declaration_enum +| 3 = @swift_class_declaration_extension +| 4 = @swift_class_declaration_struct +; + + +@swift_class_declaration_name_type = @swift_array_type | @swift_dictionary_type | @swift_existential_type | @swift_function_type | @swift_metatype | @swift_opaque_type | @swift_optional_type | @swift_protocol_composition_type | @swift_suppressed_constraint | @swift_token_type_identifier | @swift_tuple_type | @swift_type_pack_expansion | @swift_type_parameter_pack | @swift_user_type + +@swift_class_declaration_child_type = @swift_attribute | @swift_inheritance_specifier | @swift_modifiers | @swift_token_inheritance_modifier | @swift_token_ownership_modifier | @swift_token_property_behavior_modifier | @swift_type_constraints | @swift_type_parameters + +#keyset[swift_class_declaration, index] +swift_class_declaration_child( + int swift_class_declaration: @swift_class_declaration ref, + int index: int ref, + unique int child: @swift_class_declaration_child_type ref +); + +swift_class_declaration_def( + unique int id: @swift_class_declaration, + int body: @swift_class_declaration_body_type ref, + int declaration_kind: int ref, + int name: @swift_class_declaration_name_type ref +); + +@swift_comparison_expression_lhs_type = @swift_additive_expression | @swift_array_literal | @swift_as_expression | @swift_assignment | @swift_await_expression | @swift_bitwise_operation | @swift_call_expression | @swift_check_expression | @swift_comparison_expression | @swift_conjunction_expression | @swift_constructor_expression | @swift_dictionary_literal | @swift_directive | @swift_disjunction_expression | @swift_equality_expression | @swift_if_statement | @swift_infix_expression | @swift_key_path_expression | @swift_key_path_string_expression | @swift_lambda_literal | @swift_line_string_literal | @swift_macro_invocation | @swift_multi_line_string_literal | @swift_multiplicative_expression | @swift_navigation_expression | @swift_nil_coalescing_expression | @swift_open_end_range_expression | @swift_open_start_range_expression | @swift_playground_literal | @swift_postfix_expression | @swift_prefix_expression | @swift_range_expression | @swift_raw_string_literal | @swift_reserved_word | @swift_selector_expression | @swift_switch_statement | @swift_ternary_expression | @swift_token_bang | @swift_token_bin_literal | @swift_token_boolean_literal | @swift_token_custom_operator | @swift_token_diagnostic | @swift_token_fully_open_range | @swift_token_hex_literal | @swift_token_integer_literal | @swift_token_oct_literal | @swift_token_real_literal | @swift_token_regex_literal | @swift_token_self_expression | @swift_token_simple_identifier | @swift_token_special_literal | @swift_token_super_expression | @swift_try_expression | @swift_tuple_expression | @swift_value_pack_expansion | @swift_value_parameter_pack + +#keyset[swift_comparison_expression, index] +swift_comparison_expression_lhs( + int swift_comparison_expression: @swift_comparison_expression ref, + int index: int ref, + unique int lhs: @swift_comparison_expression_lhs_type ref +); + +case @swift_comparison_expression.op of + 0 = @swift_comparison_expression_langle +| 1 = @swift_comparison_expression_langleequal +| 2 = @swift_comparison_expression_rangle +| 3 = @swift_comparison_expression_rangleequal +; + + +@swift_comparison_expression_rhs_type = @swift_additive_expression | @swift_array_literal | @swift_as_expression | @swift_assignment | @swift_await_expression | @swift_bitwise_operation | @swift_call_expression | @swift_check_expression | @swift_comparison_expression | @swift_conjunction_expression | @swift_constructor_expression | @swift_dictionary_literal | @swift_directive | @swift_disjunction_expression | @swift_equality_expression | @swift_if_statement | @swift_infix_expression | @swift_key_path_expression | @swift_key_path_string_expression | @swift_lambda_literal | @swift_line_string_literal | @swift_macro_invocation | @swift_multi_line_string_literal | @swift_multiplicative_expression | @swift_navigation_expression | @swift_nil_coalescing_expression | @swift_open_end_range_expression | @swift_open_start_range_expression | @swift_playground_literal | @swift_postfix_expression | @swift_prefix_expression | @swift_range_expression | @swift_raw_string_literal | @swift_reserved_word | @swift_selector_expression | @swift_switch_statement | @swift_ternary_expression | @swift_token_bang | @swift_token_bin_literal | @swift_token_boolean_literal | @swift_token_custom_operator | @swift_token_diagnostic | @swift_token_fully_open_range | @swift_token_hex_literal | @swift_token_integer_literal | @swift_token_oct_literal | @swift_token_real_literal | @swift_token_regex_literal | @swift_token_self_expression | @swift_token_simple_identifier | @swift_token_special_literal | @swift_token_super_expression | @swift_try_expression | @swift_tuple_expression | @swift_value_pack_expansion | @swift_value_parameter_pack + +#keyset[swift_comparison_expression, index] +swift_comparison_expression_rhs( + int swift_comparison_expression: @swift_comparison_expression ref, + int index: int ref, + unique int rhs: @swift_comparison_expression_rhs_type ref +); + +swift_comparison_expression_def( + unique int id: @swift_comparison_expression, + int op: int ref +); + +@swift_computed_getter_child_type = @swift_attribute | @swift_getter_specifier | @swift_statements + +#keyset[swift_computed_getter, index] +swift_computed_getter_child( + int swift_computed_getter: @swift_computed_getter ref, + int index: int ref, + unique int child: @swift_computed_getter_child_type ref +); + +swift_computed_getter_def( + unique int id: @swift_computed_getter +); + +@swift_computed_modify_child_type = @swift_attribute | @swift_modify_specifier | @swift_statements + +#keyset[swift_computed_modify, index] +swift_computed_modify_child( + int swift_computed_modify: @swift_computed_modify ref, + int index: int ref, + unique int child: @swift_computed_modify_child_type ref +); + +swift_computed_modify_def( + unique int id: @swift_computed_modify +); + +@swift_computed_property_child_type = @swift_computed_getter | @swift_computed_modify | @swift_computed_setter | @swift_statements + +#keyset[swift_computed_property, index] +swift_computed_property_child( + int swift_computed_property: @swift_computed_property ref, + int index: int ref, + unique int child: @swift_computed_property_child_type ref +); + +swift_computed_property_def( + unique int id: @swift_computed_property +); + +@swift_computed_setter_child_type = @swift_attribute | @swift_setter_specifier | @swift_statements | @swift_token_simple_identifier + +#keyset[swift_computed_setter, index] +swift_computed_setter_child( + int swift_computed_setter: @swift_computed_setter ref, + int index: int ref, + unique int child: @swift_computed_setter_child_type ref +); + +swift_computed_setter_def( + unique int id: @swift_computed_setter +); + +@swift_conjunction_expression_lhs_type = @swift_additive_expression | @swift_array_literal | @swift_as_expression | @swift_assignment | @swift_await_expression | @swift_bitwise_operation | @swift_call_expression | @swift_check_expression | @swift_comparison_expression | @swift_conjunction_expression | @swift_constructor_expression | @swift_dictionary_literal | @swift_directive | @swift_disjunction_expression | @swift_equality_expression | @swift_if_statement | @swift_infix_expression | @swift_key_path_expression | @swift_key_path_string_expression | @swift_lambda_literal | @swift_line_string_literal | @swift_macro_invocation | @swift_multi_line_string_literal | @swift_multiplicative_expression | @swift_navigation_expression | @swift_nil_coalescing_expression | @swift_open_end_range_expression | @swift_open_start_range_expression | @swift_playground_literal | @swift_postfix_expression | @swift_prefix_expression | @swift_range_expression | @swift_raw_string_literal | @swift_reserved_word | @swift_selector_expression | @swift_switch_statement | @swift_ternary_expression | @swift_token_bang | @swift_token_bin_literal | @swift_token_boolean_literal | @swift_token_custom_operator | @swift_token_diagnostic | @swift_token_fully_open_range | @swift_token_hex_literal | @swift_token_integer_literal | @swift_token_oct_literal | @swift_token_real_literal | @swift_token_regex_literal | @swift_token_self_expression | @swift_token_simple_identifier | @swift_token_special_literal | @swift_token_super_expression | @swift_try_expression | @swift_tuple_expression | @swift_value_pack_expansion | @swift_value_parameter_pack + +#keyset[swift_conjunction_expression, index] +swift_conjunction_expression_lhs( + int swift_conjunction_expression: @swift_conjunction_expression ref, + int index: int ref, + unique int lhs: @swift_conjunction_expression_lhs_type ref +); + +case @swift_conjunction_expression.op of + 0 = @swift_conjunction_expression_ampersandampersand +; + + +@swift_conjunction_expression_rhs_type = @swift_additive_expression | @swift_array_literal | @swift_as_expression | @swift_assignment | @swift_await_expression | @swift_bitwise_operation | @swift_call_expression | @swift_check_expression | @swift_comparison_expression | @swift_conjunction_expression | @swift_constructor_expression | @swift_dictionary_literal | @swift_directive | @swift_disjunction_expression | @swift_equality_expression | @swift_if_statement | @swift_infix_expression | @swift_key_path_expression | @swift_key_path_string_expression | @swift_lambda_literal | @swift_line_string_literal | @swift_macro_invocation | @swift_multi_line_string_literal | @swift_multiplicative_expression | @swift_navigation_expression | @swift_nil_coalescing_expression | @swift_open_end_range_expression | @swift_open_start_range_expression | @swift_playground_literal | @swift_postfix_expression | @swift_prefix_expression | @swift_range_expression | @swift_raw_string_literal | @swift_reserved_word | @swift_selector_expression | @swift_switch_statement | @swift_ternary_expression | @swift_token_bang | @swift_token_bin_literal | @swift_token_boolean_literal | @swift_token_custom_operator | @swift_token_diagnostic | @swift_token_fully_open_range | @swift_token_hex_literal | @swift_token_integer_literal | @swift_token_oct_literal | @swift_token_real_literal | @swift_token_regex_literal | @swift_token_self_expression | @swift_token_simple_identifier | @swift_token_special_literal | @swift_token_super_expression | @swift_try_expression | @swift_tuple_expression | @swift_value_pack_expansion | @swift_value_parameter_pack + +#keyset[swift_conjunction_expression, index] +swift_conjunction_expression_rhs( + int swift_conjunction_expression: @swift_conjunction_expression ref, + int index: int ref, + unique int rhs: @swift_conjunction_expression_rhs_type ref +); + +swift_conjunction_expression_def( + unique int id: @swift_conjunction_expression, + int op: int ref +); + +@swift_constructor_expression_constructed_type_type = @swift_array_type | @swift_dictionary_type | @swift_user_type + +swift_constructor_expression_def( + unique int id: @swift_constructor_expression, + int constructed_type: @swift_constructor_expression_constructed_type_type ref, + int child: @swift_constructor_suffix ref +); + +#keyset[swift_constructor_suffix, index] +swift_constructor_suffix_name( + int swift_constructor_suffix: @swift_constructor_suffix ref, + int index: int ref, + unique int name: @swift_token_simple_identifier ref +); + +@swift_constructor_suffix_child_type = @swift_lambda_literal | @swift_value_arguments + +#keyset[swift_constructor_suffix, index] +swift_constructor_suffix_child( + int swift_constructor_suffix: @swift_constructor_suffix ref, + int index: int ref, + unique int child: @swift_constructor_suffix_child_type ref +); + +swift_constructor_suffix_def( + unique int id: @swift_constructor_suffix +); + +@swift_control_transfer_statement_result_type = @swift_additive_expression | @swift_array_literal | @swift_as_expression | @swift_assignment | @swift_await_expression | @swift_bitwise_operation | @swift_call_expression | @swift_check_expression | @swift_comparison_expression | @swift_conjunction_expression | @swift_constructor_expression | @swift_dictionary_literal | @swift_directive | @swift_disjunction_expression | @swift_equality_expression | @swift_if_statement | @swift_infix_expression | @swift_key_path_expression | @swift_key_path_string_expression | @swift_lambda_literal | @swift_line_string_literal | @swift_macro_invocation | @swift_multi_line_string_literal | @swift_multiplicative_expression | @swift_navigation_expression | @swift_nil_coalescing_expression | @swift_open_end_range_expression | @swift_open_start_range_expression | @swift_playground_literal | @swift_postfix_expression | @swift_prefix_expression | @swift_range_expression | @swift_raw_string_literal | @swift_reserved_word | @swift_selector_expression | @swift_switch_statement | @swift_ternary_expression | @swift_token_bang | @swift_token_bin_literal | @swift_token_boolean_literal | @swift_token_custom_operator | @swift_token_diagnostic | @swift_token_fully_open_range | @swift_token_hex_literal | @swift_token_integer_literal | @swift_token_oct_literal | @swift_token_real_literal | @swift_token_regex_literal | @swift_token_self_expression | @swift_token_simple_identifier | @swift_token_special_literal | @swift_token_super_expression | @swift_try_expression | @swift_tuple_expression | @swift_value_pack_expansion | @swift_value_parameter_pack + +#keyset[swift_control_transfer_statement, index] +swift_control_transfer_statement_result( + int swift_control_transfer_statement: @swift_control_transfer_statement ref, + int index: int ref, + unique int result: @swift_control_transfer_statement_result_type ref +); + +@swift_control_transfer_statement_child_type = @swift_additive_expression | @swift_array_literal | @swift_as_expression | @swift_assignment | @swift_await_expression | @swift_bitwise_operation | @swift_call_expression | @swift_check_expression | @swift_comparison_expression | @swift_conjunction_expression | @swift_constructor_expression | @swift_dictionary_literal | @swift_directive | @swift_disjunction_expression | @swift_equality_expression | @swift_if_statement | @swift_infix_expression | @swift_key_path_expression | @swift_key_path_string_expression | @swift_lambda_literal | @swift_line_string_literal | @swift_macro_invocation | @swift_multi_line_string_literal | @swift_multiplicative_expression | @swift_navigation_expression | @swift_nil_coalescing_expression | @swift_open_end_range_expression | @swift_open_start_range_expression | @swift_playground_literal | @swift_postfix_expression | @swift_prefix_expression | @swift_range_expression | @swift_raw_string_literal | @swift_selector_expression | @swift_switch_statement | @swift_ternary_expression | @swift_token_bang | @swift_token_bin_literal | @swift_token_boolean_literal | @swift_token_custom_operator | @swift_token_diagnostic | @swift_token_fully_open_range | @swift_token_hex_literal | @swift_token_integer_literal | @swift_token_oct_literal | @swift_token_real_literal | @swift_token_regex_literal | @swift_token_self_expression | @swift_token_simple_identifier | @swift_token_special_literal | @swift_token_super_expression | @swift_token_throw_keyword | @swift_try_expression | @swift_tuple_expression | @swift_value_pack_expansion | @swift_value_parameter_pack + +#keyset[swift_control_transfer_statement, index] +swift_control_transfer_statement_child( + int swift_control_transfer_statement: @swift_control_transfer_statement ref, + int index: int ref, + unique int child: @swift_control_transfer_statement_child_type ref +); + +swift_control_transfer_statement_def( + unique int id: @swift_control_transfer_statement +); + +swift_deinit_declaration_child( + unique int swift_deinit_declaration: @swift_deinit_declaration ref, + unique int child: @swift_modifiers ref +); + +swift_deinit_declaration_def( + unique int id: @swift_deinit_declaration, + int body: @swift_function_body ref +); + +@swift_deprecated_operator_declaration_body_child_type = @swift_line_string_literal | @swift_multi_line_string_literal | @swift_raw_string_literal | @swift_token_bin_literal | @swift_token_boolean_literal | @swift_token_hex_literal | @swift_token_integer_literal | @swift_token_oct_literal | @swift_token_real_literal | @swift_token_regex_literal | @swift_token_simple_identifier + +#keyset[swift_deprecated_operator_declaration_body, index] +swift_deprecated_operator_declaration_body_child( + int swift_deprecated_operator_declaration_body: @swift_deprecated_operator_declaration_body ref, + int index: int ref, + unique int child: @swift_deprecated_operator_declaration_body_child_type ref +); + +swift_deprecated_operator_declaration_body_def( + unique int id: @swift_deprecated_operator_declaration_body +); + +@swift_dictionary_literal_key_type = @swift_additive_expression | @swift_array_literal | @swift_as_expression | @swift_assignment | @swift_await_expression | @swift_bitwise_operation | @swift_call_expression | @swift_check_expression | @swift_comparison_expression | @swift_conjunction_expression | @swift_constructor_expression | @swift_dictionary_literal | @swift_directive | @swift_disjunction_expression | @swift_equality_expression | @swift_if_statement | @swift_infix_expression | @swift_key_path_expression | @swift_key_path_string_expression | @swift_lambda_literal | @swift_line_string_literal | @swift_macro_invocation | @swift_multi_line_string_literal | @swift_multiplicative_expression | @swift_navigation_expression | @swift_nil_coalescing_expression | @swift_open_end_range_expression | @swift_open_start_range_expression | @swift_playground_literal | @swift_postfix_expression | @swift_prefix_expression | @swift_range_expression | @swift_raw_string_literal | @swift_reserved_word | @swift_selector_expression | @swift_switch_statement | @swift_ternary_expression | @swift_token_bang | @swift_token_bin_literal | @swift_token_boolean_literal | @swift_token_custom_operator | @swift_token_diagnostic | @swift_token_fully_open_range | @swift_token_hex_literal | @swift_token_integer_literal | @swift_token_oct_literal | @swift_token_real_literal | @swift_token_regex_literal | @swift_token_self_expression | @swift_token_simple_identifier | @swift_token_special_literal | @swift_token_super_expression | @swift_try_expression | @swift_tuple_expression | @swift_value_pack_expansion | @swift_value_parameter_pack + +#keyset[swift_dictionary_literal, index] +swift_dictionary_literal_key( + int swift_dictionary_literal: @swift_dictionary_literal ref, + int index: int ref, + unique int key__: @swift_dictionary_literal_key_type ref +); + +@swift_dictionary_literal_value_type = @swift_additive_expression | @swift_array_literal | @swift_as_expression | @swift_assignment | @swift_await_expression | @swift_bitwise_operation | @swift_call_expression | @swift_check_expression | @swift_comparison_expression | @swift_conjunction_expression | @swift_constructor_expression | @swift_dictionary_literal | @swift_directive | @swift_disjunction_expression | @swift_equality_expression | @swift_if_statement | @swift_infix_expression | @swift_key_path_expression | @swift_key_path_string_expression | @swift_lambda_literal | @swift_line_string_literal | @swift_macro_invocation | @swift_multi_line_string_literal | @swift_multiplicative_expression | @swift_navigation_expression | @swift_nil_coalescing_expression | @swift_open_end_range_expression | @swift_open_start_range_expression | @swift_playground_literal | @swift_postfix_expression | @swift_prefix_expression | @swift_range_expression | @swift_raw_string_literal | @swift_reserved_word | @swift_selector_expression | @swift_switch_statement | @swift_ternary_expression | @swift_token_bang | @swift_token_bin_literal | @swift_token_boolean_literal | @swift_token_custom_operator | @swift_token_diagnostic | @swift_token_fully_open_range | @swift_token_hex_literal | @swift_token_integer_literal | @swift_token_oct_literal | @swift_token_real_literal | @swift_token_regex_literal | @swift_token_self_expression | @swift_token_simple_identifier | @swift_token_special_literal | @swift_token_super_expression | @swift_try_expression | @swift_tuple_expression | @swift_value_pack_expansion | @swift_value_parameter_pack + +#keyset[swift_dictionary_literal, index] +swift_dictionary_literal_value( + int swift_dictionary_literal: @swift_dictionary_literal ref, + int index: int ref, + unique int value: @swift_dictionary_literal_value_type ref +); + +swift_dictionary_literal_def( + unique int id: @swift_dictionary_literal +); + +@swift_dictionary_type_key_type = @swift_array_type | @swift_dictionary_type | @swift_existential_type | @swift_function_type | @swift_metatype | @swift_opaque_type | @swift_optional_type | @swift_protocol_composition_type | @swift_suppressed_constraint | @swift_tuple_type | @swift_type_modifiers | @swift_type_pack_expansion | @swift_type_parameter_pack | @swift_user_type + +#keyset[swift_dictionary_type, index] +swift_dictionary_type_key( + int swift_dictionary_type: @swift_dictionary_type ref, + int index: int ref, + unique int key__: @swift_dictionary_type_key_type ref +); + +@swift_dictionary_type_name_type = @swift_array_type | @swift_dictionary_type | @swift_existential_type | @swift_function_type | @swift_metatype | @swift_opaque_type | @swift_optional_type | @swift_protocol_composition_type | @swift_suppressed_constraint | @swift_tuple_type | @swift_type_pack_expansion | @swift_type_parameter_pack | @swift_user_type + +#keyset[swift_dictionary_type, index] +swift_dictionary_type_name( + int swift_dictionary_type: @swift_dictionary_type ref, + int index: int ref, + unique int name: @swift_dictionary_type_name_type ref +); + +@swift_dictionary_type_value_type = @swift_array_type | @swift_dictionary_type | @swift_existential_type | @swift_function_type | @swift_metatype | @swift_opaque_type | @swift_optional_type | @swift_protocol_composition_type | @swift_suppressed_constraint | @swift_tuple_type | @swift_type_modifiers | @swift_type_pack_expansion | @swift_type_parameter_pack | @swift_user_type + +#keyset[swift_dictionary_type, index] +swift_dictionary_type_value( + int swift_dictionary_type: @swift_dictionary_type ref, + int index: int ref, + unique int value: @swift_dictionary_type_value_type ref +); + +swift_dictionary_type_def( + unique int id: @swift_dictionary_type +); + +@swift_didset_clause_child_type = @swift_modifiers | @swift_statements | @swift_token_simple_identifier + +#keyset[swift_didset_clause, index] +swift_didset_clause_child( + int swift_didset_clause: @swift_didset_clause ref, + int index: int ref, + unique int child: @swift_didset_clause_child_type ref +); + +swift_didset_clause_def( + unique int id: @swift_didset_clause +); + +@swift_directive_child_type = @swift_token_boolean_literal | @swift_token_integer_literal | @swift_token_simple_identifier + +#keyset[swift_directive, index] +swift_directive_child( + int swift_directive: @swift_directive ref, + int index: int ref, + unique int child: @swift_directive_child_type ref +); + +swift_directive_def( + unique int id: @swift_directive +); + +@swift_directly_assignable_expression_child_type = @swift_additive_expression | @swift_array_literal | @swift_as_expression | @swift_assignment | @swift_await_expression | @swift_bitwise_operation | @swift_call_expression | @swift_check_expression | @swift_comparison_expression | @swift_conjunction_expression | @swift_constructor_expression | @swift_dictionary_literal | @swift_directive | @swift_disjunction_expression | @swift_equality_expression | @swift_if_statement | @swift_infix_expression | @swift_key_path_expression | @swift_key_path_string_expression | @swift_lambda_literal | @swift_line_string_literal | @swift_macro_invocation | @swift_multi_line_string_literal | @swift_multiplicative_expression | @swift_navigation_expression | @swift_nil_coalescing_expression | @swift_open_end_range_expression | @swift_open_start_range_expression | @swift_playground_literal | @swift_postfix_expression | @swift_prefix_expression | @swift_range_expression | @swift_raw_string_literal | @swift_selector_expression | @swift_switch_statement | @swift_ternary_expression | @swift_token_bang | @swift_token_bin_literal | @swift_token_boolean_literal | @swift_token_custom_operator | @swift_token_diagnostic | @swift_token_fully_open_range | @swift_token_hex_literal | @swift_token_integer_literal | @swift_token_oct_literal | @swift_token_real_literal | @swift_token_regex_literal | @swift_token_self_expression | @swift_token_simple_identifier | @swift_token_special_literal | @swift_token_super_expression | @swift_try_expression | @swift_tuple_expression | @swift_value_pack_expansion | @swift_value_parameter_pack + +swift_directly_assignable_expression_child( + unique int swift_directly_assignable_expression: @swift_directly_assignable_expression ref, + unique int child: @swift_directly_assignable_expression_child_type ref +); + +swift_directly_assignable_expression_def( + unique int id: @swift_directly_assignable_expression +); + +@swift_disjunction_expression_lhs_type = @swift_additive_expression | @swift_array_literal | @swift_as_expression | @swift_assignment | @swift_await_expression | @swift_bitwise_operation | @swift_call_expression | @swift_check_expression | @swift_comparison_expression | @swift_conjunction_expression | @swift_constructor_expression | @swift_dictionary_literal | @swift_directive | @swift_disjunction_expression | @swift_equality_expression | @swift_if_statement | @swift_infix_expression | @swift_key_path_expression | @swift_key_path_string_expression | @swift_lambda_literal | @swift_line_string_literal | @swift_macro_invocation | @swift_multi_line_string_literal | @swift_multiplicative_expression | @swift_navigation_expression | @swift_nil_coalescing_expression | @swift_open_end_range_expression | @swift_open_start_range_expression | @swift_playground_literal | @swift_postfix_expression | @swift_prefix_expression | @swift_range_expression | @swift_raw_string_literal | @swift_reserved_word | @swift_selector_expression | @swift_switch_statement | @swift_ternary_expression | @swift_token_bang | @swift_token_bin_literal | @swift_token_boolean_literal | @swift_token_custom_operator | @swift_token_diagnostic | @swift_token_fully_open_range | @swift_token_hex_literal | @swift_token_integer_literal | @swift_token_oct_literal | @swift_token_real_literal | @swift_token_regex_literal | @swift_token_self_expression | @swift_token_simple_identifier | @swift_token_special_literal | @swift_token_super_expression | @swift_try_expression | @swift_tuple_expression | @swift_value_pack_expansion | @swift_value_parameter_pack + +#keyset[swift_disjunction_expression, index] +swift_disjunction_expression_lhs( + int swift_disjunction_expression: @swift_disjunction_expression ref, + int index: int ref, + unique int lhs: @swift_disjunction_expression_lhs_type ref +); + +case @swift_disjunction_expression.op of + 0 = @swift_disjunction_expression_pipepipe +; + + +@swift_disjunction_expression_rhs_type = @swift_additive_expression | @swift_array_literal | @swift_as_expression | @swift_assignment | @swift_await_expression | @swift_bitwise_operation | @swift_call_expression | @swift_check_expression | @swift_comparison_expression | @swift_conjunction_expression | @swift_constructor_expression | @swift_dictionary_literal | @swift_directive | @swift_disjunction_expression | @swift_equality_expression | @swift_if_statement | @swift_infix_expression | @swift_key_path_expression | @swift_key_path_string_expression | @swift_lambda_literal | @swift_line_string_literal | @swift_macro_invocation | @swift_multi_line_string_literal | @swift_multiplicative_expression | @swift_navigation_expression | @swift_nil_coalescing_expression | @swift_open_end_range_expression | @swift_open_start_range_expression | @swift_playground_literal | @swift_postfix_expression | @swift_prefix_expression | @swift_range_expression | @swift_raw_string_literal | @swift_reserved_word | @swift_selector_expression | @swift_switch_statement | @swift_ternary_expression | @swift_token_bang | @swift_token_bin_literal | @swift_token_boolean_literal | @swift_token_custom_operator | @swift_token_diagnostic | @swift_token_fully_open_range | @swift_token_hex_literal | @swift_token_integer_literal | @swift_token_oct_literal | @swift_token_real_literal | @swift_token_regex_literal | @swift_token_self_expression | @swift_token_simple_identifier | @swift_token_special_literal | @swift_token_super_expression | @swift_try_expression | @swift_tuple_expression | @swift_value_pack_expansion | @swift_value_parameter_pack + +#keyset[swift_disjunction_expression, index] +swift_disjunction_expression_rhs( + int swift_disjunction_expression: @swift_disjunction_expression ref, + int index: int ref, + unique int rhs: @swift_disjunction_expression_rhs_type ref +); + +swift_disjunction_expression_def( + unique int id: @swift_disjunction_expression, + int op: int ref +); + +@swift_do_statement_child_type = @swift_catch_block | @swift_statements + +#keyset[swift_do_statement, index] +swift_do_statement_child( + int swift_do_statement: @swift_do_statement ref, + int index: int ref, + unique int child: @swift_do_statement_child_type ref +); + +swift_do_statement_def( + unique int id: @swift_do_statement +); + +@swift_enum_class_body_child_type = @swift_associatedtype_declaration | @swift_class_declaration | @swift_deinit_declaration | @swift_enum_entry | @swift_function_declaration | @swift_import_declaration | @swift_init_declaration | @swift_operator_declaration | @swift_precedence_group_declaration | @swift_property_declaration | @swift_protocol_declaration | @swift_subscript_declaration | @swift_typealias_declaration + +#keyset[swift_enum_class_body, index] +swift_enum_class_body_child( + int swift_enum_class_body: @swift_enum_class_body ref, + int index: int ref, + unique int child: @swift_enum_class_body_child_type ref +); + +swift_enum_class_body_def( + unique int id: @swift_enum_class_body +); + +#keyset[swift_enum_entry, index] +swift_enum_entry_data_contents( + int swift_enum_entry: @swift_enum_entry ref, + int index: int ref, + unique int data_contents: @swift_enum_type_parameters ref +); + +#keyset[swift_enum_entry, index] +swift_enum_entry_name( + int swift_enum_entry: @swift_enum_entry ref, + int index: int ref, + unique int name: @swift_token_simple_identifier ref +); + +@swift_enum_entry_raw_value_type = @swift_additive_expression | @swift_array_literal | @swift_as_expression | @swift_assignment | @swift_await_expression | @swift_bitwise_operation | @swift_call_expression | @swift_check_expression | @swift_comparison_expression | @swift_conjunction_expression | @swift_constructor_expression | @swift_dictionary_literal | @swift_directive | @swift_disjunction_expression | @swift_equality_expression | @swift_if_statement | @swift_infix_expression | @swift_key_path_expression | @swift_key_path_string_expression | @swift_lambda_literal | @swift_line_string_literal | @swift_macro_invocation | @swift_multi_line_string_literal | @swift_multiplicative_expression | @swift_navigation_expression | @swift_nil_coalescing_expression | @swift_open_end_range_expression | @swift_open_start_range_expression | @swift_playground_literal | @swift_postfix_expression | @swift_prefix_expression | @swift_range_expression | @swift_raw_string_literal | @swift_reserved_word | @swift_selector_expression | @swift_switch_statement | @swift_ternary_expression | @swift_token_bang | @swift_token_bin_literal | @swift_token_boolean_literal | @swift_token_custom_operator | @swift_token_diagnostic | @swift_token_fully_open_range | @swift_token_hex_literal | @swift_token_integer_literal | @swift_token_oct_literal | @swift_token_real_literal | @swift_token_regex_literal | @swift_token_self_expression | @swift_token_simple_identifier | @swift_token_special_literal | @swift_token_super_expression | @swift_try_expression | @swift_tuple_expression | @swift_value_pack_expansion | @swift_value_parameter_pack + +#keyset[swift_enum_entry, index] +swift_enum_entry_raw_value( + int swift_enum_entry: @swift_enum_entry ref, + int index: int ref, + unique int raw_value: @swift_enum_entry_raw_value_type ref +); + +swift_enum_entry_child( + unique int swift_enum_entry: @swift_enum_entry ref, + unique int child: @swift_modifiers ref +); + +swift_enum_entry_def( + unique int id: @swift_enum_entry +); + +@swift_enum_type_parameters_name_type = @swift_array_type | @swift_dictionary_type | @swift_existential_type | @swift_function_type | @swift_metatype | @swift_opaque_type | @swift_optional_type | @swift_protocol_composition_type | @swift_suppressed_constraint | @swift_tuple_type | @swift_type_pack_expansion | @swift_type_parameter_pack | @swift_user_type + +#keyset[swift_enum_type_parameters, index] +swift_enum_type_parameters_name( + int swift_enum_type_parameters: @swift_enum_type_parameters ref, + int index: int ref, + unique int name: @swift_enum_type_parameters_name_type ref +); + +@swift_enum_type_parameters_child_type = @swift_additive_expression | @swift_array_literal | @swift_as_expression | @swift_assignment | @swift_await_expression | @swift_bitwise_operation | @swift_call_expression | @swift_check_expression | @swift_comparison_expression | @swift_conjunction_expression | @swift_constructor_expression | @swift_dictionary_literal | @swift_directive | @swift_disjunction_expression | @swift_equality_expression | @swift_if_statement | @swift_infix_expression | @swift_key_path_expression | @swift_key_path_string_expression | @swift_lambda_literal | @swift_line_string_literal | @swift_macro_invocation | @swift_multi_line_string_literal | @swift_multiplicative_expression | @swift_navigation_expression | @swift_nil_coalescing_expression | @swift_open_end_range_expression | @swift_open_start_range_expression | @swift_playground_literal | @swift_postfix_expression | @swift_prefix_expression | @swift_range_expression | @swift_raw_string_literal | @swift_selector_expression | @swift_switch_statement | @swift_ternary_expression | @swift_token_bang | @swift_token_bin_literal | @swift_token_boolean_literal | @swift_token_custom_operator | @swift_token_diagnostic | @swift_token_fully_open_range | @swift_token_hex_literal | @swift_token_integer_literal | @swift_token_oct_literal | @swift_token_real_literal | @swift_token_regex_literal | @swift_token_self_expression | @swift_token_simple_identifier | @swift_token_special_literal | @swift_token_super_expression | @swift_token_wildcard_pattern | @swift_try_expression | @swift_tuple_expression | @swift_type_modifiers | @swift_value_pack_expansion | @swift_value_parameter_pack + +#keyset[swift_enum_type_parameters, index] +swift_enum_type_parameters_child( + int swift_enum_type_parameters: @swift_enum_type_parameters ref, + int index: int ref, + unique int child: @swift_enum_type_parameters_child_type ref +); + +swift_enum_type_parameters_def( + unique int id: @swift_enum_type_parameters +); + +@swift_equality_constraint_constrained_type_type = @swift_array_type | @swift_dictionary_type | @swift_existential_type | @swift_function_type | @swift_identifier | @swift_metatype | @swift_opaque_type | @swift_optional_type | @swift_protocol_composition_type | @swift_reserved_word | @swift_suppressed_constraint | @swift_token_simple_identifier | @swift_tuple_type | @swift_type_pack_expansion | @swift_type_parameter_pack | @swift_user_type + +#keyset[swift_equality_constraint, index] +swift_equality_constraint_constrained_type( + int swift_equality_constraint: @swift_equality_constraint ref, + int index: int ref, + unique int constrained_type: @swift_equality_constraint_constrained_type_type ref +); + +@swift_equality_constraint_must_equal_type = @swift_array_type | @swift_dictionary_type | @swift_existential_type | @swift_function_type | @swift_metatype | @swift_opaque_type | @swift_optional_type | @swift_protocol_composition_type | @swift_suppressed_constraint | @swift_tuple_type | @swift_type_modifiers | @swift_type_pack_expansion | @swift_type_parameter_pack | @swift_user_type + +#keyset[swift_equality_constraint, index] +swift_equality_constraint_must_equal( + int swift_equality_constraint: @swift_equality_constraint ref, + int index: int ref, + unique int must_equal: @swift_equality_constraint_must_equal_type ref +); + +@swift_equality_constraint_name_type = @swift_array_type | @swift_dictionary_type | @swift_existential_type | @swift_function_type | @swift_metatype | @swift_opaque_type | @swift_optional_type | @swift_protocol_composition_type | @swift_suppressed_constraint | @swift_tuple_type | @swift_type_pack_expansion | @swift_type_parameter_pack | @swift_user_type + +#keyset[swift_equality_constraint, index] +swift_equality_constraint_child( + int swift_equality_constraint: @swift_equality_constraint ref, + int index: int ref, + unique int child: @swift_attribute ref +); + +swift_equality_constraint_def( + unique int id: @swift_equality_constraint, + int name: @swift_equality_constraint_name_type ref +); + +@swift_equality_expression_lhs_type = @swift_additive_expression | @swift_array_literal | @swift_as_expression | @swift_assignment | @swift_await_expression | @swift_bitwise_operation | @swift_call_expression | @swift_check_expression | @swift_comparison_expression | @swift_conjunction_expression | @swift_constructor_expression | @swift_dictionary_literal | @swift_directive | @swift_disjunction_expression | @swift_equality_expression | @swift_if_statement | @swift_infix_expression | @swift_key_path_expression | @swift_key_path_string_expression | @swift_lambda_literal | @swift_line_string_literal | @swift_macro_invocation | @swift_multi_line_string_literal | @swift_multiplicative_expression | @swift_navigation_expression | @swift_nil_coalescing_expression | @swift_open_end_range_expression | @swift_open_start_range_expression | @swift_playground_literal | @swift_postfix_expression | @swift_prefix_expression | @swift_range_expression | @swift_raw_string_literal | @swift_reserved_word | @swift_selector_expression | @swift_switch_statement | @swift_ternary_expression | @swift_token_bang | @swift_token_bin_literal | @swift_token_boolean_literal | @swift_token_custom_operator | @swift_token_diagnostic | @swift_token_fully_open_range | @swift_token_hex_literal | @swift_token_integer_literal | @swift_token_oct_literal | @swift_token_real_literal | @swift_token_regex_literal | @swift_token_self_expression | @swift_token_simple_identifier | @swift_token_special_literal | @swift_token_super_expression | @swift_try_expression | @swift_tuple_expression | @swift_value_pack_expansion | @swift_value_parameter_pack + +#keyset[swift_equality_expression, index] +swift_equality_expression_lhs( + int swift_equality_expression: @swift_equality_expression ref, + int index: int ref, + unique int lhs: @swift_equality_expression_lhs_type ref +); + +case @swift_equality_expression.op of + 0 = @swift_equality_expression_bangequal +| 1 = @swift_equality_expression_bangequalequal +| 2 = @swift_equality_expression_equalequal +| 3 = @swift_equality_expression_equalequalequal +; + + +@swift_equality_expression_rhs_type = @swift_additive_expression | @swift_array_literal | @swift_as_expression | @swift_assignment | @swift_await_expression | @swift_bitwise_operation | @swift_call_expression | @swift_check_expression | @swift_comparison_expression | @swift_conjunction_expression | @swift_constructor_expression | @swift_dictionary_literal | @swift_directive | @swift_disjunction_expression | @swift_equality_expression | @swift_if_statement | @swift_infix_expression | @swift_key_path_expression | @swift_key_path_string_expression | @swift_lambda_literal | @swift_line_string_literal | @swift_macro_invocation | @swift_multi_line_string_literal | @swift_multiplicative_expression | @swift_navigation_expression | @swift_nil_coalescing_expression | @swift_open_end_range_expression | @swift_open_start_range_expression | @swift_playground_literal | @swift_postfix_expression | @swift_prefix_expression | @swift_range_expression | @swift_raw_string_literal | @swift_reserved_word | @swift_selector_expression | @swift_switch_statement | @swift_ternary_expression | @swift_token_bang | @swift_token_bin_literal | @swift_token_boolean_literal | @swift_token_custom_operator | @swift_token_diagnostic | @swift_token_fully_open_range | @swift_token_hex_literal | @swift_token_integer_literal | @swift_token_oct_literal | @swift_token_real_literal | @swift_token_regex_literal | @swift_token_self_expression | @swift_token_simple_identifier | @swift_token_special_literal | @swift_token_super_expression | @swift_try_expression | @swift_tuple_expression | @swift_value_pack_expansion | @swift_value_parameter_pack + +#keyset[swift_equality_expression, index] +swift_equality_expression_rhs( + int swift_equality_expression: @swift_equality_expression ref, + int index: int ref, + unique int rhs: @swift_equality_expression_rhs_type ref +); + +swift_equality_expression_def( + unique int id: @swift_equality_expression, + int op: int ref +); + +@swift_existential_type_child_type = @swift_array_type | @swift_dictionary_type | @swift_existential_type | @swift_function_type | @swift_metatype | @swift_opaque_type | @swift_optional_type | @swift_protocol_composition_type | @swift_suppressed_constraint | @swift_tuple_type | @swift_type_pack_expansion | @swift_type_parameter_pack | @swift_user_type + +swift_existential_type_def( + unique int id: @swift_existential_type, + int child: @swift_existential_type_child_type ref +); + +swift_external_macro_definition_def( + unique int id: @swift_external_macro_definition, + int child: @swift_value_arguments ref +); + +@swift_for_statement_collection_type = @swift_additive_expression | @swift_array_literal | @swift_as_expression | @swift_assignment | @swift_await_expression | @swift_bitwise_operation | @swift_call_expression | @swift_check_expression | @swift_comparison_expression | @swift_conjunction_expression | @swift_constructor_expression | @swift_dictionary_literal | @swift_directive | @swift_disjunction_expression | @swift_equality_expression | @swift_if_statement | @swift_infix_expression | @swift_key_path_expression | @swift_key_path_string_expression | @swift_lambda_literal | @swift_line_string_literal | @swift_macro_invocation | @swift_multi_line_string_literal | @swift_multiplicative_expression | @swift_navigation_expression | @swift_nil_coalescing_expression | @swift_open_end_range_expression | @swift_open_start_range_expression | @swift_playground_literal | @swift_postfix_expression | @swift_prefix_expression | @swift_range_expression | @swift_raw_string_literal | @swift_reserved_word | @swift_selector_expression | @swift_switch_statement | @swift_ternary_expression | @swift_token_bang | @swift_token_bin_literal | @swift_token_boolean_literal | @swift_token_custom_operator | @swift_token_diagnostic | @swift_token_fully_open_range | @swift_token_hex_literal | @swift_token_integer_literal | @swift_token_oct_literal | @swift_token_real_literal | @swift_token_regex_literal | @swift_token_self_expression | @swift_token_simple_identifier | @swift_token_special_literal | @swift_token_super_expression | @swift_try_expression | @swift_tuple_expression | @swift_value_pack_expansion | @swift_value_parameter_pack + +#keyset[swift_for_statement, index] +swift_for_statement_collection( + int swift_for_statement: @swift_for_statement ref, + int index: int ref, + unique int collection: @swift_for_statement_collection_type ref +); + +@swift_for_statement_child_type = @swift_statements | @swift_token_try_operator | @swift_type_annotation | @swift_where_clause + +#keyset[swift_for_statement, index] +swift_for_statement_child( + int swift_for_statement: @swift_for_statement ref, + int index: int ref, + unique int child: @swift_for_statement_child_type ref +); + +swift_for_statement_def( + unique int id: @swift_for_statement, + int item: @swift_pattern ref +); + +swift_function_body_child( + unique int swift_function_body: @swift_function_body ref, + unique int child: @swift_statements ref +); + +swift_function_body_def( + unique int id: @swift_function_body +); + +@swift_function_declaration_default_value_type = @swift_additive_expression | @swift_array_literal | @swift_as_expression | @swift_assignment | @swift_await_expression | @swift_bitwise_operation | @swift_call_expression | @swift_check_expression | @swift_comparison_expression | @swift_conjunction_expression | @swift_constructor_expression | @swift_dictionary_literal | @swift_directive | @swift_disjunction_expression | @swift_equality_expression | @swift_if_statement | @swift_infix_expression | @swift_key_path_expression | @swift_key_path_string_expression | @swift_lambda_literal | @swift_line_string_literal | @swift_macro_invocation | @swift_multi_line_string_literal | @swift_multiplicative_expression | @swift_navigation_expression | @swift_nil_coalescing_expression | @swift_open_end_range_expression | @swift_open_start_range_expression | @swift_playground_literal | @swift_postfix_expression | @swift_prefix_expression | @swift_range_expression | @swift_raw_string_literal | @swift_reserved_word | @swift_selector_expression | @swift_switch_statement | @swift_ternary_expression | @swift_token_bang | @swift_token_bin_literal | @swift_token_boolean_literal | @swift_token_custom_operator | @swift_token_diagnostic | @swift_token_fully_open_range | @swift_token_hex_literal | @swift_token_integer_literal | @swift_token_oct_literal | @swift_token_real_literal | @swift_token_regex_literal | @swift_token_self_expression | @swift_token_simple_identifier | @swift_token_special_literal | @swift_token_super_expression | @swift_try_expression | @swift_tuple_expression | @swift_value_pack_expansion | @swift_value_parameter_pack + +#keyset[swift_function_declaration, index] +swift_function_declaration_default_value( + int swift_function_declaration: @swift_function_declaration ref, + int index: int ref, + unique int default_value: @swift_function_declaration_default_value_type ref +); + +@swift_function_declaration_name_type = @swift_array_type | @swift_dictionary_type | @swift_existential_type | @swift_function_type | @swift_metatype | @swift_opaque_type | @swift_optional_type | @swift_protocol_composition_type | @swift_reserved_word | @swift_suppressed_constraint | @swift_token_bang | @swift_token_custom_operator | @swift_token_simple_identifier | @swift_tuple_type | @swift_type_pack_expansion | @swift_type_parameter_pack | @swift_user_type + +#keyset[swift_function_declaration, index] +swift_function_declaration_name( + int swift_function_declaration: @swift_function_declaration ref, + int index: int ref, + unique int name: @swift_function_declaration_name_type ref +); + +@swift_function_declaration_return_type_type = @swift_array_type | @swift_dictionary_type | @swift_existential_type | @swift_function_type | @swift_metatype | @swift_opaque_type | @swift_optional_type | @swift_protocol_composition_type | @swift_reserved_word | @swift_suppressed_constraint | @swift_tuple_type | @swift_type_modifiers | @swift_type_pack_expansion | @swift_type_parameter_pack | @swift_user_type + +#keyset[swift_function_declaration, index] +swift_function_declaration_return_type( + int swift_function_declaration: @swift_function_declaration ref, + int index: int ref, + unique int return_type: @swift_function_declaration_return_type_type ref +); + +@swift_function_declaration_child_type = @swift_attribute | @swift_modifiers | @swift_parameter | @swift_throws_clause | @swift_token_inheritance_modifier | @swift_token_ownership_modifier | @swift_token_property_behavior_modifier | @swift_token_throws | @swift_type_constraints | @swift_type_parameters + +#keyset[swift_function_declaration, index] +swift_function_declaration_child( + int swift_function_declaration: @swift_function_declaration ref, + int index: int ref, + unique int child: @swift_function_declaration_child_type ref +); + +swift_function_declaration_def( + unique int id: @swift_function_declaration, + int body: @swift_function_body ref +); + +@swift_function_type_name_type = @swift_array_type | @swift_dictionary_type | @swift_existential_type | @swift_function_type | @swift_metatype | @swift_opaque_type | @swift_optional_type | @swift_protocol_composition_type | @swift_suppressed_constraint | @swift_tuple_type | @swift_type_pack_expansion | @swift_type_parameter_pack | @swift_user_type + +@swift_function_type_params_type = @swift_array_type | @swift_dictionary_type | @swift_existential_type | @swift_function_type | @swift_metatype | @swift_opaque_type | @swift_optional_type | @swift_protocol_composition_type | @swift_suppressed_constraint | @swift_tuple_type | @swift_type_pack_expansion | @swift_type_parameter_pack | @swift_user_type + +@swift_function_type_return_type_type = @swift_array_type | @swift_dictionary_type | @swift_existential_type | @swift_function_type | @swift_metatype | @swift_opaque_type | @swift_optional_type | @swift_protocol_composition_type | @swift_suppressed_constraint | @swift_tuple_type | @swift_type_modifiers | @swift_type_pack_expansion | @swift_type_parameter_pack | @swift_user_type + +#keyset[swift_function_type, index] +swift_function_type_return_type( + int swift_function_type: @swift_function_type ref, + int index: int ref, + unique int return_type: @swift_function_type_return_type_type ref +); + +@swift_function_type_child_type = @swift_throws_clause | @swift_token_throws + +swift_function_type_child( + unique int swift_function_type: @swift_function_type ref, + unique int child: @swift_function_type_child_type ref +); + +swift_function_type_def( + unique int id: @swift_function_type, + int name: @swift_function_type_name_type ref, + int params: @swift_function_type_params_type ref +); + +@swift_getter_specifier_child_type = @swift_throws_clause | @swift_token_mutation_modifier | @swift_token_throws + +#keyset[swift_getter_specifier, index] +swift_getter_specifier_child( + int swift_getter_specifier: @swift_getter_specifier ref, + int index: int ref, + unique int child: @swift_getter_specifier_child_type ref +); + +swift_getter_specifier_def( + unique int id: @swift_getter_specifier +); + +#keyset[swift_guard_statement, index] +swift_guard_statement_bound_identifier( + int swift_guard_statement: @swift_guard_statement ref, + int index: int ref, + unique int bound_identifier: @swift_token_simple_identifier ref +); + +@swift_guard_statement_condition_type = @swift_additive_expression | @swift_array_literal | @swift_array_type | @swift_as_expression | @swift_assignment | @swift_availability_condition | @swift_await_expression | @swift_bitwise_operation | @swift_call_expression | @swift_check_expression | @swift_comparison_expression | @swift_conjunction_expression | @swift_constructor_expression | @swift_dictionary_literal | @swift_dictionary_type | @swift_directive | @swift_disjunction_expression | @swift_equality_expression | @swift_existential_type | @swift_function_type | @swift_if_statement | @swift_infix_expression | @swift_key_path_expression | @swift_key_path_string_expression | @swift_lambda_literal | @swift_line_string_literal | @swift_macro_invocation | @swift_metatype | @swift_multi_line_string_literal | @swift_multiplicative_expression | @swift_navigation_expression | @swift_nil_coalescing_expression | @swift_opaque_type | @swift_open_end_range_expression | @swift_open_start_range_expression | @swift_optional_type | @swift_pattern | @swift_playground_literal | @swift_postfix_expression | @swift_prefix_expression | @swift_protocol_composition_type | @swift_range_expression | @swift_raw_string_literal | @swift_reserved_word | @swift_selector_expression | @swift_suppressed_constraint | @swift_switch_statement | @swift_ternary_expression | @swift_token_bang | @swift_token_bin_literal | @swift_token_boolean_literal | @swift_token_custom_operator | @swift_token_diagnostic | @swift_token_fully_open_range | @swift_token_hex_literal | @swift_token_integer_literal | @swift_token_oct_literal | @swift_token_real_literal | @swift_token_regex_literal | @swift_token_self_expression | @swift_token_simple_identifier | @swift_token_special_literal | @swift_token_super_expression | @swift_token_wildcard_pattern | @swift_try_expression | @swift_tuple_expression | @swift_tuple_type | @swift_type_annotation | @swift_type_modifiers | @swift_type_pack_expansion | @swift_type_parameter_pack | @swift_user_type | @swift_value_binding_pattern | @swift_value_pack_expansion | @swift_value_parameter_pack | @swift_where_clause + +#keyset[swift_guard_statement, index] +swift_guard_statement_condition( + int swift_guard_statement: @swift_guard_statement ref, + int index: int ref, + unique int condition: @swift_guard_statement_condition_type ref +); + +@swift_guard_statement_name_type = @swift_array_type | @swift_dictionary_type | @swift_existential_type | @swift_function_type | @swift_metatype | @swift_opaque_type | @swift_optional_type | @swift_protocol_composition_type | @swift_suppressed_constraint | @swift_tuple_type | @swift_type_pack_expansion | @swift_type_parameter_pack | @swift_user_type + +#keyset[swift_guard_statement, index] +swift_guard_statement_name( + int swift_guard_statement: @swift_guard_statement ref, + int index: int ref, + unique int name: @swift_guard_statement_name_type ref +); + +@swift_guard_statement_child_type = @swift_statements | @swift_token_else + +#keyset[swift_guard_statement, index] +swift_guard_statement_child( + int swift_guard_statement: @swift_guard_statement ref, + int index: int ref, + unique int child: @swift_guard_statement_child_type ref +); + +swift_guard_statement_def( + unique int id: @swift_guard_statement +); + +#keyset[swift_identifier, index] +swift_identifier_child( + int swift_identifier: @swift_identifier ref, + int index: int ref, + unique int child: @swift_token_simple_identifier ref +); + +swift_identifier_def( + unique int id: @swift_identifier +); + +#keyset[swift_if_statement, index] +swift_if_statement_bound_identifier( + int swift_if_statement: @swift_if_statement ref, + int index: int ref, + unique int bound_identifier: @swift_token_simple_identifier ref +); + +@swift_if_statement_condition_type = @swift_additive_expression | @swift_array_literal | @swift_array_type | @swift_as_expression | @swift_assignment | @swift_availability_condition | @swift_await_expression | @swift_bitwise_operation | @swift_call_expression | @swift_check_expression | @swift_comparison_expression | @swift_conjunction_expression | @swift_constructor_expression | @swift_dictionary_literal | @swift_dictionary_type | @swift_directive | @swift_disjunction_expression | @swift_equality_expression | @swift_existential_type | @swift_function_type | @swift_if_statement | @swift_infix_expression | @swift_key_path_expression | @swift_key_path_string_expression | @swift_lambda_literal | @swift_line_string_literal | @swift_macro_invocation | @swift_metatype | @swift_multi_line_string_literal | @swift_multiplicative_expression | @swift_navigation_expression | @swift_nil_coalescing_expression | @swift_opaque_type | @swift_open_end_range_expression | @swift_open_start_range_expression | @swift_optional_type | @swift_pattern | @swift_playground_literal | @swift_postfix_expression | @swift_prefix_expression | @swift_protocol_composition_type | @swift_range_expression | @swift_raw_string_literal | @swift_reserved_word | @swift_selector_expression | @swift_suppressed_constraint | @swift_switch_statement | @swift_ternary_expression | @swift_token_bang | @swift_token_bin_literal | @swift_token_boolean_literal | @swift_token_custom_operator | @swift_token_diagnostic | @swift_token_fully_open_range | @swift_token_hex_literal | @swift_token_integer_literal | @swift_token_oct_literal | @swift_token_real_literal | @swift_token_regex_literal | @swift_token_self_expression | @swift_token_simple_identifier | @swift_token_special_literal | @swift_token_super_expression | @swift_token_wildcard_pattern | @swift_try_expression | @swift_tuple_expression | @swift_tuple_type | @swift_type_annotation | @swift_type_modifiers | @swift_type_pack_expansion | @swift_type_parameter_pack | @swift_user_type | @swift_value_binding_pattern | @swift_value_pack_expansion | @swift_value_parameter_pack | @swift_where_clause + +#keyset[swift_if_statement, index] +swift_if_statement_condition( + int swift_if_statement: @swift_if_statement ref, + int index: int ref, + unique int condition: @swift_if_statement_condition_type ref +); + +@swift_if_statement_name_type = @swift_array_type | @swift_dictionary_type | @swift_existential_type | @swift_function_type | @swift_metatype | @swift_opaque_type | @swift_optional_type | @swift_protocol_composition_type | @swift_suppressed_constraint | @swift_tuple_type | @swift_type_pack_expansion | @swift_type_parameter_pack | @swift_user_type + +#keyset[swift_if_statement, index] +swift_if_statement_name( + int swift_if_statement: @swift_if_statement ref, + int index: int ref, + unique int name: @swift_if_statement_name_type ref +); + +@swift_if_statement_child_type = @swift_if_statement | @swift_statements | @swift_token_else + +#keyset[swift_if_statement, index] +swift_if_statement_child( + int swift_if_statement: @swift_if_statement ref, + int index: int ref, + unique int child: @swift_if_statement_child_type ref +); + +swift_if_statement_def( + unique int id: @swift_if_statement +); + +@swift_import_declaration_child_type = @swift_identifier | @swift_modifiers + +#keyset[swift_import_declaration, index] +swift_import_declaration_child( + int swift_import_declaration: @swift_import_declaration ref, + int index: int ref, + unique int child: @swift_import_declaration_child_type ref +); + +swift_import_declaration_def( + unique int id: @swift_import_declaration +); + +@swift_infix_expression_lhs_type = @swift_additive_expression | @swift_array_literal | @swift_as_expression | @swift_assignment | @swift_await_expression | @swift_bitwise_operation | @swift_call_expression | @swift_check_expression | @swift_comparison_expression | @swift_conjunction_expression | @swift_constructor_expression | @swift_dictionary_literal | @swift_directive | @swift_disjunction_expression | @swift_equality_expression | @swift_if_statement | @swift_infix_expression | @swift_key_path_expression | @swift_key_path_string_expression | @swift_lambda_literal | @swift_line_string_literal | @swift_macro_invocation | @swift_multi_line_string_literal | @swift_multiplicative_expression | @swift_navigation_expression | @swift_nil_coalescing_expression | @swift_open_end_range_expression | @swift_open_start_range_expression | @swift_playground_literal | @swift_postfix_expression | @swift_prefix_expression | @swift_range_expression | @swift_raw_string_literal | @swift_reserved_word | @swift_selector_expression | @swift_switch_statement | @swift_ternary_expression | @swift_token_bang | @swift_token_bin_literal | @swift_token_boolean_literal | @swift_token_custom_operator | @swift_token_diagnostic | @swift_token_fully_open_range | @swift_token_hex_literal | @swift_token_integer_literal | @swift_token_oct_literal | @swift_token_real_literal | @swift_token_regex_literal | @swift_token_self_expression | @swift_token_simple_identifier | @swift_token_special_literal | @swift_token_super_expression | @swift_try_expression | @swift_tuple_expression | @swift_value_pack_expansion | @swift_value_parameter_pack + +#keyset[swift_infix_expression, index] +swift_infix_expression_lhs( + int swift_infix_expression: @swift_infix_expression ref, + int index: int ref, + unique int lhs: @swift_infix_expression_lhs_type ref +); + +@swift_infix_expression_rhs_type = @swift_additive_expression | @swift_array_literal | @swift_as_expression | @swift_assignment | @swift_await_expression | @swift_bitwise_operation | @swift_call_expression | @swift_check_expression | @swift_comparison_expression | @swift_conjunction_expression | @swift_constructor_expression | @swift_dictionary_literal | @swift_directive | @swift_disjunction_expression | @swift_equality_expression | @swift_if_statement | @swift_infix_expression | @swift_key_path_expression | @swift_key_path_string_expression | @swift_lambda_literal | @swift_line_string_literal | @swift_macro_invocation | @swift_multi_line_string_literal | @swift_multiplicative_expression | @swift_navigation_expression | @swift_nil_coalescing_expression | @swift_open_end_range_expression | @swift_open_start_range_expression | @swift_playground_literal | @swift_postfix_expression | @swift_prefix_expression | @swift_range_expression | @swift_raw_string_literal | @swift_reserved_word | @swift_selector_expression | @swift_switch_statement | @swift_ternary_expression | @swift_token_bang | @swift_token_bin_literal | @swift_token_boolean_literal | @swift_token_custom_operator | @swift_token_diagnostic | @swift_token_fully_open_range | @swift_token_hex_literal | @swift_token_integer_literal | @swift_token_oct_literal | @swift_token_real_literal | @swift_token_regex_literal | @swift_token_self_expression | @swift_token_simple_identifier | @swift_token_special_literal | @swift_token_super_expression | @swift_try_expression | @swift_tuple_expression | @swift_value_pack_expansion | @swift_value_parameter_pack + +#keyset[swift_infix_expression, index] +swift_infix_expression_rhs( + int swift_infix_expression: @swift_infix_expression ref, + int index: int ref, + unique int rhs: @swift_infix_expression_rhs_type ref +); + +swift_infix_expression_def( + unique int id: @swift_infix_expression, + int op: @swift_token_custom_operator ref +); + +@swift_inheritance_constraint_constrained_type_type = @swift_array_type | @swift_dictionary_type | @swift_existential_type | @swift_function_type | @swift_identifier | @swift_metatype | @swift_opaque_type | @swift_optional_type | @swift_protocol_composition_type | @swift_reserved_word | @swift_suppressed_constraint | @swift_token_simple_identifier | @swift_tuple_type | @swift_type_pack_expansion | @swift_type_parameter_pack | @swift_user_type + +#keyset[swift_inheritance_constraint, index] +swift_inheritance_constraint_constrained_type( + int swift_inheritance_constraint: @swift_inheritance_constraint ref, + int index: int ref, + unique int constrained_type: @swift_inheritance_constraint_constrained_type_type ref +); + +@swift_inheritance_constraint_inherits_from_type = @swift_array_type | @swift_dictionary_type | @swift_existential_type | @swift_function_type | @swift_metatype | @swift_opaque_type | @swift_optional_type | @swift_protocol_composition_type | @swift_reserved_word | @swift_suppressed_constraint | @swift_tuple_type | @swift_type_modifiers | @swift_type_pack_expansion | @swift_type_parameter_pack | @swift_user_type + +#keyset[swift_inheritance_constraint, index] +swift_inheritance_constraint_inherits_from( + int swift_inheritance_constraint: @swift_inheritance_constraint ref, + int index: int ref, + unique int inherits_from: @swift_inheritance_constraint_inherits_from_type ref +); + +@swift_inheritance_constraint_name_type = @swift_array_type | @swift_dictionary_type | @swift_existential_type | @swift_function_type | @swift_metatype | @swift_opaque_type | @swift_optional_type | @swift_protocol_composition_type | @swift_suppressed_constraint | @swift_tuple_type | @swift_type_pack_expansion | @swift_type_parameter_pack | @swift_user_type + +#keyset[swift_inheritance_constraint, index] +swift_inheritance_constraint_child( + int swift_inheritance_constraint: @swift_inheritance_constraint ref, + int index: int ref, + unique int child: @swift_attribute ref +); + +swift_inheritance_constraint_def( + unique int id: @swift_inheritance_constraint, + int name: @swift_inheritance_constraint_name_type ref +); + +@swift_inheritance_specifier_inherits_from_type = @swift_function_type | @swift_suppressed_constraint | @swift_user_type + +swift_inheritance_specifier_def( + unique int id: @swift_inheritance_specifier, + int inherits_from: @swift_inheritance_specifier_inherits_from_type ref +); + +swift_init_declaration_body( + unique int swift_init_declaration: @swift_init_declaration ref, + unique int body: @swift_function_body ref +); + +@swift_init_declaration_default_value_type = @swift_additive_expression | @swift_array_literal | @swift_as_expression | @swift_assignment | @swift_await_expression | @swift_bitwise_operation | @swift_call_expression | @swift_check_expression | @swift_comparison_expression | @swift_conjunction_expression | @swift_constructor_expression | @swift_dictionary_literal | @swift_directive | @swift_disjunction_expression | @swift_equality_expression | @swift_if_statement | @swift_infix_expression | @swift_key_path_expression | @swift_key_path_string_expression | @swift_lambda_literal | @swift_line_string_literal | @swift_macro_invocation | @swift_multi_line_string_literal | @swift_multiplicative_expression | @swift_navigation_expression | @swift_nil_coalescing_expression | @swift_open_end_range_expression | @swift_open_start_range_expression | @swift_playground_literal | @swift_postfix_expression | @swift_prefix_expression | @swift_range_expression | @swift_raw_string_literal | @swift_reserved_word | @swift_selector_expression | @swift_switch_statement | @swift_ternary_expression | @swift_token_bang | @swift_token_bin_literal | @swift_token_boolean_literal | @swift_token_custom_operator | @swift_token_diagnostic | @swift_token_fully_open_range | @swift_token_hex_literal | @swift_token_integer_literal | @swift_token_oct_literal | @swift_token_real_literal | @swift_token_regex_literal | @swift_token_self_expression | @swift_token_simple_identifier | @swift_token_special_literal | @swift_token_super_expression | @swift_try_expression | @swift_tuple_expression | @swift_value_pack_expansion | @swift_value_parameter_pack + +#keyset[swift_init_declaration, index] +swift_init_declaration_default_value( + int swift_init_declaration: @swift_init_declaration ref, + int index: int ref, + unique int default_value: @swift_init_declaration_default_value_type ref +); + +case @swift_init_declaration.name of + 0 = @swift_init_declaration_init +; + + +@swift_init_declaration_child_type = @swift_attribute | @swift_modifiers | @swift_parameter | @swift_throws_clause | @swift_token_bang | @swift_token_throws | @swift_type_constraints | @swift_type_parameters + +#keyset[swift_init_declaration, index] +swift_init_declaration_child( + int swift_init_declaration: @swift_init_declaration ref, + int index: int ref, + unique int child: @swift_init_declaration_child_type ref +); + +swift_init_declaration_def( + unique int id: @swift_init_declaration, + int name: int ref +); + +swift_interpolated_expression_name( + unique int swift_interpolated_expression: @swift_interpolated_expression ref, + unique int name: @swift_value_argument_label ref +); + +#keyset[swift_interpolated_expression, index] +swift_interpolated_expression_reference_specifier( + int swift_interpolated_expression: @swift_interpolated_expression ref, + int index: int ref, + unique int reference_specifier: @swift_value_argument_label ref +); + +@swift_interpolated_expression_value_type = @swift_additive_expression | @swift_array_literal | @swift_as_expression | @swift_assignment | @swift_await_expression | @swift_bitwise_operation | @swift_call_expression | @swift_check_expression | @swift_comparison_expression | @swift_conjunction_expression | @swift_constructor_expression | @swift_dictionary_literal | @swift_directive | @swift_disjunction_expression | @swift_equality_expression | @swift_if_statement | @swift_infix_expression | @swift_key_path_expression | @swift_key_path_string_expression | @swift_lambda_literal | @swift_line_string_literal | @swift_macro_invocation | @swift_multi_line_string_literal | @swift_multiplicative_expression | @swift_navigation_expression | @swift_nil_coalescing_expression | @swift_open_end_range_expression | @swift_open_start_range_expression | @swift_playground_literal | @swift_postfix_expression | @swift_prefix_expression | @swift_range_expression | @swift_raw_string_literal | @swift_reserved_word | @swift_selector_expression | @swift_switch_statement | @swift_ternary_expression | @swift_token_bang | @swift_token_bin_literal | @swift_token_boolean_literal | @swift_token_custom_operator | @swift_token_diagnostic | @swift_token_fully_open_range | @swift_token_hex_literal | @swift_token_integer_literal | @swift_token_oct_literal | @swift_token_real_literal | @swift_token_regex_literal | @swift_token_self_expression | @swift_token_simple_identifier | @swift_token_special_literal | @swift_token_super_expression | @swift_try_expression | @swift_tuple_expression | @swift_value_pack_expansion | @swift_value_parameter_pack + +#keyset[swift_interpolated_expression, index] +swift_interpolated_expression_value( + int swift_interpolated_expression: @swift_interpolated_expression ref, + int index: int ref, + unique int value: @swift_interpolated_expression_value_type ref +); + +swift_interpolated_expression_child( + unique int swift_interpolated_expression: @swift_interpolated_expression ref, + unique int child: @swift_type_modifiers ref +); + +swift_interpolated_expression_def( + unique int id: @swift_interpolated_expression +); + +@swift_key_path_expression_child_type = @swift_array_type | @swift_dictionary_type | @swift_token_bang | @swift_token_simple_identifier | @swift_token_type_identifier | @swift_type_arguments | @swift_value_argument + +#keyset[swift_key_path_expression, index] +swift_key_path_expression_child( + int swift_key_path_expression: @swift_key_path_expression ref, + int index: int ref, + unique int child: @swift_key_path_expression_child_type ref +); + +swift_key_path_expression_def( + unique int id: @swift_key_path_expression +); + +@swift_key_path_string_expression_child_type = @swift_additive_expression | @swift_array_literal | @swift_as_expression | @swift_assignment | @swift_await_expression | @swift_bitwise_operation | @swift_call_expression | @swift_check_expression | @swift_comparison_expression | @swift_conjunction_expression | @swift_constructor_expression | @swift_dictionary_literal | @swift_directive | @swift_disjunction_expression | @swift_equality_expression | @swift_if_statement | @swift_infix_expression | @swift_key_path_expression | @swift_key_path_string_expression | @swift_lambda_literal | @swift_line_string_literal | @swift_macro_invocation | @swift_multi_line_string_literal | @swift_multiplicative_expression | @swift_navigation_expression | @swift_nil_coalescing_expression | @swift_open_end_range_expression | @swift_open_start_range_expression | @swift_playground_literal | @swift_postfix_expression | @swift_prefix_expression | @swift_range_expression | @swift_raw_string_literal | @swift_selector_expression | @swift_switch_statement | @swift_ternary_expression | @swift_token_bang | @swift_token_bin_literal | @swift_token_boolean_literal | @swift_token_custom_operator | @swift_token_diagnostic | @swift_token_fully_open_range | @swift_token_hex_literal | @swift_token_integer_literal | @swift_token_oct_literal | @swift_token_real_literal | @swift_token_regex_literal | @swift_token_self_expression | @swift_token_simple_identifier | @swift_token_special_literal | @swift_token_super_expression | @swift_try_expression | @swift_tuple_expression | @swift_value_pack_expansion | @swift_value_parameter_pack + +swift_key_path_string_expression_child( + unique int swift_key_path_string_expression: @swift_key_path_string_expression ref, + unique int child: @swift_key_path_string_expression_child_type ref +); + +swift_key_path_string_expression_def( + unique int id: @swift_key_path_string_expression +); + +@swift_lambda_function_type_name_type = @swift_array_type | @swift_dictionary_type | @swift_existential_type | @swift_function_type | @swift_metatype | @swift_opaque_type | @swift_optional_type | @swift_protocol_composition_type | @swift_suppressed_constraint | @swift_tuple_type | @swift_type_pack_expansion | @swift_type_parameter_pack | @swift_user_type + +swift_lambda_function_type_name( + unique int swift_lambda_function_type: @swift_lambda_function_type ref, + unique int name: @swift_lambda_function_type_name_type ref +); + +@swift_lambda_function_type_return_type_type = @swift_array_type | @swift_dictionary_type | @swift_existential_type | @swift_function_type | @swift_metatype | @swift_opaque_type | @swift_optional_type | @swift_protocol_composition_type | @swift_reserved_word | @swift_suppressed_constraint | @swift_tuple_type | @swift_type_modifiers | @swift_type_pack_expansion | @swift_type_parameter_pack | @swift_user_type + +#keyset[swift_lambda_function_type, index] +swift_lambda_function_type_return_type( + int swift_lambda_function_type: @swift_lambda_function_type ref, + int index: int ref, + unique int return_type: @swift_lambda_function_type_return_type_type ref +); + +@swift_lambda_function_type_child_type = @swift_lambda_function_type_parameters | @swift_throws_clause | @swift_token_throws + +#keyset[swift_lambda_function_type, index] +swift_lambda_function_type_child( + int swift_lambda_function_type: @swift_lambda_function_type ref, + int index: int ref, + unique int child: @swift_lambda_function_type_child_type ref +); + +swift_lambda_function_type_def( + unique int id: @swift_lambda_function_type +); + +#keyset[swift_lambda_function_type_parameters, index] +swift_lambda_function_type_parameters_child( + int swift_lambda_function_type_parameters: @swift_lambda_function_type_parameters ref, + int index: int ref, + unique int child: @swift_lambda_parameter ref +); + +swift_lambda_function_type_parameters_def( + unique int id: @swift_lambda_function_type_parameters +); + +swift_lambda_literal_captures( + unique int swift_lambda_literal: @swift_lambda_literal ref, + unique int captures: @swift_capture_list ref +); + +swift_lambda_literal_type( + unique int swift_lambda_literal: @swift_lambda_literal ref, + unique int type__: @swift_lambda_function_type ref +); + +@swift_lambda_literal_child_type = @swift_attribute | @swift_statements + +#keyset[swift_lambda_literal, index] +swift_lambda_literal_child( + int swift_lambda_literal: @swift_lambda_literal ref, + int index: int ref, + unique int child: @swift_lambda_literal_child_type ref +); + +swift_lambda_literal_def( + unique int id: @swift_lambda_literal +); + +swift_lambda_parameter_external_name( + unique int swift_lambda_parameter: @swift_lambda_parameter ref, + unique int external_name: @swift_token_simple_identifier ref +); + +@swift_lambda_parameter_name_type = @swift_array_type | @swift_dictionary_type | @swift_existential_type | @swift_function_type | @swift_metatype | @swift_opaque_type | @swift_optional_type | @swift_protocol_composition_type | @swift_suppressed_constraint | @swift_token_simple_identifier | @swift_tuple_type | @swift_type_pack_expansion | @swift_type_parameter_pack | @swift_user_type + +#keyset[swift_lambda_parameter, index] +swift_lambda_parameter_name( + int swift_lambda_parameter: @swift_lambda_parameter ref, + int index: int ref, + unique int name: @swift_lambda_parameter_name_type ref +); + +@swift_lambda_parameter_type_type = @swift_array_type | @swift_dictionary_type | @swift_existential_type | @swift_function_type | @swift_metatype | @swift_opaque_type | @swift_optional_type | @swift_protocol_composition_type | @swift_reserved_word | @swift_suppressed_constraint | @swift_tuple_type | @swift_type_modifiers | @swift_type_pack_expansion | @swift_type_parameter_pack | @swift_user_type + +#keyset[swift_lambda_parameter, index] +swift_lambda_parameter_type( + int swift_lambda_parameter: @swift_lambda_parameter ref, + int index: int ref, + unique int type__: @swift_lambda_parameter_type_type ref +); + +@swift_lambda_parameter_child_type = @swift_parameter_modifiers | @swift_token_self_expression + +swift_lambda_parameter_child( + unique int swift_lambda_parameter: @swift_lambda_parameter ref, + unique int child: @swift_lambda_parameter_child_type ref +); + +swift_lambda_parameter_def( + unique int id: @swift_lambda_parameter +); + +#keyset[swift_line_string_literal, index] +swift_line_string_literal_interpolation( + int swift_line_string_literal: @swift_line_string_literal ref, + int index: int ref, + unique int interpolation: @swift_interpolated_expression ref +); + +@swift_line_string_literal_text_type = @swift_token_line_str_text | @swift_token_str_escaped_char + +#keyset[swift_line_string_literal, index] +swift_line_string_literal_text( + int swift_line_string_literal: @swift_line_string_literal ref, + int index: int ref, + unique int text: @swift_line_string_literal_text_type ref +); + +swift_line_string_literal_def( + unique int id: @swift_line_string_literal +); + +@swift_macro_declaration_default_value_type = @swift_additive_expression | @swift_array_literal | @swift_as_expression | @swift_assignment | @swift_await_expression | @swift_bitwise_operation | @swift_call_expression | @swift_check_expression | @swift_comparison_expression | @swift_conjunction_expression | @swift_constructor_expression | @swift_dictionary_literal | @swift_directive | @swift_disjunction_expression | @swift_equality_expression | @swift_if_statement | @swift_infix_expression | @swift_key_path_expression | @swift_key_path_string_expression | @swift_lambda_literal | @swift_line_string_literal | @swift_macro_invocation | @swift_multi_line_string_literal | @swift_multiplicative_expression | @swift_navigation_expression | @swift_nil_coalescing_expression | @swift_open_end_range_expression | @swift_open_start_range_expression | @swift_playground_literal | @swift_postfix_expression | @swift_prefix_expression | @swift_range_expression | @swift_raw_string_literal | @swift_reserved_word | @swift_selector_expression | @swift_switch_statement | @swift_ternary_expression | @swift_token_bang | @swift_token_bin_literal | @swift_token_boolean_literal | @swift_token_custom_operator | @swift_token_diagnostic | @swift_token_fully_open_range | @swift_token_hex_literal | @swift_token_integer_literal | @swift_token_oct_literal | @swift_token_real_literal | @swift_token_regex_literal | @swift_token_self_expression | @swift_token_simple_identifier | @swift_token_special_literal | @swift_token_super_expression | @swift_try_expression | @swift_tuple_expression | @swift_value_pack_expansion | @swift_value_parameter_pack + +#keyset[swift_macro_declaration, index] +swift_macro_declaration_default_value( + int swift_macro_declaration: @swift_macro_declaration ref, + int index: int ref, + unique int default_value: @swift_macro_declaration_default_value_type ref +); + +swift_macro_declaration_definition( + unique int swift_macro_declaration: @swift_macro_declaration ref, + unique int definition: @swift_macro_definition ref +); + +@swift_macro_declaration_child_type = @swift_array_type | @swift_attribute | @swift_dictionary_type | @swift_existential_type | @swift_function_type | @swift_metatype | @swift_modifiers | @swift_opaque_type | @swift_optional_type | @swift_parameter | @swift_protocol_composition_type | @swift_suppressed_constraint | @swift_token_simple_identifier | @swift_tuple_type | @swift_type_constraints | @swift_type_pack_expansion | @swift_type_parameter_pack | @swift_type_parameters | @swift_user_type + +#keyset[swift_macro_declaration, index] +swift_macro_declaration_child( + int swift_macro_declaration: @swift_macro_declaration ref, + int index: int ref, + unique int child: @swift_macro_declaration_child_type ref +); + +swift_macro_declaration_def( + unique int id: @swift_macro_declaration +); + +@swift_macro_definition_body_type = @swift_additive_expression | @swift_array_literal | @swift_as_expression | @swift_assignment | @swift_await_expression | @swift_bitwise_operation | @swift_call_expression | @swift_check_expression | @swift_comparison_expression | @swift_conjunction_expression | @swift_constructor_expression | @swift_dictionary_literal | @swift_directive | @swift_disjunction_expression | @swift_equality_expression | @swift_external_macro_definition | @swift_if_statement | @swift_infix_expression | @swift_key_path_expression | @swift_key_path_string_expression | @swift_lambda_literal | @swift_line_string_literal | @swift_macro_invocation | @swift_multi_line_string_literal | @swift_multiplicative_expression | @swift_navigation_expression | @swift_nil_coalescing_expression | @swift_open_end_range_expression | @swift_open_start_range_expression | @swift_playground_literal | @swift_postfix_expression | @swift_prefix_expression | @swift_range_expression | @swift_raw_string_literal | @swift_reserved_word | @swift_selector_expression | @swift_switch_statement | @swift_ternary_expression | @swift_token_bang | @swift_token_bin_literal | @swift_token_boolean_literal | @swift_token_custom_operator | @swift_token_diagnostic | @swift_token_fully_open_range | @swift_token_hex_literal | @swift_token_integer_literal | @swift_token_oct_literal | @swift_token_real_literal | @swift_token_regex_literal | @swift_token_self_expression | @swift_token_simple_identifier | @swift_token_special_literal | @swift_token_super_expression | @swift_try_expression | @swift_tuple_expression | @swift_value_pack_expansion | @swift_value_parameter_pack + +#keyset[swift_macro_definition, index] +swift_macro_definition_body( + int swift_macro_definition: @swift_macro_definition ref, + int index: int ref, + unique int body: @swift_macro_definition_body_type ref +); + +swift_macro_definition_def( + unique int id: @swift_macro_definition +); + +@swift_macro_invocation_child_type = @swift_call_suffix | @swift_token_simple_identifier | @swift_type_parameters + +#keyset[swift_macro_invocation, index] +swift_macro_invocation_child( + int swift_macro_invocation: @swift_macro_invocation ref, + int index: int ref, + unique int child: @swift_macro_invocation_child_type ref +); + +swift_macro_invocation_def( + unique int id: @swift_macro_invocation +); + +@swift_metatype_child_type = @swift_array_type | @swift_dictionary_type | @swift_existential_type | @swift_function_type | @swift_metatype | @swift_opaque_type | @swift_optional_type | @swift_protocol_composition_type | @swift_suppressed_constraint | @swift_tuple_type | @swift_type_pack_expansion | @swift_type_parameter_pack | @swift_user_type + +swift_metatype_def( + unique int id: @swift_metatype, + int child: @swift_metatype_child_type ref +); + +@swift_modifiers_child_type = @swift_attribute | @swift_token_function_modifier | @swift_token_inheritance_modifier | @swift_token_member_modifier | @swift_token_mutation_modifier | @swift_token_ownership_modifier | @swift_token_parameter_modifier | @swift_token_property_behavior_modifier | @swift_token_property_modifier | @swift_token_visibility_modifier + +#keyset[swift_modifiers, index] +swift_modifiers_child( + int swift_modifiers: @swift_modifiers ref, + int index: int ref, + unique int child: @swift_modifiers_child_type ref +); + +swift_modifiers_def( + unique int id: @swift_modifiers +); + +swift_modify_specifier_child( + unique int swift_modify_specifier: @swift_modify_specifier ref, + unique int child: @swift_token_mutation_modifier ref +); + +swift_modify_specifier_def( + unique int id: @swift_modify_specifier +); + +#keyset[swift_multi_line_string_literal, index] +swift_multi_line_string_literal_interpolation( + int swift_multi_line_string_literal: @swift_multi_line_string_literal ref, + int index: int ref, + unique int interpolation: @swift_interpolated_expression ref +); + +@swift_multi_line_string_literal_text_type = @swift_reserved_word | @swift_token_multi_line_str_text | @swift_token_str_escaped_char + +#keyset[swift_multi_line_string_literal, index] +swift_multi_line_string_literal_text( + int swift_multi_line_string_literal: @swift_multi_line_string_literal ref, + int index: int ref, + unique int text: @swift_multi_line_string_literal_text_type ref +); + +swift_multi_line_string_literal_def( + unique int id: @swift_multi_line_string_literal +); + +@swift_multiplicative_expression_lhs_type = @swift_additive_expression | @swift_array_literal | @swift_as_expression | @swift_assignment | @swift_await_expression | @swift_bitwise_operation | @swift_call_expression | @swift_check_expression | @swift_comparison_expression | @swift_conjunction_expression | @swift_constructor_expression | @swift_dictionary_literal | @swift_directive | @swift_disjunction_expression | @swift_equality_expression | @swift_if_statement | @swift_infix_expression | @swift_key_path_expression | @swift_key_path_string_expression | @swift_lambda_literal | @swift_line_string_literal | @swift_macro_invocation | @swift_multi_line_string_literal | @swift_multiplicative_expression | @swift_navigation_expression | @swift_nil_coalescing_expression | @swift_open_end_range_expression | @swift_open_start_range_expression | @swift_playground_literal | @swift_postfix_expression | @swift_prefix_expression | @swift_range_expression | @swift_raw_string_literal | @swift_reserved_word | @swift_selector_expression | @swift_switch_statement | @swift_ternary_expression | @swift_token_bang | @swift_token_bin_literal | @swift_token_boolean_literal | @swift_token_custom_operator | @swift_token_diagnostic | @swift_token_fully_open_range | @swift_token_hex_literal | @swift_token_integer_literal | @swift_token_oct_literal | @swift_token_real_literal | @swift_token_regex_literal | @swift_token_self_expression | @swift_token_simple_identifier | @swift_token_special_literal | @swift_token_super_expression | @swift_try_expression | @swift_tuple_expression | @swift_value_pack_expansion | @swift_value_parameter_pack + +#keyset[swift_multiplicative_expression, index] +swift_multiplicative_expression_lhs( + int swift_multiplicative_expression: @swift_multiplicative_expression ref, + int index: int ref, + unique int lhs: @swift_multiplicative_expression_lhs_type ref +); + +case @swift_multiplicative_expression.op of + 0 = @swift_multiplicative_expression_percent +| 1 = @swift_multiplicative_expression_star +| 2 = @swift_multiplicative_expression_slash +; + + +@swift_multiplicative_expression_rhs_type = @swift_additive_expression | @swift_array_literal | @swift_as_expression | @swift_assignment | @swift_await_expression | @swift_bitwise_operation | @swift_call_expression | @swift_check_expression | @swift_comparison_expression | @swift_conjunction_expression | @swift_constructor_expression | @swift_dictionary_literal | @swift_directive | @swift_disjunction_expression | @swift_equality_expression | @swift_if_statement | @swift_infix_expression | @swift_key_path_expression | @swift_key_path_string_expression | @swift_lambda_literal | @swift_line_string_literal | @swift_macro_invocation | @swift_multi_line_string_literal | @swift_multiplicative_expression | @swift_navigation_expression | @swift_nil_coalescing_expression | @swift_open_end_range_expression | @swift_open_start_range_expression | @swift_playground_literal | @swift_postfix_expression | @swift_prefix_expression | @swift_range_expression | @swift_raw_string_literal | @swift_reserved_word | @swift_selector_expression | @swift_switch_statement | @swift_ternary_expression | @swift_token_bang | @swift_token_bin_literal | @swift_token_boolean_literal | @swift_token_custom_operator | @swift_token_diagnostic | @swift_token_fully_open_range | @swift_token_hex_literal | @swift_token_integer_literal | @swift_token_oct_literal | @swift_token_real_literal | @swift_token_regex_literal | @swift_token_self_expression | @swift_token_simple_identifier | @swift_token_special_literal | @swift_token_super_expression | @swift_try_expression | @swift_tuple_expression | @swift_value_pack_expansion | @swift_value_parameter_pack + +#keyset[swift_multiplicative_expression, index] +swift_multiplicative_expression_rhs( + int swift_multiplicative_expression: @swift_multiplicative_expression ref, + int index: int ref, + unique int rhs: @swift_multiplicative_expression_rhs_type ref +); + +swift_multiplicative_expression_def( + unique int id: @swift_multiplicative_expression, + int op: int ref +); + +@swift_navigation_expression_element_type = @swift_dictionary_type | @swift_existential_type | @swift_opaque_type + +swift_navigation_expression_element( + unique int swift_navigation_expression: @swift_navigation_expression ref, + unique int element: @swift_navigation_expression_element_type ref +); + +@swift_navigation_expression_target_type = @swift_additive_expression | @swift_array_literal | @swift_array_type | @swift_as_expression | @swift_assignment | @swift_await_expression | @swift_bitwise_operation | @swift_call_expression | @swift_check_expression | @swift_comparison_expression | @swift_conjunction_expression | @swift_constructor_expression | @swift_dictionary_literal | @swift_dictionary_type | @swift_directive | @swift_disjunction_expression | @swift_equality_expression | @swift_existential_type | @swift_if_statement | @swift_infix_expression | @swift_key_path_expression | @swift_key_path_string_expression | @swift_lambda_literal | @swift_line_string_literal | @swift_macro_invocation | @swift_multi_line_string_literal | @swift_multiplicative_expression | @swift_navigation_expression | @swift_nil_coalescing_expression | @swift_opaque_type | @swift_open_end_range_expression | @swift_open_start_range_expression | @swift_playground_literal | @swift_postfix_expression | @swift_prefix_expression | @swift_range_expression | @swift_raw_string_literal | @swift_reserved_word | @swift_selector_expression | @swift_switch_statement | @swift_ternary_expression | @swift_token_bang | @swift_token_bin_literal | @swift_token_boolean_literal | @swift_token_custom_operator | @swift_token_diagnostic | @swift_token_fully_open_range | @swift_token_hex_literal | @swift_token_integer_literal | @swift_token_oct_literal | @swift_token_real_literal | @swift_token_regex_literal | @swift_token_self_expression | @swift_token_simple_identifier | @swift_token_special_literal | @swift_token_super_expression | @swift_try_expression | @swift_tuple_expression | @swift_user_type | @swift_value_pack_expansion | @swift_value_parameter_pack + +#keyset[swift_navigation_expression, index] +swift_navigation_expression_target( + int swift_navigation_expression: @swift_navigation_expression ref, + int index: int ref, + unique int target: @swift_navigation_expression_target_type ref +); + +swift_navigation_expression_def( + unique int id: @swift_navigation_expression, + int suffix: @swift_navigation_suffix ref +); + +@swift_navigation_suffix_suffix_type = @swift_token_integer_literal | @swift_token_simple_identifier + +swift_navigation_suffix_def( + unique int id: @swift_navigation_suffix, + int suffix: @swift_navigation_suffix_suffix_type ref +); + +@swift_nil_coalescing_expression_if_nil_type = @swift_additive_expression | @swift_array_literal | @swift_as_expression | @swift_assignment | @swift_await_expression | @swift_bitwise_operation | @swift_call_expression | @swift_check_expression | @swift_comparison_expression | @swift_conjunction_expression | @swift_constructor_expression | @swift_dictionary_literal | @swift_directive | @swift_disjunction_expression | @swift_equality_expression | @swift_if_statement | @swift_infix_expression | @swift_key_path_expression | @swift_key_path_string_expression | @swift_lambda_literal | @swift_line_string_literal | @swift_macro_invocation | @swift_multi_line_string_literal | @swift_multiplicative_expression | @swift_navigation_expression | @swift_nil_coalescing_expression | @swift_open_end_range_expression | @swift_open_start_range_expression | @swift_playground_literal | @swift_postfix_expression | @swift_prefix_expression | @swift_range_expression | @swift_raw_string_literal | @swift_reserved_word | @swift_selector_expression | @swift_switch_statement | @swift_ternary_expression | @swift_token_bang | @swift_token_bin_literal | @swift_token_boolean_literal | @swift_token_custom_operator | @swift_token_diagnostic | @swift_token_fully_open_range | @swift_token_hex_literal | @swift_token_integer_literal | @swift_token_oct_literal | @swift_token_real_literal | @swift_token_regex_literal | @swift_token_self_expression | @swift_token_simple_identifier | @swift_token_special_literal | @swift_token_super_expression | @swift_try_expression | @swift_tuple_expression | @swift_value_pack_expansion | @swift_value_parameter_pack + +#keyset[swift_nil_coalescing_expression, index] +swift_nil_coalescing_expression_if_nil( + int swift_nil_coalescing_expression: @swift_nil_coalescing_expression ref, + int index: int ref, + unique int if_nil: @swift_nil_coalescing_expression_if_nil_type ref +); + +@swift_nil_coalescing_expression_value_type = @swift_additive_expression | @swift_array_literal | @swift_as_expression | @swift_assignment | @swift_await_expression | @swift_bitwise_operation | @swift_call_expression | @swift_check_expression | @swift_comparison_expression | @swift_conjunction_expression | @swift_constructor_expression | @swift_dictionary_literal | @swift_directive | @swift_disjunction_expression | @swift_equality_expression | @swift_if_statement | @swift_infix_expression | @swift_key_path_expression | @swift_key_path_string_expression | @swift_lambda_literal | @swift_line_string_literal | @swift_macro_invocation | @swift_multi_line_string_literal | @swift_multiplicative_expression | @swift_navigation_expression | @swift_nil_coalescing_expression | @swift_open_end_range_expression | @swift_open_start_range_expression | @swift_playground_literal | @swift_postfix_expression | @swift_prefix_expression | @swift_range_expression | @swift_raw_string_literal | @swift_reserved_word | @swift_selector_expression | @swift_switch_statement | @swift_ternary_expression | @swift_token_bang | @swift_token_bin_literal | @swift_token_boolean_literal | @swift_token_custom_operator | @swift_token_diagnostic | @swift_token_fully_open_range | @swift_token_hex_literal | @swift_token_integer_literal | @swift_token_oct_literal | @swift_token_real_literal | @swift_token_regex_literal | @swift_token_self_expression | @swift_token_simple_identifier | @swift_token_special_literal | @swift_token_super_expression | @swift_try_expression | @swift_tuple_expression | @swift_value_pack_expansion | @swift_value_parameter_pack + +#keyset[swift_nil_coalescing_expression, index] +swift_nil_coalescing_expression_value( + int swift_nil_coalescing_expression: @swift_nil_coalescing_expression ref, + int index: int ref, + unique int value: @swift_nil_coalescing_expression_value_type ref +); + +swift_nil_coalescing_expression_def( + unique int id: @swift_nil_coalescing_expression +); + +@swift_opaque_type_child_type = @swift_array_type | @swift_dictionary_type | @swift_existential_type | @swift_function_type | @swift_metatype | @swift_opaque_type | @swift_optional_type | @swift_protocol_composition_type | @swift_suppressed_constraint | @swift_tuple_type | @swift_type_pack_expansion | @swift_type_parameter_pack | @swift_user_type + +swift_opaque_type_def( + unique int id: @swift_opaque_type, + int child: @swift_opaque_type_child_type ref +); + +@swift_open_end_range_expression_start_type = @swift_additive_expression | @swift_array_literal | @swift_as_expression | @swift_assignment | @swift_await_expression | @swift_bitwise_operation | @swift_call_expression | @swift_check_expression | @swift_comparison_expression | @swift_conjunction_expression | @swift_constructor_expression | @swift_dictionary_literal | @swift_directive | @swift_disjunction_expression | @swift_equality_expression | @swift_if_statement | @swift_infix_expression | @swift_key_path_expression | @swift_key_path_string_expression | @swift_lambda_literal | @swift_line_string_literal | @swift_macro_invocation | @swift_multi_line_string_literal | @swift_multiplicative_expression | @swift_navigation_expression | @swift_nil_coalescing_expression | @swift_open_end_range_expression | @swift_open_start_range_expression | @swift_playground_literal | @swift_postfix_expression | @swift_prefix_expression | @swift_range_expression | @swift_raw_string_literal | @swift_reserved_word | @swift_selector_expression | @swift_switch_statement | @swift_ternary_expression | @swift_token_bang | @swift_token_bin_literal | @swift_token_boolean_literal | @swift_token_custom_operator | @swift_token_diagnostic | @swift_token_fully_open_range | @swift_token_hex_literal | @swift_token_integer_literal | @swift_token_oct_literal | @swift_token_real_literal | @swift_token_regex_literal | @swift_token_self_expression | @swift_token_simple_identifier | @swift_token_special_literal | @swift_token_super_expression | @swift_try_expression | @swift_tuple_expression | @swift_value_pack_expansion | @swift_value_parameter_pack + +#keyset[swift_open_end_range_expression, index] +swift_open_end_range_expression_start( + int swift_open_end_range_expression: @swift_open_end_range_expression ref, + int index: int ref, + unique int start: @swift_open_end_range_expression_start_type ref +); + +swift_open_end_range_expression_def( + unique int id: @swift_open_end_range_expression +); + +@swift_open_start_range_expression_end_type = @swift_additive_expression | @swift_array_literal | @swift_as_expression | @swift_assignment | @swift_await_expression | @swift_bitwise_operation | @swift_call_expression | @swift_check_expression | @swift_comparison_expression | @swift_conjunction_expression | @swift_constructor_expression | @swift_dictionary_literal | @swift_directive | @swift_disjunction_expression | @swift_equality_expression | @swift_if_statement | @swift_infix_expression | @swift_key_path_expression | @swift_key_path_string_expression | @swift_lambda_literal | @swift_line_string_literal | @swift_macro_invocation | @swift_multi_line_string_literal | @swift_multiplicative_expression | @swift_navigation_expression | @swift_nil_coalescing_expression | @swift_open_end_range_expression | @swift_open_start_range_expression | @swift_playground_literal | @swift_postfix_expression | @swift_prefix_expression | @swift_range_expression | @swift_raw_string_literal | @swift_reserved_word | @swift_selector_expression | @swift_switch_statement | @swift_ternary_expression | @swift_token_bang | @swift_token_bin_literal | @swift_token_boolean_literal | @swift_token_custom_operator | @swift_token_diagnostic | @swift_token_fully_open_range | @swift_token_hex_literal | @swift_token_integer_literal | @swift_token_oct_literal | @swift_token_real_literal | @swift_token_regex_literal | @swift_token_self_expression | @swift_token_simple_identifier | @swift_token_special_literal | @swift_token_super_expression | @swift_try_expression | @swift_tuple_expression | @swift_value_pack_expansion | @swift_value_parameter_pack + +#keyset[swift_open_start_range_expression, index] +swift_open_start_range_expression_end( + int swift_open_start_range_expression: @swift_open_start_range_expression ref, + int index: int ref, + unique int end: @swift_open_start_range_expression_end_type ref +); + +swift_open_start_range_expression_def( + unique int id: @swift_open_start_range_expression +); + +@swift_operator_declaration_child_type = @swift_deprecated_operator_declaration_body | @swift_token_bang | @swift_token_custom_operator | @swift_token_simple_identifier + +#keyset[swift_operator_declaration, index] +swift_operator_declaration_child( + int swift_operator_declaration: @swift_operator_declaration ref, + int index: int ref, + unique int child: @swift_operator_declaration_child_type ref +); + +swift_operator_declaration_def( + unique int id: @swift_operator_declaration +); + +@swift_optional_type_wrapped_type = @swift_array_type | @swift_dictionary_type | @swift_tuple_type | @swift_user_type + +swift_optional_type_def( + unique int id: @swift_optional_type, + int wrapped: @swift_optional_type_wrapped_type ref +); + +swift_parameter_external_name( + unique int swift_parameter: @swift_parameter ref, + unique int external_name: @swift_token_simple_identifier ref +); + +@swift_parameter_name_type = @swift_array_type | @swift_dictionary_type | @swift_existential_type | @swift_function_type | @swift_metatype | @swift_opaque_type | @swift_optional_type | @swift_protocol_composition_type | @swift_suppressed_constraint | @swift_token_simple_identifier | @swift_tuple_type | @swift_type_pack_expansion | @swift_type_parameter_pack | @swift_user_type + +#keyset[swift_parameter, index] +swift_parameter_name( + int swift_parameter: @swift_parameter ref, + int index: int ref, + unique int name: @swift_parameter_name_type ref +); + +@swift_parameter_type_type = @swift_array_type | @swift_dictionary_type | @swift_existential_type | @swift_function_type | @swift_metatype | @swift_opaque_type | @swift_optional_type | @swift_protocol_composition_type | @swift_reserved_word | @swift_suppressed_constraint | @swift_tuple_type | @swift_type_modifiers | @swift_type_pack_expansion | @swift_type_parameter_pack | @swift_user_type + +#keyset[swift_parameter, index] +swift_parameter_type( + int swift_parameter: @swift_parameter ref, + int index: int ref, + unique int type__: @swift_parameter_type_type ref +); + +swift_parameter_child( + unique int swift_parameter: @swift_parameter ref, + unique int child: @swift_parameter_modifiers ref +); + +swift_parameter_def( + unique int id: @swift_parameter +); + +#keyset[swift_parameter_modifiers, index] +swift_parameter_modifiers_child( + int swift_parameter_modifiers: @swift_parameter_modifiers ref, + int index: int ref, + unique int child: @swift_token_parameter_modifier ref +); + +swift_parameter_modifiers_def( + unique int id: @swift_parameter_modifiers +); + +swift_pattern_bound_identifier( + unique int swift_pattern: @swift_pattern ref, + unique int bound_identifier: @swift_token_simple_identifier ref +); + +@swift_pattern_name_type = @swift_array_type | @swift_dictionary_type | @swift_existential_type | @swift_function_type | @swift_metatype | @swift_opaque_type | @swift_optional_type | @swift_protocol_composition_type | @swift_suppressed_constraint | @swift_tuple_type | @swift_type_pack_expansion | @swift_type_parameter_pack | @swift_user_type + +swift_pattern_name( + unique int swift_pattern: @swift_pattern ref, + unique int name: @swift_pattern_name_type ref +); + +@swift_pattern_child_type = @swift_additive_expression | @swift_array_literal | @swift_as_expression | @swift_assignment | @swift_await_expression | @swift_bitwise_operation | @swift_call_expression | @swift_check_expression | @swift_comparison_expression | @swift_conjunction_expression | @swift_constructor_expression | @swift_dictionary_literal | @swift_directive | @swift_disjunction_expression | @swift_equality_expression | @swift_if_statement | @swift_infix_expression | @swift_key_path_expression | @swift_key_path_string_expression | @swift_lambda_literal | @swift_line_string_literal | @swift_macro_invocation | @swift_multi_line_string_literal | @swift_multiplicative_expression | @swift_navigation_expression | @swift_nil_coalescing_expression | @swift_open_end_range_expression | @swift_open_start_range_expression | @swift_pattern | @swift_playground_literal | @swift_postfix_expression | @swift_prefix_expression | @swift_range_expression | @swift_raw_string_literal | @swift_selector_expression | @swift_switch_statement | @swift_ternary_expression | @swift_token_bang | @swift_token_bin_literal | @swift_token_boolean_literal | @swift_token_custom_operator | @swift_token_diagnostic | @swift_token_fully_open_range | @swift_token_hex_literal | @swift_token_integer_literal | @swift_token_oct_literal | @swift_token_real_literal | @swift_token_regex_literal | @swift_token_self_expression | @swift_token_simple_identifier | @swift_token_special_literal | @swift_token_super_expression | @swift_token_wildcard_pattern | @swift_try_expression | @swift_tuple_expression | @swift_type_modifiers | @swift_user_type | @swift_value_binding_pattern | @swift_value_pack_expansion | @swift_value_parameter_pack + +#keyset[swift_pattern, index] +swift_pattern_child( + int swift_pattern: @swift_pattern ref, + int index: int ref, + unique int child: @swift_pattern_child_type ref +); + +swift_pattern_def( + unique int id: @swift_pattern +); + +@swift_playground_literal_child_type = @swift_additive_expression | @swift_array_literal | @swift_as_expression | @swift_assignment | @swift_await_expression | @swift_bitwise_operation | @swift_call_expression | @swift_check_expression | @swift_comparison_expression | @swift_conjunction_expression | @swift_constructor_expression | @swift_dictionary_literal | @swift_directive | @swift_disjunction_expression | @swift_equality_expression | @swift_if_statement | @swift_infix_expression | @swift_key_path_expression | @swift_key_path_string_expression | @swift_lambda_literal | @swift_line_string_literal | @swift_macro_invocation | @swift_multi_line_string_literal | @swift_multiplicative_expression | @swift_navigation_expression | @swift_nil_coalescing_expression | @swift_open_end_range_expression | @swift_open_start_range_expression | @swift_playground_literal | @swift_postfix_expression | @swift_prefix_expression | @swift_range_expression | @swift_raw_string_literal | @swift_selector_expression | @swift_switch_statement | @swift_ternary_expression | @swift_token_bang | @swift_token_bin_literal | @swift_token_boolean_literal | @swift_token_custom_operator | @swift_token_diagnostic | @swift_token_fully_open_range | @swift_token_hex_literal | @swift_token_integer_literal | @swift_token_oct_literal | @swift_token_real_literal | @swift_token_regex_literal | @swift_token_self_expression | @swift_token_simple_identifier | @swift_token_special_literal | @swift_token_super_expression | @swift_try_expression | @swift_tuple_expression | @swift_value_pack_expansion | @swift_value_parameter_pack + +#keyset[swift_playground_literal, index] +swift_playground_literal_child( + int swift_playground_literal: @swift_playground_literal ref, + int index: int ref, + unique int child: @swift_playground_literal_child_type ref +); + +swift_playground_literal_def( + unique int id: @swift_playground_literal +); + +@swift_postfix_expression_operation_type = @swift_reserved_word | @swift_token_bang + +@swift_postfix_expression_target_type = @swift_additive_expression | @swift_array_literal | @swift_as_expression | @swift_assignment | @swift_await_expression | @swift_bitwise_operation | @swift_call_expression | @swift_check_expression | @swift_comparison_expression | @swift_conjunction_expression | @swift_constructor_expression | @swift_dictionary_literal | @swift_directive | @swift_disjunction_expression | @swift_equality_expression | @swift_if_statement | @swift_infix_expression | @swift_key_path_expression | @swift_key_path_string_expression | @swift_lambda_literal | @swift_line_string_literal | @swift_macro_invocation | @swift_multi_line_string_literal | @swift_multiplicative_expression | @swift_navigation_expression | @swift_nil_coalescing_expression | @swift_open_end_range_expression | @swift_open_start_range_expression | @swift_playground_literal | @swift_postfix_expression | @swift_prefix_expression | @swift_range_expression | @swift_raw_string_literal | @swift_reserved_word | @swift_selector_expression | @swift_switch_statement | @swift_ternary_expression | @swift_token_bang | @swift_token_bin_literal | @swift_token_boolean_literal | @swift_token_custom_operator | @swift_token_diagnostic | @swift_token_fully_open_range | @swift_token_hex_literal | @swift_token_integer_literal | @swift_token_oct_literal | @swift_token_real_literal | @swift_token_regex_literal | @swift_token_self_expression | @swift_token_simple_identifier | @swift_token_special_literal | @swift_token_super_expression | @swift_try_expression | @swift_tuple_expression | @swift_value_pack_expansion | @swift_value_parameter_pack + +#keyset[swift_postfix_expression, index] +swift_postfix_expression_target( + int swift_postfix_expression: @swift_postfix_expression ref, + int index: int ref, + unique int target: @swift_postfix_expression_target_type ref +); + +swift_postfix_expression_def( + unique int id: @swift_postfix_expression, + int operation: @swift_postfix_expression_operation_type ref +); + +@swift_precedence_group_attribute_child_type = @swift_token_boolean_literal | @swift_token_simple_identifier + +#keyset[swift_precedence_group_attribute, index] +swift_precedence_group_attribute_child( + int swift_precedence_group_attribute: @swift_precedence_group_attribute ref, + int index: int ref, + unique int child: @swift_precedence_group_attribute_child_type ref +); + +swift_precedence_group_attribute_def( + unique int id: @swift_precedence_group_attribute +); + +#keyset[swift_precedence_group_attributes, index] +swift_precedence_group_attributes_child( + int swift_precedence_group_attributes: @swift_precedence_group_attributes ref, + int index: int ref, + unique int child: @swift_precedence_group_attribute ref +); + +swift_precedence_group_attributes_def( + unique int id: @swift_precedence_group_attributes +); + +@swift_precedence_group_declaration_child_type = @swift_precedence_group_attributes | @swift_token_simple_identifier + +#keyset[swift_precedence_group_declaration, index] +swift_precedence_group_declaration_child( + int swift_precedence_group_declaration: @swift_precedence_group_declaration ref, + int index: int ref, + unique int child: @swift_precedence_group_declaration_child_type ref +); + +swift_precedence_group_declaration_def( + unique int id: @swift_precedence_group_declaration +); + +@swift_prefix_expression_operation_type = @swift_reserved_word | @swift_token_bang | @swift_token_custom_operator + +@swift_prefix_expression_target_type = @swift_additive_expression | @swift_array_literal | @swift_as_expression | @swift_assignment | @swift_await_expression | @swift_bitwise_operation | @swift_call_expression | @swift_check_expression | @swift_comparison_expression | @swift_conjunction_expression | @swift_constructor_expression | @swift_dictionary_literal | @swift_directive | @swift_disjunction_expression | @swift_equality_expression | @swift_if_statement | @swift_infix_expression | @swift_key_path_expression | @swift_key_path_string_expression | @swift_lambda_literal | @swift_line_string_literal | @swift_macro_invocation | @swift_multi_line_string_literal | @swift_multiplicative_expression | @swift_navigation_expression | @swift_nil_coalescing_expression | @swift_open_end_range_expression | @swift_open_start_range_expression | @swift_playground_literal | @swift_postfix_expression | @swift_prefix_expression | @swift_range_expression | @swift_raw_string_literal | @swift_reserved_word | @swift_selector_expression | @swift_switch_statement | @swift_ternary_expression | @swift_token__expression | @swift_token_bang | @swift_token_bin_literal | @swift_token_boolean_literal | @swift_token_custom_operator | @swift_token_diagnostic | @swift_token_fully_open_range | @swift_token_hex_literal | @swift_token_integer_literal | @swift_token_oct_literal | @swift_token_real_literal | @swift_token_regex_literal | @swift_token_self_expression | @swift_token_simple_identifier | @swift_token_special_literal | @swift_token_super_expression | @swift_try_expression | @swift_tuple_expression | @swift_value_pack_expansion | @swift_value_parameter_pack + +#keyset[swift_prefix_expression, index] +swift_prefix_expression_target( + int swift_prefix_expression: @swift_prefix_expression ref, + int index: int ref, + unique int target: @swift_prefix_expression_target_type ref +); + +swift_prefix_expression_def( + unique int id: @swift_prefix_expression, + int operation: @swift_prefix_expression_operation_type ref +); + +#keyset[swift_property_declaration, index] +swift_property_declaration_computed_value( + int swift_property_declaration: @swift_property_declaration ref, + int index: int ref, + unique int computed_value: @swift_computed_property ref +); + +#keyset[swift_property_declaration, index] +swift_property_declaration_name( + int swift_property_declaration: @swift_property_declaration ref, + int index: int ref, + unique int name: @swift_pattern ref +); + +@swift_property_declaration_value_type = @swift_additive_expression | @swift_array_literal | @swift_as_expression | @swift_assignment | @swift_await_expression | @swift_bitwise_operation | @swift_call_expression | @swift_check_expression | @swift_comparison_expression | @swift_conjunction_expression | @swift_constructor_expression | @swift_dictionary_literal | @swift_directive | @swift_disjunction_expression | @swift_equality_expression | @swift_if_statement | @swift_infix_expression | @swift_key_path_expression | @swift_key_path_string_expression | @swift_lambda_literal | @swift_line_string_literal | @swift_macro_invocation | @swift_multi_line_string_literal | @swift_multiplicative_expression | @swift_navigation_expression | @swift_nil_coalescing_expression | @swift_open_end_range_expression | @swift_open_start_range_expression | @swift_playground_literal | @swift_postfix_expression | @swift_prefix_expression | @swift_range_expression | @swift_raw_string_literal | @swift_reserved_word | @swift_selector_expression | @swift_switch_statement | @swift_ternary_expression | @swift_token_bang | @swift_token_bin_literal | @swift_token_boolean_literal | @swift_token_custom_operator | @swift_token_diagnostic | @swift_token_fully_open_range | @swift_token_hex_literal | @swift_token_integer_literal | @swift_token_oct_literal | @swift_token_real_literal | @swift_token_regex_literal | @swift_token_self_expression | @swift_token_simple_identifier | @swift_token_special_literal | @swift_token_super_expression | @swift_try_expression | @swift_tuple_expression | @swift_value_pack_expansion | @swift_value_parameter_pack + +#keyset[swift_property_declaration, index] +swift_property_declaration_value( + int swift_property_declaration: @swift_property_declaration ref, + int index: int ref, + unique int value: @swift_property_declaration_value_type ref +); + +@swift_property_declaration_child_type = @swift_attribute | @swift_modifiers | @swift_token_inheritance_modifier | @swift_token_ownership_modifier | @swift_token_property_behavior_modifier | @swift_type_annotation | @swift_type_constraints | @swift_value_binding_pattern | @swift_willset_didset_block + +#keyset[swift_property_declaration, index] +swift_property_declaration_child( + int swift_property_declaration: @swift_property_declaration ref, + int index: int ref, + unique int child: @swift_property_declaration_child_type ref +); + +swift_property_declaration_def( + unique int id: @swift_property_declaration +); + +#keyset[swift_protocol_body, index] +swift_protocol_body_body( + int swift_protocol_body: @swift_protocol_body ref, + int index: int ref, + unique int body: @swift_protocol_function_declaration ref +); + +@swift_protocol_body_child_type = @swift_associatedtype_declaration | @swift_deinit_declaration | @swift_init_declaration | @swift_protocol_function_declaration | @swift_protocol_property_declaration | @swift_subscript_declaration | @swift_typealias_declaration + +#keyset[swift_protocol_body, index] +swift_protocol_body_child( + int swift_protocol_body: @swift_protocol_body ref, + int index: int ref, + unique int child: @swift_protocol_body_child_type ref +); + +swift_protocol_body_def( + unique int id: @swift_protocol_body +); + +@swift_protocol_composition_type_child_type = @swift_array_type | @swift_dictionary_type | @swift_existential_type | @swift_function_type | @swift_metatype | @swift_opaque_type | @swift_optional_type | @swift_protocol_composition_type | @swift_suppressed_constraint | @swift_tuple_type | @swift_type_pack_expansion | @swift_type_parameter_pack | @swift_user_type + +#keyset[swift_protocol_composition_type, index] +swift_protocol_composition_type_child( + int swift_protocol_composition_type: @swift_protocol_composition_type ref, + int index: int ref, + unique int child: @swift_protocol_composition_type_child_type ref +); + +swift_protocol_composition_type_def( + unique int id: @swift_protocol_composition_type +); + +case @swift_protocol_declaration.declaration_kind of + 0 = @swift_protocol_declaration_protocol +; + + +@swift_protocol_declaration_child_type = @swift_attribute | @swift_inheritance_specifier | @swift_modifiers | @swift_type_constraints | @swift_type_parameters + +#keyset[swift_protocol_declaration, index] +swift_protocol_declaration_child( + int swift_protocol_declaration: @swift_protocol_declaration ref, + int index: int ref, + unique int child: @swift_protocol_declaration_child_type ref +); + +swift_protocol_declaration_def( + unique int id: @swift_protocol_declaration, + int body: @swift_protocol_body ref, + int declaration_kind: int ref, + int name: @swift_token_type_identifier ref +); + +@swift_protocol_function_declaration_default_value_type = @swift_additive_expression | @swift_array_literal | @swift_as_expression | @swift_assignment | @swift_await_expression | @swift_bitwise_operation | @swift_call_expression | @swift_check_expression | @swift_comparison_expression | @swift_conjunction_expression | @swift_constructor_expression | @swift_dictionary_literal | @swift_directive | @swift_disjunction_expression | @swift_equality_expression | @swift_if_statement | @swift_infix_expression | @swift_key_path_expression | @swift_key_path_string_expression | @swift_lambda_literal | @swift_line_string_literal | @swift_macro_invocation | @swift_multi_line_string_literal | @swift_multiplicative_expression | @swift_navigation_expression | @swift_nil_coalescing_expression | @swift_open_end_range_expression | @swift_open_start_range_expression | @swift_playground_literal | @swift_postfix_expression | @swift_prefix_expression | @swift_range_expression | @swift_raw_string_literal | @swift_reserved_word | @swift_selector_expression | @swift_switch_statement | @swift_ternary_expression | @swift_token_bang | @swift_token_bin_literal | @swift_token_boolean_literal | @swift_token_custom_operator | @swift_token_diagnostic | @swift_token_fully_open_range | @swift_token_hex_literal | @swift_token_integer_literal | @swift_token_oct_literal | @swift_token_real_literal | @swift_token_regex_literal | @swift_token_self_expression | @swift_token_simple_identifier | @swift_token_special_literal | @swift_token_super_expression | @swift_try_expression | @swift_tuple_expression | @swift_value_pack_expansion | @swift_value_parameter_pack + +#keyset[swift_protocol_function_declaration, index] +swift_protocol_function_declaration_default_value( + int swift_protocol_function_declaration: @swift_protocol_function_declaration ref, + int index: int ref, + unique int default_value: @swift_protocol_function_declaration_default_value_type ref +); + +@swift_protocol_function_declaration_name_type = @swift_array_type | @swift_dictionary_type | @swift_existential_type | @swift_function_type | @swift_metatype | @swift_opaque_type | @swift_optional_type | @swift_protocol_composition_type | @swift_reserved_word | @swift_suppressed_constraint | @swift_token_bang | @swift_token_custom_operator | @swift_token_simple_identifier | @swift_tuple_type | @swift_type_pack_expansion | @swift_type_parameter_pack | @swift_user_type + +#keyset[swift_protocol_function_declaration, index] +swift_protocol_function_declaration_name( + int swift_protocol_function_declaration: @swift_protocol_function_declaration ref, + int index: int ref, + unique int name: @swift_protocol_function_declaration_name_type ref +); + +@swift_protocol_function_declaration_return_type_type = @swift_array_type | @swift_dictionary_type | @swift_existential_type | @swift_function_type | @swift_metatype | @swift_opaque_type | @swift_optional_type | @swift_protocol_composition_type | @swift_reserved_word | @swift_suppressed_constraint | @swift_tuple_type | @swift_type_modifiers | @swift_type_pack_expansion | @swift_type_parameter_pack | @swift_user_type + +#keyset[swift_protocol_function_declaration, index] +swift_protocol_function_declaration_return_type( + int swift_protocol_function_declaration: @swift_protocol_function_declaration ref, + int index: int ref, + unique int return_type: @swift_protocol_function_declaration_return_type_type ref +); + +@swift_protocol_function_declaration_child_type = @swift_attribute | @swift_modifiers | @swift_parameter | @swift_statements | @swift_throws_clause | @swift_token_throws | @swift_type_constraints | @swift_type_parameters + +#keyset[swift_protocol_function_declaration, index] +swift_protocol_function_declaration_child( + int swift_protocol_function_declaration: @swift_protocol_function_declaration ref, + int index: int ref, + unique int child: @swift_protocol_function_declaration_child_type ref +); + +swift_protocol_function_declaration_def( + unique int id: @swift_protocol_function_declaration +); + +@swift_protocol_property_declaration_child_type = @swift_modifiers | @swift_protocol_property_requirements | @swift_type_annotation | @swift_type_constraints + +#keyset[swift_protocol_property_declaration, index] +swift_protocol_property_declaration_child( + int swift_protocol_property_declaration: @swift_protocol_property_declaration ref, + int index: int ref, + unique int child: @swift_protocol_property_declaration_child_type ref +); + +swift_protocol_property_declaration_def( + unique int id: @swift_protocol_property_declaration, + int name: @swift_pattern ref +); + +@swift_protocol_property_requirements_child_type = @swift_getter_specifier | @swift_setter_specifier + +#keyset[swift_protocol_property_requirements, index] +swift_protocol_property_requirements_child( + int swift_protocol_property_requirements: @swift_protocol_property_requirements ref, + int index: int ref, + unique int child: @swift_protocol_property_requirements_child_type ref +); + +swift_protocol_property_requirements_def( + unique int id: @swift_protocol_property_requirements +); + +@swift_range_expression_end_type = @swift_additive_expression | @swift_array_literal | @swift_as_expression | @swift_assignment | @swift_await_expression | @swift_bitwise_operation | @swift_call_expression | @swift_check_expression | @swift_comparison_expression | @swift_conjunction_expression | @swift_constructor_expression | @swift_dictionary_literal | @swift_directive | @swift_disjunction_expression | @swift_equality_expression | @swift_if_statement | @swift_infix_expression | @swift_key_path_expression | @swift_key_path_string_expression | @swift_lambda_literal | @swift_line_string_literal | @swift_macro_invocation | @swift_multi_line_string_literal | @swift_multiplicative_expression | @swift_navigation_expression | @swift_nil_coalescing_expression | @swift_open_end_range_expression | @swift_open_start_range_expression | @swift_playground_literal | @swift_postfix_expression | @swift_prefix_expression | @swift_range_expression | @swift_raw_string_literal | @swift_reserved_word | @swift_selector_expression | @swift_switch_statement | @swift_ternary_expression | @swift_token_bang | @swift_token_bin_literal | @swift_token_boolean_literal | @swift_token_custom_operator | @swift_token_diagnostic | @swift_token_fully_open_range | @swift_token_hex_literal | @swift_token_integer_literal | @swift_token_oct_literal | @swift_token_real_literal | @swift_token_regex_literal | @swift_token_self_expression | @swift_token_simple_identifier | @swift_token_special_literal | @swift_token_super_expression | @swift_try_expression | @swift_tuple_expression | @swift_value_pack_expansion | @swift_value_parameter_pack + +#keyset[swift_range_expression, index] +swift_range_expression_end( + int swift_range_expression: @swift_range_expression ref, + int index: int ref, + unique int end: @swift_range_expression_end_type ref +); + +case @swift_range_expression.op of + 0 = @swift_range_expression_dotdotdot +| 1 = @swift_range_expression_dotdotlangle +; + + +@swift_range_expression_start_type = @swift_additive_expression | @swift_array_literal | @swift_as_expression | @swift_assignment | @swift_await_expression | @swift_bitwise_operation | @swift_call_expression | @swift_check_expression | @swift_comparison_expression | @swift_conjunction_expression | @swift_constructor_expression | @swift_dictionary_literal | @swift_directive | @swift_disjunction_expression | @swift_equality_expression | @swift_if_statement | @swift_infix_expression | @swift_key_path_expression | @swift_key_path_string_expression | @swift_lambda_literal | @swift_line_string_literal | @swift_macro_invocation | @swift_multi_line_string_literal | @swift_multiplicative_expression | @swift_navigation_expression | @swift_nil_coalescing_expression | @swift_open_end_range_expression | @swift_open_start_range_expression | @swift_playground_literal | @swift_postfix_expression | @swift_prefix_expression | @swift_range_expression | @swift_raw_string_literal | @swift_reserved_word | @swift_selector_expression | @swift_switch_statement | @swift_ternary_expression | @swift_token_bang | @swift_token_bin_literal | @swift_token_boolean_literal | @swift_token_custom_operator | @swift_token_diagnostic | @swift_token_fully_open_range | @swift_token_hex_literal | @swift_token_integer_literal | @swift_token_oct_literal | @swift_token_real_literal | @swift_token_regex_literal | @swift_token_self_expression | @swift_token_simple_identifier | @swift_token_special_literal | @swift_token_super_expression | @swift_try_expression | @swift_tuple_expression | @swift_value_pack_expansion | @swift_value_parameter_pack + +#keyset[swift_range_expression, index] +swift_range_expression_start( + int swift_range_expression: @swift_range_expression ref, + int index: int ref, + unique int start: @swift_range_expression_start_type ref +); + +swift_range_expression_def( + unique int id: @swift_range_expression, + int op: int ref +); + +#keyset[swift_raw_str_interpolation, index] +swift_raw_str_interpolation_interpolation( + int swift_raw_str_interpolation: @swift_raw_str_interpolation ref, + int index: int ref, + unique int interpolation: @swift_interpolated_expression ref +); + +swift_raw_str_interpolation_def( + unique int id: @swift_raw_str_interpolation, + int child: @swift_token_raw_str_interpolation_start ref +); + +#keyset[swift_raw_string_literal, index] +swift_raw_string_literal_interpolation( + int swift_raw_string_literal: @swift_raw_string_literal ref, + int index: int ref, + unique int interpolation: @swift_raw_str_interpolation ref +); + +@swift_raw_string_literal_text_type = @swift_token_raw_str_end_part | @swift_token_raw_str_part + +#keyset[swift_raw_string_literal, index] +swift_raw_string_literal_text( + int swift_raw_string_literal: @swift_raw_string_literal ref, + int index: int ref, + unique int text: @swift_raw_string_literal_text_type ref +); + +#keyset[swift_raw_string_literal, index] +swift_raw_string_literal_child( + int swift_raw_string_literal: @swift_raw_string_literal ref, + int index: int ref, + unique int child: @swift_token_raw_str_continuing_indicator ref +); + +swift_raw_string_literal_def( + unique int id: @swift_raw_string_literal +); + +#keyset[swift_repeat_while_statement, index] +swift_repeat_while_statement_bound_identifier( + int swift_repeat_while_statement: @swift_repeat_while_statement ref, + int index: int ref, + unique int bound_identifier: @swift_token_simple_identifier ref +); + +@swift_repeat_while_statement_condition_type = @swift_additive_expression | @swift_array_literal | @swift_array_type | @swift_as_expression | @swift_assignment | @swift_availability_condition | @swift_await_expression | @swift_bitwise_operation | @swift_call_expression | @swift_check_expression | @swift_comparison_expression | @swift_conjunction_expression | @swift_constructor_expression | @swift_dictionary_literal | @swift_dictionary_type | @swift_directive | @swift_disjunction_expression | @swift_equality_expression | @swift_existential_type | @swift_function_type | @swift_if_statement | @swift_infix_expression | @swift_key_path_expression | @swift_key_path_string_expression | @swift_lambda_literal | @swift_line_string_literal | @swift_macro_invocation | @swift_metatype | @swift_multi_line_string_literal | @swift_multiplicative_expression | @swift_navigation_expression | @swift_nil_coalescing_expression | @swift_opaque_type | @swift_open_end_range_expression | @swift_open_start_range_expression | @swift_optional_type | @swift_pattern | @swift_playground_literal | @swift_postfix_expression | @swift_prefix_expression | @swift_protocol_composition_type | @swift_range_expression | @swift_raw_string_literal | @swift_reserved_word | @swift_selector_expression | @swift_suppressed_constraint | @swift_switch_statement | @swift_ternary_expression | @swift_token_bang | @swift_token_bin_literal | @swift_token_boolean_literal | @swift_token_custom_operator | @swift_token_diagnostic | @swift_token_fully_open_range | @swift_token_hex_literal | @swift_token_integer_literal | @swift_token_oct_literal | @swift_token_real_literal | @swift_token_regex_literal | @swift_token_self_expression | @swift_token_simple_identifier | @swift_token_special_literal | @swift_token_super_expression | @swift_token_wildcard_pattern | @swift_try_expression | @swift_tuple_expression | @swift_tuple_type | @swift_type_annotation | @swift_type_modifiers | @swift_type_pack_expansion | @swift_type_parameter_pack | @swift_user_type | @swift_value_binding_pattern | @swift_value_pack_expansion | @swift_value_parameter_pack | @swift_where_clause + +#keyset[swift_repeat_while_statement, index] +swift_repeat_while_statement_condition( + int swift_repeat_while_statement: @swift_repeat_while_statement ref, + int index: int ref, + unique int condition: @swift_repeat_while_statement_condition_type ref +); + +@swift_repeat_while_statement_name_type = @swift_array_type | @swift_dictionary_type | @swift_existential_type | @swift_function_type | @swift_metatype | @swift_opaque_type | @swift_optional_type | @swift_protocol_composition_type | @swift_suppressed_constraint | @swift_tuple_type | @swift_type_pack_expansion | @swift_type_parameter_pack | @swift_user_type + +#keyset[swift_repeat_while_statement, index] +swift_repeat_while_statement_name( + int swift_repeat_while_statement: @swift_repeat_while_statement ref, + int index: int ref, + unique int name: @swift_repeat_while_statement_name_type ref +); + +swift_repeat_while_statement_child( + unique int swift_repeat_while_statement: @swift_repeat_while_statement ref, + unique int child: @swift_statements ref +); + +swift_repeat_while_statement_def( + unique int id: @swift_repeat_while_statement +); + +@swift_selector_expression_child_type = @swift_additive_expression | @swift_array_literal | @swift_as_expression | @swift_assignment | @swift_await_expression | @swift_bitwise_operation | @swift_call_expression | @swift_check_expression | @swift_comparison_expression | @swift_conjunction_expression | @swift_constructor_expression | @swift_dictionary_literal | @swift_directive | @swift_disjunction_expression | @swift_equality_expression | @swift_if_statement | @swift_infix_expression | @swift_key_path_expression | @swift_key_path_string_expression | @swift_lambda_literal | @swift_line_string_literal | @swift_macro_invocation | @swift_multi_line_string_literal | @swift_multiplicative_expression | @swift_navigation_expression | @swift_nil_coalescing_expression | @swift_open_end_range_expression | @swift_open_start_range_expression | @swift_playground_literal | @swift_postfix_expression | @swift_prefix_expression | @swift_range_expression | @swift_raw_string_literal | @swift_selector_expression | @swift_switch_statement | @swift_ternary_expression | @swift_token_bang | @swift_token_bin_literal | @swift_token_boolean_literal | @swift_token_custom_operator | @swift_token_diagnostic | @swift_token_fully_open_range | @swift_token_hex_literal | @swift_token_integer_literal | @swift_token_oct_literal | @swift_token_real_literal | @swift_token_regex_literal | @swift_token_self_expression | @swift_token_simple_identifier | @swift_token_special_literal | @swift_token_super_expression | @swift_try_expression | @swift_tuple_expression | @swift_value_pack_expansion | @swift_value_parameter_pack + +swift_selector_expression_child( + unique int swift_selector_expression: @swift_selector_expression ref, + unique int child: @swift_selector_expression_child_type ref +); + +swift_selector_expression_def( + unique int id: @swift_selector_expression +); + +swift_setter_specifier_child( + unique int swift_setter_specifier: @swift_setter_specifier ref, + unique int child: @swift_token_mutation_modifier ref +); + +swift_setter_specifier_def( + unique int id: @swift_setter_specifier +); + +@swift_source_file_child_type = @swift_additive_expression | @swift_array_literal | @swift_as_expression | @swift_assignment | @swift_associatedtype_declaration | @swift_await_expression | @swift_bitwise_operation | @swift_call_expression | @swift_check_expression | @swift_class_declaration | @swift_comparison_expression | @swift_conjunction_expression | @swift_constructor_expression | @swift_dictionary_literal | @swift_directive | @swift_disjunction_expression | @swift_do_statement | @swift_equality_expression | @swift_for_statement | @swift_function_declaration | @swift_guard_statement | @swift_if_statement | @swift_import_declaration | @swift_infix_expression | @swift_init_declaration | @swift_key_path_expression | @swift_key_path_string_expression | @swift_lambda_literal | @swift_line_string_literal | @swift_macro_declaration | @swift_macro_invocation | @swift_multi_line_string_literal | @swift_multiplicative_expression | @swift_navigation_expression | @swift_nil_coalescing_expression | @swift_open_end_range_expression | @swift_open_start_range_expression | @swift_operator_declaration | @swift_playground_literal | @swift_postfix_expression | @swift_precedence_group_declaration | @swift_prefix_expression | @swift_property_declaration | @swift_protocol_declaration | @swift_range_expression | @swift_raw_string_literal | @swift_repeat_while_statement | @swift_selector_expression | @swift_switch_statement | @swift_ternary_expression | @swift_token_bang | @swift_token_bin_literal | @swift_token_boolean_literal | @swift_token_custom_operator | @swift_token_diagnostic | @swift_token_fully_open_range | @swift_token_hex_literal | @swift_token_integer_literal | @swift_token_oct_literal | @swift_token_real_literal | @swift_token_regex_literal | @swift_token_self_expression | @swift_token_shebang_line | @swift_token_simple_identifier | @swift_token_special_literal | @swift_token_statement_label | @swift_token_super_expression | @swift_token_throw_keyword | @swift_try_expression | @swift_tuple_expression | @swift_typealias_declaration | @swift_value_pack_expansion | @swift_value_parameter_pack | @swift_while_statement + +#keyset[swift_source_file, index] +swift_source_file_child( + int swift_source_file: @swift_source_file ref, + int index: int ref, + unique int child: @swift_source_file_child_type ref +); + +swift_source_file_def( + unique int id: @swift_source_file +); + +@swift_statements_child_type = @swift_additive_expression | @swift_array_literal | @swift_as_expression | @swift_assignment | @swift_await_expression | @swift_bitwise_operation | @swift_call_expression | @swift_check_expression | @swift_class_declaration | @swift_comparison_expression | @swift_conjunction_expression | @swift_constructor_expression | @swift_control_transfer_statement | @swift_dictionary_literal | @swift_directive | @swift_disjunction_expression | @swift_do_statement | @swift_equality_expression | @swift_for_statement | @swift_function_declaration | @swift_guard_statement | @swift_if_statement | @swift_infix_expression | @swift_key_path_expression | @swift_key_path_string_expression | @swift_lambda_literal | @swift_line_string_literal | @swift_macro_invocation | @swift_multi_line_string_literal | @swift_multiplicative_expression | @swift_navigation_expression | @swift_nil_coalescing_expression | @swift_open_end_range_expression | @swift_open_start_range_expression | @swift_playground_literal | @swift_postfix_expression | @swift_prefix_expression | @swift_property_declaration | @swift_range_expression | @swift_raw_string_literal | @swift_repeat_while_statement | @swift_selector_expression | @swift_switch_statement | @swift_ternary_expression | @swift_token_bang | @swift_token_bin_literal | @swift_token_boolean_literal | @swift_token_custom_operator | @swift_token_diagnostic | @swift_token_fully_open_range | @swift_token_hex_literal | @swift_token_integer_literal | @swift_token_oct_literal | @swift_token_real_literal | @swift_token_regex_literal | @swift_token_self_expression | @swift_token_simple_identifier | @swift_token_special_literal | @swift_token_statement_label | @swift_token_super_expression | @swift_try_expression | @swift_tuple_expression | @swift_typealias_declaration | @swift_value_pack_expansion | @swift_value_parameter_pack | @swift_while_statement + +#keyset[swift_statements, index] +swift_statements_child( + int swift_statements: @swift_statements ref, + int index: int ref, + unique int child: @swift_statements_child_type ref +); + +swift_statements_def( + unique int id: @swift_statements +); + +@swift_subscript_declaration_default_value_type = @swift_additive_expression | @swift_array_literal | @swift_as_expression | @swift_assignment | @swift_await_expression | @swift_bitwise_operation | @swift_call_expression | @swift_check_expression | @swift_comparison_expression | @swift_conjunction_expression | @swift_constructor_expression | @swift_dictionary_literal | @swift_directive | @swift_disjunction_expression | @swift_equality_expression | @swift_if_statement | @swift_infix_expression | @swift_key_path_expression | @swift_key_path_string_expression | @swift_lambda_literal | @swift_line_string_literal | @swift_macro_invocation | @swift_multi_line_string_literal | @swift_multiplicative_expression | @swift_navigation_expression | @swift_nil_coalescing_expression | @swift_open_end_range_expression | @swift_open_start_range_expression | @swift_playground_literal | @swift_postfix_expression | @swift_prefix_expression | @swift_range_expression | @swift_raw_string_literal | @swift_reserved_word | @swift_selector_expression | @swift_switch_statement | @swift_ternary_expression | @swift_token_bang | @swift_token_bin_literal | @swift_token_boolean_literal | @swift_token_custom_operator | @swift_token_diagnostic | @swift_token_fully_open_range | @swift_token_hex_literal | @swift_token_integer_literal | @swift_token_oct_literal | @swift_token_real_literal | @swift_token_regex_literal | @swift_token_self_expression | @swift_token_simple_identifier | @swift_token_special_literal | @swift_token_super_expression | @swift_try_expression | @swift_tuple_expression | @swift_value_pack_expansion | @swift_value_parameter_pack + +#keyset[swift_subscript_declaration, index] +swift_subscript_declaration_default_value( + int swift_subscript_declaration: @swift_subscript_declaration ref, + int index: int ref, + unique int default_value: @swift_subscript_declaration_default_value_type ref +); + +@swift_subscript_declaration_name_type = @swift_array_type | @swift_dictionary_type | @swift_existential_type | @swift_function_type | @swift_metatype | @swift_opaque_type | @swift_optional_type | @swift_protocol_composition_type | @swift_suppressed_constraint | @swift_tuple_type | @swift_type_pack_expansion | @swift_type_parameter_pack | @swift_user_type + +swift_subscript_declaration_name( + unique int swift_subscript_declaration: @swift_subscript_declaration ref, + unique int name: @swift_subscript_declaration_name_type ref +); + +@swift_subscript_declaration_return_type_type = @swift_array_type | @swift_dictionary_type | @swift_existential_type | @swift_function_type | @swift_metatype | @swift_opaque_type | @swift_optional_type | @swift_protocol_composition_type | @swift_reserved_word | @swift_suppressed_constraint | @swift_tuple_type | @swift_type_modifiers | @swift_type_pack_expansion | @swift_type_parameter_pack | @swift_user_type + +#keyset[swift_subscript_declaration, index] +swift_subscript_declaration_return_type( + int swift_subscript_declaration: @swift_subscript_declaration ref, + int index: int ref, + unique int return_type: @swift_subscript_declaration_return_type_type ref +); + +@swift_subscript_declaration_child_type = @swift_attribute | @swift_computed_property | @swift_modifiers | @swift_parameter | @swift_type_constraints | @swift_type_parameters + +#keyset[swift_subscript_declaration, index] +swift_subscript_declaration_child( + int swift_subscript_declaration: @swift_subscript_declaration ref, + int index: int ref, + unique int child: @swift_subscript_declaration_child_type ref +); + +swift_subscript_declaration_def( + unique int id: @swift_subscript_declaration +); + +swift_suppressed_constraint_def( + unique int id: @swift_suppressed_constraint, + int suppressed: @swift_token_type_identifier ref +); + +@swift_switch_entry_child_type = @swift_additive_expression | @swift_array_literal | @swift_as_expression | @swift_assignment | @swift_await_expression | @swift_bitwise_operation | @swift_call_expression | @swift_check_expression | @swift_comparison_expression | @swift_conjunction_expression | @swift_constructor_expression | @swift_dictionary_literal | @swift_directive | @swift_disjunction_expression | @swift_equality_expression | @swift_if_statement | @swift_infix_expression | @swift_key_path_expression | @swift_key_path_string_expression | @swift_lambda_literal | @swift_line_string_literal | @swift_macro_invocation | @swift_modifiers | @swift_multi_line_string_literal | @swift_multiplicative_expression | @swift_navigation_expression | @swift_nil_coalescing_expression | @swift_open_end_range_expression | @swift_open_start_range_expression | @swift_playground_literal | @swift_postfix_expression | @swift_prefix_expression | @swift_range_expression | @swift_raw_string_literal | @swift_selector_expression | @swift_statements | @swift_switch_pattern | @swift_switch_statement | @swift_ternary_expression | @swift_token_bang | @swift_token_bin_literal | @swift_token_boolean_literal | @swift_token_custom_operator | @swift_token_default_keyword | @swift_token_diagnostic | @swift_token_fully_open_range | @swift_token_hex_literal | @swift_token_integer_literal | @swift_token_oct_literal | @swift_token_real_literal | @swift_token_regex_literal | @swift_token_self_expression | @swift_token_simple_identifier | @swift_token_special_literal | @swift_token_super_expression | @swift_token_where_keyword | @swift_try_expression | @swift_tuple_expression | @swift_value_pack_expansion | @swift_value_parameter_pack + +#keyset[swift_switch_entry, index] +swift_switch_entry_child( + int swift_switch_entry: @swift_switch_entry ref, + int index: int ref, + unique int child: @swift_switch_entry_child_type ref +); + +swift_switch_entry_def( + unique int id: @swift_switch_entry +); + +swift_switch_pattern_def( + unique int id: @swift_switch_pattern, + int child: @swift_pattern ref +); + +@swift_switch_statement_expr_type = @swift_additive_expression | @swift_array_literal | @swift_as_expression | @swift_assignment | @swift_await_expression | @swift_bitwise_operation | @swift_call_expression | @swift_check_expression | @swift_comparison_expression | @swift_conjunction_expression | @swift_constructor_expression | @swift_dictionary_literal | @swift_directive | @swift_disjunction_expression | @swift_equality_expression | @swift_if_statement | @swift_infix_expression | @swift_key_path_expression | @swift_key_path_string_expression | @swift_lambda_literal | @swift_line_string_literal | @swift_macro_invocation | @swift_multi_line_string_literal | @swift_multiplicative_expression | @swift_navigation_expression | @swift_nil_coalescing_expression | @swift_open_end_range_expression | @swift_open_start_range_expression | @swift_playground_literal | @swift_postfix_expression | @swift_prefix_expression | @swift_range_expression | @swift_raw_string_literal | @swift_reserved_word | @swift_selector_expression | @swift_switch_statement | @swift_ternary_expression | @swift_token_bang | @swift_token_bin_literal | @swift_token_boolean_literal | @swift_token_custom_operator | @swift_token_diagnostic | @swift_token_fully_open_range | @swift_token_hex_literal | @swift_token_integer_literal | @swift_token_oct_literal | @swift_token_real_literal | @swift_token_regex_literal | @swift_token_self_expression | @swift_token_simple_identifier | @swift_token_special_literal | @swift_token_super_expression | @swift_try_expression | @swift_tuple_expression | @swift_value_pack_expansion | @swift_value_parameter_pack + +#keyset[swift_switch_statement, index] +swift_switch_statement_expr( + int swift_switch_statement: @swift_switch_statement ref, + int index: int ref, + unique int expr: @swift_switch_statement_expr_type ref +); + +#keyset[swift_switch_statement, index] +swift_switch_statement_child( + int swift_switch_statement: @swift_switch_statement ref, + int index: int ref, + unique int child: @swift_switch_entry ref +); + +swift_switch_statement_def( + unique int id: @swift_switch_statement +); + +@swift_ternary_expression_condition_type = @swift_additive_expression | @swift_array_literal | @swift_as_expression | @swift_assignment | @swift_await_expression | @swift_bitwise_operation | @swift_call_expression | @swift_check_expression | @swift_comparison_expression | @swift_conjunction_expression | @swift_constructor_expression | @swift_dictionary_literal | @swift_directive | @swift_disjunction_expression | @swift_equality_expression | @swift_if_statement | @swift_infix_expression | @swift_key_path_expression | @swift_key_path_string_expression | @swift_lambda_literal | @swift_line_string_literal | @swift_macro_invocation | @swift_multi_line_string_literal | @swift_multiplicative_expression | @swift_navigation_expression | @swift_nil_coalescing_expression | @swift_open_end_range_expression | @swift_open_start_range_expression | @swift_playground_literal | @swift_postfix_expression | @swift_prefix_expression | @swift_range_expression | @swift_raw_string_literal | @swift_reserved_word | @swift_selector_expression | @swift_switch_statement | @swift_ternary_expression | @swift_token_bang | @swift_token_bin_literal | @swift_token_boolean_literal | @swift_token_custom_operator | @swift_token_diagnostic | @swift_token_fully_open_range | @swift_token_hex_literal | @swift_token_integer_literal | @swift_token_oct_literal | @swift_token_real_literal | @swift_token_regex_literal | @swift_token_self_expression | @swift_token_simple_identifier | @swift_token_special_literal | @swift_token_super_expression | @swift_try_expression | @swift_tuple_expression | @swift_value_pack_expansion | @swift_value_parameter_pack + +#keyset[swift_ternary_expression, index] +swift_ternary_expression_condition( + int swift_ternary_expression: @swift_ternary_expression ref, + int index: int ref, + unique int condition: @swift_ternary_expression_condition_type ref +); + +@swift_ternary_expression_if_false_type = @swift_additive_expression | @swift_array_literal | @swift_as_expression | @swift_assignment | @swift_await_expression | @swift_bitwise_operation | @swift_call_expression | @swift_check_expression | @swift_comparison_expression | @swift_conjunction_expression | @swift_constructor_expression | @swift_dictionary_literal | @swift_directive | @swift_disjunction_expression | @swift_equality_expression | @swift_if_statement | @swift_infix_expression | @swift_key_path_expression | @swift_key_path_string_expression | @swift_lambda_literal | @swift_line_string_literal | @swift_macro_invocation | @swift_multi_line_string_literal | @swift_multiplicative_expression | @swift_navigation_expression | @swift_nil_coalescing_expression | @swift_open_end_range_expression | @swift_open_start_range_expression | @swift_playground_literal | @swift_postfix_expression | @swift_prefix_expression | @swift_range_expression | @swift_raw_string_literal | @swift_reserved_word | @swift_selector_expression | @swift_switch_statement | @swift_ternary_expression | @swift_token_bang | @swift_token_bin_literal | @swift_token_boolean_literal | @swift_token_custom_operator | @swift_token_diagnostic | @swift_token_fully_open_range | @swift_token_hex_literal | @swift_token_integer_literal | @swift_token_oct_literal | @swift_token_real_literal | @swift_token_regex_literal | @swift_token_self_expression | @swift_token_simple_identifier | @swift_token_special_literal | @swift_token_super_expression | @swift_try_expression | @swift_tuple_expression | @swift_value_pack_expansion | @swift_value_parameter_pack + +#keyset[swift_ternary_expression, index] +swift_ternary_expression_if_false( + int swift_ternary_expression: @swift_ternary_expression ref, + int index: int ref, + unique int if_false: @swift_ternary_expression_if_false_type ref +); + +@swift_ternary_expression_if_true_type = @swift_additive_expression | @swift_array_literal | @swift_as_expression | @swift_assignment | @swift_await_expression | @swift_bitwise_operation | @swift_call_expression | @swift_check_expression | @swift_comparison_expression | @swift_conjunction_expression | @swift_constructor_expression | @swift_dictionary_literal | @swift_directive | @swift_disjunction_expression | @swift_equality_expression | @swift_if_statement | @swift_infix_expression | @swift_key_path_expression | @swift_key_path_string_expression | @swift_lambda_literal | @swift_line_string_literal | @swift_macro_invocation | @swift_multi_line_string_literal | @swift_multiplicative_expression | @swift_navigation_expression | @swift_nil_coalescing_expression | @swift_open_end_range_expression | @swift_open_start_range_expression | @swift_playground_literal | @swift_postfix_expression | @swift_prefix_expression | @swift_range_expression | @swift_raw_string_literal | @swift_reserved_word | @swift_selector_expression | @swift_switch_statement | @swift_ternary_expression | @swift_token_bang | @swift_token_bin_literal | @swift_token_boolean_literal | @swift_token_custom_operator | @swift_token_diagnostic | @swift_token_fully_open_range | @swift_token_hex_literal | @swift_token_integer_literal | @swift_token_oct_literal | @swift_token_real_literal | @swift_token_regex_literal | @swift_token_self_expression | @swift_token_simple_identifier | @swift_token_special_literal | @swift_token_super_expression | @swift_try_expression | @swift_tuple_expression | @swift_value_pack_expansion | @swift_value_parameter_pack + +#keyset[swift_ternary_expression, index] +swift_ternary_expression_if_true( + int swift_ternary_expression: @swift_ternary_expression ref, + int index: int ref, + unique int if_true: @swift_ternary_expression_if_true_type ref +); + +swift_ternary_expression_def( + unique int id: @swift_ternary_expression +); + +@swift_throws_clause_type_type = @swift_array_type | @swift_dictionary_type | @swift_existential_type | @swift_function_type | @swift_metatype | @swift_opaque_type | @swift_optional_type | @swift_protocol_composition_type | @swift_suppressed_constraint | @swift_tuple_type | @swift_type_pack_expansion | @swift_type_parameter_pack | @swift_user_type + +swift_throws_clause_def( + unique int id: @swift_throws_clause, + int type__: @swift_throws_clause_type_type ref +); + +@swift_try_expression_expr_type = @swift_additive_expression | @swift_array_literal | @swift_as_expression | @swift_assignment | @swift_await_expression | @swift_bitwise_operation | @swift_call_expression | @swift_check_expression | @swift_comparison_expression | @swift_conjunction_expression | @swift_constructor_expression | @swift_dictionary_literal | @swift_directive | @swift_disjunction_expression | @swift_equality_expression | @swift_if_statement | @swift_infix_expression | @swift_key_path_expression | @swift_key_path_string_expression | @swift_lambda_literal | @swift_line_string_literal | @swift_macro_invocation | @swift_multi_line_string_literal | @swift_multiplicative_expression | @swift_navigation_expression | @swift_nil_coalescing_expression | @swift_open_end_range_expression | @swift_open_start_range_expression | @swift_playground_literal | @swift_postfix_expression | @swift_prefix_expression | @swift_range_expression | @swift_raw_string_literal | @swift_reserved_word | @swift_selector_expression | @swift_switch_statement | @swift_ternary_expression | @swift_token_bang | @swift_token_bin_literal | @swift_token_boolean_literal | @swift_token_custom_operator | @swift_token_diagnostic | @swift_token_fully_open_range | @swift_token_hex_literal | @swift_token_integer_literal | @swift_token_oct_literal | @swift_token_real_literal | @swift_token_regex_literal | @swift_token_self_expression | @swift_token_simple_identifier | @swift_token_special_literal | @swift_token_super_expression | @swift_try_expression | @swift_tuple_expression | @swift_value_pack_expansion | @swift_value_parameter_pack + +#keyset[swift_try_expression, index] +swift_try_expression_expr( + int swift_try_expression: @swift_try_expression ref, + int index: int ref, + unique int expr: @swift_try_expression_expr_type ref +); + +swift_try_expression_def( + unique int id: @swift_try_expression, + int child: @swift_token_try_operator ref +); + +#keyset[swift_tuple_expression, index] +swift_tuple_expression_name( + int swift_tuple_expression: @swift_tuple_expression ref, + int index: int ref, + unique int name: @swift_token_simple_identifier ref +); + +@swift_tuple_expression_value_type = @swift_additive_expression | @swift_array_literal | @swift_as_expression | @swift_assignment | @swift_await_expression | @swift_bitwise_operation | @swift_call_expression | @swift_check_expression | @swift_comparison_expression | @swift_conjunction_expression | @swift_constructor_expression | @swift_dictionary_literal | @swift_directive | @swift_disjunction_expression | @swift_equality_expression | @swift_if_statement | @swift_infix_expression | @swift_key_path_expression | @swift_key_path_string_expression | @swift_lambda_literal | @swift_line_string_literal | @swift_macro_invocation | @swift_multi_line_string_literal | @swift_multiplicative_expression | @swift_navigation_expression | @swift_nil_coalescing_expression | @swift_open_end_range_expression | @swift_open_start_range_expression | @swift_playground_literal | @swift_postfix_expression | @swift_prefix_expression | @swift_range_expression | @swift_raw_string_literal | @swift_reserved_word | @swift_selector_expression | @swift_switch_statement | @swift_ternary_expression | @swift_token_bang | @swift_token_bin_literal | @swift_token_boolean_literal | @swift_token_custom_operator | @swift_token_diagnostic | @swift_token_fully_open_range | @swift_token_hex_literal | @swift_token_integer_literal | @swift_token_oct_literal | @swift_token_real_literal | @swift_token_regex_literal | @swift_token_self_expression | @swift_token_simple_identifier | @swift_token_special_literal | @swift_token_super_expression | @swift_try_expression | @swift_tuple_expression | @swift_value_pack_expansion | @swift_value_parameter_pack + +#keyset[swift_tuple_expression, index] +swift_tuple_expression_value( + int swift_tuple_expression: @swift_tuple_expression ref, + int index: int ref, + unique int value: @swift_tuple_expression_value_type ref +); + +swift_tuple_expression_def( + unique int id: @swift_tuple_expression +); + +#keyset[swift_tuple_type, index] +swift_tuple_type_element( + int swift_tuple_type: @swift_tuple_type ref, + int index: int ref, + unique int element: @swift_tuple_type_item ref +); + +swift_tuple_type_child( + unique int swift_tuple_type: @swift_tuple_type ref, + unique int child: @swift_tuple_type_item ref +); + +swift_tuple_type_def( + unique int id: @swift_tuple_type +); + +@swift_tuple_type_item_element_type = @swift_dictionary_type | @swift_existential_type | @swift_opaque_type + +swift_tuple_type_item_element( + unique int swift_tuple_type_item: @swift_tuple_type_item ref, + unique int element: @swift_tuple_type_item_element_type ref +); + +@swift_tuple_type_item_name_type = @swift_array_type | @swift_dictionary_type | @swift_existential_type | @swift_function_type | @swift_metatype | @swift_opaque_type | @swift_optional_type | @swift_protocol_composition_type | @swift_suppressed_constraint | @swift_token_simple_identifier | @swift_tuple_type | @swift_type_pack_expansion | @swift_type_parameter_pack | @swift_user_type + +#keyset[swift_tuple_type_item, index] +swift_tuple_type_item_name( + int swift_tuple_type_item: @swift_tuple_type_item ref, + int index: int ref, + unique int name: @swift_tuple_type_item_name_type ref +); + +@swift_tuple_type_item_type_type = @swift_array_type | @swift_dictionary_type | @swift_existential_type | @swift_function_type | @swift_metatype | @swift_opaque_type | @swift_optional_type | @swift_protocol_composition_type | @swift_suppressed_constraint | @swift_tuple_type | @swift_type_modifiers | @swift_type_pack_expansion | @swift_type_parameter_pack | @swift_user_type + +#keyset[swift_tuple_type_item, index] +swift_tuple_type_item_type( + int swift_tuple_type_item: @swift_tuple_type_item ref, + int index: int ref, + unique int type__: @swift_tuple_type_item_type_type ref +); + +@swift_tuple_type_item_child_type = @swift_parameter_modifiers | @swift_token_wildcard_pattern + +#keyset[swift_tuple_type_item, index] +swift_tuple_type_item_child( + int swift_tuple_type_item: @swift_tuple_type_item ref, + int index: int ref, + unique int child: @swift_tuple_type_item_child_type ref +); + +swift_tuple_type_item_def( + unique int id: @swift_tuple_type_item +); + +@swift_type_annotation_name_type = @swift_array_type | @swift_dictionary_type | @swift_existential_type | @swift_function_type | @swift_metatype | @swift_opaque_type | @swift_optional_type | @swift_protocol_composition_type | @swift_suppressed_constraint | @swift_tuple_type | @swift_type_pack_expansion | @swift_type_parameter_pack | @swift_user_type + +@swift_type_annotation_type_type = @swift_array_type | @swift_dictionary_type | @swift_existential_type | @swift_function_type | @swift_metatype | @swift_opaque_type | @swift_optional_type | @swift_protocol_composition_type | @swift_reserved_word | @swift_suppressed_constraint | @swift_tuple_type | @swift_type_modifiers | @swift_type_pack_expansion | @swift_type_parameter_pack | @swift_user_type + +#keyset[swift_type_annotation, index] +swift_type_annotation_type( + int swift_type_annotation: @swift_type_annotation ref, + int index: int ref, + unique int type__: @swift_type_annotation_type_type ref +); + +swift_type_annotation_def( + unique int id: @swift_type_annotation, + int name: @swift_type_annotation_name_type ref +); + +@swift_type_arguments_name_type = @swift_array_type | @swift_dictionary_type | @swift_existential_type | @swift_function_type | @swift_metatype | @swift_opaque_type | @swift_optional_type | @swift_protocol_composition_type | @swift_suppressed_constraint | @swift_tuple_type | @swift_type_pack_expansion | @swift_type_parameter_pack | @swift_user_type + +#keyset[swift_type_arguments, index] +swift_type_arguments_name( + int swift_type_arguments: @swift_type_arguments ref, + int index: int ref, + unique int name: @swift_type_arguments_name_type ref +); + +#keyset[swift_type_arguments, index] +swift_type_arguments_child( + int swift_type_arguments: @swift_type_arguments ref, + int index: int ref, + unique int child: @swift_type_modifiers ref +); + +swift_type_arguments_def( + unique int id: @swift_type_arguments +); + +@swift_type_constraint_child_type = @swift_equality_constraint | @swift_inheritance_constraint + +swift_type_constraint_def( + unique int id: @swift_type_constraint, + int child: @swift_type_constraint_child_type ref +); + +@swift_type_constraints_child_type = @swift_token_where_keyword | @swift_type_constraint + +#keyset[swift_type_constraints, index] +swift_type_constraints_child( + int swift_type_constraints: @swift_type_constraints ref, + int index: int ref, + unique int child: @swift_type_constraints_child_type ref +); + +swift_type_constraints_def( + unique int id: @swift_type_constraints +); + +#keyset[swift_type_modifiers, index] +swift_type_modifiers_child( + int swift_type_modifiers: @swift_type_modifiers ref, + int index: int ref, + unique int child: @swift_attribute ref +); + +swift_type_modifiers_def( + unique int id: @swift_type_modifiers +); + +@swift_type_pack_expansion_child_type = @swift_array_type | @swift_dictionary_type | @swift_existential_type | @swift_function_type | @swift_metatype | @swift_opaque_type | @swift_optional_type | @swift_protocol_composition_type | @swift_suppressed_constraint | @swift_tuple_type | @swift_type_pack_expansion | @swift_type_parameter_pack | @swift_user_type + +swift_type_pack_expansion_def( + unique int id: @swift_type_pack_expansion, + int child: @swift_type_pack_expansion_child_type ref +); + +@swift_type_parameter_name_type = @swift_array_type | @swift_dictionary_type | @swift_existential_type | @swift_function_type | @swift_metatype | @swift_opaque_type | @swift_optional_type | @swift_protocol_composition_type | @swift_suppressed_constraint | @swift_tuple_type | @swift_type_pack_expansion | @swift_type_parameter_pack | @swift_user_type + +swift_type_parameter_name( + unique int swift_type_parameter: @swift_type_parameter ref, + unique int name: @swift_type_parameter_name_type ref +); + +@swift_type_parameter_child_type = @swift_token_type_identifier | @swift_type_modifiers | @swift_type_parameter_modifiers | @swift_type_parameter_pack + +#keyset[swift_type_parameter, index] +swift_type_parameter_child( + int swift_type_parameter: @swift_type_parameter ref, + int index: int ref, + unique int child: @swift_type_parameter_child_type ref +); + +swift_type_parameter_def( + unique int id: @swift_type_parameter +); + +#keyset[swift_type_parameter_modifiers, index] +swift_type_parameter_modifiers_child( + int swift_type_parameter_modifiers: @swift_type_parameter_modifiers ref, + int index: int ref, + unique int child: @swift_attribute ref +); + +swift_type_parameter_modifiers_def( + unique int id: @swift_type_parameter_modifiers +); + +@swift_type_parameter_pack_child_type = @swift_array_type | @swift_dictionary_type | @swift_existential_type | @swift_function_type | @swift_metatype | @swift_opaque_type | @swift_optional_type | @swift_protocol_composition_type | @swift_suppressed_constraint | @swift_tuple_type | @swift_type_pack_expansion | @swift_type_parameter_pack | @swift_user_type + +swift_type_parameter_pack_def( + unique int id: @swift_type_parameter_pack, + int child: @swift_type_parameter_pack_child_type ref +); + +@swift_type_parameters_child_type = @swift_type_constraints | @swift_type_parameter + +#keyset[swift_type_parameters, index] +swift_type_parameters_child( + int swift_type_parameters: @swift_type_parameters ref, + int index: int ref, + unique int child: @swift_type_parameters_child_type ref +); + +swift_type_parameters_def( + unique int id: @swift_type_parameters +); + +@swift_typealias_declaration_name_type = @swift_array_type | @swift_dictionary_type | @swift_existential_type | @swift_function_type | @swift_metatype | @swift_opaque_type | @swift_optional_type | @swift_protocol_composition_type | @swift_suppressed_constraint | @swift_token_type_identifier | @swift_tuple_type | @swift_type_pack_expansion | @swift_type_parameter_pack | @swift_user_type + +#keyset[swift_typealias_declaration, index] +swift_typealias_declaration_name( + int swift_typealias_declaration: @swift_typealias_declaration ref, + int index: int ref, + unique int name: @swift_typealias_declaration_name_type ref +); + +@swift_typealias_declaration_value_type = @swift_array_type | @swift_dictionary_type | @swift_existential_type | @swift_function_type | @swift_metatype | @swift_opaque_type | @swift_optional_type | @swift_protocol_composition_type | @swift_suppressed_constraint | @swift_tuple_type | @swift_type_modifiers | @swift_type_pack_expansion | @swift_type_parameter_pack | @swift_user_type + +#keyset[swift_typealias_declaration, index] +swift_typealias_declaration_value( + int swift_typealias_declaration: @swift_typealias_declaration ref, + int index: int ref, + unique int value: @swift_typealias_declaration_value_type ref +); + +@swift_typealias_declaration_child_type = @swift_attribute | @swift_modifiers | @swift_token_inheritance_modifier | @swift_token_ownership_modifier | @swift_token_property_behavior_modifier | @swift_type_parameters + +#keyset[swift_typealias_declaration, index] +swift_typealias_declaration_child( + int swift_typealias_declaration: @swift_typealias_declaration ref, + int index: int ref, + unique int child: @swift_typealias_declaration_child_type ref +); + +swift_typealias_declaration_def( + unique int id: @swift_typealias_declaration +); + +@swift_user_type_child_type = @swift_token_type_identifier | @swift_type_arguments + +#keyset[swift_user_type, index] +swift_user_type_child( + int swift_user_type: @swift_user_type ref, + int index: int ref, + unique int child: @swift_user_type_child_type ref +); + +swift_user_type_def( + unique int id: @swift_user_type +); + +swift_value_argument_name( + unique int swift_value_argument: @swift_value_argument ref, + unique int name: @swift_value_argument_label ref +); + +#keyset[swift_value_argument, index] +swift_value_argument_reference_specifier( + int swift_value_argument: @swift_value_argument ref, + int index: int ref, + unique int reference_specifier: @swift_value_argument_label ref +); + +@swift_value_argument_value_type = @swift_additive_expression | @swift_array_literal | @swift_as_expression | @swift_assignment | @swift_await_expression | @swift_bitwise_operation | @swift_call_expression | @swift_check_expression | @swift_comparison_expression | @swift_conjunction_expression | @swift_constructor_expression | @swift_dictionary_literal | @swift_directive | @swift_disjunction_expression | @swift_equality_expression | @swift_if_statement | @swift_infix_expression | @swift_key_path_expression | @swift_key_path_string_expression | @swift_lambda_literal | @swift_line_string_literal | @swift_macro_invocation | @swift_multi_line_string_literal | @swift_multiplicative_expression | @swift_navigation_expression | @swift_nil_coalescing_expression | @swift_open_end_range_expression | @swift_open_start_range_expression | @swift_playground_literal | @swift_postfix_expression | @swift_prefix_expression | @swift_range_expression | @swift_raw_string_literal | @swift_reserved_word | @swift_selector_expression | @swift_switch_statement | @swift_ternary_expression | @swift_token_bang | @swift_token_bin_literal | @swift_token_boolean_literal | @swift_token_custom_operator | @swift_token_diagnostic | @swift_token_fully_open_range | @swift_token_hex_literal | @swift_token_integer_literal | @swift_token_oct_literal | @swift_token_real_literal | @swift_token_regex_literal | @swift_token_self_expression | @swift_token_simple_identifier | @swift_token_special_literal | @swift_token_super_expression | @swift_try_expression | @swift_tuple_expression | @swift_value_pack_expansion | @swift_value_parameter_pack + +#keyset[swift_value_argument, index] +swift_value_argument_value( + int swift_value_argument: @swift_value_argument ref, + int index: int ref, + unique int value: @swift_value_argument_value_type ref +); + +swift_value_argument_child( + unique int swift_value_argument: @swift_value_argument ref, + unique int child: @swift_type_modifiers ref +); + +swift_value_argument_def( + unique int id: @swift_value_argument +); + +swift_value_argument_label_def( + unique int id: @swift_value_argument_label, + int child: @swift_token_simple_identifier ref +); + +#keyset[swift_value_arguments, index] +swift_value_arguments_child( + int swift_value_arguments: @swift_value_arguments ref, + int index: int ref, + unique int child: @swift_value_argument ref +); + +swift_value_arguments_def( + unique int id: @swift_value_arguments +); + +case @swift_value_binding_pattern.mutability of + 0 = @swift_value_binding_pattern_let +| 1 = @swift_value_binding_pattern_var +; + + +swift_value_binding_pattern_def( + unique int id: @swift_value_binding_pattern, + int mutability: int ref +); + +@swift_value_pack_expansion_child_type = @swift_additive_expression | @swift_array_literal | @swift_as_expression | @swift_assignment | @swift_await_expression | @swift_bitwise_operation | @swift_call_expression | @swift_check_expression | @swift_comparison_expression | @swift_conjunction_expression | @swift_constructor_expression | @swift_dictionary_literal | @swift_directive | @swift_disjunction_expression | @swift_equality_expression | @swift_if_statement | @swift_infix_expression | @swift_key_path_expression | @swift_key_path_string_expression | @swift_lambda_literal | @swift_line_string_literal | @swift_macro_invocation | @swift_multi_line_string_literal | @swift_multiplicative_expression | @swift_navigation_expression | @swift_nil_coalescing_expression | @swift_open_end_range_expression | @swift_open_start_range_expression | @swift_playground_literal | @swift_postfix_expression | @swift_prefix_expression | @swift_range_expression | @swift_raw_string_literal | @swift_selector_expression | @swift_switch_statement | @swift_ternary_expression | @swift_token_bang | @swift_token_bin_literal | @swift_token_boolean_literal | @swift_token_custom_operator | @swift_token_diagnostic | @swift_token_fully_open_range | @swift_token_hex_literal | @swift_token_integer_literal | @swift_token_oct_literal | @swift_token_real_literal | @swift_token_regex_literal | @swift_token_self_expression | @swift_token_simple_identifier | @swift_token_special_literal | @swift_token_super_expression | @swift_try_expression | @swift_tuple_expression | @swift_value_pack_expansion | @swift_value_parameter_pack + +swift_value_pack_expansion_child( + unique int swift_value_pack_expansion: @swift_value_pack_expansion ref, + unique int child: @swift_value_pack_expansion_child_type ref +); + +swift_value_pack_expansion_def( + unique int id: @swift_value_pack_expansion +); + +@swift_value_parameter_pack_child_type = @swift_additive_expression | @swift_array_literal | @swift_as_expression | @swift_assignment | @swift_await_expression | @swift_bitwise_operation | @swift_call_expression | @swift_check_expression | @swift_comparison_expression | @swift_conjunction_expression | @swift_constructor_expression | @swift_dictionary_literal | @swift_directive | @swift_disjunction_expression | @swift_equality_expression | @swift_if_statement | @swift_infix_expression | @swift_key_path_expression | @swift_key_path_string_expression | @swift_lambda_literal | @swift_line_string_literal | @swift_macro_invocation | @swift_multi_line_string_literal | @swift_multiplicative_expression | @swift_navigation_expression | @swift_nil_coalescing_expression | @swift_open_end_range_expression | @swift_open_start_range_expression | @swift_playground_literal | @swift_postfix_expression | @swift_prefix_expression | @swift_range_expression | @swift_raw_string_literal | @swift_selector_expression | @swift_switch_statement | @swift_ternary_expression | @swift_token_bang | @swift_token_bin_literal | @swift_token_boolean_literal | @swift_token_custom_operator | @swift_token_diagnostic | @swift_token_fully_open_range | @swift_token_hex_literal | @swift_token_integer_literal | @swift_token_oct_literal | @swift_token_real_literal | @swift_token_regex_literal | @swift_token_self_expression | @swift_token_simple_identifier | @swift_token_special_literal | @swift_token_super_expression | @swift_try_expression | @swift_tuple_expression | @swift_value_pack_expansion | @swift_value_parameter_pack + +swift_value_parameter_pack_child( + unique int swift_value_parameter_pack: @swift_value_parameter_pack ref, + unique int child: @swift_value_parameter_pack_child_type ref +); + +swift_value_parameter_pack_def( + unique int id: @swift_value_parameter_pack +); + +@swift_where_clause_child_type = @swift_additive_expression | @swift_array_literal | @swift_as_expression | @swift_assignment | @swift_await_expression | @swift_bitwise_operation | @swift_call_expression | @swift_check_expression | @swift_comparison_expression | @swift_conjunction_expression | @swift_constructor_expression | @swift_dictionary_literal | @swift_directive | @swift_disjunction_expression | @swift_equality_expression | @swift_if_statement | @swift_infix_expression | @swift_key_path_expression | @swift_key_path_string_expression | @swift_lambda_literal | @swift_line_string_literal | @swift_macro_invocation | @swift_multi_line_string_literal | @swift_multiplicative_expression | @swift_navigation_expression | @swift_nil_coalescing_expression | @swift_open_end_range_expression | @swift_open_start_range_expression | @swift_playground_literal | @swift_postfix_expression | @swift_prefix_expression | @swift_range_expression | @swift_raw_string_literal | @swift_selector_expression | @swift_switch_statement | @swift_ternary_expression | @swift_token_bang | @swift_token_bin_literal | @swift_token_boolean_literal | @swift_token_custom_operator | @swift_token_diagnostic | @swift_token_fully_open_range | @swift_token_hex_literal | @swift_token_integer_literal | @swift_token_oct_literal | @swift_token_real_literal | @swift_token_regex_literal | @swift_token_self_expression | @swift_token_simple_identifier | @swift_token_special_literal | @swift_token_super_expression | @swift_token_where_keyword | @swift_try_expression | @swift_tuple_expression | @swift_value_pack_expansion | @swift_value_parameter_pack + +#keyset[swift_where_clause, index] +swift_where_clause_child( + int swift_where_clause: @swift_where_clause ref, + int index: int ref, + unique int child: @swift_where_clause_child_type ref +); + +swift_where_clause_def( + unique int id: @swift_where_clause +); + +#keyset[swift_while_statement, index] +swift_while_statement_bound_identifier( + int swift_while_statement: @swift_while_statement ref, + int index: int ref, + unique int bound_identifier: @swift_token_simple_identifier ref +); + +@swift_while_statement_condition_type = @swift_additive_expression | @swift_array_literal | @swift_array_type | @swift_as_expression | @swift_assignment | @swift_availability_condition | @swift_await_expression | @swift_bitwise_operation | @swift_call_expression | @swift_check_expression | @swift_comparison_expression | @swift_conjunction_expression | @swift_constructor_expression | @swift_dictionary_literal | @swift_dictionary_type | @swift_directive | @swift_disjunction_expression | @swift_equality_expression | @swift_existential_type | @swift_function_type | @swift_if_statement | @swift_infix_expression | @swift_key_path_expression | @swift_key_path_string_expression | @swift_lambda_literal | @swift_line_string_literal | @swift_macro_invocation | @swift_metatype | @swift_multi_line_string_literal | @swift_multiplicative_expression | @swift_navigation_expression | @swift_nil_coalescing_expression | @swift_opaque_type | @swift_open_end_range_expression | @swift_open_start_range_expression | @swift_optional_type | @swift_pattern | @swift_playground_literal | @swift_postfix_expression | @swift_prefix_expression | @swift_protocol_composition_type | @swift_range_expression | @swift_raw_string_literal | @swift_reserved_word | @swift_selector_expression | @swift_suppressed_constraint | @swift_switch_statement | @swift_ternary_expression | @swift_token_bang | @swift_token_bin_literal | @swift_token_boolean_literal | @swift_token_custom_operator | @swift_token_diagnostic | @swift_token_fully_open_range | @swift_token_hex_literal | @swift_token_integer_literal | @swift_token_oct_literal | @swift_token_real_literal | @swift_token_regex_literal | @swift_token_self_expression | @swift_token_simple_identifier | @swift_token_special_literal | @swift_token_super_expression | @swift_token_wildcard_pattern | @swift_try_expression | @swift_tuple_expression | @swift_tuple_type | @swift_type_annotation | @swift_type_modifiers | @swift_type_pack_expansion | @swift_type_parameter_pack | @swift_user_type | @swift_value_binding_pattern | @swift_value_pack_expansion | @swift_value_parameter_pack | @swift_where_clause + +#keyset[swift_while_statement, index] +swift_while_statement_condition( + int swift_while_statement: @swift_while_statement ref, + int index: int ref, + unique int condition: @swift_while_statement_condition_type ref +); + +@swift_while_statement_name_type = @swift_array_type | @swift_dictionary_type | @swift_existential_type | @swift_function_type | @swift_metatype | @swift_opaque_type | @swift_optional_type | @swift_protocol_composition_type | @swift_suppressed_constraint | @swift_tuple_type | @swift_type_pack_expansion | @swift_type_parameter_pack | @swift_user_type + +#keyset[swift_while_statement, index] +swift_while_statement_name( + int swift_while_statement: @swift_while_statement ref, + int index: int ref, + unique int name: @swift_while_statement_name_type ref +); + +swift_while_statement_child( + unique int swift_while_statement: @swift_while_statement ref, + unique int child: @swift_statements ref +); + +swift_while_statement_def( + unique int id: @swift_while_statement +); + +@swift_willset_clause_child_type = @swift_modifiers | @swift_statements | @swift_token_simple_identifier + +#keyset[swift_willset_clause, index] +swift_willset_clause_child( + int swift_willset_clause: @swift_willset_clause ref, + int index: int ref, + unique int child: @swift_willset_clause_child_type ref +); + +swift_willset_clause_def( + unique int id: @swift_willset_clause +); + +@swift_willset_didset_block_child_type = @swift_didset_clause | @swift_willset_clause + +#keyset[swift_willset_didset_block, index] +swift_willset_didset_block_child( + int swift_willset_didset_block: @swift_willset_didset_block ref, + int index: int ref, + unique int child: @swift_willset_didset_block_child_type ref +); + +swift_willset_didset_block_def( + unique int id: @swift_willset_didset_block +); + +swift_tokeninfo( + unique int id: @swift_token, + int kind: int ref, + string value: string ref +); + +case @swift_token.kind of + 0 = @swift_reserved_word +| 1 = @swift_token__expression +| 2 = @swift_token_as_operator +| 3 = @swift_token_bang +| 4 = @swift_token_bin_literal +| 5 = @swift_token_boolean_literal +| 6 = @swift_token_catch_keyword +| 7 = @swift_token_comment +| 8 = @swift_token_custom_operator +| 9 = @swift_token_default_keyword +| 10 = @swift_token_diagnostic +| 11 = @swift_token_else +| 12 = @swift_token_fully_open_range +| 13 = @swift_token_function_modifier +| 14 = @swift_token_hex_literal +| 15 = @swift_token_inheritance_modifier +| 16 = @swift_token_integer_literal +| 17 = @swift_token_line_str_text +| 18 = @swift_token_member_modifier +| 19 = @swift_token_multi_line_str_text +| 20 = @swift_token_multiline_comment +| 21 = @swift_token_mutation_modifier +| 22 = @swift_token_oct_literal +| 23 = @swift_token_ownership_modifier +| 24 = @swift_token_parameter_modifier +| 25 = @swift_token_property_behavior_modifier +| 26 = @swift_token_property_modifier +| 27 = @swift_token_raw_str_continuing_indicator +| 28 = @swift_token_raw_str_end_part +| 29 = @swift_token_raw_str_interpolation_start +| 30 = @swift_token_raw_str_part +| 31 = @swift_token_real_literal +| 32 = @swift_token_regex_literal +| 33 = @swift_token_self_expression +| 34 = @swift_token_shebang_line +| 35 = @swift_token_simple_identifier +| 36 = @swift_token_special_literal +| 37 = @swift_token_statement_label +| 38 = @swift_token_str_escaped_char +| 39 = @swift_token_super_expression +| 40 = @swift_token_throw_keyword +| 41 = @swift_token_throws +| 42 = @swift_token_try_operator +| 43 = @swift_token_type_identifier +| 44 = @swift_token_visibility_modifier +| 45 = @swift_token_where_keyword +| 46 = @swift_token_wildcard_pattern +; + + +@swift_ast_node = @swift_additive_expression | @swift_array_literal | @swift_array_type | @swift_as_expression | @swift_assignment | @swift_associatedtype_declaration | @swift_attribute | @swift_availability_condition | @swift_await_expression | @swift_bitwise_operation | @swift_call_expression | @swift_call_suffix | @swift_capture_list | @swift_capture_list_item | @swift_catch_block | @swift_check_expression | @swift_class_body | @swift_class_declaration | @swift_comparison_expression | @swift_computed_getter | @swift_computed_modify | @swift_computed_property | @swift_computed_setter | @swift_conjunction_expression | @swift_constructor_expression | @swift_constructor_suffix | @swift_control_transfer_statement | @swift_deinit_declaration | @swift_deprecated_operator_declaration_body | @swift_dictionary_literal | @swift_dictionary_type | @swift_didset_clause | @swift_directive | @swift_directly_assignable_expression | @swift_disjunction_expression | @swift_do_statement | @swift_enum_class_body | @swift_enum_entry | @swift_enum_type_parameters | @swift_equality_constraint | @swift_equality_expression | @swift_existential_type | @swift_external_macro_definition | @swift_for_statement | @swift_function_body | @swift_function_declaration | @swift_function_type | @swift_getter_specifier | @swift_guard_statement | @swift_identifier | @swift_if_statement | @swift_import_declaration | @swift_infix_expression | @swift_inheritance_constraint | @swift_inheritance_specifier | @swift_init_declaration | @swift_interpolated_expression | @swift_key_path_expression | @swift_key_path_string_expression | @swift_lambda_function_type | @swift_lambda_function_type_parameters | @swift_lambda_literal | @swift_lambda_parameter | @swift_line_string_literal | @swift_macro_declaration | @swift_macro_definition | @swift_macro_invocation | @swift_metatype | @swift_modifiers | @swift_modify_specifier | @swift_multi_line_string_literal | @swift_multiplicative_expression | @swift_navigation_expression | @swift_navigation_suffix | @swift_nil_coalescing_expression | @swift_opaque_type | @swift_open_end_range_expression | @swift_open_start_range_expression | @swift_operator_declaration | @swift_optional_type | @swift_parameter | @swift_parameter_modifiers | @swift_pattern | @swift_playground_literal | @swift_postfix_expression | @swift_precedence_group_attribute | @swift_precedence_group_attributes | @swift_precedence_group_declaration | @swift_prefix_expression | @swift_property_declaration | @swift_protocol_body | @swift_protocol_composition_type | @swift_protocol_declaration | @swift_protocol_function_declaration | @swift_protocol_property_declaration | @swift_protocol_property_requirements | @swift_range_expression | @swift_raw_str_interpolation | @swift_raw_string_literal | @swift_repeat_while_statement | @swift_selector_expression | @swift_setter_specifier | @swift_source_file | @swift_statements | @swift_subscript_declaration | @swift_suppressed_constraint | @swift_switch_entry | @swift_switch_pattern | @swift_switch_statement | @swift_ternary_expression | @swift_throws_clause | @swift_token | @swift_try_expression | @swift_tuple_expression | @swift_tuple_type | @swift_tuple_type_item | @swift_type_annotation | @swift_type_arguments | @swift_type_constraint | @swift_type_constraints | @swift_type_modifiers | @swift_type_pack_expansion | @swift_type_parameter | @swift_type_parameter_modifiers | @swift_type_parameter_pack | @swift_type_parameters | @swift_typealias_declaration | @swift_user_type | @swift_value_argument | @swift_value_argument_label | @swift_value_arguments | @swift_value_binding_pattern | @swift_value_pack_expansion | @swift_value_parameter_pack | @swift_where_clause | @swift_while_statement | @swift_willset_clause | @swift_willset_didset_block + +swift_ast_node_location( + unique int node: @swift_ast_node ref, + int loc: @location_default ref +); + +#keyset[parent, parent_index] +swift_ast_node_parent( + unique int node: @swift_ast_node ref, + int parent: @swift_ast_node ref, + int parent_index: int ref +); + diff --git a/unified/ql/lib/unified.dbscheme.stats b/unified/ql/lib/unified.dbscheme.stats new file mode 100644 index 000000000000..82714bfe1d07 --- /dev/null +++ b/unified/ql/lib/unified.dbscheme.stats @@ -0,0 +1,4 @@ + + + + diff --git a/unified/ql/src/qlpack.lock.yml b/unified/ql/src/qlpack.lock.yml new file mode 100644 index 000000000000..06dd07fc7dc7 --- /dev/null +++ b/unified/ql/src/qlpack.lock.yml @@ -0,0 +1,4 @@ +--- +dependencies: {} +compiled: false +lockVersion: 1.0.0 diff --git a/unified/ql/src/qlpack.yml b/unified/ql/src/qlpack.yml new file mode 100644 index 000000000000..2de97863ddaf --- /dev/null +++ b/unified/ql/src/qlpack.yml @@ -0,0 +1,11 @@ +name: codeql/unified-queries +version: 0.0.1-dev +groups: + - unified + - queries +suites: codeql-suites +dependencies: + codeql/unified-all: ${workspace} + codeql/suite-helpers: ${workspace} + codeql/util: ${workspace} +warnOnImplicitThis: true diff --git a/unified/ql/test/library-tests/BasicTest/test.expected b/unified/ql/test/library-tests/BasicTest/test.expected new file mode 100644 index 000000000000..c24fee85b689 --- /dev/null +++ b/unified/ql/test/library-tests/BasicTest/test.expected @@ -0,0 +1,100 @@ +identifier +| test.swift:1:8:1:17 | Foundation | Foundation | +| test.swift:5:9:5:13 | items | items | +| test.swift:7:19:7:21 | add | add | +| test.swift:7:23:7:23 | _ | _ | +| test.swift:7:25:7:28 | item | item | +| test.swift:8:9:8:13 | items | items | +| test.swift:8:15:8:20 | append | append | +| test.swift:8:22:8:25 | item | item | +| test.swift:11:10:11:17 | contains | contains | +| test.swift:11:19:11:19 | _ | _ | +| test.swift:11:21:11:24 | item | item | +| test.swift:12:16:12:20 | items | items | +| test.swift:12:22:12:29 | contains | contains | +| test.swift:12:31:12:34 | item | item | +| test.swift:19:9:19:13 | count | count | +| test.swift:20:10:20:13 | item | item | +| test.swift:20:15:20:16 | at | at | +| test.swift:20:18:20:22 | index | index | +| test.swift:24:6:24:10 | merge | merge | +| test.swift:24:27:24:27 | _ | _ | +| test.swift:24:29:24:33 | first | first | +| test.swift:24:39:24:39 | _ | _ | +| test.swift:24:41:24:46 | second | second | +| test.swift:24:73:24:73 | T | T | +| test.swift:24:75:24:81 | Element | Element | +| test.swift:25:9:25:14 | result | result | +| test.swift:25:18:25:22 | Array | Array | +| test.swift:25:24:25:28 | first | first | +| test.swift:26:9:26:12 | item | item | +| test.swift:26:17:26:22 | second | second | +| test.swift:27:13:27:18 | result | result | +| test.swift:27:20:27:27 | contains | contains | +| test.swift:27:29:27:32 | item | item | +| test.swift:28:13:28:18 | result | result | +| test.swift:28:20:28:25 | append | append | +| test.swift:28:27:28:30 | item | item | +| test.swift:31:12:31:17 | result | result | +| test.swift:37:17:37:20 | data | data | +| test.swift:39:9:39:13 | count | count | +| test.swift:40:16:40:19 | data | data | +| test.swift:40:21:40:25 | count | count | +| test.swift:43:9:43:15 | isEmpty | isEmpty | +| test.swift:44:9:44:12 | data | data | +| test.swift:44:14:44:20 | isEmpty | isEmpty | +| test.swift:47:10:47:13 | item | item | +| test.swift:47:15:47:16 | at | at | +| test.swift:47:18:47:22 | index | index | +| test.swift:48:15:48:19 | index | index | +| test.swift:48:29:48:33 | index | index | +| test.swift:48:37:48:40 | data | data | +| test.swift:48:42:48:46 | count | count | +| test.swift:49:16:49:19 | data | data | +| test.swift:49:21:49:25 | index | index | +| test.swift:52:10:52:12 | add | add | +| test.swift:52:14:52:14 | _ | _ | +| test.swift:52:16:52:19 | item | item | +| test.swift:53:9:53:12 | data | data | +| test.swift:53:14:53:19 | append | append | +| test.swift:53:21:53:24 | item | item | +| test.swift:59:10:59:16 | success | success | +| test.swift:60:10:60:16 | failure | failure | +| test.swift:62:10:62:12 | map | map | +| test.swift:62:17:62:17 | _ | _ | +| test.swift:62:19:62:27 | transform | transform | +| test.swift:64:15:64:21 | success | success | +| test.swift:64:27:64:31 | value | value | +| test.swift:65:21:65:27 | success | success | +| test.swift:65:29:65:37 | transform | transform | +| test.swift:65:39:65:43 | value | value | +| test.swift:66:15:66:21 | failure | failure | +| test.swift:66:27:66:31 | error | error | +| test.swift:67:21:67:27 | failure | failure | +| test.swift:67:29:67:33 | error | error | +| test.swift:73:23:73:29 | Element | Element | +| test.swift:74:10:74:17 | isSorted | isSorted | +| test.swift:75:13:75:13 | i | i | +| test.swift:75:23:75:27 | count | count | +| test.swift:76:21:76:21 | i | i | +| test.swift:76:31:76:31 | i | i | +| test.swift:85:6:85:12 | combine | combine | +| test.swift:85:17:85:17 | _ | _ | +| test.swift:85:19:85:24 | values | values | +| test.swift:85:32:85:40 | transform | transform | +| test.swift:86:12:86:17 | values | values | +| test.swift:86:19:86:25 | isEmpty | isEmpty | +| test.swift:87:12:87:17 | values | values | +| test.swift:87:19:87:27 | dropFirst | dropFirst | +| test.swift:87:31:87:36 | reduce | reduce | +| test.swift:87:38:87:43 | values | values | +| test.swift:87:49:87:57 | transform | transform | +func +| test.swift:7:5:9:5 | FunctionDeclaration | +| test.swift:11:5:13:5 | FunctionDeclaration | +| test.swift:24:1:32:1 | FunctionDeclaration | +| test.swift:47:5:50:5 | FunctionDeclaration | +| test.swift:52:5:54:5 | FunctionDeclaration | +| test.swift:62:5:69:5 | FunctionDeclaration | +| test.swift:74:5:81:5 | FunctionDeclaration | +| test.swift:85:1:88:1 | FunctionDeclaration | diff --git a/unified/ql/test/library-tests/BasicTest/test.ql b/unified/ql/test/library-tests/BasicTest/test.ql new file mode 100644 index 000000000000..a294e8768811 --- /dev/null +++ b/unified/ql/test/library-tests/BasicTest/test.ql @@ -0,0 +1,5 @@ +import codeql.unified.Ast + +query predicate identifier(Swift::SimpleIdentifier node, string name) { name = node.getValue() } + +query predicate func(Swift::FunctionDeclaration node) { any() } diff --git a/unified/ql/test/library-tests/BasicTest/test.swift b/unified/ql/test/library-tests/BasicTest/test.swift new file mode 100644 index 000000000000..158ef26f598b --- /dev/null +++ b/unified/ql/test/library-tests/BasicTest/test.swift @@ -0,0 +1,88 @@ +import Foundation + +// Generic struct with type constraint +struct Container { + var items: [T] = [] + + mutating func add(_ item: T) { + items.append(item) + } + + func contains(_ item: T) -> Bool { + return items.contains(item) + } +} + +// Protocol with associated type +protocol DataSource { + associatedtype Element + var count: Int { get } + func item(at index: Int) -> Element? +} + +// Generic function with where clause +func merge(_ first: T, _ second: T) -> [T.Element] where T.Element: Equatable { + var result = Array(first) + for item in second { + if !result.contains(item) { + result.append(item) + } + } + return result +} + +// Class with inheritance and computed properties +class DataManager: DataSource { + typealias Element = T + private var data: [T] = [] + + var count: Int { + return data.count + } + + var isEmpty: Bool { + data.isEmpty + } + + func item(at index: Int) -> T? { + guard index >= 0 && index < data.count else { return nil } + return data[index] + } + + func add(_ item: T) { + data.append(item) + } +} + +// Enum with associated values +enum Result { + case success(Success) + case failure(Failure) + + func map(_ transform: (Success) -> U) -> Result { + switch self { + case .success(let value): + return .success(transform(value)) + case .failure(let error): + return .failure(error) + } + } +} + +// Extension with generic constraints +extension Array where Element: Comparable { + func isSorted() -> Bool { + for i in 0..<(count - 1) { + if self[i] > self[i + 1] { + return false + } + } + return true + } +} + +// Higher-order function +func combine(_ values: [T], transform: (T, T) -> T) -> T? { + guard !values.isEmpty else { return nil } + return values.dropFirst().reduce(values[0], transform) +} diff --git a/unified/ql/test/qlpack.lock.yml b/unified/ql/test/qlpack.lock.yml new file mode 100644 index 000000000000..06dd07fc7dc7 --- /dev/null +++ b/unified/ql/test/qlpack.lock.yml @@ -0,0 +1,4 @@ +--- +dependencies: {} +compiled: false +lockVersion: 1.0.0 diff --git a/unified/ql/test/qlpack.yml b/unified/ql/test/qlpack.yml new file mode 100644 index 000000000000..8c567d531c91 --- /dev/null +++ b/unified/ql/test/qlpack.yml @@ -0,0 +1,8 @@ +name: codeql/unified-tests +groups: [unified, test] +dependencies: + codeql/unified-queries: ${workspace} + codeql/unified-all: ${workspace} +extractor: unified +tests: . +warnOnImplicitThis: true diff --git a/unified/scripts/create-extractor-pack.sh b/unified/scripts/create-extractor-pack.sh new file mode 100755 index 000000000000..7a41092e4a74 --- /dev/null +++ b/unified/scripts/create-extractor-pack.sh @@ -0,0 +1,25 @@ +#!/bin/bash +set -eux +if [[ "$OSTYPE" == "linux-gnu"* ]]; then + platform="linux64" +elif [[ "$OSTYPE" == "darwin"* ]]; then + platform="osx64" +else + echo "Unknown OS" + exit 1 +fi +cd "$(dirname "$0")/.." + +(cd extractor && cargo build --release) + +# we are in a cargo workspace rooted at the git checkout +BIN_DIR=../target/release +"$BIN_DIR/codeql-extractor-unified" generate --dbscheme ql/lib/unified.dbscheme --library ql/lib/codeql/unified/Ast.qll + +codeql query format -i ql/lib/codeql/unified/Ast.qll + +rm -rf extractor-pack +mkdir -p extractor-pack +cp -r codeql-extractor.yml tools ql/lib/unified.dbscheme ql/lib/unified.dbscheme.stats extractor-pack/ +mkdir -p extractor-pack/tools/${platform} +cp "$BIN_DIR/codeql-extractor-unified" extractor-pack/tools/${platform}/extractor diff --git a/unified/tools/BUILD.bazel b/unified/tools/BUILD.bazel new file mode 100644 index 000000000000..a4b4baed225c --- /dev/null +++ b/unified/tools/BUILD.bazel @@ -0,0 +1,11 @@ +load("//misc/bazel:pkg.bzl", "codeql_pkg_files") + +codeql_pkg_files( + name = "tools", + excludes = [ + "BUILD.bazel", + ], + exes = glob(["**/*"]), + prefix = "tools", + visibility = ["//unified:__pkg__"], +) diff --git a/unified/tools/autobuild.cmd b/unified/tools/autobuild.cmd new file mode 100644 index 000000000000..05b59eca1191 --- /dev/null +++ b/unified/tools/autobuild.cmd @@ -0,0 +1,5 @@ +@echo off + +type NUL && "%CODEQL_EXTRACTOR_UNIFIED_ROOT%\tools\%CODEQL_PLATFORM%\extractor" autobuild + +exit /b %ERRORLEVEL% diff --git a/unified/tools/autobuild.sh b/unified/tools/autobuild.sh new file mode 100755 index 000000000000..2b35f39e917f --- /dev/null +++ b/unified/tools/autobuild.sh @@ -0,0 +1,3 @@ +#!/bin/sh + +exec "${CODEQL_EXTRACTOR_UNIFIED_ROOT}/tools/${CODEQL_PLATFORM}/extractor" autobuild diff --git a/unified/tools/index-files.cmd b/unified/tools/index-files.cmd new file mode 100644 index 000000000000..3b9fca08ea03 --- /dev/null +++ b/unified/tools/index-files.cmd @@ -0,0 +1,9 @@ +@echo off + +type NUL && "%CODEQL_EXTRACTOR_UNIFIED_ROOT%\tools\win64\extractor.exe" ^ + extract ^ + --file-list "%1" ^ + --source-archive-dir "%CODEQL_EXTRACTOR_UNIFIED_SOURCE_ARCHIVE_DIR%" ^ + --output-dir "%CODEQL_EXTRACTOR_UNIFIED_TRAP_DIR%" + +exit /b %ERRORLEVEL% diff --git a/unified/tools/index-files.sh b/unified/tools/index-files.sh new file mode 100755 index 000000000000..ddf98907e837 --- /dev/null +++ b/unified/tools/index-files.sh @@ -0,0 +1,9 @@ +#!/bin/sh + +set -eu + +exec "${CODEQL_EXTRACTOR_UNIFIED_ROOT}/tools/${CODEQL_PLATFORM}/extractor" \ + extract \ + --file-list "$1" \ + --source-archive-dir "$CODEQL_EXTRACTOR_UNIFIED_SOURCE_ARCHIVE_DIR" \ + --output-dir "$CODEQL_EXTRACTOR_UNIFIED_TRAP_DIR" diff --git a/unified/tools/qltest.cmd b/unified/tools/qltest.cmd new file mode 100644 index 000000000000..3db89dcc1b98 --- /dev/null +++ b/unified/tools/qltest.cmd @@ -0,0 +1,14 @@ +@echo off + +type NUL && "%CODEQL_DIST%\codeql.exe" database index-files ^ + --prune=**/*.testproj ^ + --include-extension=.swift ^ + --include-extension=.swiftinterface ^ + --size-limit=5m ^ + --language=unified ^ + --working-dir=. ^ + "%CODEQL_EXTRACTOR_UNIFIED_WIP_DATABASE%" + +IF %ERRORLEVEL% NEQ 0 exit /b %ERRORLEVEL% + +exit /b %ERRORLEVEL% diff --git a/unified/tools/qltest.sh b/unified/tools/qltest.sh new file mode 100755 index 000000000000..7dcbb9e81f48 --- /dev/null +++ b/unified/tools/qltest.sh @@ -0,0 +1,12 @@ +#!/bin/sh + +set -eu + +"${CODEQL_DIST}/codeql" database index-files \ + --prune="**/*.testproj" \ + --include-extension=.swift \ + --include-extension=.swiftinterface \ + --size-limit=5m \ + --language=unified \ + --working-dir=.\ + "$CODEQL_EXTRACTOR_UNIFIED_WIP_DATABASE" From 4e12a8c8d28ee22c060f17f2f9ed022677508694 Mon Sep 17 00:00:00 2001 From: Asger F Date: Wed, 6 May 2026 16:23:46 +0200 Subject: [PATCH 205/260] Add basic YEAST dependency and rule --- Cargo.lock | 1 + unified/extractor/BUILD.bazel | 1 + unified/extractor/Cargo.toml | 1 + unified/extractor/src/extractor.rs | 15 ++++++++++++++- .../ql/test/library-tests/BasicTest/test.expected | 5 +++-- unified/ql/test/library-tests/BasicTest/test.ql | 4 ++++ 6 files changed, 24 insertions(+), 3 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 895349ca6e38..856e6fb42e6f 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -454,6 +454,7 @@ dependencies = [ "tree-sitter", "tree-sitter-embedded-template", "tree-sitter-swift", + "yeast", ] [[package]] diff --git a/unified/extractor/BUILD.bazel b/unified/extractor/BUILD.bazel index 8c22b4775f29..c5860edc51ad 100644 --- a/unified/extractor/BUILD.bazel +++ b/unified/extractor/BUILD.bazel @@ -15,5 +15,6 @@ codeql_rust_binary( normal = True, ) + [ "//shared/tree-sitter-extractor", + "//shared/yeast", ], ) diff --git a/unified/extractor/Cargo.toml b/unified/extractor/Cargo.toml index fb377a995e7f..3877ec2e106f 100644 --- a/unified/extractor/Cargo.toml +++ b/unified/extractor/Cargo.toml @@ -20,3 +20,4 @@ lazy_static = "1.5.0" serde_json = "1.0.145" codeql-extractor = { path = "../../shared/tree-sitter-extractor" } +yeast = { path = "../../shared/yeast" } diff --git a/unified/extractor/src/extractor.rs b/unified/extractor/src/extractor.rs index ae9e538a5ec6..5a250257c844 100644 --- a/unified/extractor/src/extractor.rs +++ b/unified/extractor/src/extractor.rs @@ -3,6 +3,7 @@ use std::path::PathBuf; use codeql_extractor::extractor::simple; use codeql_extractor::trap; +use yeast::{rule, DesugaringConfig}; #[derive(Args)] pub struct Options { @@ -19,9 +20,21 @@ pub struct Options { file_list: PathBuf, } +fn swift_desugaring_rules() -> Vec { + vec![ + rule!( + (additive_expression) + => + (simple_identifier "blah") + ), + ] +} + pub fn run(options: Options) -> std::io::Result<()> { codeql_extractor::extractor::set_tracing_level("ql"); + let swift_desugar = DesugaringConfig::new(swift_desugaring_rules()); + let extractor = simple::Extractor { prefix: "unified".to_string(), languages: vec![ @@ -30,7 +43,7 @@ pub fn run(options: Options) -> std::io::Result<()> { ts_language: tree_sitter_swift::LANGUAGE.into(), node_types: tree_sitter_swift::NODE_TYPES, file_globs: vec!["*.swift".into(), "*.swiftinterface".into()], - desugar: None, + desugar: Some(swift_desugar), }, ], trap_dir: options.output_dir, diff --git a/unified/ql/test/library-tests/BasicTest/test.expected b/unified/ql/test/library-tests/BasicTest/test.expected index c24fee85b689..62b8146bf040 100644 --- a/unified/ql/test/library-tests/BasicTest/test.expected +++ b/unified/ql/test/library-tests/BasicTest/test.expected @@ -75,9 +75,9 @@ identifier | test.swift:73:23:73:29 | Element | Element | | test.swift:74:10:74:17 | isSorted | isSorted | | test.swift:75:13:75:13 | i | i | -| test.swift:75:23:75:27 | count | count | +| test.swift:75:23:75:31 | blah | blah | | test.swift:76:21:76:21 | i | i | -| test.swift:76:31:76:31 | i | i | +| test.swift:76:31:76:35 | blah | blah | | test.swift:85:6:85:12 | combine | combine | | test.swift:85:17:85:17 | _ | _ | | test.swift:85:19:85:24 | values | values | @@ -98,3 +98,4 @@ func | test.swift:62:5:69:5 | FunctionDeclaration | | test.swift:74:5:81:5 | FunctionDeclaration | | test.swift:85:1:88:1 | FunctionDeclaration | +add diff --git a/unified/ql/test/library-tests/BasicTest/test.ql b/unified/ql/test/library-tests/BasicTest/test.ql index a294e8768811..3a5ee2f1c157 100644 --- a/unified/ql/test/library-tests/BasicTest/test.ql +++ b/unified/ql/test/library-tests/BasicTest/test.ql @@ -3,3 +3,7 @@ import codeql.unified.Ast query predicate identifier(Swift::SimpleIdentifier node, string name) { name = node.getValue() } query predicate func(Swift::FunctionDeclaration node) { any() } + +query predicate add(Swift::AdditiveExpression node, Swift::AstNode lhs, Swift::AstNode rhs) { + lhs = node.getLhs(0) and rhs = node.getRhs(0) +} From cd457a7d6bced5a117b9ac73bdb16a1c61c66af1 Mon Sep 17 00:00:00 2001 From: Asger F Date: Thu, 7 May 2026 09:47:27 +0200 Subject: [PATCH 206/260] Move Swift language into its own module --- unified/extractor/src/extractor.rs | 24 ++++--------------- .../extractor/src/languages/swift/swift.rs | 23 ++++++++++++++++++ 2 files changed, 27 insertions(+), 20 deletions(-) create mode 100644 unified/extractor/src/languages/swift/swift.rs diff --git a/unified/extractor/src/extractor.rs b/unified/extractor/src/extractor.rs index 5a250257c844..137b2f3c0e49 100644 --- a/unified/extractor/src/extractor.rs +++ b/unified/extractor/src/extractor.rs @@ -3,7 +3,9 @@ use std::path::PathBuf; use codeql_extractor::extractor::simple; use codeql_extractor::trap; -use yeast::{rule, DesugaringConfig}; + +#[path = "languages/swift/swift.rs"] +mod swift; #[derive(Args)] pub struct Options { @@ -20,31 +22,13 @@ pub struct Options { file_list: PathBuf, } -fn swift_desugaring_rules() -> Vec { - vec![ - rule!( - (additive_expression) - => - (simple_identifier "blah") - ), - ] -} - pub fn run(options: Options) -> std::io::Result<()> { codeql_extractor::extractor::set_tracing_level("ql"); - let swift_desugar = DesugaringConfig::new(swift_desugaring_rules()); - let extractor = simple::Extractor { prefix: "unified".to_string(), languages: vec![ - simple::LanguageSpec { - prefix: "swift", - ts_language: tree_sitter_swift::LANGUAGE.into(), - node_types: tree_sitter_swift::NODE_TYPES, - file_globs: vec!["*.swift".into(), "*.swiftinterface".into()], - desugar: Some(swift_desugar), - }, + swift::language_spec(), ], trap_dir: options.output_dir, trap_compression: trap::Compression::from_env("CODEQL_QL_TRAP_COMPRESSION"), diff --git a/unified/extractor/src/languages/swift/swift.rs b/unified/extractor/src/languages/swift/swift.rs new file mode 100644 index 000000000000..5b21473874c0 --- /dev/null +++ b/unified/extractor/src/languages/swift/swift.rs @@ -0,0 +1,23 @@ +use codeql_extractor::extractor::simple; +use yeast::{rule, DesugaringConfig}; + +fn desugaring_rules() -> Vec { + vec![ + rule!( + (additive_expression) + => + (simple_identifier "blah") + ), + ] +} + +pub fn language_spec() -> simple::LanguageSpec { + let desugar = DesugaringConfig::new(desugaring_rules()); + simple::LanguageSpec { + prefix: "swift", + ts_language: tree_sitter_swift::LANGUAGE.into(), + node_types: tree_sitter_swift::NODE_TYPES, + file_globs: vec!["*.swift".into(), "*.swiftinterface".into()], + desugar: Some(desugar), + } +} From a1447075e8e26b629f660c7d3efd800eacd7f9e8 Mon Sep 17 00:00:00 2001 From: Asger F Date: Thu, 7 May 2026 10:48:22 +0200 Subject: [PATCH 207/260] Add AGENTS.md with build/test instructions --- unified/AGENTS.md | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 unified/AGENTS.md diff --git a/unified/AGENTS.md b/unified/AGENTS.md new file mode 100644 index 000000000000..44cb74372883 --- /dev/null +++ b/unified/AGENTS.md @@ -0,0 +1,15 @@ +# Agent instructions + +This is a CodeQL extractor based on tree-sitter. + +## Building +To build the extractor, run `scripts/create-extractor-pack.sh` + +## Testing +- If you changed the extractor code, always rebuild it before running tests. + +- To run all tests, run `codeql test run --search-path extractor-pack ql/test` + +- Do not edit `.expected` files manually. To update the expected output, pass `--learn` to the `codeql test run` command. + +- To run a specific test, pass the specific directory to the `codeql test run` command instead of `ql/test`. From 28028191702733ba96465a2d28303454fcb7380c Mon Sep 17 00:00:00 2001 From: Asger F Date: Thu, 7 May 2026 21:37:42 +0200 Subject: [PATCH 208/260] Use new YEAST API after rebasing --- unified/extractor/src/languages/swift/swift.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/unified/extractor/src/languages/swift/swift.rs b/unified/extractor/src/languages/swift/swift.rs index 5b21473874c0..c3843a5979c5 100644 --- a/unified/extractor/src/languages/swift/swift.rs +++ b/unified/extractor/src/languages/swift/swift.rs @@ -12,7 +12,7 @@ fn desugaring_rules() -> Vec { } pub fn language_spec() -> simple::LanguageSpec { - let desugar = DesugaringConfig::new(desugaring_rules()); + let desugar = DesugaringConfig::new().add_phase("desugar", desugaring_rules()); simple::LanguageSpec { prefix: "swift", ts_language: tree_sitter_swift::LANGUAGE.into(), From 048411e168c1bb3c6cb2d497419192f10a98c129 Mon Sep 17 00:00:00 2001 From: Anders Schack-Mulligen Date: Fri, 8 May 2026 08:11:32 +0200 Subject: [PATCH 209/260] Apply suggestions from code review Co-authored-by: Anders Schack-Mulligen --- shared/controlflow/codeql/controlflow/ControlFlowGraph.qll | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/shared/controlflow/codeql/controlflow/ControlFlowGraph.qll b/shared/controlflow/codeql/controlflow/ControlFlowGraph.qll index 17a01b7e3719..7a6b6318ed11 100644 --- a/shared/controlflow/codeql/controlflow/ControlFlowGraph.qll +++ b/shared/controlflow/codeql/controlflow/ControlFlowGraph.qll @@ -490,11 +490,11 @@ module Make0 Ast> { */ default Parameter callableGetParameter(Callable c, CallableContext ctx, int index) { none() } - /** Holds if this catch clause catches all exceptions. */ + /** Holds if catch clause `catch` catches all exceptions. */ default predicate catchAll(CatchClause catch) { none() } /** - * Holds if this case matches all possible values, for example, if it is a + * Holds if case `c` matches all possible values, for example, if it is a * `default` case or a match-all pattern like `Object o` or if it is the * final case in a switch that is known to be exhaustive. * From 9a2b7bac8f0210200e829fa21d407fd74d7527b3 Mon Sep 17 00:00:00 2001 From: Asger F Date: Fri, 8 May 2026 08:56:40 +0200 Subject: [PATCH 210/260] Fix Bazel glob to include subdirectories Co-authored-by: Copilot Autofix powered by AI <175728472+Copilot@users.noreply.github.com> --- unified/extractor/BUILD.bazel | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/unified/extractor/BUILD.bazel b/unified/extractor/BUILD.bazel index c5860edc51ad..5a53d7cc3e07 100644 --- a/unified/extractor/BUILD.bazel +++ b/unified/extractor/BUILD.bazel @@ -5,7 +5,7 @@ exports_files(["Cargo.toml"]) codeql_rust_binary( name = "extractor", - srcs = glob(["src/*.rs"]), + srcs = glob(["src/**/*.rs"]), aliases = aliases(), proc_macro_deps = all_crate_deps( proc_macro = True, From 33e89ea1237157da58f9c38124fb3978864d1f5a Mon Sep 17 00:00:00 2001 From: Asger F Date: Fri, 8 May 2026 09:03:18 +0200 Subject: [PATCH 211/260] Address review comments --- unified/extractor/src/extractor.rs | 6 +++--- unified/extractor/src/generator.rs | 4 ++-- unified/ql/lib/unified.dbscheme | 2 +- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/unified/extractor/src/extractor.rs b/unified/extractor/src/extractor.rs index 137b2f3c0e49..eb6f06eb259b 100644 --- a/unified/extractor/src/extractor.rs +++ b/unified/extractor/src/extractor.rs @@ -9,7 +9,7 @@ mod swift; #[derive(Args)] pub struct Options { - /// Sets a custom source achive folder + /// Sets a custom source archive folder #[arg(long)] source_archive_dir: PathBuf, @@ -23,7 +23,7 @@ pub struct Options { } pub fn run(options: Options) -> std::io::Result<()> { - codeql_extractor::extractor::set_tracing_level("ql"); + codeql_extractor::extractor::set_tracing_level("unified"); let extractor = simple::Extractor { prefix: "unified".to_string(), @@ -31,7 +31,7 @@ pub fn run(options: Options) -> std::io::Result<()> { swift::language_spec(), ], trap_dir: options.output_dir, - trap_compression: trap::Compression::from_env("CODEQL_QL_TRAP_COMPRESSION"), + trap_compression: trap::Compression::from_env("CODEQL_EXTRACTOR_UNIFIED_OPTION_TRAP_COMPRESSION"), source_archive_dir: options.source_archive_dir, file_lists: vec![options.file_list], }; diff --git a/unified/extractor/src/generator.rs b/unified/extractor/src/generator.rs index ee65da7a6005..ce1f37144a4e 100644 --- a/unified/extractor/src/generator.rs +++ b/unified/extractor/src/generator.rs @@ -15,7 +15,7 @@ pub struct Options { } pub fn run(options: Options) -> std::io::Result<()> { - codeql_extractor::extractor::set_tracing_level("ql"); + codeql_extractor::extractor::set_tracing_level("unified"); let languages = vec![Language { name: "Swift".to_owned(), @@ -23,5 +23,5 @@ pub fn run(options: Options) -> std::io::Result<()> { desugar: None, }]; - generate(languages, options.dbscheme, options.library, "run ql/unified/scripts/create-extractor-pack.sh") + generate(languages, options.dbscheme, options.library, "run unified/scripts/create-extractor-pack.sh") } diff --git a/unified/ql/lib/unified.dbscheme b/unified/ql/lib/unified.dbscheme index 026d4add415d..c580e8e69271 100644 --- a/unified/ql/lib/unified.dbscheme +++ b/unified/ql/lib/unified.dbscheme @@ -1,6 +1,6 @@ // CodeQL database schema for Swift // Automatically generated from the tree-sitter grammar; do not edit -// To regenerate, run ql/unified/scripts/create-extractor-pack.sh +// To regenerate, run unified/scripts/create-extractor-pack.sh /*- Files and folders -*/ From 26e13055c8b9377823c856daa52f3397779223aa Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Fri, 8 May 2026 09:24:10 +0000 Subject: [PATCH 212/260] update codeql documentation --- .../codeql-changelog/codeql-cli-2.25.3.rst | 2 +- .../codeql-changelog/codeql-cli-2.25.4.rst | 147 ++++++++++++++++++ .../codeql-changelog/index.rst | 1 + 3 files changed, 149 insertions(+), 1 deletion(-) create mode 100644 docs/codeql/codeql-overview/codeql-changelog/codeql-cli-2.25.4.rst diff --git a/docs/codeql/codeql-overview/codeql-changelog/codeql-cli-2.25.3.rst b/docs/codeql/codeql-overview/codeql-changelog/codeql-cli-2.25.3.rst index 88130515732f..b14905f6eb67 100644 --- a/docs/codeql/codeql-overview/codeql-changelog/codeql-cli-2.25.3.rst +++ b/docs/codeql/codeql-overview/codeql-changelog/codeql-cli-2.25.3.rst @@ -1,7 +1,7 @@ .. _codeql-cli-2.25.3: ========================== -CodeQL 2.25.3 (2026-05-01) +CodeQL 2.25.3 (2026-04-30) ========================== .. contents:: Contents diff --git a/docs/codeql/codeql-overview/codeql-changelog/codeql-cli-2.25.4.rst b/docs/codeql/codeql-overview/codeql-changelog/codeql-cli-2.25.4.rst new file mode 100644 index 000000000000..649c6f26f6a3 --- /dev/null +++ b/docs/codeql/codeql-overview/codeql-changelog/codeql-cli-2.25.4.rst @@ -0,0 +1,147 @@ +.. _codeql-cli-2.25.4: + +========================== +CodeQL 2.25.4 (2026-05-05) +========================== + +.. contents:: Contents + :depth: 2 + :local: + :backlinks: none + +This is an overview of changes in the CodeQL CLI and relevant CodeQL query and library packs. For additional updates on changes to the CodeQL code scanning experience, check out the `code scanning section on the GitHub blog `__, `relevant GitHub Changelog updates `__, `changes in the CodeQL extension for Visual Studio Code `__, and the `CodeQL Action changelog `__. + +Security Coverage +----------------- + +CodeQL 2.25.4 runs a total of 496 security queries when configured with the Default suite (covering 169 CWE). The Extended suite enables an additional 131 queries (covering 32 more CWE). + +CodeQL CLI +---------- + +There are no user-facing CLI changes in this release. + +Language Libraries +------------------ + +Breaking Changes +~~~~~~~~~~~~~~~~ + +C# +"" + +* The C# control flow graph (CFG) implementation has been completely rewritten. The CFG now includes additional nodes to more accurately represent certain constructs. This also means that any existing code that implicitly relies on very specific details about the CFG may need to be updated. + The CFG no longer uses splitting, which means that AST nodes now have a unique CFG node representation. + Additionally, the following breaking changes have been made: + + * :code:`ControlFlow::Node` has been renamed to :code:`ControlFlowNode`. + * :code:`ControlFlow::Nodes` has been renamed to :code:`ControlFlowNodes`. + * :code:`BasicBlock.getCallable` has been renamed to :code:`BasicBlock.getEnclosingCallable`. + * :code:`BasicBlocks.qll` has been deleted. + * :code:`ControlFlowNode.getAstNode` has changed its meaning. The AST-to-CFG mapping remains one-to-many, but now for a different reason. It used to be because of splitting, but now it's because of additional "helper" CFG nodes. To get the (now canonical) CFG node for a given AST node, use + :code:`ControlFlowNode.asExpr()` or :code:`ControlFlowNode.asStmt()` or + :code:`ControlFlowElement.getControlFlowNode()` instead. + +Major Analysis Improvements +~~~~~~~~~~~~~~~~~~~~~~~~~~~ + +C# +"" + +* When resolving dependencies in :code:`build-mode: none`, :code:`dotnet restore` now explicitly receives reachable NuGet feeds configured in :code:`nuget.config` when feed responsiveness checking is enabled (the default), and any private registries directly, improving reliability when default feeds are unavailable or restricted. + +Swift +""""" + +* Upgraded to allow analysis of Swift 6.3.1. + +Minor Analysis Improvements +~~~~~~~~~~~~~~~~~~~~~~~~~~~ + +C/C++ +""""" + +* Added taint flow models for the :code:`Strsafe.h` header from the Windows SDK. + +C# +"" + +* Expanded ASP and ASP.NET remote source modeling to cover additional sources, including fields of tainted parameters as well as properties and fields that become tainted transitively. +* C# 14: Added support for user-defined compound assignment operators. + +Java/Kotlin +""""""""""" + +* Added :code:`sql-injection` sink models for the Hibernate :code:`org.hibernate.query.QueryProducer` methods :code:`createNativeMutationQuery`, :code:`createMutationQuery`, and :code:`createSelectionQuery`. +* The :code:`java/partial-path-traversal` and :code:`java/partial-path-traversal-from-remote` queries now correctly recognize file separator appends using :code:`+=`. +* The :code:`java/path-injection` and :code:`java/zipslip` queries now recognize :code:`Path.toRealPath()` as a path normalization sanitizer, consistent with the existing treatment of :code:`Path.normalize()` and :code:`File.getCanonicalPath()`. This reduces false positives for code that uses the NIO.2 API for path canonicalization. +* The :code:`java/sensitive-log` query now excludes additional common variable naming patterns that do not hold sensitive data, reducing false positives. This includes pagination/iteration tokens (:code:`nextToken`, :code:`pageToken`, :code:`continuationToken`), token metadata (:code:`tokenType`, :code:`tokenEndpoint`, :code:`tokenCount`), and secret metadata (:code:`secretName`, :code:`secretId`, :code:`secretVersion`). +* The :code:`java/sensitive-log` query now treats method calls whose names contain "encrypt", "hash", or "digest" as sanitizers, consistent with the existing treatment in :code:`java/cleartext-storage-in-log`. This reduces false positives when sensitive data is hashed or encrypted before logging. +* The :code:`java/trust-boundary-violation` query now recognizes regular expression checks (including :code:`String.matches()` guards and :code:`@javax.validation.constraints.Pattern` annotations) as sanitizers, consistent with the existing treatment of ESAPI validators. This reduces false positives when input is validated against a pattern before being stored in a session. + +Python +"""""" + +* The Python extractor now supports unpacking in comprehensions, e.g. :code:`[*x for x in nested]` (as defined in `PEP-798 `__) that will be part of Python 3.15. + +Deprecated APIs +~~~~~~~~~~~~~~~ + +C# +"" + +* The QL classes in the C# SSA library have been renamed to improve consistency between languages. Any custom QL code that makes use of SSA needs to be updated. The old classes have been deprecated and include more detailed migration instructions in their qldoc. + +New Features +~~~~~~~~~~~~ + +C/C++ +""""" + +* A new predicate :code:`getSwitchCase` was added to the :code:`SwitchStmt` class, which yields the :code:`n`\ th :code:`case` statement from a :code:`switch` statement. +* Data flow barriers and barrier guards can now be added using data extensions. For more information see `Customizing library models for C and C++ `__. + +C# +"" + +* Data flow barriers and barrier guards can now be added using data extensions. For more information see `Customizing library models for C# `__. + +Golang +"""""" + +* Data flow barriers and barrier guards can now be added using data extensions. For more information see `Customizing library models for Go `__. + +Java/Kotlin +""""""""""" + +* Data flow barriers and barrier guards can now be added using data extensions. For more information see `Customizing library models for Java and Kotlin `__. + +JavaScript/TypeScript +""""""""""""""""""""" + +* Added support for |link-code-vercel-node-1|_ Vercel serverless functions. Handlers are recognized via the :code:`VercelRequest`\ /\ :code:`VercelResponse` TypeScript parameter types, and standard security queries (:code:`js/reflected-xss`, :code:`js/request-forgery`, :code:`js/sql-injection`, :code:`js/command-line-injection`, etc.) now detect vulnerabilities in Vercel API route files. +* Data flow barriers and barrier guards can now be added using data extensions. For more information see `Customizing library models for JavaScript `__. + +Python +"""""" + +* Data flow barriers and barrier guards can now be added using data extensions. For more information see `Customizing library models for Python `__. + +Ruby +"""" + +* Data flow barriers and barrier guards can now be added using data extensions. For more information see `Customizing library models for Ruby `__. + +Swift +""""" + +* The :code:`BuiltinFixedArrayType` class now defines the predicates :code:`getSize` and :code:`getElementType`, which yield the size of the array and the type of elements stored in the array, respectively. + +Rust +"""" + +* Data flow barriers and barrier guards can now be added using data extensions. + +.. |link-code-vercel-node-1| replace:: :code:`@vercel/node`\ +.. _link-code-vercel-node-1: https://www.npmjs.com/package/@vercel/node + diff --git a/docs/codeql/codeql-overview/codeql-changelog/index.rst b/docs/codeql/codeql-overview/codeql-changelog/index.rst index 5835176a93fa..c5d4fee45769 100644 --- a/docs/codeql/codeql-overview/codeql-changelog/index.rst +++ b/docs/codeql/codeql-overview/codeql-changelog/index.rst @@ -11,6 +11,7 @@ A list of queries for each suite and language `is available here Date: Thu, 7 May 2026 23:40:18 +0200 Subject: [PATCH 213/260] Shared: Nicer panic message if node kind is missing Still panics, just with a better message --- shared/tree-sitter-extractor/src/extractor/mod.rs | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/shared/tree-sitter-extractor/src/extractor/mod.rs b/shared/tree-sitter-extractor/src/extractor/mod.rs index 0c3e13660817..4ec16269c1f6 100644 --- a/shared/tree-sitter-extractor/src/extractor/mod.rs +++ b/shared/tree-sitter-extractor/src/extractor/mod.rs @@ -479,13 +479,14 @@ impl<'a> Visitor<'a> { let (id, _, child_nodes) = self.stack.pop().expect("Vistor: empty stack"); let loc = location_for(self, self.file_label, node); let loc_label = location_label(self.trap_writer, loc); + let type_name = TypeName { + kind: node.kind().to_owned(), + named: node.is_named(), + }; let table = self .schema - .get(&TypeName { - kind: node.kind().to_owned(), - named: node.is_named(), - }) - .unwrap(); + .get(&type_name) + .unwrap_or_else(|| panic!("missing extractor schema entry for {:?}", type_name)); let mut valid = true; let parent_info = match self.stack.last_mut() { Some(p) if !node.is_extra() => { From 9a1c2da5d9e1b5ca7fb8f8c246827351ca89d5c8 Mon Sep 17 00:00:00 2001 From: Asger F Date: Fri, 8 May 2026 14:22:01 +0200 Subject: [PATCH 214/260] Fix clippy: inline variable in format string Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> --- shared/tree-sitter-extractor/src/extractor/mod.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/shared/tree-sitter-extractor/src/extractor/mod.rs b/shared/tree-sitter-extractor/src/extractor/mod.rs index 4ec16269c1f6..00816a00fd04 100644 --- a/shared/tree-sitter-extractor/src/extractor/mod.rs +++ b/shared/tree-sitter-extractor/src/extractor/mod.rs @@ -486,7 +486,7 @@ impl<'a> Visitor<'a> { let table = self .schema .get(&type_name) - .unwrap_or_else(|| panic!("missing extractor schema entry for {:?}", type_name)); + .unwrap_or_else(|| panic!("missing extractor schema entry for {type_name:?}")); let mut valid = true; let parent_info = match self.stack.last_mut() { Some(p) if !node.is_extra() => { From 7bd27b83e070b581b8fdf1c576b423bdda0fed77 Mon Sep 17 00:00:00 2001 From: Taus Date: Fri, 8 May 2026 12:47:22 +0000 Subject: [PATCH 215/260] yeast: Mutate parent fields in place; remove redundant Node::id apply_rules_inner used to handle the "child was rewritten, so the parent needs new field IDs" case by cloning the parent node, swapping in the new fields, pushing the clone onto the arena, and returning the new Id. Every ancestor on the path from the rewrite up to the root was duplicated this way, with the originals retained as garbage in the arena. Switch to in-place mutation: assign `ast.nodes[id].fields = new_fields` and return the same Id. Rule firings still produce genuinely new nodes via BuildCtx (their structure differs from the input), but the ancestor-rebuild spine no longer copies anything. This is safe because apply_rules_inner already works entirely by Id: the field snapshot is cloned out before recursing, no &Node references are held across mutations of the arena, and captures are scoped to a single rule firing so the now-stable Ids do not break anything. Memory effect: a desugaring pass that rewrites R leaves of a tree of average depth d previously appended R*d ancestor clones to the arena. Now appends 0. With Ids stable for the lifetime of an Ast, the Node::id field becomes truly redundant and is removed (along with the Node::id() accessor). AstCursor switches from caching `node: &Node` to tracking `node_id: Id` and looking the node up via the arena on each access; ChildrenIter now yields Ids directly. A new AstCursor::node_id() method gives callers access to the cursor position by Id. --- shared/yeast/src/lib.rs | 60 +++++++++++++++---------------------- shared/yeast/src/visitor.rs | 10 +++---- shared/yeast/tests/test.rs | 14 ++++----- 3 files changed, 35 insertions(+), 49 deletions(-) diff --git a/shared/yeast/src/lib.rs b/shared/yeast/src/lib.rs index 0f0ea45a9857..0e554a3cf43c 100644 --- a/shared/yeast/src/lib.rs +++ b/shared/yeast/src/lib.rs @@ -34,44 +34,48 @@ pub const CHILD_FIELD: u16 = u16::MAX; #[derive(Debug)] pub struct AstCursor<'a> { ast: &'a Ast, - /// A stack of parents, along with iterators for their children - parents: Vec<(&'a Node, ChildrenIter<'a>)>, - node: &'a Node, + /// A stack of parents, along with iterators for their children. + parents: Vec<(Id, ChildrenIter<'a>)>, + node_id: Id, } impl<'a> AstCursor<'a> { pub fn new(ast: &'a Ast) -> Self { - // TODO: handle non-zero root - let node = ast.get_node(ast.root).unwrap(); Self { ast, parents: vec![], - node, + node_id: ast.root, } } + /// The Id of the node currently under the cursor. + pub fn node_id(&self) -> Id { + self.node_id + } + fn goto_next_sibling_opt(&mut self) -> Option<()> { - self.node = self.parents.last_mut()?.1.next()?; + self.node_id = self.parents.last_mut()?.1.next()?; Some(()) } fn goto_first_child_opt(&mut self) -> Option<()> { - let parent = self.node; - let mut children = ChildrenIter::new(self.ast, parent); + let parent_id = self.node_id; + let parent = self.ast.get_node(parent_id)?; + let mut children = ChildrenIter::new(parent); let first_child = children.next()?; - self.node = first_child; - self.parents.push((parent, children)); + self.node_id = first_child; + self.parents.push((parent_id, children)); Some(()) } fn goto_parent_opt(&mut self) -> Option<()> { - self.node = self.parents.pop()?.0; + self.node_id = self.parents.pop()?.0; Some(()) } } impl<'a> Cursor<'a, Ast, Node, FieldId> for AstCursor<'a> { fn node(&self) -> &'a Node { - self.node + &self.ast.nodes[self.node_id] } fn field_id(&self) -> Option { @@ -101,36 +105,30 @@ impl<'a> Cursor<'a, Ast, Node, FieldId> for AstCursor<'a> { } } -/// An iterator over all the child nodes of a node. +/// An iterator over the child Ids of a node. #[derive(Debug)] struct ChildrenIter<'a> { - ast: &'a Ast, current_field: Option, fields: std::collections::btree_map::Iter<'a, FieldId, Vec>, field_children: Option>, } impl<'a> ChildrenIter<'a> { - fn new(ast: &'a Ast, node: &'a Node) -> Self { + fn new(node: &'a Node) -> Self { Self { - ast, current_field: None, fields: node.fields.iter(), field_children: None, } } - fn get_node(&self, id: Id) -> &'a Node { - self.ast.get_node(id).unwrap() - } - fn current_field(&self) -> Option { self.current_field } } -impl<'a> Iterator for ChildrenIter<'a> { - type Item = &'a Node; +impl Iterator for ChildrenIter<'_> { + type Item = Id; fn next(&mut self) -> Option { match self.field_children.as_mut() { @@ -151,7 +149,7 @@ impl<'a> Iterator for ChildrenIter<'a> { self.next() } }, - Some(child_id) => Some(self.get_node(*child_id)), + Some(child_id) => Some(*child_id), }, } } @@ -236,7 +234,6 @@ impl Ast { ) -> Id { let id = self.nodes.len(); self.nodes.push(Node { - id, kind, kind_name: self.schema.node_kind_for_id(kind).unwrap(), fields, @@ -265,7 +262,6 @@ impl Ast { }); let id = self.nodes.len(); self.nodes.push(Node { - id, kind: kind_id, kind_name: kind, is_named: true, @@ -345,7 +341,6 @@ impl Ast { /// A node in our AST #[derive(PartialEq, Eq, Debug, Clone, Serialize)] pub struct Node { - id: Id, kind: KindId, kind_name: &'static str, pub(crate) fields: BTreeMap>, @@ -361,10 +356,6 @@ pub struct Node { } impl Node { - pub fn id(&self) -> Id { - self.id - } - pub fn kind(&self) -> &'static str { self.kind_name } @@ -628,11 +619,8 @@ fn apply_rules_inner( return Ok(vec![id]); } - let mut node = ast.nodes[id].clone(); - node.fields = new_fields; - node.id = ast.nodes.len(); - ast.nodes.push(node); - Ok(vec![ast.nodes.len() - 1]) + ast.nodes[id].fields = new_fields; + Ok(vec![id]) } /// One phase of a desugaring pass: a named bundle of rules that runs to diff --git a/shared/yeast/src/visitor.rs b/shared/yeast/src/visitor.rs index 655aa01e6b3e..1b9c5eab3627 100644 --- a/shared/yeast/src/visitor.rs +++ b/shared/yeast/src/visitor.rs @@ -49,7 +49,7 @@ impl Visitor { pub fn build_with_schema(self, schema: crate::schema::Schema) -> Ast { Ast { - root: self.nodes[0].inner.id, + root: 0, schema, nodes: self.nodes.into_iter().map(|n| n.inner).collect(), } @@ -59,7 +59,6 @@ impl Visitor { let id = self.nodes.len(); self.nodes.push(VisitorNode { inner: Node { - id, kind: self.language.id_for_node_kind(n.kind(), is_named), kind_name: n.kind(), content, @@ -82,11 +81,10 @@ impl Visitor { } fn leave_node(&mut self, field_name: Option<&'static str>, _node: tree_sitter::Node<'_>) { - let node = self.current.map(|i| &self.nodes[i]).unwrap(); - let node_id = node.inner.id; - let node_parent = node.parent; + let node_id = self.current.unwrap(); + let node_parent = self.nodes[node_id].parent; - if let Some(parent_id) = node.parent { + if let Some(parent_id) = node_parent { let parent = self.nodes.get_mut(parent_id).unwrap(); if let Some(field) = field_name { let field_id = self.language.field_id_for_name(field).unwrap().get(); diff --git a/shared/yeast/tests/test.rs b/shared/yeast/tests/test.rs index 6ba2cd3e9f08..ed4202493a46 100644 --- a/shared/yeast/tests/test.rs +++ b/shared/yeast/tests/test.rs @@ -182,7 +182,7 @@ fn test_query_repeated_capture() { // Match against the assignment node (first named child of program) let mut cursor = AstCursor::new(&ast); cursor.goto_first_child(); - let assignment_id = cursor.node().id(); + let assignment_id = cursor.node_id(); let mut captures = yeast::captures::Captures::new(); let matched = query.do_match(&ast, assignment_id, &mut captures).unwrap(); @@ -206,7 +206,7 @@ fn test_capture_unnamed_node_parenthesized() { let mut cursor = AstCursor::new(&ast); cursor.goto_first_child(); - let assignment_id = cursor.node().id(); + let assignment_id = cursor.node_id(); let mut captures = yeast::captures::Captures::new(); let matched = query.do_match(&ast, assignment_id, &mut captures).unwrap(); @@ -233,7 +233,7 @@ fn test_capture_unnamed_node_bare_literal() { let mut cursor = AstCursor::new(&ast); cursor.goto_first_child(); - let assignment_id = cursor.node().id(); + let assignment_id = cursor.node_id(); let mut captures = yeast::captures::Captures::new(); let matched = query.do_match(&ast, assignment_id, &mut captures).unwrap(); @@ -254,7 +254,7 @@ fn test_bare_underscore_matches_unnamed() { let mut cursor = AstCursor::new(&ast); cursor.goto_first_child(); - let assignment_id = cursor.node().id(); + let assignment_id = cursor.node_id(); // `(_)` skips unnamed children, so a query containing a single `(_)` // bare pattern fails to match the assignment (whose only unfielded @@ -293,7 +293,7 @@ fn test_bare_forms_in_field_position() { let mut cursor = AstCursor::new(&ast); cursor.goto_first_child(); - let assignment_id = cursor.node().id(); + let assignment_id = cursor.node_id(); // Bare `_` in field position. Captures the named `identifier "x"` // child of the `left` field — bare `_` admits unnamed too, but the @@ -337,7 +337,7 @@ fn test_forward_scan_finds_unnamed_token_late() { while cursor.node().kind() != "do" || !cursor.node().is_named() { assert!(cursor.goto_next_sibling(), "expected to find named `do`"); } - let do_id = cursor.node().id(); + let do_id = cursor.node_id(); let query = yeast::query!((do ("end") @kw)); let mut captures = yeast::captures::Captures::new(); @@ -363,7 +363,7 @@ fn test_forward_scan_preserves_order() { while cursor.node().kind() != "do" || !cursor.node().is_named() { assert!(cursor.goto_next_sibling(), "expected to find named `do`"); } - let do_id = cursor.node().id(); + let do_id = cursor.node_id(); let query = yeast::query!((do ("end") @first ("do") @second)); let mut captures = yeast::captures::Captures::new(); From 15936a5f8d70511711a5ed7b088dbf4203cf46c0 Mon Sep 17 00:00:00 2001 From: Taus Date: Fri, 8 May 2026 12:48:10 +0000 Subject: [PATCH 216/260] yeast: Take fields by ownership in apply_rules_inner MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Previously, apply_rules_inner snapshotted a node's fields by cloning the BTreeMap into a Vec<(FieldId, Vec)>, then built a fresh BTreeMap of new_fields for the rewritten Ids. For a node with N fields, this allocated 2N+1 things per visit (the snapshot Vec, N cloned children Vecs, the new BTreeMap entries) — even when nothing in the subtree was rewritten. Use std::mem::take to swap the parent's fields out by ownership: the recursion can mutate the AST (including pushing new nodes from rule firings) without any conflict, since we hold the owned BTreeMap locally. Iterate values_mut() and only allocate a fresh children Vec on the first divergence (lazy alloc): unchanged children stay in the existing slot. When done, swap the fields back. For a subtree with no rewrites, this is now zero allocations per node (modulo the recursion itself). For nodes with rewrites, it's one Vec allocation per field that contains a rewritten child, instead of two plus the BTreeMap rebuild. --- shared/yeast/src/lib.rs | 51 ++++++++++++++++++++++------------------- 1 file changed, 28 insertions(+), 23 deletions(-) diff --git a/shared/yeast/src/lib.rs b/shared/yeast/src/lib.rs index 0e554a3cf43c..281f44a98b26 100644 --- a/shared/yeast/src/lib.rs +++ b/shared/yeast/src/lib.rs @@ -591,35 +591,40 @@ fn apply_rules_inner( } } - // Collect fields before recursing (avoids borrowing ast immutably during mutation) - let field_entries: Vec<(FieldId, Vec)> = ast.nodes[id] - .fields - .iter() - .map(|(&fid, children)| (fid, children.clone())) - .collect(); - - // recursively descend into all the fields + // Take the parent's fields by ownership: the recursion will rewrite + // each child Id, and we'll write the (possibly mutated) field map back + // when we're done. Avoids cloning the whole BTreeMap and its child + // Vecs on entry. Each child Vec is only re-allocated if a rewrite + // actually changes its contents. + // // Child traversal does not increment rewrite depth and starts fresh // (no rule is skipped on child subtrees). - let mut changed = false; - let mut new_fields = BTreeMap::new(); - for (field_id, children) in field_entries { - let mut new_children = Vec::new(); - for child_id in children { + let mut fields = std::mem::take(&mut ast.nodes[id].fields); + for children in fields.values_mut() { + let mut new_children: Option> = None; + for (i, &child_id) in children.iter().enumerate() { let result = apply_rules_inner(index, ast, child_id, fresh, rewrite_depth, None)?; - if result.len() != 1 || result[0] != child_id { - changed = true; + let unchanged = result.len() == 1 && result[0] == child_id; + match (&mut new_children, unchanged) { + (None, true) => {} // unchanged so far, no allocation needed + (None, false) => { + // First divergence — copy already-processed Ids and + // start collecting the rewritten sequence. + let mut new = Vec::with_capacity(children.len()); + new.extend_from_slice(&children[..i]); + new.extend(result); + new_children = Some(new); + } + (Some(new), _) => { + new.extend(result); + } } - new_children.extend(result); } - new_fields.insert(field_id, new_children); - } - - if !changed { - return Ok(vec![id]); + if let Some(new) = new_children { + *children = new; + } } - - ast.nodes[id].fields = new_fields; + ast.nodes[id].fields = fields; Ok(vec![id]) } From e2874ac252a8e74fc9531986a3c03cdbcaf1833e Mon Sep 17 00:00:00 2001 From: Owen Mansel-Chan Date: Fri, 8 May 2026 14:05:55 +0100 Subject: [PATCH 217/260] Python: Clarify that deserialization following a schema is safe --- .../ql/src/Security/CWE-502/UnsafeDeserialization.qhelp | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/python/ql/src/Security/CWE-502/UnsafeDeserialization.qhelp b/python/ql/src/Security/CWE-502/UnsafeDeserialization.qhelp index 2c5afee586b1..1c1535857fca 100644 --- a/python/ql/src/Security/CWE-502/UnsafeDeserialization.qhelp +++ b/python/ql/src/Security/CWE-502/UnsafeDeserialization.qhelp @@ -16,6 +16,14 @@ may have unforeseen effects, such as the execution of arbitrary code. There are many different serialization frameworks. This query currently supports Pickle, Marshal and Yaml.

+

+Note that a deserialization method is only dangerous if it can instantiate +arbitrary classes. Serialization frameworks that use a schema to instantiate +only expected, predefined types are generally not tracked by this query. Such +frameworks are generally safe with respect to arbitrary-class-instantiation and +gadget-chain attacks when the schema is trusted and does not permit +user-controlled type resolution. +

From 4e47f7706dcea8509f6a870bbe889258c9baeb0a Mon Sep 17 00:00:00 2001 From: Owen Mansel-Chan Date: Fri, 8 May 2026 14:06:07 +0100 Subject: [PATCH 218/260] C#: Clarify that deserialization following a schema is safe --- .../CWE-502/UnsafeDeserialization.qhelp | 9 +++++++++ .../CWE-502/UnsafeDeserializationUntrustedInput.qhelp | 9 +++++++++ 2 files changed, 18 insertions(+) diff --git a/csharp/ql/src/Security Features/CWE-502/UnsafeDeserialization.qhelp b/csharp/ql/src/Security Features/CWE-502/UnsafeDeserialization.qhelp index 3c68b74a1d92..6daa28e2df78 100644 --- a/csharp/ql/src/Security Features/CWE-502/UnsafeDeserialization.qhelp +++ b/csharp/ql/src/Security Features/CWE-502/UnsafeDeserialization.qhelp @@ -7,6 +7,15 @@

Deserializing an object from untrusted input may result in security problems, such as denial of service or remote code execution.

+

+Note that a deserialization method is only dangerous if it can instantiate +arbitrary classes. Serialization frameworks that use a schema to instantiate +only expected, predefined types are generally not tracked by this query. Such +frameworks are generally safe with respect to arbitrary-class-instantiation and +gadget-chain attacks when the schema is trusted and does not permit +user-controlled type resolution. +

+ diff --git a/csharp/ql/src/Security Features/CWE-502/UnsafeDeserializationUntrustedInput.qhelp b/csharp/ql/src/Security Features/CWE-502/UnsafeDeserializationUntrustedInput.qhelp index 7c8781b15a17..26297f9c6bd0 100644 --- a/csharp/ql/src/Security Features/CWE-502/UnsafeDeserializationUntrustedInput.qhelp +++ b/csharp/ql/src/Security Features/CWE-502/UnsafeDeserializationUntrustedInput.qhelp @@ -7,6 +7,15 @@

Deserializing an object from untrusted input may result in security problems, such as denial of service or remote code execution.

+

+Note that a deserialization method is only dangerous if it can instantiate +arbitrary classes. Serialization frameworks that use a schema to instantiate +only expected, predefined types are generally not tracked by this query. Such +frameworks are generally safe with respect to arbitrary-class-instantiation and +gadget-chain attacks when the schema is trusted and does not permit +user-controlled type resolution. +

+ From ed9477aac93fb04a1cf989b96151721180cc214a Mon Sep 17 00:00:00 2001 From: Owen Mansel-Chan Date: Fri, 8 May 2026 14:06:16 +0100 Subject: [PATCH 219/260] Ruby: Clarify that deserialization following a schema is safe --- .../security/cwe-502/UnsafeDeserialization.qhelp | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/ruby/ql/src/queries/security/cwe-502/UnsafeDeserialization.qhelp b/ruby/ql/src/queries/security/cwe-502/UnsafeDeserialization.qhelp index b84c7dce0677..6c875f889941 100644 --- a/ruby/ql/src/queries/security/cwe-502/UnsafeDeserialization.qhelp +++ b/ruby/ql/src/queries/security/cwe-502/UnsafeDeserialization.qhelp @@ -7,6 +7,14 @@ Deserializing untrusted data using any method that allows the construction of arbitrary objects is easily exploitable and, in many cases, allows an attacker to execute arbitrary code.

+

+Note that a deserialization method is only dangerous if it can instantiate +arbitrary classes or objects. Serialization frameworks that use a schema to instantiate +only expected, predefined types are generally not tracked by this query. Such +frameworks are generally safe with respect to arbitrary-class-instantiation and +gadget-chain attacks when the schema is trusted and does not permit +user-controlled type resolution. +

@@ -31,7 +39,7 @@ safely be used. If deserializing an untrusted XML document using the ox gem, do not use parse_obj and load using the non-default :object mode. Instead use the load method in the default mode or better explicitly set a safe -mode such as :hash. +mode such as :hash.

From 93e05db394547c0e085baf6cfa299f4bbf9448d0 Mon Sep 17 00:00:00 2001 From: Owen Mansel-Chan Date: Fri, 8 May 2026 14:06:48 +0100 Subject: [PATCH 220/260] Python: remove doubles spaces from qhelp --- .../ql/src/Security/CWE-502/UnsafeDeserialization.qhelp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/python/ql/src/Security/CWE-502/UnsafeDeserialization.qhelp b/python/ql/src/Security/CWE-502/UnsafeDeserialization.qhelp index 1c1535857fca..08af6249f50a 100644 --- a/python/ql/src/Security/CWE-502/UnsafeDeserialization.qhelp +++ b/python/ql/src/Security/CWE-502/UnsafeDeserialization.qhelp @@ -5,15 +5,15 @@

Deserializing untrusted data using any deserialization framework that allows the construction of arbitrary serializable objects is easily exploitable -and in many cases allows an attacker to execute arbitrary code. Even before a +and in many cases allows an attacker to execute arbitrary code. Even before a deserialized object is returned to the caller of a deserialization method a lot of code may have been executed, including static initializers, constructors, -and finalizers. Automatic deserialization of fields means that an attacker may +and finalizers. Automatic deserialization of fields means that an attacker may craft a nested combination of objects on which the executed initialization code may have unforeseen effects, such as the execution of arbitrary code.

-There are many different serialization frameworks. This query currently +There are many different serialization frameworks. This query currently supports Pickle, Marshal and Yaml.

@@ -28,7 +28,7 @@ user-controlled type resolution.

-Avoid deserialization of untrusted data if at all possible. If the +Avoid deserialization of untrusted data if at all possible. If the architecture permits it then use other formats instead of serialized objects, for example JSON.

From a5ef036465492bf99e947f41c5fd47d4b87a9d2c Mon Sep 17 00:00:00 2001 From: Owen Mansel-Chan Date: Fri, 8 May 2026 14:18:54 +0100 Subject: [PATCH 221/260] Note that common standard library types can be vulnerable to gadget-chain attacks --- .../src/Security Features/CWE-502/UnsafeDeserialization.qhelp | 4 +++- .../CWE-502/UnsafeDeserializationUntrustedInput.qhelp | 4 +++- java/ql/src/Security/CWE/CWE-502/UnsafeDeserialization.qhelp | 4 +++- python/ql/src/Security/CWE-502/UnsafeDeserialization.qhelp | 4 +++- .../src/queries/security/cwe-502/UnsafeDeserialization.qhelp | 4 +++- 5 files changed, 15 insertions(+), 5 deletions(-) diff --git a/csharp/ql/src/Security Features/CWE-502/UnsafeDeserialization.qhelp b/csharp/ql/src/Security Features/CWE-502/UnsafeDeserialization.qhelp index 6daa28e2df78..4cc76003fbf8 100644 --- a/csharp/ql/src/Security Features/CWE-502/UnsafeDeserialization.qhelp +++ b/csharp/ql/src/Security Features/CWE-502/UnsafeDeserialization.qhelp @@ -13,7 +13,9 @@ arbitrary classes. Serialization frameworks that use a schema to instantiate only expected, predefined types are generally not tracked by this query. Such frameworks are generally safe with respect to arbitrary-class-instantiation and gadget-chain attacks when the schema is trusted and does not permit -user-controlled type resolution. +user-controlled type resolution. However, care must be taken to ensure the schema +strictly limits the allowed types. Permitting common standard library classes +can still leave the application vulnerable to gadget-chain attacks.

diff --git a/csharp/ql/src/Security Features/CWE-502/UnsafeDeserializationUntrustedInput.qhelp b/csharp/ql/src/Security Features/CWE-502/UnsafeDeserializationUntrustedInput.qhelp index 26297f9c6bd0..b2c123bed5c9 100644 --- a/csharp/ql/src/Security Features/CWE-502/UnsafeDeserializationUntrustedInput.qhelp +++ b/csharp/ql/src/Security Features/CWE-502/UnsafeDeserializationUntrustedInput.qhelp @@ -13,7 +13,9 @@ arbitrary classes. Serialization frameworks that use a schema to instantiate only expected, predefined types are generally not tracked by this query. Such frameworks are generally safe with respect to arbitrary-class-instantiation and gadget-chain attacks when the schema is trusted and does not permit -user-controlled type resolution. +user-controlled type resolution. However, care must be taken to ensure the schema +strictly limits the allowed types. Permitting common standard library classes +can still leave the application vulnerable to gadget-chain attacks.

diff --git a/java/ql/src/Security/CWE/CWE-502/UnsafeDeserialization.qhelp b/java/ql/src/Security/CWE/CWE-502/UnsafeDeserialization.qhelp index ff235670496c..a6d2d9936a5f 100644 --- a/java/ql/src/Security/CWE/CWE-502/UnsafeDeserialization.qhelp +++ b/java/ql/src/Security/CWE/CWE-502/UnsafeDeserialization.qhelp @@ -25,7 +25,9 @@ only expected, predefined types are generally not tracked by this query. For example, Apache Avro's deserialization methods follow a schema and are therefore generally safe with respect to arbitrary-class-instantiation and gadget-chain attacks when the schema is trusted and does not permit -user-controlled type resolution. +user-controlled type resolution. However, care must be taken to ensure the schema +strictly limits the allowed types. Permitting common standard library classes +can still leave the application vulnerable to gadget-chain attacks.

diff --git a/python/ql/src/Security/CWE-502/UnsafeDeserialization.qhelp b/python/ql/src/Security/CWE-502/UnsafeDeserialization.qhelp index 08af6249f50a..dea8a8794bb8 100644 --- a/python/ql/src/Security/CWE-502/UnsafeDeserialization.qhelp +++ b/python/ql/src/Security/CWE-502/UnsafeDeserialization.qhelp @@ -22,7 +22,9 @@ arbitrary classes. Serialization frameworks that use a schema to instantiate only expected, predefined types are generally not tracked by this query. Such frameworks are generally safe with respect to arbitrary-class-instantiation and gadget-chain attacks when the schema is trusted and does not permit -user-controlled type resolution. +user-controlled type resolution. However, care must be taken to ensure the schema +strictly limits the allowed types. Permitting common standard library classes +can still leave the application vulnerable to gadget-chain attacks.

diff --git a/ruby/ql/src/queries/security/cwe-502/UnsafeDeserialization.qhelp b/ruby/ql/src/queries/security/cwe-502/UnsafeDeserialization.qhelp index 6c875f889941..001f7ef1448c 100644 --- a/ruby/ql/src/queries/security/cwe-502/UnsafeDeserialization.qhelp +++ b/ruby/ql/src/queries/security/cwe-502/UnsafeDeserialization.qhelp @@ -13,7 +13,9 @@ arbitrary classes or objects. Serialization frameworks that use a schema to inst only expected, predefined types are generally not tracked by this query. Such frameworks are generally safe with respect to arbitrary-class-instantiation and gadget-chain attacks when the schema is trusted and does not permit -user-controlled type resolution. +user-controlled type resolution. However, care must be taken to ensure the schema +strictly limits the allowed types. Permitting common standard library classes +can still leave the application vulnerable to gadget-chain attacks.

From 9f6bd88171fd632fca92f4c4e8040973e056ea91 Mon Sep 17 00:00:00 2001 From: Taus Date: Fri, 8 May 2026 13:41:14 +0000 Subject: [PATCH 222/260] unified: vendor in tree-sitter-swift --- .../extractor/tree-sitter-swift/BUILD.bazel | 40 + .../extractor/tree-sitter-swift/Cargo.toml | 21 + unified/extractor/tree-sitter-swift/LICENSE | 21 + unified/extractor/tree-sitter-swift/README.md | 127 + .../extractor/tree-sitter-swift/binding.gyp | 44 + .../bindings/node/binding.cc | 20 + .../tree-sitter-swift/bindings/node/index.js | 7 + .../tree-sitter-swift/bindings/rust/build.rs | 19 + .../tree-sitter-swift/bindings/rust/lib.rs | 68 + .../extractor/tree-sitter-swift/grammar.js | 2109 + .../extractor/tree-sitter-swift/package.json | 68 + .../tree-sitter-swift/queries/folds.scm | 35 + .../tree-sitter-swift/queries/highlights.scm | 336 + .../tree-sitter-swift/queries/indents.scm | 123 + .../tree-sitter-swift/queries/injections.scm | 10 + .../tree-sitter-swift/queries/locals.scm | 23 + .../tree-sitter-swift/queries/outline.scm | 66 + .../tree-sitter-swift/queries/tags.scm | 51 + .../tree-sitter-swift/queries/textobjects.scm | 19 + .../tree-sitter-swift/src/grammar.json | 11386 + .../tree-sitter-swift/src/node-types.json | 30782 + .../extractor/tree-sitter-swift/src/parser.c | 552722 +++++++++++++++ .../extractor/tree-sitter-swift/src/scanner.c | 929 + .../tree-sitter-swift/src/tree_sitter/alloc.h | 54 + .../tree-sitter-swift/src/tree_sitter/array.h | 290 + .../src/tree_sitter/parser.h | 266 + .../tree-sitter-swift/tree-sitter.json | 39 + 27 files changed, 599675 insertions(+) create mode 100644 unified/extractor/tree-sitter-swift/BUILD.bazel create mode 100644 unified/extractor/tree-sitter-swift/Cargo.toml create mode 100644 unified/extractor/tree-sitter-swift/LICENSE create mode 100644 unified/extractor/tree-sitter-swift/README.md create mode 100644 unified/extractor/tree-sitter-swift/binding.gyp create mode 100644 unified/extractor/tree-sitter-swift/bindings/node/binding.cc create mode 100644 unified/extractor/tree-sitter-swift/bindings/node/index.js create mode 100644 unified/extractor/tree-sitter-swift/bindings/rust/build.rs create mode 100644 unified/extractor/tree-sitter-swift/bindings/rust/lib.rs create mode 100644 unified/extractor/tree-sitter-swift/grammar.js create mode 100644 unified/extractor/tree-sitter-swift/package.json create mode 100644 unified/extractor/tree-sitter-swift/queries/folds.scm create mode 100644 unified/extractor/tree-sitter-swift/queries/highlights.scm create mode 100644 unified/extractor/tree-sitter-swift/queries/indents.scm create mode 100644 unified/extractor/tree-sitter-swift/queries/injections.scm create mode 100644 unified/extractor/tree-sitter-swift/queries/locals.scm create mode 100644 unified/extractor/tree-sitter-swift/queries/outline.scm create mode 100644 unified/extractor/tree-sitter-swift/queries/tags.scm create mode 100644 unified/extractor/tree-sitter-swift/queries/textobjects.scm create mode 100644 unified/extractor/tree-sitter-swift/src/grammar.json create mode 100644 unified/extractor/tree-sitter-swift/src/node-types.json create mode 100644 unified/extractor/tree-sitter-swift/src/parser.c create mode 100644 unified/extractor/tree-sitter-swift/src/scanner.c create mode 100644 unified/extractor/tree-sitter-swift/src/tree_sitter/alloc.h create mode 100644 unified/extractor/tree-sitter-swift/src/tree_sitter/array.h create mode 100644 unified/extractor/tree-sitter-swift/src/tree_sitter/parser.h create mode 100644 unified/extractor/tree-sitter-swift/tree-sitter.json diff --git a/unified/extractor/tree-sitter-swift/BUILD.bazel b/unified/extractor/tree-sitter-swift/BUILD.bazel new file mode 100644 index 000000000000..7ba115d0c83a --- /dev/null +++ b/unified/extractor/tree-sitter-swift/BUILD.bazel @@ -0,0 +1,40 @@ +load("@rules_rust//cargo:defs.bzl", "cargo_build_script") +load("@rules_rust//rust:defs.bzl", "rust_library") +load("//misc/bazel/3rdparty/tree_sitter_extractors_deps:defs.bzl", "aliases", "all_crate_deps") + +package(default_visibility = ["//visibility:public"]) + +# This will run the build script from the root of the workspace, and +# collect the outputs. +cargo_build_script( + name = "tree-sitter-swift-build", + srcs = ["bindings/rust/build.rs"], + data = glob([ + "src/**", + ]), + deps = all_crate_deps( + build = True, + ), +) + +rust_library( + name = "tree-sitter-swift", + srcs = [ + "bindings/rust/lib.rs", + ], + aliases = aliases(), + compile_data = glob([ + "src/**", + "queries/**", + ]) + [ + "grammar.js", + ], + proc_macro_deps = all_crate_deps( + proc_macro = True, + ), + deps = [":tree-sitter-swift-build"] + all_crate_deps( + normal = True, + ), +) + +exports_files(["Cargo.toml"]) diff --git a/unified/extractor/tree-sitter-swift/Cargo.toml b/unified/extractor/tree-sitter-swift/Cargo.toml new file mode 100644 index 000000000000..e294c43436e4 --- /dev/null +++ b/unified/extractor/tree-sitter-swift/Cargo.toml @@ -0,0 +1,21 @@ +[package] +name = "tree-sitter-swift" +description = "Swift grammar for the tree-sitter parsing library (vendored copy for the unified extractor)" +version = "0.7.2" +keywords = ["incremental", "parsing", "swift"] +categories = ["parsing", "text-editors"] +repository = "https://github.com/alex-pinkus/tree-sitter-swift" +edition = "2024" +license = "MIT" + +build = "bindings/rust/build.rs" + +[lib] +path = "bindings/rust/lib.rs" + +# When updating these dependencies, run `misc/bazel/3rdparty/update_cargo_deps.sh` +[dependencies] +tree-sitter-language = "0.1" + +[build-dependencies] +cc = "1.2" diff --git a/unified/extractor/tree-sitter-swift/LICENSE b/unified/extractor/tree-sitter-swift/LICENSE new file mode 100644 index 000000000000..f158d7005311 --- /dev/null +++ b/unified/extractor/tree-sitter-swift/LICENSE @@ -0,0 +1,21 @@ +MIT License + +Copyright (c) 2021 alex-pinkus + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. diff --git a/unified/extractor/tree-sitter-swift/README.md b/unified/extractor/tree-sitter-swift/README.md new file mode 100644 index 000000000000..5b54f4b617f6 --- /dev/null +++ b/unified/extractor/tree-sitter-swift/README.md @@ -0,0 +1,127 @@ +![Parse rate badge](https://byob.yarr.is/alex-pinkus/tree-sitter-swift/parse_rate) +[![Crates.io badge](https://byob.yarr.is/alex-pinkus/tree-sitter-swift/crates_io_version)](https://crates.io/crates/tree-sitter-swift) +[![NPM badge](https://byob.yarr.is/alex-pinkus/tree-sitter-swift/npm_version)](https://www.npmjs.com/package/tree-sitter-swift) +[![Build](https://github.com/alex-pinkus/tree-sitter-swift/actions/workflows/top-repos.yml/badge.svg)](https://github.com/alex-pinkus/tree-sitter-swift/actions/workflows/top-repos.yml) + +# tree-sitter-swift + +This contains a [`tree-sitter`](https://tree-sitter.github.io/tree-sitter) grammar for the Swift programming language. + +## Getting started + +To use this parser to parse Swift code, you'll want to depend on either the Rust crate or the NPM package. + +### Rust + +To use the Rust crate, you'll add this to your `Cargo.toml`: + +``` +tree-sitter = "0.23.0" +tree-sitter-swift = "=0.7.0" +``` + +Then you can use a `tree-sitter` parser with the language declared here: + +``` +let mut parser = tree_sitter::Parser::new(); +parser.set_language(tree_sitter_swift::language())?; + +// ... + +let tree = parser.parse(&my_source_code, None) + .ok_or_else(|| /* error handling code */)?; +``` + +### Javascript + +To use this from NPM, you'll add similar dependencies to `package.json`: + +``` +"dependencies: { + "tree-sitter-swift": "0.7.0", + "tree-sitter": "^0.22.1" +} +``` + +Your usage of the parser will look like: + +``` +const Parser = require("tree-sitter"); +const Swift = require("tree-sitter-swift"); + +const parser = new Parser(); +parser.setLanguage(Swift); + +// ... + +const tree = parser.parse(mySourceCode); +``` + +### Editing the grammar + +With this package checked out, a common workflow for editing the grammar will look something like: + +1. Make a change to `grammar.ts`. +2. Run `npm install && npm test` to see whether the change has had impact on existing parsing behavior. The default + `npm test` target requires `valgrind` to be installed; if you do not have it installed, and do not wish to, you can + substitute `tree-sitter test` directly. +3. Run `tree-sitter parse` on some real Swift codebase and see whether (or where) it fails. +4. Use any failures to create new corpus test cases. + +## Contributions + +All contributions to this repository are welcome. + +If said contribution is to check generated files (e.g., `parser.c`) into the repository, be aware that your contribution will not be accepted. Make sure to read the [FAQ entry](https://github.com/alex-pinkus/tree-sitter-swift?tab=readme-ov-file#where-is-your-parserc) and the [prior](https://github.com/alex-pinkus/tree-sitter-swift/issues/362) [discussions](https://github.com/alex-pinkus/tree-sitter-swift/pull/315) and [compromises](https://github.com/alex-pinkus/tree-sitter-swift/issues/149) that have occurred already on this topic. + +## Using tree-sitter-swift in Web Assembly + +To use tree-sitter-swift as a language for the web bindings version tree-sitter, which will likely be a more modern version than the published node +module. [see](https://github.com/tree-sitter/tree-sitter/blob/master/lib/binding_web/README.md). Follow the instructions below + +1. Install the node modules `npm install web-tree-sitter tree-sitter-swift` +2. Run the tree-sitter cli to create the wasm bundle + ```sh + $ npx tree-sitter build-asm ./node_modules/tree-sitter + ``` +3. Boot tree-sitter wasm like this. + +```js +const Parser = require("web-tree-sitter"); +async function run() { + //needs to happen first + await Parser.init(); + //wait for the load of swift + const Swift = await Parser.Language.load("./tree-sitter-swift.wasm"); + + const parser = new Parser(); + parser.setLanguage(Swift); + + //Parse your swift code here. + const tree = parser.parse('print("Hello, World!")'); +} +//if you want to run this +run().then(console.log, console.error); +``` + +## Frequently asked questions + +### Where is your `parser.c`? + +This repository currently omits most of the code that is autogenerated during a build. This means, for instance, that +`grammar.json` and `parser.c` are both only available following a build. It also significantly reduces noise during +diffs. + +The side benefit of not checking in `parser.c` is that you can guarantee backwards compatibility. Parsers generated by +the tree-sitter CLI aren't always backwards compatible. If you need a parser, generate it yourself using the CLI; all +the information to do so is available in this package. By doing that, you'll also know for sure that your parser version +and your library version are compatible. + +If you need a `parser.c`, and you don't care about the tree-sitter version, but you don't have a local setup that would +allow you to obtain the parser, you can just download one from a recent workflow run in this package. To do so: + +- Go to the [GitHub actions page](https://github.com/alex-pinkus/tree-sitter-swift/actions) for this + repository. +- Click on the "Publish `grammar.json` and `parser.c`" action for the appropriate commit. +- Go down to `Artifacts` and click on `generated-parser-src`. All the relevant parser files will be available in your + download. diff --git a/unified/extractor/tree-sitter-swift/binding.gyp b/unified/extractor/tree-sitter-swift/binding.gyp new file mode 100644 index 000000000000..4d9270af7d47 --- /dev/null +++ b/unified/extractor/tree-sitter-swift/binding.gyp @@ -0,0 +1,44 @@ +{ + "targets": [ + { + "target_name": "tree_sitter_swift_binding", + "dependencies": [ + " + +typedef struct TSLanguage TSLanguage; + +extern "C" TSLanguage *tree_sitter_swift(); + +// "tree-sitter", "language" hashed with BLAKE2 +const napi_type_tag LANGUAGE_TYPE_TAG = { + 0x8AF2E5212AD58ABF, 0xD5006CAD83ABBA16 +}; + +Napi::Object Init(Napi::Env env, Napi::Object exports) { + exports["name"] = Napi::String::New(env, "swift"); + auto language = Napi::External::New(env, tree_sitter_swift()); + language.TypeTag(&LANGUAGE_TYPE_TAG); + exports["language"] = language; + return exports; +} + +NODE_API_MODULE(tree_sitter_swift_binding, Init) diff --git a/unified/extractor/tree-sitter-swift/bindings/node/index.js b/unified/extractor/tree-sitter-swift/bindings/node/index.js new file mode 100644 index 000000000000..6657bcf42dec --- /dev/null +++ b/unified/extractor/tree-sitter-swift/bindings/node/index.js @@ -0,0 +1,7 @@ +const root = require("path").join(__dirname, "..", ".."); + +module.exports = require("node-gyp-build")(root); + +try { + module.exports.nodeTypeInfo = require("../../src/node-types.json"); +} catch (_) {} diff --git a/unified/extractor/tree-sitter-swift/bindings/rust/build.rs b/unified/extractor/tree-sitter-swift/bindings/rust/build.rs new file mode 100644 index 000000000000..4ba2f43036a0 --- /dev/null +++ b/unified/extractor/tree-sitter-swift/bindings/rust/build.rs @@ -0,0 +1,19 @@ +fn main() { + let src_dir = std::path::Path::new("src"); + + let mut c_config = cc::Build::new(); + c_config.std("c11").include(src_dir); + + #[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()); + + let scanner_path = src_dir.join("scanner.c"); + c_config.file(&scanner_path); + println!("cargo:rerun-if-changed={}", scanner_path.to_str().unwrap()); + + c_config.compile("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 new file mode 100644 index 000000000000..87c3698a0e00 --- /dev/null +++ b/unified/extractor/tree-sitter-swift/bindings/rust/lib.rs @@ -0,0 +1,68 @@ +//! This crate provides Swift language support for the [tree-sitter][] parsing library. +//! +//! Typically, you will use the [language][language func] function to add this language to a +//! tree-sitter [Parser][], and then use the parser to parse some code: +//! +//! ``` +//! let code = r#" +//! "#; +//! let mut parser = tree_sitter::Parser::new(); +//! let language = tree_sitter_swift::LANGUAGE; +//! parser +//! .set_language(&language.into()) +//! .expect("Error loading Swift parser"); +//! let tree = parser.parse(code, None).unwrap(); +//! assert!(!tree.root_node().has_error()); +//! ``` +//! +//! [Language]: https://docs.rs/tree-sitter/*/tree_sitter/struct.Language.html +//! [language func]: fn.language.html +//! [Parser]: https://docs.rs/tree-sitter/*/tree_sitter/struct.Parser.html +//! [tree-sitter]: https://tree-sitter.github.io/ + +use tree_sitter_language::LanguageFn; + +unsafe extern "C" { + fn tree_sitter_swift() -> *const (); +} + +/// The tree-sitter [`LanguageFn`] for this grammar. +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 HIGHLIGHTS_QUERY: &str = include_str!("../../queries/highlights.scm"); +pub const INJECTIONS_QUERY: &str = include_str!("../../queries/injections.scm"); +pub const LOCALS_QUERY: &str = include_str!("../../queries/locals.scm"); +pub const TAGS_QUERY: &str = include_str!("../../queries/tags.scm"); + +#[cfg(test)] +mod tests { + #[test] + fn test_can_load_grammar() { + let mut parser = tree_sitter::Parser::new(); + parser + .set_language(&super::LANGUAGE.into()) + .expect("Error loading Swift parser"); + } + + #[test] + fn test_can_parse_basic_file() { + let mut parser = tree_sitter::Parser::new(); + parser + .set_language(&super::LANGUAGE.into()) + .expect("Error loading Swift parser"); + + let tree = parser + .parse("_ = \"Hello!\"\n", None) + .expect("Unable to parse!"); + + assert_eq!( + "(source_file (assignment target: (directly_assignable_expression (simple_identifier)) result: (line_string_literal text: (line_str_text))))", + tree.root_node().to_sexp(), + ); + } +} diff --git a/unified/extractor/tree-sitter-swift/grammar.js b/unified/extractor/tree-sitter-swift/grammar.js new file mode 100644 index 000000000000..5f4e85547ad4 --- /dev/null +++ b/unified/extractor/tree-sitter-swift/grammar.js @@ -0,0 +1,2109 @@ +"use strict"; +/* + * MIT License + * + * Copyright (c) 2021 alex-pinkus + * + * Permission is hereby granted, free of charge, to any person obtaining a copy + * of this software and associated documentation files (the "Software"), to deal + * in the Software without restriction, including without limitation the rights + * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + * copies of the Software, and to permit persons to whom the Software is + * furnished to do so, subject to the following conditions: + * + * The above copyright notice and this permission notice shall be included in all + * copies or substantial portions of the Software. + * + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE + * SOFTWARE. + */ +const PRECS = { + multiplication: 11, + addition: 10, + infix_operations: 9, + nil_coalescing: 8, + check: 7, + prefix_operations: 7, + comparison: 6, + postfix_operations: 6, + equality: 5, + conjunction: 4, + disjunction: 3, + block: 2, + loop: 1, + keypath: 1, + parameter_pack: 1, + control_transfer: 0, + as: -1, + tuple: -1, + if: -1, + switch: -1, + do: -1, + fully_open_range: -1, + range: -1, + navigation: -1, + expr: -1, + ty: -1, + call: -2, + ternary: -2, + try: -2, + call_suffix: -2, + range_suffix: -2, + ternary_binary_suffix: -2, + await: -2, + assignment: -3, + comment: -3, + lambda: -3, + regex: -4, +}; + +const DYNAMIC_PRECS = { + call: 1, +}; + +const DEC_DIGITS = token(sep1(/[0-9]+/, /_+/)); +const HEX_DIGITS = token(sep1(/[0-9a-fA-F]+/, /_+/)); +const OCT_DIGITS = token(sep1(/[0-7]+/, /_+/)); +const BIN_DIGITS = token(sep1(/[01]+/, /_+/)); +const REAL_EXPONENT = token(seq(/[eE]/, optional(/[+-]/), DEC_DIGITS)); +const HEX_REAL_EXPONENT = token(seq(/[pP]/, optional(/[+-]/), DEC_DIGITS)); + +var LEXICAL_IDENTIFIER; + +if (tree_sitter_version_supports_emoji()) { + LEXICAL_IDENTIFIER = + /[_\p{XID_Start}\p{Emoji}&&[^0-9#*]](\p{EMod}|\x{FE0F}\x{20E3}?)?([_\p{XID_Continue}\p{Emoji}\x{200D}](\p{EMod}|\x{FE0F}\x{20E3}?)?)*/; +} else { + LEXICAL_IDENTIFIER = /[_\p{XID_Start}][_\p{XID_Continue}]*/; +} + +module.exports = grammar({ + name: "swift", + conflicts: ($) => [ + // @Type(... could either be an annotation constructor invocation or an annotated expression + [$.attribute], + [$._attribute_argument], + // Is `foo { ... }` a constructor invocation or function invocation? + [$._simple_user_type, $._expression], + // To support nested types A.B not being interpreted as `(navigation_expression ... (type_identifier)) (navigation_suffix)` + [$.user_type], + // How to tell the difference between Foo.bar(with:and:), and Foo.bar(with: smth, and: other)? You need GLR + [$.value_argument], + // { (foo, bar) ... + [$._expression, $.lambda_parameter], + [$._primary_expression, $.lambda_parameter], + // (start: start, end: end) + [$._tuple_type_item_identifier, $.tuple_expression], + // After a `{` in a function or switch context, it's ambigous whether we're starting a set of local statements or + // applying some modifiers to a capture or pattern. + [$.modifiers], + // `+(...)` is ambigously either "call the function produced by a reference to the operator `+`" or "use the unary + // operator `+` on the result of the parenthetical expression." + [$._additive_operator, $._prefix_unary_operator], + [$._referenceable_operator, $._prefix_unary_operator], + // `{ [self, b, c] ...` could be a capture list or an array literal depending on what else happens. + [$.capture_list_item, $._expression], + [$.capture_list_item, $._expression, $._simple_user_type], + [$._primary_expression, $.capture_list_item], + // a ? b : c () could be calling c(), or it could be calling a function that's produced by the result of + // `(a ? b : c)`. We have a small hack to force it to be the former of these by intentionally introducing a + // conflict. + [$.call_suffix, $.expr_hack_at_ternary_binary_call_suffix], + // try {expression} is a bit magic and applies quite broadly: `try foo()` and `try foo { }` show that this is right + // associative, and `try foo ? bar() : baz` even more so. But it doesn't always win: something like + // `if try foo { } ...` should award its braces to the `if`. In order to make this actually happen, we need to parse + // all the options and pick the best one that doesn't error out. + [$.try_expression, $._unary_expression], + [$.try_expression, $._expression], + // await {expression} has the same special cases as `try`. + [$.await_expression, $._unary_expression], + [$.await_expression, $._expression], + // In a computed property, when you see an @attribute, it's not yet clear if that's going to be for a + // locally-declared class or a getter / setter specifier. + [ + $._local_property_declaration, + $._local_typealias_declaration, + $._local_function_declaration, + $._local_class_declaration, + $.computed_getter, + $.computed_modify, + $.computed_setter, + ], + // The `class` modifier is legal in many of the same positions that a class declaration itself would be. + [$._bodyless_function_declaration, $.property_modifier], + [$.init_declaration, $.property_modifier], + // Patterns, man + [$._navigable_type_expression, $._case_pattern], + [$._no_expr_pattern_already_bound, $._binding_pattern_no_expr], + + // On encountering a closure starting with `{ @Foo ...`, we don't yet know if that attribute applies to the closure + // type or to a declaration within the closure. What a mess! We just have to hope that if we keep going, only one of + // those will parse (because there will be an `in` or a `let`). + [ + $._lambda_type_declaration, + $._local_property_declaration, + $._local_typealias_declaration, + $._local_function_declaration, + $._local_class_declaration, + ], + + // We want `foo() { }` to be treated as one function call, but we _also_ want `if foo() { ... }` to be treated as a + // full if-statement. This means we have to treat it as a conflict rather than purely a left or right associative + // construct, and let the parser realize that the second expression won't parse properly with the `{ ... }` as a + // lambda. + [$.constructor_suffix], + [$.call_suffix], + + // `actor` is allowed to be an identifier, even though it is also a locally permitted declaration. If we encounter + // it, the only way to know what it's meant to be is to keep going. + [$._modifierless_class_declaration, $.property_modifier], + [$._fn_call_lambda_arguments], + + // `borrowing` and `consuming` are legal as identifiers, but are also legal modifiers + [$.parameter_modifiers], + + // These are keywords sometimes, but simple identifiers other times, and it just depends on the rest of their usage. + [$._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], + ], + extras: ($) => [ + $.comment, + $.multiline_comment, + /\s+/, // Whitespace + ], + externals: ($) => [ + // Comments and raw strings are parsed in a custom scanner because they require us to carry forward state to + // maintain symmetry. For instance, parsing a multiline comment requires us to increment a counter whenever we see + // `/*`, and decrement it whenever we see `*/`. A standard grammar would only be able to exit the comment at the + // first `*/` (like C does). Similarly, when you start a string with `##"`, you're required to include the same + // number of `#` symbols to end it. + $.multiline_comment, + $.raw_str_part, + $.raw_str_continuing_indicator, + $.raw_str_end_part, + // Because Swift doesn't have explicit semicolons, we also do some whitespace handling in a custom scanner. Line + // breaks are _sometimes_ meaningful as the end of a statement: try to write `let foo: Foo let bar: Bar`, for + // instance and the compiler will complain, but add either a newline or a semicolon and it's fine. We borrow the + // idea from the Kotlin grammar that a newline is sometimes a "semicolon". By including `\n` in both `_semi` and + // an anonymous `whitespace` extras, we _should_ be able to let the parser decide if a newline is meaningful. If the + // parser sees something like `foo.bar(1\n)`, it knows that a "semicolon" would not be valid there, so it parses + // that as whitespace. On the other hand, `let foo: Foo\n let bar: Bar` has a meaningful newline. + // Unfortunately, we can't simply stop at that. There are some expressions and statements that remain valid if you + // end them early, but are expected to be parsed across multiple lines. One particular nefarious example is a + // function declaration, where you might have something like `func foo
(args: A) -> Foo throws where A: Hashable`. + // This would still be a valid declaration even if it ended after the `)`, the `Foo`, or the `throws`, so a grammar + // that simply interprets a newline as "sometimes a semi" would parse those incorrectly. + // To solve that case, our custom scanner must do a bit of extra lookahead itself. If we're about to generate a + // `_semi`, we advance a bit further to see if the next non-whitespace token would be one of these other operators. + // If so, we ignore the `_semi` and just produce the operator; if not, we produce the `_semi` and let the rest of + // the grammar sort it out. This isn't perfect, but it works well enough most of the time. + $._implicit_semi, + $._explicit_semi, + // Every one of the below operators will suppress a `_semi` if we encounter it after a newline. + $._arrow_operator_custom, + $._dot_custom, + $._conjunction_operator_custom, + $._disjunction_operator_custom, + $._nil_coalescing_operator_custom, + $._eq_custom, + $._eq_eq_custom, + $._plus_then_ws, + $._minus_then_ws, + $._bang_custom, + $._throws_keyword, + $._rethrows_keyword, + $.default_keyword, + $.where_keyword, + $["else"], + $.catch_keyword, + $._as_custom, + $._as_quest_custom, + $._as_bang_custom, + $._async_keyword_custom, + $._custom_operator, + $._hash_symbol_custom, + $._directive_if, + $._directive_elseif, + $._directive_else, + $._directive_endif, + + // Fake operator that will never get triggered, but follows the sequence of characters for `try!`. Tracked by the + // custom scanner so that it can avoid triggering `$.bang` for that case. + $._fake_try_bang, + ], + inline: ($) => [$._locally_permitted_modifiers], + rules: { + //////////////////////////////// + // File Structure + //////////////////////////////// + source_file: ($) => + seq( + optional($.shebang_line), + optional( + seq( + $._top_level_statement, + repeat(seq($._semi, $._top_level_statement)), + optional($._semi) + ) + ) + ), + _semi: ($) => choice($._implicit_semi, $._explicit_semi), + shebang_line: ($) => seq($._hash_symbol, "!", /[^\r\n]*/), + //////////////////////////////// + // Lexical Structure - https://docs.swift.org/swift-book/ReferenceManual/LexicalStructure.html + //////////////////////////////// + comment: ($) => token(prec(PRECS.comment, seq("//", /.*/))), + // Identifiers + simple_identifier: ($) => + choice( + LEXICAL_IDENTIFIER, + /`[^\r\n` ]*`/, + /\$[0-9]+/, + token(seq("$", LEXICAL_IDENTIFIER)), + $._contextual_simple_identifier + ), + // Keywords that were added after they were already legal as identifiers. `tree-sitter` will prefer exact matches + // when parsing so unless we explicitly say that these are legal, the parser will interpret them as their keyword. + _contextual_simple_identifier: ($) => + choice( + "actor", + "async", + "each", + "lazy", + "repeat", + "package", + $._parameter_ownership_modifier + ), + identifier: ($) => sep1($.simple_identifier, $._dot), + // Literals + _basic_literal: ($) => + choice( + $.integer_literal, + $.hex_literal, + $.oct_literal, + $.bin_literal, + $.real_literal, + $.boolean_literal, + $._string_literal, + $.regex_literal, + "nil" + ), + real_literal: ($) => + token( + choice( + seq(DEC_DIGITS, REAL_EXPONENT), + seq(optional(DEC_DIGITS), ".", DEC_DIGITS, optional(REAL_EXPONENT)), + seq( + "0x", + HEX_DIGITS, + optional(seq(".", HEX_DIGITS)), + HEX_REAL_EXPONENT + ) + ) + ), + integer_literal: ($) => token(seq(optional(/[1-9]/), DEC_DIGITS)), + hex_literal: ($) => token(seq("0", /[xX]/, HEX_DIGITS)), + oct_literal: ($) => token(seq("0", /[oO]/, OCT_DIGITS)), + bin_literal: ($) => token(seq("0", /[bB]/, BIN_DIGITS)), + boolean_literal: ($) => choice("true", "false"), + // String literals + _string_literal: ($) => + choice( + $.line_string_literal, + $.multi_line_string_literal, + $.raw_string_literal + ), + line_string_literal: ($) => + seq( + '"', + repeat(choice(field("text", $._line_string_content), $._interpolation)), + '"' + ), + _line_string_content: ($) => choice($.line_str_text, $.str_escaped_char), + line_str_text: ($) => /[^\\"]+/, + str_escaped_char: ($) => + choice($._escaped_identifier, $._uni_character_literal), + _uni_character_literal: ($) => seq("\\", "u", /\{[0-9a-fA-F]+\}/), + multi_line_string_literal: ($) => + seq( + '"""', + repeat( + choice(field("text", $._multi_line_string_content), $._interpolation) + ), + '"""' + ), + raw_string_literal: ($) => + seq( + repeat( + seq( + field("text", $.raw_str_part), + field("interpolation", $.raw_str_interpolation), + optional($.raw_str_continuing_indicator) + ) + ), + field("text", $.raw_str_end_part) + ), + raw_str_interpolation: ($) => + seq($.raw_str_interpolation_start, $._interpolation_contents, ")"), + raw_str_interpolation_start: ($) => /\\#*\(/, + _multi_line_string_content: ($) => + choice($.multi_line_str_text, $.str_escaped_char, '"'), + _interpolation: ($) => seq("\\(", $._interpolation_contents, ")"), + _interpolation_contents: ($) => + sep1Opt( + field( + "interpolation", + alias($.value_argument, $.interpolated_expression) + ), + "," + ), + _escaped_identifier: ($) => /\\[0\\tnr"'\n]/, + multi_line_str_text: ($) => /[^\\"]+/, + // Based on https://gitlab.com/woolsweater/tree-sitter-swifter/-/blob/3d47c85bd47ce54cdf2023a9c0e01eb90adfcc1d/grammar.js#L1019 + // But required modifications to hit all of the cases in SE-354 + regex_literal: ($) => + choice( + $._extended_regex_literal, + $._multiline_regex_literal, + $._oneline_regex_literal + ), + + _extended_regex_literal: ($) => + seq($._hash_symbol, /\/((\/[^#])|[^\n])+\/#/), + + _multiline_regex_literal: ($) => + seq($._hash_symbol, /\/\n/, /(\/[^#]|[^/])*?\n\/#/), + + _oneline_regex_literal: ($) => + token( + prec( + PRECS.regex, + seq( + "/", + token.immediate(/[^ \t\n]?[^/\n]*[^ \t\n/]/), + token.immediate("/") + ) + ) + ), + //////////////////////////////// + // Types - https://docs.swift.org/swift-book/ReferenceManual/Types.html + //////////////////////////////// + type_annotation: ($) => + seq(":", field("type", $._possibly_implicitly_unwrapped_type)), + _possibly_implicitly_unwrapped_type: ($) => + seq($._type, optional(token.immediate("!"))), + _type: ($) => + prec.right( + PRECS.ty, + seq(optional($.type_modifiers), field("name", $._unannotated_type)) + ), + _unannotated_type: ($) => + prec.right( + PRECS.ty, + choice( + $.user_type, + $.tuple_type, + $.function_type, + $.array_type, + $.dictionary_type, + $.optional_type, + $.metatype, + $.opaque_type, + $.existential_type, + $.protocol_composition_type, + $.type_parameter_pack, + $.type_pack_expansion, + $.suppressed_constraint + ) + ), + // The grammar just calls this whole thing a `type-identifier` but that's a bit confusing. + user_type: ($) => sep1($._simple_user_type, $._dot), + _simple_user_type: ($) => + prec.right( + PRECS.ty, + seq( + alias($.simple_identifier, $.type_identifier), + optional($.type_arguments) + ) + ), + tuple_type: ($) => + choice( + seq( + "(", + optional(sep1Opt(field("element", $.tuple_type_item), ",")), + ")" + ), + alias($._parenthesized_type, $.tuple_type_item) + ), + tuple_type_item: ($) => + prec( + PRECS.expr, + seq( + optional($._tuple_type_item_identifier), + optional($.parameter_modifiers), + field("type", $._type) + ) + ), + _tuple_type_item_identifier: ($) => + prec( + PRECS.expr, + seq( + optional($.wildcard_pattern), + field("name", $.simple_identifier), + ":" + ) + ), + function_type: ($) => + seq( + field("params", choice($.tuple_type, $._unannotated_type)), + optional($._async_keyword), + optional(choice($.throws_clause, $.throws)), + $._arrow_operator, + field("return_type", $._type) + ), + array_type: ($) => seq("[", field("element", $._type), "]"), + dictionary_type: ($) => + seq("[", field("key", $._type), ":", field("value", $._type), "]"), + optional_type: ($) => + prec.left( + seq( + field( + "wrapped", + choice($.user_type, $.tuple_type, $.array_type, $.dictionary_type) + ), + repeat1(alias($._immediate_quest, "?")) + ) + ), + metatype: ($) => seq($._unannotated_type, ".", choice("Type", "Protocol")), + _quest: ($) => "?", + _immediate_quest: ($) => token.immediate("?"), + opaque_type: ($) => prec.right(seq("some", $._unannotated_type)), + existential_type: ($) => prec.right(seq("any", $._unannotated_type)), + type_parameter_pack: ($) => prec.left(seq("each", $._unannotated_type)), + type_pack_expansion: ($) => prec.left(seq("repeat", $._unannotated_type)), + protocol_composition_type: ($) => + prec.left( + seq( + $._unannotated_type, + repeat1(seq("&", prec.right($._unannotated_type))) + ) + ), + suppressed_constraint: ($) => + prec.right( + seq( + "~", + field("suppressed", alias($.simple_identifier, $.type_identifier)) + ) + ), + //////////////////////////////// + // Expressions - https://docs.swift.org/swift-book/ReferenceManual/Expressions.html + //////////////////////////////// + _expression: ($) => + prec( + PRECS.expr, + choice( + $.simple_identifier, + $._unary_expression, + $._binary_expression, + $.ternary_expression, + $._primary_expression, + $.if_statement, + $.switch_statement, + $.assignment, + $.value_parameter_pack, + $.value_pack_expansion, + seq($._expression, alias($._immediate_quest, "?")) + ) + ), + // Unary expressions + _unary_expression: ($) => + choice( + $.postfix_expression, + $.call_expression, + $.macro_invocation, + $.constructor_expression, + $.navigation_expression, + $.prefix_expression, + $.as_expression, + $.selector_expression, + $.open_start_range_expression, + $.open_end_range_expression, + $.directive, + $.diagnostic + ), + postfix_expression: ($) => + prec.left( + PRECS.postfix_operations, + seq( + field("target", $._expression), + field("operation", $._postfix_unary_operator) + ) + ), + constructor_expression: ($) => + prec( + PRECS.call, + seq( + field( + "constructed_type", + choice($.array_type, $.dictionary_type, $.user_type) + ), + $.constructor_suffix + ) + ), + _parenthesized_type: ($) => + seq( + "(", + field( + "element", + choice($.opaque_type, $.existential_type, $.dictionary_type) + ), + ")" + ), + navigation_expression: ($) => + prec.left( + PRECS.navigation, + seq( + field( + "target", + choice( + $._navigable_type_expression, + $._expression, + $._parenthesized_type + ) + ), + field("suffix", $.navigation_suffix) + ) + ), + _navigable_type_expression: ($) => + choice($.user_type, $.array_type, $.dictionary_type), + open_start_range_expression: ($) => + prec.right( + PRECS.range, + seq( + $._range_operator, + prec.right(PRECS.range_suffix, field("end", $._expression)) + ) + ), + _range_operator: ($) => + choice($._open_ended_range_operator, $._three_dot_operator), + open_end_range_expression: ($) => + prec.right( + PRECS.range, + seq(field("start", $._expression), $._three_dot_operator) + ), + prefix_expression: ($) => + prec.left( + PRECS.prefix_operations, + seq( + field("operation", $._prefix_unary_operator), + field( + "target", + choice( + $._expression, + alias(choice("async", "if", "switch"), $._expression) + ) + ) + ) + ), + as_expression: ($) => + prec.left( + PRECS.as, + seq(field("expr", $._expression), $.as_operator, field("type", $._type)) + ), + selector_expression: ($) => + seq( + $._hash_symbol, + "selector", + "(", + optional(choice("getter:", "setter:")), + $._expression, + ")" + ), + // Binary expressions + _binary_expression: ($) => + choice( + $.multiplicative_expression, + $.additive_expression, + $.range_expression, + $.infix_expression, + $.nil_coalescing_expression, + $.check_expression, + $.equality_expression, + $.comparison_expression, + $.conjunction_expression, + $.disjunction_expression, + $.bitwise_operation + ), + multiplicative_expression: ($) => + prec.left( + PRECS.multiplication, + seq( + field("lhs", $._expression), + field("op", $._multiplicative_operator), + field("rhs", $._expression) + ) + ), + additive_expression: ($) => + prec.left( + PRECS.addition, + seq( + field("lhs", $._expression), + field("op", $._additive_operator), + field("rhs", $._expression) + ) + ), + range_expression: ($) => + prec.right( + PRECS.range, + seq( + field("start", $._expression), + field("op", $._range_operator), + field("end", $._expr_hack_at_ternary_binary_suffix) + ) + ), + infix_expression: ($) => + prec.left( + PRECS.infix_operations, + seq( + field("lhs", $._expression), + field("op", $.custom_operator), + field("rhs", $._expr_hack_at_ternary_binary_suffix) + ) + ), + nil_coalescing_expression: ($) => + prec.right( + PRECS.nil_coalescing, + seq( + field("value", $._expression), + $._nil_coalescing_operator, + field("if_nil", $._expr_hack_at_ternary_binary_suffix) + ) + ), + check_expression: ($) => + prec.left( + PRECS.check, + seq( + field("target", $._expression), + field("op", $._is_operator), + field("type", $._type) + ) + ), + comparison_expression: ($) => + prec.left( + seq( + field("lhs", $._expression), + field("op", $._comparison_operator), + field("rhs", $._expr_hack_at_ternary_binary_suffix) + ) + ), + equality_expression: ($) => + prec.left( + PRECS.equality, + seq( + field("lhs", $._expression), + field("op", $._equality_operator), + field("rhs", $._expr_hack_at_ternary_binary_suffix) + ) + ), + conjunction_expression: ($) => + prec.left( + PRECS.conjunction, + seq( + field("lhs", $._expression), + field("op", $._conjunction_operator), + field("rhs", $._expr_hack_at_ternary_binary_suffix) + ) + ), + disjunction_expression: ($) => + prec.left( + PRECS.disjunction, + seq( + field("lhs", $._expression), + field("op", $._disjunction_operator), + field("rhs", $._expr_hack_at_ternary_binary_suffix) + ) + ), + bitwise_operation: ($) => + prec.left( + seq( + field("lhs", $._expression), + field("op", $._bitwise_binary_operator), + field("rhs", $._expr_hack_at_ternary_binary_suffix) + ) + ), + custom_operator: ($) => choice(token(/[\/]+[*]+/), $._custom_operator), + // Suffixes + navigation_suffix: ($) => + seq( + $._dot, + field("suffix", choice($.simple_identifier, $.integer_literal)) + ), + call_suffix: ($) => + prec( + PRECS.call_suffix, + choice( + $.value_arguments, + prec.dynamic(-1, $._fn_call_lambda_arguments), // Prefer to treat `foo() { }` as one call not two + seq($.value_arguments, $._fn_call_lambda_arguments) + ) + ), + constructor_suffix: ($) => + prec( + PRECS.call_suffix, + choice( + alias($._constructor_value_arguments, $.value_arguments), + prec.dynamic(-1, $._fn_call_lambda_arguments), // As above + seq( + alias($._constructor_value_arguments, $.value_arguments), + $._fn_call_lambda_arguments + ) + ) + ), + _constructor_value_arguments: ($) => + seq("(", optional(sep1Opt($.value_argument, ",")), ")"), + _fn_call_lambda_arguments: ($) => + sep1($.lambda_literal, seq(field("name", $.simple_identifier), ":")), + type_arguments: ($) => prec.left(seq("<", sep1Opt($._type, ","), ">")), + value_arguments: ($) => + seq( + choice( + seq("(", optional(sep1Opt($.value_argument, ",")), ")"), + seq("[", optional(sep1Opt($.value_argument, ",")), "]") + ) + ), + value_argument_label: ($) => + prec.left( + choice( + $.simple_identifier, + // We don't rely on $._contextual_simple_identifier here because + // these don't usually fall into that category. + alias("if", $.simple_identifier), + alias("switch", $.simple_identifier) + ) + ), + value_argument: ($) => + prec.left( + seq( + optional($.type_modifiers), + choice( + repeat1( + seq(field("reference_specifier", $.value_argument_label), ":") + ), + seq( + optional(seq(field("name", $.value_argument_label), ":")), + field("value", $._expression) + ) + ) + ) + ), + try_expression: ($) => + prec.right( + PRECS["try"], + seq( + $.try_operator, + field( + "expr", + choice( + // Prefer direct calls, e.g. `try foo()`, over indirect like `try a ? b() : c`. This allows us to have + // left associativity for the direct calls, which is technically wrong but is the only way to resolve the + // ambiguity of `if foo { ... }` in the correct direction. + prec.right(-2, $._expression), + prec.left(0, $._binary_expression), + prec.left(0, $.call_expression), + // Similarly special case the ternary expression, where `try` may come earlier than it is actually needed. + // When the parser just encounters some identifier after a `try`, it should prefer the `call_expression` (so + // this should be lower in priority than that), but when we encounter an ambiguous expression that might be + // either `try (foo() ? ...)` or `(try foo()) ? ...`, we should prefer the former. We accomplish that by + // giving it a _static precedence_ of -1 but a _dynamic precedence_ of 1. + prec.dynamic(1, prec.left(-1, $.ternary_expression)) + ) + ) + ) + ), + await_expression: ($) => + prec.right( + PRECS.await, + seq( + $._await_operator, + field( + "expr", + choice( + // Prefer direct calls over indirect (same as with `try`). + prec.right(-2, $._expression), + prec.left(0, $.call_expression), + // Special case ternary to `await` the whole thing (same as with `try`). + prec.dynamic(1, prec.left(-1, $.ternary_expression)) + ) + ) + ) + ), + _await_operator: ($) => alias("await", "await"), + ternary_expression: ($) => + prec.right( + PRECS.ternary, + seq( + field("condition", $._expression), + $._quest, + field("if_true", $._expression), + ":", + field("if_false", $._expr_hack_at_ternary_binary_suffix) + ) + ), + _expr_hack_at_ternary_binary_suffix: ($) => + prec.left( + PRECS.ternary_binary_suffix, + choice( + $._expression, + alias($.expr_hack_at_ternary_binary_call, $.call_expression) + ) + ), + expr_hack_at_ternary_binary_call: ($) => + seq( + $._expression, + alias($.expr_hack_at_ternary_binary_call_suffix, $.call_suffix) + ), + expr_hack_at_ternary_binary_call_suffix: ($) => + prec(PRECS.call_suffix, $.value_arguments), + call_expression: ($) => + prec( + PRECS.call, + prec.dynamic(DYNAMIC_PRECS.call, seq($._expression, $.call_suffix)) + ), + macro_invocation: ($) => + prec( + PRECS.call, + prec.dynamic( + DYNAMIC_PRECS.call, + seq( + $._hash_symbol, + $.simple_identifier, + optional($.type_parameters), + $.call_suffix + ) + ) + ), + _primary_expression: ($) => + choice( + $.tuple_expression, + $._basic_literal, + $.lambda_literal, + $.special_literal, + $.playground_literal, + $.array_literal, + $.dictionary_literal, + $.self_expression, + $.super_expression, + $.try_expression, + $.await_expression, + $._referenceable_operator, + $.key_path_expression, + $.key_path_string_expression, + prec.right( + PRECS.fully_open_range, + alias($._three_dot_operator, $.fully_open_range) + ) + ), + tuple_expression: ($) => + prec.right( + PRECS.tuple, + seq( + "(", + sep1Opt( + seq( + optional(seq(field("name", $.simple_identifier), ":")), + field("value", $._expression) + ), + "," + ), + ")" + ) + ), + array_literal: ($) => + seq("[", optional(sep1Opt(field("element", $._expression), ",")), "]"), + dictionary_literal: ($) => + seq( + "[", + choice(":", sep1Opt($._dictionary_literal_item, ",")), + optional(","), + "]" + ), + _dictionary_literal_item: ($) => + seq(field("key", $._expression), ":", field("value", $._expression)), + special_literal: ($) => + seq( + $._hash_symbol, + choice( + "file", + "fileID", + "filePath", + "line", + "column", + "function", + "dsohandle" + ) + ), + playground_literal: ($) => + seq( + $._hash_symbol, + choice("colorLiteral", "fileLiteral", "imageLiteral"), + "(", + sep1Opt(seq($.simple_identifier, ":", $._expression), ","), + ")" + ), + lambda_literal: ($) => + prec.left( + PRECS.lambda, + seq( + choice("{", "^{"), + optional($._lambda_type_declaration), + optional($.statements), + "}" + ) + ), + _lambda_type_declaration: ($) => + seq( + repeat($.attribute), + prec(PRECS.expr, optional(field("captures", $.capture_list))), + optional(field("type", $.lambda_function_type)), + "in" + ), + capture_list: ($) => seq("[", sep1Opt($.capture_list_item, ","), "]"), + capture_list_item: ($) => + choice( + field("name", $.self_expression), + prec( + PRECS.expr, + seq( + optional($.ownership_modifier), + field("name", $.simple_identifier), + optional(seq($._equal_sign, field("value", $._expression))) + ) + ) + ), + lambda_function_type: ($) => + prec( + PRECS.expr, + seq( + choice( + $.lambda_function_type_parameters, + seq("(", optional($.lambda_function_type_parameters), ")") + ), + optional($._async_keyword), + optional(choice($.throws_clause, $.throws)), + optional( + seq( + $._arrow_operator, + field("return_type", $._possibly_implicitly_unwrapped_type) + ) + ) + ) + ), + lambda_function_type_parameters: ($) => sep1Opt($.lambda_parameter, ","), + lambda_parameter: ($) => + seq( + choice( + $.self_expression, + prec(PRECS.expr, field("name", $.simple_identifier)), + prec( + PRECS.expr, + seq( + optional(field("external_name", $.simple_identifier)), + field("name", $.simple_identifier), + ":", + optional($.parameter_modifiers), + field("type", $._possibly_implicitly_unwrapped_type) + ) + ) + ) + ), + self_expression: ($) => "self", + super_expression: ($) => seq("super"), + _else_options: ($) => choice($._block, $.if_statement), + if_statement: ($) => + prec.right( + PRECS["if"], + seq( + "if", + sep1(field("condition", $._if_condition_sequence_item), ","), + $._block, + optional(seq($["else"], $._else_options)) + ) + ), + _if_condition_sequence_item: ($) => + choice($._if_let_binding, $._expression, $.availability_condition), + _if_let_binding: ($) => + seq( + $._direct_or_indirect_binding, + optional(seq($._equal_sign, $._expression)), + optional($.where_clause) + ), + guard_statement: ($) => + prec.right( + PRECS["if"], + seq( + "guard", + sep1(field("condition", $._if_condition_sequence_item), ","), + $["else"], + $._block + ) + ), + switch_statement: ($) => + prec.right( + PRECS["switch"], + seq( + "switch", + field("expr", $._expression), + "{", + repeat($.switch_entry), + "}" + ) + ), + switch_entry: ($) => + seq( + optional($.modifiers), + choice( + seq( + "case", + seq( + $.switch_pattern, + optional(seq($.where_keyword, $._expression)) + ), + repeat(seq(",", $.switch_pattern)) + ), + $.default_keyword + ), + ":", + $.statements, + optional("fallthrough") + ), + switch_pattern: ($) => alias($._binding_pattern_with_expr, $.pattern), + do_statement: ($) => + prec.right(PRECS["do"], seq("do", $._block, repeat($.catch_block))), + catch_block: ($) => + seq( + $.catch_keyword, + field("error", optional(alias($._binding_pattern_no_expr, $.pattern))), + optional($.where_clause), + $._block + ), + where_clause: ($) => prec.left(seq($.where_keyword, $._expression)), + key_path_expression: ($) => + prec.right( + PRECS.keypath, + seq( + "\\", + optional( + choice($._simple_user_type, $.array_type, $.dictionary_type) + ), + repeat(seq(".", $._key_path_component)) + ) + ), + key_path_string_expression: ($) => + prec.left(seq($._hash_symbol, "keyPath", "(", $._expression, ")")), + _key_path_component: ($) => + prec.left( + choice( + seq($.simple_identifier, repeat($._key_path_postfixes)), + repeat1($._key_path_postfixes) + ) + ), + _key_path_postfixes: ($) => + choice( + "?", + $.bang, + "self", + seq("[", optional(sep1($.value_argument, ",")), "]") + ), + try_operator: ($) => + prec.right( + seq("try", choice(optional($._try_operator_type), $._fake_try_bang)) + ), + _try_operator_type: ($) => + choice(token.immediate("!"), token.immediate("?")), + _assignment_and_operator: ($) => + choice("+=", "-=", "*=", "/=", "%=", $._equal_sign), + _equality_operator: ($) => choice("!=", "!==", $._eq_eq, "==="), + _comparison_operator: ($) => choice("<", ">", "<=", ">="), + _three_dot_operator: ($) => alias("...", "..."), // Weird alias to satisfy highlight queries + _open_ended_range_operator: ($) => alias("..<", "..<"), + _is_operator: ($) => "is", + _additive_operator: ($) => + choice( + alias($._plus_then_ws, "+"), + alias($._minus_then_ws, "-"), + "+", + "-" + ), + // The `/` operator conflicts with a regex literal (which itself appears to conflict with a + // comment, for some reason), so we must give it equivalent token precedence. + _multiplicative_operator: ($) => + choice("*", alias(token(prec(PRECS.regex, "/")), "/"), "%"), + as_operator: ($) => choice($._as, $._as_quest, $._as_bang), + _prefix_unary_operator: ($) => + prec.right( + choice( + "++", + "--", + "-", + "+", + $.bang, + "&", + "~", + $._dot, + $.custom_operator + ) + ), + _bitwise_binary_operator: ($) => choice("&", "|", "^", "<<", ">>"), + _postfix_unary_operator: ($) => choice("++", "--", $.bang), + directly_assignable_expression: ($) => $._expression, + + //////////////////////////////// + // Statements - https://docs.swift.org/swift-book/ReferenceManual/Statements.html + //////////////////////////////// + statements: ($) => + prec.left( + // Left precedence is required in switch statements + seq( + $._local_statement, + repeat(seq($._semi, $._local_statement)), + optional($._semi) + ) + ), + _local_statement: ($) => + choice( + $._expression, + $._local_declaration, + $._labeled_statement, + $.control_transfer_statement + ), + _top_level_statement: ($) => + choice( + $._expression, + $._global_declaration, + $._labeled_statement, + $._throw_statement + ), + _block: ($) => prec(PRECS.block, seq("{", optional($.statements), "}")), + _labeled_statement: ($) => + seq( + optional($.statement_label), + choice( + $.for_statement, + $.while_statement, + $.repeat_while_statement, + $.do_statement, + $.if_statement, + $.guard_statement, + $.switch_statement + ) + ), + statement_label: ($) => token(/[a-zA-Z_][a-zA-Z_0-9]*:/), + for_statement: ($) => + prec( + PRECS.loop, + seq( + "for", + optional($.try_operator), + optional($._await_operator), + field("item", alias($._binding_pattern_no_expr, $.pattern)), + optional($.type_annotation), + "in", + field("collection", $._for_statement_collection), + optional($.where_clause), + $._block + ) + ), + _for_statement_collection: ($) => + // If this expression has "await", this triggers some special-cased logic to prefer function calls. We prefer + // the opposite, though, since function calls may contain trailing code blocks, which are undesirable here. + // + // To fix that, we simply undo the special casing by defining our own `await_expression`. + choice($._expression, alias($.for_statement_await, $.await_expression)), + for_statement_await: ($) => seq($._await_operator, $._expression), + + while_statement: ($) => + prec( + PRECS.loop, + seq( + "while", + sep1(field("condition", $._if_condition_sequence_item), ","), + "{", + optional($.statements), + "}" + ) + ), + repeat_while_statement: ($) => + prec( + PRECS.loop, + seq( + "repeat", + "{", + optional($.statements), + "}", + // Make sure we make it to the `while` before assuming this is a parameter pack. + repeat($._implicit_semi), + "while", + sep1(field("condition", $._if_condition_sequence_item), ",") + ) + ), + control_transfer_statement: ($) => + choice( + prec.right(PRECS.control_transfer, $._throw_statement), + prec.right( + PRECS.control_transfer, + seq( + $._optionally_valueful_control_keyword, + field("result", optional($._expression)) + ) + ) + ), + _throw_statement: ($) => seq($.throw_keyword, $._expression), + throw_keyword: ($) => "throw", + _optionally_valueful_control_keyword: ($) => + choice("return", "continue", "break", "yield"), + assignment: ($) => + prec.left( + PRECS.assignment, + seq( + field("target", $.directly_assignable_expression), + field("operator", $._assignment_and_operator), + field("result", $._expression) + ) + ), + value_parameter_pack: ($) => + prec.left(PRECS.parameter_pack, seq("each", $._expression)), + value_pack_expansion: ($) => + prec.left(PRECS.parameter_pack, seq("repeat", $._expression)), + availability_condition: ($) => + seq( + $._hash_symbol, + choice("available", "unavailable"), + "(", + sep1Opt($._availability_argument, ","), + ")" + ), + _availability_argument: ($) => + choice(seq($.identifier, sep1($.integer_literal, ".")), "*"), + //////////////////////////////// + // Declarations - https://docs.swift.org/swift-book/ReferenceManual/Declarations.html + //////////////////////////////// + _global_declaration: ($) => + choice( + $.import_declaration, + $.property_declaration, + $.typealias_declaration, + $.function_declaration, + $.init_declaration, + $.class_declaration, + $.protocol_declaration, + $.operator_declaration, + $.precedence_group_declaration, + $.associatedtype_declaration, + $.macro_declaration + ), + _type_level_declaration: ($) => + choice( + $.import_declaration, + $.property_declaration, + $.typealias_declaration, + $.function_declaration, + $.init_declaration, + $.class_declaration, + $.protocol_declaration, + $.deinit_declaration, + $.subscript_declaration, + $.operator_declaration, + $.precedence_group_declaration, + $.associatedtype_declaration + ), + _local_declaration: ($) => + choice( + alias($._local_property_declaration, $.property_declaration), + alias($._local_typealias_declaration, $.typealias_declaration), + alias($._local_function_declaration, $.function_declaration), + alias($._local_class_declaration, $.class_declaration) + ), + _local_property_declaration: ($) => + seq( + optional($._locally_permitted_modifiers), + $._modifierless_property_declaration + ), + _local_typealias_declaration: ($) => + seq( + optional($._locally_permitted_modifiers), + $._modifierless_typealias_declaration + ), + _local_function_declaration: ($) => + seq( + optional($._locally_permitted_modifiers), + $._modifierless_function_declaration + ), + _local_class_declaration: ($) => + seq( + optional($._locally_permitted_modifiers), + $._modifierless_class_declaration + ), + import_declaration: ($) => + seq( + optional($.modifiers), + "import", + optional($._import_kind), + $.identifier + ), + _import_kind: ($) => + choice( + "typealias", + "struct", + "class", + "enum", + "protocol", + "let", + "var", + "func" + ), + protocol_property_declaration: ($) => + prec.right( + seq( + optional($.modifiers), + field("name", alias($._binding_kind_and_pattern, $.pattern)), + optional($.type_annotation), + optional($.type_constraints), + $.protocol_property_requirements + ) + ), + protocol_property_requirements: ($) => + seq("{", repeat(choice($.getter_specifier, $.setter_specifier)), "}"), + property_declaration: ($) => + seq(optional($.modifiers), $._modifierless_property_declaration), + _modifierless_property_declaration: ($) => + prec.right( + seq( + $._possibly_async_binding_pattern_kind, + sep1($._single_modifierless_property_declaration, ",") + ) + ), + _single_modifierless_property_declaration: ($) => + prec.left( + seq( + field("name", alias($._no_expr_pattern_already_bound, $.pattern)), + optional($.type_annotation), + optional($.type_constraints), + optional( + choice( + $._expression_with_willset_didset, + $._expression_without_willset_didset, + $.willset_didset_block, + field("computed_value", $.computed_property) + ) + ) + ) + ), + _expression_with_willset_didset: ($) => + prec.dynamic( + 1, + seq( + $._equal_sign, + field("value", $._expression), + $.willset_didset_block + ) + ), + _expression_without_willset_didset: ($) => + seq($._equal_sign, field("value", $._expression)), + willset_didset_block: ($) => + choice( + seq("{", $.willset_clause, optional($.didset_clause), "}"), + seq("{", $.didset_clause, optional($.willset_clause), "}") + ), + willset_clause: ($) => + seq( + optional($.modifiers), + "willSet", + optional(seq("(", $.simple_identifier, ")")), + $._block + ), + didset_clause: ($) => + seq( + optional($.modifiers), + "didSet", + optional(seq("(", $.simple_identifier, ")")), + $._block + ), + typealias_declaration: ($) => + seq(optional($.modifiers), $._modifierless_typealias_declaration), + _modifierless_typealias_declaration: ($) => + seq( + "typealias", + field("name", alias($.simple_identifier, $.type_identifier)), + optional($.type_parameters), + $._equal_sign, + field("value", $._type) + ), + function_declaration: ($) => + prec.right( + seq($._bodyless_function_declaration, field("body", $.function_body)) + ), + _modifierless_function_declaration: ($) => + prec.right( + seq( + $._modifierless_function_declaration_no_body, + field("body", $.function_body) + ) + ), + _bodyless_function_declaration: ($) => + seq( + optional($.modifiers), + optional("class"), // XXX: This should be possible in non-last position, but that creates parsing ambiguity + $._modifierless_function_declaration_no_body + ), + _modifierless_function_declaration_no_body: ($) => + prec.right( + seq( + $._non_constructor_function_decl, + optional($.type_parameters), + $._function_value_parameters, + optional($._async_keyword), + optional(choice($.throws_clause, $.throws)), + optional( + seq( + $._arrow_operator, + field("return_type", $._possibly_implicitly_unwrapped_type) + ) + ), + optional($.type_constraints) + ) + ), + function_body: ($) => $._block, + macro_declaration: ($) => + seq( + $._macro_head, + $.simple_identifier, + optional($.type_parameters), + $._macro_signature, + optional(field("definition", $.macro_definition)), + optional($.type_constraints) + ), + _macro_head: ($) => seq(optional($.modifiers), "macro"), + _macro_signature: ($) => + seq( + $._function_value_parameters, + optional(seq($._arrow_operator, $._unannotated_type)) + ), + macro_definition: ($) => + seq( + $._equal_sign, + field("body", choice($._expression, $.external_macro_definition)) + ), + + external_macro_definition: ($) => + seq($._hash_symbol, "externalMacro", $.value_arguments), + + class_declaration: ($) => + seq(optional($.modifiers), $._modifierless_class_declaration), + _modifierless_class_declaration: ($) => + prec.right( + choice( + seq( + field("declaration_kind", choice("class", "struct", "actor")), + field("name", alias($.simple_identifier, $.type_identifier)), + optional($.type_parameters), + optional(seq(":", $._inheritance_specifiers)), + optional($.type_constraints), + field("body", $.class_body) + ), + seq( + field("declaration_kind", "extension"), + field("name", $._unannotated_type), + optional($.type_parameters), + optional(seq(":", $._inheritance_specifiers)), + optional($.type_constraints), + field("body", $.class_body) + ), + seq( + optional("indirect"), + field("declaration_kind", "enum"), + field("name", alias($.simple_identifier, $.type_identifier)), + optional($.type_parameters), + optional(seq(":", $._inheritance_specifiers)), + optional($.type_constraints), + field("body", $.enum_class_body) + ) + ) + ), + class_body: ($) => seq("{", optional($._class_member_declarations), "}"), + _inheritance_specifiers: ($) => + prec.left(sep1($._annotated_inheritance_specifier, choice(",", "&"))), + inheritance_specifier: ($) => + prec.left( + field( + "inherits_from", + choice($.user_type, $.function_type, $.suppressed_constraint) + ) + ), + _annotated_inheritance_specifier: ($) => + seq(repeat($.attribute), $.inheritance_specifier), + type_parameters: ($) => + seq( + "<", + sep1Opt($.type_parameter, ","), + optional($.type_constraints), + ">" + ), + type_parameter: ($) => + seq( + optional($.type_parameter_modifiers), + $._type_parameter_possibly_packed, + optional(seq(":", $._type)) + ), + _type_parameter_possibly_packed: ($) => + choice( + alias($.simple_identifier, $.type_identifier), + $.type_parameter_pack + ), + + type_constraints: ($) => + prec.right(seq($.where_keyword, sep1Opt($.type_constraint, ","))), + type_constraint: ($) => + choice($.inheritance_constraint, $.equality_constraint), + inheritance_constraint: ($) => + seq( + repeat($.attribute), + field("constrained_type", $._constrained_type), + ":", + field("inherits_from", $._possibly_implicitly_unwrapped_type) + ), + equality_constraint: ($) => + seq( + repeat($.attribute), + field("constrained_type", $._constrained_type), + choice($._equal_sign, $._eq_eq), + field("must_equal", $._type) + ), + _constrained_type: ($) => + choice( + $.identifier, + seq( + $._unannotated_type, + optional(seq(".", sep1($.simple_identifier, "."))) + ) + ), + _class_member_separator: ($) => choice($._semi, $.multiline_comment), + _class_member_declarations: ($) => + seq( + sep1($._type_level_declaration, $._class_member_separator), + optional($._class_member_separator) + ), + _function_value_parameters: ($) => + repeat1( + seq("(", optional(sep1Opt($._function_value_parameter, ",")), ")") + ), + _function_value_parameter: ($) => + seq( + optional($.attribute), + $.parameter, + optional(seq($._equal_sign, field("default_value", $._expression))) + ), + parameter: ($) => + seq( + optional(field("external_name", $.simple_identifier)), + field("name", $.simple_identifier), + ":", + optional($.parameter_modifiers), + field("type", $._possibly_implicitly_unwrapped_type), + optional($._three_dot_operator) + ), + _non_constructor_function_decl: ($) => + seq( + "func", + field("name", choice($.simple_identifier, $._referenceable_operator)) + ), + _referenceable_operator: ($) => + choice( + $.custom_operator, + $._comparison_operator, + $._additive_operator, + $._multiplicative_operator, + $._equality_operator, + $._comparison_operator, + $._assignment_and_operator, + "++", + "--", + $.bang, + "~", + "|", + "^", + "<<", + ">>", + "&" + ), + // Hide the fact that certain symbols come from the custom scanner by aliasing them to their + // string variants. This keeps us from having to see them in the syntax tree (which would be + // noisy) but allows callers to refer to them as nodes by their text form like with any + // operator. + _equal_sign: ($) => alias($._eq_custom, "="), + _eq_eq: ($) => alias($._eq_eq_custom, "=="), + _dot: ($) => alias($._dot_custom, "."), + _arrow_operator: ($) => alias($._arrow_operator_custom, "->"), + _conjunction_operator: ($) => alias($._conjunction_operator_custom, "&&"), + _disjunction_operator: ($) => alias($._disjunction_operator_custom, "||"), + _nil_coalescing_operator: ($) => + alias($._nil_coalescing_operator_custom, "??"), + _as: ($) => alias($._as_custom, "as"), + _as_quest: ($) => alias($._as_quest_custom, "as?"), + _as_bang: ($) => alias($._as_bang_custom, "as!"), + _hash_symbol: ($) => alias($._hash_symbol_custom, "#"), + bang: ($) => choice($._bang_custom, "!"), + _async_keyword: ($) => alias($._async_keyword_custom, "async"), + _async_modifier: ($) => token("async"), + throws: ($) => choice($._throws_keyword, $._rethrows_keyword), + throws_clause: ($) => + seq($._throws_keyword, "(", field("type", $._unannotated_type), ")"), + enum_class_body: ($) => + seq("{", repeat(choice($.enum_entry, $._type_level_declaration)), "}"), + enum_entry: ($) => + seq( + optional($.modifiers), + optional("indirect"), + "case", + sep1( + seq( + field("name", $.simple_identifier), + optional($._enum_entry_suffix) + ), + "," + ), + optional(";") + ), + _enum_entry_suffix: ($) => + choice( + field("data_contents", $.enum_type_parameters), + seq($._equal_sign, field("raw_value", $._expression)) + ), + enum_type_parameters: ($) => + seq( + "(", + optional( + sep1( + seq( + optional( + seq(optional($.wildcard_pattern), $.simple_identifier, ":") + ), + $._type, + optional(seq($._equal_sign, $._expression)) + ), + "," + ) + ), + ")" + ), + protocol_declaration: ($) => + prec.right( + seq( + optional($.modifiers), + field("declaration_kind", "protocol"), + field("name", alias($.simple_identifier, $.type_identifier)), + optional($.type_parameters), + optional(seq(":", $._inheritance_specifiers)), + optional($.type_constraints), + field("body", $.protocol_body) + ) + ), + protocol_body: ($) => + seq("{", optional($._protocol_member_declarations), "}"), + _protocol_member_declarations: ($) => + seq(sep1($._protocol_member_declaration, $._semi), optional($._semi)), + _protocol_member_declaration: ($) => + choice( + alias( + seq( + $._bodyless_function_declaration, + optional(field("body", $.function_body)) + ), + $.protocol_function_declaration + ), + $.init_declaration, + $.deinit_declaration, + $.protocol_property_declaration, + $.typealias_declaration, + $.associatedtype_declaration, + $.subscript_declaration + ), + init_declaration: ($) => + prec.right( + seq( + optional($.modifiers), + optional("class"), + field("name", "init"), + optional(choice($._quest, $.bang)), + optional($.type_parameters), + $._function_value_parameters, + optional($._async_keyword), + optional(choice($.throws_clause, $.throws)), + optional($.type_constraints), + optional(field("body", $.function_body)) + ) + ), + deinit_declaration: ($) => + prec.right( + seq(optional($.modifiers), "deinit", field("body", $.function_body)) + ), + subscript_declaration: ($) => + prec.right( + seq( + optional($.modifiers), + "subscript", + optional($.type_parameters), + $._function_value_parameters, + optional( + seq( + $._arrow_operator, + field("return_type", $._possibly_implicitly_unwrapped_type) + ) + ), + optional($.type_constraints), + $.computed_property + ) + ), + computed_property: ($) => + seq( + "{", + choice( + optional($.statements), + repeat( + choice($.computed_getter, $.computed_setter, $.computed_modify) + ) + ), + "}" + ), + computed_getter: ($) => + seq(repeat($.attribute), $.getter_specifier, optional($._block)), + computed_modify: ($) => + seq(repeat($.attribute), $.modify_specifier, optional($._block)), + computed_setter: ($) => + seq( + repeat($.attribute), + $.setter_specifier, + optional(seq("(", $.simple_identifier, ")")), + optional($._block) + ), + getter_specifier: ($) => + seq(optional($.mutation_modifier), "get", optional($._getter_effects)), + setter_specifier: ($) => seq(optional($.mutation_modifier), "set"), + modify_specifier: ($) => seq(optional($.mutation_modifier), "_modify"), + _getter_effects: ($) => + repeat1(choice($._async_keyword, $.throws_clause, $.throws)), + operator_declaration: ($) => + seq( + choice("prefix", "infix", "postfix"), + "operator", + $._referenceable_operator, + optional(seq(":", $.simple_identifier)), + optional($.deprecated_operator_declaration_body) + ), + // The Swift compiler no longer accepts these, but some very old code still uses it. + deprecated_operator_declaration_body: ($) => + seq("{", repeat(choice($.simple_identifier, $._basic_literal)), "}"), + precedence_group_declaration: ($) => + seq( + "precedencegroup", + $.simple_identifier, + "{", + optional($.precedence_group_attributes), + "}" + ), + precedence_group_attributes: ($) => repeat1($.precedence_group_attribute), + precedence_group_attribute: ($) => + seq( + $.simple_identifier, + ":", + choice($.simple_identifier, $.boolean_literal) + ), + associatedtype_declaration: ($) => + seq( + optional($.modifiers), + "associatedtype", + field("name", alias($.simple_identifier, $.type_identifier)), + optional(seq(":", field("must_inherit", $._type))), + optional($.type_constraints), + optional(seq($._equal_sign, field("default_value", $._type))) + ), + //////////////////////////////// + // Attributes - https://docs.swift.org/swift-book/ReferenceManual/Attributes.html + //////////////////////////////// + attribute: ($) => + seq( + "@", + $.user_type, + // attribute arguments are a mess of special cases, maybe this is good enough? + optional(seq("(", sep1Opt($._attribute_argument, ","), ")")) + ), + _attribute_argument: ($) => + choice( + // labeled function parameters, used in custom property wrappers + seq($.simple_identifier, ":", $._expression), + // Unlabeled function parameters, simple identifiers, or `*` + $._expression, + // References to param names (used in `@objc(foo:bar:)`) + repeat1(seq($.simple_identifier, ":")), + // Version restrictions (iOS 3.4.5, Swift 5.0.0) + seq(repeat1($.simple_identifier), sep1($.integer_literal, ".")) + ), + //////////////////////////////// + // Patterns - https://docs.swift.org/swift-book/ReferenceManual/Patterns.html + //////////////////////////////// + _universally_allowed_pattern: ($) => + choice( + $.wildcard_pattern, + $._tuple_pattern, + $._type_casting_pattern, + $._case_pattern + ), + _bound_identifier: ($) => field("bound_identifier", $.simple_identifier), + + _binding_pattern_no_expr: ($) => + seq( + choice( + $._universally_allowed_pattern, + $._binding_pattern, + $._bound_identifier + ), + optional($._quest) + ), + _no_expr_pattern_already_bound: ($) => + seq( + choice($._universally_allowed_pattern, $._bound_identifier), + optional($._quest) + ), + _binding_pattern_with_expr: ($) => + seq( + choice( + $._universally_allowed_pattern, + $._binding_pattern, + $._expression + ), + optional($._quest) + ), + _non_binding_pattern_with_expr: ($) => + seq( + choice($._universally_allowed_pattern, $._expression), + optional($._quest) + ), + _direct_or_indirect_binding: ($) => + seq( + choice( + $._binding_kind_and_pattern, + seq("case", $._binding_pattern_no_expr) + ), + optional($.type_annotation) + ), + value_binding_pattern: ($) => field("mutability", choice("var", "let")), + _possibly_async_binding_pattern_kind: ($) => + seq(optional($._async_modifier), $.value_binding_pattern), + _binding_kind_and_pattern: ($) => + seq( + $._possibly_async_binding_pattern_kind, + $._no_expr_pattern_already_bound + ), + wildcard_pattern: ($) => "_", + _tuple_pattern_item: ($) => + choice( + seq( + $.simple_identifier, + seq(":", alias($._binding_pattern_with_expr, $.pattern)) + ), + alias($._binding_pattern_with_expr, $.pattern) + ), + _tuple_pattern: ($) => seq("(", sep1Opt($._tuple_pattern_item, ","), ")"), + _case_pattern: ($) => + seq( + optional("case"), + optional($.user_type), // XXX this should just be _type but that creates ambiguity + $._dot, + $.simple_identifier, + optional($._tuple_pattern) + ), + _type_casting_pattern: ($) => + choice( + seq("is", $._type), + seq(alias($._binding_pattern_no_expr, $.pattern), $._as, $._type) + ), + _binding_pattern: ($) => + seq( + seq(optional("case"), $.value_binding_pattern), + $._no_expr_pattern_already_bound + ), + + // ========== + // Modifiers + // ========== + modifiers: ($) => + repeat1( + prec.left( + choice($._non_local_scope_modifier, $._locally_permitted_modifiers) + ) + ), + _locally_permitted_modifiers: ($) => + repeat1(choice($.attribute, $._locally_permitted_modifier)), + parameter_modifiers: ($) => repeat1($.parameter_modifier), + _modifier: ($) => + choice($._non_local_scope_modifier, $._locally_permitted_modifier), + _non_local_scope_modifier: ($) => + choice( + $.member_modifier, + $.visibility_modifier, + $.function_modifier, + $.mutation_modifier, + $.property_modifier, + $.parameter_modifier + ), + _locally_permitted_modifier: ($) => + choice( + $.ownership_modifier, + $.inheritance_modifier, + $.property_behavior_modifier + ), + property_behavior_modifier: ($) => "lazy", + type_modifiers: ($) => repeat1($.attribute), + member_modifier: ($) => + choice("override", "convenience", "required", "nonisolated"), + visibility_modifier: ($) => + seq( + choice( + "public", + "private", + "internal", + "fileprivate", + "open", + "package" + ), + optional(seq("(", "set", ")")) + ), + type_parameter_modifiers: ($) => repeat1($.attribute), + function_modifier: ($) => choice("infix", "postfix", "prefix"), + mutation_modifier: ($) => choice("mutating", "nonmutating"), + property_modifier: ($) => + choice("static", "dynamic", "optional", "class", "distributed"), + inheritance_modifier: ($) => choice("final"), + parameter_modifier: ($) => + choice( + "inout", + "@escaping", + "@autoclosure", + $._parameter_ownership_modifier + ), + ownership_modifier: ($) => + choice("weak", "unowned", "unowned(safe)", "unowned(unsafe)"), + _parameter_ownership_modifier: ($) => choice("borrowing", "consuming"), + use_site_target: ($) => + seq( + choice( + "property", + "get", + "set", + "receiver", + "param", + "setparam", + "delegate" + ), + ":" + ), + directive: ($) => + prec.right( + PRECS.comment, + choice( + seq(alias($._directive_if, "#if"), $._compilation_condition), + seq(alias($._directive_elseif, "#elseif"), $._compilation_condition), + seq(alias($._directive_else, "#else")), + seq(alias($._directive_endif, "#endif")) + ) + ), + _compilation_condition: ($) => + prec.right( + choice( + seq("os", "(", $.simple_identifier, ")"), + seq("arch", "(", $.simple_identifier, ")"), + seq( + "swift", + "(", + $._comparison_operator, + sep1($.integer_literal, "."), + ")" + ), + seq( + "compiler", + "(", + $._comparison_operator, + sep1($.integer_literal, "."), + ")" + ), + seq("canImport", "(", sep1($.simple_identifier, "."), ")"), + seq("targetEnvironment", "(", $.simple_identifier, ")"), + $.boolean_literal, + $.simple_identifier, + seq("(", $._compilation_condition, ")"), + seq("!", $._compilation_condition), + seq( + $._compilation_condition, + $._conjunction_operator, + $._compilation_condition + ), + seq( + $._compilation_condition, + $._disjunction_operator, + $._compilation_condition + ) + ) + ), + diagnostic: ($) => + prec( + PRECS.comment, + seq( + $._hash_symbol, + choice( + // Using regexes here, rather than actually validating the string literal, because complex string literals + // cannot be used inside `token()` and we need that to ensure we get the right precedence. + seq(/error([^\r\n]*)/), + seq(/warning([^\r\n]*)/), + seq(/sourceLocation([^\r\n]*)/) + ) + ) + ), + // Dumping ground for any nodes that used to exist in the grammar, but have since been removed for whatever + // reason. + // Neovim applies updates non-atomically to the parser and the queries. Meanwhile, `tree-sitter` rejects any query + // that contains any unrecognized nodes. Putting those two facts together, we see that we must never remove nodes + // that once existed. + unused_for_backward_compatibility: ($) => + choice(alias("unused1", "try?"), alias("unused2", "try!")), + }, +}); +function sep1(rule, separator) { + return seq(rule, repeat(seq(separator, rule))); +} +function sep1Opt(rule, separator) { + return seq(rule, repeat(seq(separator, rule)), optional(separator)); +} + +function tree_sitter_version_supports_emoji() { + try { + return ( + TREE_SITTER_CLI_VERSION_MAJOR > 0 || + TREE_SITTER_CLI_VERSION_MINOR > 20 || + TREE_SITTER_CLI_VERSION_PATCH >= 5 + ); + } catch (err) { + if (err instanceof ReferenceError) { + return false; + } else { + throw err; + } + } +} diff --git a/unified/extractor/tree-sitter-swift/package.json b/unified/extractor/tree-sitter-swift/package.json new file mode 100644 index 000000000000..68dcf7cc42fc --- /dev/null +++ b/unified/extractor/tree-sitter-swift/package.json @@ -0,0 +1,68 @@ +{ + "name": "tree-sitter-swift", + "version": "0.7.2", + "description": "A tree-sitter grammar for the Swift programming language.", + "main": "bindings/node/index.js", + "types": "bindings/node", + "scripts": { + "install": "node-gyp-build", + "prestart": "tree-sitter build --wasm", + "start": "tree-sitter playground", + "test": "node --test bindings/node/*_test.js" + }, + "repository": { + "type": "git", + "url": "git+https://github.com/alex-pinkus/tree-sitter-swift.git" + }, + "tree-sitter": [ + { + "scope": "source.swift", + "file-types": [ + "swift" + ], + "injection-regex": "swift", + "highlights": "queries/highlights.scm", + "locals": "queries/locals.scm", + "injections": "queries/injections.scm" + } + ], + "keywords": [ + "parser", + "swift" + ], + "files": [ + "grammar.js", + "tree-sitter.json", + "binding.gyp", + "prebuilds/**", + "bindings/node/*", + "queries/*", + "scripts/*", + "src/**" + ], + "author": "Alex Pinkus ", + "license": "MIT", + "bugs": { + "url": "https://github.com/alex-pinkus/tree-sitter-swift/issues" + }, + "homepage": "https://github.com/alex-pinkus/tree-sitter-swift#readme", + "dependencies": { + "node-addon-api": "^8.0.0", + "node-gyp-build": "^4.8.0", + "tree-sitter-cli": "^0.23", + "which": "2.0.2" + }, + "peerDependencies": { + "tree-sitter": "^0.22.1" + }, + "peerDependenciesMeta": { + "tree_sitter": { + "optional": true + } + }, + "devDependencies": { + "node-gyp": "^10.0.1", + "prebuildify": "^6.0.0", + "prettier": "2.3.2" + } +} diff --git a/unified/extractor/tree-sitter-swift/queries/folds.scm b/unified/extractor/tree-sitter-swift/queries/folds.scm new file mode 100644 index 000000000000..ca7f72593aa8 --- /dev/null +++ b/unified/extractor/tree-sitter-swift/queries/folds.scm @@ -0,0 +1,35 @@ +; format-ignore +[ + (protocol_body) ; protocol Foo { ... } + (class_body) ; class Foo { ... } + (enum_class_body) ; enum Foo { ... } + (function_body) ; func Foo (...) {...} + (computed_property) ; { ... } + + (computed_getter) ; get { ... } + (computed_setter) ; set { ... } + + (do_statement) + (if_statement) + (for_statement) + (switch_statement) + (while_statement) + (guard_statement) + (switch_entry) + + (type_parameters) ; x + (tuple_type) ; (...) + (array_type) ; [String] + (dictionary_type) ; [Foo: Bar] + + (call_expression) ; callFunc(...) + (tuple_expression) ; ( foo + bar ) + (array_literal) ; [ foo, bar ] + (dictionary_literal) ; [ foo: bar, x: y ] + (lambda_literal) + (willset_didset_block) + (willset_clause) + (didset_clause) + + (import_declaration)+ +] @fold diff --git a/unified/extractor/tree-sitter-swift/queries/highlights.scm b/unified/extractor/tree-sitter-swift/queries/highlights.scm new file mode 100644 index 000000000000..82ad68d4ed1c --- /dev/null +++ b/unified/extractor/tree-sitter-swift/queries/highlights.scm @@ -0,0 +1,336 @@ +[ + "." + ";" + ":" + "," +] @punctuation.delimiter + +[ + "(" + ")" + "[" + "]" + "{" + "}" +] @punctuation.bracket + +; Identifiers +(type_identifier) @type + +[ + (self_expression) + (super_expression) +] @variable.builtin + +; Declarations +[ + "func" + "deinit" +] @keyword.function + +[ + (visibility_modifier) + (member_modifier) + (function_modifier) + (property_modifier) + (parameter_modifier) + (inheritance_modifier) + (mutation_modifier) +] @keyword.modifier + +(simple_identifier) @variable + +(function_declaration + (simple_identifier) @function.method) + +(protocol_function_declaration + name: (simple_identifier) @function.method) + +(init_declaration + "init" @constructor) + +(parameter + external_name: (simple_identifier) @variable.parameter) + +(parameter + name: (simple_identifier) @variable.parameter) + +(type_parameter + (type_identifier) @variable.parameter) + +(inheritance_constraint + (identifier + (simple_identifier) @variable.parameter)) + +(equality_constraint + (identifier + (simple_identifier) @variable.parameter)) + +[ + "protocol" + "extension" + "indirect" + "nonisolated" + "override" + "convenience" + "required" + "some" + "any" + "weak" + "unowned" + "didSet" + "willSet" + "subscript" + "let" + "var" + (throws) + (where_keyword) + (getter_specifier) + (setter_specifier) + (modify_specifier) + (else) + (as_operator) +] @keyword + +[ + "enum" + "struct" + "class" + "typealias" +] @keyword.type + +[ + "async" + "await" +] @keyword.coroutine + +(shebang_line) @keyword.directive + +(class_body + (property_declaration + (pattern + (simple_identifier) @variable.member))) + +(protocol_property_declaration + (pattern + (simple_identifier) @variable.member)) + +(navigation_expression + (navigation_suffix + (simple_identifier) @variable.member)) + +(value_argument + name: (value_argument_label + (simple_identifier) @variable.member)) + +(import_declaration + "import" @keyword.import) + +(enum_entry + "case" @keyword) + +(modifiers + (attribute + "@" @attribute + (user_type + (type_identifier) @attribute))) + +; Function calls +(call_expression + (simple_identifier) @function.call) ; foo() + +(call_expression + ; foo.bar.baz(): highlight the baz() + (navigation_expression + (navigation_suffix + (simple_identifier) @function.call))) + +(call_expression + (prefix_expression + (simple_identifier) @function.call)) ; .foo() + +((navigation_expression + (simple_identifier) @type) ; SomeType.method(): highlight SomeType as a type + (#match? @type "^[A-Z]")) + +(directive) @keyword.directive + +; See https://docs.swift.org/swift-book/documentation/the-swift-programming-language/lexicalstructure/#Keywords-and-Punctuation +[ + (diagnostic) + (availability_condition) + (playground_literal) + (key_path_string_expression) + (selector_expression) + (external_macro_definition) +] @function.macro + +(special_literal) @constant.macro + +; Statements +(for_statement + "for" @keyword.repeat) + +(for_statement + "in" @keyword.repeat) + +[ + "while" + "repeat" + "continue" + "break" +] @keyword.repeat + +(guard_statement + "guard" @keyword.conditional) + +(if_statement + "if" @keyword.conditional) + +(switch_statement + "switch" @keyword.conditional) + +(switch_entry + "case" @keyword) + +(switch_entry + "fallthrough" @keyword) + +(switch_entry + (default_keyword) @keyword) + +"return" @keyword.return + +(ternary_expression + [ + "?" + ":" + ] @keyword.conditional.ternary) + +[ + (try_operator) + "do" + (throw_keyword) + (catch_keyword) +] @keyword.exception + +(statement_label) @label + +; Comments +[ + (comment) + (multiline_comment) +] @comment @spell + +((comment) @comment.documentation + (#match? @comment.documentation "^///[^/]")) + +((comment) @comment.documentation + (#match? @comment.documentation "^///$")) + +((multiline_comment) @comment.documentation + (#match? @comment.documentation "^/[*][*][^*].*[*]/$")) + +; String literals +(line_str_text) @string + +(str_escaped_char) @string.escape + +(multi_line_str_text) @string + +(raw_str_part) @string + +(raw_str_end_part) @string + +(line_string_literal + [ + "\\(" + ")" + ] @punctuation.special) + +(multi_line_string_literal + [ + "\\(" + ")" + ] @punctuation.special) + +(raw_str_interpolation + [ + (raw_str_interpolation_start) + ")" + ] @punctuation.special) + +[ + "\"" + "\"\"\"" +] @string + +; Lambda literals +(lambda_literal + "in" @keyword.operator) + +; Basic literals +[ + (integer_literal) + (hex_literal) + (oct_literal) + (bin_literal) +] @number + +(real_literal) @number.float + +(boolean_literal) @boolean + +"nil" @constant.builtin + +(wildcard_pattern) @character.special + +; Regex literals +(regex_literal) @string.regexp + +; Operators +(custom_operator) @operator + +[ + "+" + "-" + "*" + "/" + "%" + "=" + "+=" + "-=" + "*=" + "/=" + "<" + ">" + "<<" + ">>" + "<=" + ">=" + "++" + "--" + "^" + "&" + "&&" + "|" + "||" + "~" + "%=" + "!=" + "!==" + "==" + "===" + "?" + "??" + "->" + "..<" + "..." + (bang) +] @operator + +(type_arguments + [ + "<" + ">" + ] @punctuation.bracket) diff --git a/unified/extractor/tree-sitter-swift/queries/indents.scm b/unified/extractor/tree-sitter-swift/queries/indents.scm new file mode 100644 index 000000000000..ec8f8af95c6f --- /dev/null +++ b/unified/extractor/tree-sitter-swift/queries/indents.scm @@ -0,0 +1,123 @@ +; format-ignore +[ + ; ... refers to the section that will get affected by this indent.begin capture + (protocol_body) ; protocol Foo { ... } + (class_body) ; class Foo { ... } + (enum_class_body) ; enum Foo { ... } + (function_declaration) ; func Foo (...) {...} + (init_declaration) ; init(...) {...} + (deinit_declaration) ; deinit {...} + (computed_property) ; { ... } + (subscript_declaration) ; subscript Foo(...) { ... } + + (computed_getter) ; get { ... } + (computed_setter) ; set { ... } + + (assignment) ; a = b + + (control_transfer_statement) ; return ... + (for_statement) + (while_statement) + (repeat_while_statement) + (do_statement) + (if_statement) + (switch_statement) + (guard_statement) + + (type_parameters) ; x + (tuple_type) ; (...) + (array_type) ; [String] + (dictionary_type) ; [Foo: Bar] + + (call_expression) ; callFunc(...) + (tuple_expression) ; ( foo + bar ) + (array_literal) ; [ foo, bar ] + (dictionary_literal) ; [ foo: bar, x: y ] + (lambda_literal) + (willset_didset_block) + (willset_clause) + (didset_clause) +] @indent.begin + +(init_declaration) @indent.begin + +(init_declaration + [ + "init" + "(" + ] @indent.branch) + +; indentation for init parameters +(init_declaration + ")" @indent.branch @indent.end) + +(init_declaration + (parameter) @indent.begin + (#set! indent.immediate)) + +; @something(...) +(modifiers + (attribute) @indent.begin) + +(function_declaration + (modifiers + . + (attribute) + (_)* @indent.branch) + . + _ @indent.branch + (#not-kind-eq? @indent.branch "type_parameters" "parameter")) + +(ERROR + [ + "<" + "{" + "(" + "[" + ]) @indent.begin + +; if-elseif +(if_statement + (if_statement) @indent.dedent) + +; case Foo: +; default Foo: +; @attribute default Foo: +(switch_entry + . + _ @indent.branch) + +(function_declaration + ")" @indent.branch) + +(type_parameters + ">" @indent.branch @indent.end .) + +(tuple_expression + ")" @indent.branch @indent.end) + +(value_arguments + ")" @indent.branch @indent.end) + +(tuple_type + ")" @indent.branch @indent.end) + +(modifiers + (attribute + ")" @indent.branch @indent.end)) + +[ + "}" + "]" +] @indent.branch @indent.end + +[ + ; (ERROR) + (comment) + (multiline_comment) + (raw_str_part) + (multi_line_string_literal) +] @indent.auto + +(directive) @indent.ignore + diff --git a/unified/extractor/tree-sitter-swift/queries/injections.scm b/unified/extractor/tree-sitter-swift/queries/injections.scm new file mode 100644 index 000000000000..512cfa0d5223 --- /dev/null +++ b/unified/extractor/tree-sitter-swift/queries/injections.scm @@ -0,0 +1,10 @@ +; Parse regex syntax within regex literals + +((regex_literal) @injection.content + (#set! injection.language "regex")) + +([ + (comment) + (multiline_comment) +] @injection.content + (#set! injection.language "comment")) diff --git a/unified/extractor/tree-sitter-swift/queries/locals.scm b/unified/extractor/tree-sitter-swift/queries/locals.scm new file mode 100644 index 000000000000..78032a81810b --- /dev/null +++ b/unified/extractor/tree-sitter-swift/queries/locals.scm @@ -0,0 +1,23 @@ +(import_declaration + (identifier) @local.definition.import) + +(function_declaration + name: (simple_identifier) @local.definition.function) + +; Scopes +[ + (statements) + (for_statement) + (while_statement) + (repeat_while_statement) + (do_statement) + (if_statement) + (guard_statement) + (switch_statement) + (property_declaration) + (function_declaration) + (class_declaration) + (protocol_declaration) +] @local.scope + + diff --git a/unified/extractor/tree-sitter-swift/queries/outline.scm b/unified/extractor/tree-sitter-swift/queries/outline.scm new file mode 100644 index 000000000000..31fe5d9d4a43 --- /dev/null +++ b/unified/extractor/tree-sitter-swift/queries/outline.scm @@ -0,0 +1,66 @@ +(protocol_declaration + declaration_kind: "protocol" @name + . + _ * @name + . + body: (protocol_body) +) @item + +(class_declaration + declaration_kind: ( + [ + "actor" + "class" + "extension" + "enum" + "struct" + ] + ) @name + . + _ * @name + . + body: (_) +) @item + +(init_declaration + name: "init" @name + . + _ * @name + . + body: (function_body) +) @item + +(deinit_declaration + "deinit" @name) @item + +(function_declaration + "func" @name + . + _ * @name + . + body: (function_body) +) @item + +(class_body + (property_declaration + (value_binding_pattern) @name + name: (pattern) @name + (type_annotation)? @name + ) @item +) + +(enum_class_body + (property_declaration + (value_binding_pattern) @name + name: (pattern) @name + (type_annotation)? @name + ) @item +) + +( + (protocol_function_declaration) @name +) @item + +( + (protocol_property_declaration) @name +) @item diff --git a/unified/extractor/tree-sitter-swift/queries/tags.scm b/unified/extractor/tree-sitter-swift/queries/tags.scm new file mode 100644 index 000000000000..0038571e5d72 --- /dev/null +++ b/unified/extractor/tree-sitter-swift/queries/tags.scm @@ -0,0 +1,51 @@ +(class_declaration + name: (type_identifier) @name) @definition.class + +(protocol_declaration + name: (type_identifier) @name) @definition.interface + +(class_declaration + (class_body + [ + (function_declaration + name: (simple_identifier) @name + ) + (subscript_declaration + (parameter (simple_identifier) @name) + ) + (init_declaration "init" @name) + (deinit_declaration "deinit" @name) + ] + ) +) @definition.method + +(protocol_declaration + (protocol_body + [ + (protocol_function_declaration + name: (simple_identifier) @name + ) + (subscript_declaration + (parameter (simple_identifier) @name) + ) + (init_declaration "init" @name) + ] + ) +) @definition.method + +(class_declaration + (class_body + [ + (property_declaration + (pattern (simple_identifier) @name) + ) + ] + ) +) @definition.property + +(property_declaration + (pattern (simple_identifier) @name) +) @definition.property + +(function_declaration + name: (simple_identifier) @name) @definition.function \ No newline at end of file diff --git a/unified/extractor/tree-sitter-swift/queries/textobjects.scm b/unified/extractor/tree-sitter-swift/queries/textobjects.scm new file mode 100644 index 000000000000..da689a1b29f6 --- /dev/null +++ b/unified/extractor/tree-sitter-swift/queries/textobjects.scm @@ -0,0 +1,19 @@ + + +; MARK: Structure + +(function_declaration + body: (_) @function.inside) @function.around + +; TODO: Classes/structs/enums + + +; MARK: Tests + +; Only matches prefix test. Other conventions +; might be nice to add! +(function_declaration + name: (simple_identifier) @_name + (#match? @_name "^test") +) + diff --git a/unified/extractor/tree-sitter-swift/src/grammar.json b/unified/extractor/tree-sitter-swift/src/grammar.json new file mode 100644 index 000000000000..59a53dadfa74 --- /dev/null +++ b/unified/extractor/tree-sitter-swift/src/grammar.json @@ -0,0 +1,11386 @@ +{ + "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 new file mode 100644 index 000000000000..eee791a4367d --- /dev/null +++ b/unified/extractor/tree-sitter-swift/src/node-types.json @@ -0,0 +1,30782 @@ +[ + { + "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 new file mode 100644 index 000000000000..2ab3afaf36a9 --- /dev/null +++ b/unified/extractor/tree-sitter-swift/src/parser.c @@ -0,0 +1,552722 @@ +#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/scanner.c b/unified/extractor/tree-sitter-swift/src/scanner.c new file mode 100644 index 000000000000..bb2dcac58b28 --- /dev/null +++ b/unified/extractor/tree-sitter-swift/src/scanner.c @@ -0,0 +1,929 @@ +#include "tree_sitter/parser.h" +#include +#include + +#define TOKEN_COUNT 33 + +enum TokenType { + BLOCK_COMMENT, + RAW_STR_PART, + RAW_STR_CONTINUING_INDICATOR, + RAW_STR_END_PART, + IMPLICIT_SEMI, + EXPLICIT_SEMI, + ARROW_OPERATOR, + DOT_OPERATOR, + CONJUNCTION_OPERATOR, + DISJUNCTION_OPERATOR, + NIL_COALESCING_OPERATOR, + EQUAL_SIGN, + EQ_EQ, + PLUS_THEN_WS, + MINUS_THEN_WS, + BANG, + THROWS_KEYWORD, + RETHROWS_KEYWORD, + DEFAULT_KEYWORD, + WHERE_KEYWORD, + ELSE_KEYWORD, + CATCH_KEYWORD, + AS_KEYWORD, + AS_QUEST, + AS_BANG, + ASYNC_KEYWORD, + CUSTOM_OPERATOR, + HASH_SYMBOL, + DIRECTIVE_IF, + DIRECTIVE_ELSEIF, + DIRECTIVE_ELSE, + DIRECTIVE_ENDIF, + FAKE_TRY_BANG +}; + +#define OPERATOR_COUNT 20 + +const char* OPERATORS[OPERATOR_COUNT] = { + "->", + ".", + "&&", + "||", + "??", + "=", + "==", + "+", + "-", + "!", + "throws", + "rethrows", + "default", + "where", + "else", + "catch", + "as", + "as?", + "as!", + "async" +}; + +enum IllegalTerminatorGroup { + ALPHANUMERIC, + OPERATOR_SYMBOLS, + OPERATOR_OR_DOT, + NON_WHITESPACE +}; + +const enum IllegalTerminatorGroup OP_ILLEGAL_TERMINATORS[OPERATOR_COUNT] = { + OPERATOR_SYMBOLS, // -> + OPERATOR_OR_DOT, // . + OPERATOR_SYMBOLS, // && + OPERATOR_SYMBOLS, // || + OPERATOR_SYMBOLS, // ?? + OPERATOR_SYMBOLS, // = + OPERATOR_SYMBOLS, // == + NON_WHITESPACE, // + + NON_WHITESPACE, // - + OPERATOR_SYMBOLS, // ! + ALPHANUMERIC, // throws + ALPHANUMERIC, // rethrows + ALPHANUMERIC, // default + ALPHANUMERIC, // where + ALPHANUMERIC, // else + ALPHANUMERIC, // catch + ALPHANUMERIC, // as + OPERATOR_SYMBOLS, // as? + OPERATOR_SYMBOLS, // as! + ALPHANUMERIC // async +}; + +const enum TokenType OP_SYMBOLS[OPERATOR_COUNT] = { + ARROW_OPERATOR, + DOT_OPERATOR, + CONJUNCTION_OPERATOR, + DISJUNCTION_OPERATOR, + NIL_COALESCING_OPERATOR, + EQUAL_SIGN, + EQ_EQ, + PLUS_THEN_WS, + MINUS_THEN_WS, + BANG, + THROWS_KEYWORD, + RETHROWS_KEYWORD, + DEFAULT_KEYWORD, + WHERE_KEYWORD, + ELSE_KEYWORD, + CATCH_KEYWORD, + AS_KEYWORD, + AS_QUEST, + AS_BANG, + ASYNC_KEYWORD +}; + +const uint64_t OP_SYMBOL_SUPPRESSOR[OPERATOR_COUNT] = { + 0, // ARROW_OPERATOR, + 0, // DOT_OPERATOR, + 0, // CONJUNCTION_OPERATOR, + 0, // DISJUNCTION_OPERATOR, + 0, // NIL_COALESCING_OPERATOR, + 0, // EQUAL_SIGN, + 0, // EQ_EQ, + 0, // PLUS_THEN_WS, + 0, // MINUS_THEN_WS, + 1UL << FAKE_TRY_BANG, // BANG, + 0, // THROWS_KEYWORD, + 0, // RETHROWS_KEYWORD, + 0, // DEFAULT_KEYWORD, + 0, // WHERE_KEYWORD, + 0, // ELSE_KEYWORD, + 0, // CATCH_KEYWORD, + 0, // AS_KEYWORD, + 0, // AS_QUEST, + 0, // AS_BANG, + 0, // ASYNC_KEYWORD +}; + +#define RESERVED_OP_COUNT 31 + +const char* RESERVED_OPS[RESERVED_OP_COUNT] = { + "/", + "=", + "-", + "+", + "!", + "*", + "%", + "<", + ">", + "&", + "|", + "^", + "?", + "~", + ".", + "..", + "->", + "/*", + "*/", + "+=", + "-=", + "*=", + "/=", + "%=", + ">>", + "<<", + "++", + "--", + "===", + "...", + "..<" +}; + +static bool is_cross_semi_token(enum TokenType op) { + switch(op) { + case ARROW_OPERATOR: + case DOT_OPERATOR: + case CONJUNCTION_OPERATOR: + case DISJUNCTION_OPERATOR: + case NIL_COALESCING_OPERATOR: + case EQUAL_SIGN: + case EQ_EQ: + case PLUS_THEN_WS: + case MINUS_THEN_WS: + case THROWS_KEYWORD: + case RETHROWS_KEYWORD: + case DEFAULT_KEYWORD: + case WHERE_KEYWORD: + case ELSE_KEYWORD: + case CATCH_KEYWORD: + case AS_KEYWORD: + case AS_QUEST: + case AS_BANG: + case ASYNC_KEYWORD: + case CUSTOM_OPERATOR: + return true; + case BANG: + default: + return false; + } +} + +#define NON_CONSUMING_CROSS_SEMI_CHAR_COUNT 3 +const uint32_t NON_CONSUMING_CROSS_SEMI_CHARS[NON_CONSUMING_CROSS_SEMI_CHAR_COUNT] = { '?', ':', '{' }; + +/** + * All possible results of having performed some sort of parsing. + * + * A parser can return a result along two dimensions: + * 1. Should the scanner continue trying to find another result? + * 2. Was some result produced by this parsing attempt? + * + * These are flattened into a single enum together. When the function returns one of the `TOKEN_FOUND` cases, it + * will always populate its `symbol_result` field. When it returns one of the `STOP_PARSING` cases, callers should + * immediately return (with the value, if there is one). + */ +enum ParseDirective { + CONTINUE_PARSING_NOTHING_FOUND, + CONTINUE_PARSING_TOKEN_FOUND, + CONTINUE_PARSING_SLASH_CONSUMED, + STOP_PARSING_NOTHING_FOUND, + STOP_PARSING_TOKEN_FOUND, + STOP_PARSING_END_OF_FILE +}; + +struct ScannerState { + uint32_t ongoing_raw_str_hash_count; +}; + +void *tree_sitter_swift_external_scanner_create() { + return calloc(1, sizeof(struct ScannerState)); +} + +void tree_sitter_swift_external_scanner_destroy(void *payload) { + free(payload); +} + +void tree_sitter_swift_external_scanner_reset(void *payload) { + struct ScannerState *state = (struct ScannerState *)payload; + state->ongoing_raw_str_hash_count = 0; +} + +unsigned tree_sitter_swift_external_scanner_serialize(void *payload, char *buffer) { + struct ScannerState *state = (struct ScannerState *)payload; + uint32_t hash_count = state->ongoing_raw_str_hash_count; + buffer[0] = (hash_count >> 24) & 0xff; + buffer[1] = (hash_count >> 16) & 0xff; + buffer[2] = (hash_count >> 8) & 0xff; + buffer[3] = (hash_count) & 0xff; + return 4; +} + +void tree_sitter_swift_external_scanner_deserialize( + void *payload, + const char *buffer, + unsigned length +) { + if (length < 4) { + return; + } + + uint32_t hash_count = ( + (((uint32_t) buffer[0]) << 24) | + (((uint32_t) buffer[1]) << 16) | + (((uint32_t) buffer[2]) << 8) | + (((uint32_t) buffer[3])) + ); + struct ScannerState *state = (struct ScannerState *)payload; + state->ongoing_raw_str_hash_count = hash_count; +} + +static void advance(TSLexer *lexer) { + lexer->advance(lexer, false); +} + +static bool should_treat_as_wspace(int32_t character) { + return iswspace(character) || (((int32_t) ';') == character); +} + +static int32_t encountered_op_count(bool *encountered_operator) { + int32_t encountered = 0; + for (int op_idx = 0; op_idx < OPERATOR_COUNT; op_idx++) { + if (encountered_operator[op_idx]) { + encountered++; + } + } + + return encountered; +} + +static bool any_reserved_ops(uint8_t *encountered_reserved_ops) { + for (int op_idx = 0; op_idx < RESERVED_OP_COUNT; op_idx++) { + if (encountered_reserved_ops[op_idx] == 2) { + return true; + } + } + + return false; +} + +static bool is_legal_custom_operator( + int32_t char_idx, + int32_t first_char, + int32_t cur_char +) { + bool is_first_char = !char_idx; + switch (cur_char) { + case '=': + case '-': + case '+': + case '!': + case '%': + case '<': + case '>': + case '&': + case '|': + case '^': + case '?': + case '~': + return true; + case '.': + // Grammar allows `.` for any operator that starts with `.` + return is_first_char || first_char == '.'; + case '*': + case '/': + // Not listed in the grammar, but `/*` and `//` can't be the start of an operator since they start comments + return char_idx != 1 || first_char != '/'; + default: + if ( + (cur_char >= 0x00A1 && cur_char <= 0x00A7) || + (cur_char == 0x00A9) || + (cur_char == 0x00AB) || + (cur_char == 0x00AC) || + (cur_char == 0x00AE) || + (cur_char >= 0x00B0 && cur_char <= 0x00B1) || + (cur_char == 0x00B6) || + (cur_char == 0x00BB) || + (cur_char == 0x00BF) || + (cur_char == 0x00D7) || + (cur_char == 0x00F7) || + (cur_char >= 0x2016 && cur_char <= 0x2017) || + (cur_char >= 0x2020 && cur_char <= 0x2027) || + (cur_char >= 0x2030 && cur_char <= 0x203E) || + (cur_char >= 0x2041 && cur_char <= 0x2053) || + (cur_char >= 0x2055 && cur_char <= 0x205E) || + (cur_char >= 0x2190 && cur_char <= 0x23FF) || + (cur_char >= 0x2500 && cur_char <= 0x2775) || + (cur_char >= 0x2794 && cur_char <= 0x2BFF) || + (cur_char >= 0x2E00 && cur_char <= 0x2E7F) || + (cur_char >= 0x3001 && cur_char <= 0x3003) || + (cur_char >= 0x3008 && cur_char <= 0x3020) || + (cur_char == 0x3030) + ) { + return true; + } else if ( + (cur_char >= 0x0300 && cur_char <= 0x036f) || + (cur_char >= 0x1DC0 && cur_char <= 0x1DFF) || + (cur_char >= 0x20D0 && cur_char <= 0x20FF) || + (cur_char >= 0xFE00 && cur_char <= 0xFE0F) || + (cur_char >= 0xFE20 && cur_char <= 0xFE2F) || + (cur_char >= 0xE0100 && cur_char <= 0xE01EF) + ) { + return !is_first_char; + } else { + return false; + } + } +} + +static bool eat_operators( + TSLexer *lexer, + const bool *valid_symbols, + bool mark_end, + const int32_t prior_char, + enum TokenType *symbol_result +) { + bool possible_operators[OPERATOR_COUNT]; + uint8_t reserved_operators[RESERVED_OP_COUNT]; + for (int op_idx = 0; op_idx < OPERATOR_COUNT; op_idx++) { + possible_operators[op_idx] = valid_symbols[OP_SYMBOLS[op_idx]] && (!prior_char || OPERATORS[op_idx][0] == prior_char); + } + for (int op_idx = 0; op_idx < RESERVED_OP_COUNT; op_idx++) { + reserved_operators[op_idx] = !prior_char || RESERVED_OPS[op_idx][0] == prior_char; + } + + bool possible_custom_operator = valid_symbols[CUSTOM_OPERATOR]; + int32_t first_char = prior_char ? prior_char : lexer->lookahead; + int32_t last_examined_char = first_char; + + int32_t str_idx = prior_char ? 1 : 0; + int32_t full_match = -1; + while(true) { + for (int op_idx = 0; op_idx < OPERATOR_COUNT; op_idx++) { + if (!possible_operators[op_idx]) { + continue; + } + + if (OPERATORS[op_idx][str_idx] == '\0') { + // Make sure that the operator is allowed to have the next character as its lookahead. + enum IllegalTerminatorGroup illegal_terminators = OP_ILLEGAL_TERMINATORS[op_idx]; + switch (lexer->lookahead) { + // See "Operators": + // https://docs.swift.org/swift-book/ReferenceManual/LexicalStructure.html#ID418 + case '/': + case '=': + case '-': + case '+': + case '!': + case '*': + case '%': + case '<': + case '>': + case '&': + case '|': + case '^': + case '?': + case '~': + if (illegal_terminators == OPERATOR_SYMBOLS) { + break; + } // Otherwise, intentionally fall through to the OPERATOR_OR_DOT case + // fall through + case '.': + if (illegal_terminators == OPERATOR_OR_DOT) { + break; + } // Otherwise, fall through to DEFAULT which checks its groups directly + // fall through + default: + if (iswalnum(lexer->lookahead) && illegal_terminators == ALPHANUMERIC) { + break; + } + + if (!iswspace(lexer->lookahead) && illegal_terminators == NON_WHITESPACE) { + break; + } + + full_match = op_idx; + if (mark_end) { + lexer->mark_end(lexer); + } + } + + possible_operators[op_idx] = false; + continue; + } + + if (OPERATORS[op_idx][str_idx] != lexer->lookahead) { + possible_operators[op_idx] = false; + continue; + } + } + + for (int op_idx = 0; op_idx < RESERVED_OP_COUNT; op_idx++) { + if (!reserved_operators[op_idx]) { + continue; + } + + if (RESERVED_OPS[op_idx][str_idx] == '\0') { + reserved_operators[op_idx] = 0; + continue; + } + + if (RESERVED_OPS[op_idx][str_idx] != lexer->lookahead) { + reserved_operators[op_idx] = 0; + continue; + } + + if (RESERVED_OPS[op_idx][str_idx + 1] == '\0') { + reserved_operators[op_idx] = 2; + continue; + } + } + + possible_custom_operator = possible_custom_operator && is_legal_custom_operator( + str_idx, + first_char, + lexer->lookahead + ); + + uint32_t encountered_ops = encountered_op_count(possible_operators); + if (encountered_ops == 0) { + if (!possible_custom_operator) { + break; + } else if (mark_end && full_match == -1) { + lexer->mark_end(lexer); + } + } + + last_examined_char = lexer->lookahead; + lexer->advance(lexer, false); + str_idx += 1; + + if (encountered_ops == 0 && !is_legal_custom_operator( + str_idx, + first_char, + lexer->lookahead + )) { + break; + } + } + + if (full_match != -1) { + // We have a match -- first see if that match has a symbol that suppresses it. For example, in `try!`, we do not + // want to emit the `!` as a symbol in our scanner, because we want the parser to have the chance to parse it as + // an immediate token. + uint64_t suppressing_symbols = OP_SYMBOL_SUPPRESSOR[full_match]; + if (suppressing_symbols) { + for (uint64_t suppressor = 0; suppressor < TOKEN_COUNT; suppressor++) { + if (!(suppressing_symbols & 1ULL << suppressor)) { + continue; + } + + // The suppressing symbol is valid in this position, so skip it. + if (valid_symbols[suppressor]) { + return false; + } + } + } + *symbol_result = OP_SYMBOLS[full_match]; + return true; + } + + if (possible_custom_operator && !any_reserved_ops(reserved_operators)) { + if ((last_examined_char != '<' || iswspace(lexer->lookahead)) && mark_end) { + lexer->mark_end(lexer); + } + *symbol_result = CUSTOM_OPERATOR; + return true; + } + + return false; +} + +static enum ParseDirective eat_comment( + TSLexer *lexer, + const bool *valid_symbols, + bool mark_end, + enum TokenType *symbol_result +) { + if (lexer->lookahead != '/') { + return CONTINUE_PARSING_NOTHING_FOUND; + } + + advance(lexer); + + if (lexer->lookahead != '*') { + return CONTINUE_PARSING_SLASH_CONSUMED; + } + + advance(lexer); + + bool after_star = false; + unsigned nesting_depth = 1; + for (;;) { + switch (lexer->lookahead) { + case '\0': + return STOP_PARSING_END_OF_FILE; + case '*': + advance(lexer); + after_star = true; + break; + case '/': + if (after_star) { + advance(lexer); + after_star = false; + nesting_depth--; + if (nesting_depth == 0) { + if (mark_end) { + lexer->mark_end(lexer); + } + *symbol_result = BLOCK_COMMENT; + return STOP_PARSING_TOKEN_FOUND; + } + } else { + advance(lexer); + after_star = false; + if (lexer->lookahead == '*') { + nesting_depth++; + advance(lexer); + } + } + break; + default: + advance(lexer); + after_star = false; + break; + } + } +} + +static enum ParseDirective eat_whitespace( + TSLexer *lexer, + const bool *valid_symbols, + enum TokenType *symbol_result +) { + enum ParseDirective ws_directive = CONTINUE_PARSING_NOTHING_FOUND; + bool semi_is_valid = valid_symbols[IMPLICIT_SEMI] && valid_symbols[EXPLICIT_SEMI]; + uint32_t lookahead; + while (should_treat_as_wspace(lookahead = lexer->lookahead)) { + if (lookahead == ';') { + if (semi_is_valid) { + ws_directive = STOP_PARSING_TOKEN_FOUND; + lexer->advance(lexer, false); + } + + break; + } + + lexer->advance(lexer, true); + + lexer->mark_end(lexer); + + if (ws_directive == CONTINUE_PARSING_NOTHING_FOUND && (lookahead == '\n' || lookahead == '\r')) { + ws_directive = CONTINUE_PARSING_TOKEN_FOUND; + } + } + + enum ParseDirective any_comment = CONTINUE_PARSING_NOTHING_FOUND; + if (ws_directive == CONTINUE_PARSING_TOKEN_FOUND && lookahead == '/') { + bool has_seen_single_comment = false; + while (lexer->lookahead == '/') { + // It's possible that this is a comment - start an exploratory mission to find out, and if it is, look for what + // comes after it. We care about what comes after it for the purpose of suppressing the newline. + + enum TokenType multiline_comment_result; + any_comment = eat_comment(lexer, valid_symbols, /* mark_end */ false, &multiline_comment_result); + if (any_comment == STOP_PARSING_TOKEN_FOUND) { + // This is a multiline comment. This scanner should be parsing those, so we might want to bail out and + // emit it instead. However, we only want to do that if we haven't advanced through a _single_ line + // comment on the way - otherwise that will get lumped into this. + if (!has_seen_single_comment) { + lexer->mark_end(lexer); + *symbol_result = multiline_comment_result; + return STOP_PARSING_TOKEN_FOUND; + } + } else if (any_comment == STOP_PARSING_END_OF_FILE) { + return STOP_PARSING_END_OF_FILE; + } else if (any_comment == CONTINUE_PARSING_SLASH_CONSUMED) { + // We accidentally ate a slash -- we should actually bail out, say we saw nothing, and let the next pass + // take it from after the newline. + return CONTINUE_PARSING_SLASH_CONSUMED; + } else if (lexer->lookahead == '/') { + // There wasn't a multiline comment, which we know means that the comment parser ate its `/` and then + // bailed out. If it had seen anything comment-like after that first `/` it would have continued going + // and eventually had a well-formed comment or an EOF. Thus, if we're currently looking at a `/`, it's + // the second one of those and it means we have a single-line comment. + has_seen_single_comment = true; + while (lexer->lookahead != '\n' && lexer->lookahead != '\0') { + lexer->advance(lexer, true); + } + } else if (iswspace(lexer->lookahead)) { + // We didn't see any type of comment - in fact, we saw an operator that we don't normally treat as an + // operator. Still, this is a reason to stop parsing. + return STOP_PARSING_NOTHING_FOUND; + } + + // If we skipped through some comment, we're at whitespace now, so advance. + while(iswspace(lexer->lookahead)) { + any_comment = CONTINUE_PARSING_NOTHING_FOUND; // We're advancing, so clear out the comment + lexer->advance(lexer, true); + } + } + + enum TokenType operator_result; + bool saw_operator = eat_operators( + lexer, + valid_symbols, + /* mark_end */ false, + '\0', + &operator_result + ); + if (saw_operator) { + // The operator we saw should suppress the newline, so bail out. + return STOP_PARSING_NOTHING_FOUND; + } else { + // Promote the implicit newline to an explicit one so we don't check for operators again. + *symbol_result = IMPLICIT_SEMI; + ws_directive = STOP_PARSING_TOKEN_FOUND; + } + } + + // Let's consume operators that can live after a "semicolon" style newline. Before we do that, though, we want to + // check for a set of characters that we do not consume, but that still suppress the semi. + if (ws_directive == CONTINUE_PARSING_TOKEN_FOUND) { + for (int i = 0; i < NON_CONSUMING_CROSS_SEMI_CHAR_COUNT; i++) { + if (NON_CONSUMING_CROSS_SEMI_CHARS[i] == lookahead) { + return CONTINUE_PARSING_NOTHING_FOUND; + } + } + } + + if (semi_is_valid && ws_directive != CONTINUE_PARSING_NOTHING_FOUND) { + *symbol_result = lookahead == ';' ? EXPLICIT_SEMI : IMPLICIT_SEMI; + return ws_directive; + } + + return CONTINUE_PARSING_NOTHING_FOUND; +} + +#define DIRECTIVE_COUNT 4 +const char* DIRECTIVES[OPERATOR_COUNT] = { + "if", + "elseif", + "else", + "endif" +}; + +const enum TokenType DIRECTIVE_SYMBOLS[DIRECTIVE_COUNT] = { + DIRECTIVE_IF, + DIRECTIVE_ELSEIF, + DIRECTIVE_ELSE, + DIRECTIVE_ENDIF +}; + +static enum TokenType find_possible_compiler_directive(TSLexer *lexer) { + bool possible_directives[DIRECTIVE_COUNT]; + for (int dir_idx = 0; dir_idx < DIRECTIVE_COUNT; dir_idx++) { + possible_directives[dir_idx] = true; + } + + int32_t str_idx = 0; + int32_t full_match = -1; + while(true) { + for (int dir_idx = 0; dir_idx < DIRECTIVE_COUNT; dir_idx++) { + if (!possible_directives[dir_idx]) { + continue; + } + + uint8_t expected_char = DIRECTIVES[dir_idx][str_idx]; + if (expected_char == '\0') { + full_match = dir_idx; + lexer->mark_end(lexer); + } + + if (expected_char != lexer->lookahead) { + possible_directives[dir_idx] = false; + continue; + } + } + + uint8_t match_count = 0; + for (int dir_idx = 0; dir_idx < DIRECTIVE_COUNT; dir_idx += 1) { + if (possible_directives[dir_idx]) { + match_count += 1; + } + } + + if (match_count == 0) { + break; + } + + lexer->advance(lexer, false); + str_idx += 1; + } + + if (full_match == -1) { + // No compiler directive found, so just match the starting symbol + return HASH_SYMBOL; + } + + return DIRECTIVE_SYMBOLS[full_match]; +} + +static bool eat_raw_str_part( + struct ScannerState *state, + TSLexer *lexer, + const bool *valid_symbols, + enum TokenType *symbol_result +) { + uint32_t hash_count = state->ongoing_raw_str_hash_count; + if (!valid_symbols[RAW_STR_PART]) { + return false; + } else if (hash_count == 0) { + // If this is a raw_str_part, it's the first one - look for hashes + while (lexer->lookahead == '#') { + hash_count += 1; + advance(lexer); + } + + if (hash_count == 0) { + return false; + } + + if (lexer->lookahead == '"') { + advance(lexer); + } else if (hash_count == 1) { + lexer->mark_end(lexer); + *symbol_result = find_possible_compiler_directive(lexer); + return true; + } else { + return false; + } + + } else if (valid_symbols[RAW_STR_CONTINUING_INDICATOR]) { + // This is the end of an interpolation - now it's another raw_str_part. This is a synthetic + // marker to tell us that the grammar just consumed a `(` symbol to close a raw + // interpolation (since we don't want to fire on every `(` in existence). We don't have + // anything to do except continue. + } else { + return false; + } + + // We're in a state where anything other than `hash_count` hash symbols in a row should be eaten + // and is part of a string. + // The last character _before_ the hashes will tell us what happens next. + // Matters are also complicated by the fact that we don't want to consume every character we + // visit; if we see a `\#(`, for instance, with the appropriate number of hash symbols, we want + // to end our parsing _before_ that sequence. This allows highlighting tools to treat that as a + // separate token. + while (lexer->lookahead != '\0') { + uint8_t last_char = '\0'; + lexer->mark_end(lexer); // We always want to parse thru the start of the string so far + // Advance through anything that isn't a hash symbol, because we want to count those. + while (lexer->lookahead != '#' && lexer->lookahead != '\0') { + last_char = lexer->lookahead; + advance(lexer); + if (last_char != '\\' || lexer->lookahead == '\\') { + // Mark a new end, but only if we didn't just advance past a `\` symbol, since we + // don't want to consume that. Exception: if this is a `\` that happens _right + // after_ another `\`, we for some reason _do_ want to consume that, because + // apparently that is parsed as a literal `\` followed by something escaped. + lexer->mark_end(lexer); + } + } + + // We hit at least one hash - count them and see if they match. + uint32_t current_hash_count = 0; + while (lexer->lookahead == '#' && current_hash_count < hash_count) { + current_hash_count += 1; + advance(lexer); + } + + // If we saw exactly the right number of hashes, one of three things is true: + // 1. We're trying to interpolate into this string. + // 2. The string just ended. + // 3. This was just some hash characters doing nothing important. + if (current_hash_count == hash_count) { + if (last_char == '\\' && lexer->lookahead == '(') { + // Interpolation case! Don't consume those chars; they get saved for grammar.js. + *symbol_result = RAW_STR_PART; + state->ongoing_raw_str_hash_count = hash_count; + return true; + } else if (last_char == '"') { + // The string is finished! Mark the end here, on the very last hash symbol. + lexer->mark_end(lexer); + *symbol_result = RAW_STR_END_PART; + state->ongoing_raw_str_hash_count = 0; + return true; + } + // Nothing special happened - let the string continue. + } + } + + return false; +} + +bool tree_sitter_swift_external_scanner_scan( + void *payload, + TSLexer *lexer, + const bool *valid_symbols +) { + // Figure out our scanner state + struct ScannerState *state = (struct ScannerState *)payload; + + // Consume any whitespace at the start. + enum TokenType ws_result; + enum ParseDirective ws_directive = eat_whitespace(lexer, valid_symbols, &ws_result); + if (ws_directive == STOP_PARSING_TOKEN_FOUND) { + lexer->result_symbol = ws_result; + return true; + } + + if (ws_directive == STOP_PARSING_NOTHING_FOUND || ws_directive == STOP_PARSING_END_OF_FILE) { + return false; + } + + bool has_ws_result = (ws_directive == CONTINUE_PARSING_TOKEN_FOUND); + + // Now consume comments (before custom operators so that those aren't treated as comments) + enum TokenType comment_result; + enum ParseDirective comment = ws_directive == CONTINUE_PARSING_SLASH_CONSUMED ? ws_directive : eat_comment(lexer, valid_symbols, /* mark_end */ true, &comment_result); + if (comment == STOP_PARSING_TOKEN_FOUND) { + lexer->mark_end(lexer); + lexer->result_symbol = comment_result; + return true; + } + + if (comment == STOP_PARSING_END_OF_FILE) { + return false; + } + // Now consume any operators that might cause our whitespace to be suppressed. + enum TokenType operator_result; + bool saw_operator = eat_operators( + lexer, + valid_symbols, + /* mark_end */ !has_ws_result, + comment == CONTINUE_PARSING_SLASH_CONSUMED ? '/' : '\0', + &operator_result + ); + + if (saw_operator && (!has_ws_result || is_cross_semi_token(operator_result))) { + lexer->result_symbol = operator_result; + if (has_ws_result) lexer->mark_end(lexer); + return true; + } + + if (has_ws_result) { + // Don't `mark_end`, since we may have advanced through some operators. + lexer->result_symbol = ws_result; + return true; + } + + // NOTE: this will consume any `#` characters it sees, even if it does not find a result. Keep + // it at the end so that it doesn't interfere with special literals or selectors! + enum TokenType raw_str_result; + bool saw_raw_str_part = eat_raw_str_part(state, lexer, valid_symbols, &raw_str_result); + if (saw_raw_str_part) { + lexer->result_symbol = raw_str_result; + return true; + } + + return false; +} + diff --git a/unified/extractor/tree-sitter-swift/src/tree_sitter/alloc.h b/unified/extractor/tree-sitter-swift/src/tree_sitter/alloc.h new file mode 100644 index 000000000000..1f4466d75c40 --- /dev/null +++ b/unified/extractor/tree-sitter-swift/src/tree_sitter/alloc.h @@ -0,0 +1,54 @@ +#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 new file mode 100644 index 000000000000..15a3b233bbb8 --- /dev/null +++ b/unified/extractor/tree-sitter-swift/src/tree_sitter/array.h @@ -0,0 +1,290 @@ +#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 new file mode 100644 index 000000000000..799f599bd4e2 --- /dev/null +++ b/unified/extractor/tree-sitter-swift/src/tree_sitter/parser.h @@ -0,0 +1,266 @@ +#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_ diff --git a/unified/extractor/tree-sitter-swift/tree-sitter.json b/unified/extractor/tree-sitter-swift/tree-sitter.json new file mode 100644 index 000000000000..3cd49a28a38f --- /dev/null +++ b/unified/extractor/tree-sitter-swift/tree-sitter.json @@ -0,0 +1,39 @@ +{ + "grammars": [ + { + "name": "swift", + "camelcase": "Swift", + "scope": "source.swift", + "path": ".", + "file-types": [ + "swift" + ], + "highlights": "queries/highlights.scm", + "injections": "queries/injections.scm", + "locals": "queries/locals.scm", + "injection-regex": "swift" + } + ], + "metadata": { + "version": "0.7.2", + "license": "MIT", + "description": "A tree-sitter grammar for the Swift programming language.", + "authors": [ + { + "name": "Alex Pinkus", + "email": "alex.pinkus@gmail.com" + } + ], + "links": { + "repository": "git+https://github.com/alex-pinkus/tree-sitter-swift.git" + } + }, + "bindings": { + "c": true, + "go": true, + "node": true, + "python": true, + "rust": true, + "swift": true + } +} From 60d6429b5d880d5bf22d652742f3b4747f56c161 Mon Sep 17 00:00:00 2001 From: Taus Date: Fri, 8 May 2026 13:41:45 +0000 Subject: [PATCH 223/260] unified: update build dependencies --- Cargo.lock | 2 - Cargo.toml | 1 + MODULE.bazel | 3 +- .../tree_sitter_extractors_deps/BUILD.bazel | 24 +++ .../BUILD.tree-sitter-swift-0.7.2.bazel | 166 ------------------ .../tree_sitter_extractors_deps/defs.bzl | 48 +++-- unified/extractor/BUILD.bazel | 1 + unified/extractor/Cargo.toml | 2 +- 8 files changed, 65 insertions(+), 182 deletions(-) delete mode 100644 misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.tree-sitter-swift-0.7.2.bazel diff --git a/Cargo.lock b/Cargo.lock index 856e6fb42e6f..5070bfb7c045 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2944,8 +2944,6 @@ dependencies = [ [[package]] name = "tree-sitter-swift" version = "0.7.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f3b98fb6bc8e6a6a10023f401aa6a1858115e849dfaf7de57dd8b8ea0f257bd9" dependencies = [ "cc", "tree-sitter-language", diff --git a/Cargo.toml b/Cargo.toml index 4054c3a50bee..62eb2e7e920c 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -8,6 +8,7 @@ members = [ "shared/yeast-macros", "ruby/extractor", "unified/extractor", + "unified/extractor/tree-sitter-swift", "rust/extractor", "rust/extractor/macros", "rust/ast-generator", diff --git a/MODULE.bazel b/MODULE.bazel index ee40f7789e4c..b0667e120aa6 100644 --- a/MODULE.bazel +++ b/MODULE.bazel @@ -102,6 +102,7 @@ use_repo( tree_sitter_extractors_deps, "vendor_ts__anyhow-1.0.100", "vendor_ts__argfile-0.2.1", + "vendor_ts__cc-1.2.61", "vendor_ts__chalk-ir-0.104.0", "vendor_ts__chrono-0.4.42", "vendor_ts__clap-4.5.48", @@ -150,10 +151,10 @@ use_repo( "vendor_ts__tree-sitter-0.26.8", "vendor_ts__tree-sitter-embedded-template-0.25.0", "vendor_ts__tree-sitter-json-0.24.8", + "vendor_ts__tree-sitter-language-0.1.5", "vendor_ts__tree-sitter-python-0.23.6", "vendor_ts__tree-sitter-ql-0.23.1", "vendor_ts__tree-sitter-ruby-0.23.1", - "vendor_ts__tree-sitter-swift-0.7.2", "vendor_ts__triomphe-0.1.14", "vendor_ts__ungrammar-1.16.1", "vendor_ts__zstd-0.13.3", diff --git a/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.bazel b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.bazel index 1d1b47192a26..e296288f189c 100644 --- a/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.bazel +++ b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.bazel @@ -55,6 +55,18 @@ alias( tags = ["manual"], ) +alias( + name = "cc-1.2.61", + actual = "@vendor_ts__cc-1.2.61//:cc", + tags = ["manual"], +) + +alias( + name = "cc", + actual = "@vendor_ts__cc-1.2.61//:cc", + tags = ["manual"], +) + alias( name = "chalk-ir-0.104.0", actual = "@vendor_ts__chalk-ir-0.104.0//:chalk_ir", @@ -637,6 +649,18 @@ alias( tags = ["manual"], ) +alias( + name = "tree-sitter-language-0.1.5", + actual = "@vendor_ts__tree-sitter-language-0.1.5//:tree_sitter_language", + tags = ["manual"], +) + +alias( + name = "tree-sitter-language", + actual = "@vendor_ts__tree-sitter-language-0.1.5//:tree_sitter_language", + tags = ["manual"], +) + alias( name = "tree-sitter-python-0.23.6", actual = "@vendor_ts__tree-sitter-python-0.23.6//:tree_sitter_python", diff --git a/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.tree-sitter-swift-0.7.2.bazel b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.tree-sitter-swift-0.7.2.bazel deleted file mode 100644 index f9bb6fa50c38..000000000000 --- a/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.tree-sitter-swift-0.7.2.bazel +++ /dev/null @@ -1,166 +0,0 @@ -############################################################################### -# @generated -# DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To -# regenerate this file, run the following: -# -# bazel run @@//misc/bazel/3rdparty:vendor_tree_sitter_extractors -############################################################################### - -load( - "@rules_rust//cargo:defs.bzl", - "cargo_build_script", - "cargo_toml_env_vars", -) -load("@rules_rust//rust:defs.bzl", "rust_library") - -package(default_visibility = ["//visibility:public"]) - -cargo_toml_env_vars( - name = "cargo_toml_env_vars", - src = "Cargo.toml", -) - -rust_library( - name = "tree_sitter_swift", - srcs = glob( - include = ["**/*.rs"], - allow_empty = True, - ), - compile_data = glob( - include = ["**"], - allow_empty = True, - exclude = [ - "**/* *", - ".tmp_git_root/**/*", - "BUILD", - "BUILD.bazel", - "WORKSPACE", - "WORKSPACE.bazel", - ], - ), - crate_root = "bindings/rust/lib.rs", - edition = "2018", - rustc_env_files = [ - ":cargo_toml_env_vars", - ], - rustc_flags = [ - "--cap-lints=allow", - ], - tags = [ - "cargo-bazel", - "crate-name=tree-sitter-swift", - "manual", - "noclippy", - "norustfmt", - ], - target_compatible_with = select({ - "@rules_rust//rust/platform:aarch64-apple-darwin": [], - "@rules_rust//rust/platform:aarch64-apple-ios": [], - "@rules_rust//rust/platform:aarch64-apple-ios-sim": [], - "@rules_rust//rust/platform:aarch64-linux-android": [], - "@rules_rust//rust/platform:aarch64-pc-windows-msvc": [], - "@rules_rust//rust/platform:aarch64-unknown-fuchsia": [], - "@rules_rust//rust/platform:aarch64-unknown-linux-gnu": [], - "@rules_rust//rust/platform:aarch64-unknown-nixos-gnu": [], - "@rules_rust//rust/platform:aarch64-unknown-nto-qnx710": [], - "@rules_rust//rust/platform:aarch64-unknown-uefi": [], - "@rules_rust//rust/platform:arm-unknown-linux-gnueabi": [], - "@rules_rust//rust/platform:arm-unknown-linux-musleabi": [], - "@rules_rust//rust/platform:armv7-linux-androideabi": [], - "@rules_rust//rust/platform:armv7-unknown-linux-gnueabi": [], - "@rules_rust//rust/platform:i686-apple-darwin": [], - "@rules_rust//rust/platform:i686-linux-android": [], - "@rules_rust//rust/platform:i686-pc-windows-msvc": [], - "@rules_rust//rust/platform:i686-unknown-freebsd": [], - "@rules_rust//rust/platform:i686-unknown-linux-gnu": [], - "@rules_rust//rust/platform:powerpc-unknown-linux-gnu": [], - "@rules_rust//rust/platform:riscv32imc-unknown-none-elf": [], - "@rules_rust//rust/platform:riscv64gc-unknown-linux-gnu": [], - "@rules_rust//rust/platform:riscv64gc-unknown-none-elf": [], - "@rules_rust//rust/platform:s390x-unknown-linux-gnu": [], - "@rules_rust//rust/platform:thumbv7em-none-eabi": [], - "@rules_rust//rust/platform:thumbv8m.main-none-eabi": [], - "@rules_rust//rust/platform:wasm32-unknown-emscripten": [], - "@rules_rust//rust/platform:wasm32-unknown-unknown": [], - "@rules_rust//rust/platform:wasm32-wasip1": [], - "@rules_rust//rust/platform:wasm32-wasip1-threads": [], - "@rules_rust//rust/platform:wasm32-wasip2": [], - "@rules_rust//rust/platform:x86_64-apple-darwin": [], - "@rules_rust//rust/platform:x86_64-apple-ios": [], - "@rules_rust//rust/platform:x86_64-linux-android": [], - "@rules_rust//rust/platform:x86_64-pc-windows-msvc": [], - "@rules_rust//rust/platform:x86_64-unknown-freebsd": [], - "@rules_rust//rust/platform:x86_64-unknown-fuchsia": [], - "@rules_rust//rust/platform:x86_64-unknown-linux-gnu": [], - "@rules_rust//rust/platform:x86_64-unknown-nixos-gnu": [], - "@rules_rust//rust/platform:x86_64-unknown-none": [], - "@rules_rust//rust/platform:x86_64-unknown-uefi": [], - "//conditions:default": ["@platforms//:incompatible"], - }), - version = "0.7.2", - deps = [ - "@vendor_ts__tree-sitter-language-0.1.5//:tree_sitter_language", - "@vendor_ts__tree-sitter-swift-0.7.2//:build_script_build", - ], -) - -cargo_build_script( - name = "_bs", - srcs = glob( - include = ["**/*.rs"], - allow_empty = True, - ), - compile_data = glob( - include = ["**"], - allow_empty = True, - exclude = [ - "**/* *", - "**/*.rs", - ".tmp_git_root/**/*", - "BUILD", - "BUILD.bazel", - "WORKSPACE", - "WORKSPACE.bazel", - ], - ), - crate_name = "build_script_build", - crate_root = "bindings/rust/build.rs", - data = glob( - include = ["**"], - allow_empty = True, - exclude = [ - "**/* *", - ".tmp_git_root/**/*", - "BUILD", - "BUILD.bazel", - "WORKSPACE", - "WORKSPACE.bazel", - ], - ), - edition = "2018", - pkg_name = "tree-sitter-swift", - rustc_env_files = [ - ":cargo_toml_env_vars", - ], - rustc_flags = [ - "--cap-lints=allow", - ], - tags = [ - "cargo-bazel", - "crate-name=tree-sitter-swift", - "manual", - "noclippy", - "norustfmt", - ], - version = "0.7.2", - visibility = ["//visibility:private"], - deps = [ - "@vendor_ts__cc-1.2.61//:cc", - ], -) - -alias( - name = "build_script_build", - actual = ":_bs", - tags = ["manual"], -) diff --git a/misc/bazel/3rdparty/tree_sitter_extractors_deps/defs.bzl b/misc/bazel/3rdparty/tree_sitter_extractors_deps/defs.bzl index 4f70edd6ab37..aa4755432f23 100644 --- a/misc/bazel/3rdparty/tree_sitter_extractors_deps/defs.bzl +++ b/misc/bazel/3rdparty/tree_sitter_extractors_deps/defs.bzl @@ -415,7 +415,11 @@ _NORMAL_DEPENDENCIES = { "tracing-subscriber": Label("@vendor_ts__tracing-subscriber-0.3.20//:tracing_subscriber"), "tree-sitter": Label("@vendor_ts__tree-sitter-0.26.8//:tree_sitter"), "tree-sitter-embedded-template": Label("@vendor_ts__tree-sitter-embedded-template-0.25.0//:tree_sitter_embedded_template"), - "tree-sitter-swift": Label("@vendor_ts__tree-sitter-swift-0.7.2//:tree_sitter_swift"), + }, + }, + "unified/extractor/tree-sitter-swift": { + _COMMON_CONDITION: { + "tree-sitter-language": Label("@vendor_ts__tree-sitter-language-0.1.5//:tree_sitter_language"), }, }, } @@ -456,6 +460,10 @@ _NORMAL_ALIASES = { _COMMON_CONDITION: { }, }, + "unified/extractor/tree-sitter-swift": { + _COMMON_CONDITION: { + }, + }, } _NORMAL_DEV_DEPENDENCIES = { @@ -482,6 +490,8 @@ _NORMAL_DEV_DEPENDENCIES = { }, "unified/extractor": { }, + "unified/extractor/tree-sitter-swift": { + }, } _NORMAL_DEV_ALIASES = { @@ -505,6 +515,8 @@ _NORMAL_DEV_ALIASES = { }, "unified/extractor": { }, + "unified/extractor/tree-sitter-swift": { + }, } _PROC_MACRO_DEPENDENCIES = { @@ -526,6 +538,8 @@ _PROC_MACRO_DEPENDENCIES = { }, "unified/extractor": { }, + "unified/extractor/tree-sitter-swift": { + }, } _PROC_MACRO_ALIASES = { @@ -547,6 +561,8 @@ _PROC_MACRO_ALIASES = { }, "unified/extractor": { }, + "unified/extractor/tree-sitter-swift": { + }, } _PROC_MACRO_DEV_DEPENDENCIES = { @@ -568,6 +584,8 @@ _PROC_MACRO_DEV_DEPENDENCIES = { }, "unified/extractor": { }, + "unified/extractor/tree-sitter-swift": { + }, } _PROC_MACRO_DEV_ALIASES = { @@ -591,6 +609,8 @@ _PROC_MACRO_DEV_ALIASES = { }, "unified/extractor": { }, + "unified/extractor/tree-sitter-swift": { + }, } _BUILD_DEPENDENCIES = { @@ -612,6 +632,11 @@ _BUILD_DEPENDENCIES = { }, "unified/extractor": { }, + "unified/extractor/tree-sitter-swift": { + _COMMON_CONDITION: { + "cc": Label("@vendor_ts__cc-1.2.61//:cc"), + }, + }, } _BUILD_ALIASES = { @@ -633,6 +658,10 @@ _BUILD_ALIASES = { }, "unified/extractor": { }, + "unified/extractor/tree-sitter-swift": { + _COMMON_CONDITION: { + }, + }, } _BUILD_PROC_MACRO_DEPENDENCIES = { @@ -654,6 +683,8 @@ _BUILD_PROC_MACRO_DEPENDENCIES = { }, "unified/extractor": { }, + "unified/extractor/tree-sitter-swift": { + }, } _BUILD_PROC_MACRO_ALIASES = { @@ -675,6 +706,8 @@ _BUILD_PROC_MACRO_ALIASES = { }, "unified/extractor": { }, + "unified/extractor/tree-sitter-swift": { + }, } _CONDITIONS = { @@ -3536,16 +3569,6 @@ def crate_repositories(): build_file = Label("//misc/bazel/3rdparty/tree_sitter_extractors_deps:BUILD.tree-sitter-ruby-0.23.1.bazel"), ) - maybe( - http_archive, - name = "vendor_ts__tree-sitter-swift-0.7.2", - sha256 = "f3b98fb6bc8e6a6a10023f401aa6a1858115e849dfaf7de57dd8b8ea0f257bd9", - type = "tar.gz", - urls = ["https://static.crates.io/crates/tree-sitter-swift/0.7.2/download"], - strip_prefix = "tree-sitter-swift-0.7.2", - build_file = Label("//misc/bazel/3rdparty/tree_sitter_extractors_deps:BUILD.tree-sitter-swift-0.7.2.bazel"), - ) - maybe( http_archive, name = "vendor_ts__triomphe-0.1.14", @@ -4239,6 +4262,7 @@ def crate_repositories(): return [ struct(repo = "vendor_ts__anyhow-1.0.100", is_dev_dep = False), struct(repo = "vendor_ts__argfile-0.2.1", is_dev_dep = False), + struct(repo = "vendor_ts__cc-1.2.61", is_dev_dep = False), struct(repo = "vendor_ts__chalk-ir-0.104.0", is_dev_dep = False), struct(repo = "vendor_ts__chrono-0.4.42", is_dev_dep = False), struct(repo = "vendor_ts__clap-4.5.48", is_dev_dep = False), @@ -4285,9 +4309,9 @@ def crate_repositories(): struct(repo = "vendor_ts__tracing-subscriber-0.3.20", is_dev_dep = False), struct(repo = "vendor_ts__tree-sitter-0.26.8", is_dev_dep = False), struct(repo = "vendor_ts__tree-sitter-embedded-template-0.25.0", is_dev_dep = False), + struct(repo = "vendor_ts__tree-sitter-language-0.1.5", is_dev_dep = False), struct(repo = "vendor_ts__tree-sitter-python-0.23.6", is_dev_dep = False), struct(repo = "vendor_ts__tree-sitter-ruby-0.23.1", is_dev_dep = False), - struct(repo = "vendor_ts__tree-sitter-swift-0.7.2", is_dev_dep = False), struct(repo = "vendor_ts__triomphe-0.1.14", is_dev_dep = False), struct(repo = "vendor_ts__ungrammar-1.16.1", is_dev_dep = False), struct(repo = "vendor_ts__zstd-0.13.3", is_dev_dep = False), diff --git a/unified/extractor/BUILD.bazel b/unified/extractor/BUILD.bazel index 5a53d7cc3e07..80ca1c0057b3 100644 --- a/unified/extractor/BUILD.bazel +++ b/unified/extractor/BUILD.bazel @@ -16,5 +16,6 @@ codeql_rust_binary( ) + [ "//shared/tree-sitter-extractor", "//shared/yeast", + "//unified/extractor/tree-sitter-swift", ], ) diff --git a/unified/extractor/Cargo.toml b/unified/extractor/Cargo.toml index 3877ec2e106f..39c20598b1ff 100644 --- a/unified/extractor/Cargo.toml +++ b/unified/extractor/Cargo.toml @@ -9,7 +9,7 @@ edition = "2024" [dependencies] tree-sitter = ">= 0.23.0" tree-sitter-embedded-template = "0.25.0" -tree-sitter-swift = "0.7.2" +tree-sitter-swift = { path = "tree-sitter-swift" } clap = { version = "4.5", features = ["derive"] } tracing = "0.1" tracing-subscriber = { version = "0.3.20", features = ["env-filter"] } From 8f9d5c5217faadeb13b8d04db59363bed63dd932 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 11 May 2026 03:06:30 +0000 Subject: [PATCH 224/260] Bump the extractor-dependencies group in /go/extractor with 2 updates Bumps the extractor-dependencies group in /go/extractor with 2 updates: [golang.org/x/mod](https://github.com/golang/mod) and [golang.org/x/tools](https://github.com/golang/tools). Updates `golang.org/x/mod` from 0.35.0 to 0.36.0 - [Commits](https://github.com/golang/mod/compare/v0.35.0...v0.36.0) Updates `golang.org/x/tools` from 0.44.0 to 0.45.0 - [Release notes](https://github.com/golang/tools/releases) - [Commits](https://github.com/golang/tools/compare/v0.44.0...v0.45.0) --- updated-dependencies: - dependency-name: golang.org/x/mod dependency-version: 0.36.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: extractor-dependencies - dependency-name: golang.org/x/tools dependency-version: 0.45.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: extractor-dependencies ... Signed-off-by: dependabot[bot] --- go/extractor/go.mod | 4 ++-- go/extractor/go.sum | 8 ++++---- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/go/extractor/go.mod b/go/extractor/go.mod index 18415e544020..25c8e3d0e5d2 100644 --- a/go/extractor/go.mod +++ b/go/extractor/go.mod @@ -9,8 +9,8 @@ toolchain go1.26.0 // when adding or removing dependencies, run // bazel mod tidy require ( - golang.org/x/mod v0.35.0 - golang.org/x/tools v0.44.0 + golang.org/x/mod v0.36.0 + golang.org/x/tools v0.45.0 ) require github.com/stretchr/testify v1.11.1 diff --git a/go/extractor/go.sum b/go/extractor/go.sum index 89e151102bd8..660ae874a65c 100644 --- a/go/extractor/go.sum +++ b/go/extractor/go.sum @@ -6,12 +6,12 @@ github.com/pmezard/go-difflib v1.0.0 h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZb github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4= github.com/stretchr/testify v1.11.1 h1:7s2iGBzp5EwR7/aIZr8ao5+dra3wiQyKjjFuvgVKu7U= github.com/stretchr/testify v1.11.1/go.mod h1:wZwfW3scLgRK+23gO65QZefKpKQRnfz6sD981Nm4B6U= -golang.org/x/mod v0.35.0 h1:Ww1D637e6Pg+Zb2KrWfHQUnH2dQRLBQyAtpr/haaJeM= -golang.org/x/mod v0.35.0/go.mod h1:+GwiRhIInF8wPm+4AoT6L0FA1QWAad3OMdTRx4tFYlU= +golang.org/x/mod v0.36.0 h1:JJjpVx6myfUsUdAzZuOSTTmRE0PfZeNWzzvKrP7amb4= +golang.org/x/mod v0.36.0/go.mod h1:moc6ELqsWcOw5Ef3xVprK5ul/MvtVvkIXLziUOICjUQ= golang.org/x/sync v0.20.0 h1:e0PTpb7pjO8GAtTs2dQ6jYa5BWYlMuX047Dco/pItO4= golang.org/x/sync v0.20.0/go.mod h1:9xrNwdLfx4jkKbNva9FpL6vEN7evnE43NNNJQ2LF3+0= -golang.org/x/tools v0.44.0 h1:UP4ajHPIcuMjT1GqzDWRlalUEoY+uzoZKnhOjbIPD2c= -golang.org/x/tools v0.44.0/go.mod h1:KA0AfVErSdxRZIsOVipbv3rQhVXTnlU6UhKxHd1seDI= +golang.org/x/tools v0.45.0 h1:18qN3FAooORvApf5XjCXgsuayZOEtXf6JK18I3+ONa8= +golang.org/x/tools v0.45.0/go.mod h1:LuUGqqaXcXMEFEruIVJVm5mgDD8vww/z/SR1gQ4uE/0= gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405 h1:yhCVgyC4o1eVCa2tZl7eS0r+SDo693bJlVdllGtEeKM= gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0= gopkg.in/yaml.v3 v3.0.1 h1:fxVm/GzAzEWqLHuvctI91KS9hhNmmWOoWu0XTYJS7CA= From 3ef4a5836c9aa5b1034cf27c1fa67509b5a93764 Mon Sep 17 00:00:00 2001 From: Arieh Schneier <15041913+AriehSchneier@users.noreply.github.com> Date: Mon, 11 May 2026 13:42:17 +1000 Subject: [PATCH 225/260] Fix Go extractor to extract root internal test files MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit When CODEQL_EXTRACTOR_GO_OPTION_EXTRACT_TESTS=true is set, the Go extractor was incorrectly skipping internal test files (package foo) at repository roots when the project contains nested test packages. Root Cause: The extractor selected package variants by longest ID string, but this heuristic fails when nested packages have tests. For a package like "github.com/go-git/go-git/v6", packages.Load returns multiple variants: 1. "github.com/go-git/go-git/v6" (19 files, production only) 2. "github.com/go-git/go-git/v6 [github.com/go-git/go-git/v6.test]" (39 files, production + 20 root tests) ← Should select this 3. "github.com/go-git/go-git/v6 [github.com/go-git/go-git/v6/plumbing/format/packfile.test]" (19 files, test dependency) ← Was incorrectly selected (longest string) The old logic selected variant #3 (76 chars) over #2 (68 chars), causing 20 root test files to be missing from the database. Fix: Replace string length comparison with a better heuristic that prefers: 1. Exact test packages (e.g., "pkg [pkg.test]") over nested dependencies 2. Packages with more Syntax nodes (more files to extract) 3. String length as a tiebreaker This ensures the extractor selects the variant with the most complete test coverage, particularly for root-level internal tests. Testing: - Added comprehensive unit tests covering the selection logic - Tests simulate the real-world go-git scenario - All tests pass Impact: Root-level external tests (package foo_test) were already extracted correctly. This fix ensures internal tests (package foo) at the root are now also extracted when they exist alongside nested test packages. Co-Authored-By: Claude Sonnet 4.5 --- go/extractor/extractor.go | 68 +++++++-- go/extractor/extractor_test.go | 255 +++++++++++++++++++++++++++++++++ 2 files changed, 309 insertions(+), 14 deletions(-) create mode 100644 go/extractor/extractor_test.go diff --git a/go/extractor/extractor.go b/go/extractor/extractor.go index bbcd32c10d24..c9ac7c6088a8 100644 --- a/go/extractor/extractor.go +++ b/go/extractor/extractor.go @@ -59,6 +59,44 @@ func init() { } } +// isExactTestPackage checks if a package ID represents an exact test match. +// Returns true for IDs like "github.com/foo/bar [github.com/foo/bar.test]" +// Returns false for IDs like "github.com/foo/bar [github.com/foo/bar/nested.test]" +func isExactTestPackage(pkg *packages.Package) bool { + // Test packages have IDs in the format: "pkgpath [pkgpath.test]" + // or for nested test dependencies: "pkgpath [pkgpath/nested.test]" + if !strings.Contains(pkg.ID, " [") { + return false + } + expectedTestID := pkg.PkgPath + " [" + pkg.PkgPath + ".test]" + return pkg.ID == expectedTestID +} + +// isBetterPackage determines if pkg is a better choice than current for extraction. +// Preferences: +// 1. Exact test package (e.g., "pkg [pkg.test]") over nested test dependencies +// 2. More Syntax nodes (more files to extract) +// 3. Longer ID string as tiebreaker +func isBetterPackage(pkg, current *packages.Package) bool { + pkgIsExact := isExactTestPackage(pkg) + currentIsExact := isExactTestPackage(current) + + // Prefer exact test packages + if pkgIsExact != currentIsExact { + return pkgIsExact + } + + // Prefer packages with more syntax nodes (more files) + pkgSyntaxCount := len(pkg.Syntax) + currentSyntaxCount := len(current.Syntax) + if pkgSyntaxCount != currentSyntaxCount { + return pkgSyntaxCount > currentSyntaxCount + } + + // Fall back to string length + return len(pkg.ID) > len(current.ID) +} + // ExtractWithFlags extracts the packages specified by the given patterns and build flags func ExtractWithFlags(buildFlags []string, patterns []string, extractTests bool, sourceRoot string) error { startTime := time.Now() @@ -153,20 +191,22 @@ func ExtractWithFlags(buildFlags []string, patterns []string, extractTests bool, pkgsNotFound := make([]string, 0, len(pkgs)) - // Build a map from package paths to their longest IDs-- + // Build a map from package paths to their best IDs-- // in the context of a `go test -c` compilation, we will see the same package more than // once, with IDs like "abc.com/pkgname [abc.com/pkgname.test]" to distinguish the version // that contains and is used by test code. - // For our purposes it is simplest to just ignore the non-test version, since the test - // version seems to be a superset of it. - longestPackageIds := make(map[string]string) + // We prefer the version with the most complete test coverage, which is typically: + // 1. The exact test package (e.g., "pkg [pkg.test]") over nested test dependencies + // 2. The package with the most Syntax nodes (most files to extract) + // 3. The longest ID string as a tiebreaker + bestPackageIds := make(map[string]*packages.Package) packages.Visit(pkgs, nil, func(pkg *packages.Package) { - if longestIDSoFar, present := longestPackageIds[pkg.PkgPath]; present { - if len(pkg.ID) > len(longestIDSoFar) { - longestPackageIds[pkg.PkgPath] = pkg.ID + if bestSoFar, present := bestPackageIds[pkg.PkgPath]; present { + if isBetterPackage(pkg, bestSoFar) { + bestPackageIds[pkg.PkgPath] = pkg } } else { - longestPackageIds[pkg.PkgPath] = pkg.ID + bestPackageIds[pkg.PkgPath] = pkg } }) @@ -257,15 +297,15 @@ func ExtractWithFlags(buildFlags []string, patterns []string, extractTests bool, // extract AST information for all packages packages.Visit(pkgs, nil, func(pkg *packages.Package) { - // If this is a variant of a package that also occurs with a longer ID, skip it; + // If this is a variant of a package that also occurs with a better ID, skip it; // otherwise we would extract the same file more than once including extracting the // body of methods twice, causing database inconsistencies. // - // We prefer the version with the longest ID because that is (so far as I know) always - // the version that defines more entities -- the only case I'm aware of being a test - // variant of a package, which includes test-only functions in addition to the complete - // contents of the main variant. - if pkg.ID != longestPackageIds[pkg.PkgPath] { + // We prefer the version with the most complete test coverage, prioritizing: + // 1. Exact test packages (e.g., "pkg [pkg.test]") over nested test dependencies + // 2. Packages with more Syntax nodes (more files to extract) + // 3. Longer ID strings as a tiebreaker + if pkg.ID != bestPackageIds[pkg.PkgPath].ID { return } diff --git a/go/extractor/extractor_test.go b/go/extractor/extractor_test.go new file mode 100644 index 000000000000..54f9dac1c128 --- /dev/null +++ b/go/extractor/extractor_test.go @@ -0,0 +1,255 @@ +package extractor + +import ( + "go/ast" + "testing" + + "golang.org/x/tools/go/packages" +) + +func TestIsExactTestPackage(t *testing.T) { + tests := []struct { + name string + pkgID string + pkgPath string + expected bool + }{ + { + name: "exact test package", + pkgID: "github.com/foo/bar [github.com/foo/bar.test]", + pkgPath: "github.com/foo/bar", + expected: true, + }, + { + name: "nested test package", + pkgID: "github.com/foo/bar [github.com/foo/bar/nested.test]", + pkgPath: "github.com/foo/bar", + expected: false, + }, + { + name: "deeply nested test package", + pkgID: "github.com/go-git/go-git/v6 [github.com/go-git/go-git/v6/plumbing/format/packfile.test]", + pkgPath: "github.com/go-git/go-git/v6", + expected: false, + }, + { + name: "exact test package with version", + pkgID: "github.com/go-git/go-git/v6 [github.com/go-git/go-git/v6.test]", + pkgPath: "github.com/go-git/go-git/v6", + expected: true, + }, + { + name: "non-test package", + pkgID: "github.com/foo/bar", + pkgPath: "github.com/foo/bar", + expected: false, + }, + } + + for _, tt := range tests { + t.Run(tt.name, func(t *testing.T) { + pkg := &packages.Package{ + ID: tt.pkgID, + PkgPath: tt.pkgPath, + } + result := isExactTestPackage(pkg) + if result != tt.expected { + t.Errorf("isExactTestPackage(%q) = %v, want %v", tt.pkgID, result, tt.expected) + } + }) + } +} + +func TestIsBetterPackage(t *testing.T) { + // Helper to create a package with specified properties + makePkg := func(id, path string, syntaxCount int) *packages.Package { + syntax := make([]*ast.File, syntaxCount) + return &packages.Package{ + ID: id, + PkgPath: path, + Syntax: syntax, + } + } + + tests := []struct { + name string + pkg *packages.Package + current *packages.Package + expected bool // true if pkg is better than current + }{ + { + name: "exact test package beats nested test package", + pkg: makePkg( + "github.com/go-git/go-git/v6 [github.com/go-git/go-git/v6.test]", + "github.com/go-git/go-git/v6", + 39, // 19 production + 20 test files + ), + current: makePkg( + "github.com/go-git/go-git/v6 [github.com/go-git/go-git/v6/plumbing/format/packfile.test]", + "github.com/go-git/go-git/v6", + 19, // production files only + ), + expected: true, + }, + { + name: "nested test package loses to exact test package", + pkg: makePkg( + "github.com/go-git/go-git/v6 [github.com/go-git/go-git/v6/plumbing/format/packfile.test]", + "github.com/go-git/go-git/v6", + 19, + ), + current: makePkg( + "github.com/go-git/go-git/v6 [github.com/go-git/go-git/v6.test]", + "github.com/go-git/go-git/v6", + 39, + ), + expected: false, + }, + { + name: "more syntax nodes wins when both are exact tests", + pkg: makePkg( + "github.com/foo/bar [github.com/foo/bar.test]", + "github.com/foo/bar", + 50, + ), + current: makePkg( + "github.com/foo/bar [github.com/foo/bar.test]", + "github.com/foo/bar", + 30, + ), + expected: true, + }, + { + name: "fewer syntax nodes loses when both are exact tests", + pkg: makePkg( + "github.com/foo/bar [github.com/foo/bar.test]", + "github.com/foo/bar", + 30, + ), + current: makePkg( + "github.com/foo/bar [github.com/foo/bar.test]", + "github.com/foo/bar", + 50, + ), + expected: false, + }, + { + name: "more syntax nodes wins when both are nested tests", + pkg: makePkg( + "github.com/foo/bar [github.com/foo/bar/pkg1.test]", + "github.com/foo/bar", + 25, + ), + current: makePkg( + "github.com/foo/bar [github.com/foo/bar/pkg2.test]", + "github.com/foo/bar", + 20, + ), + expected: true, + }, + { + name: "longer ID wins when same syntax count", + pkg: makePkg( + "github.com/foo/bar [github.com/foo/bar/verylongpackagename.test]", + "github.com/foo/bar", + 20, + ), + current: makePkg( + "github.com/foo/bar [github.com/foo/bar/short.test]", + "github.com/foo/bar", + 20, + ), + expected: true, + }, + { + name: "test package beats non-test with same syntax count", + pkg: makePkg( + "github.com/foo/bar [github.com/foo/bar.test]", + "github.com/foo/bar", + 20, + ), + current: makePkg( + "github.com/foo/bar", + "github.com/foo/bar", + 20, + ), + expected: true, + }, + } + + for _, tt := range tests { + t.Run(tt.name, func(t *testing.T) { + result := isBetterPackage(tt.pkg, tt.current) + if result != tt.expected { + t.Errorf("isBetterPackage() = %v, want %v\n pkg: %q (%d syntax nodes)\n current: %q (%d syntax nodes)", + result, tt.expected, + tt.pkg.ID, len(tt.pkg.Syntax), + tt.current.ID, len(tt.current.Syntax)) + } + }) + } +} + +// TestPackageSelectionRealWorld simulates the real-world go-git scenario +func TestPackageSelectionRealWorld(t *testing.T) { + // Simulate the actual packages.Load result for go-git repository + // when EXTRACT_TESTS=true + pkgs := []*packages.Package{ + // Production package only + { + ID: "github.com/go-git/go-git/v6", + PkgPath: "github.com/go-git/go-git/v6", + Syntax: make([]*ast.File, 19), // 19 production files + }, + // Root test package - this is what we want! + { + ID: "github.com/go-git/go-git/v6 [github.com/go-git/go-git/v6.test]", + PkgPath: "github.com/go-git/go-git/v6", + Syntax: make([]*ast.File, 39), // 19 production + 20 test files + }, + // Nested test dependency 1 + { + ID: "github.com/go-git/go-git/v6 [github.com/go-git/go-git/v6/plumbing/format/packfile.test]", + PkgPath: "github.com/go-git/go-git/v6", + Syntax: make([]*ast.File, 19), // production files only (dependency) + }, + // Nested test dependency 2 + { + ID: "github.com/go-git/go-git/v6 [github.com/go-git/go-git/v6/plumbing/object.test]", + PkgPath: "github.com/go-git/go-git/v6", + Syntax: make([]*ast.File, 19), // production files only (dependency) + }, + } + + // Simulate the bestPackageIds selection logic + bestPackageIds := make(map[string]*packages.Package) + for _, pkg := range pkgs { + if bestSoFar, present := bestPackageIds[pkg.PkgPath]; present { + if isBetterPackage(pkg, bestSoFar) { + bestPackageIds[pkg.PkgPath] = pkg + } + } else { + bestPackageIds[pkg.PkgPath] = pkg + } + } + + // Verify the correct package was selected + selected := bestPackageIds["github.com/go-git/go-git/v6"] + expectedID := "github.com/go-git/go-git/v6 [github.com/go-git/go-git/v6.test]" + expectedSyntaxCount := 39 + + if selected.ID != expectedID { + t.Errorf("Wrong package selected!\n got: %q (%d syntax nodes)\n want: %q (%d syntax nodes)", + selected.ID, len(selected.Syntax), + expectedID, expectedSyntaxCount) + } + + if len(selected.Syntax) != expectedSyntaxCount { + t.Errorf("Wrong syntax count: got %d, want %d", len(selected.Syntax), expectedSyntaxCount) + } + + // Verify it's recognized as an exact test package + if !isExactTestPackage(selected) { + t.Errorf("Selected package %q should be recognized as exact test package", selected.ID) + } +} From b94ab8d186bbb5b6bbc19827fb517757fa95ae46 Mon Sep 17 00:00:00 2001 From: Arieh Schneier <15041913+AriehSchneier@users.noreply.github.com> Date: Mon, 11 May 2026 15:10:54 +1000 Subject: [PATCH 226/260] Add integration test for root internal test extraction This test verifies that root internal test files (package foo, not foo_test) are correctly extracted when the repository has both: 1. Root-level internal tests (main_test.go with package main) 2. Nested packages with tests (nested/nested_test.go) This scenario reproduces the bug that was fixed: the old extractor would select the wrong package variant and miss root internal test files. The test ensures: - main_test.go (root internal test) is extracted - nested/nested_test.go (nested test) is extracted - All test functions from both files are present in the database This prevents regression of the bug fix. Co-Authored-By: Claude Sonnet 4.5 --- .../root-internal-tests/src/go.mod | 3 +++ .../root-internal-tests/src/main.go | 13 +++++++++++++ .../root-internal-tests/src/main_test.go | 16 ++++++++++++++++ .../root-internal-tests/src/nested/nested.go | 5 +++++ .../src/nested/nested_test.go | 9 +++++++++ .../root-internal-tests/test.expected | 7 +++++++ .../root-internal-tests/test.py | 5 +++++ .../root-internal-tests/test.ql | 15 +++++++++++++++ 8 files changed, 73 insertions(+) create mode 100644 go/ql/integration-tests/root-internal-tests/src/go.mod create mode 100644 go/ql/integration-tests/root-internal-tests/src/main.go create mode 100644 go/ql/integration-tests/root-internal-tests/src/main_test.go create mode 100644 go/ql/integration-tests/root-internal-tests/src/nested/nested.go create mode 100644 go/ql/integration-tests/root-internal-tests/src/nested/nested_test.go create mode 100644 go/ql/integration-tests/root-internal-tests/test.expected create mode 100644 go/ql/integration-tests/root-internal-tests/test.py create mode 100644 go/ql/integration-tests/root-internal-tests/test.ql diff --git a/go/ql/integration-tests/root-internal-tests/src/go.mod b/go/ql/integration-tests/root-internal-tests/src/go.mod new file mode 100644 index 000000000000..12e11856e552 --- /dev/null +++ b/go/ql/integration-tests/root-internal-tests/src/go.mod @@ -0,0 +1,3 @@ +module example.com/testpkg + +go 1.26 diff --git a/go/ql/integration-tests/root-internal-tests/src/main.go b/go/ql/integration-tests/root-internal-tests/src/main.go new file mode 100644 index 000000000000..fff083caa0ac --- /dev/null +++ b/go/ql/integration-tests/root-internal-tests/src/main.go @@ -0,0 +1,13 @@ +package main + +func PublicFunc() int { + return 42 +} + +func privateFunc() int { + return 24 +} + +func main() { + PublicFunc() +} diff --git a/go/ql/integration-tests/root-internal-tests/src/main_test.go b/go/ql/integration-tests/root-internal-tests/src/main_test.go new file mode 100644 index 000000000000..7c38d61d4c87 --- /dev/null +++ b/go/ql/integration-tests/root-internal-tests/src/main_test.go @@ -0,0 +1,16 @@ +package main + +import "testing" + +// Root internal test - tests private functions +func TestPrivateFunc(t *testing.T) { + if privateFunc() != 24 { + t.Error("privateFunc failed") + } +} + +func TestPublicFunc(t *testing.T) { + if PublicFunc() != 42 { + t.Error("PublicFunc failed") + } +} diff --git a/go/ql/integration-tests/root-internal-tests/src/nested/nested.go b/go/ql/integration-tests/root-internal-tests/src/nested/nested.go new file mode 100644 index 000000000000..427af1e44b63 --- /dev/null +++ b/go/ql/integration-tests/root-internal-tests/src/nested/nested.go @@ -0,0 +1,5 @@ +package nested + +func NestedFunc() string { + return "nested" +} diff --git a/go/ql/integration-tests/root-internal-tests/src/nested/nested_test.go b/go/ql/integration-tests/root-internal-tests/src/nested/nested_test.go new file mode 100644 index 000000000000..a7e063c61859 --- /dev/null +++ b/go/ql/integration-tests/root-internal-tests/src/nested/nested_test.go @@ -0,0 +1,9 @@ +package nested + +import "testing" + +func TestNestedFunc(t *testing.T) { + if NestedFunc() != "nested" { + t.Error("NestedFunc failed") + } +} diff --git a/go/ql/integration-tests/root-internal-tests/test.expected b/go/ql/integration-tests/root-internal-tests/test.expected new file mode 100644 index 000000000000..9f3d7b762c72 --- /dev/null +++ b/go/ql/integration-tests/root-internal-tests/test.expected @@ -0,0 +1,7 @@ +#select +| src/main_test.go:0:0:0:0 | src/main_test.go | +| src/nested/nested_test.go:0:0:0:0 | src/nested/nested_test.go | +testFunctions +| TestNestedFunc | src/nested/nested_test.go | +| TestPrivateFunc | src/main_test.go | +| TestPublicFunc | src/main_test.go | diff --git a/go/ql/integration-tests/root-internal-tests/test.py b/go/ql/integration-tests/root-internal-tests/test.py new file mode 100644 index 000000000000..a8f376e33975 --- /dev/null +++ b/go/ql/integration-tests/root-internal-tests/test.py @@ -0,0 +1,5 @@ +import os + +def test(codeql, go): + # Test that root internal test files are extracted when nested packages have tests + codeql.database.create(source_root="src", extractor_option = ["extract_tests=true"]) diff --git a/go/ql/integration-tests/root-internal-tests/test.ql b/go/ql/integration-tests/root-internal-tests/test.ql new file mode 100644 index 000000000000..234fd1a04203 --- /dev/null +++ b/go/ql/integration-tests/root-internal-tests/test.ql @@ -0,0 +1,15 @@ +import go + +// Verify that root internal test files are extracted +// when nested packages also have tests +from File f +where f.getBaseName().matches("%_test.go") +select f.getRelativePath() + +query predicate testFunctions(string name, string file) { + exists(FuncDecl fn | + fn.getName().matches("Test%") and + name = fn.getName() and + file = fn.getFile().getRelativePath() + ) +} From ec8ff6ff6836ecf6868b54ea2597a0996a4b50ac Mon Sep 17 00:00:00 2001 From: Owen Mansel-Chan Date: Mon, 11 May 2026 09:56:02 +0100 Subject: [PATCH 227/260] Use all path injection sinks when generating docs --- java/documentation/library-coverage/cwe-sink.csv | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/java/documentation/library-coverage/cwe-sink.csv b/java/documentation/library-coverage/cwe-sink.csv index 16fff1e653bc..c673888f683b 100644 --- a/java/documentation/library-coverage/cwe-sink.csv +++ b/java/documentation/library-coverage/cwe-sink.csv @@ -1,6 +1,6 @@ CWE,Sink identifier,Label CWE‑089,sql-injection,SQL injection -CWE‑022,path-injection,Path injection +CWE‑022,path-injection path-injection[read],Path injection CWE‑094,bean-validation,Code injection CWE‑918,request-forgery,Request Forgery CWE‑079,html-injection js-injection,Cross-site scripting From 151a332f0a0de581688ed6ae811d0b5639470875 Mon Sep 17 00:00:00 2001 From: Arieh Schneier <15041913+AriehSchneier@users.noreply.github.com> Date: Mon, 11 May 2026 20:55:11 +1000 Subject: [PATCH 228/260] Add Bazel build target for extractor_test.go Generated by manually applying the output from CI's Gazelle check. This adds the go_test target for the new extractor_test.go file. Co-Authored-By: Claude Sonnet 4.5 --- go/extractor/BUILD.bazel | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/go/extractor/BUILD.bazel b/go/extractor/BUILD.bazel index fbc53f20720b..23158e25b15f 100644 --- a/go/extractor/BUILD.bazel +++ b/go/extractor/BUILD.bazel @@ -1,4 +1,4 @@ -load("@rules_go//go:def.bzl", "go_library") +load("@rules_go//go:def.bzl", "go_library", "go_test") load("@rules_java//java:defs.bzl", "java_library") load("@rules_pkg//pkg:mappings.bzl", "pkg_files") @@ -60,3 +60,10 @@ pkg_files( }, visibility = ["//go:__pkg__"], ) + +go_test( + name = "extractor_test", + srcs = ["extractor_test.go"], + embed = [":extractor"], + deps = ["@org_golang_x_tools//go/packages"], +) From aa1d322fe7e908281bd36c4c8dc504df3bd2439c Mon Sep 17 00:00:00 2001 From: Arieh Schneier <15041913+AriehSchneier@users.noreply.github.com> Date: Mon, 11 May 2026 21:05:26 +1000 Subject: [PATCH 229/260] Address PR feedback Changes based on code review: 1. Remove redundant strings.Contains check in isExactTestPackage The equality check on the next line handles both cases, making the early return unnecessary. 2. Extract package selection logic into selectBestPackages function This reduces code duplication and allows the test to call the actual implementation rather than copying the logic. 3. Add TestSelectBestPackages to test the new function Comprehensive test covering single packages, test vs production, exact vs nested tests, and multiple packages. Co-Authored-By: Claude Sonnet 4.5 --- go/extractor/extractor.go | 45 +++++++------- go/extractor/extractor_test.go | 110 +++++++++++++++++++++++++++++---- 2 files changed, 123 insertions(+), 32 deletions(-) diff --git a/go/extractor/extractor.go b/go/extractor/extractor.go index c9ac7c6088a8..158f0029704d 100644 --- a/go/extractor/extractor.go +++ b/go/extractor/extractor.go @@ -65,9 +65,6 @@ func init() { func isExactTestPackage(pkg *packages.Package) bool { // Test packages have IDs in the format: "pkgpath [pkgpath.test]" // or for nested test dependencies: "pkgpath [pkgpath/nested.test]" - if !strings.Contains(pkg.ID, " [") { - return false - } expectedTestID := pkg.PkgPath + " [" + pkg.PkgPath + ".test]" return pkg.ID == expectedTestID } @@ -97,6 +94,28 @@ func isBetterPackage(pkg, current *packages.Package) bool { return len(pkg.ID) > len(current.ID) } +// selectBestPackages builds a map from package paths to their best package variants. +// In the context of a `go test -c` compilation, we see the same package more than +// once, with IDs like "abc.com/pkgname [abc.com/pkgname.test]" to distinguish the version +// that contains and is used by test code. +// We prefer the version with the most complete test coverage, which is typically: +// 1. The exact test package (e.g., "pkg [pkg.test]") over nested test dependencies +// 2. The package with the most Syntax nodes (most files to extract) +// 3. The longest ID string as a tiebreaker +func selectBestPackages(pkgs []*packages.Package) map[string]*packages.Package { + bestPackageIds := make(map[string]*packages.Package) + packages.Visit(pkgs, nil, func(pkg *packages.Package) { + if bestSoFar, present := bestPackageIds[pkg.PkgPath]; present { + if isBetterPackage(pkg, bestSoFar) { + bestPackageIds[pkg.PkgPath] = pkg + } + } else { + bestPackageIds[pkg.PkgPath] = pkg + } + }) + return bestPackageIds +} + // ExtractWithFlags extracts the packages specified by the given patterns and build flags func ExtractWithFlags(buildFlags []string, patterns []string, extractTests bool, sourceRoot string) error { startTime := time.Now() @@ -191,24 +210,8 @@ func ExtractWithFlags(buildFlags []string, patterns []string, extractTests bool, pkgsNotFound := make([]string, 0, len(pkgs)) - // Build a map from package paths to their best IDs-- - // in the context of a `go test -c` compilation, we will see the same package more than - // once, with IDs like "abc.com/pkgname [abc.com/pkgname.test]" to distinguish the version - // that contains and is used by test code. - // We prefer the version with the most complete test coverage, which is typically: - // 1. The exact test package (e.g., "pkg [pkg.test]") over nested test dependencies - // 2. The package with the most Syntax nodes (most files to extract) - // 3. The longest ID string as a tiebreaker - bestPackageIds := make(map[string]*packages.Package) - packages.Visit(pkgs, nil, func(pkg *packages.Package) { - if bestSoFar, present := bestPackageIds[pkg.PkgPath]; present { - if isBetterPackage(pkg, bestSoFar) { - bestPackageIds[pkg.PkgPath] = pkg - } - } else { - bestPackageIds[pkg.PkgPath] = pkg - } - }) + // Build a map from package paths to their best IDs + bestPackageIds := selectBestPackages(pkgs) // Do a post-order traversal and extract the package scope of each package packages.Visit(pkgs, nil, func(pkg *packages.Package) { diff --git a/go/extractor/extractor_test.go b/go/extractor/extractor_test.go index 54f9dac1c128..2b585ec7fa1f 100644 --- a/go/extractor/extractor_test.go +++ b/go/extractor/extractor_test.go @@ -190,6 +190,103 @@ func TestIsBetterPackage(t *testing.T) { } } +// TestSelectBestPackages tests the selectBestPackages function +func TestSelectBestPackages(t *testing.T) { + // Helper to create a package with specified properties + makePkg := func(id, path string, syntaxCount int) *packages.Package { + syntax := make([]*ast.File, syntaxCount) + return &packages.Package{ + ID: id, + PkgPath: path, + Syntax: syntax, + } + } + + tests := []struct { + name string + pkgs []*packages.Package + expectedPkgIDs map[string]string // pkgPath -> expected selected ID + }{ + { + name: "single package", + pkgs: []*packages.Package{ + makePkg("example.com/pkg", "example.com/pkg", 10), + }, + expectedPkgIDs: map[string]string{ + "example.com/pkg": "example.com/pkg", + }, + }, + { + name: "test package preferred over production", + pkgs: []*packages.Package{ + makePkg("example.com/pkg", "example.com/pkg", 10), + makePkg("example.com/pkg [example.com/pkg.test]", "example.com/pkg", 15), + }, + expectedPkgIDs: map[string]string{ + "example.com/pkg": "example.com/pkg [example.com/pkg.test]", + }, + }, + { + name: "exact test preferred over nested test", + pkgs: []*packages.Package{ + makePkg("example.com/pkg [example.com/pkg.test]", "example.com/pkg", 20), + makePkg("example.com/pkg [example.com/pkg/nested.test]", "example.com/pkg", 15), + }, + expectedPkgIDs: map[string]string{ + "example.com/pkg": "example.com/pkg [example.com/pkg.test]", + }, + }, + { + name: "multiple packages with different paths", + pkgs: []*packages.Package{ + makePkg("example.com/pkg1", "example.com/pkg1", 10), + makePkg("example.com/pkg1 [example.com/pkg1.test]", "example.com/pkg1", 15), + makePkg("example.com/pkg2", "example.com/pkg2", 8), + makePkg("example.com/pkg2 [example.com/pkg2.test]", "example.com/pkg2", 12), + }, + expectedPkgIDs: map[string]string{ + "example.com/pkg1": "example.com/pkg1 [example.com/pkg1.test]", + "example.com/pkg2": "example.com/pkg2 [example.com/pkg2.test]", + }, + }, + { + name: "more syntax nodes wins among nested tests", + pkgs: []*packages.Package{ + makePkg("example.com/pkg [example.com/pkg/a.test]", "example.com/pkg", 10), + makePkg("example.com/pkg [example.com/pkg/b.test]", "example.com/pkg", 20), + }, + expectedPkgIDs: map[string]string{ + "example.com/pkg": "example.com/pkg [example.com/pkg/b.test]", + }, + }, + } + + for _, tt := range tests { + t.Run(tt.name, func(t *testing.T) { + result := selectBestPackages(tt.pkgs) + + // Check that all expected packages are present + for pkgPath, expectedID := range tt.expectedPkgIDs { + selected, found := result[pkgPath] + if !found { + t.Errorf("Expected package path %q not found in result", pkgPath) + continue + } + if selected.ID != expectedID { + t.Errorf("For package path %q: got ID %q, want %q", + pkgPath, selected.ID, expectedID) + } + } + + // Check that no unexpected packages are present + if len(result) != len(tt.expectedPkgIDs) { + t.Errorf("Expected %d packages in result, got %d", + len(tt.expectedPkgIDs), len(result)) + } + }) + } +} + // TestPackageSelectionRealWorld simulates the real-world go-git scenario func TestPackageSelectionRealWorld(t *testing.T) { // Simulate the actual packages.Load result for go-git repository @@ -221,17 +318,8 @@ func TestPackageSelectionRealWorld(t *testing.T) { }, } - // Simulate the bestPackageIds selection logic - bestPackageIds := make(map[string]*packages.Package) - for _, pkg := range pkgs { - if bestSoFar, present := bestPackageIds[pkg.PkgPath]; present { - if isBetterPackage(pkg, bestSoFar) { - bestPackageIds[pkg.PkgPath] = pkg - } - } else { - bestPackageIds[pkg.PkgPath] = pkg - } - } + // Use the actual selection logic from the extractor + bestPackageIds := selectBestPackages(pkgs) // Verify the correct package was selected selected := bestPackageIds["github.com/go-git/go-git/v6"] From f212efbe5b0801dcb5cffb6f9eeba951794684c1 Mon Sep 17 00:00:00 2001 From: Jeroen Ketema Date: Mon, 11 May 2026 17:05:45 +0200 Subject: [PATCH 230/260] Swift: Expose the declared interface type of a type decl --- .../old.dbscheme | 2892 +++++++++++++++++ .../swift.dbscheme | 2891 ++++++++++++++++ .../upgrade.properties | 3 + .../extractor/translators/DeclTranslator.cpp | 1 + swift/ql/.generated.list | 14 +- swift/ql/lib/codeql/swift/generated/Raw.qll | 7 +- .../codeql/swift/generated/decl/TypeDecl.qll | 23 + swift/ql/lib/swift.dbscheme | 3 +- .../old.dbscheme | 2891 ++++++++++++++++ .../swift.dbscheme | 2892 +++++++++++++++++ .../upgrade.properties | 4 + .../upgrade.ql | 29 + .../AssociatedTypeDecl.expected | 4 +- .../AssociatedTypeDecl/AssociatedTypeDecl.ql | 7 +- .../decl/ClassDecl/ClassDecl.expected | 6 +- .../generated/decl/ClassDecl/ClassDecl.ql | 6 +- .../generated/decl/EnumDecl/EnumDecl.expected | 10 +- .../generated/decl/EnumDecl/EnumDecl.ql | 6 +- .../decl/ModuleDecl/ModuleDecl.expected | 6 +- .../generated/decl/ModuleDecl/ModuleDecl.ql | 8 +- .../OpaqueTypeDecl/OpaqueTypeDecl.expected | 8 +- .../decl/OpaqueTypeDecl/OpaqueTypeDecl.ql | 7 +- swift/schema.py | 1 + 23 files changed, 11685 insertions(+), 34 deletions(-) create mode 100644 swift/downgrades/1bb163e31d206f30146738adcd93def10fdabefa/old.dbscheme create mode 100644 swift/downgrades/1bb163e31d206f30146738adcd93def10fdabefa/swift.dbscheme create mode 100644 swift/downgrades/1bb163e31d206f30146738adcd93def10fdabefa/upgrade.properties create mode 100644 swift/ql/lib/upgrades/5738be6bb04742c424efdbf9f4de11f0b10fa37d/old.dbscheme create mode 100644 swift/ql/lib/upgrades/5738be6bb04742c424efdbf9f4de11f0b10fa37d/swift.dbscheme create mode 100644 swift/ql/lib/upgrades/5738be6bb04742c424efdbf9f4de11f0b10fa37d/upgrade.properties create mode 100644 swift/ql/lib/upgrades/5738be6bb04742c424efdbf9f4de11f0b10fa37d/upgrade.ql diff --git a/swift/downgrades/1bb163e31d206f30146738adcd93def10fdabefa/old.dbscheme b/swift/downgrades/1bb163e31d206f30146738adcd93def10fdabefa/old.dbscheme new file mode 100644 index 000000000000..1bb163e31d20 --- /dev/null +++ b/swift/downgrades/1bb163e31d206f30146738adcd93def10fdabefa/old.dbscheme @@ -0,0 +1,2892 @@ +// generated by codegen/codegen.py, do not edit + +// from prefix.dbscheme +/** + * The source location of the snapshot. + */ +sourceLocationPrefix( + string prefix: string ref +); + + +// from schema.py + +@element = + @file +| @generic_context +| @locatable +| @location +| @type +; + +#keyset[id] +element_is_unknown( + int id: @element ref +); + +@file = + @db_file +; + +#keyset[id] +files( + int id: @file ref, + string name: string ref +); + +#keyset[id] +file_is_successfully_extracted( + int id: @file ref +); + +@locatable = + @argument +| @ast_node +| @comment +| @diagnostics +| @error_element +; + +#keyset[id] +locatable_locations( + int id: @locatable ref, + int location: @location_or_none ref +); + +@location = + @db_location +; + +#keyset[id] +locations( + int id: @location ref, + int file: @file_or_none ref, + int start_line: int ref, + int start_column: int ref, + int end_line: int ref, + int end_column: int ref +); + +@ast_node = + @availability_info +| @availability_spec +| @callable +| @case_label_item +| @condition_element +| @decl +| @expr +| @key_path_component +| @macro_role +| @pattern +| @stmt +| @stmt_condition +| @type_repr +; + +comments( + unique int id: @comment, + string text: string ref +); + +db_files( + unique int id: @db_file +); + +db_locations( + unique int id: @db_location +); + +diagnostics( + unique int id: @diagnostics, + string text: string ref, + int kind: int ref +); + +@error_element = + @error_expr +| @error_type +| @overloaded_decl_ref_expr +| @unresolved_decl_ref_expr +| @unresolved_dot_expr +| @unresolved_member_chain_result_expr +| @unresolved_member_expr +| @unresolved_pattern_expr +| @unresolved_specialize_expr +| @unresolved_type +| @unresolved_type_conversion_expr +| @unspecified_element +; + +availability_infos( + unique int id: @availability_info +); + +#keyset[id] +availability_info_is_unavailable( + int id: @availability_info ref +); + +#keyset[id, index] +availability_info_specs( + int id: @availability_info ref, + int index: int ref, + int spec: @availability_spec_or_none ref +); + +availability_specs( + unique int id: @availability_spec +); + +#keyset[id] +availability_spec_platforms( + int id: @availability_spec ref, + string platform: string ref +); + +#keyset[id] +availability_spec_versions( + int id: @availability_spec ref, + string version: string ref +); + +#keyset[id] +availability_spec_is_wildcard( + int id: @availability_spec ref +); + +@callable = + @closure_expr +| @function +; + +#keyset[id] +callable_names( + int id: @callable ref, + string name: string ref +); + +#keyset[id] +callable_self_params( + int id: @callable ref, + int self_param: @param_decl_or_none ref +); + +#keyset[id, index] +callable_params( + int id: @callable ref, + int index: int ref, + int param: @param_decl_or_none ref +); + +#keyset[id] +callable_bodies( + int id: @callable ref, + int body: @brace_stmt_or_none ref +); + +#keyset[id, index] +callable_captures( + int id: @callable ref, + int index: int ref, + int capture: @captured_decl_or_none ref +); + +key_path_components( + unique int id: @key_path_component, + int kind: int ref, + int component_type: @type_or_none ref +); + +#keyset[id, index] +key_path_component_subscript_arguments( + int id: @key_path_component ref, + int index: int ref, + int subscript_argument: @argument_or_none ref +); + +#keyset[id] +key_path_component_tuple_indices( + int id: @key_path_component ref, + int tuple_index: int ref +); + +#keyset[id] +key_path_component_decl_refs( + int id: @key_path_component ref, + int decl_ref: @value_decl_or_none ref +); + +macro_roles( + unique int id: @macro_role, + int kind: int ref, + int macro_syntax: int ref +); + +#keyset[id, index] +macro_role_conformances( + int id: @macro_role ref, + int index: int ref, + int conformance: @expr_or_none ref +); + +#keyset[id, index] +macro_role_names( + int id: @macro_role ref, + int index: int ref, + string name: string ref +); + +unspecified_elements( + unique int id: @unspecified_element, + string property: string ref, + string error: string ref +); + +#keyset[id] +unspecified_element_parents( + int id: @unspecified_element ref, + int parent: @element ref +); + +#keyset[id] +unspecified_element_indices( + int id: @unspecified_element ref, + int index: int ref +); + +#keyset[id, index] +unspecified_element_children( + int id: @unspecified_element ref, + int index: int ref, + int child: @ast_node_or_none ref +); + +@decl = + @captured_decl +| @enum_case_decl +| @extension_decl +| @if_config_decl +| @import_decl +| @missing_member_decl +| @operator_decl +| @pattern_binding_decl +| @pound_diagnostic_decl +| @precedence_group_decl +| @top_level_code_decl +| @using_decl +| @value_decl +; + +#keyset[id] +decls( //dir=decl + int id: @decl ref, + int module: @module_decl_or_none ref +); + +#keyset[id, index] +decl_members( //dir=decl + int id: @decl ref, + int index: int ref, + int member: @decl_or_none ref +); + +@generic_context = + @extension_decl +| @function +| @generic_type_decl +| @macro_decl +| @subscript_decl +; + +#keyset[id, index] +generic_context_generic_type_params( //dir=decl + int id: @generic_context ref, + int index: int ref, + int generic_type_param: @generic_type_param_decl_or_none ref +); + +captured_decls( //dir=decl + unique int id: @captured_decl, + int decl: @value_decl_or_none ref +); + +#keyset[id] +captured_decl_is_direct( //dir=decl + int id: @captured_decl ref +); + +#keyset[id] +captured_decl_is_escaping( //dir=decl + int id: @captured_decl ref +); + +enum_case_decls( //dir=decl + unique int id: @enum_case_decl +); + +#keyset[id, index] +enum_case_decl_elements( //dir=decl + int id: @enum_case_decl ref, + int index: int ref, + int element: @enum_element_decl_or_none ref +); + +extension_decls( //dir=decl + unique int id: @extension_decl, + int extended_type_decl: @nominal_type_decl_or_none ref +); + +#keyset[id, index] +extension_decl_protocols( //dir=decl + int id: @extension_decl ref, + int index: int ref, + int protocol: @protocol_decl_or_none ref +); + +if_config_decls( //dir=decl + unique int id: @if_config_decl +); + +#keyset[id, index] +if_config_decl_active_elements( //dir=decl + int id: @if_config_decl ref, + int index: int ref, + int active_element: @ast_node_or_none ref +); + +import_decls( //dir=decl + unique int id: @import_decl +); + +#keyset[id] +import_decl_is_exported( //dir=decl + int id: @import_decl ref +); + +#keyset[id] +import_decl_imported_modules( //dir=decl + int id: @import_decl ref, + int imported_module: @module_decl_or_none ref +); + +#keyset[id, index] +import_decl_declarations( //dir=decl + int id: @import_decl ref, + int index: int ref, + int declaration: @value_decl_or_none ref +); + +missing_member_decls( //dir=decl + unique int id: @missing_member_decl, + string name: string ref +); + +@operator_decl = + @infix_operator_decl +| @postfix_operator_decl +| @prefix_operator_decl +; + +#keyset[id] +operator_decls( //dir=decl + int id: @operator_decl ref, + string name: string ref +); + +pattern_binding_decls( //dir=decl + unique int id: @pattern_binding_decl +); + +#keyset[id, index] +pattern_binding_decl_inits( //dir=decl + int id: @pattern_binding_decl ref, + int index: int ref, + int init: @expr_or_none ref +); + +#keyset[id, index] +pattern_binding_decl_patterns( //dir=decl + int id: @pattern_binding_decl ref, + int index: int ref, + int pattern: @pattern_or_none ref +); + +pound_diagnostic_decls( //dir=decl + unique int id: @pound_diagnostic_decl, + int kind: int ref, + int message: @string_literal_expr_or_none ref +); + +precedence_group_decls( //dir=decl + unique int id: @precedence_group_decl +); + +top_level_code_decls( //dir=decl + unique int id: @top_level_code_decl, + int body: @brace_stmt_or_none ref +); + +using_decls( //dir=decl + unique int id: @using_decl +); + +#keyset[id] +using_decl_is_main_actor( //dir=decl + int id: @using_decl ref +); + +#keyset[id] +using_decl_is_nonisolated( //dir=decl + int id: @using_decl ref +); + +@value_decl = + @abstract_storage_decl +| @enum_element_decl +| @function +| @macro_decl +| @type_decl +; + +#keyset[id] +value_decls( //dir=decl + int id: @value_decl ref, + int interface_type: @type_or_none ref +); + +@abstract_storage_decl = + @subscript_decl +| @var_decl +; + +#keyset[id, index] +abstract_storage_decl_accessors( //dir=decl + int id: @abstract_storage_decl ref, + int index: int ref, + int accessor: @accessor_or_none ref +); + +enum_element_decls( //dir=decl + unique int id: @enum_element_decl, + string name: string ref +); + +#keyset[id, index] +enum_element_decl_params( //dir=decl + int id: @enum_element_decl ref, + int index: int ref, + int param: @param_decl_or_none ref +); + +@function = + @accessor_or_named_function +| @deinitializer +| @initializer +; + +infix_operator_decls( //dir=decl + unique int id: @infix_operator_decl +); + +#keyset[id] +infix_operator_decl_precedence_groups( //dir=decl + int id: @infix_operator_decl ref, + int precedence_group: @precedence_group_decl_or_none ref +); + +macro_decls( //dir=decl + unique int id: @macro_decl, + string name: string ref +); + +#keyset[id, index] +macro_decl_parameters( //dir=decl + int id: @macro_decl ref, + int index: int ref, + int parameter: @param_decl_or_none ref +); + +#keyset[id, index] +macro_decl_roles( //dir=decl + int id: @macro_decl ref, + int index: int ref, + int role: @macro_role_or_none ref +); + +postfix_operator_decls( //dir=decl + unique int id: @postfix_operator_decl +); + +prefix_operator_decls( //dir=decl + unique int id: @prefix_operator_decl +); + +@type_decl = + @abstract_type_param_decl +| @generic_type_decl +| @module_decl +; + +#keyset[id] +type_decls( //dir=decl + int id: @type_decl ref, + string name: string ref, + int declared_interface_type: @type_or_none ref +); + +#keyset[id, index] +type_decl_inherited_types( //dir=decl + int id: @type_decl ref, + int index: int ref, + int inherited_type: @type_or_none ref +); + +@abstract_type_param_decl = + @associated_type_decl +| @generic_type_param_decl +; + +@accessor_or_named_function = + @accessor +| @named_function +; + +deinitializers( //dir=decl + unique int id: @deinitializer +); + +@generic_type_decl = + @nominal_type_decl +| @opaque_type_decl +| @type_alias_decl +; + +initializers( //dir=decl + unique int id: @initializer +); + +module_decls( //dir=decl + unique int id: @module_decl +); + +#keyset[id] +module_decl_is_builtin_module( //dir=decl + int id: @module_decl ref +); + +#keyset[id] +module_decl_is_system_module( //dir=decl + int id: @module_decl ref +); + +module_decl_imported_modules( //dir=decl + int id: @module_decl ref, + int imported_module: @module_decl_or_none ref +); + +module_decl_exported_modules( //dir=decl + int id: @module_decl ref, + int exported_module: @module_decl_or_none ref +); + +subscript_decls( //dir=decl + unique int id: @subscript_decl, + int element_type: @type_or_none ref +); + +#keyset[id, index] +subscript_decl_params( //dir=decl + int id: @subscript_decl ref, + int index: int ref, + int param: @param_decl_or_none ref +); + +@var_decl = + @concrete_var_decl +| @param_decl +; + +#keyset[id] +var_decls( //dir=decl + int id: @var_decl ref, + string name: string ref, + int type_: @type_or_none ref +); + +#keyset[id] +var_decl_attached_property_wrapper_types( //dir=decl + int id: @var_decl ref, + int attached_property_wrapper_type: @type_or_none ref +); + +#keyset[id] +var_decl_parent_patterns( //dir=decl + int id: @var_decl ref, + int parent_pattern: @pattern_or_none ref +); + +#keyset[id] +var_decl_parent_initializers( //dir=decl + int id: @var_decl ref, + int parent_initializer: @expr_or_none ref +); + +#keyset[id] +var_decl_property_wrapper_backing_var_bindings( //dir=decl + int id: @var_decl ref, + int property_wrapper_backing_var_binding: @pattern_binding_decl_or_none ref +); + +#keyset[id] +var_decl_property_wrapper_backing_vars( //dir=decl + int id: @var_decl ref, + int property_wrapper_backing_var: @var_decl_or_none ref +); + +#keyset[id] +var_decl_property_wrapper_projection_var_bindings( //dir=decl + int id: @var_decl ref, + int property_wrapper_projection_var_binding: @pattern_binding_decl_or_none ref +); + +#keyset[id] +var_decl_property_wrapper_projection_vars( //dir=decl + int id: @var_decl ref, + int property_wrapper_projection_var: @var_decl_or_none ref +); + +accessors( //dir=decl + unique int id: @accessor +); + +#keyset[id] +accessor_is_getter( //dir=decl + int id: @accessor ref +); + +#keyset[id] +accessor_is_setter( //dir=decl + int id: @accessor ref +); + +#keyset[id] +accessor_is_will_set( //dir=decl + int id: @accessor ref +); + +#keyset[id] +accessor_is_did_set( //dir=decl + int id: @accessor ref +); + +#keyset[id] +accessor_is_read( //dir=decl + int id: @accessor ref +); + +#keyset[id] +accessor_is_modify( //dir=decl + int id: @accessor ref +); + +#keyset[id] +accessor_is_unsafe_address( //dir=decl + int id: @accessor ref +); + +#keyset[id] +accessor_is_unsafe_mutable_address( //dir=decl + int id: @accessor ref +); + +#keyset[id] +accessor_is_distributed_get( //dir=decl + int id: @accessor ref +); + +#keyset[id] +accessor_is_read2( //dir=decl + int id: @accessor ref +); + +#keyset[id] +accessor_is_modify2( //dir=decl + int id: @accessor ref +); + +#keyset[id] +accessor_is_init( //dir=decl + int id: @accessor ref +); + +associated_type_decls( //dir=decl + unique int id: @associated_type_decl +); + +concrete_var_decls( //dir=decl + unique int id: @concrete_var_decl, + int introducer_int: int ref +); + +generic_type_param_decls( //dir=decl + unique int id: @generic_type_param_decl +); + +named_functions( //dir=decl + unique int id: @named_function +); + +@nominal_type_decl = + @class_decl +| @enum_decl +| @protocol_decl +| @struct_decl +; + +#keyset[id] +nominal_type_decls( //dir=decl + int id: @nominal_type_decl ref, + int type_: @type_or_none ref +); + +opaque_type_decls( //dir=decl + unique int id: @opaque_type_decl, + int naming_declaration: @value_decl_or_none ref +); + +#keyset[id, index] +opaque_type_decl_opaque_generic_params( //dir=decl + int id: @opaque_type_decl ref, + int index: int ref, + int opaque_generic_param: @generic_type_param_type_or_none ref +); + +param_decls( //dir=decl + unique int id: @param_decl +); + +#keyset[id] +param_decl_is_inout( //dir=decl + int id: @param_decl ref +); + +#keyset[id] +param_decl_property_wrapper_local_wrapped_var_bindings( //dir=decl + int id: @param_decl ref, + int property_wrapper_local_wrapped_var_binding: @pattern_binding_decl_or_none ref +); + +#keyset[id] +param_decl_property_wrapper_local_wrapped_vars( //dir=decl + int id: @param_decl ref, + int property_wrapper_local_wrapped_var: @var_decl_or_none ref +); + +type_alias_decls( //dir=decl + unique int id: @type_alias_decl, + int aliased_type: @type_or_none ref +); + +class_decls( //dir=decl + unique int id: @class_decl +); + +enum_decls( //dir=decl + unique int id: @enum_decl +); + +protocol_decls( //dir=decl + unique int id: @protocol_decl +); + +struct_decls( //dir=decl + unique int id: @struct_decl +); + +arguments( //dir=expr + unique int id: @argument, + string label: string ref, + int expr: @expr_or_none ref +); + +@expr = + @any_try_expr +| @applied_property_wrapper_expr +| @apply_expr +| @assign_expr +| @bind_optional_expr +| @capture_list_expr +| @closure_expr +| @collection_expr +| @consume_expr +| @copy_expr +| @current_context_isolation_expr +| @decl_ref_expr +| @default_argument_expr +| @discard_assignment_expr +| @dot_syntax_base_ignored_expr +| @dynamic_type_expr +| @enum_is_case_expr +| @error_expr +| @explicit_cast_expr +| @extract_function_isolation_expr +| @force_value_expr +| @identity_expr +| @if_expr +| @implicit_conversion_expr +| @in_out_expr +| @key_path_application_expr +| @key_path_dot_expr +| @key_path_expr +| @lazy_initialization_expr +| @literal_expr +| @lookup_expr +| @make_temporarily_escapable_expr +| @materialize_pack_expr +| @obj_c_selector_expr +| @one_way_expr +| @opaque_value_expr +| @open_existential_expr +| @optional_evaluation_expr +| @other_initializer_ref_expr +| @overloaded_decl_ref_expr +| @pack_element_expr +| @pack_expansion_expr +| @property_wrapper_value_placeholder_expr +| @rebind_self_in_initializer_expr +| @sequence_expr +| @single_value_stmt_expr +| @super_ref_expr +| @tap_expr +| @tuple_element_expr +| @tuple_expr +| @type_expr +| @type_value_expr +| @unresolved_decl_ref_expr +| @unresolved_dot_expr +| @unresolved_member_expr +| @unresolved_pattern_expr +| @unresolved_specialize_expr +| @vararg_expansion_expr +; + +#keyset[id] +expr_types( //dir=expr + int id: @expr ref, + int type_: @type_or_none ref +); + +@any_try_expr = + @force_try_expr +| @optional_try_expr +| @try_expr +; + +#keyset[id] +any_try_exprs( //dir=expr + int id: @any_try_expr ref, + int sub_expr: @expr_or_none ref +); + +applied_property_wrapper_exprs( //dir=expr + unique int id: @applied_property_wrapper_expr, + int kind: int ref, + int value: @expr_or_none ref, + int param: @param_decl_or_none ref +); + +@apply_expr = + @binary_expr +| @call_expr +| @postfix_unary_expr +| @prefix_unary_expr +| @self_apply_expr +; + +#keyset[id] +apply_exprs( //dir=expr + int id: @apply_expr ref, + int function: @expr_or_none ref +); + +#keyset[id, index] +apply_expr_arguments( //dir=expr + int id: @apply_expr ref, + int index: int ref, + int argument: @argument_or_none ref +); + +assign_exprs( //dir=expr + unique int id: @assign_expr, + int dest: @expr_or_none ref, + int source: @expr_or_none ref +); + +bind_optional_exprs( //dir=expr + unique int id: @bind_optional_expr, + int sub_expr: @expr_or_none ref +); + +capture_list_exprs( //dir=expr + unique int id: @capture_list_expr, + int closure_body: @closure_expr_or_none ref +); + +#keyset[id, index] +capture_list_expr_binding_decls( //dir=expr + int id: @capture_list_expr ref, + int index: int ref, + int binding_decl: @pattern_binding_decl_or_none ref +); + +@closure_expr = + @auto_closure_expr +| @explicit_closure_expr +; + +@collection_expr = + @array_expr +| @dictionary_expr +; + +consume_exprs( //dir=expr + unique int id: @consume_expr, + int sub_expr: @expr_or_none ref +); + +copy_exprs( //dir=expr + unique int id: @copy_expr, + int sub_expr: @expr_or_none ref +); + +current_context_isolation_exprs( //dir=expr + unique int id: @current_context_isolation_expr, + int actor: @expr_or_none ref +); + +decl_ref_exprs( //dir=expr + unique int id: @decl_ref_expr, + int decl: @decl_or_none ref +); + +#keyset[id, index] +decl_ref_expr_replacement_types( //dir=expr + int id: @decl_ref_expr ref, + int index: int ref, + int replacement_type: @type_or_none ref +); + +#keyset[id] +decl_ref_expr_has_direct_to_storage_semantics( //dir=expr + int id: @decl_ref_expr ref +); + +#keyset[id] +decl_ref_expr_has_direct_to_implementation_semantics( //dir=expr + int id: @decl_ref_expr ref +); + +#keyset[id] +decl_ref_expr_has_ordinary_semantics( //dir=expr + int id: @decl_ref_expr ref +); + +#keyset[id] +decl_ref_expr_has_distributed_thunk_semantics( //dir=expr + int id: @decl_ref_expr ref +); + +default_argument_exprs( //dir=expr + unique int id: @default_argument_expr, + int param_decl: @param_decl_or_none ref, + int param_index: int ref +); + +#keyset[id] +default_argument_expr_caller_side_defaults( //dir=expr + int id: @default_argument_expr ref, + int caller_side_default: @expr_or_none ref +); + +discard_assignment_exprs( //dir=expr + unique int id: @discard_assignment_expr +); + +dot_syntax_base_ignored_exprs( //dir=expr + unique int id: @dot_syntax_base_ignored_expr, + int qualifier: @expr_or_none ref, + int sub_expr: @expr_or_none ref +); + +dynamic_type_exprs( //dir=expr + unique int id: @dynamic_type_expr, + int base: @expr_or_none ref +); + +enum_is_case_exprs( //dir=expr + unique int id: @enum_is_case_expr, + int sub_expr: @expr_or_none ref, + int element: @enum_element_decl_or_none ref +); + +error_exprs( //dir=expr + unique int id: @error_expr +); + +@explicit_cast_expr = + @checked_cast_expr +| @coerce_expr +; + +#keyset[id] +explicit_cast_exprs( //dir=expr + int id: @explicit_cast_expr ref, + int sub_expr: @expr_or_none ref +); + +extract_function_isolation_exprs( //dir=expr + unique int id: @extract_function_isolation_expr, + int function_expr: @expr_or_none ref +); + +force_value_exprs( //dir=expr + unique int id: @force_value_expr, + int sub_expr: @expr_or_none ref +); + +@identity_expr = + @await_expr +| @borrow_expr +| @dot_self_expr +| @paren_expr +| @unresolved_member_chain_result_expr +| @unsafe_expr +; + +#keyset[id] +identity_exprs( //dir=expr + int id: @identity_expr ref, + int sub_expr: @expr_or_none ref +); + +if_exprs( //dir=expr + unique int id: @if_expr, + int condition: @expr_or_none ref, + int then_expr: @expr_or_none ref, + int else_expr: @expr_or_none ref +); + +@implicit_conversion_expr = + @abi_safe_conversion_expr +| @actor_isolation_erasure_expr +| @any_hashable_erasure_expr +| @archetype_to_super_expr +| @array_to_pointer_expr +| @bridge_from_obj_c_expr +| @bridge_to_obj_c_expr +| @class_metatype_to_object_expr +| @collection_upcast_conversion_expr +| @conditional_bridge_from_obj_c_expr +| @covariant_function_conversion_expr +| @covariant_return_conversion_expr +| @derived_to_base_expr +| @destructure_tuple_expr +| @differentiable_function_expr +| @differentiable_function_extract_original_expr +| @erasure_expr +| @existential_metatype_to_object_expr +| @foreign_object_conversion_expr +| @function_conversion_expr +| @in_out_to_pointer_expr +| @inject_into_optional_expr +| @linear_function_expr +| @linear_function_extract_original_expr +| @linear_to_differentiable_function_expr +| @load_expr +| @metatype_conversion_expr +| @pointer_to_pointer_expr +| @protocol_metatype_to_object_expr +| @string_to_pointer_expr +| @underlying_to_opaque_expr +| @unevaluated_instance_expr +| @unreachable_expr +| @unresolved_type_conversion_expr +| @unsafe_cast_expr +; + +#keyset[id] +implicit_conversion_exprs( //dir=expr + int id: @implicit_conversion_expr ref, + int sub_expr: @expr_or_none ref +); + +in_out_exprs( //dir=expr + unique int id: @in_out_expr, + int sub_expr: @expr_or_none ref +); + +key_path_application_exprs( //dir=expr + unique int id: @key_path_application_expr, + int base: @expr_or_none ref, + int key_path: @expr_or_none ref +); + +key_path_dot_exprs( //dir=expr + unique int id: @key_path_dot_expr +); + +key_path_exprs( //dir=expr + unique int id: @key_path_expr +); + +#keyset[id] +key_path_expr_roots( //dir=expr + int id: @key_path_expr ref, + int root: @type_repr_or_none ref +); + +#keyset[id, index] +key_path_expr_components( //dir=expr + int id: @key_path_expr ref, + int index: int ref, + int component: @key_path_component_or_none ref +); + +lazy_initialization_exprs( //dir=expr + unique int id: @lazy_initialization_expr, + int sub_expr: @expr_or_none ref +); + +@literal_expr = + @builtin_literal_expr +| @interpolated_string_literal_expr +| @nil_literal_expr +| @object_literal_expr +| @regex_literal_expr +; + +@lookup_expr = + @dynamic_lookup_expr +| @member_ref_expr +| @subscript_expr +; + +#keyset[id] +lookup_exprs( //dir=expr + int id: @lookup_expr ref, + int base: @expr_or_none ref +); + +#keyset[id] +lookup_expr_members( //dir=expr + int id: @lookup_expr ref, + int member: @decl_or_none ref +); + +make_temporarily_escapable_exprs( //dir=expr + unique int id: @make_temporarily_escapable_expr, + int escaping_closure: @opaque_value_expr_or_none ref, + int nonescaping_closure: @expr_or_none ref, + int sub_expr: @expr_or_none ref +); + +materialize_pack_exprs( //dir=expr + unique int id: @materialize_pack_expr, + int sub_expr: @expr_or_none ref +); + +obj_c_selector_exprs( //dir=expr + unique int id: @obj_c_selector_expr, + int sub_expr: @expr_or_none ref, + int method: @function_or_none ref +); + +one_way_exprs( //dir=expr + unique int id: @one_way_expr, + int sub_expr: @expr_or_none ref +); + +opaque_value_exprs( //dir=expr + unique int id: @opaque_value_expr +); + +open_existential_exprs( //dir=expr + unique int id: @open_existential_expr, + int sub_expr: @expr_or_none ref, + int existential: @expr_or_none ref, + int opaque_expr: @opaque_value_expr_or_none ref +); + +optional_evaluation_exprs( //dir=expr + unique int id: @optional_evaluation_expr, + int sub_expr: @expr_or_none ref +); + +other_initializer_ref_exprs( //dir=expr + unique int id: @other_initializer_ref_expr, + int initializer: @initializer_or_none ref +); + +overloaded_decl_ref_exprs( //dir=expr + unique int id: @overloaded_decl_ref_expr +); + +#keyset[id, index] +overloaded_decl_ref_expr_possible_declarations( //dir=expr + int id: @overloaded_decl_ref_expr ref, + int index: int ref, + int possible_declaration: @value_decl_or_none ref +); + +pack_element_exprs( //dir=expr + unique int id: @pack_element_expr, + int sub_expr: @expr_or_none ref +); + +pack_expansion_exprs( //dir=expr + unique int id: @pack_expansion_expr, + int pattern_expr: @expr_or_none ref +); + +property_wrapper_value_placeholder_exprs( //dir=expr + unique int id: @property_wrapper_value_placeholder_expr, + int placeholder: @opaque_value_expr_or_none ref +); + +#keyset[id] +property_wrapper_value_placeholder_expr_wrapped_values( //dir=expr + int id: @property_wrapper_value_placeholder_expr ref, + int wrapped_value: @expr_or_none ref +); + +rebind_self_in_initializer_exprs( //dir=expr + unique int id: @rebind_self_in_initializer_expr, + int sub_expr: @expr_or_none ref, + int self: @var_decl_or_none ref +); + +sequence_exprs( //dir=expr + unique int id: @sequence_expr +); + +#keyset[id, index] +sequence_expr_elements( //dir=expr + int id: @sequence_expr ref, + int index: int ref, + int element: @expr_or_none ref +); + +single_value_stmt_exprs( //dir=expr + unique int id: @single_value_stmt_expr, + int stmt: @stmt_or_none ref +); + +super_ref_exprs( //dir=expr + unique int id: @super_ref_expr, + int self: @var_decl_or_none ref +); + +tap_exprs( //dir=expr + unique int id: @tap_expr, + int body: @brace_stmt_or_none ref, + int var: @var_decl_or_none ref +); + +#keyset[id] +tap_expr_sub_exprs( //dir=expr + int id: @tap_expr ref, + int sub_expr: @expr_or_none ref +); + +tuple_element_exprs( //dir=expr + unique int id: @tuple_element_expr, + int sub_expr: @expr_or_none ref, + int index: int ref +); + +tuple_exprs( //dir=expr + unique int id: @tuple_expr +); + +#keyset[id, index] +tuple_expr_elements( //dir=expr + int id: @tuple_expr ref, + int index: int ref, + int element: @expr_or_none ref +); + +type_exprs( //dir=expr + unique int id: @type_expr +); + +#keyset[id] +type_expr_type_reprs( //dir=expr + int id: @type_expr ref, + int type_repr: @type_repr_or_none ref +); + +type_value_exprs( //dir=expr + unique int id: @type_value_expr, + int type_repr: @type_repr_or_none ref +); + +unresolved_decl_ref_exprs( //dir=expr + unique int id: @unresolved_decl_ref_expr +); + +#keyset[id] +unresolved_decl_ref_expr_names( //dir=expr + int id: @unresolved_decl_ref_expr ref, + string name: string ref +); + +unresolved_dot_exprs( //dir=expr + unique int id: @unresolved_dot_expr, + int base: @expr_or_none ref, + string name: string ref +); + +unresolved_member_exprs( //dir=expr + unique int id: @unresolved_member_expr, + string name: string ref +); + +unresolved_pattern_exprs( //dir=expr + unique int id: @unresolved_pattern_expr, + int sub_pattern: @pattern_or_none ref +); + +unresolved_specialize_exprs( //dir=expr + unique int id: @unresolved_specialize_expr, + int sub_expr: @expr_or_none ref +); + +vararg_expansion_exprs( //dir=expr + unique int id: @vararg_expansion_expr, + int sub_expr: @expr_or_none ref +); + +abi_safe_conversion_exprs( //dir=expr + unique int id: @abi_safe_conversion_expr +); + +actor_isolation_erasure_exprs( //dir=expr + unique int id: @actor_isolation_erasure_expr +); + +any_hashable_erasure_exprs( //dir=expr + unique int id: @any_hashable_erasure_expr +); + +archetype_to_super_exprs( //dir=expr + unique int id: @archetype_to_super_expr +); + +array_exprs( //dir=expr + unique int id: @array_expr +); + +#keyset[id, index] +array_expr_elements( //dir=expr + int id: @array_expr ref, + int index: int ref, + int element: @expr_or_none ref +); + +array_to_pointer_exprs( //dir=expr + unique int id: @array_to_pointer_expr +); + +auto_closure_exprs( //dir=expr + unique int id: @auto_closure_expr +); + +await_exprs( //dir=expr + unique int id: @await_expr +); + +binary_exprs( //dir=expr + unique int id: @binary_expr +); + +borrow_exprs( //dir=expr + unique int id: @borrow_expr +); + +bridge_from_obj_c_exprs( //dir=expr + unique int id: @bridge_from_obj_c_expr +); + +bridge_to_obj_c_exprs( //dir=expr + unique int id: @bridge_to_obj_c_expr +); + +@builtin_literal_expr = + @boolean_literal_expr +| @magic_identifier_literal_expr +| @number_literal_expr +| @string_literal_expr +; + +call_exprs( //dir=expr + unique int id: @call_expr +); + +@checked_cast_expr = + @conditional_checked_cast_expr +| @forced_checked_cast_expr +| @is_expr +; + +class_metatype_to_object_exprs( //dir=expr + unique int id: @class_metatype_to_object_expr +); + +coerce_exprs( //dir=expr + unique int id: @coerce_expr +); + +collection_upcast_conversion_exprs( //dir=expr + unique int id: @collection_upcast_conversion_expr +); + +conditional_bridge_from_obj_c_exprs( //dir=expr + unique int id: @conditional_bridge_from_obj_c_expr +); + +covariant_function_conversion_exprs( //dir=expr + unique int id: @covariant_function_conversion_expr +); + +covariant_return_conversion_exprs( //dir=expr + unique int id: @covariant_return_conversion_expr +); + +derived_to_base_exprs( //dir=expr + unique int id: @derived_to_base_expr +); + +destructure_tuple_exprs( //dir=expr + unique int id: @destructure_tuple_expr +); + +dictionary_exprs( //dir=expr + unique int id: @dictionary_expr +); + +#keyset[id, index] +dictionary_expr_elements( //dir=expr + int id: @dictionary_expr ref, + int index: int ref, + int element: @expr_or_none ref +); + +differentiable_function_exprs( //dir=expr + unique int id: @differentiable_function_expr +); + +differentiable_function_extract_original_exprs( //dir=expr + unique int id: @differentiable_function_extract_original_expr +); + +dot_self_exprs( //dir=expr + unique int id: @dot_self_expr +); + +@dynamic_lookup_expr = + @dynamic_member_ref_expr +| @dynamic_subscript_expr +; + +erasure_exprs( //dir=expr + unique int id: @erasure_expr +); + +existential_metatype_to_object_exprs( //dir=expr + unique int id: @existential_metatype_to_object_expr +); + +explicit_closure_exprs( //dir=expr + unique int id: @explicit_closure_expr +); + +force_try_exprs( //dir=expr + unique int id: @force_try_expr +); + +foreign_object_conversion_exprs( //dir=expr + unique int id: @foreign_object_conversion_expr +); + +function_conversion_exprs( //dir=expr + unique int id: @function_conversion_expr +); + +in_out_to_pointer_exprs( //dir=expr + unique int id: @in_out_to_pointer_expr +); + +inject_into_optional_exprs( //dir=expr + unique int id: @inject_into_optional_expr +); + +interpolated_string_literal_exprs( //dir=expr + unique int id: @interpolated_string_literal_expr +); + +#keyset[id] +interpolated_string_literal_expr_interpolation_exprs( //dir=expr + int id: @interpolated_string_literal_expr ref, + int interpolation_expr: @opaque_value_expr_or_none ref +); + +#keyset[id] +interpolated_string_literal_expr_appending_exprs( //dir=expr + int id: @interpolated_string_literal_expr ref, + int appending_expr: @tap_expr_or_none ref +); + +linear_function_exprs( //dir=expr + unique int id: @linear_function_expr +); + +linear_function_extract_original_exprs( //dir=expr + unique int id: @linear_function_extract_original_expr +); + +linear_to_differentiable_function_exprs( //dir=expr + unique int id: @linear_to_differentiable_function_expr +); + +load_exprs( //dir=expr + unique int id: @load_expr +); + +member_ref_exprs( //dir=expr + unique int id: @member_ref_expr +); + +#keyset[id] +member_ref_expr_has_direct_to_storage_semantics( //dir=expr + int id: @member_ref_expr ref +); + +#keyset[id] +member_ref_expr_has_direct_to_implementation_semantics( //dir=expr + int id: @member_ref_expr ref +); + +#keyset[id] +member_ref_expr_has_ordinary_semantics( //dir=expr + int id: @member_ref_expr ref +); + +#keyset[id] +member_ref_expr_has_distributed_thunk_semantics( //dir=expr + int id: @member_ref_expr ref +); + +metatype_conversion_exprs( //dir=expr + unique int id: @metatype_conversion_expr +); + +nil_literal_exprs( //dir=expr + unique int id: @nil_literal_expr +); + +object_literal_exprs( //dir=expr + unique int id: @object_literal_expr, + int kind: int ref +); + +#keyset[id, index] +object_literal_expr_arguments( //dir=expr + int id: @object_literal_expr ref, + int index: int ref, + int argument: @argument_or_none ref +); + +optional_try_exprs( //dir=expr + unique int id: @optional_try_expr +); + +paren_exprs( //dir=expr + unique int id: @paren_expr +); + +pointer_to_pointer_exprs( //dir=expr + unique int id: @pointer_to_pointer_expr +); + +postfix_unary_exprs( //dir=expr + unique int id: @postfix_unary_expr +); + +prefix_unary_exprs( //dir=expr + unique int id: @prefix_unary_expr +); + +protocol_metatype_to_object_exprs( //dir=expr + unique int id: @protocol_metatype_to_object_expr +); + +regex_literal_exprs( //dir=expr + unique int id: @regex_literal_expr, + string pattern: string ref, + int version: int ref +); + +@self_apply_expr = + @dot_syntax_call_expr +| @initializer_ref_call_expr +; + +#keyset[id] +self_apply_exprs( //dir=expr + int id: @self_apply_expr ref, + int base: @expr_or_none ref +); + +string_to_pointer_exprs( //dir=expr + unique int id: @string_to_pointer_expr +); + +subscript_exprs( //dir=expr + unique int id: @subscript_expr +); + +#keyset[id, index] +subscript_expr_arguments( //dir=expr + int id: @subscript_expr ref, + int index: int ref, + int argument: @argument_or_none ref +); + +#keyset[id] +subscript_expr_has_direct_to_storage_semantics( //dir=expr + int id: @subscript_expr ref +); + +#keyset[id] +subscript_expr_has_direct_to_implementation_semantics( //dir=expr + int id: @subscript_expr ref +); + +#keyset[id] +subscript_expr_has_ordinary_semantics( //dir=expr + int id: @subscript_expr ref +); + +#keyset[id] +subscript_expr_has_distributed_thunk_semantics( //dir=expr + int id: @subscript_expr ref +); + +try_exprs( //dir=expr + unique int id: @try_expr +); + +underlying_to_opaque_exprs( //dir=expr + unique int id: @underlying_to_opaque_expr +); + +unevaluated_instance_exprs( //dir=expr + unique int id: @unevaluated_instance_expr +); + +unreachable_exprs( //dir=expr + unique int id: @unreachable_expr +); + +unresolved_member_chain_result_exprs( //dir=expr + unique int id: @unresolved_member_chain_result_expr +); + +unresolved_type_conversion_exprs( //dir=expr + unique int id: @unresolved_type_conversion_expr +); + +unsafe_cast_exprs( //dir=expr + unique int id: @unsafe_cast_expr +); + +unsafe_exprs( //dir=expr + unique int id: @unsafe_expr +); + +boolean_literal_exprs( //dir=expr + unique int id: @boolean_literal_expr, + boolean value: boolean ref +); + +conditional_checked_cast_exprs( //dir=expr + unique int id: @conditional_checked_cast_expr +); + +dot_syntax_call_exprs( //dir=expr + unique int id: @dot_syntax_call_expr +); + +dynamic_member_ref_exprs( //dir=expr + unique int id: @dynamic_member_ref_expr +); + +dynamic_subscript_exprs( //dir=expr + unique int id: @dynamic_subscript_expr +); + +forced_checked_cast_exprs( //dir=expr + unique int id: @forced_checked_cast_expr +); + +initializer_ref_call_exprs( //dir=expr + unique int id: @initializer_ref_call_expr +); + +is_exprs( //dir=expr + unique int id: @is_expr +); + +magic_identifier_literal_exprs( //dir=expr + unique int id: @magic_identifier_literal_expr, + string kind: string ref +); + +@number_literal_expr = + @float_literal_expr +| @integer_literal_expr +; + +string_literal_exprs( //dir=expr + unique int id: @string_literal_expr, + string value: string ref +); + +float_literal_exprs( //dir=expr + unique int id: @float_literal_expr, + string string_value: string ref +); + +integer_literal_exprs( //dir=expr + unique int id: @integer_literal_expr, + string string_value: string ref +); + +@pattern = + @any_pattern +| @binding_pattern +| @bool_pattern +| @enum_element_pattern +| @expr_pattern +| @is_pattern +| @named_pattern +| @optional_some_pattern +| @paren_pattern +| @tuple_pattern +| @typed_pattern +; + +#keyset[id] +pattern_types( //dir=pattern + int id: @pattern ref, + int type_: @type_or_none ref +); + +any_patterns( //dir=pattern + unique int id: @any_pattern +); + +binding_patterns( //dir=pattern + unique int id: @binding_pattern, + int sub_pattern: @pattern_or_none ref +); + +bool_patterns( //dir=pattern + unique int id: @bool_pattern, + boolean value: boolean ref +); + +enum_element_patterns( //dir=pattern + unique int id: @enum_element_pattern, + int element: @enum_element_decl_or_none ref +); + +#keyset[id] +enum_element_pattern_sub_patterns( //dir=pattern + int id: @enum_element_pattern ref, + int sub_pattern: @pattern_or_none ref +); + +expr_patterns( //dir=pattern + unique int id: @expr_pattern, + int sub_expr: @expr_or_none ref +); + +is_patterns( //dir=pattern + unique int id: @is_pattern +); + +#keyset[id] +is_pattern_cast_type_reprs( //dir=pattern + int id: @is_pattern ref, + int cast_type_repr: @type_repr_or_none ref +); + +#keyset[id] +is_pattern_sub_patterns( //dir=pattern + int id: @is_pattern ref, + int sub_pattern: @pattern_or_none ref +); + +named_patterns( //dir=pattern + unique int id: @named_pattern, + int var_decl: @var_decl_or_none ref +); + +optional_some_patterns( //dir=pattern + unique int id: @optional_some_pattern, + int sub_pattern: @pattern_or_none ref +); + +paren_patterns( //dir=pattern + unique int id: @paren_pattern, + int sub_pattern: @pattern_or_none ref +); + +tuple_patterns( //dir=pattern + unique int id: @tuple_pattern +); + +#keyset[id, index] +tuple_pattern_elements( //dir=pattern + int id: @tuple_pattern ref, + int index: int ref, + int element: @pattern_or_none ref +); + +typed_patterns( //dir=pattern + unique int id: @typed_pattern, + int sub_pattern: @pattern_or_none ref +); + +#keyset[id] +typed_pattern_type_reprs( //dir=pattern + int id: @typed_pattern ref, + int type_repr: @type_repr_or_none ref +); + +case_label_items( //dir=stmt + unique int id: @case_label_item, + int pattern: @pattern_or_none ref +); + +#keyset[id] +case_label_item_guards( //dir=stmt + int id: @case_label_item ref, + int guard: @expr_or_none ref +); + +condition_elements( //dir=stmt + unique int id: @condition_element +); + +#keyset[id] +condition_element_booleans( //dir=stmt + int id: @condition_element ref, + int boolean_: @expr_or_none ref +); + +#keyset[id] +condition_element_patterns( //dir=stmt + int id: @condition_element ref, + int pattern: @pattern_or_none ref +); + +#keyset[id] +condition_element_initializers( //dir=stmt + int id: @condition_element ref, + int initializer: @expr_or_none ref +); + +#keyset[id] +condition_element_availabilities( //dir=stmt + int id: @condition_element ref, + int availability: @availability_info_or_none ref +); + +@stmt = + @brace_stmt +| @break_stmt +| @case_stmt +| @continue_stmt +| @defer_stmt +| @discard_stmt +| @fail_stmt +| @fallthrough_stmt +| @labeled_stmt +| @pound_assert_stmt +| @return_stmt +| @then_stmt +| @throw_stmt +| @yield_stmt +; + +stmt_conditions( //dir=stmt + unique int id: @stmt_condition +); + +#keyset[id, index] +stmt_condition_elements( //dir=stmt + int id: @stmt_condition ref, + int index: int ref, + int element: @condition_element_or_none ref +); + +brace_stmts( //dir=stmt + unique int id: @brace_stmt +); + +#keyset[id, index] +brace_stmt_elements( //dir=stmt + int id: @brace_stmt ref, + int index: int ref, + int element: @ast_node_or_none ref +); + +break_stmts( //dir=stmt + unique int id: @break_stmt +); + +#keyset[id] +break_stmt_target_names( //dir=stmt + int id: @break_stmt ref, + string target_name: string ref +); + +#keyset[id] +break_stmt_targets( //dir=stmt + int id: @break_stmt ref, + int target: @stmt_or_none ref +); + +case_stmts( //dir=stmt + unique int id: @case_stmt, + int body: @stmt_or_none ref +); + +#keyset[id, index] +case_stmt_labels( //dir=stmt + int id: @case_stmt ref, + int index: int ref, + int label: @case_label_item_or_none ref +); + +#keyset[id, index] +case_stmt_variables( //dir=stmt + int id: @case_stmt ref, + int index: int ref, + int variable: @var_decl_or_none ref +); + +continue_stmts( //dir=stmt + unique int id: @continue_stmt +); + +#keyset[id] +continue_stmt_target_names( //dir=stmt + int id: @continue_stmt ref, + string target_name: string ref +); + +#keyset[id] +continue_stmt_targets( //dir=stmt + int id: @continue_stmt ref, + int target: @stmt_or_none ref +); + +defer_stmts( //dir=stmt + unique int id: @defer_stmt, + int body: @brace_stmt_or_none ref +); + +discard_stmts( //dir=stmt + unique int id: @discard_stmt, + int sub_expr: @expr_or_none ref +); + +fail_stmts( //dir=stmt + unique int id: @fail_stmt +); + +fallthrough_stmts( //dir=stmt + unique int id: @fallthrough_stmt, + int fallthrough_source: @case_stmt_or_none ref, + int fallthrough_dest: @case_stmt_or_none ref +); + +@labeled_stmt = + @do_catch_stmt +| @do_stmt +| @for_each_stmt +| @labeled_conditional_stmt +| @repeat_while_stmt +| @switch_stmt +; + +#keyset[id] +labeled_stmt_labels( //dir=stmt + int id: @labeled_stmt ref, + string label: string ref +); + +pound_assert_stmts( //dir=stmt + unique int id: @pound_assert_stmt, + int condition: @expr_or_none ref, + string message: string ref +); + +return_stmts( //dir=stmt + unique int id: @return_stmt +); + +#keyset[id] +return_stmt_results( //dir=stmt + int id: @return_stmt ref, + int result: @expr_or_none ref +); + +then_stmts( //dir=stmt + unique int id: @then_stmt, + int result: @expr_or_none ref +); + +throw_stmts( //dir=stmt + unique int id: @throw_stmt, + int sub_expr: @expr_or_none ref +); + +yield_stmts( //dir=stmt + unique int id: @yield_stmt +); + +#keyset[id, index] +yield_stmt_results( //dir=stmt + int id: @yield_stmt ref, + int index: int ref, + int result: @expr_or_none ref +); + +do_catch_stmts( //dir=stmt + unique int id: @do_catch_stmt, + int body: @stmt_or_none ref +); + +#keyset[id, index] +do_catch_stmt_catches( //dir=stmt + int id: @do_catch_stmt ref, + int index: int ref, + int catch: @case_stmt_or_none ref +); + +do_stmts( //dir=stmt + unique int id: @do_stmt, + int body: @brace_stmt_or_none ref +); + +for_each_stmts( //dir=stmt + unique int id: @for_each_stmt, + int pattern: @pattern_or_none ref, + int body: @brace_stmt_or_none ref +); + +#keyset[id, index] +for_each_stmt_variables( //dir=stmt + int id: @for_each_stmt ref, + int index: int ref, + int variable: @var_decl_or_none ref +); + +#keyset[id] +for_each_stmt_wheres( //dir=stmt + int id: @for_each_stmt ref, + int where: @expr_or_none ref +); + +#keyset[id] +for_each_stmt_iterator_vars( //dir=stmt + int id: @for_each_stmt ref, + int iteratorVar: @pattern_binding_decl_or_none ref +); + +#keyset[id] +for_each_stmt_next_calls( //dir=stmt + int id: @for_each_stmt ref, + int nextCall: @expr_or_none ref +); + +@labeled_conditional_stmt = + @guard_stmt +| @if_stmt +| @while_stmt +; + +#keyset[id] +labeled_conditional_stmts( //dir=stmt + int id: @labeled_conditional_stmt ref, + int condition: @stmt_condition_or_none ref +); + +repeat_while_stmts( //dir=stmt + unique int id: @repeat_while_stmt, + int condition: @expr_or_none ref, + int body: @stmt_or_none ref +); + +switch_stmts( //dir=stmt + unique int id: @switch_stmt, + int expr: @expr_or_none ref +); + +#keyset[id, index] +switch_stmt_cases( //dir=stmt + int id: @switch_stmt ref, + int index: int ref, + int case_: @case_stmt_or_none ref +); + +guard_stmts( //dir=stmt + unique int id: @guard_stmt, + int body: @brace_stmt_or_none ref +); + +if_stmts( //dir=stmt + unique int id: @if_stmt, + int then: @stmt_or_none ref +); + +#keyset[id] +if_stmt_elses( //dir=stmt + int id: @if_stmt ref, + int else: @stmt_or_none ref +); + +while_stmts( //dir=stmt + unique int id: @while_stmt, + int body: @stmt_or_none ref +); + +@type = + @any_function_type +| @any_generic_type +| @any_metatype_type +| @builtin_type +| @dependent_member_type +| @dynamic_self_type +| @error_type +| @existential_type +| @in_out_type +| @integer_type +| @l_value_type +| @module_type +| @pack_element_type +| @pack_expansion_type +| @pack_type +| @parameterized_protocol_type +| @protocol_composition_type +| @reference_storage_type +| @substitutable_type +| @sugar_type +| @tuple_type +| @unresolved_type +; + +#keyset[id] +types( //dir=type + int id: @type ref, + string name: string ref, + int canonical_type: @type_or_none ref +); + +type_reprs( //dir=type + unique int id: @type_repr, + int type_: @type_or_none ref +); + +@any_function_type = + @function_type +| @generic_function_type +; + +#keyset[id] +any_function_types( //dir=type + int id: @any_function_type ref, + int result: @type_or_none ref +); + +#keyset[id, index] +any_function_type_param_types( //dir=type + int id: @any_function_type ref, + int index: int ref, + int param_type: @type_or_none ref +); + +#keyset[id] +any_function_type_is_throwing( //dir=type + int id: @any_function_type ref +); + +#keyset[id] +any_function_type_is_async( //dir=type + int id: @any_function_type ref +); + +@any_generic_type = + @nominal_or_bound_generic_nominal_type +| @unbound_generic_type +; + +#keyset[id] +any_generic_types( //dir=type + int id: @any_generic_type ref, + int declaration: @generic_type_decl_or_none ref +); + +#keyset[id] +any_generic_type_parents( //dir=type + int id: @any_generic_type ref, + int parent: @type_or_none ref +); + +@any_metatype_type = + @existential_metatype_type +| @metatype_type +; + +@builtin_type = + @any_builtin_integer_type +| @builtin_bridge_object_type +| @builtin_default_actor_storage_type +| @builtin_executor_type +| @builtin_float_type +| @builtin_generic_type +| @builtin_job_type +| @builtin_native_object_type +| @builtin_raw_pointer_type +| @builtin_raw_unsafe_continuation_type +| @builtin_unsafe_value_buffer_type +| @builtin_vector_type +; + +dependent_member_types( //dir=type + unique int id: @dependent_member_type, + int base_type: @type_or_none ref, + int associated_type_decl: @associated_type_decl_or_none ref +); + +dynamic_self_types( //dir=type + unique int id: @dynamic_self_type, + int static_self_type: @type_or_none ref +); + +error_types( //dir=type + unique int id: @error_type +); + +existential_types( //dir=type + unique int id: @existential_type, + int constraint: @type_or_none ref +); + +in_out_types( //dir=type + unique int id: @in_out_type, + int object_type: @type_or_none ref +); + +integer_types( //dir=type + unique int id: @integer_type, + string value: string ref +); + +l_value_types( //dir=type + unique int id: @l_value_type, + int object_type: @type_or_none ref +); + +module_types( //dir=type + unique int id: @module_type, + int module: @module_decl_or_none ref +); + +pack_element_types( //dir=type + unique int id: @pack_element_type, + int pack_type: @type_or_none ref +); + +pack_expansion_types( //dir=type + unique int id: @pack_expansion_type, + int pattern_type: @type_or_none ref, + int count_type: @type_or_none ref +); + +pack_types( //dir=type + unique int id: @pack_type +); + +#keyset[id, index] +pack_type_elements( //dir=type + int id: @pack_type ref, + int index: int ref, + int element: @type_or_none ref +); + +parameterized_protocol_types( //dir=type + unique int id: @parameterized_protocol_type, + int base: @protocol_type_or_none ref +); + +#keyset[id, index] +parameterized_protocol_type_args( //dir=type + int id: @parameterized_protocol_type ref, + int index: int ref, + int arg: @type_or_none ref +); + +protocol_composition_types( //dir=type + unique int id: @protocol_composition_type +); + +#keyset[id, index] +protocol_composition_type_members( //dir=type + int id: @protocol_composition_type ref, + int index: int ref, + int member: @type_or_none ref +); + +@reference_storage_type = + @unmanaged_storage_type +| @unowned_storage_type +| @weak_storage_type +; + +#keyset[id] +reference_storage_types( //dir=type + int id: @reference_storage_type ref, + int referent_type: @type_or_none ref +); + +@substitutable_type = + @archetype_type +| @generic_type_param_type +; + +@sugar_type = + @paren_type +| @syntax_sugar_type +| @type_alias_type +; + +tuple_types( //dir=type + unique int id: @tuple_type +); + +#keyset[id, index] +tuple_type_types( //dir=type + int id: @tuple_type ref, + int index: int ref, + int type_: @type_or_none ref +); + +#keyset[id, index] +tuple_type_names( //dir=type + int id: @tuple_type ref, + int index: int ref, + string name: string ref +); + +unresolved_types( //dir=type + unique int id: @unresolved_type +); + +@any_builtin_integer_type = + @builtin_integer_literal_type +| @builtin_integer_type +; + +@archetype_type = + @local_archetype_type +| @opaque_type_archetype_type +| @pack_archetype_type +| @primary_archetype_type +; + +#keyset[id] +archetype_types( //dir=type + int id: @archetype_type ref, + int interface_type: @type_or_none ref +); + +#keyset[id] +archetype_type_superclasses( //dir=type + int id: @archetype_type ref, + int superclass: @type_or_none ref +); + +#keyset[id, index] +archetype_type_protocols( //dir=type + int id: @archetype_type ref, + int index: int ref, + int protocol: @protocol_decl_or_none ref +); + +builtin_bridge_object_types( //dir=type + unique int id: @builtin_bridge_object_type +); + +builtin_default_actor_storage_types( //dir=type + unique int id: @builtin_default_actor_storage_type +); + +builtin_executor_types( //dir=type + unique int id: @builtin_executor_type +); + +builtin_float_types( //dir=type + unique int id: @builtin_float_type +); + +@builtin_generic_type = + @builtin_fixed_array_type +; + +builtin_job_types( //dir=type + unique int id: @builtin_job_type +); + +builtin_native_object_types( //dir=type + unique int id: @builtin_native_object_type +); + +builtin_raw_pointer_types( //dir=type + unique int id: @builtin_raw_pointer_type +); + +builtin_raw_unsafe_continuation_types( //dir=type + unique int id: @builtin_raw_unsafe_continuation_type +); + +builtin_unsafe_value_buffer_types( //dir=type + unique int id: @builtin_unsafe_value_buffer_type +); + +builtin_vector_types( //dir=type + unique int id: @builtin_vector_type +); + +existential_metatype_types( //dir=type + unique int id: @existential_metatype_type +); + +function_types( //dir=type + unique int id: @function_type +); + +generic_function_types( //dir=type + unique int id: @generic_function_type +); + +#keyset[id, index] +generic_function_type_generic_params( //dir=type + int id: @generic_function_type ref, + int index: int ref, + int generic_param: @generic_type_param_type_or_none ref +); + +generic_type_param_types( //dir=type + unique int id: @generic_type_param_type +); + +metatype_types( //dir=type + unique int id: @metatype_type +); + +@nominal_or_bound_generic_nominal_type = + @bound_generic_type +| @nominal_type +; + +paren_types( //dir=type + unique int id: @paren_type, + int type_: @type_or_none ref +); + +@syntax_sugar_type = + @dictionary_type +| @inline_array_type +| @unary_syntax_sugar_type +; + +type_alias_types( //dir=type + unique int id: @type_alias_type, + int decl: @type_alias_decl_or_none ref +); + +unbound_generic_types( //dir=type + unique int id: @unbound_generic_type +); + +unmanaged_storage_types( //dir=type + unique int id: @unmanaged_storage_type +); + +unowned_storage_types( //dir=type + unique int id: @unowned_storage_type +); + +weak_storage_types( //dir=type + unique int id: @weak_storage_type +); + +@bound_generic_type = + @bound_generic_class_type +| @bound_generic_enum_type +| @bound_generic_struct_type +; + +#keyset[id, index] +bound_generic_type_arg_types( //dir=type + int id: @bound_generic_type ref, + int index: int ref, + int arg_type: @type_or_none ref +); + +builtin_fixed_array_types( //dir=type + unique int id: @builtin_fixed_array_type, + int size: @type_or_none ref, + int element_type: @type_or_none ref +); + +builtin_integer_literal_types( //dir=type + unique int id: @builtin_integer_literal_type +); + +builtin_integer_types( //dir=type + unique int id: @builtin_integer_type +); + +#keyset[id] +builtin_integer_type_widths( //dir=type + int id: @builtin_integer_type ref, + int width: int ref +); + +dictionary_types( //dir=type + unique int id: @dictionary_type, + int key_type: @type_or_none ref, + int value_type: @type_or_none ref +); + +inline_array_types( //dir=type + unique int id: @inline_array_type, + int count_type: @type_or_none ref, + int element_type: @type_or_none ref +); + +@local_archetype_type = + @element_archetype_type +| @existential_archetype_type +; + +@nominal_type = + @class_type +| @enum_type +| @protocol_type +| @struct_type +; + +opaque_type_archetype_types( //dir=type + unique int id: @opaque_type_archetype_type, + int declaration: @opaque_type_decl_or_none ref +); + +pack_archetype_types( //dir=type + unique int id: @pack_archetype_type +); + +primary_archetype_types( //dir=type + unique int id: @primary_archetype_type +); + +@unary_syntax_sugar_type = + @array_slice_type +| @optional_type +| @variadic_sequence_type +; + +#keyset[id] +unary_syntax_sugar_types( //dir=type + int id: @unary_syntax_sugar_type ref, + int base_type: @type_or_none ref +); + +array_slice_types( //dir=type + unique int id: @array_slice_type +); + +bound_generic_class_types( //dir=type + unique int id: @bound_generic_class_type +); + +bound_generic_enum_types( //dir=type + unique int id: @bound_generic_enum_type +); + +bound_generic_struct_types( //dir=type + unique int id: @bound_generic_struct_type +); + +class_types( //dir=type + unique int id: @class_type +); + +element_archetype_types( //dir=type + unique int id: @element_archetype_type +); + +enum_types( //dir=type + unique int id: @enum_type +); + +existential_archetype_types( //dir=type + unique int id: @existential_archetype_type +); + +optional_types( //dir=type + unique int id: @optional_type +); + +protocol_types( //dir=type + unique int id: @protocol_type +); + +struct_types( //dir=type + unique int id: @struct_type +); + +variadic_sequence_types( //dir=type + unique int id: @variadic_sequence_type +); + +@accessor_or_none = + @accessor +| @unspecified_element +; + +@argument_or_none = + @argument +| @unspecified_element +; + +@associated_type_decl_or_none = + @associated_type_decl +| @unspecified_element +; + +@ast_node_or_none = + @ast_node +| @unspecified_element +; + +@availability_info_or_none = + @availability_info +| @unspecified_element +; + +@availability_spec_or_none = + @availability_spec +| @unspecified_element +; + +@brace_stmt_or_none = + @brace_stmt +| @unspecified_element +; + +@captured_decl_or_none = + @captured_decl +| @unspecified_element +; + +@case_label_item_or_none = + @case_label_item +| @unspecified_element +; + +@case_stmt_or_none = + @case_stmt +| @unspecified_element +; + +@closure_expr_or_none = + @closure_expr +| @unspecified_element +; + +@condition_element_or_none = + @condition_element +| @unspecified_element +; + +@decl_or_none = + @decl +| @unspecified_element +; + +@enum_element_decl_or_none = + @enum_element_decl +| @unspecified_element +; + +@expr_or_none = + @expr +| @unspecified_element +; + +@file_or_none = + @file +| @unspecified_element +; + +@function_or_none = + @function +| @unspecified_element +; + +@generic_type_decl_or_none = + @generic_type_decl +| @unspecified_element +; + +@generic_type_param_decl_or_none = + @generic_type_param_decl +| @unspecified_element +; + +@generic_type_param_type_or_none = + @generic_type_param_type +| @unspecified_element +; + +@initializer_or_none = + @initializer +| @unspecified_element +; + +@key_path_component_or_none = + @key_path_component +| @unspecified_element +; + +@location_or_none = + @location +| @unspecified_element +; + +@macro_role_or_none = + @macro_role +| @unspecified_element +; + +@module_decl_or_none = + @module_decl +| @unspecified_element +; + +@nominal_type_decl_or_none = + @nominal_type_decl +| @unspecified_element +; + +@opaque_type_decl_or_none = + @opaque_type_decl +| @unspecified_element +; + +@opaque_value_expr_or_none = + @opaque_value_expr +| @unspecified_element +; + +@param_decl_or_none = + @param_decl +| @unspecified_element +; + +@pattern_or_none = + @pattern +| @unspecified_element +; + +@pattern_binding_decl_or_none = + @pattern_binding_decl +| @unspecified_element +; + +@precedence_group_decl_or_none = + @precedence_group_decl +| @unspecified_element +; + +@protocol_decl_or_none = + @protocol_decl +| @unspecified_element +; + +@protocol_type_or_none = + @protocol_type +| @unspecified_element +; + +@stmt_or_none = + @stmt +| @unspecified_element +; + +@stmt_condition_or_none = + @stmt_condition +| @unspecified_element +; + +@string_literal_expr_or_none = + @string_literal_expr +| @unspecified_element +; + +@tap_expr_or_none = + @tap_expr +| @unspecified_element +; + +@type_or_none = + @type +| @unspecified_element +; + +@type_alias_decl_or_none = + @type_alias_decl +| @unspecified_element +; + +@type_repr_or_none = + @type_repr +| @unspecified_element +; + +@value_decl_or_none = + @unspecified_element +| @value_decl +; + +@var_decl_or_none = + @unspecified_element +| @var_decl +; diff --git a/swift/downgrades/1bb163e31d206f30146738adcd93def10fdabefa/swift.dbscheme b/swift/downgrades/1bb163e31d206f30146738adcd93def10fdabefa/swift.dbscheme new file mode 100644 index 000000000000..5738be6bb047 --- /dev/null +++ b/swift/downgrades/1bb163e31d206f30146738adcd93def10fdabefa/swift.dbscheme @@ -0,0 +1,2891 @@ +// generated by codegen/codegen.py, do not edit + +// from prefix.dbscheme +/** + * The source location of the snapshot. + */ +sourceLocationPrefix( + string prefix: string ref +); + + +// from schema.py + +@element = + @file +| @generic_context +| @locatable +| @location +| @type +; + +#keyset[id] +element_is_unknown( + int id: @element ref +); + +@file = + @db_file +; + +#keyset[id] +files( + int id: @file ref, + string name: string ref +); + +#keyset[id] +file_is_successfully_extracted( + int id: @file ref +); + +@locatable = + @argument +| @ast_node +| @comment +| @diagnostics +| @error_element +; + +#keyset[id] +locatable_locations( + int id: @locatable ref, + int location: @location_or_none ref +); + +@location = + @db_location +; + +#keyset[id] +locations( + int id: @location ref, + int file: @file_or_none ref, + int start_line: int ref, + int start_column: int ref, + int end_line: int ref, + int end_column: int ref +); + +@ast_node = + @availability_info +| @availability_spec +| @callable +| @case_label_item +| @condition_element +| @decl +| @expr +| @key_path_component +| @macro_role +| @pattern +| @stmt +| @stmt_condition +| @type_repr +; + +comments( + unique int id: @comment, + string text: string ref +); + +db_files( + unique int id: @db_file +); + +db_locations( + unique int id: @db_location +); + +diagnostics( + unique int id: @diagnostics, + string text: string ref, + int kind: int ref +); + +@error_element = + @error_expr +| @error_type +| @overloaded_decl_ref_expr +| @unresolved_decl_ref_expr +| @unresolved_dot_expr +| @unresolved_member_chain_result_expr +| @unresolved_member_expr +| @unresolved_pattern_expr +| @unresolved_specialize_expr +| @unresolved_type +| @unresolved_type_conversion_expr +| @unspecified_element +; + +availability_infos( + unique int id: @availability_info +); + +#keyset[id] +availability_info_is_unavailable( + int id: @availability_info ref +); + +#keyset[id, index] +availability_info_specs( + int id: @availability_info ref, + int index: int ref, + int spec: @availability_spec_or_none ref +); + +availability_specs( + unique int id: @availability_spec +); + +#keyset[id] +availability_spec_platforms( + int id: @availability_spec ref, + string platform: string ref +); + +#keyset[id] +availability_spec_versions( + int id: @availability_spec ref, + string version: string ref +); + +#keyset[id] +availability_spec_is_wildcard( + int id: @availability_spec ref +); + +@callable = + @closure_expr +| @function +; + +#keyset[id] +callable_names( + int id: @callable ref, + string name: string ref +); + +#keyset[id] +callable_self_params( + int id: @callable ref, + int self_param: @param_decl_or_none ref +); + +#keyset[id, index] +callable_params( + int id: @callable ref, + int index: int ref, + int param: @param_decl_or_none ref +); + +#keyset[id] +callable_bodies( + int id: @callable ref, + int body: @brace_stmt_or_none ref +); + +#keyset[id, index] +callable_captures( + int id: @callable ref, + int index: int ref, + int capture: @captured_decl_or_none ref +); + +key_path_components( + unique int id: @key_path_component, + int kind: int ref, + int component_type: @type_or_none ref +); + +#keyset[id, index] +key_path_component_subscript_arguments( + int id: @key_path_component ref, + int index: int ref, + int subscript_argument: @argument_or_none ref +); + +#keyset[id] +key_path_component_tuple_indices( + int id: @key_path_component ref, + int tuple_index: int ref +); + +#keyset[id] +key_path_component_decl_refs( + int id: @key_path_component ref, + int decl_ref: @value_decl_or_none ref +); + +macro_roles( + unique int id: @macro_role, + int kind: int ref, + int macro_syntax: int ref +); + +#keyset[id, index] +macro_role_conformances( + int id: @macro_role ref, + int index: int ref, + int conformance: @expr_or_none ref +); + +#keyset[id, index] +macro_role_names( + int id: @macro_role ref, + int index: int ref, + string name: string ref +); + +unspecified_elements( + unique int id: @unspecified_element, + string property: string ref, + string error: string ref +); + +#keyset[id] +unspecified_element_parents( + int id: @unspecified_element ref, + int parent: @element ref +); + +#keyset[id] +unspecified_element_indices( + int id: @unspecified_element ref, + int index: int ref +); + +#keyset[id, index] +unspecified_element_children( + int id: @unspecified_element ref, + int index: int ref, + int child: @ast_node_or_none ref +); + +@decl = + @captured_decl +| @enum_case_decl +| @extension_decl +| @if_config_decl +| @import_decl +| @missing_member_decl +| @operator_decl +| @pattern_binding_decl +| @pound_diagnostic_decl +| @precedence_group_decl +| @top_level_code_decl +| @using_decl +| @value_decl +; + +#keyset[id] +decls( //dir=decl + int id: @decl ref, + int module: @module_decl_or_none ref +); + +#keyset[id, index] +decl_members( //dir=decl + int id: @decl ref, + int index: int ref, + int member: @decl_or_none ref +); + +@generic_context = + @extension_decl +| @function +| @generic_type_decl +| @macro_decl +| @subscript_decl +; + +#keyset[id, index] +generic_context_generic_type_params( //dir=decl + int id: @generic_context ref, + int index: int ref, + int generic_type_param: @generic_type_param_decl_or_none ref +); + +captured_decls( //dir=decl + unique int id: @captured_decl, + int decl: @value_decl_or_none ref +); + +#keyset[id] +captured_decl_is_direct( //dir=decl + int id: @captured_decl ref +); + +#keyset[id] +captured_decl_is_escaping( //dir=decl + int id: @captured_decl ref +); + +enum_case_decls( //dir=decl + unique int id: @enum_case_decl +); + +#keyset[id, index] +enum_case_decl_elements( //dir=decl + int id: @enum_case_decl ref, + int index: int ref, + int element: @enum_element_decl_or_none ref +); + +extension_decls( //dir=decl + unique int id: @extension_decl, + int extended_type_decl: @nominal_type_decl_or_none ref +); + +#keyset[id, index] +extension_decl_protocols( //dir=decl + int id: @extension_decl ref, + int index: int ref, + int protocol: @protocol_decl_or_none ref +); + +if_config_decls( //dir=decl + unique int id: @if_config_decl +); + +#keyset[id, index] +if_config_decl_active_elements( //dir=decl + int id: @if_config_decl ref, + int index: int ref, + int active_element: @ast_node_or_none ref +); + +import_decls( //dir=decl + unique int id: @import_decl +); + +#keyset[id] +import_decl_is_exported( //dir=decl + int id: @import_decl ref +); + +#keyset[id] +import_decl_imported_modules( //dir=decl + int id: @import_decl ref, + int imported_module: @module_decl_or_none ref +); + +#keyset[id, index] +import_decl_declarations( //dir=decl + int id: @import_decl ref, + int index: int ref, + int declaration: @value_decl_or_none ref +); + +missing_member_decls( //dir=decl + unique int id: @missing_member_decl, + string name: string ref +); + +@operator_decl = + @infix_operator_decl +| @postfix_operator_decl +| @prefix_operator_decl +; + +#keyset[id] +operator_decls( //dir=decl + int id: @operator_decl ref, + string name: string ref +); + +pattern_binding_decls( //dir=decl + unique int id: @pattern_binding_decl +); + +#keyset[id, index] +pattern_binding_decl_inits( //dir=decl + int id: @pattern_binding_decl ref, + int index: int ref, + int init: @expr_or_none ref +); + +#keyset[id, index] +pattern_binding_decl_patterns( //dir=decl + int id: @pattern_binding_decl ref, + int index: int ref, + int pattern: @pattern_or_none ref +); + +pound_diagnostic_decls( //dir=decl + unique int id: @pound_diagnostic_decl, + int kind: int ref, + int message: @string_literal_expr_or_none ref +); + +precedence_group_decls( //dir=decl + unique int id: @precedence_group_decl +); + +top_level_code_decls( //dir=decl + unique int id: @top_level_code_decl, + int body: @brace_stmt_or_none ref +); + +using_decls( //dir=decl + unique int id: @using_decl +); + +#keyset[id] +using_decl_is_main_actor( //dir=decl + int id: @using_decl ref +); + +#keyset[id] +using_decl_is_nonisolated( //dir=decl + int id: @using_decl ref +); + +@value_decl = + @abstract_storage_decl +| @enum_element_decl +| @function +| @macro_decl +| @type_decl +; + +#keyset[id] +value_decls( //dir=decl + int id: @value_decl ref, + int interface_type: @type_or_none ref +); + +@abstract_storage_decl = + @subscript_decl +| @var_decl +; + +#keyset[id, index] +abstract_storage_decl_accessors( //dir=decl + int id: @abstract_storage_decl ref, + int index: int ref, + int accessor: @accessor_or_none ref +); + +enum_element_decls( //dir=decl + unique int id: @enum_element_decl, + string name: string ref +); + +#keyset[id, index] +enum_element_decl_params( //dir=decl + int id: @enum_element_decl ref, + int index: int ref, + int param: @param_decl_or_none ref +); + +@function = + @accessor_or_named_function +| @deinitializer +| @initializer +; + +infix_operator_decls( //dir=decl + unique int id: @infix_operator_decl +); + +#keyset[id] +infix_operator_decl_precedence_groups( //dir=decl + int id: @infix_operator_decl ref, + int precedence_group: @precedence_group_decl_or_none ref +); + +macro_decls( //dir=decl + unique int id: @macro_decl, + string name: string ref +); + +#keyset[id, index] +macro_decl_parameters( //dir=decl + int id: @macro_decl ref, + int index: int ref, + int parameter: @param_decl_or_none ref +); + +#keyset[id, index] +macro_decl_roles( //dir=decl + int id: @macro_decl ref, + int index: int ref, + int role: @macro_role_or_none ref +); + +postfix_operator_decls( //dir=decl + unique int id: @postfix_operator_decl +); + +prefix_operator_decls( //dir=decl + unique int id: @prefix_operator_decl +); + +@type_decl = + @abstract_type_param_decl +| @generic_type_decl +| @module_decl +; + +#keyset[id] +type_decls( //dir=decl + int id: @type_decl ref, + string name: string ref +); + +#keyset[id, index] +type_decl_inherited_types( //dir=decl + int id: @type_decl ref, + int index: int ref, + int inherited_type: @type_or_none ref +); + +@abstract_type_param_decl = + @associated_type_decl +| @generic_type_param_decl +; + +@accessor_or_named_function = + @accessor +| @named_function +; + +deinitializers( //dir=decl + unique int id: @deinitializer +); + +@generic_type_decl = + @nominal_type_decl +| @opaque_type_decl +| @type_alias_decl +; + +initializers( //dir=decl + unique int id: @initializer +); + +module_decls( //dir=decl + unique int id: @module_decl +); + +#keyset[id] +module_decl_is_builtin_module( //dir=decl + int id: @module_decl ref +); + +#keyset[id] +module_decl_is_system_module( //dir=decl + int id: @module_decl ref +); + +module_decl_imported_modules( //dir=decl + int id: @module_decl ref, + int imported_module: @module_decl_or_none ref +); + +module_decl_exported_modules( //dir=decl + int id: @module_decl ref, + int exported_module: @module_decl_or_none ref +); + +subscript_decls( //dir=decl + unique int id: @subscript_decl, + int element_type: @type_or_none ref +); + +#keyset[id, index] +subscript_decl_params( //dir=decl + int id: @subscript_decl ref, + int index: int ref, + int param: @param_decl_or_none ref +); + +@var_decl = + @concrete_var_decl +| @param_decl +; + +#keyset[id] +var_decls( //dir=decl + int id: @var_decl ref, + string name: string ref, + int type_: @type_or_none ref +); + +#keyset[id] +var_decl_attached_property_wrapper_types( //dir=decl + int id: @var_decl ref, + int attached_property_wrapper_type: @type_or_none ref +); + +#keyset[id] +var_decl_parent_patterns( //dir=decl + int id: @var_decl ref, + int parent_pattern: @pattern_or_none ref +); + +#keyset[id] +var_decl_parent_initializers( //dir=decl + int id: @var_decl ref, + int parent_initializer: @expr_or_none ref +); + +#keyset[id] +var_decl_property_wrapper_backing_var_bindings( //dir=decl + int id: @var_decl ref, + int property_wrapper_backing_var_binding: @pattern_binding_decl_or_none ref +); + +#keyset[id] +var_decl_property_wrapper_backing_vars( //dir=decl + int id: @var_decl ref, + int property_wrapper_backing_var: @var_decl_or_none ref +); + +#keyset[id] +var_decl_property_wrapper_projection_var_bindings( //dir=decl + int id: @var_decl ref, + int property_wrapper_projection_var_binding: @pattern_binding_decl_or_none ref +); + +#keyset[id] +var_decl_property_wrapper_projection_vars( //dir=decl + int id: @var_decl ref, + int property_wrapper_projection_var: @var_decl_or_none ref +); + +accessors( //dir=decl + unique int id: @accessor +); + +#keyset[id] +accessor_is_getter( //dir=decl + int id: @accessor ref +); + +#keyset[id] +accessor_is_setter( //dir=decl + int id: @accessor ref +); + +#keyset[id] +accessor_is_will_set( //dir=decl + int id: @accessor ref +); + +#keyset[id] +accessor_is_did_set( //dir=decl + int id: @accessor ref +); + +#keyset[id] +accessor_is_read( //dir=decl + int id: @accessor ref +); + +#keyset[id] +accessor_is_modify( //dir=decl + int id: @accessor ref +); + +#keyset[id] +accessor_is_unsafe_address( //dir=decl + int id: @accessor ref +); + +#keyset[id] +accessor_is_unsafe_mutable_address( //dir=decl + int id: @accessor ref +); + +#keyset[id] +accessor_is_distributed_get( //dir=decl + int id: @accessor ref +); + +#keyset[id] +accessor_is_read2( //dir=decl + int id: @accessor ref +); + +#keyset[id] +accessor_is_modify2( //dir=decl + int id: @accessor ref +); + +#keyset[id] +accessor_is_init( //dir=decl + int id: @accessor ref +); + +associated_type_decls( //dir=decl + unique int id: @associated_type_decl +); + +concrete_var_decls( //dir=decl + unique int id: @concrete_var_decl, + int introducer_int: int ref +); + +generic_type_param_decls( //dir=decl + unique int id: @generic_type_param_decl +); + +named_functions( //dir=decl + unique int id: @named_function +); + +@nominal_type_decl = + @class_decl +| @enum_decl +| @protocol_decl +| @struct_decl +; + +#keyset[id] +nominal_type_decls( //dir=decl + int id: @nominal_type_decl ref, + int type_: @type_or_none ref +); + +opaque_type_decls( //dir=decl + unique int id: @opaque_type_decl, + int naming_declaration: @value_decl_or_none ref +); + +#keyset[id, index] +opaque_type_decl_opaque_generic_params( //dir=decl + int id: @opaque_type_decl ref, + int index: int ref, + int opaque_generic_param: @generic_type_param_type_or_none ref +); + +param_decls( //dir=decl + unique int id: @param_decl +); + +#keyset[id] +param_decl_is_inout( //dir=decl + int id: @param_decl ref +); + +#keyset[id] +param_decl_property_wrapper_local_wrapped_var_bindings( //dir=decl + int id: @param_decl ref, + int property_wrapper_local_wrapped_var_binding: @pattern_binding_decl_or_none ref +); + +#keyset[id] +param_decl_property_wrapper_local_wrapped_vars( //dir=decl + int id: @param_decl ref, + int property_wrapper_local_wrapped_var: @var_decl_or_none ref +); + +type_alias_decls( //dir=decl + unique int id: @type_alias_decl, + int aliased_type: @type_or_none ref +); + +class_decls( //dir=decl + unique int id: @class_decl +); + +enum_decls( //dir=decl + unique int id: @enum_decl +); + +protocol_decls( //dir=decl + unique int id: @protocol_decl +); + +struct_decls( //dir=decl + unique int id: @struct_decl +); + +arguments( //dir=expr + unique int id: @argument, + string label: string ref, + int expr: @expr_or_none ref +); + +@expr = + @any_try_expr +| @applied_property_wrapper_expr +| @apply_expr +| @assign_expr +| @bind_optional_expr +| @capture_list_expr +| @closure_expr +| @collection_expr +| @consume_expr +| @copy_expr +| @current_context_isolation_expr +| @decl_ref_expr +| @default_argument_expr +| @discard_assignment_expr +| @dot_syntax_base_ignored_expr +| @dynamic_type_expr +| @enum_is_case_expr +| @error_expr +| @explicit_cast_expr +| @extract_function_isolation_expr +| @force_value_expr +| @identity_expr +| @if_expr +| @implicit_conversion_expr +| @in_out_expr +| @key_path_application_expr +| @key_path_dot_expr +| @key_path_expr +| @lazy_initialization_expr +| @literal_expr +| @lookup_expr +| @make_temporarily_escapable_expr +| @materialize_pack_expr +| @obj_c_selector_expr +| @one_way_expr +| @opaque_value_expr +| @open_existential_expr +| @optional_evaluation_expr +| @other_initializer_ref_expr +| @overloaded_decl_ref_expr +| @pack_element_expr +| @pack_expansion_expr +| @property_wrapper_value_placeholder_expr +| @rebind_self_in_initializer_expr +| @sequence_expr +| @single_value_stmt_expr +| @super_ref_expr +| @tap_expr +| @tuple_element_expr +| @tuple_expr +| @type_expr +| @type_value_expr +| @unresolved_decl_ref_expr +| @unresolved_dot_expr +| @unresolved_member_expr +| @unresolved_pattern_expr +| @unresolved_specialize_expr +| @vararg_expansion_expr +; + +#keyset[id] +expr_types( //dir=expr + int id: @expr ref, + int type_: @type_or_none ref +); + +@any_try_expr = + @force_try_expr +| @optional_try_expr +| @try_expr +; + +#keyset[id] +any_try_exprs( //dir=expr + int id: @any_try_expr ref, + int sub_expr: @expr_or_none ref +); + +applied_property_wrapper_exprs( //dir=expr + unique int id: @applied_property_wrapper_expr, + int kind: int ref, + int value: @expr_or_none ref, + int param: @param_decl_or_none ref +); + +@apply_expr = + @binary_expr +| @call_expr +| @postfix_unary_expr +| @prefix_unary_expr +| @self_apply_expr +; + +#keyset[id] +apply_exprs( //dir=expr + int id: @apply_expr ref, + int function: @expr_or_none ref +); + +#keyset[id, index] +apply_expr_arguments( //dir=expr + int id: @apply_expr ref, + int index: int ref, + int argument: @argument_or_none ref +); + +assign_exprs( //dir=expr + unique int id: @assign_expr, + int dest: @expr_or_none ref, + int source: @expr_or_none ref +); + +bind_optional_exprs( //dir=expr + unique int id: @bind_optional_expr, + int sub_expr: @expr_or_none ref +); + +capture_list_exprs( //dir=expr + unique int id: @capture_list_expr, + int closure_body: @closure_expr_or_none ref +); + +#keyset[id, index] +capture_list_expr_binding_decls( //dir=expr + int id: @capture_list_expr ref, + int index: int ref, + int binding_decl: @pattern_binding_decl_or_none ref +); + +@closure_expr = + @auto_closure_expr +| @explicit_closure_expr +; + +@collection_expr = + @array_expr +| @dictionary_expr +; + +consume_exprs( //dir=expr + unique int id: @consume_expr, + int sub_expr: @expr_or_none ref +); + +copy_exprs( //dir=expr + unique int id: @copy_expr, + int sub_expr: @expr_or_none ref +); + +current_context_isolation_exprs( //dir=expr + unique int id: @current_context_isolation_expr, + int actor: @expr_or_none ref +); + +decl_ref_exprs( //dir=expr + unique int id: @decl_ref_expr, + int decl: @decl_or_none ref +); + +#keyset[id, index] +decl_ref_expr_replacement_types( //dir=expr + int id: @decl_ref_expr ref, + int index: int ref, + int replacement_type: @type_or_none ref +); + +#keyset[id] +decl_ref_expr_has_direct_to_storage_semantics( //dir=expr + int id: @decl_ref_expr ref +); + +#keyset[id] +decl_ref_expr_has_direct_to_implementation_semantics( //dir=expr + int id: @decl_ref_expr ref +); + +#keyset[id] +decl_ref_expr_has_ordinary_semantics( //dir=expr + int id: @decl_ref_expr ref +); + +#keyset[id] +decl_ref_expr_has_distributed_thunk_semantics( //dir=expr + int id: @decl_ref_expr ref +); + +default_argument_exprs( //dir=expr + unique int id: @default_argument_expr, + int param_decl: @param_decl_or_none ref, + int param_index: int ref +); + +#keyset[id] +default_argument_expr_caller_side_defaults( //dir=expr + int id: @default_argument_expr ref, + int caller_side_default: @expr_or_none ref +); + +discard_assignment_exprs( //dir=expr + unique int id: @discard_assignment_expr +); + +dot_syntax_base_ignored_exprs( //dir=expr + unique int id: @dot_syntax_base_ignored_expr, + int qualifier: @expr_or_none ref, + int sub_expr: @expr_or_none ref +); + +dynamic_type_exprs( //dir=expr + unique int id: @dynamic_type_expr, + int base: @expr_or_none ref +); + +enum_is_case_exprs( //dir=expr + unique int id: @enum_is_case_expr, + int sub_expr: @expr_or_none ref, + int element: @enum_element_decl_or_none ref +); + +error_exprs( //dir=expr + unique int id: @error_expr +); + +@explicit_cast_expr = + @checked_cast_expr +| @coerce_expr +; + +#keyset[id] +explicit_cast_exprs( //dir=expr + int id: @explicit_cast_expr ref, + int sub_expr: @expr_or_none ref +); + +extract_function_isolation_exprs( //dir=expr + unique int id: @extract_function_isolation_expr, + int function_expr: @expr_or_none ref +); + +force_value_exprs( //dir=expr + unique int id: @force_value_expr, + int sub_expr: @expr_or_none ref +); + +@identity_expr = + @await_expr +| @borrow_expr +| @dot_self_expr +| @paren_expr +| @unresolved_member_chain_result_expr +| @unsafe_expr +; + +#keyset[id] +identity_exprs( //dir=expr + int id: @identity_expr ref, + int sub_expr: @expr_or_none ref +); + +if_exprs( //dir=expr + unique int id: @if_expr, + int condition: @expr_or_none ref, + int then_expr: @expr_or_none ref, + int else_expr: @expr_or_none ref +); + +@implicit_conversion_expr = + @abi_safe_conversion_expr +| @actor_isolation_erasure_expr +| @any_hashable_erasure_expr +| @archetype_to_super_expr +| @array_to_pointer_expr +| @bridge_from_obj_c_expr +| @bridge_to_obj_c_expr +| @class_metatype_to_object_expr +| @collection_upcast_conversion_expr +| @conditional_bridge_from_obj_c_expr +| @covariant_function_conversion_expr +| @covariant_return_conversion_expr +| @derived_to_base_expr +| @destructure_tuple_expr +| @differentiable_function_expr +| @differentiable_function_extract_original_expr +| @erasure_expr +| @existential_metatype_to_object_expr +| @foreign_object_conversion_expr +| @function_conversion_expr +| @in_out_to_pointer_expr +| @inject_into_optional_expr +| @linear_function_expr +| @linear_function_extract_original_expr +| @linear_to_differentiable_function_expr +| @load_expr +| @metatype_conversion_expr +| @pointer_to_pointer_expr +| @protocol_metatype_to_object_expr +| @string_to_pointer_expr +| @underlying_to_opaque_expr +| @unevaluated_instance_expr +| @unreachable_expr +| @unresolved_type_conversion_expr +| @unsafe_cast_expr +; + +#keyset[id] +implicit_conversion_exprs( //dir=expr + int id: @implicit_conversion_expr ref, + int sub_expr: @expr_or_none ref +); + +in_out_exprs( //dir=expr + unique int id: @in_out_expr, + int sub_expr: @expr_or_none ref +); + +key_path_application_exprs( //dir=expr + unique int id: @key_path_application_expr, + int base: @expr_or_none ref, + int key_path: @expr_or_none ref +); + +key_path_dot_exprs( //dir=expr + unique int id: @key_path_dot_expr +); + +key_path_exprs( //dir=expr + unique int id: @key_path_expr +); + +#keyset[id] +key_path_expr_roots( //dir=expr + int id: @key_path_expr ref, + int root: @type_repr_or_none ref +); + +#keyset[id, index] +key_path_expr_components( //dir=expr + int id: @key_path_expr ref, + int index: int ref, + int component: @key_path_component_or_none ref +); + +lazy_initialization_exprs( //dir=expr + unique int id: @lazy_initialization_expr, + int sub_expr: @expr_or_none ref +); + +@literal_expr = + @builtin_literal_expr +| @interpolated_string_literal_expr +| @nil_literal_expr +| @object_literal_expr +| @regex_literal_expr +; + +@lookup_expr = + @dynamic_lookup_expr +| @member_ref_expr +| @subscript_expr +; + +#keyset[id] +lookup_exprs( //dir=expr + int id: @lookup_expr ref, + int base: @expr_or_none ref +); + +#keyset[id] +lookup_expr_members( //dir=expr + int id: @lookup_expr ref, + int member: @decl_or_none ref +); + +make_temporarily_escapable_exprs( //dir=expr + unique int id: @make_temporarily_escapable_expr, + int escaping_closure: @opaque_value_expr_or_none ref, + int nonescaping_closure: @expr_or_none ref, + int sub_expr: @expr_or_none ref +); + +materialize_pack_exprs( //dir=expr + unique int id: @materialize_pack_expr, + int sub_expr: @expr_or_none ref +); + +obj_c_selector_exprs( //dir=expr + unique int id: @obj_c_selector_expr, + int sub_expr: @expr_or_none ref, + int method: @function_or_none ref +); + +one_way_exprs( //dir=expr + unique int id: @one_way_expr, + int sub_expr: @expr_or_none ref +); + +opaque_value_exprs( //dir=expr + unique int id: @opaque_value_expr +); + +open_existential_exprs( //dir=expr + unique int id: @open_existential_expr, + int sub_expr: @expr_or_none ref, + int existential: @expr_or_none ref, + int opaque_expr: @opaque_value_expr_or_none ref +); + +optional_evaluation_exprs( //dir=expr + unique int id: @optional_evaluation_expr, + int sub_expr: @expr_or_none ref +); + +other_initializer_ref_exprs( //dir=expr + unique int id: @other_initializer_ref_expr, + int initializer: @initializer_or_none ref +); + +overloaded_decl_ref_exprs( //dir=expr + unique int id: @overloaded_decl_ref_expr +); + +#keyset[id, index] +overloaded_decl_ref_expr_possible_declarations( //dir=expr + int id: @overloaded_decl_ref_expr ref, + int index: int ref, + int possible_declaration: @value_decl_or_none ref +); + +pack_element_exprs( //dir=expr + unique int id: @pack_element_expr, + int sub_expr: @expr_or_none ref +); + +pack_expansion_exprs( //dir=expr + unique int id: @pack_expansion_expr, + int pattern_expr: @expr_or_none ref +); + +property_wrapper_value_placeholder_exprs( //dir=expr + unique int id: @property_wrapper_value_placeholder_expr, + int placeholder: @opaque_value_expr_or_none ref +); + +#keyset[id] +property_wrapper_value_placeholder_expr_wrapped_values( //dir=expr + int id: @property_wrapper_value_placeholder_expr ref, + int wrapped_value: @expr_or_none ref +); + +rebind_self_in_initializer_exprs( //dir=expr + unique int id: @rebind_self_in_initializer_expr, + int sub_expr: @expr_or_none ref, + int self: @var_decl_or_none ref +); + +sequence_exprs( //dir=expr + unique int id: @sequence_expr +); + +#keyset[id, index] +sequence_expr_elements( //dir=expr + int id: @sequence_expr ref, + int index: int ref, + int element: @expr_or_none ref +); + +single_value_stmt_exprs( //dir=expr + unique int id: @single_value_stmt_expr, + int stmt: @stmt_or_none ref +); + +super_ref_exprs( //dir=expr + unique int id: @super_ref_expr, + int self: @var_decl_or_none ref +); + +tap_exprs( //dir=expr + unique int id: @tap_expr, + int body: @brace_stmt_or_none ref, + int var: @var_decl_or_none ref +); + +#keyset[id] +tap_expr_sub_exprs( //dir=expr + int id: @tap_expr ref, + int sub_expr: @expr_or_none ref +); + +tuple_element_exprs( //dir=expr + unique int id: @tuple_element_expr, + int sub_expr: @expr_or_none ref, + int index: int ref +); + +tuple_exprs( //dir=expr + unique int id: @tuple_expr +); + +#keyset[id, index] +tuple_expr_elements( //dir=expr + int id: @tuple_expr ref, + int index: int ref, + int element: @expr_or_none ref +); + +type_exprs( //dir=expr + unique int id: @type_expr +); + +#keyset[id] +type_expr_type_reprs( //dir=expr + int id: @type_expr ref, + int type_repr: @type_repr_or_none ref +); + +type_value_exprs( //dir=expr + unique int id: @type_value_expr, + int type_repr: @type_repr_or_none ref +); + +unresolved_decl_ref_exprs( //dir=expr + unique int id: @unresolved_decl_ref_expr +); + +#keyset[id] +unresolved_decl_ref_expr_names( //dir=expr + int id: @unresolved_decl_ref_expr ref, + string name: string ref +); + +unresolved_dot_exprs( //dir=expr + unique int id: @unresolved_dot_expr, + int base: @expr_or_none ref, + string name: string ref +); + +unresolved_member_exprs( //dir=expr + unique int id: @unresolved_member_expr, + string name: string ref +); + +unresolved_pattern_exprs( //dir=expr + unique int id: @unresolved_pattern_expr, + int sub_pattern: @pattern_or_none ref +); + +unresolved_specialize_exprs( //dir=expr + unique int id: @unresolved_specialize_expr, + int sub_expr: @expr_or_none ref +); + +vararg_expansion_exprs( //dir=expr + unique int id: @vararg_expansion_expr, + int sub_expr: @expr_or_none ref +); + +abi_safe_conversion_exprs( //dir=expr + unique int id: @abi_safe_conversion_expr +); + +actor_isolation_erasure_exprs( //dir=expr + unique int id: @actor_isolation_erasure_expr +); + +any_hashable_erasure_exprs( //dir=expr + unique int id: @any_hashable_erasure_expr +); + +archetype_to_super_exprs( //dir=expr + unique int id: @archetype_to_super_expr +); + +array_exprs( //dir=expr + unique int id: @array_expr +); + +#keyset[id, index] +array_expr_elements( //dir=expr + int id: @array_expr ref, + int index: int ref, + int element: @expr_or_none ref +); + +array_to_pointer_exprs( //dir=expr + unique int id: @array_to_pointer_expr +); + +auto_closure_exprs( //dir=expr + unique int id: @auto_closure_expr +); + +await_exprs( //dir=expr + unique int id: @await_expr +); + +binary_exprs( //dir=expr + unique int id: @binary_expr +); + +borrow_exprs( //dir=expr + unique int id: @borrow_expr +); + +bridge_from_obj_c_exprs( //dir=expr + unique int id: @bridge_from_obj_c_expr +); + +bridge_to_obj_c_exprs( //dir=expr + unique int id: @bridge_to_obj_c_expr +); + +@builtin_literal_expr = + @boolean_literal_expr +| @magic_identifier_literal_expr +| @number_literal_expr +| @string_literal_expr +; + +call_exprs( //dir=expr + unique int id: @call_expr +); + +@checked_cast_expr = + @conditional_checked_cast_expr +| @forced_checked_cast_expr +| @is_expr +; + +class_metatype_to_object_exprs( //dir=expr + unique int id: @class_metatype_to_object_expr +); + +coerce_exprs( //dir=expr + unique int id: @coerce_expr +); + +collection_upcast_conversion_exprs( //dir=expr + unique int id: @collection_upcast_conversion_expr +); + +conditional_bridge_from_obj_c_exprs( //dir=expr + unique int id: @conditional_bridge_from_obj_c_expr +); + +covariant_function_conversion_exprs( //dir=expr + unique int id: @covariant_function_conversion_expr +); + +covariant_return_conversion_exprs( //dir=expr + unique int id: @covariant_return_conversion_expr +); + +derived_to_base_exprs( //dir=expr + unique int id: @derived_to_base_expr +); + +destructure_tuple_exprs( //dir=expr + unique int id: @destructure_tuple_expr +); + +dictionary_exprs( //dir=expr + unique int id: @dictionary_expr +); + +#keyset[id, index] +dictionary_expr_elements( //dir=expr + int id: @dictionary_expr ref, + int index: int ref, + int element: @expr_or_none ref +); + +differentiable_function_exprs( //dir=expr + unique int id: @differentiable_function_expr +); + +differentiable_function_extract_original_exprs( //dir=expr + unique int id: @differentiable_function_extract_original_expr +); + +dot_self_exprs( //dir=expr + unique int id: @dot_self_expr +); + +@dynamic_lookup_expr = + @dynamic_member_ref_expr +| @dynamic_subscript_expr +; + +erasure_exprs( //dir=expr + unique int id: @erasure_expr +); + +existential_metatype_to_object_exprs( //dir=expr + unique int id: @existential_metatype_to_object_expr +); + +explicit_closure_exprs( //dir=expr + unique int id: @explicit_closure_expr +); + +force_try_exprs( //dir=expr + unique int id: @force_try_expr +); + +foreign_object_conversion_exprs( //dir=expr + unique int id: @foreign_object_conversion_expr +); + +function_conversion_exprs( //dir=expr + unique int id: @function_conversion_expr +); + +in_out_to_pointer_exprs( //dir=expr + unique int id: @in_out_to_pointer_expr +); + +inject_into_optional_exprs( //dir=expr + unique int id: @inject_into_optional_expr +); + +interpolated_string_literal_exprs( //dir=expr + unique int id: @interpolated_string_literal_expr +); + +#keyset[id] +interpolated_string_literal_expr_interpolation_exprs( //dir=expr + int id: @interpolated_string_literal_expr ref, + int interpolation_expr: @opaque_value_expr_or_none ref +); + +#keyset[id] +interpolated_string_literal_expr_appending_exprs( //dir=expr + int id: @interpolated_string_literal_expr ref, + int appending_expr: @tap_expr_or_none ref +); + +linear_function_exprs( //dir=expr + unique int id: @linear_function_expr +); + +linear_function_extract_original_exprs( //dir=expr + unique int id: @linear_function_extract_original_expr +); + +linear_to_differentiable_function_exprs( //dir=expr + unique int id: @linear_to_differentiable_function_expr +); + +load_exprs( //dir=expr + unique int id: @load_expr +); + +member_ref_exprs( //dir=expr + unique int id: @member_ref_expr +); + +#keyset[id] +member_ref_expr_has_direct_to_storage_semantics( //dir=expr + int id: @member_ref_expr ref +); + +#keyset[id] +member_ref_expr_has_direct_to_implementation_semantics( //dir=expr + int id: @member_ref_expr ref +); + +#keyset[id] +member_ref_expr_has_ordinary_semantics( //dir=expr + int id: @member_ref_expr ref +); + +#keyset[id] +member_ref_expr_has_distributed_thunk_semantics( //dir=expr + int id: @member_ref_expr ref +); + +metatype_conversion_exprs( //dir=expr + unique int id: @metatype_conversion_expr +); + +nil_literal_exprs( //dir=expr + unique int id: @nil_literal_expr +); + +object_literal_exprs( //dir=expr + unique int id: @object_literal_expr, + int kind: int ref +); + +#keyset[id, index] +object_literal_expr_arguments( //dir=expr + int id: @object_literal_expr ref, + int index: int ref, + int argument: @argument_or_none ref +); + +optional_try_exprs( //dir=expr + unique int id: @optional_try_expr +); + +paren_exprs( //dir=expr + unique int id: @paren_expr +); + +pointer_to_pointer_exprs( //dir=expr + unique int id: @pointer_to_pointer_expr +); + +postfix_unary_exprs( //dir=expr + unique int id: @postfix_unary_expr +); + +prefix_unary_exprs( //dir=expr + unique int id: @prefix_unary_expr +); + +protocol_metatype_to_object_exprs( //dir=expr + unique int id: @protocol_metatype_to_object_expr +); + +regex_literal_exprs( //dir=expr + unique int id: @regex_literal_expr, + string pattern: string ref, + int version: int ref +); + +@self_apply_expr = + @dot_syntax_call_expr +| @initializer_ref_call_expr +; + +#keyset[id] +self_apply_exprs( //dir=expr + int id: @self_apply_expr ref, + int base: @expr_or_none ref +); + +string_to_pointer_exprs( //dir=expr + unique int id: @string_to_pointer_expr +); + +subscript_exprs( //dir=expr + unique int id: @subscript_expr +); + +#keyset[id, index] +subscript_expr_arguments( //dir=expr + int id: @subscript_expr ref, + int index: int ref, + int argument: @argument_or_none ref +); + +#keyset[id] +subscript_expr_has_direct_to_storage_semantics( //dir=expr + int id: @subscript_expr ref +); + +#keyset[id] +subscript_expr_has_direct_to_implementation_semantics( //dir=expr + int id: @subscript_expr ref +); + +#keyset[id] +subscript_expr_has_ordinary_semantics( //dir=expr + int id: @subscript_expr ref +); + +#keyset[id] +subscript_expr_has_distributed_thunk_semantics( //dir=expr + int id: @subscript_expr ref +); + +try_exprs( //dir=expr + unique int id: @try_expr +); + +underlying_to_opaque_exprs( //dir=expr + unique int id: @underlying_to_opaque_expr +); + +unevaluated_instance_exprs( //dir=expr + unique int id: @unevaluated_instance_expr +); + +unreachable_exprs( //dir=expr + unique int id: @unreachable_expr +); + +unresolved_member_chain_result_exprs( //dir=expr + unique int id: @unresolved_member_chain_result_expr +); + +unresolved_type_conversion_exprs( //dir=expr + unique int id: @unresolved_type_conversion_expr +); + +unsafe_cast_exprs( //dir=expr + unique int id: @unsafe_cast_expr +); + +unsafe_exprs( //dir=expr + unique int id: @unsafe_expr +); + +boolean_literal_exprs( //dir=expr + unique int id: @boolean_literal_expr, + boolean value: boolean ref +); + +conditional_checked_cast_exprs( //dir=expr + unique int id: @conditional_checked_cast_expr +); + +dot_syntax_call_exprs( //dir=expr + unique int id: @dot_syntax_call_expr +); + +dynamic_member_ref_exprs( //dir=expr + unique int id: @dynamic_member_ref_expr +); + +dynamic_subscript_exprs( //dir=expr + unique int id: @dynamic_subscript_expr +); + +forced_checked_cast_exprs( //dir=expr + unique int id: @forced_checked_cast_expr +); + +initializer_ref_call_exprs( //dir=expr + unique int id: @initializer_ref_call_expr +); + +is_exprs( //dir=expr + unique int id: @is_expr +); + +magic_identifier_literal_exprs( //dir=expr + unique int id: @magic_identifier_literal_expr, + string kind: string ref +); + +@number_literal_expr = + @float_literal_expr +| @integer_literal_expr +; + +string_literal_exprs( //dir=expr + unique int id: @string_literal_expr, + string value: string ref +); + +float_literal_exprs( //dir=expr + unique int id: @float_literal_expr, + string string_value: string ref +); + +integer_literal_exprs( //dir=expr + unique int id: @integer_literal_expr, + string string_value: string ref +); + +@pattern = + @any_pattern +| @binding_pattern +| @bool_pattern +| @enum_element_pattern +| @expr_pattern +| @is_pattern +| @named_pattern +| @optional_some_pattern +| @paren_pattern +| @tuple_pattern +| @typed_pattern +; + +#keyset[id] +pattern_types( //dir=pattern + int id: @pattern ref, + int type_: @type_or_none ref +); + +any_patterns( //dir=pattern + unique int id: @any_pattern +); + +binding_patterns( //dir=pattern + unique int id: @binding_pattern, + int sub_pattern: @pattern_or_none ref +); + +bool_patterns( //dir=pattern + unique int id: @bool_pattern, + boolean value: boolean ref +); + +enum_element_patterns( //dir=pattern + unique int id: @enum_element_pattern, + int element: @enum_element_decl_or_none ref +); + +#keyset[id] +enum_element_pattern_sub_patterns( //dir=pattern + int id: @enum_element_pattern ref, + int sub_pattern: @pattern_or_none ref +); + +expr_patterns( //dir=pattern + unique int id: @expr_pattern, + int sub_expr: @expr_or_none ref +); + +is_patterns( //dir=pattern + unique int id: @is_pattern +); + +#keyset[id] +is_pattern_cast_type_reprs( //dir=pattern + int id: @is_pattern ref, + int cast_type_repr: @type_repr_or_none ref +); + +#keyset[id] +is_pattern_sub_patterns( //dir=pattern + int id: @is_pattern ref, + int sub_pattern: @pattern_or_none ref +); + +named_patterns( //dir=pattern + unique int id: @named_pattern, + int var_decl: @var_decl_or_none ref +); + +optional_some_patterns( //dir=pattern + unique int id: @optional_some_pattern, + int sub_pattern: @pattern_or_none ref +); + +paren_patterns( //dir=pattern + unique int id: @paren_pattern, + int sub_pattern: @pattern_or_none ref +); + +tuple_patterns( //dir=pattern + unique int id: @tuple_pattern +); + +#keyset[id, index] +tuple_pattern_elements( //dir=pattern + int id: @tuple_pattern ref, + int index: int ref, + int element: @pattern_or_none ref +); + +typed_patterns( //dir=pattern + unique int id: @typed_pattern, + int sub_pattern: @pattern_or_none ref +); + +#keyset[id] +typed_pattern_type_reprs( //dir=pattern + int id: @typed_pattern ref, + int type_repr: @type_repr_or_none ref +); + +case_label_items( //dir=stmt + unique int id: @case_label_item, + int pattern: @pattern_or_none ref +); + +#keyset[id] +case_label_item_guards( //dir=stmt + int id: @case_label_item ref, + int guard: @expr_or_none ref +); + +condition_elements( //dir=stmt + unique int id: @condition_element +); + +#keyset[id] +condition_element_booleans( //dir=stmt + int id: @condition_element ref, + int boolean_: @expr_or_none ref +); + +#keyset[id] +condition_element_patterns( //dir=stmt + int id: @condition_element ref, + int pattern: @pattern_or_none ref +); + +#keyset[id] +condition_element_initializers( //dir=stmt + int id: @condition_element ref, + int initializer: @expr_or_none ref +); + +#keyset[id] +condition_element_availabilities( //dir=stmt + int id: @condition_element ref, + int availability: @availability_info_or_none ref +); + +@stmt = + @brace_stmt +| @break_stmt +| @case_stmt +| @continue_stmt +| @defer_stmt +| @discard_stmt +| @fail_stmt +| @fallthrough_stmt +| @labeled_stmt +| @pound_assert_stmt +| @return_stmt +| @then_stmt +| @throw_stmt +| @yield_stmt +; + +stmt_conditions( //dir=stmt + unique int id: @stmt_condition +); + +#keyset[id, index] +stmt_condition_elements( //dir=stmt + int id: @stmt_condition ref, + int index: int ref, + int element: @condition_element_or_none ref +); + +brace_stmts( //dir=stmt + unique int id: @brace_stmt +); + +#keyset[id, index] +brace_stmt_elements( //dir=stmt + int id: @brace_stmt ref, + int index: int ref, + int element: @ast_node_or_none ref +); + +break_stmts( //dir=stmt + unique int id: @break_stmt +); + +#keyset[id] +break_stmt_target_names( //dir=stmt + int id: @break_stmt ref, + string target_name: string ref +); + +#keyset[id] +break_stmt_targets( //dir=stmt + int id: @break_stmt ref, + int target: @stmt_or_none ref +); + +case_stmts( //dir=stmt + unique int id: @case_stmt, + int body: @stmt_or_none ref +); + +#keyset[id, index] +case_stmt_labels( //dir=stmt + int id: @case_stmt ref, + int index: int ref, + int label: @case_label_item_or_none ref +); + +#keyset[id, index] +case_stmt_variables( //dir=stmt + int id: @case_stmt ref, + int index: int ref, + int variable: @var_decl_or_none ref +); + +continue_stmts( //dir=stmt + unique int id: @continue_stmt +); + +#keyset[id] +continue_stmt_target_names( //dir=stmt + int id: @continue_stmt ref, + string target_name: string ref +); + +#keyset[id] +continue_stmt_targets( //dir=stmt + int id: @continue_stmt ref, + int target: @stmt_or_none ref +); + +defer_stmts( //dir=stmt + unique int id: @defer_stmt, + int body: @brace_stmt_or_none ref +); + +discard_stmts( //dir=stmt + unique int id: @discard_stmt, + int sub_expr: @expr_or_none ref +); + +fail_stmts( //dir=stmt + unique int id: @fail_stmt +); + +fallthrough_stmts( //dir=stmt + unique int id: @fallthrough_stmt, + int fallthrough_source: @case_stmt_or_none ref, + int fallthrough_dest: @case_stmt_or_none ref +); + +@labeled_stmt = + @do_catch_stmt +| @do_stmt +| @for_each_stmt +| @labeled_conditional_stmt +| @repeat_while_stmt +| @switch_stmt +; + +#keyset[id] +labeled_stmt_labels( //dir=stmt + int id: @labeled_stmt ref, + string label: string ref +); + +pound_assert_stmts( //dir=stmt + unique int id: @pound_assert_stmt, + int condition: @expr_or_none ref, + string message: string ref +); + +return_stmts( //dir=stmt + unique int id: @return_stmt +); + +#keyset[id] +return_stmt_results( //dir=stmt + int id: @return_stmt ref, + int result: @expr_or_none ref +); + +then_stmts( //dir=stmt + unique int id: @then_stmt, + int result: @expr_or_none ref +); + +throw_stmts( //dir=stmt + unique int id: @throw_stmt, + int sub_expr: @expr_or_none ref +); + +yield_stmts( //dir=stmt + unique int id: @yield_stmt +); + +#keyset[id, index] +yield_stmt_results( //dir=stmt + int id: @yield_stmt ref, + int index: int ref, + int result: @expr_or_none ref +); + +do_catch_stmts( //dir=stmt + unique int id: @do_catch_stmt, + int body: @stmt_or_none ref +); + +#keyset[id, index] +do_catch_stmt_catches( //dir=stmt + int id: @do_catch_stmt ref, + int index: int ref, + int catch: @case_stmt_or_none ref +); + +do_stmts( //dir=stmt + unique int id: @do_stmt, + int body: @brace_stmt_or_none ref +); + +for_each_stmts( //dir=stmt + unique int id: @for_each_stmt, + int pattern: @pattern_or_none ref, + int body: @brace_stmt_or_none ref +); + +#keyset[id, index] +for_each_stmt_variables( //dir=stmt + int id: @for_each_stmt ref, + int index: int ref, + int variable: @var_decl_or_none ref +); + +#keyset[id] +for_each_stmt_wheres( //dir=stmt + int id: @for_each_stmt ref, + int where: @expr_or_none ref +); + +#keyset[id] +for_each_stmt_iterator_vars( //dir=stmt + int id: @for_each_stmt ref, + int iteratorVar: @pattern_binding_decl_or_none ref +); + +#keyset[id] +for_each_stmt_next_calls( //dir=stmt + int id: @for_each_stmt ref, + int nextCall: @expr_or_none ref +); + +@labeled_conditional_stmt = + @guard_stmt +| @if_stmt +| @while_stmt +; + +#keyset[id] +labeled_conditional_stmts( //dir=stmt + int id: @labeled_conditional_stmt ref, + int condition: @stmt_condition_or_none ref +); + +repeat_while_stmts( //dir=stmt + unique int id: @repeat_while_stmt, + int condition: @expr_or_none ref, + int body: @stmt_or_none ref +); + +switch_stmts( //dir=stmt + unique int id: @switch_stmt, + int expr: @expr_or_none ref +); + +#keyset[id, index] +switch_stmt_cases( //dir=stmt + int id: @switch_stmt ref, + int index: int ref, + int case_: @case_stmt_or_none ref +); + +guard_stmts( //dir=stmt + unique int id: @guard_stmt, + int body: @brace_stmt_or_none ref +); + +if_stmts( //dir=stmt + unique int id: @if_stmt, + int then: @stmt_or_none ref +); + +#keyset[id] +if_stmt_elses( //dir=stmt + int id: @if_stmt ref, + int else: @stmt_or_none ref +); + +while_stmts( //dir=stmt + unique int id: @while_stmt, + int body: @stmt_or_none ref +); + +@type = + @any_function_type +| @any_generic_type +| @any_metatype_type +| @builtin_type +| @dependent_member_type +| @dynamic_self_type +| @error_type +| @existential_type +| @in_out_type +| @integer_type +| @l_value_type +| @module_type +| @pack_element_type +| @pack_expansion_type +| @pack_type +| @parameterized_protocol_type +| @protocol_composition_type +| @reference_storage_type +| @substitutable_type +| @sugar_type +| @tuple_type +| @unresolved_type +; + +#keyset[id] +types( //dir=type + int id: @type ref, + string name: string ref, + int canonical_type: @type_or_none ref +); + +type_reprs( //dir=type + unique int id: @type_repr, + int type_: @type_or_none ref +); + +@any_function_type = + @function_type +| @generic_function_type +; + +#keyset[id] +any_function_types( //dir=type + int id: @any_function_type ref, + int result: @type_or_none ref +); + +#keyset[id, index] +any_function_type_param_types( //dir=type + int id: @any_function_type ref, + int index: int ref, + int param_type: @type_or_none ref +); + +#keyset[id] +any_function_type_is_throwing( //dir=type + int id: @any_function_type ref +); + +#keyset[id] +any_function_type_is_async( //dir=type + int id: @any_function_type ref +); + +@any_generic_type = + @nominal_or_bound_generic_nominal_type +| @unbound_generic_type +; + +#keyset[id] +any_generic_types( //dir=type + int id: @any_generic_type ref, + int declaration: @generic_type_decl_or_none ref +); + +#keyset[id] +any_generic_type_parents( //dir=type + int id: @any_generic_type ref, + int parent: @type_or_none ref +); + +@any_metatype_type = + @existential_metatype_type +| @metatype_type +; + +@builtin_type = + @any_builtin_integer_type +| @builtin_bridge_object_type +| @builtin_default_actor_storage_type +| @builtin_executor_type +| @builtin_float_type +| @builtin_generic_type +| @builtin_job_type +| @builtin_native_object_type +| @builtin_raw_pointer_type +| @builtin_raw_unsafe_continuation_type +| @builtin_unsafe_value_buffer_type +| @builtin_vector_type +; + +dependent_member_types( //dir=type + unique int id: @dependent_member_type, + int base_type: @type_or_none ref, + int associated_type_decl: @associated_type_decl_or_none ref +); + +dynamic_self_types( //dir=type + unique int id: @dynamic_self_type, + int static_self_type: @type_or_none ref +); + +error_types( //dir=type + unique int id: @error_type +); + +existential_types( //dir=type + unique int id: @existential_type, + int constraint: @type_or_none ref +); + +in_out_types( //dir=type + unique int id: @in_out_type, + int object_type: @type_or_none ref +); + +integer_types( //dir=type + unique int id: @integer_type, + string value: string ref +); + +l_value_types( //dir=type + unique int id: @l_value_type, + int object_type: @type_or_none ref +); + +module_types( //dir=type + unique int id: @module_type, + int module: @module_decl_or_none ref +); + +pack_element_types( //dir=type + unique int id: @pack_element_type, + int pack_type: @type_or_none ref +); + +pack_expansion_types( //dir=type + unique int id: @pack_expansion_type, + int pattern_type: @type_or_none ref, + int count_type: @type_or_none ref +); + +pack_types( //dir=type + unique int id: @pack_type +); + +#keyset[id, index] +pack_type_elements( //dir=type + int id: @pack_type ref, + int index: int ref, + int element: @type_or_none ref +); + +parameterized_protocol_types( //dir=type + unique int id: @parameterized_protocol_type, + int base: @protocol_type_or_none ref +); + +#keyset[id, index] +parameterized_protocol_type_args( //dir=type + int id: @parameterized_protocol_type ref, + int index: int ref, + int arg: @type_or_none ref +); + +protocol_composition_types( //dir=type + unique int id: @protocol_composition_type +); + +#keyset[id, index] +protocol_composition_type_members( //dir=type + int id: @protocol_composition_type ref, + int index: int ref, + int member: @type_or_none ref +); + +@reference_storage_type = + @unmanaged_storage_type +| @unowned_storage_type +| @weak_storage_type +; + +#keyset[id] +reference_storage_types( //dir=type + int id: @reference_storage_type ref, + int referent_type: @type_or_none ref +); + +@substitutable_type = + @archetype_type +| @generic_type_param_type +; + +@sugar_type = + @paren_type +| @syntax_sugar_type +| @type_alias_type +; + +tuple_types( //dir=type + unique int id: @tuple_type +); + +#keyset[id, index] +tuple_type_types( //dir=type + int id: @tuple_type ref, + int index: int ref, + int type_: @type_or_none ref +); + +#keyset[id, index] +tuple_type_names( //dir=type + int id: @tuple_type ref, + int index: int ref, + string name: string ref +); + +unresolved_types( //dir=type + unique int id: @unresolved_type +); + +@any_builtin_integer_type = + @builtin_integer_literal_type +| @builtin_integer_type +; + +@archetype_type = + @local_archetype_type +| @opaque_type_archetype_type +| @pack_archetype_type +| @primary_archetype_type +; + +#keyset[id] +archetype_types( //dir=type + int id: @archetype_type ref, + int interface_type: @type_or_none ref +); + +#keyset[id] +archetype_type_superclasses( //dir=type + int id: @archetype_type ref, + int superclass: @type_or_none ref +); + +#keyset[id, index] +archetype_type_protocols( //dir=type + int id: @archetype_type ref, + int index: int ref, + int protocol: @protocol_decl_or_none ref +); + +builtin_bridge_object_types( //dir=type + unique int id: @builtin_bridge_object_type +); + +builtin_default_actor_storage_types( //dir=type + unique int id: @builtin_default_actor_storage_type +); + +builtin_executor_types( //dir=type + unique int id: @builtin_executor_type +); + +builtin_float_types( //dir=type + unique int id: @builtin_float_type +); + +@builtin_generic_type = + @builtin_fixed_array_type +; + +builtin_job_types( //dir=type + unique int id: @builtin_job_type +); + +builtin_native_object_types( //dir=type + unique int id: @builtin_native_object_type +); + +builtin_raw_pointer_types( //dir=type + unique int id: @builtin_raw_pointer_type +); + +builtin_raw_unsafe_continuation_types( //dir=type + unique int id: @builtin_raw_unsafe_continuation_type +); + +builtin_unsafe_value_buffer_types( //dir=type + unique int id: @builtin_unsafe_value_buffer_type +); + +builtin_vector_types( //dir=type + unique int id: @builtin_vector_type +); + +existential_metatype_types( //dir=type + unique int id: @existential_metatype_type +); + +function_types( //dir=type + unique int id: @function_type +); + +generic_function_types( //dir=type + unique int id: @generic_function_type +); + +#keyset[id, index] +generic_function_type_generic_params( //dir=type + int id: @generic_function_type ref, + int index: int ref, + int generic_param: @generic_type_param_type_or_none ref +); + +generic_type_param_types( //dir=type + unique int id: @generic_type_param_type +); + +metatype_types( //dir=type + unique int id: @metatype_type +); + +@nominal_or_bound_generic_nominal_type = + @bound_generic_type +| @nominal_type +; + +paren_types( //dir=type + unique int id: @paren_type, + int type_: @type_or_none ref +); + +@syntax_sugar_type = + @dictionary_type +| @inline_array_type +| @unary_syntax_sugar_type +; + +type_alias_types( //dir=type + unique int id: @type_alias_type, + int decl: @type_alias_decl_or_none ref +); + +unbound_generic_types( //dir=type + unique int id: @unbound_generic_type +); + +unmanaged_storage_types( //dir=type + unique int id: @unmanaged_storage_type +); + +unowned_storage_types( //dir=type + unique int id: @unowned_storage_type +); + +weak_storage_types( //dir=type + unique int id: @weak_storage_type +); + +@bound_generic_type = + @bound_generic_class_type +| @bound_generic_enum_type +| @bound_generic_struct_type +; + +#keyset[id, index] +bound_generic_type_arg_types( //dir=type + int id: @bound_generic_type ref, + int index: int ref, + int arg_type: @type_or_none ref +); + +builtin_fixed_array_types( //dir=type + unique int id: @builtin_fixed_array_type, + int size: @type_or_none ref, + int element_type: @type_or_none ref +); + +builtin_integer_literal_types( //dir=type + unique int id: @builtin_integer_literal_type +); + +builtin_integer_types( //dir=type + unique int id: @builtin_integer_type +); + +#keyset[id] +builtin_integer_type_widths( //dir=type + int id: @builtin_integer_type ref, + int width: int ref +); + +dictionary_types( //dir=type + unique int id: @dictionary_type, + int key_type: @type_or_none ref, + int value_type: @type_or_none ref +); + +inline_array_types( //dir=type + unique int id: @inline_array_type, + int count_type: @type_or_none ref, + int element_type: @type_or_none ref +); + +@local_archetype_type = + @element_archetype_type +| @existential_archetype_type +; + +@nominal_type = + @class_type +| @enum_type +| @protocol_type +| @struct_type +; + +opaque_type_archetype_types( //dir=type + unique int id: @opaque_type_archetype_type, + int declaration: @opaque_type_decl_or_none ref +); + +pack_archetype_types( //dir=type + unique int id: @pack_archetype_type +); + +primary_archetype_types( //dir=type + unique int id: @primary_archetype_type +); + +@unary_syntax_sugar_type = + @array_slice_type +| @optional_type +| @variadic_sequence_type +; + +#keyset[id] +unary_syntax_sugar_types( //dir=type + int id: @unary_syntax_sugar_type ref, + int base_type: @type_or_none ref +); + +array_slice_types( //dir=type + unique int id: @array_slice_type +); + +bound_generic_class_types( //dir=type + unique int id: @bound_generic_class_type +); + +bound_generic_enum_types( //dir=type + unique int id: @bound_generic_enum_type +); + +bound_generic_struct_types( //dir=type + unique int id: @bound_generic_struct_type +); + +class_types( //dir=type + unique int id: @class_type +); + +element_archetype_types( //dir=type + unique int id: @element_archetype_type +); + +enum_types( //dir=type + unique int id: @enum_type +); + +existential_archetype_types( //dir=type + unique int id: @existential_archetype_type +); + +optional_types( //dir=type + unique int id: @optional_type +); + +protocol_types( //dir=type + unique int id: @protocol_type +); + +struct_types( //dir=type + unique int id: @struct_type +); + +variadic_sequence_types( //dir=type + unique int id: @variadic_sequence_type +); + +@accessor_or_none = + @accessor +| @unspecified_element +; + +@argument_or_none = + @argument +| @unspecified_element +; + +@associated_type_decl_or_none = + @associated_type_decl +| @unspecified_element +; + +@ast_node_or_none = + @ast_node +| @unspecified_element +; + +@availability_info_or_none = + @availability_info +| @unspecified_element +; + +@availability_spec_or_none = + @availability_spec +| @unspecified_element +; + +@brace_stmt_or_none = + @brace_stmt +| @unspecified_element +; + +@captured_decl_or_none = + @captured_decl +| @unspecified_element +; + +@case_label_item_or_none = + @case_label_item +| @unspecified_element +; + +@case_stmt_or_none = + @case_stmt +| @unspecified_element +; + +@closure_expr_or_none = + @closure_expr +| @unspecified_element +; + +@condition_element_or_none = + @condition_element +| @unspecified_element +; + +@decl_or_none = + @decl +| @unspecified_element +; + +@enum_element_decl_or_none = + @enum_element_decl +| @unspecified_element +; + +@expr_or_none = + @expr +| @unspecified_element +; + +@file_or_none = + @file +| @unspecified_element +; + +@function_or_none = + @function +| @unspecified_element +; + +@generic_type_decl_or_none = + @generic_type_decl +| @unspecified_element +; + +@generic_type_param_decl_or_none = + @generic_type_param_decl +| @unspecified_element +; + +@generic_type_param_type_or_none = + @generic_type_param_type +| @unspecified_element +; + +@initializer_or_none = + @initializer +| @unspecified_element +; + +@key_path_component_or_none = + @key_path_component +| @unspecified_element +; + +@location_or_none = + @location +| @unspecified_element +; + +@macro_role_or_none = + @macro_role +| @unspecified_element +; + +@module_decl_or_none = + @module_decl +| @unspecified_element +; + +@nominal_type_decl_or_none = + @nominal_type_decl +| @unspecified_element +; + +@opaque_type_decl_or_none = + @opaque_type_decl +| @unspecified_element +; + +@opaque_value_expr_or_none = + @opaque_value_expr +| @unspecified_element +; + +@param_decl_or_none = + @param_decl +| @unspecified_element +; + +@pattern_or_none = + @pattern +| @unspecified_element +; + +@pattern_binding_decl_or_none = + @pattern_binding_decl +| @unspecified_element +; + +@precedence_group_decl_or_none = + @precedence_group_decl +| @unspecified_element +; + +@protocol_decl_or_none = + @protocol_decl +| @unspecified_element +; + +@protocol_type_or_none = + @protocol_type +| @unspecified_element +; + +@stmt_or_none = + @stmt +| @unspecified_element +; + +@stmt_condition_or_none = + @stmt_condition +| @unspecified_element +; + +@string_literal_expr_or_none = + @string_literal_expr +| @unspecified_element +; + +@tap_expr_or_none = + @tap_expr +| @unspecified_element +; + +@type_or_none = + @type +| @unspecified_element +; + +@type_alias_decl_or_none = + @type_alias_decl +| @unspecified_element +; + +@type_repr_or_none = + @type_repr +| @unspecified_element +; + +@value_decl_or_none = + @unspecified_element +| @value_decl +; + +@var_decl_or_none = + @unspecified_element +| @var_decl +; diff --git a/swift/downgrades/1bb163e31d206f30146738adcd93def10fdabefa/upgrade.properties b/swift/downgrades/1bb163e31d206f30146738adcd93def10fdabefa/upgrade.properties new file mode 100644 index 000000000000..1dd157e51bec --- /dev/null +++ b/swift/downgrades/1bb163e31d206f30146738adcd93def10fdabefa/upgrade.properties @@ -0,0 +1,3 @@ +description: Expose declared interface types +compatibility: full +type_decls.rel: reorder type_decls.rel (@type_decl id, string name, @type_or_none declared_interface_type) id name diff --git a/swift/extractor/translators/DeclTranslator.cpp b/swift/extractor/translators/DeclTranslator.cpp index 4a89d571c41d..f7ea94e36648 100644 --- a/swift/extractor/translators/DeclTranslator.cpp +++ b/swift/extractor/translators/DeclTranslator.cpp @@ -299,6 +299,7 @@ void DeclTranslator::fillTypeDecl(const swift::TypeDecl& decl, codeql::TypeDecl& entry.inherited_types.push_back(dispatcher.fetchLabel(type)); } } + entry.declared_interface_type = dispatcher.fetchLabel(decl.getDeclaredInterfaceType()); fillValueDecl(decl, entry); } diff --git a/swift/ql/.generated.list b/swift/ql/.generated.list index ea1cb6f571b2..f178f2bc4b3f 100644 --- a/swift/ql/.generated.list +++ b/swift/ql/.generated.list @@ -741,7 +741,7 @@ lib/codeql/swift/generated/Location.qll 5e20316c3e480ddfe632b7e88e016c19f10a67df lib/codeql/swift/generated/MacroRole.qll facf907e75490d69cd401c491215e4719324d751f40ea46c86ccf24cf3663c1f 969d8d4b44e3f1a9c193a152a4d83a303e56d2dbb871fc920c47a33f699cf018 lib/codeql/swift/generated/ParentChild.qll 669d39245f2cb735cfd4bcebdb551ef8f334fef5297c5834a8b09ebfa655856e 59b283c8a30b6b364c853302ab919ea713e0289e7b793b08b46fc87178d14a6a lib/codeql/swift/generated/PureSynthConstructors.qll bc31a6c4d142fa3fbdcae69d5ba6f1cec00eb9ad92b46c8d7b91ebfa7ef6c1f4 bc31a6c4d142fa3fbdcae69d5ba6f1cec00eb9ad92b46c8d7b91ebfa7ef6c1f4 -lib/codeql/swift/generated/Raw.qll 0090c6509cb3fa5a67c996a2fc22e6338caef19701ca19463965b55b3c63096f 578329fa3abbabbadbff5e364e9c8d7ad76b41d4c17ad76e0660d41f48746659 +lib/codeql/swift/generated/Raw.qll a21e4f931d2bfcd9d964a7b930a81e7c169dc7ed7611f195087ea664745f90ea 3594391128bf4f3fb387ce386ab0f1ef070b7fa046425b6b4152f13b21d0a754 lib/codeql/swift/generated/Synth.qll e30b50d2645d9c36719d81f1be70712c7c6e89a3f5b4a5ae894411e045d05bff 9bd0c9c90532db97cde9553dde4089b7cf12c462c690d853fa40cb36ea112c21 lib/codeql/swift/generated/SynthConstructors.qll c40f01e1331bdbe238620a41d17409cefe34a6b23066708ef5d74f8631b54f48 c40f01e1331bdbe238620a41d17409cefe34a6b23066708ef5d74f8631b54f48 lib/codeql/swift/generated/UnknownFile.qll 247ddf2ebb49ce5ed4bf7bf91a969ddff37de6c78d43d8affccaf7eb586e06f2 452b29f0465ef45e978ef8b647b75e5a2a1e53f2a568fc003bc8f52f73b3fa4d @@ -787,7 +787,7 @@ lib/codeql/swift/generated/decl/StructDecl.qll baa06ebff9619339b461342828f952693 lib/codeql/swift/generated/decl/SubscriptDecl.qll 18d84b4ef27ecb732ac4350b8b01cb8c48db5182680f6893d392d5994919ca97 fcb5fe713326957a5bdf9bb9098f979c77778c02252dcb9c6d915a8d15eb65cf lib/codeql/swift/generated/decl/TopLevelCodeDecl.qll b327da6de5b1e40f5eea5893f4fcb01803cfdd78bd757ec93daadedb7169bf8d 2d316fff198707fae5a43e6b24d2a547ee9502fd278468846495d1b2f4ea62b1 lib/codeql/swift/generated/decl/TypeAliasDecl.qll 041c098c276bc7369049e9a11540e99b061d50977338cceca47488f82b21694e 06deed614cbe77031fdbf3f9591780e80b9f545adec8b7831a2b5329ee49bc5f -lib/codeql/swift/generated/decl/TypeDecl.qll 92f74709cce7e9f0f713598d3b20b730475c312957c518b8096206f8744419a2 305bda46c8bef48b7e30392698e724093ab2984ffed74cae3361f818cbf8c77a +lib/codeql/swift/generated/decl/TypeDecl.qll f8382cfd5800b1165b11fe927b35b2406826f0d1239114376656352039249b56 0247872a700e15c9243dd36e564e93c8b2aeec9cdd26ee675eaaf01525787111 lib/codeql/swift/generated/decl/UsingDecl.qll 3bb697961f5699ec9ed1b87511714eac4ee69f5d82e1fd8c6598f121e23a2f7b 4e72b98a84f796d3e0e556ae6b84bf7b7f08adc225dcdc00fd120461e287b472 lib/codeql/swift/generated/decl/ValueDecl.qll d3b9c241fd6cb1ce8274435c0242775c28c08f6a47caae01ad1ecd38897b2cd5 bc81291b1394b47972d7b75b6a767ed847f881932a7d9345d28d161a55b66bd1 lib/codeql/swift/generated/decl/VarDecl.qll 8978a73fa2d7a9f952b68a2638788eda857e62502311a33fa6de1dad49a6cb1c b8b6c8cf6773056c3a90494754b0a257dcae494c03d933f138ece7f531fb9158 @@ -1048,13 +1048,13 @@ test/extractor-tests/generated/Diagnostics/Diagnostics.ql c1f8be2c283e13c1a4dada test/extractor-tests/generated/File/File.ql a1385ef2080e04e8757f61b8e1d0129df9f955edf03fbb3b83cc9cb5498b4e95 0364d8c7f108d01b2641f996efedab7084956307e875e6bc078ea677d04267e0 test/extractor-tests/generated/KeyPathComponent/KeyPathComponent.ql 3fa617f8ed1b308d0c56f429ee8abe6d33ef60bf57d87f6dc89fdc8fe969a102 c2fa3153077dbe9e0fc608524dc03c82ff4ed460364d341ee6a817b0d75291c3 test/extractor-tests/generated/decl/Accessor/Accessor.ql 3d4301ec9ec6284b547f8cccf94c3077f0baf70778f458bc21bebc5de55c86e5 2f263e79ecd1ac8da56c17caff400fd3c40d83b6aa3d501830f1d2eeb48a57cd -test/extractor-tests/generated/decl/AssociatedTypeDecl/AssociatedTypeDecl.ql 55a78a6b96a17532178a39bd39aa4df23295f98019bb00de041ba15dfd4f84d9 51dbcd86203d5d031d748f77943a81c2c50de4ff559af20a4a1a682a19978d4f +test/extractor-tests/generated/decl/AssociatedTypeDecl/AssociatedTypeDecl.ql b7ad6073733906adbffae03a0a227beea7b5ddeb46e31c81fa9c98d6688abd5c b9b9b01e358d37a154bd3e4d7e59765c5c0ef36cc1a3110718ec9d35946d1ab6 test/extractor-tests/generated/decl/CapturedDecl/CapturedDecl.ql fd62be6c38d39f371c20e8c2f233e37a9da5aa234588920634f5db67e8beb3bd d51d35d4fd6a21cd596e064e0221d0c86e36312412a9bd4e64f431c123f3019a -test/extractor-tests/generated/decl/ClassDecl/ClassDecl.ql d5fa7f68307e2e3e7ad060a125bda148e4a28f6acbef08a1a975bbf9ba947641 46d1e4f801414f1c869601dc706e41393e5fcd399e51da593c1e58737f6ff427 +test/extractor-tests/generated/decl/ClassDecl/ClassDecl.ql 28e453c11069b0266d950da1f32361863d10d870de0f6d11512a0bb686af2ec1 2524ee149a48902346b81bfac6f50c832f83680aed4a850e8ea15504253865be test/extractor-tests/generated/decl/ConcreteVarDecl/ConcreteVarDecl.ql 936ac4aa52a55bd5bb4c75c117fffcc00208b9f502ff7ee05acbaad7d48a52fb d80346fe34d40910f5ecdb33d7266b6e4d1ec79f8d767c7da5e2ab780f201457 test/extractor-tests/generated/decl/Deinitializer/MISSING_SOURCE.txt 35fb32ea5393152eb7a875b20b4e3e4b8c7a997a8959c32417140d57a16a052d 35fb32ea5393152eb7a875b20b4e3e4b8c7a997a8959c32417140d57a16a052d test/extractor-tests/generated/decl/EnumDecl/EnumCaseDecl.ql 7436bb7dfaa471f5a21ea2e3faba97d61bf53f930720999abdcc6745a65f0a1a 0241b2bb07c17136f6099185f65ea1266cd912296dfe481dce30eb9e3d1dd23f -test/extractor-tests/generated/decl/EnumDecl/EnumDecl.ql 47f20279f49388a4850df4f5ee61634e30beed58567eff891688c09942862ec2 8e11af1ceb07cab9738ffb25ac877ced712d1883a6514de5e8895cd1809a7bd8 +test/extractor-tests/generated/decl/EnumDecl/EnumDecl.ql 329c3f6255ef3ed5441110291d40c4e409ad520d92504d8778aadf21e1359a27 ebda0c8f81c6c8383c8ecb68be66a14cc351a9b5f21d44f9a815ff8e149d74b8 test/extractor-tests/generated/decl/EnumDecl/EnumElementDecl.ql 16caf5b014dea42a36b23eee6932c0818d94b1416e151ce46ba06a1fd2fb73ba cac704575b50613c8f8f297ce37c6d09ef943c94df4289643a4496103ac8388e test/extractor-tests/generated/decl/ExtensionDecl/ExtensionDecl.ql 04529ad447b7b0c529a54b0e0d009183c00cb1dcd7eb16378a7c4c7bc86bca4d 86379270a15fa014dc127607b720bb4d39b24b70d1c0f72ef8563c4144423ced test/extractor-tests/generated/decl/GenericTypeParamDecl/MISSING_SOURCE.txt 35fb32ea5393152eb7a875b20b4e3e4b8c7a997a8959c32417140d57a16a052d 35fb32ea5393152eb7a875b20b4e3e4b8c7a997a8959c32417140d57a16a052d @@ -1064,9 +1064,9 @@ test/extractor-tests/generated/decl/InfixOperatorDecl/MISSING_SOURCE.txt 35fb32e test/extractor-tests/generated/decl/Initializer/MISSING_SOURCE.txt 35fb32ea5393152eb7a875b20b4e3e4b8c7a997a8959c32417140d57a16a052d 35fb32ea5393152eb7a875b20b4e3e4b8c7a997a8959c32417140d57a16a052d test/extractor-tests/generated/decl/MacroDecl/MacroDecl.ql 61f092d4ed5972283b3eb0eeec81c8f299496dc548a98dca56a1aadaf8248d1d b9cd637cb0f6f34d8d0a4473f2c212a0534d49891d55593758bb03f8d225f32a test/extractor-tests/generated/decl/MacroDecl/MacroRole.ql 7ab0dc211663c1b09a54ccbee7d6be94ffa45f420b383d2e2f22b7ccfb8d7a48 92296b89fccf6aebe877e67796885bedd809ebb470f23f48f98b27c2922c4ba2 -test/extractor-tests/generated/decl/ModuleDecl/ModuleDecl.ql 63a41a3b393b29d19752379fe29f26fe649dad2927836e24832e07c503d092a6 927fa4056a5d7c65803f7baa1216e6bef9b3b6a223c4a2bb50f2a6a31580db6a +test/extractor-tests/generated/decl/ModuleDecl/ModuleDecl.ql 814ec8b4d9947ff8a49e1c4726015d8a0a35b22851dd50eb516f7c91994481e8 d01548746991d765b8c508c88cfe5ff2e39b499dd177abafcd94e226e0efa016 test/extractor-tests/generated/decl/NamedFunction/NamedFunction.ql c6be4c1314ffed2a8a91af2e08ea14ce721195ec993d18ebd4d7b90f4a60dac3 767fc36b64291ab7ecccd63bf74856983830267c992d1347236da314fca73d57 -test/extractor-tests/generated/decl/OpaqueTypeDecl/OpaqueTypeDecl.ql 85b041e1f791b40ff3d3c58c79e017cebf9ef535ea3d576984b7c093f25aa95b 9fcf314b02ac95fbd2c0e5fc95dc48c16522c74def57f5647dd5ad7e80f7c2c1 +test/extractor-tests/generated/decl/OpaqueTypeDecl/OpaqueTypeDecl.ql d764ddd50ee6faff51bee3a00349d660c32fd5548c7bda3a19866925688e96b0 e6534ba21371aef4d99a6206187d69cda77cd613606d7cb297192f21532fdcab test/extractor-tests/generated/decl/ParamDecl/ParamDecl.ql cc9d89731f7a5ecc2267923268e2d8046aa3f0eb9556c6a12e53b541347f45a4 6d06279172ff2c04be0f39293a2e9a9de5e41ff1efffd41a67d5a921e1afe9ea test/extractor-tests/generated/decl/PatternBindingDecl/MISSING_SOURCE.txt 35fb32ea5393152eb7a875b20b4e3e4b8c7a997a8959c32417140d57a16a052d 35fb32ea5393152eb7a875b20b4e3e4b8c7a997a8959c32417140d57a16a052d test/extractor-tests/generated/decl/PostfixOperatorDecl/MISSING_SOURCE.txt 35fb32ea5393152eb7a875b20b4e3e4b8c7a997a8959c32417140d57a16a052d 35fb32ea5393152eb7a875b20b4e3e4b8c7a997a8959c32417140d57a16a052d diff --git a/swift/ql/lib/codeql/swift/generated/Raw.qll b/swift/ql/lib/codeql/swift/generated/Raw.qll index 3e0fa95a327a..71858b8854cd 100644 --- a/swift/ql/lib/codeql/swift/generated/Raw.qll +++ b/swift/ql/lib/codeql/swift/generated/Raw.qll @@ -1008,7 +1008,7 @@ module Raw { /** * Gets the name of this type declaration. */ - string getName() { type_decls(this, result) } + string getName() { type_decls(this, result, _) } /** * Gets the `index`th inherited type of this type declaration (0-based). @@ -1024,6 +1024,11 @@ module Raw { int getNumberOfInheritedTypes() { result = count(int i | type_decl_inherited_types(this, i, _)) } + + /** + * Gets the declared interface type of this type declaration. + */ + Type getDeclaredInterfaceType() { type_decls(this, _, result) } } /** diff --git a/swift/ql/lib/codeql/swift/generated/decl/TypeDecl.qll b/swift/ql/lib/codeql/swift/generated/decl/TypeDecl.qll index c1cb0c15f73c..f77355da6323 100644 --- a/swift/ql/lib/codeql/swift/generated/decl/TypeDecl.qll +++ b/swift/ql/lib/codeql/swift/generated/decl/TypeDecl.qll @@ -61,5 +61,28 @@ module Generated { final int getNumberOfInheritedTypes() { result = count(int i | exists(this.getInheritedType(i))) } + + /** + * Gets the declared interface type of this type declaration. + * + * This includes nodes from the "hidden" AST. It can be overridden in subclasses to change the + * behavior of both the `Immediate` and non-`Immediate` versions. + */ + Type getImmediateDeclaredInterfaceType() { + result = + Synth::convertTypeFromRaw(Synth::convertTypeDeclToRaw(this) + .(Raw::TypeDecl) + .getDeclaredInterfaceType()) + } + + /** + * Gets the declared interface type of this type declaration. + */ + final Type getDeclaredInterfaceType() { + exists(Type immediate | + immediate = this.getImmediateDeclaredInterfaceType() and + result = immediate.resolve() + ) + } } } diff --git a/swift/ql/lib/swift.dbscheme b/swift/ql/lib/swift.dbscheme index 5738be6bb047..1bb163e31d20 100644 --- a/swift/ql/lib/swift.dbscheme +++ b/swift/ql/lib/swift.dbscheme @@ -530,7 +530,8 @@ prefix_operator_decls( //dir=decl #keyset[id] type_decls( //dir=decl int id: @type_decl ref, - string name: string ref + string name: string ref, + int declared_interface_type: @type_or_none ref ); #keyset[id, index] diff --git a/swift/ql/lib/upgrades/5738be6bb04742c424efdbf9f4de11f0b10fa37d/old.dbscheme b/swift/ql/lib/upgrades/5738be6bb04742c424efdbf9f4de11f0b10fa37d/old.dbscheme new file mode 100644 index 000000000000..5738be6bb047 --- /dev/null +++ b/swift/ql/lib/upgrades/5738be6bb04742c424efdbf9f4de11f0b10fa37d/old.dbscheme @@ -0,0 +1,2891 @@ +// generated by codegen/codegen.py, do not edit + +// from prefix.dbscheme +/** + * The source location of the snapshot. + */ +sourceLocationPrefix( + string prefix: string ref +); + + +// from schema.py + +@element = + @file +| @generic_context +| @locatable +| @location +| @type +; + +#keyset[id] +element_is_unknown( + int id: @element ref +); + +@file = + @db_file +; + +#keyset[id] +files( + int id: @file ref, + string name: string ref +); + +#keyset[id] +file_is_successfully_extracted( + int id: @file ref +); + +@locatable = + @argument +| @ast_node +| @comment +| @diagnostics +| @error_element +; + +#keyset[id] +locatable_locations( + int id: @locatable ref, + int location: @location_or_none ref +); + +@location = + @db_location +; + +#keyset[id] +locations( + int id: @location ref, + int file: @file_or_none ref, + int start_line: int ref, + int start_column: int ref, + int end_line: int ref, + int end_column: int ref +); + +@ast_node = + @availability_info +| @availability_spec +| @callable +| @case_label_item +| @condition_element +| @decl +| @expr +| @key_path_component +| @macro_role +| @pattern +| @stmt +| @stmt_condition +| @type_repr +; + +comments( + unique int id: @comment, + string text: string ref +); + +db_files( + unique int id: @db_file +); + +db_locations( + unique int id: @db_location +); + +diagnostics( + unique int id: @diagnostics, + string text: string ref, + int kind: int ref +); + +@error_element = + @error_expr +| @error_type +| @overloaded_decl_ref_expr +| @unresolved_decl_ref_expr +| @unresolved_dot_expr +| @unresolved_member_chain_result_expr +| @unresolved_member_expr +| @unresolved_pattern_expr +| @unresolved_specialize_expr +| @unresolved_type +| @unresolved_type_conversion_expr +| @unspecified_element +; + +availability_infos( + unique int id: @availability_info +); + +#keyset[id] +availability_info_is_unavailable( + int id: @availability_info ref +); + +#keyset[id, index] +availability_info_specs( + int id: @availability_info ref, + int index: int ref, + int spec: @availability_spec_or_none ref +); + +availability_specs( + unique int id: @availability_spec +); + +#keyset[id] +availability_spec_platforms( + int id: @availability_spec ref, + string platform: string ref +); + +#keyset[id] +availability_spec_versions( + int id: @availability_spec ref, + string version: string ref +); + +#keyset[id] +availability_spec_is_wildcard( + int id: @availability_spec ref +); + +@callable = + @closure_expr +| @function +; + +#keyset[id] +callable_names( + int id: @callable ref, + string name: string ref +); + +#keyset[id] +callable_self_params( + int id: @callable ref, + int self_param: @param_decl_or_none ref +); + +#keyset[id, index] +callable_params( + int id: @callable ref, + int index: int ref, + int param: @param_decl_or_none ref +); + +#keyset[id] +callable_bodies( + int id: @callable ref, + int body: @brace_stmt_or_none ref +); + +#keyset[id, index] +callable_captures( + int id: @callable ref, + int index: int ref, + int capture: @captured_decl_or_none ref +); + +key_path_components( + unique int id: @key_path_component, + int kind: int ref, + int component_type: @type_or_none ref +); + +#keyset[id, index] +key_path_component_subscript_arguments( + int id: @key_path_component ref, + int index: int ref, + int subscript_argument: @argument_or_none ref +); + +#keyset[id] +key_path_component_tuple_indices( + int id: @key_path_component ref, + int tuple_index: int ref +); + +#keyset[id] +key_path_component_decl_refs( + int id: @key_path_component ref, + int decl_ref: @value_decl_or_none ref +); + +macro_roles( + unique int id: @macro_role, + int kind: int ref, + int macro_syntax: int ref +); + +#keyset[id, index] +macro_role_conformances( + int id: @macro_role ref, + int index: int ref, + int conformance: @expr_or_none ref +); + +#keyset[id, index] +macro_role_names( + int id: @macro_role ref, + int index: int ref, + string name: string ref +); + +unspecified_elements( + unique int id: @unspecified_element, + string property: string ref, + string error: string ref +); + +#keyset[id] +unspecified_element_parents( + int id: @unspecified_element ref, + int parent: @element ref +); + +#keyset[id] +unspecified_element_indices( + int id: @unspecified_element ref, + int index: int ref +); + +#keyset[id, index] +unspecified_element_children( + int id: @unspecified_element ref, + int index: int ref, + int child: @ast_node_or_none ref +); + +@decl = + @captured_decl +| @enum_case_decl +| @extension_decl +| @if_config_decl +| @import_decl +| @missing_member_decl +| @operator_decl +| @pattern_binding_decl +| @pound_diagnostic_decl +| @precedence_group_decl +| @top_level_code_decl +| @using_decl +| @value_decl +; + +#keyset[id] +decls( //dir=decl + int id: @decl ref, + int module: @module_decl_or_none ref +); + +#keyset[id, index] +decl_members( //dir=decl + int id: @decl ref, + int index: int ref, + int member: @decl_or_none ref +); + +@generic_context = + @extension_decl +| @function +| @generic_type_decl +| @macro_decl +| @subscript_decl +; + +#keyset[id, index] +generic_context_generic_type_params( //dir=decl + int id: @generic_context ref, + int index: int ref, + int generic_type_param: @generic_type_param_decl_or_none ref +); + +captured_decls( //dir=decl + unique int id: @captured_decl, + int decl: @value_decl_or_none ref +); + +#keyset[id] +captured_decl_is_direct( //dir=decl + int id: @captured_decl ref +); + +#keyset[id] +captured_decl_is_escaping( //dir=decl + int id: @captured_decl ref +); + +enum_case_decls( //dir=decl + unique int id: @enum_case_decl +); + +#keyset[id, index] +enum_case_decl_elements( //dir=decl + int id: @enum_case_decl ref, + int index: int ref, + int element: @enum_element_decl_or_none ref +); + +extension_decls( //dir=decl + unique int id: @extension_decl, + int extended_type_decl: @nominal_type_decl_or_none ref +); + +#keyset[id, index] +extension_decl_protocols( //dir=decl + int id: @extension_decl ref, + int index: int ref, + int protocol: @protocol_decl_or_none ref +); + +if_config_decls( //dir=decl + unique int id: @if_config_decl +); + +#keyset[id, index] +if_config_decl_active_elements( //dir=decl + int id: @if_config_decl ref, + int index: int ref, + int active_element: @ast_node_or_none ref +); + +import_decls( //dir=decl + unique int id: @import_decl +); + +#keyset[id] +import_decl_is_exported( //dir=decl + int id: @import_decl ref +); + +#keyset[id] +import_decl_imported_modules( //dir=decl + int id: @import_decl ref, + int imported_module: @module_decl_or_none ref +); + +#keyset[id, index] +import_decl_declarations( //dir=decl + int id: @import_decl ref, + int index: int ref, + int declaration: @value_decl_or_none ref +); + +missing_member_decls( //dir=decl + unique int id: @missing_member_decl, + string name: string ref +); + +@operator_decl = + @infix_operator_decl +| @postfix_operator_decl +| @prefix_operator_decl +; + +#keyset[id] +operator_decls( //dir=decl + int id: @operator_decl ref, + string name: string ref +); + +pattern_binding_decls( //dir=decl + unique int id: @pattern_binding_decl +); + +#keyset[id, index] +pattern_binding_decl_inits( //dir=decl + int id: @pattern_binding_decl ref, + int index: int ref, + int init: @expr_or_none ref +); + +#keyset[id, index] +pattern_binding_decl_patterns( //dir=decl + int id: @pattern_binding_decl ref, + int index: int ref, + int pattern: @pattern_or_none ref +); + +pound_diagnostic_decls( //dir=decl + unique int id: @pound_diagnostic_decl, + int kind: int ref, + int message: @string_literal_expr_or_none ref +); + +precedence_group_decls( //dir=decl + unique int id: @precedence_group_decl +); + +top_level_code_decls( //dir=decl + unique int id: @top_level_code_decl, + int body: @brace_stmt_or_none ref +); + +using_decls( //dir=decl + unique int id: @using_decl +); + +#keyset[id] +using_decl_is_main_actor( //dir=decl + int id: @using_decl ref +); + +#keyset[id] +using_decl_is_nonisolated( //dir=decl + int id: @using_decl ref +); + +@value_decl = + @abstract_storage_decl +| @enum_element_decl +| @function +| @macro_decl +| @type_decl +; + +#keyset[id] +value_decls( //dir=decl + int id: @value_decl ref, + int interface_type: @type_or_none ref +); + +@abstract_storage_decl = + @subscript_decl +| @var_decl +; + +#keyset[id, index] +abstract_storage_decl_accessors( //dir=decl + int id: @abstract_storage_decl ref, + int index: int ref, + int accessor: @accessor_or_none ref +); + +enum_element_decls( //dir=decl + unique int id: @enum_element_decl, + string name: string ref +); + +#keyset[id, index] +enum_element_decl_params( //dir=decl + int id: @enum_element_decl ref, + int index: int ref, + int param: @param_decl_or_none ref +); + +@function = + @accessor_or_named_function +| @deinitializer +| @initializer +; + +infix_operator_decls( //dir=decl + unique int id: @infix_operator_decl +); + +#keyset[id] +infix_operator_decl_precedence_groups( //dir=decl + int id: @infix_operator_decl ref, + int precedence_group: @precedence_group_decl_or_none ref +); + +macro_decls( //dir=decl + unique int id: @macro_decl, + string name: string ref +); + +#keyset[id, index] +macro_decl_parameters( //dir=decl + int id: @macro_decl ref, + int index: int ref, + int parameter: @param_decl_or_none ref +); + +#keyset[id, index] +macro_decl_roles( //dir=decl + int id: @macro_decl ref, + int index: int ref, + int role: @macro_role_or_none ref +); + +postfix_operator_decls( //dir=decl + unique int id: @postfix_operator_decl +); + +prefix_operator_decls( //dir=decl + unique int id: @prefix_operator_decl +); + +@type_decl = + @abstract_type_param_decl +| @generic_type_decl +| @module_decl +; + +#keyset[id] +type_decls( //dir=decl + int id: @type_decl ref, + string name: string ref +); + +#keyset[id, index] +type_decl_inherited_types( //dir=decl + int id: @type_decl ref, + int index: int ref, + int inherited_type: @type_or_none ref +); + +@abstract_type_param_decl = + @associated_type_decl +| @generic_type_param_decl +; + +@accessor_or_named_function = + @accessor +| @named_function +; + +deinitializers( //dir=decl + unique int id: @deinitializer +); + +@generic_type_decl = + @nominal_type_decl +| @opaque_type_decl +| @type_alias_decl +; + +initializers( //dir=decl + unique int id: @initializer +); + +module_decls( //dir=decl + unique int id: @module_decl +); + +#keyset[id] +module_decl_is_builtin_module( //dir=decl + int id: @module_decl ref +); + +#keyset[id] +module_decl_is_system_module( //dir=decl + int id: @module_decl ref +); + +module_decl_imported_modules( //dir=decl + int id: @module_decl ref, + int imported_module: @module_decl_or_none ref +); + +module_decl_exported_modules( //dir=decl + int id: @module_decl ref, + int exported_module: @module_decl_or_none ref +); + +subscript_decls( //dir=decl + unique int id: @subscript_decl, + int element_type: @type_or_none ref +); + +#keyset[id, index] +subscript_decl_params( //dir=decl + int id: @subscript_decl ref, + int index: int ref, + int param: @param_decl_or_none ref +); + +@var_decl = + @concrete_var_decl +| @param_decl +; + +#keyset[id] +var_decls( //dir=decl + int id: @var_decl ref, + string name: string ref, + int type_: @type_or_none ref +); + +#keyset[id] +var_decl_attached_property_wrapper_types( //dir=decl + int id: @var_decl ref, + int attached_property_wrapper_type: @type_or_none ref +); + +#keyset[id] +var_decl_parent_patterns( //dir=decl + int id: @var_decl ref, + int parent_pattern: @pattern_or_none ref +); + +#keyset[id] +var_decl_parent_initializers( //dir=decl + int id: @var_decl ref, + int parent_initializer: @expr_or_none ref +); + +#keyset[id] +var_decl_property_wrapper_backing_var_bindings( //dir=decl + int id: @var_decl ref, + int property_wrapper_backing_var_binding: @pattern_binding_decl_or_none ref +); + +#keyset[id] +var_decl_property_wrapper_backing_vars( //dir=decl + int id: @var_decl ref, + int property_wrapper_backing_var: @var_decl_or_none ref +); + +#keyset[id] +var_decl_property_wrapper_projection_var_bindings( //dir=decl + int id: @var_decl ref, + int property_wrapper_projection_var_binding: @pattern_binding_decl_or_none ref +); + +#keyset[id] +var_decl_property_wrapper_projection_vars( //dir=decl + int id: @var_decl ref, + int property_wrapper_projection_var: @var_decl_or_none ref +); + +accessors( //dir=decl + unique int id: @accessor +); + +#keyset[id] +accessor_is_getter( //dir=decl + int id: @accessor ref +); + +#keyset[id] +accessor_is_setter( //dir=decl + int id: @accessor ref +); + +#keyset[id] +accessor_is_will_set( //dir=decl + int id: @accessor ref +); + +#keyset[id] +accessor_is_did_set( //dir=decl + int id: @accessor ref +); + +#keyset[id] +accessor_is_read( //dir=decl + int id: @accessor ref +); + +#keyset[id] +accessor_is_modify( //dir=decl + int id: @accessor ref +); + +#keyset[id] +accessor_is_unsafe_address( //dir=decl + int id: @accessor ref +); + +#keyset[id] +accessor_is_unsafe_mutable_address( //dir=decl + int id: @accessor ref +); + +#keyset[id] +accessor_is_distributed_get( //dir=decl + int id: @accessor ref +); + +#keyset[id] +accessor_is_read2( //dir=decl + int id: @accessor ref +); + +#keyset[id] +accessor_is_modify2( //dir=decl + int id: @accessor ref +); + +#keyset[id] +accessor_is_init( //dir=decl + int id: @accessor ref +); + +associated_type_decls( //dir=decl + unique int id: @associated_type_decl +); + +concrete_var_decls( //dir=decl + unique int id: @concrete_var_decl, + int introducer_int: int ref +); + +generic_type_param_decls( //dir=decl + unique int id: @generic_type_param_decl +); + +named_functions( //dir=decl + unique int id: @named_function +); + +@nominal_type_decl = + @class_decl +| @enum_decl +| @protocol_decl +| @struct_decl +; + +#keyset[id] +nominal_type_decls( //dir=decl + int id: @nominal_type_decl ref, + int type_: @type_or_none ref +); + +opaque_type_decls( //dir=decl + unique int id: @opaque_type_decl, + int naming_declaration: @value_decl_or_none ref +); + +#keyset[id, index] +opaque_type_decl_opaque_generic_params( //dir=decl + int id: @opaque_type_decl ref, + int index: int ref, + int opaque_generic_param: @generic_type_param_type_or_none ref +); + +param_decls( //dir=decl + unique int id: @param_decl +); + +#keyset[id] +param_decl_is_inout( //dir=decl + int id: @param_decl ref +); + +#keyset[id] +param_decl_property_wrapper_local_wrapped_var_bindings( //dir=decl + int id: @param_decl ref, + int property_wrapper_local_wrapped_var_binding: @pattern_binding_decl_or_none ref +); + +#keyset[id] +param_decl_property_wrapper_local_wrapped_vars( //dir=decl + int id: @param_decl ref, + int property_wrapper_local_wrapped_var: @var_decl_or_none ref +); + +type_alias_decls( //dir=decl + unique int id: @type_alias_decl, + int aliased_type: @type_or_none ref +); + +class_decls( //dir=decl + unique int id: @class_decl +); + +enum_decls( //dir=decl + unique int id: @enum_decl +); + +protocol_decls( //dir=decl + unique int id: @protocol_decl +); + +struct_decls( //dir=decl + unique int id: @struct_decl +); + +arguments( //dir=expr + unique int id: @argument, + string label: string ref, + int expr: @expr_or_none ref +); + +@expr = + @any_try_expr +| @applied_property_wrapper_expr +| @apply_expr +| @assign_expr +| @bind_optional_expr +| @capture_list_expr +| @closure_expr +| @collection_expr +| @consume_expr +| @copy_expr +| @current_context_isolation_expr +| @decl_ref_expr +| @default_argument_expr +| @discard_assignment_expr +| @dot_syntax_base_ignored_expr +| @dynamic_type_expr +| @enum_is_case_expr +| @error_expr +| @explicit_cast_expr +| @extract_function_isolation_expr +| @force_value_expr +| @identity_expr +| @if_expr +| @implicit_conversion_expr +| @in_out_expr +| @key_path_application_expr +| @key_path_dot_expr +| @key_path_expr +| @lazy_initialization_expr +| @literal_expr +| @lookup_expr +| @make_temporarily_escapable_expr +| @materialize_pack_expr +| @obj_c_selector_expr +| @one_way_expr +| @opaque_value_expr +| @open_existential_expr +| @optional_evaluation_expr +| @other_initializer_ref_expr +| @overloaded_decl_ref_expr +| @pack_element_expr +| @pack_expansion_expr +| @property_wrapper_value_placeholder_expr +| @rebind_self_in_initializer_expr +| @sequence_expr +| @single_value_stmt_expr +| @super_ref_expr +| @tap_expr +| @tuple_element_expr +| @tuple_expr +| @type_expr +| @type_value_expr +| @unresolved_decl_ref_expr +| @unresolved_dot_expr +| @unresolved_member_expr +| @unresolved_pattern_expr +| @unresolved_specialize_expr +| @vararg_expansion_expr +; + +#keyset[id] +expr_types( //dir=expr + int id: @expr ref, + int type_: @type_or_none ref +); + +@any_try_expr = + @force_try_expr +| @optional_try_expr +| @try_expr +; + +#keyset[id] +any_try_exprs( //dir=expr + int id: @any_try_expr ref, + int sub_expr: @expr_or_none ref +); + +applied_property_wrapper_exprs( //dir=expr + unique int id: @applied_property_wrapper_expr, + int kind: int ref, + int value: @expr_or_none ref, + int param: @param_decl_or_none ref +); + +@apply_expr = + @binary_expr +| @call_expr +| @postfix_unary_expr +| @prefix_unary_expr +| @self_apply_expr +; + +#keyset[id] +apply_exprs( //dir=expr + int id: @apply_expr ref, + int function: @expr_or_none ref +); + +#keyset[id, index] +apply_expr_arguments( //dir=expr + int id: @apply_expr ref, + int index: int ref, + int argument: @argument_or_none ref +); + +assign_exprs( //dir=expr + unique int id: @assign_expr, + int dest: @expr_or_none ref, + int source: @expr_or_none ref +); + +bind_optional_exprs( //dir=expr + unique int id: @bind_optional_expr, + int sub_expr: @expr_or_none ref +); + +capture_list_exprs( //dir=expr + unique int id: @capture_list_expr, + int closure_body: @closure_expr_or_none ref +); + +#keyset[id, index] +capture_list_expr_binding_decls( //dir=expr + int id: @capture_list_expr ref, + int index: int ref, + int binding_decl: @pattern_binding_decl_or_none ref +); + +@closure_expr = + @auto_closure_expr +| @explicit_closure_expr +; + +@collection_expr = + @array_expr +| @dictionary_expr +; + +consume_exprs( //dir=expr + unique int id: @consume_expr, + int sub_expr: @expr_or_none ref +); + +copy_exprs( //dir=expr + unique int id: @copy_expr, + int sub_expr: @expr_or_none ref +); + +current_context_isolation_exprs( //dir=expr + unique int id: @current_context_isolation_expr, + int actor: @expr_or_none ref +); + +decl_ref_exprs( //dir=expr + unique int id: @decl_ref_expr, + int decl: @decl_or_none ref +); + +#keyset[id, index] +decl_ref_expr_replacement_types( //dir=expr + int id: @decl_ref_expr ref, + int index: int ref, + int replacement_type: @type_or_none ref +); + +#keyset[id] +decl_ref_expr_has_direct_to_storage_semantics( //dir=expr + int id: @decl_ref_expr ref +); + +#keyset[id] +decl_ref_expr_has_direct_to_implementation_semantics( //dir=expr + int id: @decl_ref_expr ref +); + +#keyset[id] +decl_ref_expr_has_ordinary_semantics( //dir=expr + int id: @decl_ref_expr ref +); + +#keyset[id] +decl_ref_expr_has_distributed_thunk_semantics( //dir=expr + int id: @decl_ref_expr ref +); + +default_argument_exprs( //dir=expr + unique int id: @default_argument_expr, + int param_decl: @param_decl_or_none ref, + int param_index: int ref +); + +#keyset[id] +default_argument_expr_caller_side_defaults( //dir=expr + int id: @default_argument_expr ref, + int caller_side_default: @expr_or_none ref +); + +discard_assignment_exprs( //dir=expr + unique int id: @discard_assignment_expr +); + +dot_syntax_base_ignored_exprs( //dir=expr + unique int id: @dot_syntax_base_ignored_expr, + int qualifier: @expr_or_none ref, + int sub_expr: @expr_or_none ref +); + +dynamic_type_exprs( //dir=expr + unique int id: @dynamic_type_expr, + int base: @expr_or_none ref +); + +enum_is_case_exprs( //dir=expr + unique int id: @enum_is_case_expr, + int sub_expr: @expr_or_none ref, + int element: @enum_element_decl_or_none ref +); + +error_exprs( //dir=expr + unique int id: @error_expr +); + +@explicit_cast_expr = + @checked_cast_expr +| @coerce_expr +; + +#keyset[id] +explicit_cast_exprs( //dir=expr + int id: @explicit_cast_expr ref, + int sub_expr: @expr_or_none ref +); + +extract_function_isolation_exprs( //dir=expr + unique int id: @extract_function_isolation_expr, + int function_expr: @expr_or_none ref +); + +force_value_exprs( //dir=expr + unique int id: @force_value_expr, + int sub_expr: @expr_or_none ref +); + +@identity_expr = + @await_expr +| @borrow_expr +| @dot_self_expr +| @paren_expr +| @unresolved_member_chain_result_expr +| @unsafe_expr +; + +#keyset[id] +identity_exprs( //dir=expr + int id: @identity_expr ref, + int sub_expr: @expr_or_none ref +); + +if_exprs( //dir=expr + unique int id: @if_expr, + int condition: @expr_or_none ref, + int then_expr: @expr_or_none ref, + int else_expr: @expr_or_none ref +); + +@implicit_conversion_expr = + @abi_safe_conversion_expr +| @actor_isolation_erasure_expr +| @any_hashable_erasure_expr +| @archetype_to_super_expr +| @array_to_pointer_expr +| @bridge_from_obj_c_expr +| @bridge_to_obj_c_expr +| @class_metatype_to_object_expr +| @collection_upcast_conversion_expr +| @conditional_bridge_from_obj_c_expr +| @covariant_function_conversion_expr +| @covariant_return_conversion_expr +| @derived_to_base_expr +| @destructure_tuple_expr +| @differentiable_function_expr +| @differentiable_function_extract_original_expr +| @erasure_expr +| @existential_metatype_to_object_expr +| @foreign_object_conversion_expr +| @function_conversion_expr +| @in_out_to_pointer_expr +| @inject_into_optional_expr +| @linear_function_expr +| @linear_function_extract_original_expr +| @linear_to_differentiable_function_expr +| @load_expr +| @metatype_conversion_expr +| @pointer_to_pointer_expr +| @protocol_metatype_to_object_expr +| @string_to_pointer_expr +| @underlying_to_opaque_expr +| @unevaluated_instance_expr +| @unreachable_expr +| @unresolved_type_conversion_expr +| @unsafe_cast_expr +; + +#keyset[id] +implicit_conversion_exprs( //dir=expr + int id: @implicit_conversion_expr ref, + int sub_expr: @expr_or_none ref +); + +in_out_exprs( //dir=expr + unique int id: @in_out_expr, + int sub_expr: @expr_or_none ref +); + +key_path_application_exprs( //dir=expr + unique int id: @key_path_application_expr, + int base: @expr_or_none ref, + int key_path: @expr_or_none ref +); + +key_path_dot_exprs( //dir=expr + unique int id: @key_path_dot_expr +); + +key_path_exprs( //dir=expr + unique int id: @key_path_expr +); + +#keyset[id] +key_path_expr_roots( //dir=expr + int id: @key_path_expr ref, + int root: @type_repr_or_none ref +); + +#keyset[id, index] +key_path_expr_components( //dir=expr + int id: @key_path_expr ref, + int index: int ref, + int component: @key_path_component_or_none ref +); + +lazy_initialization_exprs( //dir=expr + unique int id: @lazy_initialization_expr, + int sub_expr: @expr_or_none ref +); + +@literal_expr = + @builtin_literal_expr +| @interpolated_string_literal_expr +| @nil_literal_expr +| @object_literal_expr +| @regex_literal_expr +; + +@lookup_expr = + @dynamic_lookup_expr +| @member_ref_expr +| @subscript_expr +; + +#keyset[id] +lookup_exprs( //dir=expr + int id: @lookup_expr ref, + int base: @expr_or_none ref +); + +#keyset[id] +lookup_expr_members( //dir=expr + int id: @lookup_expr ref, + int member: @decl_or_none ref +); + +make_temporarily_escapable_exprs( //dir=expr + unique int id: @make_temporarily_escapable_expr, + int escaping_closure: @opaque_value_expr_or_none ref, + int nonescaping_closure: @expr_or_none ref, + int sub_expr: @expr_or_none ref +); + +materialize_pack_exprs( //dir=expr + unique int id: @materialize_pack_expr, + int sub_expr: @expr_or_none ref +); + +obj_c_selector_exprs( //dir=expr + unique int id: @obj_c_selector_expr, + int sub_expr: @expr_or_none ref, + int method: @function_or_none ref +); + +one_way_exprs( //dir=expr + unique int id: @one_way_expr, + int sub_expr: @expr_or_none ref +); + +opaque_value_exprs( //dir=expr + unique int id: @opaque_value_expr +); + +open_existential_exprs( //dir=expr + unique int id: @open_existential_expr, + int sub_expr: @expr_or_none ref, + int existential: @expr_or_none ref, + int opaque_expr: @opaque_value_expr_or_none ref +); + +optional_evaluation_exprs( //dir=expr + unique int id: @optional_evaluation_expr, + int sub_expr: @expr_or_none ref +); + +other_initializer_ref_exprs( //dir=expr + unique int id: @other_initializer_ref_expr, + int initializer: @initializer_or_none ref +); + +overloaded_decl_ref_exprs( //dir=expr + unique int id: @overloaded_decl_ref_expr +); + +#keyset[id, index] +overloaded_decl_ref_expr_possible_declarations( //dir=expr + int id: @overloaded_decl_ref_expr ref, + int index: int ref, + int possible_declaration: @value_decl_or_none ref +); + +pack_element_exprs( //dir=expr + unique int id: @pack_element_expr, + int sub_expr: @expr_or_none ref +); + +pack_expansion_exprs( //dir=expr + unique int id: @pack_expansion_expr, + int pattern_expr: @expr_or_none ref +); + +property_wrapper_value_placeholder_exprs( //dir=expr + unique int id: @property_wrapper_value_placeholder_expr, + int placeholder: @opaque_value_expr_or_none ref +); + +#keyset[id] +property_wrapper_value_placeholder_expr_wrapped_values( //dir=expr + int id: @property_wrapper_value_placeholder_expr ref, + int wrapped_value: @expr_or_none ref +); + +rebind_self_in_initializer_exprs( //dir=expr + unique int id: @rebind_self_in_initializer_expr, + int sub_expr: @expr_or_none ref, + int self: @var_decl_or_none ref +); + +sequence_exprs( //dir=expr + unique int id: @sequence_expr +); + +#keyset[id, index] +sequence_expr_elements( //dir=expr + int id: @sequence_expr ref, + int index: int ref, + int element: @expr_or_none ref +); + +single_value_stmt_exprs( //dir=expr + unique int id: @single_value_stmt_expr, + int stmt: @stmt_or_none ref +); + +super_ref_exprs( //dir=expr + unique int id: @super_ref_expr, + int self: @var_decl_or_none ref +); + +tap_exprs( //dir=expr + unique int id: @tap_expr, + int body: @brace_stmt_or_none ref, + int var: @var_decl_or_none ref +); + +#keyset[id] +tap_expr_sub_exprs( //dir=expr + int id: @tap_expr ref, + int sub_expr: @expr_or_none ref +); + +tuple_element_exprs( //dir=expr + unique int id: @tuple_element_expr, + int sub_expr: @expr_or_none ref, + int index: int ref +); + +tuple_exprs( //dir=expr + unique int id: @tuple_expr +); + +#keyset[id, index] +tuple_expr_elements( //dir=expr + int id: @tuple_expr ref, + int index: int ref, + int element: @expr_or_none ref +); + +type_exprs( //dir=expr + unique int id: @type_expr +); + +#keyset[id] +type_expr_type_reprs( //dir=expr + int id: @type_expr ref, + int type_repr: @type_repr_or_none ref +); + +type_value_exprs( //dir=expr + unique int id: @type_value_expr, + int type_repr: @type_repr_or_none ref +); + +unresolved_decl_ref_exprs( //dir=expr + unique int id: @unresolved_decl_ref_expr +); + +#keyset[id] +unresolved_decl_ref_expr_names( //dir=expr + int id: @unresolved_decl_ref_expr ref, + string name: string ref +); + +unresolved_dot_exprs( //dir=expr + unique int id: @unresolved_dot_expr, + int base: @expr_or_none ref, + string name: string ref +); + +unresolved_member_exprs( //dir=expr + unique int id: @unresolved_member_expr, + string name: string ref +); + +unresolved_pattern_exprs( //dir=expr + unique int id: @unresolved_pattern_expr, + int sub_pattern: @pattern_or_none ref +); + +unresolved_specialize_exprs( //dir=expr + unique int id: @unresolved_specialize_expr, + int sub_expr: @expr_or_none ref +); + +vararg_expansion_exprs( //dir=expr + unique int id: @vararg_expansion_expr, + int sub_expr: @expr_or_none ref +); + +abi_safe_conversion_exprs( //dir=expr + unique int id: @abi_safe_conversion_expr +); + +actor_isolation_erasure_exprs( //dir=expr + unique int id: @actor_isolation_erasure_expr +); + +any_hashable_erasure_exprs( //dir=expr + unique int id: @any_hashable_erasure_expr +); + +archetype_to_super_exprs( //dir=expr + unique int id: @archetype_to_super_expr +); + +array_exprs( //dir=expr + unique int id: @array_expr +); + +#keyset[id, index] +array_expr_elements( //dir=expr + int id: @array_expr ref, + int index: int ref, + int element: @expr_or_none ref +); + +array_to_pointer_exprs( //dir=expr + unique int id: @array_to_pointer_expr +); + +auto_closure_exprs( //dir=expr + unique int id: @auto_closure_expr +); + +await_exprs( //dir=expr + unique int id: @await_expr +); + +binary_exprs( //dir=expr + unique int id: @binary_expr +); + +borrow_exprs( //dir=expr + unique int id: @borrow_expr +); + +bridge_from_obj_c_exprs( //dir=expr + unique int id: @bridge_from_obj_c_expr +); + +bridge_to_obj_c_exprs( //dir=expr + unique int id: @bridge_to_obj_c_expr +); + +@builtin_literal_expr = + @boolean_literal_expr +| @magic_identifier_literal_expr +| @number_literal_expr +| @string_literal_expr +; + +call_exprs( //dir=expr + unique int id: @call_expr +); + +@checked_cast_expr = + @conditional_checked_cast_expr +| @forced_checked_cast_expr +| @is_expr +; + +class_metatype_to_object_exprs( //dir=expr + unique int id: @class_metatype_to_object_expr +); + +coerce_exprs( //dir=expr + unique int id: @coerce_expr +); + +collection_upcast_conversion_exprs( //dir=expr + unique int id: @collection_upcast_conversion_expr +); + +conditional_bridge_from_obj_c_exprs( //dir=expr + unique int id: @conditional_bridge_from_obj_c_expr +); + +covariant_function_conversion_exprs( //dir=expr + unique int id: @covariant_function_conversion_expr +); + +covariant_return_conversion_exprs( //dir=expr + unique int id: @covariant_return_conversion_expr +); + +derived_to_base_exprs( //dir=expr + unique int id: @derived_to_base_expr +); + +destructure_tuple_exprs( //dir=expr + unique int id: @destructure_tuple_expr +); + +dictionary_exprs( //dir=expr + unique int id: @dictionary_expr +); + +#keyset[id, index] +dictionary_expr_elements( //dir=expr + int id: @dictionary_expr ref, + int index: int ref, + int element: @expr_or_none ref +); + +differentiable_function_exprs( //dir=expr + unique int id: @differentiable_function_expr +); + +differentiable_function_extract_original_exprs( //dir=expr + unique int id: @differentiable_function_extract_original_expr +); + +dot_self_exprs( //dir=expr + unique int id: @dot_self_expr +); + +@dynamic_lookup_expr = + @dynamic_member_ref_expr +| @dynamic_subscript_expr +; + +erasure_exprs( //dir=expr + unique int id: @erasure_expr +); + +existential_metatype_to_object_exprs( //dir=expr + unique int id: @existential_metatype_to_object_expr +); + +explicit_closure_exprs( //dir=expr + unique int id: @explicit_closure_expr +); + +force_try_exprs( //dir=expr + unique int id: @force_try_expr +); + +foreign_object_conversion_exprs( //dir=expr + unique int id: @foreign_object_conversion_expr +); + +function_conversion_exprs( //dir=expr + unique int id: @function_conversion_expr +); + +in_out_to_pointer_exprs( //dir=expr + unique int id: @in_out_to_pointer_expr +); + +inject_into_optional_exprs( //dir=expr + unique int id: @inject_into_optional_expr +); + +interpolated_string_literal_exprs( //dir=expr + unique int id: @interpolated_string_literal_expr +); + +#keyset[id] +interpolated_string_literal_expr_interpolation_exprs( //dir=expr + int id: @interpolated_string_literal_expr ref, + int interpolation_expr: @opaque_value_expr_or_none ref +); + +#keyset[id] +interpolated_string_literal_expr_appending_exprs( //dir=expr + int id: @interpolated_string_literal_expr ref, + int appending_expr: @tap_expr_or_none ref +); + +linear_function_exprs( //dir=expr + unique int id: @linear_function_expr +); + +linear_function_extract_original_exprs( //dir=expr + unique int id: @linear_function_extract_original_expr +); + +linear_to_differentiable_function_exprs( //dir=expr + unique int id: @linear_to_differentiable_function_expr +); + +load_exprs( //dir=expr + unique int id: @load_expr +); + +member_ref_exprs( //dir=expr + unique int id: @member_ref_expr +); + +#keyset[id] +member_ref_expr_has_direct_to_storage_semantics( //dir=expr + int id: @member_ref_expr ref +); + +#keyset[id] +member_ref_expr_has_direct_to_implementation_semantics( //dir=expr + int id: @member_ref_expr ref +); + +#keyset[id] +member_ref_expr_has_ordinary_semantics( //dir=expr + int id: @member_ref_expr ref +); + +#keyset[id] +member_ref_expr_has_distributed_thunk_semantics( //dir=expr + int id: @member_ref_expr ref +); + +metatype_conversion_exprs( //dir=expr + unique int id: @metatype_conversion_expr +); + +nil_literal_exprs( //dir=expr + unique int id: @nil_literal_expr +); + +object_literal_exprs( //dir=expr + unique int id: @object_literal_expr, + int kind: int ref +); + +#keyset[id, index] +object_literal_expr_arguments( //dir=expr + int id: @object_literal_expr ref, + int index: int ref, + int argument: @argument_or_none ref +); + +optional_try_exprs( //dir=expr + unique int id: @optional_try_expr +); + +paren_exprs( //dir=expr + unique int id: @paren_expr +); + +pointer_to_pointer_exprs( //dir=expr + unique int id: @pointer_to_pointer_expr +); + +postfix_unary_exprs( //dir=expr + unique int id: @postfix_unary_expr +); + +prefix_unary_exprs( //dir=expr + unique int id: @prefix_unary_expr +); + +protocol_metatype_to_object_exprs( //dir=expr + unique int id: @protocol_metatype_to_object_expr +); + +regex_literal_exprs( //dir=expr + unique int id: @regex_literal_expr, + string pattern: string ref, + int version: int ref +); + +@self_apply_expr = + @dot_syntax_call_expr +| @initializer_ref_call_expr +; + +#keyset[id] +self_apply_exprs( //dir=expr + int id: @self_apply_expr ref, + int base: @expr_or_none ref +); + +string_to_pointer_exprs( //dir=expr + unique int id: @string_to_pointer_expr +); + +subscript_exprs( //dir=expr + unique int id: @subscript_expr +); + +#keyset[id, index] +subscript_expr_arguments( //dir=expr + int id: @subscript_expr ref, + int index: int ref, + int argument: @argument_or_none ref +); + +#keyset[id] +subscript_expr_has_direct_to_storage_semantics( //dir=expr + int id: @subscript_expr ref +); + +#keyset[id] +subscript_expr_has_direct_to_implementation_semantics( //dir=expr + int id: @subscript_expr ref +); + +#keyset[id] +subscript_expr_has_ordinary_semantics( //dir=expr + int id: @subscript_expr ref +); + +#keyset[id] +subscript_expr_has_distributed_thunk_semantics( //dir=expr + int id: @subscript_expr ref +); + +try_exprs( //dir=expr + unique int id: @try_expr +); + +underlying_to_opaque_exprs( //dir=expr + unique int id: @underlying_to_opaque_expr +); + +unevaluated_instance_exprs( //dir=expr + unique int id: @unevaluated_instance_expr +); + +unreachable_exprs( //dir=expr + unique int id: @unreachable_expr +); + +unresolved_member_chain_result_exprs( //dir=expr + unique int id: @unresolved_member_chain_result_expr +); + +unresolved_type_conversion_exprs( //dir=expr + unique int id: @unresolved_type_conversion_expr +); + +unsafe_cast_exprs( //dir=expr + unique int id: @unsafe_cast_expr +); + +unsafe_exprs( //dir=expr + unique int id: @unsafe_expr +); + +boolean_literal_exprs( //dir=expr + unique int id: @boolean_literal_expr, + boolean value: boolean ref +); + +conditional_checked_cast_exprs( //dir=expr + unique int id: @conditional_checked_cast_expr +); + +dot_syntax_call_exprs( //dir=expr + unique int id: @dot_syntax_call_expr +); + +dynamic_member_ref_exprs( //dir=expr + unique int id: @dynamic_member_ref_expr +); + +dynamic_subscript_exprs( //dir=expr + unique int id: @dynamic_subscript_expr +); + +forced_checked_cast_exprs( //dir=expr + unique int id: @forced_checked_cast_expr +); + +initializer_ref_call_exprs( //dir=expr + unique int id: @initializer_ref_call_expr +); + +is_exprs( //dir=expr + unique int id: @is_expr +); + +magic_identifier_literal_exprs( //dir=expr + unique int id: @magic_identifier_literal_expr, + string kind: string ref +); + +@number_literal_expr = + @float_literal_expr +| @integer_literal_expr +; + +string_literal_exprs( //dir=expr + unique int id: @string_literal_expr, + string value: string ref +); + +float_literal_exprs( //dir=expr + unique int id: @float_literal_expr, + string string_value: string ref +); + +integer_literal_exprs( //dir=expr + unique int id: @integer_literal_expr, + string string_value: string ref +); + +@pattern = + @any_pattern +| @binding_pattern +| @bool_pattern +| @enum_element_pattern +| @expr_pattern +| @is_pattern +| @named_pattern +| @optional_some_pattern +| @paren_pattern +| @tuple_pattern +| @typed_pattern +; + +#keyset[id] +pattern_types( //dir=pattern + int id: @pattern ref, + int type_: @type_or_none ref +); + +any_patterns( //dir=pattern + unique int id: @any_pattern +); + +binding_patterns( //dir=pattern + unique int id: @binding_pattern, + int sub_pattern: @pattern_or_none ref +); + +bool_patterns( //dir=pattern + unique int id: @bool_pattern, + boolean value: boolean ref +); + +enum_element_patterns( //dir=pattern + unique int id: @enum_element_pattern, + int element: @enum_element_decl_or_none ref +); + +#keyset[id] +enum_element_pattern_sub_patterns( //dir=pattern + int id: @enum_element_pattern ref, + int sub_pattern: @pattern_or_none ref +); + +expr_patterns( //dir=pattern + unique int id: @expr_pattern, + int sub_expr: @expr_or_none ref +); + +is_patterns( //dir=pattern + unique int id: @is_pattern +); + +#keyset[id] +is_pattern_cast_type_reprs( //dir=pattern + int id: @is_pattern ref, + int cast_type_repr: @type_repr_or_none ref +); + +#keyset[id] +is_pattern_sub_patterns( //dir=pattern + int id: @is_pattern ref, + int sub_pattern: @pattern_or_none ref +); + +named_patterns( //dir=pattern + unique int id: @named_pattern, + int var_decl: @var_decl_or_none ref +); + +optional_some_patterns( //dir=pattern + unique int id: @optional_some_pattern, + int sub_pattern: @pattern_or_none ref +); + +paren_patterns( //dir=pattern + unique int id: @paren_pattern, + int sub_pattern: @pattern_or_none ref +); + +tuple_patterns( //dir=pattern + unique int id: @tuple_pattern +); + +#keyset[id, index] +tuple_pattern_elements( //dir=pattern + int id: @tuple_pattern ref, + int index: int ref, + int element: @pattern_or_none ref +); + +typed_patterns( //dir=pattern + unique int id: @typed_pattern, + int sub_pattern: @pattern_or_none ref +); + +#keyset[id] +typed_pattern_type_reprs( //dir=pattern + int id: @typed_pattern ref, + int type_repr: @type_repr_or_none ref +); + +case_label_items( //dir=stmt + unique int id: @case_label_item, + int pattern: @pattern_or_none ref +); + +#keyset[id] +case_label_item_guards( //dir=stmt + int id: @case_label_item ref, + int guard: @expr_or_none ref +); + +condition_elements( //dir=stmt + unique int id: @condition_element +); + +#keyset[id] +condition_element_booleans( //dir=stmt + int id: @condition_element ref, + int boolean_: @expr_or_none ref +); + +#keyset[id] +condition_element_patterns( //dir=stmt + int id: @condition_element ref, + int pattern: @pattern_or_none ref +); + +#keyset[id] +condition_element_initializers( //dir=stmt + int id: @condition_element ref, + int initializer: @expr_or_none ref +); + +#keyset[id] +condition_element_availabilities( //dir=stmt + int id: @condition_element ref, + int availability: @availability_info_or_none ref +); + +@stmt = + @brace_stmt +| @break_stmt +| @case_stmt +| @continue_stmt +| @defer_stmt +| @discard_stmt +| @fail_stmt +| @fallthrough_stmt +| @labeled_stmt +| @pound_assert_stmt +| @return_stmt +| @then_stmt +| @throw_stmt +| @yield_stmt +; + +stmt_conditions( //dir=stmt + unique int id: @stmt_condition +); + +#keyset[id, index] +stmt_condition_elements( //dir=stmt + int id: @stmt_condition ref, + int index: int ref, + int element: @condition_element_or_none ref +); + +brace_stmts( //dir=stmt + unique int id: @brace_stmt +); + +#keyset[id, index] +brace_stmt_elements( //dir=stmt + int id: @brace_stmt ref, + int index: int ref, + int element: @ast_node_or_none ref +); + +break_stmts( //dir=stmt + unique int id: @break_stmt +); + +#keyset[id] +break_stmt_target_names( //dir=stmt + int id: @break_stmt ref, + string target_name: string ref +); + +#keyset[id] +break_stmt_targets( //dir=stmt + int id: @break_stmt ref, + int target: @stmt_or_none ref +); + +case_stmts( //dir=stmt + unique int id: @case_stmt, + int body: @stmt_or_none ref +); + +#keyset[id, index] +case_stmt_labels( //dir=stmt + int id: @case_stmt ref, + int index: int ref, + int label: @case_label_item_or_none ref +); + +#keyset[id, index] +case_stmt_variables( //dir=stmt + int id: @case_stmt ref, + int index: int ref, + int variable: @var_decl_or_none ref +); + +continue_stmts( //dir=stmt + unique int id: @continue_stmt +); + +#keyset[id] +continue_stmt_target_names( //dir=stmt + int id: @continue_stmt ref, + string target_name: string ref +); + +#keyset[id] +continue_stmt_targets( //dir=stmt + int id: @continue_stmt ref, + int target: @stmt_or_none ref +); + +defer_stmts( //dir=stmt + unique int id: @defer_stmt, + int body: @brace_stmt_or_none ref +); + +discard_stmts( //dir=stmt + unique int id: @discard_stmt, + int sub_expr: @expr_or_none ref +); + +fail_stmts( //dir=stmt + unique int id: @fail_stmt +); + +fallthrough_stmts( //dir=stmt + unique int id: @fallthrough_stmt, + int fallthrough_source: @case_stmt_or_none ref, + int fallthrough_dest: @case_stmt_or_none ref +); + +@labeled_stmt = + @do_catch_stmt +| @do_stmt +| @for_each_stmt +| @labeled_conditional_stmt +| @repeat_while_stmt +| @switch_stmt +; + +#keyset[id] +labeled_stmt_labels( //dir=stmt + int id: @labeled_stmt ref, + string label: string ref +); + +pound_assert_stmts( //dir=stmt + unique int id: @pound_assert_stmt, + int condition: @expr_or_none ref, + string message: string ref +); + +return_stmts( //dir=stmt + unique int id: @return_stmt +); + +#keyset[id] +return_stmt_results( //dir=stmt + int id: @return_stmt ref, + int result: @expr_or_none ref +); + +then_stmts( //dir=stmt + unique int id: @then_stmt, + int result: @expr_or_none ref +); + +throw_stmts( //dir=stmt + unique int id: @throw_stmt, + int sub_expr: @expr_or_none ref +); + +yield_stmts( //dir=stmt + unique int id: @yield_stmt +); + +#keyset[id, index] +yield_stmt_results( //dir=stmt + int id: @yield_stmt ref, + int index: int ref, + int result: @expr_or_none ref +); + +do_catch_stmts( //dir=stmt + unique int id: @do_catch_stmt, + int body: @stmt_or_none ref +); + +#keyset[id, index] +do_catch_stmt_catches( //dir=stmt + int id: @do_catch_stmt ref, + int index: int ref, + int catch: @case_stmt_or_none ref +); + +do_stmts( //dir=stmt + unique int id: @do_stmt, + int body: @brace_stmt_or_none ref +); + +for_each_stmts( //dir=stmt + unique int id: @for_each_stmt, + int pattern: @pattern_or_none ref, + int body: @brace_stmt_or_none ref +); + +#keyset[id, index] +for_each_stmt_variables( //dir=stmt + int id: @for_each_stmt ref, + int index: int ref, + int variable: @var_decl_or_none ref +); + +#keyset[id] +for_each_stmt_wheres( //dir=stmt + int id: @for_each_stmt ref, + int where: @expr_or_none ref +); + +#keyset[id] +for_each_stmt_iterator_vars( //dir=stmt + int id: @for_each_stmt ref, + int iteratorVar: @pattern_binding_decl_or_none ref +); + +#keyset[id] +for_each_stmt_next_calls( //dir=stmt + int id: @for_each_stmt ref, + int nextCall: @expr_or_none ref +); + +@labeled_conditional_stmt = + @guard_stmt +| @if_stmt +| @while_stmt +; + +#keyset[id] +labeled_conditional_stmts( //dir=stmt + int id: @labeled_conditional_stmt ref, + int condition: @stmt_condition_or_none ref +); + +repeat_while_stmts( //dir=stmt + unique int id: @repeat_while_stmt, + int condition: @expr_or_none ref, + int body: @stmt_or_none ref +); + +switch_stmts( //dir=stmt + unique int id: @switch_stmt, + int expr: @expr_or_none ref +); + +#keyset[id, index] +switch_stmt_cases( //dir=stmt + int id: @switch_stmt ref, + int index: int ref, + int case_: @case_stmt_or_none ref +); + +guard_stmts( //dir=stmt + unique int id: @guard_stmt, + int body: @brace_stmt_or_none ref +); + +if_stmts( //dir=stmt + unique int id: @if_stmt, + int then: @stmt_or_none ref +); + +#keyset[id] +if_stmt_elses( //dir=stmt + int id: @if_stmt ref, + int else: @stmt_or_none ref +); + +while_stmts( //dir=stmt + unique int id: @while_stmt, + int body: @stmt_or_none ref +); + +@type = + @any_function_type +| @any_generic_type +| @any_metatype_type +| @builtin_type +| @dependent_member_type +| @dynamic_self_type +| @error_type +| @existential_type +| @in_out_type +| @integer_type +| @l_value_type +| @module_type +| @pack_element_type +| @pack_expansion_type +| @pack_type +| @parameterized_protocol_type +| @protocol_composition_type +| @reference_storage_type +| @substitutable_type +| @sugar_type +| @tuple_type +| @unresolved_type +; + +#keyset[id] +types( //dir=type + int id: @type ref, + string name: string ref, + int canonical_type: @type_or_none ref +); + +type_reprs( //dir=type + unique int id: @type_repr, + int type_: @type_or_none ref +); + +@any_function_type = + @function_type +| @generic_function_type +; + +#keyset[id] +any_function_types( //dir=type + int id: @any_function_type ref, + int result: @type_or_none ref +); + +#keyset[id, index] +any_function_type_param_types( //dir=type + int id: @any_function_type ref, + int index: int ref, + int param_type: @type_or_none ref +); + +#keyset[id] +any_function_type_is_throwing( //dir=type + int id: @any_function_type ref +); + +#keyset[id] +any_function_type_is_async( //dir=type + int id: @any_function_type ref +); + +@any_generic_type = + @nominal_or_bound_generic_nominal_type +| @unbound_generic_type +; + +#keyset[id] +any_generic_types( //dir=type + int id: @any_generic_type ref, + int declaration: @generic_type_decl_or_none ref +); + +#keyset[id] +any_generic_type_parents( //dir=type + int id: @any_generic_type ref, + int parent: @type_or_none ref +); + +@any_metatype_type = + @existential_metatype_type +| @metatype_type +; + +@builtin_type = + @any_builtin_integer_type +| @builtin_bridge_object_type +| @builtin_default_actor_storage_type +| @builtin_executor_type +| @builtin_float_type +| @builtin_generic_type +| @builtin_job_type +| @builtin_native_object_type +| @builtin_raw_pointer_type +| @builtin_raw_unsafe_continuation_type +| @builtin_unsafe_value_buffer_type +| @builtin_vector_type +; + +dependent_member_types( //dir=type + unique int id: @dependent_member_type, + int base_type: @type_or_none ref, + int associated_type_decl: @associated_type_decl_or_none ref +); + +dynamic_self_types( //dir=type + unique int id: @dynamic_self_type, + int static_self_type: @type_or_none ref +); + +error_types( //dir=type + unique int id: @error_type +); + +existential_types( //dir=type + unique int id: @existential_type, + int constraint: @type_or_none ref +); + +in_out_types( //dir=type + unique int id: @in_out_type, + int object_type: @type_or_none ref +); + +integer_types( //dir=type + unique int id: @integer_type, + string value: string ref +); + +l_value_types( //dir=type + unique int id: @l_value_type, + int object_type: @type_or_none ref +); + +module_types( //dir=type + unique int id: @module_type, + int module: @module_decl_or_none ref +); + +pack_element_types( //dir=type + unique int id: @pack_element_type, + int pack_type: @type_or_none ref +); + +pack_expansion_types( //dir=type + unique int id: @pack_expansion_type, + int pattern_type: @type_or_none ref, + int count_type: @type_or_none ref +); + +pack_types( //dir=type + unique int id: @pack_type +); + +#keyset[id, index] +pack_type_elements( //dir=type + int id: @pack_type ref, + int index: int ref, + int element: @type_or_none ref +); + +parameterized_protocol_types( //dir=type + unique int id: @parameterized_protocol_type, + int base: @protocol_type_or_none ref +); + +#keyset[id, index] +parameterized_protocol_type_args( //dir=type + int id: @parameterized_protocol_type ref, + int index: int ref, + int arg: @type_or_none ref +); + +protocol_composition_types( //dir=type + unique int id: @protocol_composition_type +); + +#keyset[id, index] +protocol_composition_type_members( //dir=type + int id: @protocol_composition_type ref, + int index: int ref, + int member: @type_or_none ref +); + +@reference_storage_type = + @unmanaged_storage_type +| @unowned_storage_type +| @weak_storage_type +; + +#keyset[id] +reference_storage_types( //dir=type + int id: @reference_storage_type ref, + int referent_type: @type_or_none ref +); + +@substitutable_type = + @archetype_type +| @generic_type_param_type +; + +@sugar_type = + @paren_type +| @syntax_sugar_type +| @type_alias_type +; + +tuple_types( //dir=type + unique int id: @tuple_type +); + +#keyset[id, index] +tuple_type_types( //dir=type + int id: @tuple_type ref, + int index: int ref, + int type_: @type_or_none ref +); + +#keyset[id, index] +tuple_type_names( //dir=type + int id: @tuple_type ref, + int index: int ref, + string name: string ref +); + +unresolved_types( //dir=type + unique int id: @unresolved_type +); + +@any_builtin_integer_type = + @builtin_integer_literal_type +| @builtin_integer_type +; + +@archetype_type = + @local_archetype_type +| @opaque_type_archetype_type +| @pack_archetype_type +| @primary_archetype_type +; + +#keyset[id] +archetype_types( //dir=type + int id: @archetype_type ref, + int interface_type: @type_or_none ref +); + +#keyset[id] +archetype_type_superclasses( //dir=type + int id: @archetype_type ref, + int superclass: @type_or_none ref +); + +#keyset[id, index] +archetype_type_protocols( //dir=type + int id: @archetype_type ref, + int index: int ref, + int protocol: @protocol_decl_or_none ref +); + +builtin_bridge_object_types( //dir=type + unique int id: @builtin_bridge_object_type +); + +builtin_default_actor_storage_types( //dir=type + unique int id: @builtin_default_actor_storage_type +); + +builtin_executor_types( //dir=type + unique int id: @builtin_executor_type +); + +builtin_float_types( //dir=type + unique int id: @builtin_float_type +); + +@builtin_generic_type = + @builtin_fixed_array_type +; + +builtin_job_types( //dir=type + unique int id: @builtin_job_type +); + +builtin_native_object_types( //dir=type + unique int id: @builtin_native_object_type +); + +builtin_raw_pointer_types( //dir=type + unique int id: @builtin_raw_pointer_type +); + +builtin_raw_unsafe_continuation_types( //dir=type + unique int id: @builtin_raw_unsafe_continuation_type +); + +builtin_unsafe_value_buffer_types( //dir=type + unique int id: @builtin_unsafe_value_buffer_type +); + +builtin_vector_types( //dir=type + unique int id: @builtin_vector_type +); + +existential_metatype_types( //dir=type + unique int id: @existential_metatype_type +); + +function_types( //dir=type + unique int id: @function_type +); + +generic_function_types( //dir=type + unique int id: @generic_function_type +); + +#keyset[id, index] +generic_function_type_generic_params( //dir=type + int id: @generic_function_type ref, + int index: int ref, + int generic_param: @generic_type_param_type_or_none ref +); + +generic_type_param_types( //dir=type + unique int id: @generic_type_param_type +); + +metatype_types( //dir=type + unique int id: @metatype_type +); + +@nominal_or_bound_generic_nominal_type = + @bound_generic_type +| @nominal_type +; + +paren_types( //dir=type + unique int id: @paren_type, + int type_: @type_or_none ref +); + +@syntax_sugar_type = + @dictionary_type +| @inline_array_type +| @unary_syntax_sugar_type +; + +type_alias_types( //dir=type + unique int id: @type_alias_type, + int decl: @type_alias_decl_or_none ref +); + +unbound_generic_types( //dir=type + unique int id: @unbound_generic_type +); + +unmanaged_storage_types( //dir=type + unique int id: @unmanaged_storage_type +); + +unowned_storage_types( //dir=type + unique int id: @unowned_storage_type +); + +weak_storage_types( //dir=type + unique int id: @weak_storage_type +); + +@bound_generic_type = + @bound_generic_class_type +| @bound_generic_enum_type +| @bound_generic_struct_type +; + +#keyset[id, index] +bound_generic_type_arg_types( //dir=type + int id: @bound_generic_type ref, + int index: int ref, + int arg_type: @type_or_none ref +); + +builtin_fixed_array_types( //dir=type + unique int id: @builtin_fixed_array_type, + int size: @type_or_none ref, + int element_type: @type_or_none ref +); + +builtin_integer_literal_types( //dir=type + unique int id: @builtin_integer_literal_type +); + +builtin_integer_types( //dir=type + unique int id: @builtin_integer_type +); + +#keyset[id] +builtin_integer_type_widths( //dir=type + int id: @builtin_integer_type ref, + int width: int ref +); + +dictionary_types( //dir=type + unique int id: @dictionary_type, + int key_type: @type_or_none ref, + int value_type: @type_or_none ref +); + +inline_array_types( //dir=type + unique int id: @inline_array_type, + int count_type: @type_or_none ref, + int element_type: @type_or_none ref +); + +@local_archetype_type = + @element_archetype_type +| @existential_archetype_type +; + +@nominal_type = + @class_type +| @enum_type +| @protocol_type +| @struct_type +; + +opaque_type_archetype_types( //dir=type + unique int id: @opaque_type_archetype_type, + int declaration: @opaque_type_decl_or_none ref +); + +pack_archetype_types( //dir=type + unique int id: @pack_archetype_type +); + +primary_archetype_types( //dir=type + unique int id: @primary_archetype_type +); + +@unary_syntax_sugar_type = + @array_slice_type +| @optional_type +| @variadic_sequence_type +; + +#keyset[id] +unary_syntax_sugar_types( //dir=type + int id: @unary_syntax_sugar_type ref, + int base_type: @type_or_none ref +); + +array_slice_types( //dir=type + unique int id: @array_slice_type +); + +bound_generic_class_types( //dir=type + unique int id: @bound_generic_class_type +); + +bound_generic_enum_types( //dir=type + unique int id: @bound_generic_enum_type +); + +bound_generic_struct_types( //dir=type + unique int id: @bound_generic_struct_type +); + +class_types( //dir=type + unique int id: @class_type +); + +element_archetype_types( //dir=type + unique int id: @element_archetype_type +); + +enum_types( //dir=type + unique int id: @enum_type +); + +existential_archetype_types( //dir=type + unique int id: @existential_archetype_type +); + +optional_types( //dir=type + unique int id: @optional_type +); + +protocol_types( //dir=type + unique int id: @protocol_type +); + +struct_types( //dir=type + unique int id: @struct_type +); + +variadic_sequence_types( //dir=type + unique int id: @variadic_sequence_type +); + +@accessor_or_none = + @accessor +| @unspecified_element +; + +@argument_or_none = + @argument +| @unspecified_element +; + +@associated_type_decl_or_none = + @associated_type_decl +| @unspecified_element +; + +@ast_node_or_none = + @ast_node +| @unspecified_element +; + +@availability_info_or_none = + @availability_info +| @unspecified_element +; + +@availability_spec_or_none = + @availability_spec +| @unspecified_element +; + +@brace_stmt_or_none = + @brace_stmt +| @unspecified_element +; + +@captured_decl_or_none = + @captured_decl +| @unspecified_element +; + +@case_label_item_or_none = + @case_label_item +| @unspecified_element +; + +@case_stmt_or_none = + @case_stmt +| @unspecified_element +; + +@closure_expr_or_none = + @closure_expr +| @unspecified_element +; + +@condition_element_or_none = + @condition_element +| @unspecified_element +; + +@decl_or_none = + @decl +| @unspecified_element +; + +@enum_element_decl_or_none = + @enum_element_decl +| @unspecified_element +; + +@expr_or_none = + @expr +| @unspecified_element +; + +@file_or_none = + @file +| @unspecified_element +; + +@function_or_none = + @function +| @unspecified_element +; + +@generic_type_decl_or_none = + @generic_type_decl +| @unspecified_element +; + +@generic_type_param_decl_or_none = + @generic_type_param_decl +| @unspecified_element +; + +@generic_type_param_type_or_none = + @generic_type_param_type +| @unspecified_element +; + +@initializer_or_none = + @initializer +| @unspecified_element +; + +@key_path_component_or_none = + @key_path_component +| @unspecified_element +; + +@location_or_none = + @location +| @unspecified_element +; + +@macro_role_or_none = + @macro_role +| @unspecified_element +; + +@module_decl_or_none = + @module_decl +| @unspecified_element +; + +@nominal_type_decl_or_none = + @nominal_type_decl +| @unspecified_element +; + +@opaque_type_decl_or_none = + @opaque_type_decl +| @unspecified_element +; + +@opaque_value_expr_or_none = + @opaque_value_expr +| @unspecified_element +; + +@param_decl_or_none = + @param_decl +| @unspecified_element +; + +@pattern_or_none = + @pattern +| @unspecified_element +; + +@pattern_binding_decl_or_none = + @pattern_binding_decl +| @unspecified_element +; + +@precedence_group_decl_or_none = + @precedence_group_decl +| @unspecified_element +; + +@protocol_decl_or_none = + @protocol_decl +| @unspecified_element +; + +@protocol_type_or_none = + @protocol_type +| @unspecified_element +; + +@stmt_or_none = + @stmt +| @unspecified_element +; + +@stmt_condition_or_none = + @stmt_condition +| @unspecified_element +; + +@string_literal_expr_or_none = + @string_literal_expr +| @unspecified_element +; + +@tap_expr_or_none = + @tap_expr +| @unspecified_element +; + +@type_or_none = + @type +| @unspecified_element +; + +@type_alias_decl_or_none = + @type_alias_decl +| @unspecified_element +; + +@type_repr_or_none = + @type_repr +| @unspecified_element +; + +@value_decl_or_none = + @unspecified_element +| @value_decl +; + +@var_decl_or_none = + @unspecified_element +| @var_decl +; diff --git a/swift/ql/lib/upgrades/5738be6bb04742c424efdbf9f4de11f0b10fa37d/swift.dbscheme b/swift/ql/lib/upgrades/5738be6bb04742c424efdbf9f4de11f0b10fa37d/swift.dbscheme new file mode 100644 index 000000000000..1bb163e31d20 --- /dev/null +++ b/swift/ql/lib/upgrades/5738be6bb04742c424efdbf9f4de11f0b10fa37d/swift.dbscheme @@ -0,0 +1,2892 @@ +// generated by codegen/codegen.py, do not edit + +// from prefix.dbscheme +/** + * The source location of the snapshot. + */ +sourceLocationPrefix( + string prefix: string ref +); + + +// from schema.py + +@element = + @file +| @generic_context +| @locatable +| @location +| @type +; + +#keyset[id] +element_is_unknown( + int id: @element ref +); + +@file = + @db_file +; + +#keyset[id] +files( + int id: @file ref, + string name: string ref +); + +#keyset[id] +file_is_successfully_extracted( + int id: @file ref +); + +@locatable = + @argument +| @ast_node +| @comment +| @diagnostics +| @error_element +; + +#keyset[id] +locatable_locations( + int id: @locatable ref, + int location: @location_or_none ref +); + +@location = + @db_location +; + +#keyset[id] +locations( + int id: @location ref, + int file: @file_or_none ref, + int start_line: int ref, + int start_column: int ref, + int end_line: int ref, + int end_column: int ref +); + +@ast_node = + @availability_info +| @availability_spec +| @callable +| @case_label_item +| @condition_element +| @decl +| @expr +| @key_path_component +| @macro_role +| @pattern +| @stmt +| @stmt_condition +| @type_repr +; + +comments( + unique int id: @comment, + string text: string ref +); + +db_files( + unique int id: @db_file +); + +db_locations( + unique int id: @db_location +); + +diagnostics( + unique int id: @diagnostics, + string text: string ref, + int kind: int ref +); + +@error_element = + @error_expr +| @error_type +| @overloaded_decl_ref_expr +| @unresolved_decl_ref_expr +| @unresolved_dot_expr +| @unresolved_member_chain_result_expr +| @unresolved_member_expr +| @unresolved_pattern_expr +| @unresolved_specialize_expr +| @unresolved_type +| @unresolved_type_conversion_expr +| @unspecified_element +; + +availability_infos( + unique int id: @availability_info +); + +#keyset[id] +availability_info_is_unavailable( + int id: @availability_info ref +); + +#keyset[id, index] +availability_info_specs( + int id: @availability_info ref, + int index: int ref, + int spec: @availability_spec_or_none ref +); + +availability_specs( + unique int id: @availability_spec +); + +#keyset[id] +availability_spec_platforms( + int id: @availability_spec ref, + string platform: string ref +); + +#keyset[id] +availability_spec_versions( + int id: @availability_spec ref, + string version: string ref +); + +#keyset[id] +availability_spec_is_wildcard( + int id: @availability_spec ref +); + +@callable = + @closure_expr +| @function +; + +#keyset[id] +callable_names( + int id: @callable ref, + string name: string ref +); + +#keyset[id] +callable_self_params( + int id: @callable ref, + int self_param: @param_decl_or_none ref +); + +#keyset[id, index] +callable_params( + int id: @callable ref, + int index: int ref, + int param: @param_decl_or_none ref +); + +#keyset[id] +callable_bodies( + int id: @callable ref, + int body: @brace_stmt_or_none ref +); + +#keyset[id, index] +callable_captures( + int id: @callable ref, + int index: int ref, + int capture: @captured_decl_or_none ref +); + +key_path_components( + unique int id: @key_path_component, + int kind: int ref, + int component_type: @type_or_none ref +); + +#keyset[id, index] +key_path_component_subscript_arguments( + int id: @key_path_component ref, + int index: int ref, + int subscript_argument: @argument_or_none ref +); + +#keyset[id] +key_path_component_tuple_indices( + int id: @key_path_component ref, + int tuple_index: int ref +); + +#keyset[id] +key_path_component_decl_refs( + int id: @key_path_component ref, + int decl_ref: @value_decl_or_none ref +); + +macro_roles( + unique int id: @macro_role, + int kind: int ref, + int macro_syntax: int ref +); + +#keyset[id, index] +macro_role_conformances( + int id: @macro_role ref, + int index: int ref, + int conformance: @expr_or_none ref +); + +#keyset[id, index] +macro_role_names( + int id: @macro_role ref, + int index: int ref, + string name: string ref +); + +unspecified_elements( + unique int id: @unspecified_element, + string property: string ref, + string error: string ref +); + +#keyset[id] +unspecified_element_parents( + int id: @unspecified_element ref, + int parent: @element ref +); + +#keyset[id] +unspecified_element_indices( + int id: @unspecified_element ref, + int index: int ref +); + +#keyset[id, index] +unspecified_element_children( + int id: @unspecified_element ref, + int index: int ref, + int child: @ast_node_or_none ref +); + +@decl = + @captured_decl +| @enum_case_decl +| @extension_decl +| @if_config_decl +| @import_decl +| @missing_member_decl +| @operator_decl +| @pattern_binding_decl +| @pound_diagnostic_decl +| @precedence_group_decl +| @top_level_code_decl +| @using_decl +| @value_decl +; + +#keyset[id] +decls( //dir=decl + int id: @decl ref, + int module: @module_decl_or_none ref +); + +#keyset[id, index] +decl_members( //dir=decl + int id: @decl ref, + int index: int ref, + int member: @decl_or_none ref +); + +@generic_context = + @extension_decl +| @function +| @generic_type_decl +| @macro_decl +| @subscript_decl +; + +#keyset[id, index] +generic_context_generic_type_params( //dir=decl + int id: @generic_context ref, + int index: int ref, + int generic_type_param: @generic_type_param_decl_or_none ref +); + +captured_decls( //dir=decl + unique int id: @captured_decl, + int decl: @value_decl_or_none ref +); + +#keyset[id] +captured_decl_is_direct( //dir=decl + int id: @captured_decl ref +); + +#keyset[id] +captured_decl_is_escaping( //dir=decl + int id: @captured_decl ref +); + +enum_case_decls( //dir=decl + unique int id: @enum_case_decl +); + +#keyset[id, index] +enum_case_decl_elements( //dir=decl + int id: @enum_case_decl ref, + int index: int ref, + int element: @enum_element_decl_or_none ref +); + +extension_decls( //dir=decl + unique int id: @extension_decl, + int extended_type_decl: @nominal_type_decl_or_none ref +); + +#keyset[id, index] +extension_decl_protocols( //dir=decl + int id: @extension_decl ref, + int index: int ref, + int protocol: @protocol_decl_or_none ref +); + +if_config_decls( //dir=decl + unique int id: @if_config_decl +); + +#keyset[id, index] +if_config_decl_active_elements( //dir=decl + int id: @if_config_decl ref, + int index: int ref, + int active_element: @ast_node_or_none ref +); + +import_decls( //dir=decl + unique int id: @import_decl +); + +#keyset[id] +import_decl_is_exported( //dir=decl + int id: @import_decl ref +); + +#keyset[id] +import_decl_imported_modules( //dir=decl + int id: @import_decl ref, + int imported_module: @module_decl_or_none ref +); + +#keyset[id, index] +import_decl_declarations( //dir=decl + int id: @import_decl ref, + int index: int ref, + int declaration: @value_decl_or_none ref +); + +missing_member_decls( //dir=decl + unique int id: @missing_member_decl, + string name: string ref +); + +@operator_decl = + @infix_operator_decl +| @postfix_operator_decl +| @prefix_operator_decl +; + +#keyset[id] +operator_decls( //dir=decl + int id: @operator_decl ref, + string name: string ref +); + +pattern_binding_decls( //dir=decl + unique int id: @pattern_binding_decl +); + +#keyset[id, index] +pattern_binding_decl_inits( //dir=decl + int id: @pattern_binding_decl ref, + int index: int ref, + int init: @expr_or_none ref +); + +#keyset[id, index] +pattern_binding_decl_patterns( //dir=decl + int id: @pattern_binding_decl ref, + int index: int ref, + int pattern: @pattern_or_none ref +); + +pound_diagnostic_decls( //dir=decl + unique int id: @pound_diagnostic_decl, + int kind: int ref, + int message: @string_literal_expr_or_none ref +); + +precedence_group_decls( //dir=decl + unique int id: @precedence_group_decl +); + +top_level_code_decls( //dir=decl + unique int id: @top_level_code_decl, + int body: @brace_stmt_or_none ref +); + +using_decls( //dir=decl + unique int id: @using_decl +); + +#keyset[id] +using_decl_is_main_actor( //dir=decl + int id: @using_decl ref +); + +#keyset[id] +using_decl_is_nonisolated( //dir=decl + int id: @using_decl ref +); + +@value_decl = + @abstract_storage_decl +| @enum_element_decl +| @function +| @macro_decl +| @type_decl +; + +#keyset[id] +value_decls( //dir=decl + int id: @value_decl ref, + int interface_type: @type_or_none ref +); + +@abstract_storage_decl = + @subscript_decl +| @var_decl +; + +#keyset[id, index] +abstract_storage_decl_accessors( //dir=decl + int id: @abstract_storage_decl ref, + int index: int ref, + int accessor: @accessor_or_none ref +); + +enum_element_decls( //dir=decl + unique int id: @enum_element_decl, + string name: string ref +); + +#keyset[id, index] +enum_element_decl_params( //dir=decl + int id: @enum_element_decl ref, + int index: int ref, + int param: @param_decl_or_none ref +); + +@function = + @accessor_or_named_function +| @deinitializer +| @initializer +; + +infix_operator_decls( //dir=decl + unique int id: @infix_operator_decl +); + +#keyset[id] +infix_operator_decl_precedence_groups( //dir=decl + int id: @infix_operator_decl ref, + int precedence_group: @precedence_group_decl_or_none ref +); + +macro_decls( //dir=decl + unique int id: @macro_decl, + string name: string ref +); + +#keyset[id, index] +macro_decl_parameters( //dir=decl + int id: @macro_decl ref, + int index: int ref, + int parameter: @param_decl_or_none ref +); + +#keyset[id, index] +macro_decl_roles( //dir=decl + int id: @macro_decl ref, + int index: int ref, + int role: @macro_role_or_none ref +); + +postfix_operator_decls( //dir=decl + unique int id: @postfix_operator_decl +); + +prefix_operator_decls( //dir=decl + unique int id: @prefix_operator_decl +); + +@type_decl = + @abstract_type_param_decl +| @generic_type_decl +| @module_decl +; + +#keyset[id] +type_decls( //dir=decl + int id: @type_decl ref, + string name: string ref, + int declared_interface_type: @type_or_none ref +); + +#keyset[id, index] +type_decl_inherited_types( //dir=decl + int id: @type_decl ref, + int index: int ref, + int inherited_type: @type_or_none ref +); + +@abstract_type_param_decl = + @associated_type_decl +| @generic_type_param_decl +; + +@accessor_or_named_function = + @accessor +| @named_function +; + +deinitializers( //dir=decl + unique int id: @deinitializer +); + +@generic_type_decl = + @nominal_type_decl +| @opaque_type_decl +| @type_alias_decl +; + +initializers( //dir=decl + unique int id: @initializer +); + +module_decls( //dir=decl + unique int id: @module_decl +); + +#keyset[id] +module_decl_is_builtin_module( //dir=decl + int id: @module_decl ref +); + +#keyset[id] +module_decl_is_system_module( //dir=decl + int id: @module_decl ref +); + +module_decl_imported_modules( //dir=decl + int id: @module_decl ref, + int imported_module: @module_decl_or_none ref +); + +module_decl_exported_modules( //dir=decl + int id: @module_decl ref, + int exported_module: @module_decl_or_none ref +); + +subscript_decls( //dir=decl + unique int id: @subscript_decl, + int element_type: @type_or_none ref +); + +#keyset[id, index] +subscript_decl_params( //dir=decl + int id: @subscript_decl ref, + int index: int ref, + int param: @param_decl_or_none ref +); + +@var_decl = + @concrete_var_decl +| @param_decl +; + +#keyset[id] +var_decls( //dir=decl + int id: @var_decl ref, + string name: string ref, + int type_: @type_or_none ref +); + +#keyset[id] +var_decl_attached_property_wrapper_types( //dir=decl + int id: @var_decl ref, + int attached_property_wrapper_type: @type_or_none ref +); + +#keyset[id] +var_decl_parent_patterns( //dir=decl + int id: @var_decl ref, + int parent_pattern: @pattern_or_none ref +); + +#keyset[id] +var_decl_parent_initializers( //dir=decl + int id: @var_decl ref, + int parent_initializer: @expr_or_none ref +); + +#keyset[id] +var_decl_property_wrapper_backing_var_bindings( //dir=decl + int id: @var_decl ref, + int property_wrapper_backing_var_binding: @pattern_binding_decl_or_none ref +); + +#keyset[id] +var_decl_property_wrapper_backing_vars( //dir=decl + int id: @var_decl ref, + int property_wrapper_backing_var: @var_decl_or_none ref +); + +#keyset[id] +var_decl_property_wrapper_projection_var_bindings( //dir=decl + int id: @var_decl ref, + int property_wrapper_projection_var_binding: @pattern_binding_decl_or_none ref +); + +#keyset[id] +var_decl_property_wrapper_projection_vars( //dir=decl + int id: @var_decl ref, + int property_wrapper_projection_var: @var_decl_or_none ref +); + +accessors( //dir=decl + unique int id: @accessor +); + +#keyset[id] +accessor_is_getter( //dir=decl + int id: @accessor ref +); + +#keyset[id] +accessor_is_setter( //dir=decl + int id: @accessor ref +); + +#keyset[id] +accessor_is_will_set( //dir=decl + int id: @accessor ref +); + +#keyset[id] +accessor_is_did_set( //dir=decl + int id: @accessor ref +); + +#keyset[id] +accessor_is_read( //dir=decl + int id: @accessor ref +); + +#keyset[id] +accessor_is_modify( //dir=decl + int id: @accessor ref +); + +#keyset[id] +accessor_is_unsafe_address( //dir=decl + int id: @accessor ref +); + +#keyset[id] +accessor_is_unsafe_mutable_address( //dir=decl + int id: @accessor ref +); + +#keyset[id] +accessor_is_distributed_get( //dir=decl + int id: @accessor ref +); + +#keyset[id] +accessor_is_read2( //dir=decl + int id: @accessor ref +); + +#keyset[id] +accessor_is_modify2( //dir=decl + int id: @accessor ref +); + +#keyset[id] +accessor_is_init( //dir=decl + int id: @accessor ref +); + +associated_type_decls( //dir=decl + unique int id: @associated_type_decl +); + +concrete_var_decls( //dir=decl + unique int id: @concrete_var_decl, + int introducer_int: int ref +); + +generic_type_param_decls( //dir=decl + unique int id: @generic_type_param_decl +); + +named_functions( //dir=decl + unique int id: @named_function +); + +@nominal_type_decl = + @class_decl +| @enum_decl +| @protocol_decl +| @struct_decl +; + +#keyset[id] +nominal_type_decls( //dir=decl + int id: @nominal_type_decl ref, + int type_: @type_or_none ref +); + +opaque_type_decls( //dir=decl + unique int id: @opaque_type_decl, + int naming_declaration: @value_decl_or_none ref +); + +#keyset[id, index] +opaque_type_decl_opaque_generic_params( //dir=decl + int id: @opaque_type_decl ref, + int index: int ref, + int opaque_generic_param: @generic_type_param_type_or_none ref +); + +param_decls( //dir=decl + unique int id: @param_decl +); + +#keyset[id] +param_decl_is_inout( //dir=decl + int id: @param_decl ref +); + +#keyset[id] +param_decl_property_wrapper_local_wrapped_var_bindings( //dir=decl + int id: @param_decl ref, + int property_wrapper_local_wrapped_var_binding: @pattern_binding_decl_or_none ref +); + +#keyset[id] +param_decl_property_wrapper_local_wrapped_vars( //dir=decl + int id: @param_decl ref, + int property_wrapper_local_wrapped_var: @var_decl_or_none ref +); + +type_alias_decls( //dir=decl + unique int id: @type_alias_decl, + int aliased_type: @type_or_none ref +); + +class_decls( //dir=decl + unique int id: @class_decl +); + +enum_decls( //dir=decl + unique int id: @enum_decl +); + +protocol_decls( //dir=decl + unique int id: @protocol_decl +); + +struct_decls( //dir=decl + unique int id: @struct_decl +); + +arguments( //dir=expr + unique int id: @argument, + string label: string ref, + int expr: @expr_or_none ref +); + +@expr = + @any_try_expr +| @applied_property_wrapper_expr +| @apply_expr +| @assign_expr +| @bind_optional_expr +| @capture_list_expr +| @closure_expr +| @collection_expr +| @consume_expr +| @copy_expr +| @current_context_isolation_expr +| @decl_ref_expr +| @default_argument_expr +| @discard_assignment_expr +| @dot_syntax_base_ignored_expr +| @dynamic_type_expr +| @enum_is_case_expr +| @error_expr +| @explicit_cast_expr +| @extract_function_isolation_expr +| @force_value_expr +| @identity_expr +| @if_expr +| @implicit_conversion_expr +| @in_out_expr +| @key_path_application_expr +| @key_path_dot_expr +| @key_path_expr +| @lazy_initialization_expr +| @literal_expr +| @lookup_expr +| @make_temporarily_escapable_expr +| @materialize_pack_expr +| @obj_c_selector_expr +| @one_way_expr +| @opaque_value_expr +| @open_existential_expr +| @optional_evaluation_expr +| @other_initializer_ref_expr +| @overloaded_decl_ref_expr +| @pack_element_expr +| @pack_expansion_expr +| @property_wrapper_value_placeholder_expr +| @rebind_self_in_initializer_expr +| @sequence_expr +| @single_value_stmt_expr +| @super_ref_expr +| @tap_expr +| @tuple_element_expr +| @tuple_expr +| @type_expr +| @type_value_expr +| @unresolved_decl_ref_expr +| @unresolved_dot_expr +| @unresolved_member_expr +| @unresolved_pattern_expr +| @unresolved_specialize_expr +| @vararg_expansion_expr +; + +#keyset[id] +expr_types( //dir=expr + int id: @expr ref, + int type_: @type_or_none ref +); + +@any_try_expr = + @force_try_expr +| @optional_try_expr +| @try_expr +; + +#keyset[id] +any_try_exprs( //dir=expr + int id: @any_try_expr ref, + int sub_expr: @expr_or_none ref +); + +applied_property_wrapper_exprs( //dir=expr + unique int id: @applied_property_wrapper_expr, + int kind: int ref, + int value: @expr_or_none ref, + int param: @param_decl_or_none ref +); + +@apply_expr = + @binary_expr +| @call_expr +| @postfix_unary_expr +| @prefix_unary_expr +| @self_apply_expr +; + +#keyset[id] +apply_exprs( //dir=expr + int id: @apply_expr ref, + int function: @expr_or_none ref +); + +#keyset[id, index] +apply_expr_arguments( //dir=expr + int id: @apply_expr ref, + int index: int ref, + int argument: @argument_or_none ref +); + +assign_exprs( //dir=expr + unique int id: @assign_expr, + int dest: @expr_or_none ref, + int source: @expr_or_none ref +); + +bind_optional_exprs( //dir=expr + unique int id: @bind_optional_expr, + int sub_expr: @expr_or_none ref +); + +capture_list_exprs( //dir=expr + unique int id: @capture_list_expr, + int closure_body: @closure_expr_or_none ref +); + +#keyset[id, index] +capture_list_expr_binding_decls( //dir=expr + int id: @capture_list_expr ref, + int index: int ref, + int binding_decl: @pattern_binding_decl_or_none ref +); + +@closure_expr = + @auto_closure_expr +| @explicit_closure_expr +; + +@collection_expr = + @array_expr +| @dictionary_expr +; + +consume_exprs( //dir=expr + unique int id: @consume_expr, + int sub_expr: @expr_or_none ref +); + +copy_exprs( //dir=expr + unique int id: @copy_expr, + int sub_expr: @expr_or_none ref +); + +current_context_isolation_exprs( //dir=expr + unique int id: @current_context_isolation_expr, + int actor: @expr_or_none ref +); + +decl_ref_exprs( //dir=expr + unique int id: @decl_ref_expr, + int decl: @decl_or_none ref +); + +#keyset[id, index] +decl_ref_expr_replacement_types( //dir=expr + int id: @decl_ref_expr ref, + int index: int ref, + int replacement_type: @type_or_none ref +); + +#keyset[id] +decl_ref_expr_has_direct_to_storage_semantics( //dir=expr + int id: @decl_ref_expr ref +); + +#keyset[id] +decl_ref_expr_has_direct_to_implementation_semantics( //dir=expr + int id: @decl_ref_expr ref +); + +#keyset[id] +decl_ref_expr_has_ordinary_semantics( //dir=expr + int id: @decl_ref_expr ref +); + +#keyset[id] +decl_ref_expr_has_distributed_thunk_semantics( //dir=expr + int id: @decl_ref_expr ref +); + +default_argument_exprs( //dir=expr + unique int id: @default_argument_expr, + int param_decl: @param_decl_or_none ref, + int param_index: int ref +); + +#keyset[id] +default_argument_expr_caller_side_defaults( //dir=expr + int id: @default_argument_expr ref, + int caller_side_default: @expr_or_none ref +); + +discard_assignment_exprs( //dir=expr + unique int id: @discard_assignment_expr +); + +dot_syntax_base_ignored_exprs( //dir=expr + unique int id: @dot_syntax_base_ignored_expr, + int qualifier: @expr_or_none ref, + int sub_expr: @expr_or_none ref +); + +dynamic_type_exprs( //dir=expr + unique int id: @dynamic_type_expr, + int base: @expr_or_none ref +); + +enum_is_case_exprs( //dir=expr + unique int id: @enum_is_case_expr, + int sub_expr: @expr_or_none ref, + int element: @enum_element_decl_or_none ref +); + +error_exprs( //dir=expr + unique int id: @error_expr +); + +@explicit_cast_expr = + @checked_cast_expr +| @coerce_expr +; + +#keyset[id] +explicit_cast_exprs( //dir=expr + int id: @explicit_cast_expr ref, + int sub_expr: @expr_or_none ref +); + +extract_function_isolation_exprs( //dir=expr + unique int id: @extract_function_isolation_expr, + int function_expr: @expr_or_none ref +); + +force_value_exprs( //dir=expr + unique int id: @force_value_expr, + int sub_expr: @expr_or_none ref +); + +@identity_expr = + @await_expr +| @borrow_expr +| @dot_self_expr +| @paren_expr +| @unresolved_member_chain_result_expr +| @unsafe_expr +; + +#keyset[id] +identity_exprs( //dir=expr + int id: @identity_expr ref, + int sub_expr: @expr_or_none ref +); + +if_exprs( //dir=expr + unique int id: @if_expr, + int condition: @expr_or_none ref, + int then_expr: @expr_or_none ref, + int else_expr: @expr_or_none ref +); + +@implicit_conversion_expr = + @abi_safe_conversion_expr +| @actor_isolation_erasure_expr +| @any_hashable_erasure_expr +| @archetype_to_super_expr +| @array_to_pointer_expr +| @bridge_from_obj_c_expr +| @bridge_to_obj_c_expr +| @class_metatype_to_object_expr +| @collection_upcast_conversion_expr +| @conditional_bridge_from_obj_c_expr +| @covariant_function_conversion_expr +| @covariant_return_conversion_expr +| @derived_to_base_expr +| @destructure_tuple_expr +| @differentiable_function_expr +| @differentiable_function_extract_original_expr +| @erasure_expr +| @existential_metatype_to_object_expr +| @foreign_object_conversion_expr +| @function_conversion_expr +| @in_out_to_pointer_expr +| @inject_into_optional_expr +| @linear_function_expr +| @linear_function_extract_original_expr +| @linear_to_differentiable_function_expr +| @load_expr +| @metatype_conversion_expr +| @pointer_to_pointer_expr +| @protocol_metatype_to_object_expr +| @string_to_pointer_expr +| @underlying_to_opaque_expr +| @unevaluated_instance_expr +| @unreachable_expr +| @unresolved_type_conversion_expr +| @unsafe_cast_expr +; + +#keyset[id] +implicit_conversion_exprs( //dir=expr + int id: @implicit_conversion_expr ref, + int sub_expr: @expr_or_none ref +); + +in_out_exprs( //dir=expr + unique int id: @in_out_expr, + int sub_expr: @expr_or_none ref +); + +key_path_application_exprs( //dir=expr + unique int id: @key_path_application_expr, + int base: @expr_or_none ref, + int key_path: @expr_or_none ref +); + +key_path_dot_exprs( //dir=expr + unique int id: @key_path_dot_expr +); + +key_path_exprs( //dir=expr + unique int id: @key_path_expr +); + +#keyset[id] +key_path_expr_roots( //dir=expr + int id: @key_path_expr ref, + int root: @type_repr_or_none ref +); + +#keyset[id, index] +key_path_expr_components( //dir=expr + int id: @key_path_expr ref, + int index: int ref, + int component: @key_path_component_or_none ref +); + +lazy_initialization_exprs( //dir=expr + unique int id: @lazy_initialization_expr, + int sub_expr: @expr_or_none ref +); + +@literal_expr = + @builtin_literal_expr +| @interpolated_string_literal_expr +| @nil_literal_expr +| @object_literal_expr +| @regex_literal_expr +; + +@lookup_expr = + @dynamic_lookup_expr +| @member_ref_expr +| @subscript_expr +; + +#keyset[id] +lookup_exprs( //dir=expr + int id: @lookup_expr ref, + int base: @expr_or_none ref +); + +#keyset[id] +lookup_expr_members( //dir=expr + int id: @lookup_expr ref, + int member: @decl_or_none ref +); + +make_temporarily_escapable_exprs( //dir=expr + unique int id: @make_temporarily_escapable_expr, + int escaping_closure: @opaque_value_expr_or_none ref, + int nonescaping_closure: @expr_or_none ref, + int sub_expr: @expr_or_none ref +); + +materialize_pack_exprs( //dir=expr + unique int id: @materialize_pack_expr, + int sub_expr: @expr_or_none ref +); + +obj_c_selector_exprs( //dir=expr + unique int id: @obj_c_selector_expr, + int sub_expr: @expr_or_none ref, + int method: @function_or_none ref +); + +one_way_exprs( //dir=expr + unique int id: @one_way_expr, + int sub_expr: @expr_or_none ref +); + +opaque_value_exprs( //dir=expr + unique int id: @opaque_value_expr +); + +open_existential_exprs( //dir=expr + unique int id: @open_existential_expr, + int sub_expr: @expr_or_none ref, + int existential: @expr_or_none ref, + int opaque_expr: @opaque_value_expr_or_none ref +); + +optional_evaluation_exprs( //dir=expr + unique int id: @optional_evaluation_expr, + int sub_expr: @expr_or_none ref +); + +other_initializer_ref_exprs( //dir=expr + unique int id: @other_initializer_ref_expr, + int initializer: @initializer_or_none ref +); + +overloaded_decl_ref_exprs( //dir=expr + unique int id: @overloaded_decl_ref_expr +); + +#keyset[id, index] +overloaded_decl_ref_expr_possible_declarations( //dir=expr + int id: @overloaded_decl_ref_expr ref, + int index: int ref, + int possible_declaration: @value_decl_or_none ref +); + +pack_element_exprs( //dir=expr + unique int id: @pack_element_expr, + int sub_expr: @expr_or_none ref +); + +pack_expansion_exprs( //dir=expr + unique int id: @pack_expansion_expr, + int pattern_expr: @expr_or_none ref +); + +property_wrapper_value_placeholder_exprs( //dir=expr + unique int id: @property_wrapper_value_placeholder_expr, + int placeholder: @opaque_value_expr_or_none ref +); + +#keyset[id] +property_wrapper_value_placeholder_expr_wrapped_values( //dir=expr + int id: @property_wrapper_value_placeholder_expr ref, + int wrapped_value: @expr_or_none ref +); + +rebind_self_in_initializer_exprs( //dir=expr + unique int id: @rebind_self_in_initializer_expr, + int sub_expr: @expr_or_none ref, + int self: @var_decl_or_none ref +); + +sequence_exprs( //dir=expr + unique int id: @sequence_expr +); + +#keyset[id, index] +sequence_expr_elements( //dir=expr + int id: @sequence_expr ref, + int index: int ref, + int element: @expr_or_none ref +); + +single_value_stmt_exprs( //dir=expr + unique int id: @single_value_stmt_expr, + int stmt: @stmt_or_none ref +); + +super_ref_exprs( //dir=expr + unique int id: @super_ref_expr, + int self: @var_decl_or_none ref +); + +tap_exprs( //dir=expr + unique int id: @tap_expr, + int body: @brace_stmt_or_none ref, + int var: @var_decl_or_none ref +); + +#keyset[id] +tap_expr_sub_exprs( //dir=expr + int id: @tap_expr ref, + int sub_expr: @expr_or_none ref +); + +tuple_element_exprs( //dir=expr + unique int id: @tuple_element_expr, + int sub_expr: @expr_or_none ref, + int index: int ref +); + +tuple_exprs( //dir=expr + unique int id: @tuple_expr +); + +#keyset[id, index] +tuple_expr_elements( //dir=expr + int id: @tuple_expr ref, + int index: int ref, + int element: @expr_or_none ref +); + +type_exprs( //dir=expr + unique int id: @type_expr +); + +#keyset[id] +type_expr_type_reprs( //dir=expr + int id: @type_expr ref, + int type_repr: @type_repr_or_none ref +); + +type_value_exprs( //dir=expr + unique int id: @type_value_expr, + int type_repr: @type_repr_or_none ref +); + +unresolved_decl_ref_exprs( //dir=expr + unique int id: @unresolved_decl_ref_expr +); + +#keyset[id] +unresolved_decl_ref_expr_names( //dir=expr + int id: @unresolved_decl_ref_expr ref, + string name: string ref +); + +unresolved_dot_exprs( //dir=expr + unique int id: @unresolved_dot_expr, + int base: @expr_or_none ref, + string name: string ref +); + +unresolved_member_exprs( //dir=expr + unique int id: @unresolved_member_expr, + string name: string ref +); + +unresolved_pattern_exprs( //dir=expr + unique int id: @unresolved_pattern_expr, + int sub_pattern: @pattern_or_none ref +); + +unresolved_specialize_exprs( //dir=expr + unique int id: @unresolved_specialize_expr, + int sub_expr: @expr_or_none ref +); + +vararg_expansion_exprs( //dir=expr + unique int id: @vararg_expansion_expr, + int sub_expr: @expr_or_none ref +); + +abi_safe_conversion_exprs( //dir=expr + unique int id: @abi_safe_conversion_expr +); + +actor_isolation_erasure_exprs( //dir=expr + unique int id: @actor_isolation_erasure_expr +); + +any_hashable_erasure_exprs( //dir=expr + unique int id: @any_hashable_erasure_expr +); + +archetype_to_super_exprs( //dir=expr + unique int id: @archetype_to_super_expr +); + +array_exprs( //dir=expr + unique int id: @array_expr +); + +#keyset[id, index] +array_expr_elements( //dir=expr + int id: @array_expr ref, + int index: int ref, + int element: @expr_or_none ref +); + +array_to_pointer_exprs( //dir=expr + unique int id: @array_to_pointer_expr +); + +auto_closure_exprs( //dir=expr + unique int id: @auto_closure_expr +); + +await_exprs( //dir=expr + unique int id: @await_expr +); + +binary_exprs( //dir=expr + unique int id: @binary_expr +); + +borrow_exprs( //dir=expr + unique int id: @borrow_expr +); + +bridge_from_obj_c_exprs( //dir=expr + unique int id: @bridge_from_obj_c_expr +); + +bridge_to_obj_c_exprs( //dir=expr + unique int id: @bridge_to_obj_c_expr +); + +@builtin_literal_expr = + @boolean_literal_expr +| @magic_identifier_literal_expr +| @number_literal_expr +| @string_literal_expr +; + +call_exprs( //dir=expr + unique int id: @call_expr +); + +@checked_cast_expr = + @conditional_checked_cast_expr +| @forced_checked_cast_expr +| @is_expr +; + +class_metatype_to_object_exprs( //dir=expr + unique int id: @class_metatype_to_object_expr +); + +coerce_exprs( //dir=expr + unique int id: @coerce_expr +); + +collection_upcast_conversion_exprs( //dir=expr + unique int id: @collection_upcast_conversion_expr +); + +conditional_bridge_from_obj_c_exprs( //dir=expr + unique int id: @conditional_bridge_from_obj_c_expr +); + +covariant_function_conversion_exprs( //dir=expr + unique int id: @covariant_function_conversion_expr +); + +covariant_return_conversion_exprs( //dir=expr + unique int id: @covariant_return_conversion_expr +); + +derived_to_base_exprs( //dir=expr + unique int id: @derived_to_base_expr +); + +destructure_tuple_exprs( //dir=expr + unique int id: @destructure_tuple_expr +); + +dictionary_exprs( //dir=expr + unique int id: @dictionary_expr +); + +#keyset[id, index] +dictionary_expr_elements( //dir=expr + int id: @dictionary_expr ref, + int index: int ref, + int element: @expr_or_none ref +); + +differentiable_function_exprs( //dir=expr + unique int id: @differentiable_function_expr +); + +differentiable_function_extract_original_exprs( //dir=expr + unique int id: @differentiable_function_extract_original_expr +); + +dot_self_exprs( //dir=expr + unique int id: @dot_self_expr +); + +@dynamic_lookup_expr = + @dynamic_member_ref_expr +| @dynamic_subscript_expr +; + +erasure_exprs( //dir=expr + unique int id: @erasure_expr +); + +existential_metatype_to_object_exprs( //dir=expr + unique int id: @existential_metatype_to_object_expr +); + +explicit_closure_exprs( //dir=expr + unique int id: @explicit_closure_expr +); + +force_try_exprs( //dir=expr + unique int id: @force_try_expr +); + +foreign_object_conversion_exprs( //dir=expr + unique int id: @foreign_object_conversion_expr +); + +function_conversion_exprs( //dir=expr + unique int id: @function_conversion_expr +); + +in_out_to_pointer_exprs( //dir=expr + unique int id: @in_out_to_pointer_expr +); + +inject_into_optional_exprs( //dir=expr + unique int id: @inject_into_optional_expr +); + +interpolated_string_literal_exprs( //dir=expr + unique int id: @interpolated_string_literal_expr +); + +#keyset[id] +interpolated_string_literal_expr_interpolation_exprs( //dir=expr + int id: @interpolated_string_literal_expr ref, + int interpolation_expr: @opaque_value_expr_or_none ref +); + +#keyset[id] +interpolated_string_literal_expr_appending_exprs( //dir=expr + int id: @interpolated_string_literal_expr ref, + int appending_expr: @tap_expr_or_none ref +); + +linear_function_exprs( //dir=expr + unique int id: @linear_function_expr +); + +linear_function_extract_original_exprs( //dir=expr + unique int id: @linear_function_extract_original_expr +); + +linear_to_differentiable_function_exprs( //dir=expr + unique int id: @linear_to_differentiable_function_expr +); + +load_exprs( //dir=expr + unique int id: @load_expr +); + +member_ref_exprs( //dir=expr + unique int id: @member_ref_expr +); + +#keyset[id] +member_ref_expr_has_direct_to_storage_semantics( //dir=expr + int id: @member_ref_expr ref +); + +#keyset[id] +member_ref_expr_has_direct_to_implementation_semantics( //dir=expr + int id: @member_ref_expr ref +); + +#keyset[id] +member_ref_expr_has_ordinary_semantics( //dir=expr + int id: @member_ref_expr ref +); + +#keyset[id] +member_ref_expr_has_distributed_thunk_semantics( //dir=expr + int id: @member_ref_expr ref +); + +metatype_conversion_exprs( //dir=expr + unique int id: @metatype_conversion_expr +); + +nil_literal_exprs( //dir=expr + unique int id: @nil_literal_expr +); + +object_literal_exprs( //dir=expr + unique int id: @object_literal_expr, + int kind: int ref +); + +#keyset[id, index] +object_literal_expr_arguments( //dir=expr + int id: @object_literal_expr ref, + int index: int ref, + int argument: @argument_or_none ref +); + +optional_try_exprs( //dir=expr + unique int id: @optional_try_expr +); + +paren_exprs( //dir=expr + unique int id: @paren_expr +); + +pointer_to_pointer_exprs( //dir=expr + unique int id: @pointer_to_pointer_expr +); + +postfix_unary_exprs( //dir=expr + unique int id: @postfix_unary_expr +); + +prefix_unary_exprs( //dir=expr + unique int id: @prefix_unary_expr +); + +protocol_metatype_to_object_exprs( //dir=expr + unique int id: @protocol_metatype_to_object_expr +); + +regex_literal_exprs( //dir=expr + unique int id: @regex_literal_expr, + string pattern: string ref, + int version: int ref +); + +@self_apply_expr = + @dot_syntax_call_expr +| @initializer_ref_call_expr +; + +#keyset[id] +self_apply_exprs( //dir=expr + int id: @self_apply_expr ref, + int base: @expr_or_none ref +); + +string_to_pointer_exprs( //dir=expr + unique int id: @string_to_pointer_expr +); + +subscript_exprs( //dir=expr + unique int id: @subscript_expr +); + +#keyset[id, index] +subscript_expr_arguments( //dir=expr + int id: @subscript_expr ref, + int index: int ref, + int argument: @argument_or_none ref +); + +#keyset[id] +subscript_expr_has_direct_to_storage_semantics( //dir=expr + int id: @subscript_expr ref +); + +#keyset[id] +subscript_expr_has_direct_to_implementation_semantics( //dir=expr + int id: @subscript_expr ref +); + +#keyset[id] +subscript_expr_has_ordinary_semantics( //dir=expr + int id: @subscript_expr ref +); + +#keyset[id] +subscript_expr_has_distributed_thunk_semantics( //dir=expr + int id: @subscript_expr ref +); + +try_exprs( //dir=expr + unique int id: @try_expr +); + +underlying_to_opaque_exprs( //dir=expr + unique int id: @underlying_to_opaque_expr +); + +unevaluated_instance_exprs( //dir=expr + unique int id: @unevaluated_instance_expr +); + +unreachable_exprs( //dir=expr + unique int id: @unreachable_expr +); + +unresolved_member_chain_result_exprs( //dir=expr + unique int id: @unresolved_member_chain_result_expr +); + +unresolved_type_conversion_exprs( //dir=expr + unique int id: @unresolved_type_conversion_expr +); + +unsafe_cast_exprs( //dir=expr + unique int id: @unsafe_cast_expr +); + +unsafe_exprs( //dir=expr + unique int id: @unsafe_expr +); + +boolean_literal_exprs( //dir=expr + unique int id: @boolean_literal_expr, + boolean value: boolean ref +); + +conditional_checked_cast_exprs( //dir=expr + unique int id: @conditional_checked_cast_expr +); + +dot_syntax_call_exprs( //dir=expr + unique int id: @dot_syntax_call_expr +); + +dynamic_member_ref_exprs( //dir=expr + unique int id: @dynamic_member_ref_expr +); + +dynamic_subscript_exprs( //dir=expr + unique int id: @dynamic_subscript_expr +); + +forced_checked_cast_exprs( //dir=expr + unique int id: @forced_checked_cast_expr +); + +initializer_ref_call_exprs( //dir=expr + unique int id: @initializer_ref_call_expr +); + +is_exprs( //dir=expr + unique int id: @is_expr +); + +magic_identifier_literal_exprs( //dir=expr + unique int id: @magic_identifier_literal_expr, + string kind: string ref +); + +@number_literal_expr = + @float_literal_expr +| @integer_literal_expr +; + +string_literal_exprs( //dir=expr + unique int id: @string_literal_expr, + string value: string ref +); + +float_literal_exprs( //dir=expr + unique int id: @float_literal_expr, + string string_value: string ref +); + +integer_literal_exprs( //dir=expr + unique int id: @integer_literal_expr, + string string_value: string ref +); + +@pattern = + @any_pattern +| @binding_pattern +| @bool_pattern +| @enum_element_pattern +| @expr_pattern +| @is_pattern +| @named_pattern +| @optional_some_pattern +| @paren_pattern +| @tuple_pattern +| @typed_pattern +; + +#keyset[id] +pattern_types( //dir=pattern + int id: @pattern ref, + int type_: @type_or_none ref +); + +any_patterns( //dir=pattern + unique int id: @any_pattern +); + +binding_patterns( //dir=pattern + unique int id: @binding_pattern, + int sub_pattern: @pattern_or_none ref +); + +bool_patterns( //dir=pattern + unique int id: @bool_pattern, + boolean value: boolean ref +); + +enum_element_patterns( //dir=pattern + unique int id: @enum_element_pattern, + int element: @enum_element_decl_or_none ref +); + +#keyset[id] +enum_element_pattern_sub_patterns( //dir=pattern + int id: @enum_element_pattern ref, + int sub_pattern: @pattern_or_none ref +); + +expr_patterns( //dir=pattern + unique int id: @expr_pattern, + int sub_expr: @expr_or_none ref +); + +is_patterns( //dir=pattern + unique int id: @is_pattern +); + +#keyset[id] +is_pattern_cast_type_reprs( //dir=pattern + int id: @is_pattern ref, + int cast_type_repr: @type_repr_or_none ref +); + +#keyset[id] +is_pattern_sub_patterns( //dir=pattern + int id: @is_pattern ref, + int sub_pattern: @pattern_or_none ref +); + +named_patterns( //dir=pattern + unique int id: @named_pattern, + int var_decl: @var_decl_or_none ref +); + +optional_some_patterns( //dir=pattern + unique int id: @optional_some_pattern, + int sub_pattern: @pattern_or_none ref +); + +paren_patterns( //dir=pattern + unique int id: @paren_pattern, + int sub_pattern: @pattern_or_none ref +); + +tuple_patterns( //dir=pattern + unique int id: @tuple_pattern +); + +#keyset[id, index] +tuple_pattern_elements( //dir=pattern + int id: @tuple_pattern ref, + int index: int ref, + int element: @pattern_or_none ref +); + +typed_patterns( //dir=pattern + unique int id: @typed_pattern, + int sub_pattern: @pattern_or_none ref +); + +#keyset[id] +typed_pattern_type_reprs( //dir=pattern + int id: @typed_pattern ref, + int type_repr: @type_repr_or_none ref +); + +case_label_items( //dir=stmt + unique int id: @case_label_item, + int pattern: @pattern_or_none ref +); + +#keyset[id] +case_label_item_guards( //dir=stmt + int id: @case_label_item ref, + int guard: @expr_or_none ref +); + +condition_elements( //dir=stmt + unique int id: @condition_element +); + +#keyset[id] +condition_element_booleans( //dir=stmt + int id: @condition_element ref, + int boolean_: @expr_or_none ref +); + +#keyset[id] +condition_element_patterns( //dir=stmt + int id: @condition_element ref, + int pattern: @pattern_or_none ref +); + +#keyset[id] +condition_element_initializers( //dir=stmt + int id: @condition_element ref, + int initializer: @expr_or_none ref +); + +#keyset[id] +condition_element_availabilities( //dir=stmt + int id: @condition_element ref, + int availability: @availability_info_or_none ref +); + +@stmt = + @brace_stmt +| @break_stmt +| @case_stmt +| @continue_stmt +| @defer_stmt +| @discard_stmt +| @fail_stmt +| @fallthrough_stmt +| @labeled_stmt +| @pound_assert_stmt +| @return_stmt +| @then_stmt +| @throw_stmt +| @yield_stmt +; + +stmt_conditions( //dir=stmt + unique int id: @stmt_condition +); + +#keyset[id, index] +stmt_condition_elements( //dir=stmt + int id: @stmt_condition ref, + int index: int ref, + int element: @condition_element_or_none ref +); + +brace_stmts( //dir=stmt + unique int id: @brace_stmt +); + +#keyset[id, index] +brace_stmt_elements( //dir=stmt + int id: @brace_stmt ref, + int index: int ref, + int element: @ast_node_or_none ref +); + +break_stmts( //dir=stmt + unique int id: @break_stmt +); + +#keyset[id] +break_stmt_target_names( //dir=stmt + int id: @break_stmt ref, + string target_name: string ref +); + +#keyset[id] +break_stmt_targets( //dir=stmt + int id: @break_stmt ref, + int target: @stmt_or_none ref +); + +case_stmts( //dir=stmt + unique int id: @case_stmt, + int body: @stmt_or_none ref +); + +#keyset[id, index] +case_stmt_labels( //dir=stmt + int id: @case_stmt ref, + int index: int ref, + int label: @case_label_item_or_none ref +); + +#keyset[id, index] +case_stmt_variables( //dir=stmt + int id: @case_stmt ref, + int index: int ref, + int variable: @var_decl_or_none ref +); + +continue_stmts( //dir=stmt + unique int id: @continue_stmt +); + +#keyset[id] +continue_stmt_target_names( //dir=stmt + int id: @continue_stmt ref, + string target_name: string ref +); + +#keyset[id] +continue_stmt_targets( //dir=stmt + int id: @continue_stmt ref, + int target: @stmt_or_none ref +); + +defer_stmts( //dir=stmt + unique int id: @defer_stmt, + int body: @brace_stmt_or_none ref +); + +discard_stmts( //dir=stmt + unique int id: @discard_stmt, + int sub_expr: @expr_or_none ref +); + +fail_stmts( //dir=stmt + unique int id: @fail_stmt +); + +fallthrough_stmts( //dir=stmt + unique int id: @fallthrough_stmt, + int fallthrough_source: @case_stmt_or_none ref, + int fallthrough_dest: @case_stmt_or_none ref +); + +@labeled_stmt = + @do_catch_stmt +| @do_stmt +| @for_each_stmt +| @labeled_conditional_stmt +| @repeat_while_stmt +| @switch_stmt +; + +#keyset[id] +labeled_stmt_labels( //dir=stmt + int id: @labeled_stmt ref, + string label: string ref +); + +pound_assert_stmts( //dir=stmt + unique int id: @pound_assert_stmt, + int condition: @expr_or_none ref, + string message: string ref +); + +return_stmts( //dir=stmt + unique int id: @return_stmt +); + +#keyset[id] +return_stmt_results( //dir=stmt + int id: @return_stmt ref, + int result: @expr_or_none ref +); + +then_stmts( //dir=stmt + unique int id: @then_stmt, + int result: @expr_or_none ref +); + +throw_stmts( //dir=stmt + unique int id: @throw_stmt, + int sub_expr: @expr_or_none ref +); + +yield_stmts( //dir=stmt + unique int id: @yield_stmt +); + +#keyset[id, index] +yield_stmt_results( //dir=stmt + int id: @yield_stmt ref, + int index: int ref, + int result: @expr_or_none ref +); + +do_catch_stmts( //dir=stmt + unique int id: @do_catch_stmt, + int body: @stmt_or_none ref +); + +#keyset[id, index] +do_catch_stmt_catches( //dir=stmt + int id: @do_catch_stmt ref, + int index: int ref, + int catch: @case_stmt_or_none ref +); + +do_stmts( //dir=stmt + unique int id: @do_stmt, + int body: @brace_stmt_or_none ref +); + +for_each_stmts( //dir=stmt + unique int id: @for_each_stmt, + int pattern: @pattern_or_none ref, + int body: @brace_stmt_or_none ref +); + +#keyset[id, index] +for_each_stmt_variables( //dir=stmt + int id: @for_each_stmt ref, + int index: int ref, + int variable: @var_decl_or_none ref +); + +#keyset[id] +for_each_stmt_wheres( //dir=stmt + int id: @for_each_stmt ref, + int where: @expr_or_none ref +); + +#keyset[id] +for_each_stmt_iterator_vars( //dir=stmt + int id: @for_each_stmt ref, + int iteratorVar: @pattern_binding_decl_or_none ref +); + +#keyset[id] +for_each_stmt_next_calls( //dir=stmt + int id: @for_each_stmt ref, + int nextCall: @expr_or_none ref +); + +@labeled_conditional_stmt = + @guard_stmt +| @if_stmt +| @while_stmt +; + +#keyset[id] +labeled_conditional_stmts( //dir=stmt + int id: @labeled_conditional_stmt ref, + int condition: @stmt_condition_or_none ref +); + +repeat_while_stmts( //dir=stmt + unique int id: @repeat_while_stmt, + int condition: @expr_or_none ref, + int body: @stmt_or_none ref +); + +switch_stmts( //dir=stmt + unique int id: @switch_stmt, + int expr: @expr_or_none ref +); + +#keyset[id, index] +switch_stmt_cases( //dir=stmt + int id: @switch_stmt ref, + int index: int ref, + int case_: @case_stmt_or_none ref +); + +guard_stmts( //dir=stmt + unique int id: @guard_stmt, + int body: @brace_stmt_or_none ref +); + +if_stmts( //dir=stmt + unique int id: @if_stmt, + int then: @stmt_or_none ref +); + +#keyset[id] +if_stmt_elses( //dir=stmt + int id: @if_stmt ref, + int else: @stmt_or_none ref +); + +while_stmts( //dir=stmt + unique int id: @while_stmt, + int body: @stmt_or_none ref +); + +@type = + @any_function_type +| @any_generic_type +| @any_metatype_type +| @builtin_type +| @dependent_member_type +| @dynamic_self_type +| @error_type +| @existential_type +| @in_out_type +| @integer_type +| @l_value_type +| @module_type +| @pack_element_type +| @pack_expansion_type +| @pack_type +| @parameterized_protocol_type +| @protocol_composition_type +| @reference_storage_type +| @substitutable_type +| @sugar_type +| @tuple_type +| @unresolved_type +; + +#keyset[id] +types( //dir=type + int id: @type ref, + string name: string ref, + int canonical_type: @type_or_none ref +); + +type_reprs( //dir=type + unique int id: @type_repr, + int type_: @type_or_none ref +); + +@any_function_type = + @function_type +| @generic_function_type +; + +#keyset[id] +any_function_types( //dir=type + int id: @any_function_type ref, + int result: @type_or_none ref +); + +#keyset[id, index] +any_function_type_param_types( //dir=type + int id: @any_function_type ref, + int index: int ref, + int param_type: @type_or_none ref +); + +#keyset[id] +any_function_type_is_throwing( //dir=type + int id: @any_function_type ref +); + +#keyset[id] +any_function_type_is_async( //dir=type + int id: @any_function_type ref +); + +@any_generic_type = + @nominal_or_bound_generic_nominal_type +| @unbound_generic_type +; + +#keyset[id] +any_generic_types( //dir=type + int id: @any_generic_type ref, + int declaration: @generic_type_decl_or_none ref +); + +#keyset[id] +any_generic_type_parents( //dir=type + int id: @any_generic_type ref, + int parent: @type_or_none ref +); + +@any_metatype_type = + @existential_metatype_type +| @metatype_type +; + +@builtin_type = + @any_builtin_integer_type +| @builtin_bridge_object_type +| @builtin_default_actor_storage_type +| @builtin_executor_type +| @builtin_float_type +| @builtin_generic_type +| @builtin_job_type +| @builtin_native_object_type +| @builtin_raw_pointer_type +| @builtin_raw_unsafe_continuation_type +| @builtin_unsafe_value_buffer_type +| @builtin_vector_type +; + +dependent_member_types( //dir=type + unique int id: @dependent_member_type, + int base_type: @type_or_none ref, + int associated_type_decl: @associated_type_decl_or_none ref +); + +dynamic_self_types( //dir=type + unique int id: @dynamic_self_type, + int static_self_type: @type_or_none ref +); + +error_types( //dir=type + unique int id: @error_type +); + +existential_types( //dir=type + unique int id: @existential_type, + int constraint: @type_or_none ref +); + +in_out_types( //dir=type + unique int id: @in_out_type, + int object_type: @type_or_none ref +); + +integer_types( //dir=type + unique int id: @integer_type, + string value: string ref +); + +l_value_types( //dir=type + unique int id: @l_value_type, + int object_type: @type_or_none ref +); + +module_types( //dir=type + unique int id: @module_type, + int module: @module_decl_or_none ref +); + +pack_element_types( //dir=type + unique int id: @pack_element_type, + int pack_type: @type_or_none ref +); + +pack_expansion_types( //dir=type + unique int id: @pack_expansion_type, + int pattern_type: @type_or_none ref, + int count_type: @type_or_none ref +); + +pack_types( //dir=type + unique int id: @pack_type +); + +#keyset[id, index] +pack_type_elements( //dir=type + int id: @pack_type ref, + int index: int ref, + int element: @type_or_none ref +); + +parameterized_protocol_types( //dir=type + unique int id: @parameterized_protocol_type, + int base: @protocol_type_or_none ref +); + +#keyset[id, index] +parameterized_protocol_type_args( //dir=type + int id: @parameterized_protocol_type ref, + int index: int ref, + int arg: @type_or_none ref +); + +protocol_composition_types( //dir=type + unique int id: @protocol_composition_type +); + +#keyset[id, index] +protocol_composition_type_members( //dir=type + int id: @protocol_composition_type ref, + int index: int ref, + int member: @type_or_none ref +); + +@reference_storage_type = + @unmanaged_storage_type +| @unowned_storage_type +| @weak_storage_type +; + +#keyset[id] +reference_storage_types( //dir=type + int id: @reference_storage_type ref, + int referent_type: @type_or_none ref +); + +@substitutable_type = + @archetype_type +| @generic_type_param_type +; + +@sugar_type = + @paren_type +| @syntax_sugar_type +| @type_alias_type +; + +tuple_types( //dir=type + unique int id: @tuple_type +); + +#keyset[id, index] +tuple_type_types( //dir=type + int id: @tuple_type ref, + int index: int ref, + int type_: @type_or_none ref +); + +#keyset[id, index] +tuple_type_names( //dir=type + int id: @tuple_type ref, + int index: int ref, + string name: string ref +); + +unresolved_types( //dir=type + unique int id: @unresolved_type +); + +@any_builtin_integer_type = + @builtin_integer_literal_type +| @builtin_integer_type +; + +@archetype_type = + @local_archetype_type +| @opaque_type_archetype_type +| @pack_archetype_type +| @primary_archetype_type +; + +#keyset[id] +archetype_types( //dir=type + int id: @archetype_type ref, + int interface_type: @type_or_none ref +); + +#keyset[id] +archetype_type_superclasses( //dir=type + int id: @archetype_type ref, + int superclass: @type_or_none ref +); + +#keyset[id, index] +archetype_type_protocols( //dir=type + int id: @archetype_type ref, + int index: int ref, + int protocol: @protocol_decl_or_none ref +); + +builtin_bridge_object_types( //dir=type + unique int id: @builtin_bridge_object_type +); + +builtin_default_actor_storage_types( //dir=type + unique int id: @builtin_default_actor_storage_type +); + +builtin_executor_types( //dir=type + unique int id: @builtin_executor_type +); + +builtin_float_types( //dir=type + unique int id: @builtin_float_type +); + +@builtin_generic_type = + @builtin_fixed_array_type +; + +builtin_job_types( //dir=type + unique int id: @builtin_job_type +); + +builtin_native_object_types( //dir=type + unique int id: @builtin_native_object_type +); + +builtin_raw_pointer_types( //dir=type + unique int id: @builtin_raw_pointer_type +); + +builtin_raw_unsafe_continuation_types( //dir=type + unique int id: @builtin_raw_unsafe_continuation_type +); + +builtin_unsafe_value_buffer_types( //dir=type + unique int id: @builtin_unsafe_value_buffer_type +); + +builtin_vector_types( //dir=type + unique int id: @builtin_vector_type +); + +existential_metatype_types( //dir=type + unique int id: @existential_metatype_type +); + +function_types( //dir=type + unique int id: @function_type +); + +generic_function_types( //dir=type + unique int id: @generic_function_type +); + +#keyset[id, index] +generic_function_type_generic_params( //dir=type + int id: @generic_function_type ref, + int index: int ref, + int generic_param: @generic_type_param_type_or_none ref +); + +generic_type_param_types( //dir=type + unique int id: @generic_type_param_type +); + +metatype_types( //dir=type + unique int id: @metatype_type +); + +@nominal_or_bound_generic_nominal_type = + @bound_generic_type +| @nominal_type +; + +paren_types( //dir=type + unique int id: @paren_type, + int type_: @type_or_none ref +); + +@syntax_sugar_type = + @dictionary_type +| @inline_array_type +| @unary_syntax_sugar_type +; + +type_alias_types( //dir=type + unique int id: @type_alias_type, + int decl: @type_alias_decl_or_none ref +); + +unbound_generic_types( //dir=type + unique int id: @unbound_generic_type +); + +unmanaged_storage_types( //dir=type + unique int id: @unmanaged_storage_type +); + +unowned_storage_types( //dir=type + unique int id: @unowned_storage_type +); + +weak_storage_types( //dir=type + unique int id: @weak_storage_type +); + +@bound_generic_type = + @bound_generic_class_type +| @bound_generic_enum_type +| @bound_generic_struct_type +; + +#keyset[id, index] +bound_generic_type_arg_types( //dir=type + int id: @bound_generic_type ref, + int index: int ref, + int arg_type: @type_or_none ref +); + +builtin_fixed_array_types( //dir=type + unique int id: @builtin_fixed_array_type, + int size: @type_or_none ref, + int element_type: @type_or_none ref +); + +builtin_integer_literal_types( //dir=type + unique int id: @builtin_integer_literal_type +); + +builtin_integer_types( //dir=type + unique int id: @builtin_integer_type +); + +#keyset[id] +builtin_integer_type_widths( //dir=type + int id: @builtin_integer_type ref, + int width: int ref +); + +dictionary_types( //dir=type + unique int id: @dictionary_type, + int key_type: @type_or_none ref, + int value_type: @type_or_none ref +); + +inline_array_types( //dir=type + unique int id: @inline_array_type, + int count_type: @type_or_none ref, + int element_type: @type_or_none ref +); + +@local_archetype_type = + @element_archetype_type +| @existential_archetype_type +; + +@nominal_type = + @class_type +| @enum_type +| @protocol_type +| @struct_type +; + +opaque_type_archetype_types( //dir=type + unique int id: @opaque_type_archetype_type, + int declaration: @opaque_type_decl_or_none ref +); + +pack_archetype_types( //dir=type + unique int id: @pack_archetype_type +); + +primary_archetype_types( //dir=type + unique int id: @primary_archetype_type +); + +@unary_syntax_sugar_type = + @array_slice_type +| @optional_type +| @variadic_sequence_type +; + +#keyset[id] +unary_syntax_sugar_types( //dir=type + int id: @unary_syntax_sugar_type ref, + int base_type: @type_or_none ref +); + +array_slice_types( //dir=type + unique int id: @array_slice_type +); + +bound_generic_class_types( //dir=type + unique int id: @bound_generic_class_type +); + +bound_generic_enum_types( //dir=type + unique int id: @bound_generic_enum_type +); + +bound_generic_struct_types( //dir=type + unique int id: @bound_generic_struct_type +); + +class_types( //dir=type + unique int id: @class_type +); + +element_archetype_types( //dir=type + unique int id: @element_archetype_type +); + +enum_types( //dir=type + unique int id: @enum_type +); + +existential_archetype_types( //dir=type + unique int id: @existential_archetype_type +); + +optional_types( //dir=type + unique int id: @optional_type +); + +protocol_types( //dir=type + unique int id: @protocol_type +); + +struct_types( //dir=type + unique int id: @struct_type +); + +variadic_sequence_types( //dir=type + unique int id: @variadic_sequence_type +); + +@accessor_or_none = + @accessor +| @unspecified_element +; + +@argument_or_none = + @argument +| @unspecified_element +; + +@associated_type_decl_or_none = + @associated_type_decl +| @unspecified_element +; + +@ast_node_or_none = + @ast_node +| @unspecified_element +; + +@availability_info_or_none = + @availability_info +| @unspecified_element +; + +@availability_spec_or_none = + @availability_spec +| @unspecified_element +; + +@brace_stmt_or_none = + @brace_stmt +| @unspecified_element +; + +@captured_decl_or_none = + @captured_decl +| @unspecified_element +; + +@case_label_item_or_none = + @case_label_item +| @unspecified_element +; + +@case_stmt_or_none = + @case_stmt +| @unspecified_element +; + +@closure_expr_or_none = + @closure_expr +| @unspecified_element +; + +@condition_element_or_none = + @condition_element +| @unspecified_element +; + +@decl_or_none = + @decl +| @unspecified_element +; + +@enum_element_decl_or_none = + @enum_element_decl +| @unspecified_element +; + +@expr_or_none = + @expr +| @unspecified_element +; + +@file_or_none = + @file +| @unspecified_element +; + +@function_or_none = + @function +| @unspecified_element +; + +@generic_type_decl_or_none = + @generic_type_decl +| @unspecified_element +; + +@generic_type_param_decl_or_none = + @generic_type_param_decl +| @unspecified_element +; + +@generic_type_param_type_or_none = + @generic_type_param_type +| @unspecified_element +; + +@initializer_or_none = + @initializer +| @unspecified_element +; + +@key_path_component_or_none = + @key_path_component +| @unspecified_element +; + +@location_or_none = + @location +| @unspecified_element +; + +@macro_role_or_none = + @macro_role +| @unspecified_element +; + +@module_decl_or_none = + @module_decl +| @unspecified_element +; + +@nominal_type_decl_or_none = + @nominal_type_decl +| @unspecified_element +; + +@opaque_type_decl_or_none = + @opaque_type_decl +| @unspecified_element +; + +@opaque_value_expr_or_none = + @opaque_value_expr +| @unspecified_element +; + +@param_decl_or_none = + @param_decl +| @unspecified_element +; + +@pattern_or_none = + @pattern +| @unspecified_element +; + +@pattern_binding_decl_or_none = + @pattern_binding_decl +| @unspecified_element +; + +@precedence_group_decl_or_none = + @precedence_group_decl +| @unspecified_element +; + +@protocol_decl_or_none = + @protocol_decl +| @unspecified_element +; + +@protocol_type_or_none = + @protocol_type +| @unspecified_element +; + +@stmt_or_none = + @stmt +| @unspecified_element +; + +@stmt_condition_or_none = + @stmt_condition +| @unspecified_element +; + +@string_literal_expr_or_none = + @string_literal_expr +| @unspecified_element +; + +@tap_expr_or_none = + @tap_expr +| @unspecified_element +; + +@type_or_none = + @type +| @unspecified_element +; + +@type_alias_decl_or_none = + @type_alias_decl +| @unspecified_element +; + +@type_repr_or_none = + @type_repr +| @unspecified_element +; + +@value_decl_or_none = + @unspecified_element +| @value_decl +; + +@var_decl_or_none = + @unspecified_element +| @var_decl +; diff --git a/swift/ql/lib/upgrades/5738be6bb04742c424efdbf9f4de11f0b10fa37d/upgrade.properties b/swift/ql/lib/upgrades/5738be6bb04742c424efdbf9f4de11f0b10fa37d/upgrade.properties new file mode 100644 index 000000000000..270852cf8512 --- /dev/null +++ b/swift/ql/lib/upgrades/5738be6bb04742c424efdbf9f4de11f0b10fa37d/upgrade.properties @@ -0,0 +1,4 @@ +description: Expose declared interface types +compatibility: backwards +type_decls.rel: run upgrade.ql new_type_decls +unspecified_elements.rel: run upgrade.ql new_unspecified_elements diff --git a/swift/ql/lib/upgrades/5738be6bb04742c424efdbf9f4de11f0b10fa37d/upgrade.ql b/swift/ql/lib/upgrades/5738be6bb04742c424efdbf9f4de11f0b10fa37d/upgrade.ql new file mode 100644 index 000000000000..3ecfd00badbb --- /dev/null +++ b/swift/ql/lib/upgrades/5738be6bb04742c424efdbf9f4de11f0b10fa37d/upgrade.ql @@ -0,0 +1,29 @@ +class TypeDecl extends @type_decl { + string toString() { none() } +} + +newtype TAddedElement = TType(TypeDecl t) + +module Fresh = QlBuiltins::NewEntity; + +class TNewElement = @element or Fresh::EntityId; + +class NewElement extends TNewElement { + string toString() { none() } +} + +query predicate new_type_decls(TypeDecl typeDecl, string name, NewElement elementType) { + type_decls(typeDecl, name) and + Fresh::map(TType(typeDecl)) = elementType +} + +query predicate new_unspecified_elements(NewElement id, string property, string error) { + unspecified_elements(id, property, error) + or + exists(TypeDecl typeDecl | type_decls(typeDecl, _) | + id = Fresh::map(TType(typeDecl)) and + error = + "TypeDecl declared interface type missing after upgrade. Please update your CodeQL code." and + property = "" + ) +} diff --git a/swift/ql/test/extractor-tests/generated/decl/AssociatedTypeDecl/AssociatedTypeDecl.expected b/swift/ql/test/extractor-tests/generated/decl/AssociatedTypeDecl/AssociatedTypeDecl.expected index 9daa87b09ccd..474fb0ab2e6f 100644 --- a/swift/ql/test/extractor-tests/generated/decl/AssociatedTypeDecl/AssociatedTypeDecl.expected +++ b/swift/ql/test/extractor-tests/generated/decl/AssociatedTypeDecl/AssociatedTypeDecl.expected @@ -1,6 +1,6 @@ instances -| associated_type.swift:2:5:2:20 | Bar | getModule: | file://:0:0:0:0 | associated_type | getInterfaceType: | Self.Bar.Type | getName: | Bar | -| associated_type.swift:3:5:3:25 | Baz | getModule: | file://:0:0:0:0 | associated_type | getInterfaceType: | Self.Baz.Type | getName: | Baz | +| associated_type.swift:2:5:2:20 | Bar | getModule: | file://:0:0:0:0 | associated_type | getInterfaceType: | Self.Bar.Type | getName: | Bar | getDeclaredInterfaceType: | Self.Bar | +| associated_type.swift:3:5:3:25 | Baz | getModule: | file://:0:0:0:0 | associated_type | getInterfaceType: | Self.Baz.Type | getName: | Baz | getDeclaredInterfaceType: | Self.Baz | getMember getInheritedType | associated_type.swift:3:5:3:25 | Baz | 0 | Equatable | diff --git a/swift/ql/test/extractor-tests/generated/decl/AssociatedTypeDecl/AssociatedTypeDecl.ql b/swift/ql/test/extractor-tests/generated/decl/AssociatedTypeDecl/AssociatedTypeDecl.ql index 41cc9d349a43..8788784b044d 100644 --- a/swift/ql/test/extractor-tests/generated/decl/AssociatedTypeDecl/AssociatedTypeDecl.ql +++ b/swift/ql/test/extractor-tests/generated/decl/AssociatedTypeDecl/AssociatedTypeDecl.ql @@ -4,7 +4,8 @@ import TestUtils query predicate instances( AssociatedTypeDecl x, string getModule__label, ModuleDecl getModule, - string getInterfaceType__label, Type getInterfaceType, string getName__label, string getName + string getInterfaceType__label, Type getInterfaceType, string getName__label, string getName, + string getDeclaredInterfaceType__label, Type getDeclaredInterfaceType ) { toBeTested(x) and not x.isUnknown() and @@ -13,7 +14,9 @@ query predicate instances( getInterfaceType__label = "getInterfaceType:" and getInterfaceType = x.getInterfaceType() and getName__label = "getName:" and - getName = x.getName() + getName = x.getName() and + getDeclaredInterfaceType__label = "getDeclaredInterfaceType:" and + getDeclaredInterfaceType = x.getDeclaredInterfaceType() } query predicate getMember(AssociatedTypeDecl x, int index, Decl getMember) { diff --git a/swift/ql/test/extractor-tests/generated/decl/ClassDecl/ClassDecl.expected b/swift/ql/test/extractor-tests/generated/decl/ClassDecl/ClassDecl.expected index b15a1cc649df..a9054efb302b 100644 --- a/swift/ql/test/extractor-tests/generated/decl/ClassDecl/ClassDecl.expected +++ b/swift/ql/test/extractor-tests/generated/decl/ClassDecl/ClassDecl.expected @@ -1,7 +1,7 @@ instances -| class.swift:1:1:7:1 | Foo | getModule: | file://:0:0:0:0 | class | getInterfaceType: | Foo.Type | getName: | Foo | getType: | Foo | -| class.swift:11:1:14:1 | Generic | getModule: | file://:0:0:0:0 | class | getInterfaceType: | Generic.Type | getName: | Generic | getType: | Generic | -| class.swift:16:1:17:1 | Baz | getModule: | file://:0:0:0:0 | class | getInterfaceType: | Baz.Type | getName: | Baz | getType: | Baz | +| class.swift:1:1:7:1 | Foo | getModule: | file://:0:0:0:0 | class | getInterfaceType: | Foo.Type | getName: | Foo | getDeclaredInterfaceType: | Foo | getType: | Foo | +| class.swift:11:1:14:1 | Generic | getModule: | file://:0:0:0:0 | class | getInterfaceType: | Generic.Type | getName: | Generic | getDeclaredInterfaceType: | Generic | getType: | Generic | +| class.swift:16:1:17:1 | Baz | getModule: | file://:0:0:0:0 | class | getInterfaceType: | Baz.Type | getName: | Baz | getDeclaredInterfaceType: | Baz | getType: | Baz | getGenericTypeParam | class.swift:11:1:14:1 | Generic | 0 | class.swift:11:15:11:15 | X | | class.swift:11:1:14:1 | Generic | 1 | class.swift:11:18:11:18 | Y | diff --git a/swift/ql/test/extractor-tests/generated/decl/ClassDecl/ClassDecl.ql b/swift/ql/test/extractor-tests/generated/decl/ClassDecl/ClassDecl.ql index e32a98ca2bc0..620a77295d9f 100644 --- a/swift/ql/test/extractor-tests/generated/decl/ClassDecl/ClassDecl.ql +++ b/swift/ql/test/extractor-tests/generated/decl/ClassDecl/ClassDecl.ql @@ -4,7 +4,9 @@ import TestUtils query predicate instances( ClassDecl x, string getModule__label, ModuleDecl getModule, string getInterfaceType__label, - Type getInterfaceType, string getName__label, string getName, string getType__label, Type getType + Type getInterfaceType, string getName__label, string getName, + string getDeclaredInterfaceType__label, Type getDeclaredInterfaceType, string getType__label, + Type getType ) { toBeTested(x) and not x.isUnknown() and @@ -14,6 +16,8 @@ query predicate instances( getInterfaceType = x.getInterfaceType() and getName__label = "getName:" and getName = x.getName() and + getDeclaredInterfaceType__label = "getDeclaredInterfaceType:" and + getDeclaredInterfaceType = x.getDeclaredInterfaceType() and getType__label = "getType:" and getType = x.getType() } diff --git a/swift/ql/test/extractor-tests/generated/decl/EnumDecl/EnumDecl.expected b/swift/ql/test/extractor-tests/generated/decl/EnumDecl/EnumDecl.expected index 06c1789b3bcc..2b71460a07c5 100644 --- a/swift/ql/test/extractor-tests/generated/decl/EnumDecl/EnumDecl.expected +++ b/swift/ql/test/extractor-tests/generated/decl/EnumDecl/EnumDecl.expected @@ -1,9 +1,9 @@ instances -| enums.swift:1:1:4:1 | EnumValues | getModule: | file://:0:0:0:0 | enums | getInterfaceType: | EnumValues.Type | getName: | EnumValues | getType: | EnumValues | -| enums.swift:7:1:10:1 | EnumValuesWithBase | getModule: | file://:0:0:0:0 | enums | getInterfaceType: | EnumValuesWithBase.Type | getName: | EnumValuesWithBase | getType: | EnumValuesWithBase | -| enums.swift:12:1:16:1 | EnumWithParams | getModule: | file://:0:0:0:0 | enums | getInterfaceType: | EnumWithParams.Type | getName: | EnumWithParams | getType: | EnumWithParams | -| enums.swift:18:1:21:1 | GenericEnum | getModule: | file://:0:0:0:0 | enums | getInterfaceType: | GenericEnum.Type | getName: | GenericEnum | getType: | GenericEnum | -| enums.swift:23:1:27:1 | EnumWithNamedParams | getModule: | file://:0:0:0:0 | enums | getInterfaceType: | EnumWithNamedParams.Type | getName: | EnumWithNamedParams | getType: | EnumWithNamedParams | +| enums.swift:1:1:4:1 | EnumValues | getModule: | file://:0:0:0:0 | enums | getInterfaceType: | EnumValues.Type | getName: | EnumValues | getDeclaredInterfaceType: | EnumValues | getType: | EnumValues | +| enums.swift:7:1:10:1 | EnumValuesWithBase | getModule: | file://:0:0:0:0 | enums | getInterfaceType: | EnumValuesWithBase.Type | getName: | EnumValuesWithBase | getDeclaredInterfaceType: | EnumValuesWithBase | getType: | EnumValuesWithBase | +| enums.swift:12:1:16:1 | EnumWithParams | getModule: | file://:0:0:0:0 | enums | getInterfaceType: | EnumWithParams.Type | getName: | EnumWithParams | getDeclaredInterfaceType: | EnumWithParams | getType: | EnumWithParams | +| enums.swift:18:1:21:1 | GenericEnum | getModule: | file://:0:0:0:0 | enums | getInterfaceType: | GenericEnum.Type | getName: | GenericEnum | getDeclaredInterfaceType: | GenericEnum | getType: | GenericEnum | +| enums.swift:23:1:27:1 | EnumWithNamedParams | getModule: | file://:0:0:0:0 | enums | getInterfaceType: | EnumWithNamedParams.Type | getName: | EnumWithNamedParams | getDeclaredInterfaceType: | EnumWithNamedParams | getType: | EnumWithNamedParams | getGenericTypeParam | enums.swift:18:1:21:1 | GenericEnum | 0 | enums.swift:18:18:18:18 | T | getMember diff --git a/swift/ql/test/extractor-tests/generated/decl/EnumDecl/EnumDecl.ql b/swift/ql/test/extractor-tests/generated/decl/EnumDecl/EnumDecl.ql index dabf9078cea0..f5d9540c0f76 100644 --- a/swift/ql/test/extractor-tests/generated/decl/EnumDecl/EnumDecl.ql +++ b/swift/ql/test/extractor-tests/generated/decl/EnumDecl/EnumDecl.ql @@ -4,7 +4,9 @@ import TestUtils query predicate instances( EnumDecl x, string getModule__label, ModuleDecl getModule, string getInterfaceType__label, - Type getInterfaceType, string getName__label, string getName, string getType__label, Type getType + Type getInterfaceType, string getName__label, string getName, + string getDeclaredInterfaceType__label, Type getDeclaredInterfaceType, string getType__label, + Type getType ) { toBeTested(x) and not x.isUnknown() and @@ -14,6 +16,8 @@ query predicate instances( getInterfaceType = x.getInterfaceType() and getName__label = "getName:" and getName = x.getName() and + getDeclaredInterfaceType__label = "getDeclaredInterfaceType:" and + getDeclaredInterfaceType = x.getDeclaredInterfaceType() and getType__label = "getType:" and getType = x.getType() } diff --git a/swift/ql/test/extractor-tests/generated/decl/ModuleDecl/ModuleDecl.expected b/swift/ql/test/extractor-tests/generated/decl/ModuleDecl/ModuleDecl.expected index 42d051d0a4ff..3c06d59b026b 100644 --- a/swift/ql/test/extractor-tests/generated/decl/ModuleDecl/ModuleDecl.expected +++ b/swift/ql/test/extractor-tests/generated/decl/ModuleDecl/ModuleDecl.expected @@ -1,7 +1,7 @@ instances -| file://:0:0:0:0 | Foo | getModule: | file://:0:0:0:0 | Foo | getInterfaceType: | module | getName: | Foo | isBuiltinModule: | no | isSystemModule: | no | -| file://:0:0:0:0 | __ObjC | getModule: | file://:0:0:0:0 | __ObjC | getInterfaceType: | module<__ObjC> | getName: | __ObjC | isBuiltinModule: | no | isSystemModule: | no | -| file://:0:0:0:0 | default_module_name | getModule: | file://:0:0:0:0 | default_module_name | getInterfaceType: | module | getName: | default_module_name | isBuiltinModule: | no | isSystemModule: | no | +| file://:0:0:0:0 | Foo | getModule: | file://:0:0:0:0 | Foo | getInterfaceType: | module | getName: | Foo | getDeclaredInterfaceType: | module | isBuiltinModule: | no | isSystemModule: | no | +| file://:0:0:0:0 | __ObjC | getModule: | file://:0:0:0:0 | __ObjC | getInterfaceType: | module<__ObjC> | getName: | __ObjC | getDeclaredInterfaceType: | module<__ObjC> | isBuiltinModule: | no | isSystemModule: | no | +| file://:0:0:0:0 | default_module_name | getModule: | file://:0:0:0:0 | default_module_name | getInterfaceType: | module | getName: | default_module_name | getDeclaredInterfaceType: | module | isBuiltinModule: | no | isSystemModule: | no | getMember getInheritedType getAnImportedModule diff --git a/swift/ql/test/extractor-tests/generated/decl/ModuleDecl/ModuleDecl.ql b/swift/ql/test/extractor-tests/generated/decl/ModuleDecl/ModuleDecl.ql index 911474839d40..89d5438e07cd 100644 --- a/swift/ql/test/extractor-tests/generated/decl/ModuleDecl/ModuleDecl.ql +++ b/swift/ql/test/extractor-tests/generated/decl/ModuleDecl/ModuleDecl.ql @@ -4,8 +4,10 @@ import TestUtils query predicate instances( ModuleDecl x, string getModule__label, ModuleDecl getModule, string getInterfaceType__label, - Type getInterfaceType, string getName__label, string getName, string isBuiltinModule__label, - string isBuiltinModule, string isSystemModule__label, string isSystemModule + Type getInterfaceType, string getName__label, string getName, + string getDeclaredInterfaceType__label, Type getDeclaredInterfaceType, + string isBuiltinModule__label, string isBuiltinModule, string isSystemModule__label, + string isSystemModule ) { toBeTested(x) and not x.isUnknown() and @@ -15,6 +17,8 @@ query predicate instances( getInterfaceType = x.getInterfaceType() and getName__label = "getName:" and getName = x.getName() and + getDeclaredInterfaceType__label = "getDeclaredInterfaceType:" and + getDeclaredInterfaceType = x.getDeclaredInterfaceType() and isBuiltinModule__label = "isBuiltinModule:" and (if x.isBuiltinModule() then isBuiltinModule = "yes" else isBuiltinModule = "no") and isSystemModule__label = "isSystemModule:" and diff --git a/swift/ql/test/extractor-tests/generated/decl/OpaqueTypeDecl/OpaqueTypeDecl.expected b/swift/ql/test/extractor-tests/generated/decl/OpaqueTypeDecl/OpaqueTypeDecl.expected index 8a5d39063f54..846aeea5bae7 100644 --- a/swift/ql/test/extractor-tests/generated/decl/OpaqueTypeDecl/OpaqueTypeDecl.expected +++ b/swift/ql/test/extractor-tests/generated/decl/OpaqueTypeDecl/OpaqueTypeDecl.expected @@ -1,8 +1,8 @@ instances -| file://:0:0:0:0 | _ | getModule: | file://:0:0:0:0 | opaque_types | getInterfaceType: | (some Base).Type | getName: | _ | getNamingDeclaration: | opaque_types.swift:9:1:9:51 | baz(_:) | -| file://:0:0:0:0 | _ | getModule: | file://:0:0:0:0 | opaque_types | getInterfaceType: | (some P).Type | getName: | _ | getNamingDeclaration: | opaque_types.swift:5:1:5:45 | bar(_:) | -| file://:0:0:0:0 | _ | getModule: | file://:0:0:0:0 | opaque_types | getInterfaceType: | (some P).Type | getName: | _ | getNamingDeclaration: | opaque_types.swift:13:1:13:59 | bazz() | -| file://:0:0:0:0 | _ | getModule: | file://:0:0:0:0 | opaque_types | getInterfaceType: | (some SignedInteger).Type | getName: | _ | getNamingDeclaration: | opaque_types.swift:1:1:1:45 | foo() | +| file://:0:0:0:0 | _ | getModule: | file://:0:0:0:0 | opaque_types | getInterfaceType: | (some Base).Type | getName: | _ | getDeclaredInterfaceType: | some Base | getNamingDeclaration: | opaque_types.swift:9:1:9:51 | baz(_:) | +| file://:0:0:0:0 | _ | getModule: | file://:0:0:0:0 | opaque_types | getInterfaceType: | (some P).Type | getName: | _ | getDeclaredInterfaceType: | some P | getNamingDeclaration: | opaque_types.swift:5:1:5:45 | bar(_:) | +| file://:0:0:0:0 | _ | getModule: | file://:0:0:0:0 | opaque_types | getInterfaceType: | (some P).Type | getName: | _ | getDeclaredInterfaceType: | some P | getNamingDeclaration: | opaque_types.swift:13:1:13:59 | bazz() | +| file://:0:0:0:0 | _ | getModule: | file://:0:0:0:0 | opaque_types | getInterfaceType: | (some SignedInteger).Type | getName: | _ | getDeclaredInterfaceType: | some SignedInteger | getNamingDeclaration: | opaque_types.swift:1:1:1:45 | foo() | getGenericTypeParam getMember getInheritedType diff --git a/swift/ql/test/extractor-tests/generated/decl/OpaqueTypeDecl/OpaqueTypeDecl.ql b/swift/ql/test/extractor-tests/generated/decl/OpaqueTypeDecl/OpaqueTypeDecl.ql index 64b9149c1d00..aa34537f7ae8 100644 --- a/swift/ql/test/extractor-tests/generated/decl/OpaqueTypeDecl/OpaqueTypeDecl.ql +++ b/swift/ql/test/extractor-tests/generated/decl/OpaqueTypeDecl/OpaqueTypeDecl.ql @@ -4,8 +4,9 @@ import TestUtils query predicate instances( OpaqueTypeDecl x, string getModule__label, ModuleDecl getModule, string getInterfaceType__label, - Type getInterfaceType, string getName__label, string getName, string getNamingDeclaration__label, - ValueDecl getNamingDeclaration + Type getInterfaceType, string getName__label, string getName, + string getDeclaredInterfaceType__label, Type getDeclaredInterfaceType, + string getNamingDeclaration__label, ValueDecl getNamingDeclaration ) { toBeTested(x) and not x.isUnknown() and @@ -15,6 +16,8 @@ query predicate instances( getInterfaceType = x.getInterfaceType() and getName__label = "getName:" and getName = x.getName() and + getDeclaredInterfaceType__label = "getDeclaredInterfaceType:" and + getDeclaredInterfaceType = x.getDeclaredInterfaceType() and getNamingDeclaration__label = "getNamingDeclaration:" and getNamingDeclaration = x.getNamingDeclaration() } diff --git a/swift/schema.py b/swift/schema.py index febbf1ae2f47..31be5ee7d24c 100644 --- a/swift/schema.py +++ b/swift/schema.py @@ -278,6 +278,7 @@ class TypeDecl(ValueDecl): This only returns the types effectively appearing in the declaration. In particular it will not resolve `TypeAliasDecl`s or consider base types added by extensions. """) + declared_interface_type: Type class AbstractTypeParamDecl(TypeDecl): pass From 0aaa7d0631943d77e862f47fadf0c4e7ccd05d1a Mon Sep 17 00:00:00 2001 From: Owen Mansel-Chan <62447351+owen-mc@users.noreply.github.com> Date: Mon, 11 May 2026 16:15:50 +0100 Subject: [PATCH 231/260] Update expected test output --- .../root-internal-tests/test.expected | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/go/ql/integration-tests/root-internal-tests/test.expected b/go/ql/integration-tests/root-internal-tests/test.expected index 9f3d7b762c72..f68c14d1338b 100644 --- a/go/ql/integration-tests/root-internal-tests/test.expected +++ b/go/ql/integration-tests/root-internal-tests/test.expected @@ -1,7 +1,7 @@ #select -| src/main_test.go:0:0:0:0 | src/main_test.go | -| src/nested/nested_test.go:0:0:0:0 | src/nested/nested_test.go | +| main_test.go | +| nested/nested_test.go | testFunctions -| TestNestedFunc | src/nested/nested_test.go | -| TestPrivateFunc | src/main_test.go | -| TestPublicFunc | src/main_test.go | +| TestNestedFunc | nested/nested_test.go | +| TestPrivateFunc | main_test.go | +| TestPublicFunc | main_test.go | From 73a210a442853ddaa79031c3502ea0b89d703ac3 Mon Sep 17 00:00:00 2001 From: Jeroen Ketema Date: Mon, 11 May 2026 17:24:09 +0200 Subject: [PATCH 232/260] Swift: Add change note --- .../ql/lib/change-notes/2026-05-11-declared-interface-type.md | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 swift/ql/lib/change-notes/2026-05-11-declared-interface-type.md diff --git a/swift/ql/lib/change-notes/2026-05-11-declared-interface-type.md b/swift/ql/lib/change-notes/2026-05-11-declared-interface-type.md new file mode 100644 index 000000000000..c62130ee099a --- /dev/null +++ b/swift/ql/lib/change-notes/2026-05-11-declared-interface-type.md @@ -0,0 +1,4 @@ +--- +category: feature +--- +* The `TypeDecl` class now defines a `getDeclaredInterfaceType` predicate, which yields the declared interface type of the type declaration. From c5ae315dbe56b75e416c8fd08fa13dba0f04bd45 Mon Sep 17 00:00:00 2001 From: Taus Date: Tue, 12 May 2026 11:24:35 +0000 Subject: [PATCH 233/260] 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 5070bfb7c045..4fab55a6444f 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 b0667e120aa6..fd923a32e62b 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 000000000000..53796875297e --- /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 7ba115d0c83a..f865f22a1420 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 e294c43436e4..8cec03889a83 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 4ba2f43036a0..6b939358ed4b 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")); + + // 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); - let scanner_path = src_dir.join("scanner.c"); - c_config.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 87c3698a0e00..891df87778f0 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 59a53dadfa74..000000000000 --- 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 eee791a4367d..000000000000 --- 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 2ab3afaf36a9..000000000000 --- 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 1f4466d75c40..000000000000 --- 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 15a3b233bbb8..000000000000 --- 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 799f599bd4e2..000000000000 --- 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_ From 2e9de7878b3178c0dd0278000aa308eea4bd1734 Mon Sep 17 00:00:00 2001 From: Taus Date: Tue, 12 May 2026 11:25:15 +0000 Subject: [PATCH 234/260] unified: update build dependencies --- .../tree_sitter_extractors_deps/BUILD.bazel | 12 + .../BUILD.bindgen-0.72.1.bazel | 190 +++++++++ .../BUILD.cargo-util-schemas-0.8.2.bazel | 4 +- .../BUILD.cargo_metadata-0.21.0.bazel | 4 +- .../BUILD.cexpr-0.6.0.bazel | 100 +++++ .../BUILD.chalk-solve-0.103.0.bazel | 2 +- .../BUILD.clang-sys-1.8.1.bazel | 203 ++++++++++ .../BUILD.convert_case-0.8.0.bazel | 100 +++++ .../BUILD.fastrand-2.4.1.bazel | 97 +++++ .../BUILD.foldhash-0.2.0.bazel | 97 +++++ .../BUILD.hashbrown-0.16.1.bazel | 110 ++++++ .../BUILD.hashbrown-0.17.1.bazel | 97 +++++ ...11.4.bazel => BUILD.indexmap-2.14.0.bazel} | 6 +- .../BUILD.indoc-2.0.7.bazel | 97 +++++ .../BUILD.libloading-0.8.9.bazel | 190 +++++++++ .../BUILD.minimal-lexical-0.2.1.bazel | 100 +++++ .../BUILD.nom-7.1.3.bazel | 105 +++++ .../BUILD.pathdiff-0.2.3.bazel | 97 +++++ .../BUILD.petgraph-0.6.5.bazel | 2 +- ...ser-1.0.3.bazel => BUILD.phf-0.13.1.bazel} | 10 +- .../BUILD.phf_generator-0.13.1.bazel | 101 +++++ .../BUILD.phf_shared-0.13.1.bazel | 104 +++++ ....bazel => BUILD.prettyplease-0.2.37.bazel} | 30 +- .../BUILD.proc-macro-crate-3.5.0.bazel | 100 +++++ .../BUILD.ra_ap_base_db-0.0.301.bazel | 4 +- .../BUILD.ra_ap_hir-0.0.301.bazel | 2 +- .../BUILD.ra_ap_hir_def-0.0.301.bazel | 2 +- .../BUILD.ra_ap_hir_ty-0.0.301.bazel | 2 +- .../BUILD.ra_ap_ide_db-0.0.301.bazel | 2 +- .../BUILD.ra_ap_proc_macro_api-0.0.301.bazel | 2 +- .../BUILD.ra_ap_project_model-0.0.301.bazel | 2 +- .../BUILD.ra_ap_vfs-0.0.301.bazel | 2 +- .../BUILD.relative-path-2.0.1.bazel | 101 +++++ .../BUILD.rquickjs-0.10.0.bazel | 112 ++++++ .../BUILD.rquickjs-core-0.10.0.bazel | 110 ++++++ .../BUILD.rquickjs-macro-0.10.0.bazel | 116 ++++++ .../BUILD.rquickjs-sys-0.10.0.bazel | 177 +++++++++ .../BUILD.salsa-0.23.0.bazel | 2 +- .../BUILD.semver-1.0.28.bazel | 108 ++++++ .../BUILD.serde_json-1.0.145.bazel | 30 +- .../BUILD.serde_yaml-0.9.34+deprecated.bazel | 2 +- .../BUILD.siphasher-1.0.3.bazel | 101 +++++ .../BUILD.smallbitvec-2.6.1.bazel | 97 +++++ ....16.bazel => BUILD.thiserror-2.0.18.bazel} | 8 +- ...azel => BUILD.thiserror-impl-2.0.18.bazel} | 2 +- .../BUILD.toml-0.9.7.bazel | 2 +- ...BUILD.toml_datetime-1.1.1+spec-1.1.0.bazel | 102 +++++ .../BUILD.toml_edit-0.22.27.bazel | 2 +- .../BUILD.toml_edit-0.25.11+spec-1.1.0.bazel | 106 +++++ .../BUILD.toml_parser-1.1.2+spec-1.1.0.bazel | 151 ++++++++ .../BUILD.topological-sort-0.2.2.bazel | 97 +++++ .../BUILD.tree-sitter-generate-0.26.8.bazel | 124 ++++++ .../BUILD.unicode-segmentation-1.13.2.bazel | 97 +++++ .../BUILD.winnow-1.0.2.bazel | 220 +++++++++++ .../tree_sitter_extractors_deps/defs.bzl | 362 ++++++++++++++++-- 55 files changed, 4117 insertions(+), 88 deletions(-) create mode 100644 misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.bindgen-0.72.1.bazel create mode 100644 misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.cexpr-0.6.0.bazel create mode 100644 misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.clang-sys-1.8.1.bazel create mode 100644 misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.convert_case-0.8.0.bazel create mode 100644 misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.fastrand-2.4.1.bazel create mode 100644 misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.foldhash-0.2.0.bazel create mode 100644 misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.hashbrown-0.16.1.bazel create mode 100644 misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.hashbrown-0.17.1.bazel rename misc/bazel/3rdparty/tree_sitter_extractors_deps/{BUILD.indexmap-2.11.4.bazel => BUILD.indexmap-2.14.0.bazel} (97%) create mode 100644 misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.indoc-2.0.7.bazel create mode 100644 misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.libloading-0.8.9.bazel create mode 100644 misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.minimal-lexical-0.2.1.bazel create mode 100644 misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.nom-7.1.3.bazel create mode 100644 misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.pathdiff-0.2.3.bazel rename misc/bazel/3rdparty/tree_sitter_extractors_deps/{BUILD.toml_parser-1.0.3.bazel => BUILD.phf-0.13.1.bazel} (96%) create mode 100644 misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.phf_generator-0.13.1.bazel create mode 100644 misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.phf_shared-0.13.1.bazel rename misc/bazel/3rdparty/tree_sitter_extractors_deps/{BUILD.semver-1.0.26.bazel => BUILD.prettyplease-0.2.37.bazel} (92%) create mode 100644 misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.proc-macro-crate-3.5.0.bazel create mode 100644 misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.relative-path-2.0.1.bazel create mode 100644 misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.rquickjs-0.10.0.bazel create mode 100644 misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.rquickjs-core-0.10.0.bazel create mode 100644 misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.rquickjs-macro-0.10.0.bazel create mode 100644 misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.rquickjs-sys-0.10.0.bazel create mode 100644 misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.semver-1.0.28.bazel create mode 100644 misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.siphasher-1.0.3.bazel create mode 100644 misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.smallbitvec-2.6.1.bazel rename misc/bazel/3rdparty/tree_sitter_extractors_deps/{BUILD.thiserror-2.0.16.bazel => BUILD.thiserror-2.0.18.bazel} (96%) rename misc/bazel/3rdparty/tree_sitter_extractors_deps/{BUILD.thiserror-impl-2.0.16.bazel => BUILD.thiserror-impl-2.0.18.bazel} (99%) create mode 100644 misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.toml_datetime-1.1.1+spec-1.1.0.bazel create mode 100644 misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.toml_edit-0.25.11+spec-1.1.0.bazel create mode 100644 misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.toml_parser-1.1.2+spec-1.1.0.bazel create mode 100644 misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.topological-sort-0.2.2.bazel create mode 100644 misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.tree-sitter-generate-0.26.8.bazel create mode 100644 misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.unicode-segmentation-1.13.2.bazel create mode 100644 misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.winnow-1.0.2.bazel diff --git a/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.bazel b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.bazel index e296288f189c..bb32aa97a5e2 100644 --- a/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.bazel +++ b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.bazel @@ -637,6 +637,18 @@ alias( tags = ["manual"], ) +alias( + name = "tree-sitter-generate-0.26.8", + actual = "@vendor_ts__tree-sitter-generate-0.26.8//:tree_sitter_generate", + tags = ["manual"], +) + +alias( + name = "tree-sitter-generate", + actual = "@vendor_ts__tree-sitter-generate-0.26.8//:tree_sitter_generate", + tags = ["manual"], +) + alias( name = "tree-sitter-json-0.24.8", actual = "@vendor_ts__tree-sitter-json-0.24.8//:tree_sitter_json", diff --git a/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.bindgen-0.72.1.bazel b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.bindgen-0.72.1.bazel new file mode 100644 index 000000000000..903b1c8fc773 --- /dev/null +++ b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.bindgen-0.72.1.bazel @@ -0,0 +1,190 @@ +############################################################################### +# @generated +# DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To +# regenerate this file, run the following: +# +# bazel run @@//misc/bazel/3rdparty:vendor_tree_sitter_extractors +############################################################################### + +load( + "@rules_rust//cargo:defs.bzl", + "cargo_build_script", + "cargo_toml_env_vars", +) +load("@rules_rust//rust:defs.bzl", "rust_library") + +package(default_visibility = ["//visibility:public"]) + +cargo_toml_env_vars( + name = "cargo_toml_env_vars", + src = "Cargo.toml", +) + +rust_library( + name = "bindgen", + srcs = glob( + include = ["**/*.rs"], + allow_empty = True, + ), + compile_data = glob( + include = ["**"], + allow_empty = True, + exclude = [ + "**/* *", + ".tmp_git_root/**/*", + "BUILD", + "BUILD.bazel", + "WORKSPACE", + "WORKSPACE.bazel", + ], + ), + crate_features = [ + "default", + "logging", + "prettyplease", + "runtime", + ], + crate_root = "lib.rs", + edition = "2021", + rustc_env_files = [ + ":cargo_toml_env_vars", + ], + rustc_flags = [ + "--cap-lints=allow", + ], + tags = [ + "cargo-bazel", + "crate-name=bindgen", + "manual", + "noclippy", + "norustfmt", + ], + target_compatible_with = select({ + "@rules_rust//rust/platform:aarch64-apple-darwin": [], + "@rules_rust//rust/platform:aarch64-apple-ios": [], + "@rules_rust//rust/platform:aarch64-apple-ios-sim": [], + "@rules_rust//rust/platform:aarch64-linux-android": [], + "@rules_rust//rust/platform:aarch64-pc-windows-msvc": [], + "@rules_rust//rust/platform:aarch64-unknown-fuchsia": [], + "@rules_rust//rust/platform:aarch64-unknown-linux-gnu": [], + "@rules_rust//rust/platform:aarch64-unknown-nixos-gnu": [], + "@rules_rust//rust/platform:aarch64-unknown-nto-qnx710": [], + "@rules_rust//rust/platform:aarch64-unknown-uefi": [], + "@rules_rust//rust/platform:arm-unknown-linux-gnueabi": [], + "@rules_rust//rust/platform:arm-unknown-linux-musleabi": [], + "@rules_rust//rust/platform:armv7-linux-androideabi": [], + "@rules_rust//rust/platform:armv7-unknown-linux-gnueabi": [], + "@rules_rust//rust/platform:i686-apple-darwin": [], + "@rules_rust//rust/platform:i686-linux-android": [], + "@rules_rust//rust/platform:i686-pc-windows-msvc": [], + "@rules_rust//rust/platform:i686-unknown-freebsd": [], + "@rules_rust//rust/platform:i686-unknown-linux-gnu": [], + "@rules_rust//rust/platform:powerpc-unknown-linux-gnu": [], + "@rules_rust//rust/platform:riscv32imc-unknown-none-elf": [], + "@rules_rust//rust/platform:riscv64gc-unknown-linux-gnu": [], + "@rules_rust//rust/platform:riscv64gc-unknown-none-elf": [], + "@rules_rust//rust/platform:s390x-unknown-linux-gnu": [], + "@rules_rust//rust/platform:thumbv7em-none-eabi": [], + "@rules_rust//rust/platform:thumbv8m.main-none-eabi": [], + "@rules_rust//rust/platform:wasm32-unknown-emscripten": [], + "@rules_rust//rust/platform:wasm32-unknown-unknown": [], + "@rules_rust//rust/platform:wasm32-wasip1": [], + "@rules_rust//rust/platform:wasm32-wasip1-threads": [], + "@rules_rust//rust/platform:wasm32-wasip2": [], + "@rules_rust//rust/platform:x86_64-apple-darwin": [], + "@rules_rust//rust/platform:x86_64-apple-ios": [], + "@rules_rust//rust/platform:x86_64-linux-android": [], + "@rules_rust//rust/platform:x86_64-pc-windows-msvc": [], + "@rules_rust//rust/platform:x86_64-unknown-freebsd": [], + "@rules_rust//rust/platform:x86_64-unknown-fuchsia": [], + "@rules_rust//rust/platform:x86_64-unknown-linux-gnu": [], + "@rules_rust//rust/platform:x86_64-unknown-nixos-gnu": [], + "@rules_rust//rust/platform:x86_64-unknown-none": [], + "@rules_rust//rust/platform:x86_64-unknown-uefi": [], + "//conditions:default": ["@platforms//:incompatible"], + }), + version = "0.72.1", + deps = [ + "@vendor_ts__bindgen-0.72.1//:build_script_build", + "@vendor_ts__bitflags-2.9.4//:bitflags", + "@vendor_ts__cexpr-0.6.0//:cexpr", + "@vendor_ts__clang-sys-1.8.1//:clang_sys", + "@vendor_ts__itertools-0.12.1//:itertools", + "@vendor_ts__log-0.4.28//:log", + "@vendor_ts__prettyplease-0.2.37//:prettyplease", + "@vendor_ts__proc-macro2-1.0.101//:proc_macro2", + "@vendor_ts__quote-1.0.41//:quote", + "@vendor_ts__regex-1.11.3//:regex", + "@vendor_ts__rustc-hash-2.1.1//:rustc_hash", + "@vendor_ts__shlex-1.3.0//:shlex", + "@vendor_ts__syn-2.0.106//:syn", + ], +) + +cargo_build_script( + name = "_bs", + srcs = glob( + include = ["**/*.rs"], + allow_empty = True, + ), + compile_data = glob( + include = ["**"], + allow_empty = True, + exclude = [ + "**/* *", + "**/*.rs", + ".tmp_git_root/**/*", + "BUILD", + "BUILD.bazel", + "WORKSPACE", + "WORKSPACE.bazel", + ], + ), + crate_features = [ + "default", + "logging", + "prettyplease", + "runtime", + ], + crate_name = "build_script_build", + crate_root = "build.rs", + data = glob( + include = ["**"], + allow_empty = True, + exclude = [ + "**/* *", + ".tmp_git_root/**/*", + "BUILD", + "BUILD.bazel", + "WORKSPACE", + "WORKSPACE.bazel", + ], + ), + edition = "2021", + link_deps = [ + "@vendor_ts__clang-sys-1.8.1//:clang_sys", + "@vendor_ts__prettyplease-0.2.37//:prettyplease", + ], + pkg_name = "bindgen", + rustc_env_files = [ + ":cargo_toml_env_vars", + ], + rustc_flags = [ + "--cap-lints=allow", + ], + tags = [ + "cargo-bazel", + "crate-name=bindgen", + "manual", + "noclippy", + "norustfmt", + ], + version = "0.72.1", + visibility = ["//visibility:private"], +) + +alias( + name = "build_script_build", + actual = ":_bs", + tags = ["manual"], +) diff --git a/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.cargo-util-schemas-0.8.2.bazel b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.cargo-util-schemas-0.8.2.bazel index 802e8d678083..79d9696b3cd8 100644 --- a/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.cargo-util-schemas-0.8.2.bazel +++ b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.cargo-util-schemas-0.8.2.bazel @@ -95,11 +95,11 @@ rust_library( }), version = "0.8.2", deps = [ - "@vendor_ts__semver-1.0.26//:semver", + "@vendor_ts__semver-1.0.28//:semver", "@vendor_ts__serde-1.0.228//:serde", "@vendor_ts__serde-untagged-0.1.8//:serde_untagged", "@vendor_ts__serde-value-0.7.0//:serde_value", - "@vendor_ts__thiserror-2.0.16//:thiserror", + "@vendor_ts__thiserror-2.0.18//:thiserror", "@vendor_ts__toml-0.8.23//:toml", "@vendor_ts__unicode-xid-0.2.6//:unicode_xid", "@vendor_ts__url-2.5.7//:url", diff --git a/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.cargo_metadata-0.21.0.bazel b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.cargo_metadata-0.21.0.bazel index aefea796d4c3..10cd194b507d 100644 --- a/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.cargo_metadata-0.21.0.bazel +++ b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.cargo_metadata-0.21.0.bazel @@ -101,9 +101,9 @@ rust_library( "@vendor_ts__camino-1.1.12//:camino", "@vendor_ts__cargo-platform-0.2.0//:cargo_platform", "@vendor_ts__cargo-util-schemas-0.8.2//:cargo_util_schemas", - "@vendor_ts__semver-1.0.26//:semver", + "@vendor_ts__semver-1.0.28//:semver", "@vendor_ts__serde-1.0.228//:serde", "@vendor_ts__serde_json-1.0.145//:serde_json", - "@vendor_ts__thiserror-2.0.16//:thiserror", + "@vendor_ts__thiserror-2.0.18//:thiserror", ], ) diff --git a/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.cexpr-0.6.0.bazel b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.cexpr-0.6.0.bazel new file mode 100644 index 000000000000..500c657be108 --- /dev/null +++ b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.cexpr-0.6.0.bazel @@ -0,0 +1,100 @@ +############################################################################### +# @generated +# DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To +# regenerate this file, run the following: +# +# bazel run @@//misc/bazel/3rdparty:vendor_tree_sitter_extractors +############################################################################### + +load("@rules_rust//cargo:defs.bzl", "cargo_toml_env_vars") +load("@rules_rust//rust:defs.bzl", "rust_library") + +package(default_visibility = ["//visibility:public"]) + +cargo_toml_env_vars( + name = "cargo_toml_env_vars", + src = "Cargo.toml", +) + +rust_library( + name = "cexpr", + srcs = glob( + include = ["**/*.rs"], + allow_empty = True, + ), + compile_data = glob( + include = ["**"], + allow_empty = True, + exclude = [ + "**/* *", + ".tmp_git_root/**/*", + "BUILD", + "BUILD.bazel", + "WORKSPACE", + "WORKSPACE.bazel", + ], + ), + crate_root = "src/lib.rs", + edition = "2018", + rustc_env_files = [ + ":cargo_toml_env_vars", + ], + rustc_flags = [ + "--cap-lints=allow", + ], + tags = [ + "cargo-bazel", + "crate-name=cexpr", + "manual", + "noclippy", + "norustfmt", + ], + target_compatible_with = select({ + "@rules_rust//rust/platform:aarch64-apple-darwin": [], + "@rules_rust//rust/platform:aarch64-apple-ios": [], + "@rules_rust//rust/platform:aarch64-apple-ios-sim": [], + "@rules_rust//rust/platform:aarch64-linux-android": [], + "@rules_rust//rust/platform:aarch64-pc-windows-msvc": [], + "@rules_rust//rust/platform:aarch64-unknown-fuchsia": [], + "@rules_rust//rust/platform:aarch64-unknown-linux-gnu": [], + "@rules_rust//rust/platform:aarch64-unknown-nixos-gnu": [], + "@rules_rust//rust/platform:aarch64-unknown-nto-qnx710": [], + "@rules_rust//rust/platform:aarch64-unknown-uefi": [], + "@rules_rust//rust/platform:arm-unknown-linux-gnueabi": [], + "@rules_rust//rust/platform:arm-unknown-linux-musleabi": [], + "@rules_rust//rust/platform:armv7-linux-androideabi": [], + "@rules_rust//rust/platform:armv7-unknown-linux-gnueabi": [], + "@rules_rust//rust/platform:i686-apple-darwin": [], + "@rules_rust//rust/platform:i686-linux-android": [], + "@rules_rust//rust/platform:i686-pc-windows-msvc": [], + "@rules_rust//rust/platform:i686-unknown-freebsd": [], + "@rules_rust//rust/platform:i686-unknown-linux-gnu": [], + "@rules_rust//rust/platform:powerpc-unknown-linux-gnu": [], + "@rules_rust//rust/platform:riscv32imc-unknown-none-elf": [], + "@rules_rust//rust/platform:riscv64gc-unknown-linux-gnu": [], + "@rules_rust//rust/platform:riscv64gc-unknown-none-elf": [], + "@rules_rust//rust/platform:s390x-unknown-linux-gnu": [], + "@rules_rust//rust/platform:thumbv7em-none-eabi": [], + "@rules_rust//rust/platform:thumbv8m.main-none-eabi": [], + "@rules_rust//rust/platform:wasm32-unknown-emscripten": [], + "@rules_rust//rust/platform:wasm32-unknown-unknown": [], + "@rules_rust//rust/platform:wasm32-wasip1": [], + "@rules_rust//rust/platform:wasm32-wasip1-threads": [], + "@rules_rust//rust/platform:wasm32-wasip2": [], + "@rules_rust//rust/platform:x86_64-apple-darwin": [], + "@rules_rust//rust/platform:x86_64-apple-ios": [], + "@rules_rust//rust/platform:x86_64-linux-android": [], + "@rules_rust//rust/platform:x86_64-pc-windows-msvc": [], + "@rules_rust//rust/platform:x86_64-unknown-freebsd": [], + "@rules_rust//rust/platform:x86_64-unknown-fuchsia": [], + "@rules_rust//rust/platform:x86_64-unknown-linux-gnu": [], + "@rules_rust//rust/platform:x86_64-unknown-nixos-gnu": [], + "@rules_rust//rust/platform:x86_64-unknown-none": [], + "@rules_rust//rust/platform:x86_64-unknown-uefi": [], + "//conditions:default": ["@platforms//:incompatible"], + }), + version = "0.6.0", + deps = [ + "@vendor_ts__nom-7.1.3//:nom", + ], +) diff --git a/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.chalk-solve-0.103.0.bazel b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.chalk-solve-0.103.0.bazel index f1124f1108fa..4fb684fec28b 100644 --- a/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.chalk-solve-0.103.0.bazel +++ b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.chalk-solve-0.103.0.bazel @@ -100,7 +100,7 @@ rust_library( deps = [ "@vendor_ts__chalk-ir-0.103.0//:chalk_ir", "@vendor_ts__ena-0.14.3//:ena", - "@vendor_ts__indexmap-2.11.4//:indexmap", + "@vendor_ts__indexmap-2.14.0//:indexmap", "@vendor_ts__itertools-0.12.1//:itertools", "@vendor_ts__petgraph-0.6.5//:petgraph", "@vendor_ts__rustc-hash-1.1.0//:rustc_hash", diff --git a/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.clang-sys-1.8.1.bazel b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.clang-sys-1.8.1.bazel new file mode 100644 index 000000000000..b039f4c28e5b --- /dev/null +++ b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.clang-sys-1.8.1.bazel @@ -0,0 +1,203 @@ +############################################################################### +# @generated +# DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To +# regenerate this file, run the following: +# +# bazel run @@//misc/bazel/3rdparty:vendor_tree_sitter_extractors +############################################################################### + +load( + "@rules_rust//cargo:defs.bzl", + "cargo_build_script", + "cargo_toml_env_vars", +) +load("@rules_rust//rust:defs.bzl", "rust_library") + +package(default_visibility = ["//visibility:public"]) + +cargo_toml_env_vars( + name = "cargo_toml_env_vars", + src = "Cargo.toml", +) + +rust_library( + name = "clang_sys", + srcs = glob( + include = ["**/*.rs"], + allow_empty = True, + ), + compile_data = glob( + include = ["**"], + allow_empty = True, + exclude = [ + "**/* *", + ".tmp_git_root/**/*", + "BUILD", + "BUILD.bazel", + "WORKSPACE", + "WORKSPACE.bazel", + ], + ), + crate_features = [ + "clang_10_0", + "clang_11_0", + "clang_3_5", + "clang_3_6", + "clang_3_7", + "clang_3_8", + "clang_3_9", + "clang_4_0", + "clang_5_0", + "clang_6_0", + "clang_7_0", + "clang_8_0", + "clang_9_0", + "libloading", + "runtime", + ], + crate_root = "src/lib.rs", + edition = "2021", + rustc_env_files = [ + ":cargo_toml_env_vars", + ], + rustc_flags = [ + "--cap-lints=allow", + ], + tags = [ + "cargo-bazel", + "crate-name=clang-sys", + "manual", + "noclippy", + "norustfmt", + ], + target_compatible_with = select({ + "@rules_rust//rust/platform:aarch64-apple-darwin": [], + "@rules_rust//rust/platform:aarch64-apple-ios": [], + "@rules_rust//rust/platform:aarch64-apple-ios-sim": [], + "@rules_rust//rust/platform:aarch64-linux-android": [], + "@rules_rust//rust/platform:aarch64-pc-windows-msvc": [], + "@rules_rust//rust/platform:aarch64-unknown-fuchsia": [], + "@rules_rust//rust/platform:aarch64-unknown-linux-gnu": [], + "@rules_rust//rust/platform:aarch64-unknown-nixos-gnu": [], + "@rules_rust//rust/platform:aarch64-unknown-nto-qnx710": [], + "@rules_rust//rust/platform:aarch64-unknown-uefi": [], + "@rules_rust//rust/platform:arm-unknown-linux-gnueabi": [], + "@rules_rust//rust/platform:arm-unknown-linux-musleabi": [], + "@rules_rust//rust/platform:armv7-linux-androideabi": [], + "@rules_rust//rust/platform:armv7-unknown-linux-gnueabi": [], + "@rules_rust//rust/platform:i686-apple-darwin": [], + "@rules_rust//rust/platform:i686-linux-android": [], + "@rules_rust//rust/platform:i686-pc-windows-msvc": [], + "@rules_rust//rust/platform:i686-unknown-freebsd": [], + "@rules_rust//rust/platform:i686-unknown-linux-gnu": [], + "@rules_rust//rust/platform:powerpc-unknown-linux-gnu": [], + "@rules_rust//rust/platform:riscv32imc-unknown-none-elf": [], + "@rules_rust//rust/platform:riscv64gc-unknown-linux-gnu": [], + "@rules_rust//rust/platform:riscv64gc-unknown-none-elf": [], + "@rules_rust//rust/platform:s390x-unknown-linux-gnu": [], + "@rules_rust//rust/platform:thumbv7em-none-eabi": [], + "@rules_rust//rust/platform:thumbv8m.main-none-eabi": [], + "@rules_rust//rust/platform:wasm32-unknown-emscripten": [], + "@rules_rust//rust/platform:wasm32-unknown-unknown": [], + "@rules_rust//rust/platform:wasm32-wasip1": [], + "@rules_rust//rust/platform:wasm32-wasip1-threads": [], + "@rules_rust//rust/platform:wasm32-wasip2": [], + "@rules_rust//rust/platform:x86_64-apple-darwin": [], + "@rules_rust//rust/platform:x86_64-apple-ios": [], + "@rules_rust//rust/platform:x86_64-linux-android": [], + "@rules_rust//rust/platform:x86_64-pc-windows-msvc": [], + "@rules_rust//rust/platform:x86_64-unknown-freebsd": [], + "@rules_rust//rust/platform:x86_64-unknown-fuchsia": [], + "@rules_rust//rust/platform:x86_64-unknown-linux-gnu": [], + "@rules_rust//rust/platform:x86_64-unknown-nixos-gnu": [], + "@rules_rust//rust/platform:x86_64-unknown-none": [], + "@rules_rust//rust/platform:x86_64-unknown-uefi": [], + "//conditions:default": ["@platforms//:incompatible"], + }), + version = "1.8.1", + deps = [ + "@vendor_ts__clang-sys-1.8.1//:build_script_build", + "@vendor_ts__glob-0.3.3//:glob", + "@vendor_ts__libc-0.2.175//:libc", + "@vendor_ts__libloading-0.8.9//:libloading", + ], +) + +cargo_build_script( + name = "_bs", + srcs = glob( + include = ["**/*.rs"], + allow_empty = True, + ), + compile_data = glob( + include = ["**"], + allow_empty = True, + exclude = [ + "**/* *", + "**/*.rs", + ".tmp_git_root/**/*", + "BUILD", + "BUILD.bazel", + "WORKSPACE", + "WORKSPACE.bazel", + ], + ), + crate_features = [ + "clang_10_0", + "clang_11_0", + "clang_3_5", + "clang_3_6", + "clang_3_7", + "clang_3_8", + "clang_3_9", + "clang_4_0", + "clang_5_0", + "clang_6_0", + "clang_7_0", + "clang_8_0", + "clang_9_0", + "libloading", + "runtime", + ], + crate_name = "build_script_build", + crate_root = "build.rs", + data = glob( + include = ["**"], + allow_empty = True, + exclude = [ + "**/* *", + ".tmp_git_root/**/*", + "BUILD", + "BUILD.bazel", + "WORKSPACE", + "WORKSPACE.bazel", + ], + ), + edition = "2021", + links = "clang", + pkg_name = "clang-sys", + rustc_env_files = [ + ":cargo_toml_env_vars", + ], + rustc_flags = [ + "--cap-lints=allow", + ], + tags = [ + "cargo-bazel", + "crate-name=clang-sys", + "manual", + "noclippy", + "norustfmt", + ], + version = "1.8.1", + visibility = ["//visibility:private"], + deps = [ + "@vendor_ts__glob-0.3.3//:glob", + ], +) + +alias( + name = "build_script_build", + actual = ":_bs", + tags = ["manual"], +) diff --git a/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.convert_case-0.8.0.bazel b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.convert_case-0.8.0.bazel new file mode 100644 index 000000000000..a1a2df07bf1f --- /dev/null +++ b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.convert_case-0.8.0.bazel @@ -0,0 +1,100 @@ +############################################################################### +# @generated +# DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To +# regenerate this file, run the following: +# +# bazel run @@//misc/bazel/3rdparty:vendor_tree_sitter_extractors +############################################################################### + +load("@rules_rust//cargo:defs.bzl", "cargo_toml_env_vars") +load("@rules_rust//rust:defs.bzl", "rust_library") + +package(default_visibility = ["//visibility:public"]) + +cargo_toml_env_vars( + name = "cargo_toml_env_vars", + src = "Cargo.toml", +) + +rust_library( + name = "convert_case", + srcs = glob( + include = ["**/*.rs"], + allow_empty = True, + ), + compile_data = glob( + include = ["**"], + allow_empty = True, + exclude = [ + "**/* *", + ".tmp_git_root/**/*", + "BUILD", + "BUILD.bazel", + "WORKSPACE", + "WORKSPACE.bazel", + ], + ), + crate_root = "src/lib.rs", + edition = "2021", + rustc_env_files = [ + ":cargo_toml_env_vars", + ], + rustc_flags = [ + "--cap-lints=allow", + ], + tags = [ + "cargo-bazel", + "crate-name=convert_case", + "manual", + "noclippy", + "norustfmt", + ], + target_compatible_with = select({ + "@rules_rust//rust/platform:aarch64-apple-darwin": [], + "@rules_rust//rust/platform:aarch64-apple-ios": [], + "@rules_rust//rust/platform:aarch64-apple-ios-sim": [], + "@rules_rust//rust/platform:aarch64-linux-android": [], + "@rules_rust//rust/platform:aarch64-pc-windows-msvc": [], + "@rules_rust//rust/platform:aarch64-unknown-fuchsia": [], + "@rules_rust//rust/platform:aarch64-unknown-linux-gnu": [], + "@rules_rust//rust/platform:aarch64-unknown-nixos-gnu": [], + "@rules_rust//rust/platform:aarch64-unknown-nto-qnx710": [], + "@rules_rust//rust/platform:aarch64-unknown-uefi": [], + "@rules_rust//rust/platform:arm-unknown-linux-gnueabi": [], + "@rules_rust//rust/platform:arm-unknown-linux-musleabi": [], + "@rules_rust//rust/platform:armv7-linux-androideabi": [], + "@rules_rust//rust/platform:armv7-unknown-linux-gnueabi": [], + "@rules_rust//rust/platform:i686-apple-darwin": [], + "@rules_rust//rust/platform:i686-linux-android": [], + "@rules_rust//rust/platform:i686-pc-windows-msvc": [], + "@rules_rust//rust/platform:i686-unknown-freebsd": [], + "@rules_rust//rust/platform:i686-unknown-linux-gnu": [], + "@rules_rust//rust/platform:powerpc-unknown-linux-gnu": [], + "@rules_rust//rust/platform:riscv32imc-unknown-none-elf": [], + "@rules_rust//rust/platform:riscv64gc-unknown-linux-gnu": [], + "@rules_rust//rust/platform:riscv64gc-unknown-none-elf": [], + "@rules_rust//rust/platform:s390x-unknown-linux-gnu": [], + "@rules_rust//rust/platform:thumbv7em-none-eabi": [], + "@rules_rust//rust/platform:thumbv8m.main-none-eabi": [], + "@rules_rust//rust/platform:wasm32-unknown-emscripten": [], + "@rules_rust//rust/platform:wasm32-unknown-unknown": [], + "@rules_rust//rust/platform:wasm32-wasip1": [], + "@rules_rust//rust/platform:wasm32-wasip1-threads": [], + "@rules_rust//rust/platform:wasm32-wasip2": [], + "@rules_rust//rust/platform:x86_64-apple-darwin": [], + "@rules_rust//rust/platform:x86_64-apple-ios": [], + "@rules_rust//rust/platform:x86_64-linux-android": [], + "@rules_rust//rust/platform:x86_64-pc-windows-msvc": [], + "@rules_rust//rust/platform:x86_64-unknown-freebsd": [], + "@rules_rust//rust/platform:x86_64-unknown-fuchsia": [], + "@rules_rust//rust/platform:x86_64-unknown-linux-gnu": [], + "@rules_rust//rust/platform:x86_64-unknown-nixos-gnu": [], + "@rules_rust//rust/platform:x86_64-unknown-none": [], + "@rules_rust//rust/platform:x86_64-unknown-uefi": [], + "//conditions:default": ["@platforms//:incompatible"], + }), + version = "0.8.0", + deps = [ + "@vendor_ts__unicode-segmentation-1.13.2//:unicode_segmentation", + ], +) diff --git a/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.fastrand-2.4.1.bazel b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.fastrand-2.4.1.bazel new file mode 100644 index 000000000000..f6f016a9f467 --- /dev/null +++ b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.fastrand-2.4.1.bazel @@ -0,0 +1,97 @@ +############################################################################### +# @generated +# DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To +# regenerate this file, run the following: +# +# bazel run @@//misc/bazel/3rdparty:vendor_tree_sitter_extractors +############################################################################### + +load("@rules_rust//cargo:defs.bzl", "cargo_toml_env_vars") +load("@rules_rust//rust:defs.bzl", "rust_library") + +package(default_visibility = ["//visibility:public"]) + +cargo_toml_env_vars( + name = "cargo_toml_env_vars", + src = "Cargo.toml", +) + +rust_library( + name = "fastrand", + srcs = glob( + include = ["**/*.rs"], + allow_empty = True, + ), + compile_data = glob( + include = ["**"], + allow_empty = True, + exclude = [ + "**/* *", + ".tmp_git_root/**/*", + "BUILD", + "BUILD.bazel", + "WORKSPACE", + "WORKSPACE.bazel", + ], + ), + crate_root = "src/lib.rs", + edition = "2018", + rustc_env_files = [ + ":cargo_toml_env_vars", + ], + rustc_flags = [ + "--cap-lints=allow", + ], + tags = [ + "cargo-bazel", + "crate-name=fastrand", + "manual", + "noclippy", + "norustfmt", + ], + target_compatible_with = select({ + "@rules_rust//rust/platform:aarch64-apple-darwin": [], + "@rules_rust//rust/platform:aarch64-apple-ios": [], + "@rules_rust//rust/platform:aarch64-apple-ios-sim": [], + "@rules_rust//rust/platform:aarch64-linux-android": [], + "@rules_rust//rust/platform:aarch64-pc-windows-msvc": [], + "@rules_rust//rust/platform:aarch64-unknown-fuchsia": [], + "@rules_rust//rust/platform:aarch64-unknown-linux-gnu": [], + "@rules_rust//rust/platform:aarch64-unknown-nixos-gnu": [], + "@rules_rust//rust/platform:aarch64-unknown-nto-qnx710": [], + "@rules_rust//rust/platform:aarch64-unknown-uefi": [], + "@rules_rust//rust/platform:arm-unknown-linux-gnueabi": [], + "@rules_rust//rust/platform:arm-unknown-linux-musleabi": [], + "@rules_rust//rust/platform:armv7-linux-androideabi": [], + "@rules_rust//rust/platform:armv7-unknown-linux-gnueabi": [], + "@rules_rust//rust/platform:i686-apple-darwin": [], + "@rules_rust//rust/platform:i686-linux-android": [], + "@rules_rust//rust/platform:i686-pc-windows-msvc": [], + "@rules_rust//rust/platform:i686-unknown-freebsd": [], + "@rules_rust//rust/platform:i686-unknown-linux-gnu": [], + "@rules_rust//rust/platform:powerpc-unknown-linux-gnu": [], + "@rules_rust//rust/platform:riscv32imc-unknown-none-elf": [], + "@rules_rust//rust/platform:riscv64gc-unknown-linux-gnu": [], + "@rules_rust//rust/platform:riscv64gc-unknown-none-elf": [], + "@rules_rust//rust/platform:s390x-unknown-linux-gnu": [], + "@rules_rust//rust/platform:thumbv7em-none-eabi": [], + "@rules_rust//rust/platform:thumbv8m.main-none-eabi": [], + "@rules_rust//rust/platform:wasm32-unknown-emscripten": [], + "@rules_rust//rust/platform:wasm32-unknown-unknown": [], + "@rules_rust//rust/platform:wasm32-wasip1": [], + "@rules_rust//rust/platform:wasm32-wasip1-threads": [], + "@rules_rust//rust/platform:wasm32-wasip2": [], + "@rules_rust//rust/platform:x86_64-apple-darwin": [], + "@rules_rust//rust/platform:x86_64-apple-ios": [], + "@rules_rust//rust/platform:x86_64-linux-android": [], + "@rules_rust//rust/platform:x86_64-pc-windows-msvc": [], + "@rules_rust//rust/platform:x86_64-unknown-freebsd": [], + "@rules_rust//rust/platform:x86_64-unknown-fuchsia": [], + "@rules_rust//rust/platform:x86_64-unknown-linux-gnu": [], + "@rules_rust//rust/platform:x86_64-unknown-nixos-gnu": [], + "@rules_rust//rust/platform:x86_64-unknown-none": [], + "@rules_rust//rust/platform:x86_64-unknown-uefi": [], + "//conditions:default": ["@platforms//:incompatible"], + }), + version = "2.4.1", +) diff --git a/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.foldhash-0.2.0.bazel b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.foldhash-0.2.0.bazel new file mode 100644 index 000000000000..03940fb08ac2 --- /dev/null +++ b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.foldhash-0.2.0.bazel @@ -0,0 +1,97 @@ +############################################################################### +# @generated +# DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To +# regenerate this file, run the following: +# +# bazel run @@//misc/bazel/3rdparty:vendor_tree_sitter_extractors +############################################################################### + +load("@rules_rust//cargo:defs.bzl", "cargo_toml_env_vars") +load("@rules_rust//rust:defs.bzl", "rust_library") + +package(default_visibility = ["//visibility:public"]) + +cargo_toml_env_vars( + name = "cargo_toml_env_vars", + src = "Cargo.toml", +) + +rust_library( + name = "foldhash", + srcs = glob( + include = ["**/*.rs"], + allow_empty = True, + ), + compile_data = glob( + include = ["**"], + allow_empty = True, + exclude = [ + "**/* *", + ".tmp_git_root/**/*", + "BUILD", + "BUILD.bazel", + "WORKSPACE", + "WORKSPACE.bazel", + ], + ), + crate_root = "src/lib.rs", + edition = "2021", + rustc_env_files = [ + ":cargo_toml_env_vars", + ], + rustc_flags = [ + "--cap-lints=allow", + ], + tags = [ + "cargo-bazel", + "crate-name=foldhash", + "manual", + "noclippy", + "norustfmt", + ], + target_compatible_with = select({ + "@rules_rust//rust/platform:aarch64-apple-darwin": [], + "@rules_rust//rust/platform:aarch64-apple-ios": [], + "@rules_rust//rust/platform:aarch64-apple-ios-sim": [], + "@rules_rust//rust/platform:aarch64-linux-android": [], + "@rules_rust//rust/platform:aarch64-pc-windows-msvc": [], + "@rules_rust//rust/platform:aarch64-unknown-fuchsia": [], + "@rules_rust//rust/platform:aarch64-unknown-linux-gnu": [], + "@rules_rust//rust/platform:aarch64-unknown-nixos-gnu": [], + "@rules_rust//rust/platform:aarch64-unknown-nto-qnx710": [], + "@rules_rust//rust/platform:aarch64-unknown-uefi": [], + "@rules_rust//rust/platform:arm-unknown-linux-gnueabi": [], + "@rules_rust//rust/platform:arm-unknown-linux-musleabi": [], + "@rules_rust//rust/platform:armv7-linux-androideabi": [], + "@rules_rust//rust/platform:armv7-unknown-linux-gnueabi": [], + "@rules_rust//rust/platform:i686-apple-darwin": [], + "@rules_rust//rust/platform:i686-linux-android": [], + "@rules_rust//rust/platform:i686-pc-windows-msvc": [], + "@rules_rust//rust/platform:i686-unknown-freebsd": [], + "@rules_rust//rust/platform:i686-unknown-linux-gnu": [], + "@rules_rust//rust/platform:powerpc-unknown-linux-gnu": [], + "@rules_rust//rust/platform:riscv32imc-unknown-none-elf": [], + "@rules_rust//rust/platform:riscv64gc-unknown-linux-gnu": [], + "@rules_rust//rust/platform:riscv64gc-unknown-none-elf": [], + "@rules_rust//rust/platform:s390x-unknown-linux-gnu": [], + "@rules_rust//rust/platform:thumbv7em-none-eabi": [], + "@rules_rust//rust/platform:thumbv8m.main-none-eabi": [], + "@rules_rust//rust/platform:wasm32-unknown-emscripten": [], + "@rules_rust//rust/platform:wasm32-unknown-unknown": [], + "@rules_rust//rust/platform:wasm32-wasip1": [], + "@rules_rust//rust/platform:wasm32-wasip1-threads": [], + "@rules_rust//rust/platform:wasm32-wasip2": [], + "@rules_rust//rust/platform:x86_64-apple-darwin": [], + "@rules_rust//rust/platform:x86_64-apple-ios": [], + "@rules_rust//rust/platform:x86_64-linux-android": [], + "@rules_rust//rust/platform:x86_64-pc-windows-msvc": [], + "@rules_rust//rust/platform:x86_64-unknown-freebsd": [], + "@rules_rust//rust/platform:x86_64-unknown-fuchsia": [], + "@rules_rust//rust/platform:x86_64-unknown-linux-gnu": [], + "@rules_rust//rust/platform:x86_64-unknown-nixos-gnu": [], + "@rules_rust//rust/platform:x86_64-unknown-none": [], + "@rules_rust//rust/platform:x86_64-unknown-uefi": [], + "//conditions:default": ["@platforms//:incompatible"], + }), + version = "0.2.0", +) diff --git a/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.hashbrown-0.16.1.bazel b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.hashbrown-0.16.1.bazel new file mode 100644 index 000000000000..8090f6f8c7fc --- /dev/null +++ b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.hashbrown-0.16.1.bazel @@ -0,0 +1,110 @@ +############################################################################### +# @generated +# DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To +# regenerate this file, run the following: +# +# bazel run @@//misc/bazel/3rdparty:vendor_tree_sitter_extractors +############################################################################### + +load("@rules_rust//cargo:defs.bzl", "cargo_toml_env_vars") +load("@rules_rust//rust:defs.bzl", "rust_library") + +package(default_visibility = ["//visibility:public"]) + +cargo_toml_env_vars( + name = "cargo_toml_env_vars", + src = "Cargo.toml", +) + +rust_library( + name = "hashbrown", + srcs = glob( + include = ["**/*.rs"], + allow_empty = True, + ), + compile_data = glob( + include = ["**"], + allow_empty = True, + exclude = [ + "**/* *", + ".tmp_git_root/**/*", + "BUILD", + "BUILD.bazel", + "WORKSPACE", + "WORKSPACE.bazel", + ], + ), + crate_features = [ + "allocator-api2", + "default", + "default-hasher", + "equivalent", + "inline-more", + "raw-entry", + ], + crate_root = "src/lib.rs", + edition = "2021", + rustc_env_files = [ + ":cargo_toml_env_vars", + ], + rustc_flags = [ + "--cap-lints=allow", + ], + tags = [ + "cargo-bazel", + "crate-name=hashbrown", + "manual", + "noclippy", + "norustfmt", + ], + target_compatible_with = select({ + "@rules_rust//rust/platform:aarch64-apple-darwin": [], + "@rules_rust//rust/platform:aarch64-apple-ios": [], + "@rules_rust//rust/platform:aarch64-apple-ios-sim": [], + "@rules_rust//rust/platform:aarch64-linux-android": [], + "@rules_rust//rust/platform:aarch64-pc-windows-msvc": [], + "@rules_rust//rust/platform:aarch64-unknown-fuchsia": [], + "@rules_rust//rust/platform:aarch64-unknown-linux-gnu": [], + "@rules_rust//rust/platform:aarch64-unknown-nixos-gnu": [], + "@rules_rust//rust/platform:aarch64-unknown-nto-qnx710": [], + "@rules_rust//rust/platform:aarch64-unknown-uefi": [], + "@rules_rust//rust/platform:arm-unknown-linux-gnueabi": [], + "@rules_rust//rust/platform:arm-unknown-linux-musleabi": [], + "@rules_rust//rust/platform:armv7-linux-androideabi": [], + "@rules_rust//rust/platform:armv7-unknown-linux-gnueabi": [], + "@rules_rust//rust/platform:i686-apple-darwin": [], + "@rules_rust//rust/platform:i686-linux-android": [], + "@rules_rust//rust/platform:i686-pc-windows-msvc": [], + "@rules_rust//rust/platform:i686-unknown-freebsd": [], + "@rules_rust//rust/platform:i686-unknown-linux-gnu": [], + "@rules_rust//rust/platform:powerpc-unknown-linux-gnu": [], + "@rules_rust//rust/platform:riscv32imc-unknown-none-elf": [], + "@rules_rust//rust/platform:riscv64gc-unknown-linux-gnu": [], + "@rules_rust//rust/platform:riscv64gc-unknown-none-elf": [], + "@rules_rust//rust/platform:s390x-unknown-linux-gnu": [], + "@rules_rust//rust/platform:thumbv7em-none-eabi": [], + "@rules_rust//rust/platform:thumbv8m.main-none-eabi": [], + "@rules_rust//rust/platform:wasm32-unknown-emscripten": [], + "@rules_rust//rust/platform:wasm32-unknown-unknown": [], + "@rules_rust//rust/platform:wasm32-wasip1": [], + "@rules_rust//rust/platform:wasm32-wasip1-threads": [], + "@rules_rust//rust/platform:wasm32-wasip2": [], + "@rules_rust//rust/platform:x86_64-apple-darwin": [], + "@rules_rust//rust/platform:x86_64-apple-ios": [], + "@rules_rust//rust/platform:x86_64-linux-android": [], + "@rules_rust//rust/platform:x86_64-pc-windows-msvc": [], + "@rules_rust//rust/platform:x86_64-unknown-freebsd": [], + "@rules_rust//rust/platform:x86_64-unknown-fuchsia": [], + "@rules_rust//rust/platform:x86_64-unknown-linux-gnu": [], + "@rules_rust//rust/platform:x86_64-unknown-nixos-gnu": [], + "@rules_rust//rust/platform:x86_64-unknown-none": [], + "@rules_rust//rust/platform:x86_64-unknown-uefi": [], + "//conditions:default": ["@platforms//:incompatible"], + }), + version = "0.16.1", + deps = [ + "@vendor_ts__allocator-api2-0.2.21//:allocator_api2", + "@vendor_ts__equivalent-1.0.2//:equivalent", + "@vendor_ts__foldhash-0.2.0//:foldhash", + ], +) diff --git a/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.hashbrown-0.17.1.bazel b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.hashbrown-0.17.1.bazel new file mode 100644 index 000000000000..eba4862da685 --- /dev/null +++ b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.hashbrown-0.17.1.bazel @@ -0,0 +1,97 @@ +############################################################################### +# @generated +# DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To +# regenerate this file, run the following: +# +# bazel run @@//misc/bazel/3rdparty:vendor_tree_sitter_extractors +############################################################################### + +load("@rules_rust//cargo:defs.bzl", "cargo_toml_env_vars") +load("@rules_rust//rust:defs.bzl", "rust_library") + +package(default_visibility = ["//visibility:public"]) + +cargo_toml_env_vars( + name = "cargo_toml_env_vars", + src = "Cargo.toml", +) + +rust_library( + name = "hashbrown", + srcs = glob( + include = ["**/*.rs"], + allow_empty = True, + ), + compile_data = glob( + include = ["**"], + allow_empty = True, + exclude = [ + "**/* *", + ".tmp_git_root/**/*", + "BUILD", + "BUILD.bazel", + "WORKSPACE", + "WORKSPACE.bazel", + ], + ), + crate_root = "src/lib.rs", + edition = "2024", + rustc_env_files = [ + ":cargo_toml_env_vars", + ], + rustc_flags = [ + "--cap-lints=allow", + ], + tags = [ + "cargo-bazel", + "crate-name=hashbrown", + "manual", + "noclippy", + "norustfmt", + ], + target_compatible_with = select({ + "@rules_rust//rust/platform:aarch64-apple-darwin": [], + "@rules_rust//rust/platform:aarch64-apple-ios": [], + "@rules_rust//rust/platform:aarch64-apple-ios-sim": [], + "@rules_rust//rust/platform:aarch64-linux-android": [], + "@rules_rust//rust/platform:aarch64-pc-windows-msvc": [], + "@rules_rust//rust/platform:aarch64-unknown-fuchsia": [], + "@rules_rust//rust/platform:aarch64-unknown-linux-gnu": [], + "@rules_rust//rust/platform:aarch64-unknown-nixos-gnu": [], + "@rules_rust//rust/platform:aarch64-unknown-nto-qnx710": [], + "@rules_rust//rust/platform:aarch64-unknown-uefi": [], + "@rules_rust//rust/platform:arm-unknown-linux-gnueabi": [], + "@rules_rust//rust/platform:arm-unknown-linux-musleabi": [], + "@rules_rust//rust/platform:armv7-linux-androideabi": [], + "@rules_rust//rust/platform:armv7-unknown-linux-gnueabi": [], + "@rules_rust//rust/platform:i686-apple-darwin": [], + "@rules_rust//rust/platform:i686-linux-android": [], + "@rules_rust//rust/platform:i686-pc-windows-msvc": [], + "@rules_rust//rust/platform:i686-unknown-freebsd": [], + "@rules_rust//rust/platform:i686-unknown-linux-gnu": [], + "@rules_rust//rust/platform:powerpc-unknown-linux-gnu": [], + "@rules_rust//rust/platform:riscv32imc-unknown-none-elf": [], + "@rules_rust//rust/platform:riscv64gc-unknown-linux-gnu": [], + "@rules_rust//rust/platform:riscv64gc-unknown-none-elf": [], + "@rules_rust//rust/platform:s390x-unknown-linux-gnu": [], + "@rules_rust//rust/platform:thumbv7em-none-eabi": [], + "@rules_rust//rust/platform:thumbv8m.main-none-eabi": [], + "@rules_rust//rust/platform:wasm32-unknown-emscripten": [], + "@rules_rust//rust/platform:wasm32-unknown-unknown": [], + "@rules_rust//rust/platform:wasm32-wasip1": [], + "@rules_rust//rust/platform:wasm32-wasip1-threads": [], + "@rules_rust//rust/platform:wasm32-wasip2": [], + "@rules_rust//rust/platform:x86_64-apple-darwin": [], + "@rules_rust//rust/platform:x86_64-apple-ios": [], + "@rules_rust//rust/platform:x86_64-linux-android": [], + "@rules_rust//rust/platform:x86_64-pc-windows-msvc": [], + "@rules_rust//rust/platform:x86_64-unknown-freebsd": [], + "@rules_rust//rust/platform:x86_64-unknown-fuchsia": [], + "@rules_rust//rust/platform:x86_64-unknown-linux-gnu": [], + "@rules_rust//rust/platform:x86_64-unknown-nixos-gnu": [], + "@rules_rust//rust/platform:x86_64-unknown-none": [], + "@rules_rust//rust/platform:x86_64-unknown-uefi": [], + "//conditions:default": ["@platforms//:incompatible"], + }), + version = "0.17.1", +) diff --git a/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.indexmap-2.11.4.bazel b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.indexmap-2.14.0.bazel similarity index 97% rename from misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.indexmap-2.11.4.bazel rename to misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.indexmap-2.14.0.bazel index 53cca2f56778..5a727af4c881 100644 --- a/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.indexmap-2.11.4.bazel +++ b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.indexmap-2.14.0.bazel @@ -40,7 +40,7 @@ rust_library( "std", ], crate_root = "src/lib.rs", - edition = "2021", + edition = "2024", rustc_env_files = [ ":cargo_toml_env_vars", ], @@ -98,10 +98,10 @@ rust_library( "@rules_rust//rust/platform:x86_64-unknown-uefi": [], "//conditions:default": ["@platforms//:incompatible"], }), - version = "2.11.4", + version = "2.14.0", deps = [ "@vendor_ts__equivalent-1.0.2//:equivalent", - "@vendor_ts__hashbrown-0.15.5//:hashbrown", + "@vendor_ts__hashbrown-0.17.1//:hashbrown", "@vendor_ts__serde_core-1.0.228//:serde_core", ], ) diff --git a/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.indoc-2.0.7.bazel b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.indoc-2.0.7.bazel new file mode 100644 index 000000000000..f3a9dea14d42 --- /dev/null +++ b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.indoc-2.0.7.bazel @@ -0,0 +1,97 @@ +############################################################################### +# @generated +# DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To +# regenerate this file, run the following: +# +# bazel run @@//misc/bazel/3rdparty:vendor_tree_sitter_extractors +############################################################################### + +load("@rules_rust//cargo:defs.bzl", "cargo_toml_env_vars") +load("@rules_rust//rust:defs.bzl", "rust_proc_macro") + +package(default_visibility = ["//visibility:public"]) + +cargo_toml_env_vars( + name = "cargo_toml_env_vars", + src = "Cargo.toml", +) + +rust_proc_macro( + name = "indoc", + srcs = glob( + include = ["**/*.rs"], + allow_empty = True, + ), + compile_data = glob( + include = ["**"], + allow_empty = True, + exclude = [ + "**/* *", + ".tmp_git_root/**/*", + "BUILD", + "BUILD.bazel", + "WORKSPACE", + "WORKSPACE.bazel", + ], + ), + crate_root = "src/lib.rs", + edition = "2021", + rustc_env_files = [ + ":cargo_toml_env_vars", + ], + rustc_flags = [ + "--cap-lints=allow", + ], + tags = [ + "cargo-bazel", + "crate-name=indoc", + "manual", + "noclippy", + "norustfmt", + ], + target_compatible_with = select({ + "@rules_rust//rust/platform:aarch64-apple-darwin": [], + "@rules_rust//rust/platform:aarch64-apple-ios": [], + "@rules_rust//rust/platform:aarch64-apple-ios-sim": [], + "@rules_rust//rust/platform:aarch64-linux-android": [], + "@rules_rust//rust/platform:aarch64-pc-windows-msvc": [], + "@rules_rust//rust/platform:aarch64-unknown-fuchsia": [], + "@rules_rust//rust/platform:aarch64-unknown-linux-gnu": [], + "@rules_rust//rust/platform:aarch64-unknown-nixos-gnu": [], + "@rules_rust//rust/platform:aarch64-unknown-nto-qnx710": [], + "@rules_rust//rust/platform:aarch64-unknown-uefi": [], + "@rules_rust//rust/platform:arm-unknown-linux-gnueabi": [], + "@rules_rust//rust/platform:arm-unknown-linux-musleabi": [], + "@rules_rust//rust/platform:armv7-linux-androideabi": [], + "@rules_rust//rust/platform:armv7-unknown-linux-gnueabi": [], + "@rules_rust//rust/platform:i686-apple-darwin": [], + "@rules_rust//rust/platform:i686-linux-android": [], + "@rules_rust//rust/platform:i686-pc-windows-msvc": [], + "@rules_rust//rust/platform:i686-unknown-freebsd": [], + "@rules_rust//rust/platform:i686-unknown-linux-gnu": [], + "@rules_rust//rust/platform:powerpc-unknown-linux-gnu": [], + "@rules_rust//rust/platform:riscv32imc-unknown-none-elf": [], + "@rules_rust//rust/platform:riscv64gc-unknown-linux-gnu": [], + "@rules_rust//rust/platform:riscv64gc-unknown-none-elf": [], + "@rules_rust//rust/platform:s390x-unknown-linux-gnu": [], + "@rules_rust//rust/platform:thumbv7em-none-eabi": [], + "@rules_rust//rust/platform:thumbv8m.main-none-eabi": [], + "@rules_rust//rust/platform:wasm32-unknown-emscripten": [], + "@rules_rust//rust/platform:wasm32-unknown-unknown": [], + "@rules_rust//rust/platform:wasm32-wasip1": [], + "@rules_rust//rust/platform:wasm32-wasip1-threads": [], + "@rules_rust//rust/platform:wasm32-wasip2": [], + "@rules_rust//rust/platform:x86_64-apple-darwin": [], + "@rules_rust//rust/platform:x86_64-apple-ios": [], + "@rules_rust//rust/platform:x86_64-linux-android": [], + "@rules_rust//rust/platform:x86_64-pc-windows-msvc": [], + "@rules_rust//rust/platform:x86_64-unknown-freebsd": [], + "@rules_rust//rust/platform:x86_64-unknown-fuchsia": [], + "@rules_rust//rust/platform:x86_64-unknown-linux-gnu": [], + "@rules_rust//rust/platform:x86_64-unknown-nixos-gnu": [], + "@rules_rust//rust/platform:x86_64-unknown-none": [], + "@rules_rust//rust/platform:x86_64-unknown-uefi": [], + "//conditions:default": ["@platforms//:incompatible"], + }), + version = "2.0.7", +) diff --git a/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.libloading-0.8.9.bazel b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.libloading-0.8.9.bazel new file mode 100644 index 000000000000..e87fddeaaa5c --- /dev/null +++ b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.libloading-0.8.9.bazel @@ -0,0 +1,190 @@ +############################################################################### +# @generated +# DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To +# regenerate this file, run the following: +# +# bazel run @@//misc/bazel/3rdparty:vendor_tree_sitter_extractors +############################################################################### + +load("@rules_rust//cargo:defs.bzl", "cargo_toml_env_vars") +load("@rules_rust//rust:defs.bzl", "rust_library") + +package(default_visibility = ["//visibility:public"]) + +cargo_toml_env_vars( + name = "cargo_toml_env_vars", + src = "Cargo.toml", +) + +rust_library( + name = "libloading", + srcs = glob( + include = ["**/*.rs"], + allow_empty = True, + ), + compile_data = glob( + include = ["**"], + allow_empty = True, + exclude = [ + "**/* *", + ".tmp_git_root/**/*", + "BUILD", + "BUILD.bazel", + "WORKSPACE", + "WORKSPACE.bazel", + ], + ), + crate_root = "src/lib.rs", + edition = "2015", + rustc_env_files = [ + ":cargo_toml_env_vars", + ], + rustc_flags = [ + "--cap-lints=allow", + ], + tags = [ + "cargo-bazel", + "crate-name=libloading", + "manual", + "noclippy", + "norustfmt", + ], + target_compatible_with = select({ + "@rules_rust//rust/platform:aarch64-apple-darwin": [], + "@rules_rust//rust/platform:aarch64-apple-ios": [], + "@rules_rust//rust/platform:aarch64-apple-ios-sim": [], + "@rules_rust//rust/platform:aarch64-linux-android": [], + "@rules_rust//rust/platform:aarch64-pc-windows-msvc": [], + "@rules_rust//rust/platform:aarch64-unknown-fuchsia": [], + "@rules_rust//rust/platform:aarch64-unknown-linux-gnu": [], + "@rules_rust//rust/platform:aarch64-unknown-nixos-gnu": [], + "@rules_rust//rust/platform:aarch64-unknown-nto-qnx710": [], + "@rules_rust//rust/platform:aarch64-unknown-uefi": [], + "@rules_rust//rust/platform:arm-unknown-linux-gnueabi": [], + "@rules_rust//rust/platform:arm-unknown-linux-musleabi": [], + "@rules_rust//rust/platform:armv7-linux-androideabi": [], + "@rules_rust//rust/platform:armv7-unknown-linux-gnueabi": [], + "@rules_rust//rust/platform:i686-apple-darwin": [], + "@rules_rust//rust/platform:i686-linux-android": [], + "@rules_rust//rust/platform:i686-pc-windows-msvc": [], + "@rules_rust//rust/platform:i686-unknown-freebsd": [], + "@rules_rust//rust/platform:i686-unknown-linux-gnu": [], + "@rules_rust//rust/platform:powerpc-unknown-linux-gnu": [], + "@rules_rust//rust/platform:riscv32imc-unknown-none-elf": [], + "@rules_rust//rust/platform:riscv64gc-unknown-linux-gnu": [], + "@rules_rust//rust/platform:riscv64gc-unknown-none-elf": [], + "@rules_rust//rust/platform:s390x-unknown-linux-gnu": [], + "@rules_rust//rust/platform:thumbv7em-none-eabi": [], + "@rules_rust//rust/platform:thumbv8m.main-none-eabi": [], + "@rules_rust//rust/platform:wasm32-unknown-emscripten": [], + "@rules_rust//rust/platform:wasm32-unknown-unknown": [], + "@rules_rust//rust/platform:wasm32-wasip1": [], + "@rules_rust//rust/platform:wasm32-wasip1-threads": [], + "@rules_rust//rust/platform:wasm32-wasip2": [], + "@rules_rust//rust/platform:x86_64-apple-darwin": [], + "@rules_rust//rust/platform:x86_64-apple-ios": [], + "@rules_rust//rust/platform:x86_64-linux-android": [], + "@rules_rust//rust/platform:x86_64-pc-windows-msvc": [], + "@rules_rust//rust/platform:x86_64-unknown-freebsd": [], + "@rules_rust//rust/platform:x86_64-unknown-fuchsia": [], + "@rules_rust//rust/platform:x86_64-unknown-linux-gnu": [], + "@rules_rust//rust/platform:x86_64-unknown-nixos-gnu": [], + "@rules_rust//rust/platform:x86_64-unknown-none": [], + "@rules_rust//rust/platform:x86_64-unknown-uefi": [], + "//conditions:default": ["@platforms//:incompatible"], + }), + version = "0.8.9", + deps = select({ + "@rules_rust//rust/platform:aarch64-apple-darwin": [ + "@vendor_ts__cfg-if-1.0.3//:cfg_if", # cfg(unix) + ], + "@rules_rust//rust/platform:aarch64-apple-ios": [ + "@vendor_ts__cfg-if-1.0.3//:cfg_if", # cfg(unix) + ], + "@rules_rust//rust/platform:aarch64-apple-ios-sim": [ + "@vendor_ts__cfg-if-1.0.3//:cfg_if", # cfg(unix) + ], + "@rules_rust//rust/platform:aarch64-linux-android": [ + "@vendor_ts__cfg-if-1.0.3//:cfg_if", # cfg(unix) + ], + "@rules_rust//rust/platform:aarch64-pc-windows-msvc": [ + "@vendor_ts__windows-link-0.2.0//:windows_link", # cfg(windows) + ], + "@rules_rust//rust/platform:aarch64-unknown-fuchsia": [ + "@vendor_ts__cfg-if-1.0.3//:cfg_if", # cfg(unix) + ], + "@rules_rust//rust/platform:aarch64-unknown-linux-gnu": [ + "@vendor_ts__cfg-if-1.0.3//:cfg_if", # cfg(unix) + ], + "@rules_rust//rust/platform:aarch64-unknown-nixos-gnu": [ + "@vendor_ts__cfg-if-1.0.3//:cfg_if", # cfg(unix) + ], + "@rules_rust//rust/platform:aarch64-unknown-nto-qnx710": [ + "@vendor_ts__cfg-if-1.0.3//:cfg_if", # cfg(unix) + ], + "@rules_rust//rust/platform:arm-unknown-linux-gnueabi": [ + "@vendor_ts__cfg-if-1.0.3//:cfg_if", # cfg(unix) + ], + "@rules_rust//rust/platform:arm-unknown-linux-musleabi": [ + "@vendor_ts__cfg-if-1.0.3//:cfg_if", # cfg(unix) + ], + "@rules_rust//rust/platform:armv7-linux-androideabi": [ + "@vendor_ts__cfg-if-1.0.3//:cfg_if", # cfg(unix) + ], + "@rules_rust//rust/platform:armv7-unknown-linux-gnueabi": [ + "@vendor_ts__cfg-if-1.0.3//:cfg_if", # cfg(unix) + ], + "@rules_rust//rust/platform:i686-apple-darwin": [ + "@vendor_ts__cfg-if-1.0.3//:cfg_if", # cfg(unix) + ], + "@rules_rust//rust/platform:i686-linux-android": [ + "@vendor_ts__cfg-if-1.0.3//:cfg_if", # cfg(unix) + ], + "@rules_rust//rust/platform:i686-pc-windows-msvc": [ + "@vendor_ts__windows-link-0.2.0//:windows_link", # cfg(windows) + ], + "@rules_rust//rust/platform:i686-unknown-freebsd": [ + "@vendor_ts__cfg-if-1.0.3//:cfg_if", # cfg(unix) + ], + "@rules_rust//rust/platform:i686-unknown-linux-gnu": [ + "@vendor_ts__cfg-if-1.0.3//:cfg_if", # cfg(unix) + ], + "@rules_rust//rust/platform:powerpc-unknown-linux-gnu": [ + "@vendor_ts__cfg-if-1.0.3//:cfg_if", # cfg(unix) + ], + "@rules_rust//rust/platform:riscv64gc-unknown-linux-gnu": [ + "@vendor_ts__cfg-if-1.0.3//:cfg_if", # cfg(unix) + ], + "@rules_rust//rust/platform:s390x-unknown-linux-gnu": [ + "@vendor_ts__cfg-if-1.0.3//:cfg_if", # cfg(unix) + ], + "@rules_rust//rust/platform:wasm32-unknown-emscripten": [ + "@vendor_ts__cfg-if-1.0.3//:cfg_if", # cfg(unix) + ], + "@rules_rust//rust/platform:x86_64-apple-darwin": [ + "@vendor_ts__cfg-if-1.0.3//:cfg_if", # cfg(unix) + ], + "@rules_rust//rust/platform:x86_64-apple-ios": [ + "@vendor_ts__cfg-if-1.0.3//:cfg_if", # cfg(unix) + ], + "@rules_rust//rust/platform:x86_64-linux-android": [ + "@vendor_ts__cfg-if-1.0.3//:cfg_if", # cfg(unix) + ], + "@rules_rust//rust/platform:x86_64-pc-windows-msvc": [ + "@vendor_ts__windows-link-0.2.0//:windows_link", # cfg(windows) + ], + "@rules_rust//rust/platform:x86_64-unknown-freebsd": [ + "@vendor_ts__cfg-if-1.0.3//:cfg_if", # cfg(unix) + ], + "@rules_rust//rust/platform:x86_64-unknown-fuchsia": [ + "@vendor_ts__cfg-if-1.0.3//:cfg_if", # cfg(unix) + ], + "@rules_rust//rust/platform:x86_64-unknown-linux-gnu": [ + "@vendor_ts__cfg-if-1.0.3//:cfg_if", # cfg(unix) + ], + "@rules_rust//rust/platform:x86_64-unknown-nixos-gnu": [ + "@vendor_ts__cfg-if-1.0.3//:cfg_if", # cfg(unix) + ], + "//conditions:default": [], + }), +) diff --git a/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.minimal-lexical-0.2.1.bazel b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.minimal-lexical-0.2.1.bazel new file mode 100644 index 000000000000..40e1e2259be6 --- /dev/null +++ b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.minimal-lexical-0.2.1.bazel @@ -0,0 +1,100 @@ +############################################################################### +# @generated +# DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To +# regenerate this file, run the following: +# +# bazel run @@//misc/bazel/3rdparty:vendor_tree_sitter_extractors +############################################################################### + +load("@rules_rust//cargo:defs.bzl", "cargo_toml_env_vars") +load("@rules_rust//rust:defs.bzl", "rust_library") + +package(default_visibility = ["//visibility:public"]) + +cargo_toml_env_vars( + name = "cargo_toml_env_vars", + src = "Cargo.toml", +) + +rust_library( + name = "minimal_lexical", + srcs = glob( + include = ["**/*.rs"], + allow_empty = True, + ), + compile_data = glob( + include = ["**"], + allow_empty = True, + exclude = [ + "**/* *", + ".tmp_git_root/**/*", + "BUILD", + "BUILD.bazel", + "WORKSPACE", + "WORKSPACE.bazel", + ], + ), + crate_features = [ + "std", + ], + crate_root = "src/lib.rs", + edition = "2018", + rustc_env_files = [ + ":cargo_toml_env_vars", + ], + rustc_flags = [ + "--cap-lints=allow", + ], + tags = [ + "cargo-bazel", + "crate-name=minimal-lexical", + "manual", + "noclippy", + "norustfmt", + ], + target_compatible_with = select({ + "@rules_rust//rust/platform:aarch64-apple-darwin": [], + "@rules_rust//rust/platform:aarch64-apple-ios": [], + "@rules_rust//rust/platform:aarch64-apple-ios-sim": [], + "@rules_rust//rust/platform:aarch64-linux-android": [], + "@rules_rust//rust/platform:aarch64-pc-windows-msvc": [], + "@rules_rust//rust/platform:aarch64-unknown-fuchsia": [], + "@rules_rust//rust/platform:aarch64-unknown-linux-gnu": [], + "@rules_rust//rust/platform:aarch64-unknown-nixos-gnu": [], + "@rules_rust//rust/platform:aarch64-unknown-nto-qnx710": [], + "@rules_rust//rust/platform:aarch64-unknown-uefi": [], + "@rules_rust//rust/platform:arm-unknown-linux-gnueabi": [], + "@rules_rust//rust/platform:arm-unknown-linux-musleabi": [], + "@rules_rust//rust/platform:armv7-linux-androideabi": [], + "@rules_rust//rust/platform:armv7-unknown-linux-gnueabi": [], + "@rules_rust//rust/platform:i686-apple-darwin": [], + "@rules_rust//rust/platform:i686-linux-android": [], + "@rules_rust//rust/platform:i686-pc-windows-msvc": [], + "@rules_rust//rust/platform:i686-unknown-freebsd": [], + "@rules_rust//rust/platform:i686-unknown-linux-gnu": [], + "@rules_rust//rust/platform:powerpc-unknown-linux-gnu": [], + "@rules_rust//rust/platform:riscv32imc-unknown-none-elf": [], + "@rules_rust//rust/platform:riscv64gc-unknown-linux-gnu": [], + "@rules_rust//rust/platform:riscv64gc-unknown-none-elf": [], + "@rules_rust//rust/platform:s390x-unknown-linux-gnu": [], + "@rules_rust//rust/platform:thumbv7em-none-eabi": [], + "@rules_rust//rust/platform:thumbv8m.main-none-eabi": [], + "@rules_rust//rust/platform:wasm32-unknown-emscripten": [], + "@rules_rust//rust/platform:wasm32-unknown-unknown": [], + "@rules_rust//rust/platform:wasm32-wasip1": [], + "@rules_rust//rust/platform:wasm32-wasip1-threads": [], + "@rules_rust//rust/platform:wasm32-wasip2": [], + "@rules_rust//rust/platform:x86_64-apple-darwin": [], + "@rules_rust//rust/platform:x86_64-apple-ios": [], + "@rules_rust//rust/platform:x86_64-linux-android": [], + "@rules_rust//rust/platform:x86_64-pc-windows-msvc": [], + "@rules_rust//rust/platform:x86_64-unknown-freebsd": [], + "@rules_rust//rust/platform:x86_64-unknown-fuchsia": [], + "@rules_rust//rust/platform:x86_64-unknown-linux-gnu": [], + "@rules_rust//rust/platform:x86_64-unknown-nixos-gnu": [], + "@rules_rust//rust/platform:x86_64-unknown-none": [], + "@rules_rust//rust/platform:x86_64-unknown-uefi": [], + "//conditions:default": ["@platforms//:incompatible"], + }), + version = "0.2.1", +) diff --git a/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.nom-7.1.3.bazel b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.nom-7.1.3.bazel new file mode 100644 index 000000000000..b1524d8a86d9 --- /dev/null +++ b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.nom-7.1.3.bazel @@ -0,0 +1,105 @@ +############################################################################### +# @generated +# DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To +# regenerate this file, run the following: +# +# bazel run @@//misc/bazel/3rdparty:vendor_tree_sitter_extractors +############################################################################### + +load("@rules_rust//cargo:defs.bzl", "cargo_toml_env_vars") +load("@rules_rust//rust:defs.bzl", "rust_library") + +package(default_visibility = ["//visibility:public"]) + +cargo_toml_env_vars( + name = "cargo_toml_env_vars", + src = "Cargo.toml", +) + +rust_library( + name = "nom", + srcs = glob( + include = ["**/*.rs"], + allow_empty = True, + ), + compile_data = glob( + include = ["**"], + allow_empty = True, + exclude = [ + "**/* *", + ".tmp_git_root/**/*", + "BUILD", + "BUILD.bazel", + "WORKSPACE", + "WORKSPACE.bazel", + ], + ), + crate_features = [ + "alloc", + "std", + ], + crate_root = "src/lib.rs", + edition = "2018", + rustc_env_files = [ + ":cargo_toml_env_vars", + ], + rustc_flags = [ + "--cap-lints=allow", + ], + tags = [ + "cargo-bazel", + "crate-name=nom", + "manual", + "noclippy", + "norustfmt", + ], + target_compatible_with = select({ + "@rules_rust//rust/platform:aarch64-apple-darwin": [], + "@rules_rust//rust/platform:aarch64-apple-ios": [], + "@rules_rust//rust/platform:aarch64-apple-ios-sim": [], + "@rules_rust//rust/platform:aarch64-linux-android": [], + "@rules_rust//rust/platform:aarch64-pc-windows-msvc": [], + "@rules_rust//rust/platform:aarch64-unknown-fuchsia": [], + "@rules_rust//rust/platform:aarch64-unknown-linux-gnu": [], + "@rules_rust//rust/platform:aarch64-unknown-nixos-gnu": [], + "@rules_rust//rust/platform:aarch64-unknown-nto-qnx710": [], + "@rules_rust//rust/platform:aarch64-unknown-uefi": [], + "@rules_rust//rust/platform:arm-unknown-linux-gnueabi": [], + "@rules_rust//rust/platform:arm-unknown-linux-musleabi": [], + "@rules_rust//rust/platform:armv7-linux-androideabi": [], + "@rules_rust//rust/platform:armv7-unknown-linux-gnueabi": [], + "@rules_rust//rust/platform:i686-apple-darwin": [], + "@rules_rust//rust/platform:i686-linux-android": [], + "@rules_rust//rust/platform:i686-pc-windows-msvc": [], + "@rules_rust//rust/platform:i686-unknown-freebsd": [], + "@rules_rust//rust/platform:i686-unknown-linux-gnu": [], + "@rules_rust//rust/platform:powerpc-unknown-linux-gnu": [], + "@rules_rust//rust/platform:riscv32imc-unknown-none-elf": [], + "@rules_rust//rust/platform:riscv64gc-unknown-linux-gnu": [], + "@rules_rust//rust/platform:riscv64gc-unknown-none-elf": [], + "@rules_rust//rust/platform:s390x-unknown-linux-gnu": [], + "@rules_rust//rust/platform:thumbv7em-none-eabi": [], + "@rules_rust//rust/platform:thumbv8m.main-none-eabi": [], + "@rules_rust//rust/platform:wasm32-unknown-emscripten": [], + "@rules_rust//rust/platform:wasm32-unknown-unknown": [], + "@rules_rust//rust/platform:wasm32-wasip1": [], + "@rules_rust//rust/platform:wasm32-wasip1-threads": [], + "@rules_rust//rust/platform:wasm32-wasip2": [], + "@rules_rust//rust/platform:x86_64-apple-darwin": [], + "@rules_rust//rust/platform:x86_64-apple-ios": [], + "@rules_rust//rust/platform:x86_64-linux-android": [], + "@rules_rust//rust/platform:x86_64-pc-windows-msvc": [], + "@rules_rust//rust/platform:x86_64-unknown-freebsd": [], + "@rules_rust//rust/platform:x86_64-unknown-fuchsia": [], + "@rules_rust//rust/platform:x86_64-unknown-linux-gnu": [], + "@rules_rust//rust/platform:x86_64-unknown-nixos-gnu": [], + "@rules_rust//rust/platform:x86_64-unknown-none": [], + "@rules_rust//rust/platform:x86_64-unknown-uefi": [], + "//conditions:default": ["@platforms//:incompatible"], + }), + version = "7.1.3", + deps = [ + "@vendor_ts__memchr-2.7.5//:memchr", + "@vendor_ts__minimal-lexical-0.2.1//:minimal_lexical", + ], +) diff --git a/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.pathdiff-0.2.3.bazel b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.pathdiff-0.2.3.bazel new file mode 100644 index 000000000000..48df9a3c3d89 --- /dev/null +++ b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.pathdiff-0.2.3.bazel @@ -0,0 +1,97 @@ +############################################################################### +# @generated +# DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To +# regenerate this file, run the following: +# +# bazel run @@//misc/bazel/3rdparty:vendor_tree_sitter_extractors +############################################################################### + +load("@rules_rust//cargo:defs.bzl", "cargo_toml_env_vars") +load("@rules_rust//rust:defs.bzl", "rust_library") + +package(default_visibility = ["//visibility:public"]) + +cargo_toml_env_vars( + name = "cargo_toml_env_vars", + src = "Cargo.toml", +) + +rust_library( + name = "pathdiff", + srcs = glob( + include = ["**/*.rs"], + allow_empty = True, + ), + compile_data = glob( + include = ["**"], + allow_empty = True, + exclude = [ + "**/* *", + ".tmp_git_root/**/*", + "BUILD", + "BUILD.bazel", + "WORKSPACE", + "WORKSPACE.bazel", + ], + ), + crate_root = "src/lib.rs", + edition = "2018", + rustc_env_files = [ + ":cargo_toml_env_vars", + ], + rustc_flags = [ + "--cap-lints=allow", + ], + tags = [ + "cargo-bazel", + "crate-name=pathdiff", + "manual", + "noclippy", + "norustfmt", + ], + target_compatible_with = select({ + "@rules_rust//rust/platform:aarch64-apple-darwin": [], + "@rules_rust//rust/platform:aarch64-apple-ios": [], + "@rules_rust//rust/platform:aarch64-apple-ios-sim": [], + "@rules_rust//rust/platform:aarch64-linux-android": [], + "@rules_rust//rust/platform:aarch64-pc-windows-msvc": [], + "@rules_rust//rust/platform:aarch64-unknown-fuchsia": [], + "@rules_rust//rust/platform:aarch64-unknown-linux-gnu": [], + "@rules_rust//rust/platform:aarch64-unknown-nixos-gnu": [], + "@rules_rust//rust/platform:aarch64-unknown-nto-qnx710": [], + "@rules_rust//rust/platform:aarch64-unknown-uefi": [], + "@rules_rust//rust/platform:arm-unknown-linux-gnueabi": [], + "@rules_rust//rust/platform:arm-unknown-linux-musleabi": [], + "@rules_rust//rust/platform:armv7-linux-androideabi": [], + "@rules_rust//rust/platform:armv7-unknown-linux-gnueabi": [], + "@rules_rust//rust/platform:i686-apple-darwin": [], + "@rules_rust//rust/platform:i686-linux-android": [], + "@rules_rust//rust/platform:i686-pc-windows-msvc": [], + "@rules_rust//rust/platform:i686-unknown-freebsd": [], + "@rules_rust//rust/platform:i686-unknown-linux-gnu": [], + "@rules_rust//rust/platform:powerpc-unknown-linux-gnu": [], + "@rules_rust//rust/platform:riscv32imc-unknown-none-elf": [], + "@rules_rust//rust/platform:riscv64gc-unknown-linux-gnu": [], + "@rules_rust//rust/platform:riscv64gc-unknown-none-elf": [], + "@rules_rust//rust/platform:s390x-unknown-linux-gnu": [], + "@rules_rust//rust/platform:thumbv7em-none-eabi": [], + "@rules_rust//rust/platform:thumbv8m.main-none-eabi": [], + "@rules_rust//rust/platform:wasm32-unknown-emscripten": [], + "@rules_rust//rust/platform:wasm32-unknown-unknown": [], + "@rules_rust//rust/platform:wasm32-wasip1": [], + "@rules_rust//rust/platform:wasm32-wasip1-threads": [], + "@rules_rust//rust/platform:wasm32-wasip2": [], + "@rules_rust//rust/platform:x86_64-apple-darwin": [], + "@rules_rust//rust/platform:x86_64-apple-ios": [], + "@rules_rust//rust/platform:x86_64-linux-android": [], + "@rules_rust//rust/platform:x86_64-pc-windows-msvc": [], + "@rules_rust//rust/platform:x86_64-unknown-freebsd": [], + "@rules_rust//rust/platform:x86_64-unknown-fuchsia": [], + "@rules_rust//rust/platform:x86_64-unknown-linux-gnu": [], + "@rules_rust//rust/platform:x86_64-unknown-nixos-gnu": [], + "@rules_rust//rust/platform:x86_64-unknown-none": [], + "@rules_rust//rust/platform:x86_64-unknown-uefi": [], + "//conditions:default": ["@platforms//:incompatible"], + }), + version = "0.2.3", +) diff --git a/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.petgraph-0.6.5.bazel b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.petgraph-0.6.5.bazel index 1ad22b9f498f..675b426dd1ab 100644 --- a/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.petgraph-0.6.5.bazel +++ b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.petgraph-0.6.5.bazel @@ -102,6 +102,6 @@ rust_library( version = "0.6.5", deps = [ "@vendor_ts__fixedbitset-0.4.2//:fixedbitset", - "@vendor_ts__indexmap-2.11.4//:indexmap", + "@vendor_ts__indexmap-2.14.0//:indexmap", ], ) diff --git a/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.toml_parser-1.0.3.bazel b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.phf-0.13.1.bazel similarity index 96% rename from misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.toml_parser-1.0.3.bazel rename to misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.phf-0.13.1.bazel index 3ad30e38760d..8c41939eb97f 100644 --- a/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.toml_parser-1.0.3.bazel +++ b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.phf-0.13.1.bazel @@ -17,7 +17,7 @@ cargo_toml_env_vars( ) rust_library( - name = "toml_parser", + name = "phf", srcs = glob( include = ["**/*.rs"], allow_empty = True, @@ -35,7 +35,7 @@ rust_library( ], ), crate_features = [ - "alloc", + "default", "std", ], crate_root = "src/lib.rs", @@ -48,7 +48,7 @@ rust_library( ], tags = [ "cargo-bazel", - "crate-name=toml_parser", + "crate-name=phf", "manual", "noclippy", "norustfmt", @@ -97,8 +97,8 @@ rust_library( "@rules_rust//rust/platform:x86_64-unknown-uefi": [], "//conditions:default": ["@platforms//:incompatible"], }), - version = "1.0.3", + version = "0.13.1", deps = [ - "@vendor_ts__winnow-0.7.13//:winnow", + "@vendor_ts__phf_shared-0.13.1//:phf_shared", ], ) diff --git a/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.phf_generator-0.13.1.bazel b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.phf_generator-0.13.1.bazel new file mode 100644 index 000000000000..c270102428d2 --- /dev/null +++ b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.phf_generator-0.13.1.bazel @@ -0,0 +1,101 @@ +############################################################################### +# @generated +# DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To +# regenerate this file, run the following: +# +# bazel run @@//misc/bazel/3rdparty:vendor_tree_sitter_extractors +############################################################################### + +load("@rules_rust//cargo:defs.bzl", "cargo_toml_env_vars") +load("@rules_rust//rust:defs.bzl", "rust_library") + +package(default_visibility = ["//visibility:public"]) + +cargo_toml_env_vars( + name = "cargo_toml_env_vars", + src = "Cargo.toml", +) + +rust_library( + name = "phf_generator", + srcs = glob( + include = ["**/*.rs"], + allow_empty = True, + ), + compile_data = glob( + include = ["**"], + allow_empty = True, + exclude = [ + "**/* *", + ".tmp_git_root/**/*", + "BUILD", + "BUILD.bazel", + "WORKSPACE", + "WORKSPACE.bazel", + ], + ), + crate_root = "src/lib.rs", + edition = "2021", + rustc_env_files = [ + ":cargo_toml_env_vars", + ], + rustc_flags = [ + "--cap-lints=allow", + ], + tags = [ + "cargo-bazel", + "crate-name=phf_generator", + "manual", + "noclippy", + "norustfmt", + ], + target_compatible_with = select({ + "@rules_rust//rust/platform:aarch64-apple-darwin": [], + "@rules_rust//rust/platform:aarch64-apple-ios": [], + "@rules_rust//rust/platform:aarch64-apple-ios-sim": [], + "@rules_rust//rust/platform:aarch64-linux-android": [], + "@rules_rust//rust/platform:aarch64-pc-windows-msvc": [], + "@rules_rust//rust/platform:aarch64-unknown-fuchsia": [], + "@rules_rust//rust/platform:aarch64-unknown-linux-gnu": [], + "@rules_rust//rust/platform:aarch64-unknown-nixos-gnu": [], + "@rules_rust//rust/platform:aarch64-unknown-nto-qnx710": [], + "@rules_rust//rust/platform:aarch64-unknown-uefi": [], + "@rules_rust//rust/platform:arm-unknown-linux-gnueabi": [], + "@rules_rust//rust/platform:arm-unknown-linux-musleabi": [], + "@rules_rust//rust/platform:armv7-linux-androideabi": [], + "@rules_rust//rust/platform:armv7-unknown-linux-gnueabi": [], + "@rules_rust//rust/platform:i686-apple-darwin": [], + "@rules_rust//rust/platform:i686-linux-android": [], + "@rules_rust//rust/platform:i686-pc-windows-msvc": [], + "@rules_rust//rust/platform:i686-unknown-freebsd": [], + "@rules_rust//rust/platform:i686-unknown-linux-gnu": [], + "@rules_rust//rust/platform:powerpc-unknown-linux-gnu": [], + "@rules_rust//rust/platform:riscv32imc-unknown-none-elf": [], + "@rules_rust//rust/platform:riscv64gc-unknown-linux-gnu": [], + "@rules_rust//rust/platform:riscv64gc-unknown-none-elf": [], + "@rules_rust//rust/platform:s390x-unknown-linux-gnu": [], + "@rules_rust//rust/platform:thumbv7em-none-eabi": [], + "@rules_rust//rust/platform:thumbv8m.main-none-eabi": [], + "@rules_rust//rust/platform:wasm32-unknown-emscripten": [], + "@rules_rust//rust/platform:wasm32-unknown-unknown": [], + "@rules_rust//rust/platform:wasm32-wasip1": [], + "@rules_rust//rust/platform:wasm32-wasip1-threads": [], + "@rules_rust//rust/platform:wasm32-wasip2": [], + "@rules_rust//rust/platform:x86_64-apple-darwin": [], + "@rules_rust//rust/platform:x86_64-apple-ios": [], + "@rules_rust//rust/platform:x86_64-linux-android": [], + "@rules_rust//rust/platform:x86_64-pc-windows-msvc": [], + "@rules_rust//rust/platform:x86_64-unknown-freebsd": [], + "@rules_rust//rust/platform:x86_64-unknown-fuchsia": [], + "@rules_rust//rust/platform:x86_64-unknown-linux-gnu": [], + "@rules_rust//rust/platform:x86_64-unknown-nixos-gnu": [], + "@rules_rust//rust/platform:x86_64-unknown-none": [], + "@rules_rust//rust/platform:x86_64-unknown-uefi": [], + "//conditions:default": ["@platforms//:incompatible"], + }), + version = "0.13.1", + deps = [ + "@vendor_ts__fastrand-2.4.1//:fastrand", + "@vendor_ts__phf_shared-0.13.1//:phf_shared", + ], +) diff --git a/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.phf_shared-0.13.1.bazel b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.phf_shared-0.13.1.bazel new file mode 100644 index 000000000000..164cee335225 --- /dev/null +++ b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.phf_shared-0.13.1.bazel @@ -0,0 +1,104 @@ +############################################################################### +# @generated +# DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To +# regenerate this file, run the following: +# +# bazel run @@//misc/bazel/3rdparty:vendor_tree_sitter_extractors +############################################################################### + +load("@rules_rust//cargo:defs.bzl", "cargo_toml_env_vars") +load("@rules_rust//rust:defs.bzl", "rust_library") + +package(default_visibility = ["//visibility:public"]) + +cargo_toml_env_vars( + name = "cargo_toml_env_vars", + src = "Cargo.toml", +) + +rust_library( + name = "phf_shared", + srcs = glob( + include = ["**/*.rs"], + allow_empty = True, + ), + compile_data = glob( + include = ["**"], + allow_empty = True, + exclude = [ + "**/* *", + ".tmp_git_root/**/*", + "BUILD", + "BUILD.bazel", + "WORKSPACE", + "WORKSPACE.bazel", + ], + ), + crate_features = [ + "default", + "std", + ], + crate_root = "src/lib.rs", + edition = "2021", + rustc_env_files = [ + ":cargo_toml_env_vars", + ], + rustc_flags = [ + "--cap-lints=allow", + ], + tags = [ + "cargo-bazel", + "crate-name=phf_shared", + "manual", + "noclippy", + "norustfmt", + ], + target_compatible_with = select({ + "@rules_rust//rust/platform:aarch64-apple-darwin": [], + "@rules_rust//rust/platform:aarch64-apple-ios": [], + "@rules_rust//rust/platform:aarch64-apple-ios-sim": [], + "@rules_rust//rust/platform:aarch64-linux-android": [], + "@rules_rust//rust/platform:aarch64-pc-windows-msvc": [], + "@rules_rust//rust/platform:aarch64-unknown-fuchsia": [], + "@rules_rust//rust/platform:aarch64-unknown-linux-gnu": [], + "@rules_rust//rust/platform:aarch64-unknown-nixos-gnu": [], + "@rules_rust//rust/platform:aarch64-unknown-nto-qnx710": [], + "@rules_rust//rust/platform:aarch64-unknown-uefi": [], + "@rules_rust//rust/platform:arm-unknown-linux-gnueabi": [], + "@rules_rust//rust/platform:arm-unknown-linux-musleabi": [], + "@rules_rust//rust/platform:armv7-linux-androideabi": [], + "@rules_rust//rust/platform:armv7-unknown-linux-gnueabi": [], + "@rules_rust//rust/platform:i686-apple-darwin": [], + "@rules_rust//rust/platform:i686-linux-android": [], + "@rules_rust//rust/platform:i686-pc-windows-msvc": [], + "@rules_rust//rust/platform:i686-unknown-freebsd": [], + "@rules_rust//rust/platform:i686-unknown-linux-gnu": [], + "@rules_rust//rust/platform:powerpc-unknown-linux-gnu": [], + "@rules_rust//rust/platform:riscv32imc-unknown-none-elf": [], + "@rules_rust//rust/platform:riscv64gc-unknown-linux-gnu": [], + "@rules_rust//rust/platform:riscv64gc-unknown-none-elf": [], + "@rules_rust//rust/platform:s390x-unknown-linux-gnu": [], + "@rules_rust//rust/platform:thumbv7em-none-eabi": [], + "@rules_rust//rust/platform:thumbv8m.main-none-eabi": [], + "@rules_rust//rust/platform:wasm32-unknown-emscripten": [], + "@rules_rust//rust/platform:wasm32-unknown-unknown": [], + "@rules_rust//rust/platform:wasm32-wasip1": [], + "@rules_rust//rust/platform:wasm32-wasip1-threads": [], + "@rules_rust//rust/platform:wasm32-wasip2": [], + "@rules_rust//rust/platform:x86_64-apple-darwin": [], + "@rules_rust//rust/platform:x86_64-apple-ios": [], + "@rules_rust//rust/platform:x86_64-linux-android": [], + "@rules_rust//rust/platform:x86_64-pc-windows-msvc": [], + "@rules_rust//rust/platform:x86_64-unknown-freebsd": [], + "@rules_rust//rust/platform:x86_64-unknown-fuchsia": [], + "@rules_rust//rust/platform:x86_64-unknown-linux-gnu": [], + "@rules_rust//rust/platform:x86_64-unknown-nixos-gnu": [], + "@rules_rust//rust/platform:x86_64-unknown-none": [], + "@rules_rust//rust/platform:x86_64-unknown-uefi": [], + "//conditions:default": ["@platforms//:incompatible"], + }), + version = "0.13.1", + deps = [ + "@vendor_ts__siphasher-1.0.3//:siphasher", + ], +) diff --git a/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.semver-1.0.26.bazel b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.prettyplease-0.2.37.bazel similarity index 92% rename from misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.semver-1.0.26.bazel rename to misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.prettyplease-0.2.37.bazel index a495f639d420..5d0886807cb8 100644 --- a/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.semver-1.0.26.bazel +++ b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.prettyplease-0.2.37.bazel @@ -21,7 +21,7 @@ cargo_toml_env_vars( ) rust_library( - name = "semver", + name = "prettyplease", srcs = glob( include = ["**/*.rs"], allow_empty = True, @@ -39,12 +39,10 @@ rust_library( ], ), crate_features = [ - "default", - "serde", - "std", + "verbatim", ], crate_root = "src/lib.rs", - edition = "2018", + edition = "2021", rustc_env_files = [ ":cargo_toml_env_vars", ], @@ -53,7 +51,7 @@ rust_library( ], tags = [ "cargo-bazel", - "crate-name=semver", + "crate-name=prettyplease", "manual", "noclippy", "norustfmt", @@ -102,10 +100,11 @@ rust_library( "@rules_rust//rust/platform:x86_64-unknown-uefi": [], "//conditions:default": ["@platforms//:incompatible"], }), - version = "1.0.26", + version = "0.2.37", deps = [ - "@vendor_ts__semver-1.0.26//:build_script_build", - "@vendor_ts__serde-1.0.228//:serde", + "@vendor_ts__prettyplease-0.2.37//:build_script_build", + "@vendor_ts__proc-macro2-1.0.101//:proc_macro2", + "@vendor_ts__syn-2.0.106//:syn", ], ) @@ -129,9 +128,7 @@ cargo_build_script( ], ), crate_features = [ - "default", - "serde", - "std", + "verbatim", ], crate_name = "build_script_build", crate_root = "build.rs", @@ -147,8 +144,9 @@ cargo_build_script( "WORKSPACE.bazel", ], ), - edition = "2018", - pkg_name = "semver", + edition = "2021", + links = "prettyplease02", + pkg_name = "prettyplease", rustc_env_files = [ ":cargo_toml_env_vars", ], @@ -157,12 +155,12 @@ cargo_build_script( ], tags = [ "cargo-bazel", - "crate-name=semver", + "crate-name=prettyplease", "manual", "noclippy", "norustfmt", ], - version = "1.0.26", + version = "0.2.37", visibility = ["//visibility:private"], ) diff --git a/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.proc-macro-crate-3.5.0.bazel b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.proc-macro-crate-3.5.0.bazel new file mode 100644 index 000000000000..0ae50367face --- /dev/null +++ b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.proc-macro-crate-3.5.0.bazel @@ -0,0 +1,100 @@ +############################################################################### +# @generated +# DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To +# regenerate this file, run the following: +# +# bazel run @@//misc/bazel/3rdparty:vendor_tree_sitter_extractors +############################################################################### + +load("@rules_rust//cargo:defs.bzl", "cargo_toml_env_vars") +load("@rules_rust//rust:defs.bzl", "rust_library") + +package(default_visibility = ["//visibility:public"]) + +cargo_toml_env_vars( + name = "cargo_toml_env_vars", + src = "Cargo.toml", +) + +rust_library( + name = "proc_macro_crate", + srcs = glob( + include = ["**/*.rs"], + allow_empty = True, + ), + compile_data = glob( + include = ["**"], + allow_empty = True, + exclude = [ + "**/* *", + ".tmp_git_root/**/*", + "BUILD", + "BUILD.bazel", + "WORKSPACE", + "WORKSPACE.bazel", + ], + ), + crate_root = "src/lib.rs", + edition = "2021", + rustc_env_files = [ + ":cargo_toml_env_vars", + ], + rustc_flags = [ + "--cap-lints=allow", + ], + tags = [ + "cargo-bazel", + "crate-name=proc-macro-crate", + "manual", + "noclippy", + "norustfmt", + ], + target_compatible_with = select({ + "@rules_rust//rust/platform:aarch64-apple-darwin": [], + "@rules_rust//rust/platform:aarch64-apple-ios": [], + "@rules_rust//rust/platform:aarch64-apple-ios-sim": [], + "@rules_rust//rust/platform:aarch64-linux-android": [], + "@rules_rust//rust/platform:aarch64-pc-windows-msvc": [], + "@rules_rust//rust/platform:aarch64-unknown-fuchsia": [], + "@rules_rust//rust/platform:aarch64-unknown-linux-gnu": [], + "@rules_rust//rust/platform:aarch64-unknown-nixos-gnu": [], + "@rules_rust//rust/platform:aarch64-unknown-nto-qnx710": [], + "@rules_rust//rust/platform:aarch64-unknown-uefi": [], + "@rules_rust//rust/platform:arm-unknown-linux-gnueabi": [], + "@rules_rust//rust/platform:arm-unknown-linux-musleabi": [], + "@rules_rust//rust/platform:armv7-linux-androideabi": [], + "@rules_rust//rust/platform:armv7-unknown-linux-gnueabi": [], + "@rules_rust//rust/platform:i686-apple-darwin": [], + "@rules_rust//rust/platform:i686-linux-android": [], + "@rules_rust//rust/platform:i686-pc-windows-msvc": [], + "@rules_rust//rust/platform:i686-unknown-freebsd": [], + "@rules_rust//rust/platform:i686-unknown-linux-gnu": [], + "@rules_rust//rust/platform:powerpc-unknown-linux-gnu": [], + "@rules_rust//rust/platform:riscv32imc-unknown-none-elf": [], + "@rules_rust//rust/platform:riscv64gc-unknown-linux-gnu": [], + "@rules_rust//rust/platform:riscv64gc-unknown-none-elf": [], + "@rules_rust//rust/platform:s390x-unknown-linux-gnu": [], + "@rules_rust//rust/platform:thumbv7em-none-eabi": [], + "@rules_rust//rust/platform:thumbv8m.main-none-eabi": [], + "@rules_rust//rust/platform:wasm32-unknown-emscripten": [], + "@rules_rust//rust/platform:wasm32-unknown-unknown": [], + "@rules_rust//rust/platform:wasm32-wasip1": [], + "@rules_rust//rust/platform:wasm32-wasip1-threads": [], + "@rules_rust//rust/platform:wasm32-wasip2": [], + "@rules_rust//rust/platform:x86_64-apple-darwin": [], + "@rules_rust//rust/platform:x86_64-apple-ios": [], + "@rules_rust//rust/platform:x86_64-linux-android": [], + "@rules_rust//rust/platform:x86_64-pc-windows-msvc": [], + "@rules_rust//rust/platform:x86_64-unknown-freebsd": [], + "@rules_rust//rust/platform:x86_64-unknown-fuchsia": [], + "@rules_rust//rust/platform:x86_64-unknown-linux-gnu": [], + "@rules_rust//rust/platform:x86_64-unknown-nixos-gnu": [], + "@rules_rust//rust/platform:x86_64-unknown-none": [], + "@rules_rust//rust/platform:x86_64-unknown-uefi": [], + "//conditions:default": ["@platforms//:incompatible"], + }), + version = "3.5.0", + deps = [ + "@vendor_ts__toml_edit-0.25.11-spec-1.1.0//:toml_edit", + ], +) diff --git a/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.ra_ap_base_db-0.0.301.bazel b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.ra_ap_base_db-0.0.301.bazel index 60cece39191b..073916cafe78 100644 --- a/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.ra_ap_base_db-0.0.301.bazel +++ b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.ra_ap_base_db-0.0.301.bazel @@ -108,7 +108,7 @@ rust_library( version = "0.0.301", deps = [ "@vendor_ts__dashmap-6.1.0//:dashmap", - "@vendor_ts__indexmap-2.11.4//:indexmap", + "@vendor_ts__indexmap-2.14.0//:indexmap", "@vendor_ts__la-arena-0.3.1//:la_arena", "@vendor_ts__ra_ap_cfg-0.0.301//:ra_ap_cfg", "@vendor_ts__ra_ap_intern-0.0.301//:ra_ap_intern", @@ -117,7 +117,7 @@ rust_library( "@vendor_ts__ra_ap_vfs-0.0.301//:ra_ap_vfs", "@vendor_ts__rustc-hash-2.1.1//:rustc_hash", "@vendor_ts__salsa-0.23.0//:salsa", - "@vendor_ts__semver-1.0.26//:semver", + "@vendor_ts__semver-1.0.28//:semver", "@vendor_ts__tracing-0.1.41//:tracing", "@vendor_ts__triomphe-0.1.14//:triomphe", ], diff --git a/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.ra_ap_hir-0.0.301.bazel b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.ra_ap_hir-0.0.301.bazel index c1272206d934..2d77b3cb351a 100644 --- a/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.ra_ap_hir-0.0.301.bazel +++ b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.ra_ap_hir-0.0.301.bazel @@ -109,7 +109,7 @@ rust_library( deps = [ "@vendor_ts__arrayvec-0.7.6//:arrayvec", "@vendor_ts__either-1.15.0//:either", - "@vendor_ts__indexmap-2.11.4//:indexmap", + "@vendor_ts__indexmap-2.14.0//:indexmap", "@vendor_ts__itertools-0.14.0//:itertools", "@vendor_ts__ra_ap_base_db-0.0.301//:ra_ap_base_db", "@vendor_ts__ra_ap_cfg-0.0.301//:ra_ap_cfg", diff --git a/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.ra_ap_hir_def-0.0.301.bazel b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.ra_ap_hir_def-0.0.301.bazel index bd85f440ba5d..caaa0ae151ed 100644 --- a/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.ra_ap_hir_def-0.0.301.bazel +++ b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.ra_ap_hir_def-0.0.301.bazel @@ -117,7 +117,7 @@ rust_library( "@vendor_ts__drop_bomb-0.1.5//:drop_bomb", "@vendor_ts__either-1.15.0//:either", "@vendor_ts__fst-0.4.7//:fst", - "@vendor_ts__indexmap-2.11.4//:indexmap", + "@vendor_ts__indexmap-2.14.0//:indexmap", "@vendor_ts__itertools-0.14.0//:itertools", "@vendor_ts__la-arena-0.3.1//:la_arena", "@vendor_ts__ra-ap-rustc_abi-0.123.0//:ra_ap_rustc_abi", diff --git a/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.ra_ap_hir_ty-0.0.301.bazel b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.ra_ap_hir_ty-0.0.301.bazel index 2dbbe4f77179..23f08b414914 100644 --- a/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.ra_ap_hir_ty-0.0.301.bazel +++ b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.ra_ap_hir_ty-0.0.301.bazel @@ -118,7 +118,7 @@ rust_library( "@vendor_ts__cov-mark-2.1.0//:cov_mark", "@vendor_ts__either-1.15.0//:either", "@vendor_ts__ena-0.14.3//:ena", - "@vendor_ts__indexmap-2.11.4//:indexmap", + "@vendor_ts__indexmap-2.14.0//:indexmap", "@vendor_ts__itertools-0.14.0//:itertools", "@vendor_ts__la-arena-0.3.1//:la_arena", "@vendor_ts__oorandom-11.1.5//:oorandom", diff --git a/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.ra_ap_ide_db-0.0.301.bazel b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.ra_ap_ide_db-0.0.301.bazel index 66d015a2efbf..b004cb57d399 100644 --- a/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.ra_ap_ide_db-0.0.301.bazel +++ b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.ra_ap_ide_db-0.0.301.bazel @@ -116,7 +116,7 @@ rust_library( "@vendor_ts__crossbeam-channel-0.5.15//:crossbeam_channel", "@vendor_ts__either-1.15.0//:either", "@vendor_ts__fst-0.4.7//:fst", - "@vendor_ts__indexmap-2.11.4//:indexmap", + "@vendor_ts__indexmap-2.14.0//:indexmap", "@vendor_ts__itertools-0.14.0//:itertools", "@vendor_ts__line-index-0.1.2//:line_index", "@vendor_ts__memchr-2.7.5//:memchr", diff --git a/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.ra_ap_proc_macro_api-0.0.301.bazel b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.ra_ap_proc_macro_api-0.0.301.bazel index 12961c51aec0..f0e9033583f7 100644 --- a/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.ra_ap_proc_macro_api-0.0.301.bazel +++ b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.ra_ap_proc_macro_api-0.0.301.bazel @@ -105,7 +105,7 @@ rust_library( }), version = "0.0.301", deps = [ - "@vendor_ts__indexmap-2.11.4//:indexmap", + "@vendor_ts__indexmap-2.14.0//:indexmap", "@vendor_ts__ra_ap_intern-0.0.301//:ra_ap_intern", "@vendor_ts__ra_ap_paths-0.0.301//:ra_ap_paths", "@vendor_ts__ra_ap_span-0.0.301//:ra_ap_span", diff --git a/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.ra_ap_project_model-0.0.301.bazel b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.ra_ap_project_model-0.0.301.bazel index 8f551d7bd0b8..0939c28b54b1 100644 --- a/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.ra_ap_project_model-0.0.301.bazel +++ b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.ra_ap_project_model-0.0.301.bazel @@ -119,7 +119,7 @@ rust_library( "@vendor_ts__ra_ap_stdx-0.0.301//:ra_ap_stdx", "@vendor_ts__ra_ap_toolchain-0.0.301//:ra_ap_toolchain", "@vendor_ts__rustc-hash-2.1.1//:rustc_hash", - "@vendor_ts__semver-1.0.26//:semver", + "@vendor_ts__semver-1.0.28//:semver", "@vendor_ts__serde-1.0.228//:serde", "@vendor_ts__serde_json-1.0.145//:serde_json", "@vendor_ts__temp-dir-0.1.16//:temp_dir", diff --git a/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.ra_ap_vfs-0.0.301.bazel b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.ra_ap_vfs-0.0.301.bazel index 67dd8bdd6104..4508df3a376f 100644 --- a/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.ra_ap_vfs-0.0.301.bazel +++ b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.ra_ap_vfs-0.0.301.bazel @@ -101,7 +101,7 @@ rust_library( deps = [ "@vendor_ts__crossbeam-channel-0.5.15//:crossbeam_channel", "@vendor_ts__fst-0.4.7//:fst", - "@vendor_ts__indexmap-2.11.4//:indexmap", + "@vendor_ts__indexmap-2.14.0//:indexmap", "@vendor_ts__nohash-hasher-0.2.0//:nohash_hasher", "@vendor_ts__ra_ap_paths-0.0.301//:ra_ap_paths", "@vendor_ts__ra_ap_stdx-0.0.301//:ra_ap_stdx", diff --git a/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.relative-path-2.0.1.bazel b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.relative-path-2.0.1.bazel new file mode 100644 index 000000000000..67aef624737c --- /dev/null +++ b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.relative-path-2.0.1.bazel @@ -0,0 +1,101 @@ +############################################################################### +# @generated +# DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To +# regenerate this file, run the following: +# +# bazel run @@//misc/bazel/3rdparty:vendor_tree_sitter_extractors +############################################################################### + +load("@rules_rust//cargo:defs.bzl", "cargo_toml_env_vars") +load("@rules_rust//rust:defs.bzl", "rust_library") + +package(default_visibility = ["//visibility:public"]) + +cargo_toml_env_vars( + name = "cargo_toml_env_vars", + src = "Cargo.toml", +) + +rust_library( + name = "relative_path", + srcs = glob( + include = ["**/*.rs"], + allow_empty = True, + ), + compile_data = glob( + include = ["**"], + allow_empty = True, + exclude = [ + "**/* *", + ".tmp_git_root/**/*", + "BUILD", + "BUILD.bazel", + "WORKSPACE", + "WORKSPACE.bazel", + ], + ), + crate_features = [ + "alloc", + "std", + ], + crate_root = "src/lib.rs", + edition = "2021", + rustc_env_files = [ + ":cargo_toml_env_vars", + ], + rustc_flags = [ + "--cap-lints=allow", + ], + tags = [ + "cargo-bazel", + "crate-name=relative-path", + "manual", + "noclippy", + "norustfmt", + ], + target_compatible_with = select({ + "@rules_rust//rust/platform:aarch64-apple-darwin": [], + "@rules_rust//rust/platform:aarch64-apple-ios": [], + "@rules_rust//rust/platform:aarch64-apple-ios-sim": [], + "@rules_rust//rust/platform:aarch64-linux-android": [], + "@rules_rust//rust/platform:aarch64-pc-windows-msvc": [], + "@rules_rust//rust/platform:aarch64-unknown-fuchsia": [], + "@rules_rust//rust/platform:aarch64-unknown-linux-gnu": [], + "@rules_rust//rust/platform:aarch64-unknown-nixos-gnu": [], + "@rules_rust//rust/platform:aarch64-unknown-nto-qnx710": [], + "@rules_rust//rust/platform:aarch64-unknown-uefi": [], + "@rules_rust//rust/platform:arm-unknown-linux-gnueabi": [], + "@rules_rust//rust/platform:arm-unknown-linux-musleabi": [], + "@rules_rust//rust/platform:armv7-linux-androideabi": [], + "@rules_rust//rust/platform:armv7-unknown-linux-gnueabi": [], + "@rules_rust//rust/platform:i686-apple-darwin": [], + "@rules_rust//rust/platform:i686-linux-android": [], + "@rules_rust//rust/platform:i686-pc-windows-msvc": [], + "@rules_rust//rust/platform:i686-unknown-freebsd": [], + "@rules_rust//rust/platform:i686-unknown-linux-gnu": [], + "@rules_rust//rust/platform:powerpc-unknown-linux-gnu": [], + "@rules_rust//rust/platform:riscv32imc-unknown-none-elf": [], + "@rules_rust//rust/platform:riscv64gc-unknown-linux-gnu": [], + "@rules_rust//rust/platform:riscv64gc-unknown-none-elf": [], + "@rules_rust//rust/platform:s390x-unknown-linux-gnu": [], + "@rules_rust//rust/platform:thumbv7em-none-eabi": [], + "@rules_rust//rust/platform:thumbv8m.main-none-eabi": [], + "@rules_rust//rust/platform:wasm32-unknown-emscripten": [], + "@rules_rust//rust/platform:wasm32-unknown-unknown": [], + "@rules_rust//rust/platform:wasm32-wasip1": [], + "@rules_rust//rust/platform:wasm32-wasip1-threads": [], + "@rules_rust//rust/platform:wasm32-wasip2": [], + "@rules_rust//rust/platform:x86_64-apple-darwin": [], + "@rules_rust//rust/platform:x86_64-apple-ios": [], + "@rules_rust//rust/platform:x86_64-linux-android": [], + "@rules_rust//rust/platform:x86_64-pc-windows-msvc": [], + "@rules_rust//rust/platform:x86_64-unknown-freebsd": [], + "@rules_rust//rust/platform:x86_64-unknown-fuchsia": [], + "@rules_rust//rust/platform:x86_64-unknown-linux-gnu": [], + "@rules_rust//rust/platform:x86_64-unknown-nixos-gnu": [], + "@rules_rust//rust/platform:x86_64-unknown-none": [], + "@rules_rust//rust/platform:x86_64-unknown-uefi": [], + "//conditions:default": ["@platforms//:incompatible"], + }), + version = "2.0.1", +) diff --git a/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.rquickjs-0.10.0.bazel b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.rquickjs-0.10.0.bazel new file mode 100644 index 000000000000..3c57513b3d3b --- /dev/null +++ b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.rquickjs-0.10.0.bazel @@ -0,0 +1,112 @@ +############################################################################### +# @generated +# DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To +# regenerate this file, run the following: +# +# bazel run @@//misc/bazel/3rdparty:vendor_tree_sitter_extractors +############################################################################### + +load("@rules_rust//cargo:defs.bzl", "cargo_toml_env_vars") +load("@rules_rust//rust:defs.bzl", "rust_library") + +package(default_visibility = ["//visibility:public"]) + +cargo_toml_env_vars( + name = "cargo_toml_env_vars", + src = "Cargo.toml", +) + +rust_library( + name = "rquickjs", + srcs = glob( + include = ["**/*.rs"], + allow_empty = True, + ), + compile_data = glob( + include = ["**"], + allow_empty = True, + exclude = [ + "**/* *", + ".tmp_git_root/**/*", + "BUILD", + "BUILD.bazel", + "WORKSPACE", + "WORKSPACE.bazel", + ], + ), + crate_features = [ + "bindgen", + "default", + "loader", + "macro", + "phf", + "rquickjs-macro", + "std", + ], + crate_root = "src/lib.rs", + edition = "2021", + proc_macro_deps = [ + "@vendor_ts__rquickjs-macro-0.10.0//:rquickjs_macro", + ], + rustc_env_files = [ + ":cargo_toml_env_vars", + ], + rustc_flags = [ + "--cap-lints=allow", + ], + tags = [ + "cargo-bazel", + "crate-name=rquickjs", + "manual", + "noclippy", + "norustfmt", + ], + target_compatible_with = select({ + "@rules_rust//rust/platform:aarch64-apple-darwin": [], + "@rules_rust//rust/platform:aarch64-apple-ios": [], + "@rules_rust//rust/platform:aarch64-apple-ios-sim": [], + "@rules_rust//rust/platform:aarch64-linux-android": [], + "@rules_rust//rust/platform:aarch64-pc-windows-msvc": [], + "@rules_rust//rust/platform:aarch64-unknown-fuchsia": [], + "@rules_rust//rust/platform:aarch64-unknown-linux-gnu": [], + "@rules_rust//rust/platform:aarch64-unknown-nixos-gnu": [], + "@rules_rust//rust/platform:aarch64-unknown-nto-qnx710": [], + "@rules_rust//rust/platform:aarch64-unknown-uefi": [], + "@rules_rust//rust/platform:arm-unknown-linux-gnueabi": [], + "@rules_rust//rust/platform:arm-unknown-linux-musleabi": [], + "@rules_rust//rust/platform:armv7-linux-androideabi": [], + "@rules_rust//rust/platform:armv7-unknown-linux-gnueabi": [], + "@rules_rust//rust/platform:i686-apple-darwin": [], + "@rules_rust//rust/platform:i686-linux-android": [], + "@rules_rust//rust/platform:i686-pc-windows-msvc": [], + "@rules_rust//rust/platform:i686-unknown-freebsd": [], + "@rules_rust//rust/platform:i686-unknown-linux-gnu": [], + "@rules_rust//rust/platform:powerpc-unknown-linux-gnu": [], + "@rules_rust//rust/platform:riscv32imc-unknown-none-elf": [], + "@rules_rust//rust/platform:riscv64gc-unknown-linux-gnu": [], + "@rules_rust//rust/platform:riscv64gc-unknown-none-elf": [], + "@rules_rust//rust/platform:s390x-unknown-linux-gnu": [], + "@rules_rust//rust/platform:thumbv7em-none-eabi": [], + "@rules_rust//rust/platform:thumbv8m.main-none-eabi": [], + "@rules_rust//rust/platform:wasm32-unknown-emscripten": [], + "@rules_rust//rust/platform:wasm32-unknown-unknown": [], + "@rules_rust//rust/platform:wasm32-wasip1": [], + "@rules_rust//rust/platform:wasm32-wasip1-threads": [], + "@rules_rust//rust/platform:wasm32-wasip2": [], + "@rules_rust//rust/platform:x86_64-apple-darwin": [], + "@rules_rust//rust/platform:x86_64-apple-ios": [], + "@rules_rust//rust/platform:x86_64-linux-android": [], + "@rules_rust//rust/platform:x86_64-pc-windows-msvc": [], + "@rules_rust//rust/platform:x86_64-unknown-freebsd": [], + "@rules_rust//rust/platform:x86_64-unknown-fuchsia": [], + "@rules_rust//rust/platform:x86_64-unknown-linux-gnu": [], + "@rules_rust//rust/platform:x86_64-unknown-nixos-gnu": [], + "@rules_rust//rust/platform:x86_64-unknown-none": [], + "@rules_rust//rust/platform:x86_64-unknown-uefi": [], + "//conditions:default": ["@platforms//:incompatible"], + }), + version = "0.10.0", + deps = [ + "@vendor_ts__rquickjs-core-0.10.0//:rquickjs_core", + ], +) diff --git a/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.rquickjs-core-0.10.0.bazel b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.rquickjs-core-0.10.0.bazel new file mode 100644 index 000000000000..415c9ee4e4b3 --- /dev/null +++ b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.rquickjs-core-0.10.0.bazel @@ -0,0 +1,110 @@ +############################################################################### +# @generated +# DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To +# regenerate this file, run the following: +# +# bazel run @@//misc/bazel/3rdparty:vendor_tree_sitter_extractors +############################################################################### + +load("@rules_rust//cargo:defs.bzl", "cargo_toml_env_vars") +load("@rules_rust//rust:defs.bzl", "rust_library") + +package(default_visibility = ["//visibility:public"]) + +cargo_toml_env_vars( + name = "cargo_toml_env_vars", + src = "Cargo.toml", +) + +rust_library( + name = "rquickjs_core", + srcs = glob( + include = ["**/*.rs"], + allow_empty = True, + ), + compile_data = glob( + include = ["**"], + allow_empty = True, + exclude = [ + "**/* *", + ".tmp_git_root/**/*", + "BUILD", + "BUILD.bazel", + "WORKSPACE", + "WORKSPACE.bazel", + ], + ), + crate_features = [ + "bindgen", + "loader", + "phf", + "relative-path", + "std", + ], + crate_root = "src/lib.rs", + edition = "2021", + rustc_env_files = [ + ":cargo_toml_env_vars", + ], + rustc_flags = [ + "--cap-lints=allow", + ], + tags = [ + "cargo-bazel", + "crate-name=rquickjs-core", + "manual", + "noclippy", + "norustfmt", + ], + target_compatible_with = select({ + "@rules_rust//rust/platform:aarch64-apple-darwin": [], + "@rules_rust//rust/platform:aarch64-apple-ios": [], + "@rules_rust//rust/platform:aarch64-apple-ios-sim": [], + "@rules_rust//rust/platform:aarch64-linux-android": [], + "@rules_rust//rust/platform:aarch64-pc-windows-msvc": [], + "@rules_rust//rust/platform:aarch64-unknown-fuchsia": [], + "@rules_rust//rust/platform:aarch64-unknown-linux-gnu": [], + "@rules_rust//rust/platform:aarch64-unknown-nixos-gnu": [], + "@rules_rust//rust/platform:aarch64-unknown-nto-qnx710": [], + "@rules_rust//rust/platform:aarch64-unknown-uefi": [], + "@rules_rust//rust/platform:arm-unknown-linux-gnueabi": [], + "@rules_rust//rust/platform:arm-unknown-linux-musleabi": [], + "@rules_rust//rust/platform:armv7-linux-androideabi": [], + "@rules_rust//rust/platform:armv7-unknown-linux-gnueabi": [], + "@rules_rust//rust/platform:i686-apple-darwin": [], + "@rules_rust//rust/platform:i686-linux-android": [], + "@rules_rust//rust/platform:i686-pc-windows-msvc": [], + "@rules_rust//rust/platform:i686-unknown-freebsd": [], + "@rules_rust//rust/platform:i686-unknown-linux-gnu": [], + "@rules_rust//rust/platform:powerpc-unknown-linux-gnu": [], + "@rules_rust//rust/platform:riscv32imc-unknown-none-elf": [], + "@rules_rust//rust/platform:riscv64gc-unknown-linux-gnu": [], + "@rules_rust//rust/platform:riscv64gc-unknown-none-elf": [], + "@rules_rust//rust/platform:s390x-unknown-linux-gnu": [], + "@rules_rust//rust/platform:thumbv7em-none-eabi": [], + "@rules_rust//rust/platform:thumbv8m.main-none-eabi": [], + "@rules_rust//rust/platform:wasm32-unknown-emscripten": [], + "@rules_rust//rust/platform:wasm32-unknown-unknown": [], + "@rules_rust//rust/platform:wasm32-wasip1": [], + "@rules_rust//rust/platform:wasm32-wasip1-threads": [], + "@rules_rust//rust/platform:wasm32-wasip2": [], + "@rules_rust//rust/platform:x86_64-apple-darwin": [], + "@rules_rust//rust/platform:x86_64-apple-ios": [], + "@rules_rust//rust/platform:x86_64-linux-android": [], + "@rules_rust//rust/platform:x86_64-pc-windows-msvc": [], + "@rules_rust//rust/platform:x86_64-unknown-freebsd": [], + "@rules_rust//rust/platform:x86_64-unknown-fuchsia": [], + "@rules_rust//rust/platform:x86_64-unknown-linux-gnu": [], + "@rules_rust//rust/platform:x86_64-unknown-nixos-gnu": [], + "@rules_rust//rust/platform:x86_64-unknown-none": [], + "@rules_rust//rust/platform:x86_64-unknown-uefi": [], + "//conditions:default": ["@platforms//:incompatible"], + }), + version = "0.10.0", + deps = [ + "@vendor_ts__hashbrown-0.16.1//:hashbrown", + "@vendor_ts__phf-0.13.1//:phf", + "@vendor_ts__relative-path-2.0.1//:relative_path", + "@vendor_ts__rquickjs-sys-0.10.0//:rquickjs_sys", + ], +) diff --git a/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.rquickjs-macro-0.10.0.bazel b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.rquickjs-macro-0.10.0.bazel new file mode 100644 index 000000000000..055e627f3bed --- /dev/null +++ b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.rquickjs-macro-0.10.0.bazel @@ -0,0 +1,116 @@ +############################################################################### +# @generated +# DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To +# regenerate this file, run the following: +# +# bazel run @@//misc/bazel/3rdparty:vendor_tree_sitter_extractors +############################################################################### + +load("@rules_rust//cargo:defs.bzl", "cargo_toml_env_vars") +load("@rules_rust//rust:defs.bzl", "rust_proc_macro") + +package(default_visibility = ["//visibility:public"]) + +cargo_toml_env_vars( + name = "cargo_toml_env_vars", + src = "Cargo.toml", +) + +rust_proc_macro( + name = "rquickjs_macro", + srcs = glob( + include = ["**/*.rs"], + allow_empty = True, + ), + compile_data = glob( + include = ["**"], + allow_empty = True, + exclude = [ + "**/* *", + ".tmp_git_root/**/*", + "BUILD", + "BUILD.bazel", + "WORKSPACE", + "WORKSPACE.bazel", + ], + ), + crate_features = [ + "bindgen", + "phf", + "phf_generator", + "phf_shared", + ], + crate_root = "src/lib.rs", + edition = "2021", + rustc_env_files = [ + ":cargo_toml_env_vars", + ], + rustc_flags = [ + "--cap-lints=allow", + ], + tags = [ + "cargo-bazel", + "crate-name=rquickjs-macro", + "manual", + "noclippy", + "norustfmt", + ], + target_compatible_with = select({ + "@rules_rust//rust/platform:aarch64-apple-darwin": [], + "@rules_rust//rust/platform:aarch64-apple-ios": [], + "@rules_rust//rust/platform:aarch64-apple-ios-sim": [], + "@rules_rust//rust/platform:aarch64-linux-android": [], + "@rules_rust//rust/platform:aarch64-pc-windows-msvc": [], + "@rules_rust//rust/platform:aarch64-unknown-fuchsia": [], + "@rules_rust//rust/platform:aarch64-unknown-linux-gnu": [], + "@rules_rust//rust/platform:aarch64-unknown-nixos-gnu": [], + "@rules_rust//rust/platform:aarch64-unknown-nto-qnx710": [], + "@rules_rust//rust/platform:aarch64-unknown-uefi": [], + "@rules_rust//rust/platform:arm-unknown-linux-gnueabi": [], + "@rules_rust//rust/platform:arm-unknown-linux-musleabi": [], + "@rules_rust//rust/platform:armv7-linux-androideabi": [], + "@rules_rust//rust/platform:armv7-unknown-linux-gnueabi": [], + "@rules_rust//rust/platform:i686-apple-darwin": [], + "@rules_rust//rust/platform:i686-linux-android": [], + "@rules_rust//rust/platform:i686-pc-windows-msvc": [], + "@rules_rust//rust/platform:i686-unknown-freebsd": [], + "@rules_rust//rust/platform:i686-unknown-linux-gnu": [], + "@rules_rust//rust/platform:powerpc-unknown-linux-gnu": [], + "@rules_rust//rust/platform:riscv32imc-unknown-none-elf": [], + "@rules_rust//rust/platform:riscv64gc-unknown-linux-gnu": [], + "@rules_rust//rust/platform:riscv64gc-unknown-none-elf": [], + "@rules_rust//rust/platform:s390x-unknown-linux-gnu": [], + "@rules_rust//rust/platform:thumbv7em-none-eabi": [], + "@rules_rust//rust/platform:thumbv8m.main-none-eabi": [], + "@rules_rust//rust/platform:wasm32-unknown-emscripten": [], + "@rules_rust//rust/platform:wasm32-unknown-unknown": [], + "@rules_rust//rust/platform:wasm32-wasip1": [], + "@rules_rust//rust/platform:wasm32-wasip1-threads": [], + "@rules_rust//rust/platform:wasm32-wasip2": [], + "@rules_rust//rust/platform:x86_64-apple-darwin": [], + "@rules_rust//rust/platform:x86_64-apple-ios": [], + "@rules_rust//rust/platform:x86_64-linux-android": [], + "@rules_rust//rust/platform:x86_64-pc-windows-msvc": [], + "@rules_rust//rust/platform:x86_64-unknown-freebsd": [], + "@rules_rust//rust/platform:x86_64-unknown-fuchsia": [], + "@rules_rust//rust/platform:x86_64-unknown-linux-gnu": [], + "@rules_rust//rust/platform:x86_64-unknown-nixos-gnu": [], + "@rules_rust//rust/platform:x86_64-unknown-none": [], + "@rules_rust//rust/platform:x86_64-unknown-uefi": [], + "//conditions:default": ["@platforms//:incompatible"], + }), + version = "0.10.0", + deps = [ + "@vendor_ts__convert_case-0.8.0//:convert_case", + "@vendor_ts__fnv-1.0.7//:fnv", + "@vendor_ts__ident_case-1.0.1//:ident_case", + "@vendor_ts__indexmap-2.14.0//:indexmap", + "@vendor_ts__phf_generator-0.13.1//:phf_generator", + "@vendor_ts__phf_shared-0.13.1//:phf_shared", + "@vendor_ts__proc-macro-crate-3.5.0//:proc_macro_crate", + "@vendor_ts__proc-macro2-1.0.101//:proc_macro2", + "@vendor_ts__quote-1.0.41//:quote", + "@vendor_ts__rquickjs-core-0.10.0//:rquickjs_core", + "@vendor_ts__syn-2.0.106//:syn", + ], +) diff --git a/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.rquickjs-sys-0.10.0.bazel b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.rquickjs-sys-0.10.0.bazel new file mode 100644 index 000000000000..185637f6ba47 --- /dev/null +++ b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.rquickjs-sys-0.10.0.bazel @@ -0,0 +1,177 @@ +############################################################################### +# @generated +# DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To +# regenerate this file, run the following: +# +# bazel run @@//misc/bazel/3rdparty:vendor_tree_sitter_extractors +############################################################################### + +load( + "@rules_rust//cargo:defs.bzl", + "cargo_build_script", + "cargo_toml_env_vars", +) +load("@rules_rust//rust:defs.bzl", "rust_library") + +package(default_visibility = ["//visibility:public"]) + +cargo_toml_env_vars( + name = "cargo_toml_env_vars", + src = "Cargo.toml", +) + +rust_library( + name = "rquickjs_sys", + srcs = glob( + include = ["**/*.rs"], + allow_empty = True, + ), + compile_data = glob( + include = ["**"], + allow_empty = True, + exclude = [ + "**/* *", + ".tmp_git_root/**/*", + "BUILD", + "BUILD.bazel", + "WORKSPACE", + "WORKSPACE.bazel", + ], + ), + crate_features = [ + "bindgen", + "bindgen-rs", + ], + crate_root = "src/lib.rs", + edition = "2021", + rustc_env_files = [ + ":cargo_toml_env_vars", + ], + rustc_flags = [ + "--cap-lints=allow", + ], + tags = [ + "cargo-bazel", + "crate-name=rquickjs-sys", + "manual", + "noclippy", + "norustfmt", + ], + target_compatible_with = select({ + "@rules_rust//rust/platform:aarch64-apple-darwin": [], + "@rules_rust//rust/platform:aarch64-apple-ios": [], + "@rules_rust//rust/platform:aarch64-apple-ios-sim": [], + "@rules_rust//rust/platform:aarch64-linux-android": [], + "@rules_rust//rust/platform:aarch64-pc-windows-msvc": [], + "@rules_rust//rust/platform:aarch64-unknown-fuchsia": [], + "@rules_rust//rust/platform:aarch64-unknown-linux-gnu": [], + "@rules_rust//rust/platform:aarch64-unknown-nixos-gnu": [], + "@rules_rust//rust/platform:aarch64-unknown-nto-qnx710": [], + "@rules_rust//rust/platform:aarch64-unknown-uefi": [], + "@rules_rust//rust/platform:arm-unknown-linux-gnueabi": [], + "@rules_rust//rust/platform:arm-unknown-linux-musleabi": [], + "@rules_rust//rust/platform:armv7-linux-androideabi": [], + "@rules_rust//rust/platform:armv7-unknown-linux-gnueabi": [], + "@rules_rust//rust/platform:i686-apple-darwin": [], + "@rules_rust//rust/platform:i686-linux-android": [], + "@rules_rust//rust/platform:i686-pc-windows-msvc": [], + "@rules_rust//rust/platform:i686-unknown-freebsd": [], + "@rules_rust//rust/platform:i686-unknown-linux-gnu": [], + "@rules_rust//rust/platform:powerpc-unknown-linux-gnu": [], + "@rules_rust//rust/platform:riscv32imc-unknown-none-elf": [], + "@rules_rust//rust/platform:riscv64gc-unknown-linux-gnu": [], + "@rules_rust//rust/platform:riscv64gc-unknown-none-elf": [], + "@rules_rust//rust/platform:s390x-unknown-linux-gnu": [], + "@rules_rust//rust/platform:thumbv7em-none-eabi": [], + "@rules_rust//rust/platform:thumbv8m.main-none-eabi": [], + "@rules_rust//rust/platform:wasm32-unknown-emscripten": [], + "@rules_rust//rust/platform:wasm32-unknown-unknown": [], + "@rules_rust//rust/platform:wasm32-wasip1": [], + "@rules_rust//rust/platform:wasm32-wasip1-threads": [], + "@rules_rust//rust/platform:wasm32-wasip2": [], + "@rules_rust//rust/platform:x86_64-apple-darwin": [], + "@rules_rust//rust/platform:x86_64-apple-ios": [], + "@rules_rust//rust/platform:x86_64-linux-android": [], + "@rules_rust//rust/platform:x86_64-pc-windows-msvc": [], + "@rules_rust//rust/platform:x86_64-unknown-freebsd": [], + "@rules_rust//rust/platform:x86_64-unknown-fuchsia": [], + "@rules_rust//rust/platform:x86_64-unknown-linux-gnu": [], + "@rules_rust//rust/platform:x86_64-unknown-nixos-gnu": [], + "@rules_rust//rust/platform:x86_64-unknown-none": [], + "@rules_rust//rust/platform:x86_64-unknown-uefi": [], + "//conditions:default": ["@platforms//:incompatible"], + }), + version = "0.10.0", + deps = [ + "@vendor_ts__rquickjs-sys-0.10.0//:build_script_build", + ], +) + +cargo_build_script( + name = "_bs", + srcs = glob( + include = ["**/*.rs"], + allow_empty = True, + ), + aliases = { + "@vendor_ts__bindgen-0.72.1//:bindgen": "bindgen_rs", + }, + compile_data = glob( + include = ["**"], + allow_empty = True, + exclude = [ + "**/* *", + "**/*.rs", + ".tmp_git_root/**/*", + "BUILD", + "BUILD.bazel", + "WORKSPACE", + "WORKSPACE.bazel", + ], + ), + crate_features = [ + "bindgen", + "bindgen-rs", + ], + crate_name = "build_script_build", + crate_root = "build.rs", + data = glob( + include = ["**"], + allow_empty = True, + exclude = [ + "**/* *", + ".tmp_git_root/**/*", + "BUILD", + "BUILD.bazel", + "WORKSPACE", + "WORKSPACE.bazel", + ], + ), + edition = "2021", + pkg_name = "rquickjs-sys", + rustc_env_files = [ + ":cargo_toml_env_vars", + ], + rustc_flags = [ + "--cap-lints=allow", + ], + tags = [ + "cargo-bazel", + "crate-name=rquickjs-sys", + "manual", + "noclippy", + "norustfmt", + ], + version = "0.10.0", + visibility = ["//visibility:private"], + deps = [ + "@vendor_ts__bindgen-0.72.1//:bindgen", + "@vendor_ts__cc-1.2.61//:cc", + ], +) + +alias( + name = "build_script_build", + actual = ":_bs", + tags = ["manual"], +) diff --git a/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.salsa-0.23.0.bazel b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.salsa-0.23.0.bazel index 25fcd798c654..5e02ff49c087 100644 --- a/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.salsa-0.23.0.bazel +++ b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.salsa-0.23.0.bazel @@ -109,7 +109,7 @@ rust_library( "@vendor_ts__crossbeam-utils-0.8.21//:crossbeam_utils", "@vendor_ts__hashbrown-0.15.5//:hashbrown", "@vendor_ts__hashlink-0.10.0//:hashlink", - "@vendor_ts__indexmap-2.11.4//:indexmap", + "@vendor_ts__indexmap-2.14.0//:indexmap", "@vendor_ts__intrusive-collections-0.9.7//:intrusive_collections", "@vendor_ts__papaya-0.2.3//:papaya", "@vendor_ts__parking_lot-0.12.4//:parking_lot", diff --git a/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.semver-1.0.28.bazel b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.semver-1.0.28.bazel new file mode 100644 index 000000000000..5c659d959e2c --- /dev/null +++ b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.semver-1.0.28.bazel @@ -0,0 +1,108 @@ +############################################################################### +# @generated +# DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To +# regenerate this file, run the following: +# +# bazel run @@//misc/bazel/3rdparty:vendor_tree_sitter_extractors +############################################################################### + +load("@rules_rust//cargo:defs.bzl", "cargo_toml_env_vars") +load("@rules_rust//rust:defs.bzl", "rust_library") + +package(default_visibility = ["//visibility:public"]) + +cargo_toml_env_vars( + name = "cargo_toml_env_vars", + src = "Cargo.toml", +) + +rust_library( + name = "semver", + srcs = glob( + include = ["**/*.rs"], + allow_empty = True, + ), + aliases = { + "@vendor_ts__serde_core-1.0.228//:serde_core": "serde", + }, + compile_data = glob( + include = ["**"], + allow_empty = True, + exclude = [ + "**/* *", + ".tmp_git_root/**/*", + "BUILD", + "BUILD.bazel", + "WORKSPACE", + "WORKSPACE.bazel", + ], + ), + crate_features = [ + "default", + "serde", + "std", + ], + crate_root = "src/lib.rs", + edition = "2021", + rustc_env_files = [ + ":cargo_toml_env_vars", + ], + rustc_flags = [ + "--cap-lints=allow", + ], + tags = [ + "cargo-bazel", + "crate-name=semver", + "manual", + "noclippy", + "norustfmt", + ], + target_compatible_with = select({ + "@rules_rust//rust/platform:aarch64-apple-darwin": [], + "@rules_rust//rust/platform:aarch64-apple-ios": [], + "@rules_rust//rust/platform:aarch64-apple-ios-sim": [], + "@rules_rust//rust/platform:aarch64-linux-android": [], + "@rules_rust//rust/platform:aarch64-pc-windows-msvc": [], + "@rules_rust//rust/platform:aarch64-unknown-fuchsia": [], + "@rules_rust//rust/platform:aarch64-unknown-linux-gnu": [], + "@rules_rust//rust/platform:aarch64-unknown-nixos-gnu": [], + "@rules_rust//rust/platform:aarch64-unknown-nto-qnx710": [], + "@rules_rust//rust/platform:aarch64-unknown-uefi": [], + "@rules_rust//rust/platform:arm-unknown-linux-gnueabi": [], + "@rules_rust//rust/platform:arm-unknown-linux-musleabi": [], + "@rules_rust//rust/platform:armv7-linux-androideabi": [], + "@rules_rust//rust/platform:armv7-unknown-linux-gnueabi": [], + "@rules_rust//rust/platform:i686-apple-darwin": [], + "@rules_rust//rust/platform:i686-linux-android": [], + "@rules_rust//rust/platform:i686-pc-windows-msvc": [], + "@rules_rust//rust/platform:i686-unknown-freebsd": [], + "@rules_rust//rust/platform:i686-unknown-linux-gnu": [], + "@rules_rust//rust/platform:powerpc-unknown-linux-gnu": [], + "@rules_rust//rust/platform:riscv32imc-unknown-none-elf": [], + "@rules_rust//rust/platform:riscv64gc-unknown-linux-gnu": [], + "@rules_rust//rust/platform:riscv64gc-unknown-none-elf": [], + "@rules_rust//rust/platform:s390x-unknown-linux-gnu": [], + "@rules_rust//rust/platform:thumbv7em-none-eabi": [], + "@rules_rust//rust/platform:thumbv8m.main-none-eabi": [], + "@rules_rust//rust/platform:wasm32-unknown-emscripten": [], + "@rules_rust//rust/platform:wasm32-unknown-unknown": [], + "@rules_rust//rust/platform:wasm32-wasip1": [], + "@rules_rust//rust/platform:wasm32-wasip1-threads": [], + "@rules_rust//rust/platform:wasm32-wasip2": [], + "@rules_rust//rust/platform:x86_64-apple-darwin": [], + "@rules_rust//rust/platform:x86_64-apple-ios": [], + "@rules_rust//rust/platform:x86_64-linux-android": [], + "@rules_rust//rust/platform:x86_64-pc-windows-msvc": [], + "@rules_rust//rust/platform:x86_64-unknown-freebsd": [], + "@rules_rust//rust/platform:x86_64-unknown-fuchsia": [], + "@rules_rust//rust/platform:x86_64-unknown-linux-gnu": [], + "@rules_rust//rust/platform:x86_64-unknown-nixos-gnu": [], + "@rules_rust//rust/platform:x86_64-unknown-none": [], + "@rules_rust//rust/platform:x86_64-unknown-uefi": [], + "//conditions:default": ["@platforms//:incompatible"], + }), + version = "1.0.28", + deps = [ + "@vendor_ts__serde_core-1.0.228//:serde_core", + ], +) diff --git a/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.serde_json-1.0.145.bazel b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.serde_json-1.0.145.bazel index eaee1ee4b284..dbbf22985e33 100644 --- a/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.serde_json-1.0.145.bazel +++ b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.serde_json-1.0.145.bazel @@ -173,49 +173,49 @@ rust_library( "@vendor_ts__serde_json-1.0.145//:build_script_build", ] + select({ "@rules_rust//rust/platform:aarch64-apple-darwin": [ - "@vendor_ts__indexmap-2.11.4//:indexmap", # aarch64-apple-darwin + "@vendor_ts__indexmap-2.14.0//:indexmap", # aarch64-apple-darwin ], "@rules_rust//rust/platform:aarch64-pc-windows-msvc": [ - "@vendor_ts__indexmap-2.11.4//:indexmap", # aarch64-pc-windows-msvc + "@vendor_ts__indexmap-2.14.0//:indexmap", # aarch64-pc-windows-msvc ], "@rules_rust//rust/platform:aarch64-unknown-linux-gnu": [ - "@vendor_ts__indexmap-2.11.4//:indexmap", # aarch64-unknown-linux-gnu + "@vendor_ts__indexmap-2.14.0//:indexmap", # aarch64-unknown-linux-gnu ], "@rules_rust//rust/platform:aarch64-unknown-nixos-gnu": [ - "@vendor_ts__indexmap-2.11.4//:indexmap", # aarch64-unknown-linux-gnu, aarch64-unknown-nixos-gnu + "@vendor_ts__indexmap-2.14.0//:indexmap", # aarch64-unknown-linux-gnu, aarch64-unknown-nixos-gnu ], "@rules_rust//rust/platform:arm-unknown-linux-gnueabi": [ - "@vendor_ts__indexmap-2.11.4//:indexmap", # arm-unknown-linux-gnueabi + "@vendor_ts__indexmap-2.14.0//:indexmap", # arm-unknown-linux-gnueabi ], "@rules_rust//rust/platform:i686-pc-windows-msvc": [ - "@vendor_ts__indexmap-2.11.4//:indexmap", # i686-pc-windows-msvc + "@vendor_ts__indexmap-2.14.0//:indexmap", # i686-pc-windows-msvc ], "@rules_rust//rust/platform:i686-unknown-linux-gnu": [ - "@vendor_ts__indexmap-2.11.4//:indexmap", # i686-unknown-linux-gnu + "@vendor_ts__indexmap-2.14.0//:indexmap", # i686-unknown-linux-gnu ], "@rules_rust//rust/platform:powerpc-unknown-linux-gnu": [ - "@vendor_ts__indexmap-2.11.4//:indexmap", # powerpc-unknown-linux-gnu + "@vendor_ts__indexmap-2.14.0//:indexmap", # powerpc-unknown-linux-gnu ], "@rules_rust//rust/platform:riscv64gc-unknown-linux-gnu": [ - "@vendor_ts__indexmap-2.11.4//:indexmap", # riscv64gc-unknown-linux-gnu + "@vendor_ts__indexmap-2.14.0//:indexmap", # riscv64gc-unknown-linux-gnu ], "@rules_rust//rust/platform:s390x-unknown-linux-gnu": [ - "@vendor_ts__indexmap-2.11.4//:indexmap", # s390x-unknown-linux-gnu + "@vendor_ts__indexmap-2.14.0//:indexmap", # s390x-unknown-linux-gnu ], "@rules_rust//rust/platform:x86_64-apple-darwin": [ - "@vendor_ts__indexmap-2.11.4//:indexmap", # x86_64-apple-darwin + "@vendor_ts__indexmap-2.14.0//:indexmap", # x86_64-apple-darwin ], "@rules_rust//rust/platform:x86_64-pc-windows-msvc": [ - "@vendor_ts__indexmap-2.11.4//:indexmap", # x86_64-pc-windows-msvc + "@vendor_ts__indexmap-2.14.0//:indexmap", # x86_64-pc-windows-msvc ], "@rules_rust//rust/platform:x86_64-unknown-freebsd": [ - "@vendor_ts__indexmap-2.11.4//:indexmap", # x86_64-unknown-freebsd + "@vendor_ts__indexmap-2.14.0//:indexmap", # x86_64-unknown-freebsd ], "@rules_rust//rust/platform:x86_64-unknown-linux-gnu": [ - "@vendor_ts__indexmap-2.11.4//:indexmap", # x86_64-unknown-linux-gnu + "@vendor_ts__indexmap-2.14.0//:indexmap", # x86_64-unknown-linux-gnu ], "@rules_rust//rust/platform:x86_64-unknown-nixos-gnu": [ - "@vendor_ts__indexmap-2.11.4//:indexmap", # x86_64-unknown-linux-gnu, x86_64-unknown-nixos-gnu + "@vendor_ts__indexmap-2.14.0//:indexmap", # x86_64-unknown-linux-gnu, x86_64-unknown-nixos-gnu ], "//conditions:default": [], }), diff --git a/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.serde_yaml-0.9.34+deprecated.bazel b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.serde_yaml-0.9.34+deprecated.bazel index 42f05a8553a0..1cb0484417b3 100644 --- a/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.serde_yaml-0.9.34+deprecated.bazel +++ b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.serde_yaml-0.9.34+deprecated.bazel @@ -95,7 +95,7 @@ rust_library( }), version = "0.9.34+deprecated", deps = [ - "@vendor_ts__indexmap-2.11.4//:indexmap", + "@vendor_ts__indexmap-2.14.0//:indexmap", "@vendor_ts__itoa-1.0.15//:itoa", "@vendor_ts__ryu-1.0.20//:ryu", "@vendor_ts__serde-1.0.228//:serde", diff --git a/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.siphasher-1.0.3.bazel b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.siphasher-1.0.3.bazel new file mode 100644 index 000000000000..472af635f83e --- /dev/null +++ b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.siphasher-1.0.3.bazel @@ -0,0 +1,101 @@ +############################################################################### +# @generated +# DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To +# regenerate this file, run the following: +# +# bazel run @@//misc/bazel/3rdparty:vendor_tree_sitter_extractors +############################################################################### + +load("@rules_rust//cargo:defs.bzl", "cargo_toml_env_vars") +load("@rules_rust//rust:defs.bzl", "rust_library") + +package(default_visibility = ["//visibility:public"]) + +cargo_toml_env_vars( + name = "cargo_toml_env_vars", + src = "Cargo.toml", +) + +rust_library( + name = "siphasher", + srcs = glob( + include = ["**/*.rs"], + allow_empty = True, + ), + compile_data = glob( + include = ["**"], + allow_empty = True, + exclude = [ + "**/* *", + ".tmp_git_root/**/*", + "BUILD", + "BUILD.bazel", + "WORKSPACE", + "WORKSPACE.bazel", + ], + ), + crate_features = [ + "default", + "std", + ], + crate_root = "src/lib.rs", + edition = "2018", + rustc_env_files = [ + ":cargo_toml_env_vars", + ], + rustc_flags = [ + "--cap-lints=allow", + ], + tags = [ + "cargo-bazel", + "crate-name=siphasher", + "manual", + "noclippy", + "norustfmt", + ], + target_compatible_with = select({ + "@rules_rust//rust/platform:aarch64-apple-darwin": [], + "@rules_rust//rust/platform:aarch64-apple-ios": [], + "@rules_rust//rust/platform:aarch64-apple-ios-sim": [], + "@rules_rust//rust/platform:aarch64-linux-android": [], + "@rules_rust//rust/platform:aarch64-pc-windows-msvc": [], + "@rules_rust//rust/platform:aarch64-unknown-fuchsia": [], + "@rules_rust//rust/platform:aarch64-unknown-linux-gnu": [], + "@rules_rust//rust/platform:aarch64-unknown-nixos-gnu": [], + "@rules_rust//rust/platform:aarch64-unknown-nto-qnx710": [], + "@rules_rust//rust/platform:aarch64-unknown-uefi": [], + "@rules_rust//rust/platform:arm-unknown-linux-gnueabi": [], + "@rules_rust//rust/platform:arm-unknown-linux-musleabi": [], + "@rules_rust//rust/platform:armv7-linux-androideabi": [], + "@rules_rust//rust/platform:armv7-unknown-linux-gnueabi": [], + "@rules_rust//rust/platform:i686-apple-darwin": [], + "@rules_rust//rust/platform:i686-linux-android": [], + "@rules_rust//rust/platform:i686-pc-windows-msvc": [], + "@rules_rust//rust/platform:i686-unknown-freebsd": [], + "@rules_rust//rust/platform:i686-unknown-linux-gnu": [], + "@rules_rust//rust/platform:powerpc-unknown-linux-gnu": [], + "@rules_rust//rust/platform:riscv32imc-unknown-none-elf": [], + "@rules_rust//rust/platform:riscv64gc-unknown-linux-gnu": [], + "@rules_rust//rust/platform:riscv64gc-unknown-none-elf": [], + "@rules_rust//rust/platform:s390x-unknown-linux-gnu": [], + "@rules_rust//rust/platform:thumbv7em-none-eabi": [], + "@rules_rust//rust/platform:thumbv8m.main-none-eabi": [], + "@rules_rust//rust/platform:wasm32-unknown-emscripten": [], + "@rules_rust//rust/platform:wasm32-unknown-unknown": [], + "@rules_rust//rust/platform:wasm32-wasip1": [], + "@rules_rust//rust/platform:wasm32-wasip1-threads": [], + "@rules_rust//rust/platform:wasm32-wasip2": [], + "@rules_rust//rust/platform:x86_64-apple-darwin": [], + "@rules_rust//rust/platform:x86_64-apple-ios": [], + "@rules_rust//rust/platform:x86_64-linux-android": [], + "@rules_rust//rust/platform:x86_64-pc-windows-msvc": [], + "@rules_rust//rust/platform:x86_64-unknown-freebsd": [], + "@rules_rust//rust/platform:x86_64-unknown-fuchsia": [], + "@rules_rust//rust/platform:x86_64-unknown-linux-gnu": [], + "@rules_rust//rust/platform:x86_64-unknown-nixos-gnu": [], + "@rules_rust//rust/platform:x86_64-unknown-none": [], + "@rules_rust//rust/platform:x86_64-unknown-uefi": [], + "//conditions:default": ["@platforms//:incompatible"], + }), + version = "1.0.3", +) diff --git a/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.smallbitvec-2.6.1.bazel b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.smallbitvec-2.6.1.bazel new file mode 100644 index 000000000000..6dc39e352601 --- /dev/null +++ b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.smallbitvec-2.6.1.bazel @@ -0,0 +1,97 @@ +############################################################################### +# @generated +# DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To +# regenerate this file, run the following: +# +# bazel run @@//misc/bazel/3rdparty:vendor_tree_sitter_extractors +############################################################################### + +load("@rules_rust//cargo:defs.bzl", "cargo_toml_env_vars") +load("@rules_rust//rust:defs.bzl", "rust_library") + +package(default_visibility = ["//visibility:public"]) + +cargo_toml_env_vars( + name = "cargo_toml_env_vars", + src = "Cargo.toml", +) + +rust_library( + name = "smallbitvec", + srcs = glob( + include = ["**/*.rs"], + allow_empty = True, + ), + compile_data = glob( + include = ["**"], + allow_empty = True, + exclude = [ + "**/* *", + ".tmp_git_root/**/*", + "BUILD", + "BUILD.bazel", + "WORKSPACE", + "WORKSPACE.bazel", + ], + ), + crate_root = "src/lib.rs", + edition = "2021", + rustc_env_files = [ + ":cargo_toml_env_vars", + ], + rustc_flags = [ + "--cap-lints=allow", + ], + tags = [ + "cargo-bazel", + "crate-name=smallbitvec", + "manual", + "noclippy", + "norustfmt", + ], + target_compatible_with = select({ + "@rules_rust//rust/platform:aarch64-apple-darwin": [], + "@rules_rust//rust/platform:aarch64-apple-ios": [], + "@rules_rust//rust/platform:aarch64-apple-ios-sim": [], + "@rules_rust//rust/platform:aarch64-linux-android": [], + "@rules_rust//rust/platform:aarch64-pc-windows-msvc": [], + "@rules_rust//rust/platform:aarch64-unknown-fuchsia": [], + "@rules_rust//rust/platform:aarch64-unknown-linux-gnu": [], + "@rules_rust//rust/platform:aarch64-unknown-nixos-gnu": [], + "@rules_rust//rust/platform:aarch64-unknown-nto-qnx710": [], + "@rules_rust//rust/platform:aarch64-unknown-uefi": [], + "@rules_rust//rust/platform:arm-unknown-linux-gnueabi": [], + "@rules_rust//rust/platform:arm-unknown-linux-musleabi": [], + "@rules_rust//rust/platform:armv7-linux-androideabi": [], + "@rules_rust//rust/platform:armv7-unknown-linux-gnueabi": [], + "@rules_rust//rust/platform:i686-apple-darwin": [], + "@rules_rust//rust/platform:i686-linux-android": [], + "@rules_rust//rust/platform:i686-pc-windows-msvc": [], + "@rules_rust//rust/platform:i686-unknown-freebsd": [], + "@rules_rust//rust/platform:i686-unknown-linux-gnu": [], + "@rules_rust//rust/platform:powerpc-unknown-linux-gnu": [], + "@rules_rust//rust/platform:riscv32imc-unknown-none-elf": [], + "@rules_rust//rust/platform:riscv64gc-unknown-linux-gnu": [], + "@rules_rust//rust/platform:riscv64gc-unknown-none-elf": [], + "@rules_rust//rust/platform:s390x-unknown-linux-gnu": [], + "@rules_rust//rust/platform:thumbv7em-none-eabi": [], + "@rules_rust//rust/platform:thumbv8m.main-none-eabi": [], + "@rules_rust//rust/platform:wasm32-unknown-emscripten": [], + "@rules_rust//rust/platform:wasm32-unknown-unknown": [], + "@rules_rust//rust/platform:wasm32-wasip1": [], + "@rules_rust//rust/platform:wasm32-wasip1-threads": [], + "@rules_rust//rust/platform:wasm32-wasip2": [], + "@rules_rust//rust/platform:x86_64-apple-darwin": [], + "@rules_rust//rust/platform:x86_64-apple-ios": [], + "@rules_rust//rust/platform:x86_64-linux-android": [], + "@rules_rust//rust/platform:x86_64-pc-windows-msvc": [], + "@rules_rust//rust/platform:x86_64-unknown-freebsd": [], + "@rules_rust//rust/platform:x86_64-unknown-fuchsia": [], + "@rules_rust//rust/platform:x86_64-unknown-linux-gnu": [], + "@rules_rust//rust/platform:x86_64-unknown-nixos-gnu": [], + "@rules_rust//rust/platform:x86_64-unknown-none": [], + "@rules_rust//rust/platform:x86_64-unknown-uefi": [], + "//conditions:default": ["@platforms//:incompatible"], + }), + version = "2.6.1", +) diff --git a/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.thiserror-2.0.16.bazel b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.thiserror-2.0.18.bazel similarity index 96% rename from misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.thiserror-2.0.16.bazel rename to misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.thiserror-2.0.18.bazel index 3e1ae194c3b9..7ba5989625a1 100644 --- a/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.thiserror-2.0.16.bazel +++ b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.thiserror-2.0.18.bazel @@ -45,7 +45,7 @@ rust_library( crate_root = "src/lib.rs", edition = "2021", proc_macro_deps = [ - "@vendor_ts__thiserror-impl-2.0.16//:thiserror_impl", + "@vendor_ts__thiserror-impl-2.0.18//:thiserror_impl", ], rustc_env_files = [ ":cargo_toml_env_vars", @@ -104,9 +104,9 @@ rust_library( "@rules_rust//rust/platform:x86_64-unknown-uefi": [], "//conditions:default": ["@platforms//:incompatible"], }), - version = "2.0.16", + version = "2.0.18", deps = [ - "@vendor_ts__thiserror-2.0.16//:build_script_build", + "@vendor_ts__thiserror-2.0.18//:build_script_build", ], ) @@ -162,7 +162,7 @@ cargo_build_script( "noclippy", "norustfmt", ], - version = "2.0.16", + version = "2.0.18", visibility = ["//visibility:private"], ) diff --git a/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.thiserror-impl-2.0.16.bazel b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.thiserror-impl-2.0.18.bazel similarity index 99% rename from misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.thiserror-impl-2.0.16.bazel rename to misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.thiserror-impl-2.0.18.bazel index 9d87f60d5d14..1c39cdf06597 100644 --- a/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.thiserror-impl-2.0.16.bazel +++ b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.thiserror-impl-2.0.18.bazel @@ -93,7 +93,7 @@ rust_proc_macro( "@rules_rust//rust/platform:x86_64-unknown-uefi": [], "//conditions:default": ["@platforms//:incompatible"], }), - version = "2.0.16", + version = "2.0.18", deps = [ "@vendor_ts__proc-macro2-1.0.101//:proc_macro2", "@vendor_ts__quote-1.0.41//:quote", diff --git a/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.toml-0.9.7.bazel b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.toml-0.9.7.bazel index 04609ea84f5a..fad5edad1a26 100644 --- a/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.toml-0.9.7.bazel +++ b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.toml-0.9.7.bazel @@ -105,7 +105,7 @@ rust_library( "@vendor_ts__serde_core-1.0.228//:serde_core", "@vendor_ts__serde_spanned-1.0.2//:serde_spanned", "@vendor_ts__toml_datetime-0.7.2//:toml_datetime", - "@vendor_ts__toml_parser-1.0.3//:toml_parser", + "@vendor_ts__toml_parser-1.1.2-spec-1.1.0//:toml_parser", "@vendor_ts__toml_writer-1.0.3//:toml_writer", "@vendor_ts__winnow-0.7.13//:winnow", ], diff --git a/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.toml_datetime-1.1.1+spec-1.1.0.bazel b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.toml_datetime-1.1.1+spec-1.1.0.bazel new file mode 100644 index 000000000000..a4809f145b60 --- /dev/null +++ b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.toml_datetime-1.1.1+spec-1.1.0.bazel @@ -0,0 +1,102 @@ +############################################################################### +# @generated +# DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To +# regenerate this file, run the following: +# +# bazel run @@//misc/bazel/3rdparty:vendor_tree_sitter_extractors +############################################################################### + +load("@rules_rust//cargo:defs.bzl", "cargo_toml_env_vars") +load("@rules_rust//rust:defs.bzl", "rust_library") + +package(default_visibility = ["//visibility:public"]) + +cargo_toml_env_vars( + name = "cargo_toml_env_vars", + src = "Cargo.toml", +) + +rust_library( + name = "toml_datetime", + srcs = glob( + include = ["**/*.rs"], + allow_empty = True, + ), + compile_data = glob( + include = ["**"], + allow_empty = True, + exclude = [ + "**/* *", + ".tmp_git_root/**/*", + "BUILD", + "BUILD.bazel", + "WORKSPACE", + "WORKSPACE.bazel", + ], + ), + crate_features = [ + "alloc", + "default", + "std", + ], + crate_root = "src/lib.rs", + edition = "2024", + rustc_env_files = [ + ":cargo_toml_env_vars", + ], + rustc_flags = [ + "--cap-lints=allow", + ], + tags = [ + "cargo-bazel", + "crate-name=toml_datetime", + "manual", + "noclippy", + "norustfmt", + ], + target_compatible_with = select({ + "@rules_rust//rust/platform:aarch64-apple-darwin": [], + "@rules_rust//rust/platform:aarch64-apple-ios": [], + "@rules_rust//rust/platform:aarch64-apple-ios-sim": [], + "@rules_rust//rust/platform:aarch64-linux-android": [], + "@rules_rust//rust/platform:aarch64-pc-windows-msvc": [], + "@rules_rust//rust/platform:aarch64-unknown-fuchsia": [], + "@rules_rust//rust/platform:aarch64-unknown-linux-gnu": [], + "@rules_rust//rust/platform:aarch64-unknown-nixos-gnu": [], + "@rules_rust//rust/platform:aarch64-unknown-nto-qnx710": [], + "@rules_rust//rust/platform:aarch64-unknown-uefi": [], + "@rules_rust//rust/platform:arm-unknown-linux-gnueabi": [], + "@rules_rust//rust/platform:arm-unknown-linux-musleabi": [], + "@rules_rust//rust/platform:armv7-linux-androideabi": [], + "@rules_rust//rust/platform:armv7-unknown-linux-gnueabi": [], + "@rules_rust//rust/platform:i686-apple-darwin": [], + "@rules_rust//rust/platform:i686-linux-android": [], + "@rules_rust//rust/platform:i686-pc-windows-msvc": [], + "@rules_rust//rust/platform:i686-unknown-freebsd": [], + "@rules_rust//rust/platform:i686-unknown-linux-gnu": [], + "@rules_rust//rust/platform:powerpc-unknown-linux-gnu": [], + "@rules_rust//rust/platform:riscv32imc-unknown-none-elf": [], + "@rules_rust//rust/platform:riscv64gc-unknown-linux-gnu": [], + "@rules_rust//rust/platform:riscv64gc-unknown-none-elf": [], + "@rules_rust//rust/platform:s390x-unknown-linux-gnu": [], + "@rules_rust//rust/platform:thumbv7em-none-eabi": [], + "@rules_rust//rust/platform:thumbv8m.main-none-eabi": [], + "@rules_rust//rust/platform:wasm32-unknown-emscripten": [], + "@rules_rust//rust/platform:wasm32-unknown-unknown": [], + "@rules_rust//rust/platform:wasm32-wasip1": [], + "@rules_rust//rust/platform:wasm32-wasip1-threads": [], + "@rules_rust//rust/platform:wasm32-wasip2": [], + "@rules_rust//rust/platform:x86_64-apple-darwin": [], + "@rules_rust//rust/platform:x86_64-apple-ios": [], + "@rules_rust//rust/platform:x86_64-linux-android": [], + "@rules_rust//rust/platform:x86_64-pc-windows-msvc": [], + "@rules_rust//rust/platform:x86_64-unknown-freebsd": [], + "@rules_rust//rust/platform:x86_64-unknown-fuchsia": [], + "@rules_rust//rust/platform:x86_64-unknown-linux-gnu": [], + "@rules_rust//rust/platform:x86_64-unknown-nixos-gnu": [], + "@rules_rust//rust/platform:x86_64-unknown-none": [], + "@rules_rust//rust/platform:x86_64-unknown-uefi": [], + "//conditions:default": ["@platforms//:incompatible"], + }), + version = "1.1.1+spec-1.1.0", +) diff --git a/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.toml_edit-0.22.27.bazel b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.toml_edit-0.22.27.bazel index b8a2048b67fb..bdee26270825 100644 --- a/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.toml_edit-0.22.27.bazel +++ b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.toml_edit-0.22.27.bazel @@ -100,7 +100,7 @@ rust_library( }), version = "0.22.27", deps = [ - "@vendor_ts__indexmap-2.11.4//:indexmap", + "@vendor_ts__indexmap-2.14.0//:indexmap", "@vendor_ts__serde-1.0.228//:serde", "@vendor_ts__serde_spanned-0.6.9//:serde_spanned", "@vendor_ts__toml_datetime-0.6.11//:toml_datetime", diff --git a/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.toml_edit-0.25.11+spec-1.1.0.bazel b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.toml_edit-0.25.11+spec-1.1.0.bazel new file mode 100644 index 000000000000..596127714520 --- /dev/null +++ b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.toml_edit-0.25.11+spec-1.1.0.bazel @@ -0,0 +1,106 @@ +############################################################################### +# @generated +# DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To +# regenerate this file, run the following: +# +# bazel run @@//misc/bazel/3rdparty:vendor_tree_sitter_extractors +############################################################################### + +load("@rules_rust//cargo:defs.bzl", "cargo_toml_env_vars") +load("@rules_rust//rust:defs.bzl", "rust_library") + +package(default_visibility = ["//visibility:public"]) + +cargo_toml_env_vars( + name = "cargo_toml_env_vars", + src = "Cargo.toml", +) + +rust_library( + name = "toml_edit", + srcs = glob( + include = ["**/*.rs"], + allow_empty = True, + ), + compile_data = glob( + include = ["**"], + allow_empty = True, + exclude = [ + "**/* *", + ".tmp_git_root/**/*", + "BUILD", + "BUILD.bazel", + "WORKSPACE", + "WORKSPACE.bazel", + ], + ), + crate_features = [ + "parse", + ], + crate_root = "src/lib.rs", + edition = "2024", + rustc_env_files = [ + ":cargo_toml_env_vars", + ], + rustc_flags = [ + "--cap-lints=allow", + ], + tags = [ + "cargo-bazel", + "crate-name=toml_edit", + "manual", + "noclippy", + "norustfmt", + ], + target_compatible_with = select({ + "@rules_rust//rust/platform:aarch64-apple-darwin": [], + "@rules_rust//rust/platform:aarch64-apple-ios": [], + "@rules_rust//rust/platform:aarch64-apple-ios-sim": [], + "@rules_rust//rust/platform:aarch64-linux-android": [], + "@rules_rust//rust/platform:aarch64-pc-windows-msvc": [], + "@rules_rust//rust/platform:aarch64-unknown-fuchsia": [], + "@rules_rust//rust/platform:aarch64-unknown-linux-gnu": [], + "@rules_rust//rust/platform:aarch64-unknown-nixos-gnu": [], + "@rules_rust//rust/platform:aarch64-unknown-nto-qnx710": [], + "@rules_rust//rust/platform:aarch64-unknown-uefi": [], + "@rules_rust//rust/platform:arm-unknown-linux-gnueabi": [], + "@rules_rust//rust/platform:arm-unknown-linux-musleabi": [], + "@rules_rust//rust/platform:armv7-linux-androideabi": [], + "@rules_rust//rust/platform:armv7-unknown-linux-gnueabi": [], + "@rules_rust//rust/platform:i686-apple-darwin": [], + "@rules_rust//rust/platform:i686-linux-android": [], + "@rules_rust//rust/platform:i686-pc-windows-msvc": [], + "@rules_rust//rust/platform:i686-unknown-freebsd": [], + "@rules_rust//rust/platform:i686-unknown-linux-gnu": [], + "@rules_rust//rust/platform:powerpc-unknown-linux-gnu": [], + "@rules_rust//rust/platform:riscv32imc-unknown-none-elf": [], + "@rules_rust//rust/platform:riscv64gc-unknown-linux-gnu": [], + "@rules_rust//rust/platform:riscv64gc-unknown-none-elf": [], + "@rules_rust//rust/platform:s390x-unknown-linux-gnu": [], + "@rules_rust//rust/platform:thumbv7em-none-eabi": [], + "@rules_rust//rust/platform:thumbv8m.main-none-eabi": [], + "@rules_rust//rust/platform:wasm32-unknown-emscripten": [], + "@rules_rust//rust/platform:wasm32-unknown-unknown": [], + "@rules_rust//rust/platform:wasm32-wasip1": [], + "@rules_rust//rust/platform:wasm32-wasip1-threads": [], + "@rules_rust//rust/platform:wasm32-wasip2": [], + "@rules_rust//rust/platform:x86_64-apple-darwin": [], + "@rules_rust//rust/platform:x86_64-apple-ios": [], + "@rules_rust//rust/platform:x86_64-linux-android": [], + "@rules_rust//rust/platform:x86_64-pc-windows-msvc": [], + "@rules_rust//rust/platform:x86_64-unknown-freebsd": [], + "@rules_rust//rust/platform:x86_64-unknown-fuchsia": [], + "@rules_rust//rust/platform:x86_64-unknown-linux-gnu": [], + "@rules_rust//rust/platform:x86_64-unknown-nixos-gnu": [], + "@rules_rust//rust/platform:x86_64-unknown-none": [], + "@rules_rust//rust/platform:x86_64-unknown-uefi": [], + "//conditions:default": ["@platforms//:incompatible"], + }), + version = "0.25.11+spec-1.1.0", + deps = [ + "@vendor_ts__indexmap-2.14.0//:indexmap", + "@vendor_ts__toml_datetime-1.1.1-spec-1.1.0//:toml_datetime", + "@vendor_ts__toml_parser-1.1.2-spec-1.1.0//:toml_parser", + "@vendor_ts__winnow-1.0.2//:winnow", + ], +) diff --git a/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.toml_parser-1.1.2+spec-1.1.0.bazel b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.toml_parser-1.1.2+spec-1.1.0.bazel new file mode 100644 index 000000000000..4504ea44e88a --- /dev/null +++ b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.toml_parser-1.1.2+spec-1.1.0.bazel @@ -0,0 +1,151 @@ +############################################################################### +# @generated +# DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To +# regenerate this file, run the following: +# +# bazel run @@//misc/bazel/3rdparty:vendor_tree_sitter_extractors +############################################################################### + +load("@rules_rust//cargo:defs.bzl", "cargo_toml_env_vars") +load("@rules_rust//rust:defs.bzl", "rust_library") + +package(default_visibility = ["//visibility:public"]) + +cargo_toml_env_vars( + name = "cargo_toml_env_vars", + src = "Cargo.toml", +) + +rust_library( + name = "toml_parser", + srcs = glob( + include = ["**/*.rs"], + allow_empty = True, + ), + compile_data = glob( + include = ["**"], + allow_empty = True, + exclude = [ + "**/* *", + ".tmp_git_root/**/*", + "BUILD", + "BUILD.bazel", + "WORKSPACE", + "WORKSPACE.bazel", + ], + ), + crate_features = [ + "alloc", + "std", + ] + select({ + "@rules_rust//rust/platform:aarch64-apple-darwin": [ + "default", # aarch64-apple-darwin + ], + "@rules_rust//rust/platform:aarch64-pc-windows-msvc": [ + "default", # aarch64-pc-windows-msvc + ], + "@rules_rust//rust/platform:aarch64-unknown-linux-gnu": [ + "default", # aarch64-unknown-linux-gnu + ], + "@rules_rust//rust/platform:aarch64-unknown-nixos-gnu": [ + "default", # aarch64-unknown-linux-gnu, aarch64-unknown-nixos-gnu + ], + "@rules_rust//rust/platform:arm-unknown-linux-gnueabi": [ + "default", # arm-unknown-linux-gnueabi + ], + "@rules_rust//rust/platform:i686-pc-windows-msvc": [ + "default", # i686-pc-windows-msvc + ], + "@rules_rust//rust/platform:i686-unknown-linux-gnu": [ + "default", # i686-unknown-linux-gnu + ], + "@rules_rust//rust/platform:powerpc-unknown-linux-gnu": [ + "default", # powerpc-unknown-linux-gnu + ], + "@rules_rust//rust/platform:riscv64gc-unknown-linux-gnu": [ + "default", # riscv64gc-unknown-linux-gnu + ], + "@rules_rust//rust/platform:s390x-unknown-linux-gnu": [ + "default", # s390x-unknown-linux-gnu + ], + "@rules_rust//rust/platform:x86_64-apple-darwin": [ + "default", # x86_64-apple-darwin + ], + "@rules_rust//rust/platform:x86_64-pc-windows-msvc": [ + "default", # x86_64-pc-windows-msvc + ], + "@rules_rust//rust/platform:x86_64-unknown-freebsd": [ + "default", # x86_64-unknown-freebsd + ], + "@rules_rust//rust/platform:x86_64-unknown-linux-gnu": [ + "default", # x86_64-unknown-linux-gnu + ], + "@rules_rust//rust/platform:x86_64-unknown-nixos-gnu": [ + "default", # x86_64-unknown-linux-gnu, x86_64-unknown-nixos-gnu + ], + "//conditions:default": [], + }), + crate_root = "src/lib.rs", + edition = "2024", + rustc_env_files = [ + ":cargo_toml_env_vars", + ], + rustc_flags = [ + "--cap-lints=allow", + ], + tags = [ + "cargo-bazel", + "crate-name=toml_parser", + "manual", + "noclippy", + "norustfmt", + ], + target_compatible_with = select({ + "@rules_rust//rust/platform:aarch64-apple-darwin": [], + "@rules_rust//rust/platform:aarch64-apple-ios": [], + "@rules_rust//rust/platform:aarch64-apple-ios-sim": [], + "@rules_rust//rust/platform:aarch64-linux-android": [], + "@rules_rust//rust/platform:aarch64-pc-windows-msvc": [], + "@rules_rust//rust/platform:aarch64-unknown-fuchsia": [], + "@rules_rust//rust/platform:aarch64-unknown-linux-gnu": [], + "@rules_rust//rust/platform:aarch64-unknown-nixos-gnu": [], + "@rules_rust//rust/platform:aarch64-unknown-nto-qnx710": [], + "@rules_rust//rust/platform:aarch64-unknown-uefi": [], + "@rules_rust//rust/platform:arm-unknown-linux-gnueabi": [], + "@rules_rust//rust/platform:arm-unknown-linux-musleabi": [], + "@rules_rust//rust/platform:armv7-linux-androideabi": [], + "@rules_rust//rust/platform:armv7-unknown-linux-gnueabi": [], + "@rules_rust//rust/platform:i686-apple-darwin": [], + "@rules_rust//rust/platform:i686-linux-android": [], + "@rules_rust//rust/platform:i686-pc-windows-msvc": [], + "@rules_rust//rust/platform:i686-unknown-freebsd": [], + "@rules_rust//rust/platform:i686-unknown-linux-gnu": [], + "@rules_rust//rust/platform:powerpc-unknown-linux-gnu": [], + "@rules_rust//rust/platform:riscv32imc-unknown-none-elf": [], + "@rules_rust//rust/platform:riscv64gc-unknown-linux-gnu": [], + "@rules_rust//rust/platform:riscv64gc-unknown-none-elf": [], + "@rules_rust//rust/platform:s390x-unknown-linux-gnu": [], + "@rules_rust//rust/platform:thumbv7em-none-eabi": [], + "@rules_rust//rust/platform:thumbv8m.main-none-eabi": [], + "@rules_rust//rust/platform:wasm32-unknown-emscripten": [], + "@rules_rust//rust/platform:wasm32-unknown-unknown": [], + "@rules_rust//rust/platform:wasm32-wasip1": [], + "@rules_rust//rust/platform:wasm32-wasip1-threads": [], + "@rules_rust//rust/platform:wasm32-wasip2": [], + "@rules_rust//rust/platform:x86_64-apple-darwin": [], + "@rules_rust//rust/platform:x86_64-apple-ios": [], + "@rules_rust//rust/platform:x86_64-linux-android": [], + "@rules_rust//rust/platform:x86_64-pc-windows-msvc": [], + "@rules_rust//rust/platform:x86_64-unknown-freebsd": [], + "@rules_rust//rust/platform:x86_64-unknown-fuchsia": [], + "@rules_rust//rust/platform:x86_64-unknown-linux-gnu": [], + "@rules_rust//rust/platform:x86_64-unknown-nixos-gnu": [], + "@rules_rust//rust/platform:x86_64-unknown-none": [], + "@rules_rust//rust/platform:x86_64-unknown-uefi": [], + "//conditions:default": ["@platforms//:incompatible"], + }), + version = "1.1.2+spec-1.1.0", + deps = [ + "@vendor_ts__winnow-1.0.2//:winnow", + ], +) diff --git a/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.topological-sort-0.2.2.bazel b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.topological-sort-0.2.2.bazel new file mode 100644 index 000000000000..4cba2e919677 --- /dev/null +++ b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.topological-sort-0.2.2.bazel @@ -0,0 +1,97 @@ +############################################################################### +# @generated +# DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To +# regenerate this file, run the following: +# +# bazel run @@//misc/bazel/3rdparty:vendor_tree_sitter_extractors +############################################################################### + +load("@rules_rust//cargo:defs.bzl", "cargo_toml_env_vars") +load("@rules_rust//rust:defs.bzl", "rust_library") + +package(default_visibility = ["//visibility:public"]) + +cargo_toml_env_vars( + name = "cargo_toml_env_vars", + src = "Cargo.toml", +) + +rust_library( + name = "topological_sort", + srcs = glob( + include = ["**/*.rs"], + allow_empty = True, + ), + compile_data = glob( + include = ["**"], + allow_empty = True, + exclude = [ + "**/* *", + ".tmp_git_root/**/*", + "BUILD", + "BUILD.bazel", + "WORKSPACE", + "WORKSPACE.bazel", + ], + ), + crate_root = "src/lib.rs", + edition = "2018", + rustc_env_files = [ + ":cargo_toml_env_vars", + ], + rustc_flags = [ + "--cap-lints=allow", + ], + tags = [ + "cargo-bazel", + "crate-name=topological-sort", + "manual", + "noclippy", + "norustfmt", + ], + target_compatible_with = select({ + "@rules_rust//rust/platform:aarch64-apple-darwin": [], + "@rules_rust//rust/platform:aarch64-apple-ios": [], + "@rules_rust//rust/platform:aarch64-apple-ios-sim": [], + "@rules_rust//rust/platform:aarch64-linux-android": [], + "@rules_rust//rust/platform:aarch64-pc-windows-msvc": [], + "@rules_rust//rust/platform:aarch64-unknown-fuchsia": [], + "@rules_rust//rust/platform:aarch64-unknown-linux-gnu": [], + "@rules_rust//rust/platform:aarch64-unknown-nixos-gnu": [], + "@rules_rust//rust/platform:aarch64-unknown-nto-qnx710": [], + "@rules_rust//rust/platform:aarch64-unknown-uefi": [], + "@rules_rust//rust/platform:arm-unknown-linux-gnueabi": [], + "@rules_rust//rust/platform:arm-unknown-linux-musleabi": [], + "@rules_rust//rust/platform:armv7-linux-androideabi": [], + "@rules_rust//rust/platform:armv7-unknown-linux-gnueabi": [], + "@rules_rust//rust/platform:i686-apple-darwin": [], + "@rules_rust//rust/platform:i686-linux-android": [], + "@rules_rust//rust/platform:i686-pc-windows-msvc": [], + "@rules_rust//rust/platform:i686-unknown-freebsd": [], + "@rules_rust//rust/platform:i686-unknown-linux-gnu": [], + "@rules_rust//rust/platform:powerpc-unknown-linux-gnu": [], + "@rules_rust//rust/platform:riscv32imc-unknown-none-elf": [], + "@rules_rust//rust/platform:riscv64gc-unknown-linux-gnu": [], + "@rules_rust//rust/platform:riscv64gc-unknown-none-elf": [], + "@rules_rust//rust/platform:s390x-unknown-linux-gnu": [], + "@rules_rust//rust/platform:thumbv7em-none-eabi": [], + "@rules_rust//rust/platform:thumbv8m.main-none-eabi": [], + "@rules_rust//rust/platform:wasm32-unknown-emscripten": [], + "@rules_rust//rust/platform:wasm32-unknown-unknown": [], + "@rules_rust//rust/platform:wasm32-wasip1": [], + "@rules_rust//rust/platform:wasm32-wasip1-threads": [], + "@rules_rust//rust/platform:wasm32-wasip2": [], + "@rules_rust//rust/platform:x86_64-apple-darwin": [], + "@rules_rust//rust/platform:x86_64-apple-ios": [], + "@rules_rust//rust/platform:x86_64-linux-android": [], + "@rules_rust//rust/platform:x86_64-pc-windows-msvc": [], + "@rules_rust//rust/platform:x86_64-unknown-freebsd": [], + "@rules_rust//rust/platform:x86_64-unknown-fuchsia": [], + "@rules_rust//rust/platform:x86_64-unknown-linux-gnu": [], + "@rules_rust//rust/platform:x86_64-unknown-nixos-gnu": [], + "@rules_rust//rust/platform:x86_64-unknown-none": [], + "@rules_rust//rust/platform:x86_64-unknown-uefi": [], + "//conditions:default": ["@platforms//:incompatible"], + }), + version = "0.2.2", +) diff --git a/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.tree-sitter-generate-0.26.8.bazel b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.tree-sitter-generate-0.26.8.bazel new file mode 100644 index 000000000000..12951a955489 --- /dev/null +++ b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.tree-sitter-generate-0.26.8.bazel @@ -0,0 +1,124 @@ +############################################################################### +# @generated +# DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To +# regenerate this file, run the following: +# +# bazel run @@//misc/bazel/3rdparty:vendor_tree_sitter_extractors +############################################################################### + +load("@rules_rust//cargo:defs.bzl", "cargo_toml_env_vars") +load("@rules_rust//rust:defs.bzl", "rust_library") + +package(default_visibility = ["//visibility:public"]) + +cargo_toml_env_vars( + name = "cargo_toml_env_vars", + src = "Cargo.toml", +) + +rust_library( + name = "tree_sitter_generate", + srcs = glob( + include = ["**/*.rs"], + allow_empty = True, + ), + compile_data = glob( + include = ["**"], + allow_empty = True, + exclude = [ + "**/* *", + ".tmp_git_root/**/*", + "BUILD", + "BUILD.bazel", + "WORKSPACE", + "WORKSPACE.bazel", + ], + ), + crate_features = [ + "default", + "load", + "pathdiff", + "qjs-rt", + "rquickjs", + ], + crate_root = "src/generate.rs", + edition = "2021", + proc_macro_deps = [ + "@vendor_ts__indoc-2.0.7//:indoc", + ], + rustc_env_files = [ + ":cargo_toml_env_vars", + ], + rustc_flags = [ + "--cap-lints=allow", + ], + tags = [ + "cargo-bazel", + "crate-name=tree-sitter-generate", + "manual", + "noclippy", + "norustfmt", + ], + target_compatible_with = select({ + "@rules_rust//rust/platform:aarch64-apple-darwin": [], + "@rules_rust//rust/platform:aarch64-apple-ios": [], + "@rules_rust//rust/platform:aarch64-apple-ios-sim": [], + "@rules_rust//rust/platform:aarch64-linux-android": [], + "@rules_rust//rust/platform:aarch64-pc-windows-msvc": [], + "@rules_rust//rust/platform:aarch64-unknown-fuchsia": [], + "@rules_rust//rust/platform:aarch64-unknown-linux-gnu": [], + "@rules_rust//rust/platform:aarch64-unknown-nixos-gnu": [], + "@rules_rust//rust/platform:aarch64-unknown-nto-qnx710": [], + "@rules_rust//rust/platform:aarch64-unknown-uefi": [], + "@rules_rust//rust/platform:arm-unknown-linux-gnueabi": [], + "@rules_rust//rust/platform:arm-unknown-linux-musleabi": [], + "@rules_rust//rust/platform:armv7-linux-androideabi": [], + "@rules_rust//rust/platform:armv7-unknown-linux-gnueabi": [], + "@rules_rust//rust/platform:i686-apple-darwin": [], + "@rules_rust//rust/platform:i686-linux-android": [], + "@rules_rust//rust/platform:i686-pc-windows-msvc": [], + "@rules_rust//rust/platform:i686-unknown-freebsd": [], + "@rules_rust//rust/platform:i686-unknown-linux-gnu": [], + "@rules_rust//rust/platform:powerpc-unknown-linux-gnu": [], + "@rules_rust//rust/platform:riscv32imc-unknown-none-elf": [], + "@rules_rust//rust/platform:riscv64gc-unknown-linux-gnu": [], + "@rules_rust//rust/platform:riscv64gc-unknown-none-elf": [], + "@rules_rust//rust/platform:s390x-unknown-linux-gnu": [], + "@rules_rust//rust/platform:thumbv7em-none-eabi": [], + "@rules_rust//rust/platform:thumbv8m.main-none-eabi": [], + "@rules_rust//rust/platform:wasm32-unknown-emscripten": [], + "@rules_rust//rust/platform:wasm32-unknown-unknown": [], + "@rules_rust//rust/platform:wasm32-wasip1": [], + "@rules_rust//rust/platform:wasm32-wasip1-threads": [], + "@rules_rust//rust/platform:wasm32-wasip2": [], + "@rules_rust//rust/platform:x86_64-apple-darwin": [], + "@rules_rust//rust/platform:x86_64-apple-ios": [], + "@rules_rust//rust/platform:x86_64-linux-android": [], + "@rules_rust//rust/platform:x86_64-pc-windows-msvc": [], + "@rules_rust//rust/platform:x86_64-unknown-freebsd": [], + "@rules_rust//rust/platform:x86_64-unknown-fuchsia": [], + "@rules_rust//rust/platform:x86_64-unknown-linux-gnu": [], + "@rules_rust//rust/platform:x86_64-unknown-nixos-gnu": [], + "@rules_rust//rust/platform:x86_64-unknown-none": [], + "@rules_rust//rust/platform:x86_64-unknown-uefi": [], + "//conditions:default": ["@platforms//:incompatible"], + }), + version = "0.26.8", + deps = [ + "@vendor_ts__bitflags-2.9.4//:bitflags", + "@vendor_ts__dunce-1.0.5//:dunce", + "@vendor_ts__indexmap-2.14.0//:indexmap", + "@vendor_ts__log-0.4.28//:log", + "@vendor_ts__pathdiff-0.2.3//:pathdiff", + "@vendor_ts__regex-1.11.3//:regex", + "@vendor_ts__regex-syntax-0.8.6//:regex_syntax", + "@vendor_ts__rquickjs-0.10.0//:rquickjs", + "@vendor_ts__rustc-hash-2.1.1//:rustc_hash", + "@vendor_ts__semver-1.0.28//:semver", + "@vendor_ts__serde-1.0.228//:serde", + "@vendor_ts__serde_json-1.0.145//:serde_json", + "@vendor_ts__smallbitvec-2.6.1//:smallbitvec", + "@vendor_ts__thiserror-2.0.18//:thiserror", + "@vendor_ts__topological-sort-0.2.2//:topological_sort", + ], +) diff --git a/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.unicode-segmentation-1.13.2.bazel b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.unicode-segmentation-1.13.2.bazel new file mode 100644 index 000000000000..020b1bf1a716 --- /dev/null +++ b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.unicode-segmentation-1.13.2.bazel @@ -0,0 +1,97 @@ +############################################################################### +# @generated +# DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To +# regenerate this file, run the following: +# +# bazel run @@//misc/bazel/3rdparty:vendor_tree_sitter_extractors +############################################################################### + +load("@rules_rust//cargo:defs.bzl", "cargo_toml_env_vars") +load("@rules_rust//rust:defs.bzl", "rust_library") + +package(default_visibility = ["//visibility:public"]) + +cargo_toml_env_vars( + name = "cargo_toml_env_vars", + src = "Cargo.toml", +) + +rust_library( + name = "unicode_segmentation", + srcs = glob( + include = ["**/*.rs"], + allow_empty = True, + ), + compile_data = glob( + include = ["**"], + allow_empty = True, + exclude = [ + "**/* *", + ".tmp_git_root/**/*", + "BUILD", + "BUILD.bazel", + "WORKSPACE", + "WORKSPACE.bazel", + ], + ), + crate_root = "src/lib.rs", + edition = "2018", + rustc_env_files = [ + ":cargo_toml_env_vars", + ], + rustc_flags = [ + "--cap-lints=allow", + ], + tags = [ + "cargo-bazel", + "crate-name=unicode-segmentation", + "manual", + "noclippy", + "norustfmt", + ], + target_compatible_with = select({ + "@rules_rust//rust/platform:aarch64-apple-darwin": [], + "@rules_rust//rust/platform:aarch64-apple-ios": [], + "@rules_rust//rust/platform:aarch64-apple-ios-sim": [], + "@rules_rust//rust/platform:aarch64-linux-android": [], + "@rules_rust//rust/platform:aarch64-pc-windows-msvc": [], + "@rules_rust//rust/platform:aarch64-unknown-fuchsia": [], + "@rules_rust//rust/platform:aarch64-unknown-linux-gnu": [], + "@rules_rust//rust/platform:aarch64-unknown-nixos-gnu": [], + "@rules_rust//rust/platform:aarch64-unknown-nto-qnx710": [], + "@rules_rust//rust/platform:aarch64-unknown-uefi": [], + "@rules_rust//rust/platform:arm-unknown-linux-gnueabi": [], + "@rules_rust//rust/platform:arm-unknown-linux-musleabi": [], + "@rules_rust//rust/platform:armv7-linux-androideabi": [], + "@rules_rust//rust/platform:armv7-unknown-linux-gnueabi": [], + "@rules_rust//rust/platform:i686-apple-darwin": [], + "@rules_rust//rust/platform:i686-linux-android": [], + "@rules_rust//rust/platform:i686-pc-windows-msvc": [], + "@rules_rust//rust/platform:i686-unknown-freebsd": [], + "@rules_rust//rust/platform:i686-unknown-linux-gnu": [], + "@rules_rust//rust/platform:powerpc-unknown-linux-gnu": [], + "@rules_rust//rust/platform:riscv32imc-unknown-none-elf": [], + "@rules_rust//rust/platform:riscv64gc-unknown-linux-gnu": [], + "@rules_rust//rust/platform:riscv64gc-unknown-none-elf": [], + "@rules_rust//rust/platform:s390x-unknown-linux-gnu": [], + "@rules_rust//rust/platform:thumbv7em-none-eabi": [], + "@rules_rust//rust/platform:thumbv8m.main-none-eabi": [], + "@rules_rust//rust/platform:wasm32-unknown-emscripten": [], + "@rules_rust//rust/platform:wasm32-unknown-unknown": [], + "@rules_rust//rust/platform:wasm32-wasip1": [], + "@rules_rust//rust/platform:wasm32-wasip1-threads": [], + "@rules_rust//rust/platform:wasm32-wasip2": [], + "@rules_rust//rust/platform:x86_64-apple-darwin": [], + "@rules_rust//rust/platform:x86_64-apple-ios": [], + "@rules_rust//rust/platform:x86_64-linux-android": [], + "@rules_rust//rust/platform:x86_64-pc-windows-msvc": [], + "@rules_rust//rust/platform:x86_64-unknown-freebsd": [], + "@rules_rust//rust/platform:x86_64-unknown-fuchsia": [], + "@rules_rust//rust/platform:x86_64-unknown-linux-gnu": [], + "@rules_rust//rust/platform:x86_64-unknown-nixos-gnu": [], + "@rules_rust//rust/platform:x86_64-unknown-none": [], + "@rules_rust//rust/platform:x86_64-unknown-uefi": [], + "//conditions:default": ["@platforms//:incompatible"], + }), + version = "1.13.2", +) diff --git a/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.winnow-1.0.2.bazel b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.winnow-1.0.2.bazel new file mode 100644 index 000000000000..e9d478c9c660 --- /dev/null +++ b/misc/bazel/3rdparty/tree_sitter_extractors_deps/BUILD.winnow-1.0.2.bazel @@ -0,0 +1,220 @@ +############################################################################### +# @generated +# DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To +# regenerate this file, run the following: +# +# bazel run @@//misc/bazel/3rdparty:vendor_tree_sitter_extractors +############################################################################### + +load("@rules_rust//cargo:defs.bzl", "cargo_toml_env_vars") +load("@rules_rust//rust:defs.bzl", "rust_library") + +package(default_visibility = ["//visibility:public"]) + +cargo_toml_env_vars( + name = "cargo_toml_env_vars", + src = "Cargo.toml", +) + +rust_library( + name = "winnow", + srcs = glob( + include = ["**/*.rs"], + allow_empty = True, + ), + compile_data = glob( + include = ["**"], + allow_empty = True, + exclude = [ + "**/* *", + ".tmp_git_root/**/*", + "BUILD", + "BUILD.bazel", + "WORKSPACE", + "WORKSPACE.bazel", + ], + ), + crate_features = select({ + "@rules_rust//rust/platform:aarch64-apple-darwin": [ + "alloc", # aarch64-apple-darwin + "ascii", # aarch64-apple-darwin + "binary", # aarch64-apple-darwin + "default", # aarch64-apple-darwin + "parser", # aarch64-apple-darwin + "std", # aarch64-apple-darwin + ], + "@rules_rust//rust/platform:aarch64-pc-windows-msvc": [ + "alloc", # aarch64-pc-windows-msvc + "ascii", # aarch64-pc-windows-msvc + "binary", # aarch64-pc-windows-msvc + "default", # aarch64-pc-windows-msvc + "parser", # aarch64-pc-windows-msvc + "std", # aarch64-pc-windows-msvc + ], + "@rules_rust//rust/platform:aarch64-unknown-linux-gnu": [ + "alloc", # aarch64-unknown-linux-gnu + "ascii", # aarch64-unknown-linux-gnu + "binary", # aarch64-unknown-linux-gnu + "default", # aarch64-unknown-linux-gnu + "parser", # aarch64-unknown-linux-gnu + "std", # aarch64-unknown-linux-gnu + ], + "@rules_rust//rust/platform:aarch64-unknown-nixos-gnu": [ + "alloc", # aarch64-unknown-linux-gnu, aarch64-unknown-nixos-gnu + "ascii", # aarch64-unknown-linux-gnu, aarch64-unknown-nixos-gnu + "binary", # aarch64-unknown-linux-gnu, aarch64-unknown-nixos-gnu + "default", # aarch64-unknown-linux-gnu, aarch64-unknown-nixos-gnu + "parser", # aarch64-unknown-linux-gnu, aarch64-unknown-nixos-gnu + "std", # aarch64-unknown-linux-gnu, aarch64-unknown-nixos-gnu + ], + "@rules_rust//rust/platform:arm-unknown-linux-gnueabi": [ + "alloc", # arm-unknown-linux-gnueabi + "ascii", # arm-unknown-linux-gnueabi + "binary", # arm-unknown-linux-gnueabi + "default", # arm-unknown-linux-gnueabi + "parser", # arm-unknown-linux-gnueabi + "std", # arm-unknown-linux-gnueabi + ], + "@rules_rust//rust/platform:i686-pc-windows-msvc": [ + "alloc", # i686-pc-windows-msvc + "ascii", # i686-pc-windows-msvc + "binary", # i686-pc-windows-msvc + "default", # i686-pc-windows-msvc + "parser", # i686-pc-windows-msvc + "std", # i686-pc-windows-msvc + ], + "@rules_rust//rust/platform:i686-unknown-linux-gnu": [ + "alloc", # i686-unknown-linux-gnu + "ascii", # i686-unknown-linux-gnu + "binary", # i686-unknown-linux-gnu + "default", # i686-unknown-linux-gnu + "parser", # i686-unknown-linux-gnu + "std", # i686-unknown-linux-gnu + ], + "@rules_rust//rust/platform:powerpc-unknown-linux-gnu": [ + "alloc", # powerpc-unknown-linux-gnu + "ascii", # powerpc-unknown-linux-gnu + "binary", # powerpc-unknown-linux-gnu + "default", # powerpc-unknown-linux-gnu + "parser", # powerpc-unknown-linux-gnu + "std", # powerpc-unknown-linux-gnu + ], + "@rules_rust//rust/platform:riscv64gc-unknown-linux-gnu": [ + "alloc", # riscv64gc-unknown-linux-gnu + "ascii", # riscv64gc-unknown-linux-gnu + "binary", # riscv64gc-unknown-linux-gnu + "default", # riscv64gc-unknown-linux-gnu + "parser", # riscv64gc-unknown-linux-gnu + "std", # riscv64gc-unknown-linux-gnu + ], + "@rules_rust//rust/platform:s390x-unknown-linux-gnu": [ + "alloc", # s390x-unknown-linux-gnu + "ascii", # s390x-unknown-linux-gnu + "binary", # s390x-unknown-linux-gnu + "default", # s390x-unknown-linux-gnu + "parser", # s390x-unknown-linux-gnu + "std", # s390x-unknown-linux-gnu + ], + "@rules_rust//rust/platform:x86_64-apple-darwin": [ + "alloc", # x86_64-apple-darwin + "ascii", # x86_64-apple-darwin + "binary", # x86_64-apple-darwin + "default", # x86_64-apple-darwin + "parser", # x86_64-apple-darwin + "std", # x86_64-apple-darwin + ], + "@rules_rust//rust/platform:x86_64-pc-windows-msvc": [ + "alloc", # x86_64-pc-windows-msvc + "ascii", # x86_64-pc-windows-msvc + "binary", # x86_64-pc-windows-msvc + "default", # x86_64-pc-windows-msvc + "parser", # x86_64-pc-windows-msvc + "std", # x86_64-pc-windows-msvc + ], + "@rules_rust//rust/platform:x86_64-unknown-freebsd": [ + "alloc", # x86_64-unknown-freebsd + "ascii", # x86_64-unknown-freebsd + "binary", # x86_64-unknown-freebsd + "default", # x86_64-unknown-freebsd + "parser", # x86_64-unknown-freebsd + "std", # x86_64-unknown-freebsd + ], + "@rules_rust//rust/platform:x86_64-unknown-linux-gnu": [ + "alloc", # x86_64-unknown-linux-gnu + "ascii", # x86_64-unknown-linux-gnu + "binary", # x86_64-unknown-linux-gnu + "default", # x86_64-unknown-linux-gnu + "parser", # x86_64-unknown-linux-gnu + "std", # x86_64-unknown-linux-gnu + ], + "@rules_rust//rust/platform:x86_64-unknown-nixos-gnu": [ + "alloc", # x86_64-unknown-linux-gnu, x86_64-unknown-nixos-gnu + "ascii", # x86_64-unknown-linux-gnu, x86_64-unknown-nixos-gnu + "binary", # x86_64-unknown-linux-gnu, x86_64-unknown-nixos-gnu + "default", # x86_64-unknown-linux-gnu, x86_64-unknown-nixos-gnu + "parser", # x86_64-unknown-linux-gnu, x86_64-unknown-nixos-gnu + "std", # x86_64-unknown-linux-gnu, x86_64-unknown-nixos-gnu + ], + "//conditions:default": [], + }), + crate_root = "src/lib.rs", + edition = "2021", + rustc_env_files = [ + ":cargo_toml_env_vars", + ], + rustc_flags = [ + "--cap-lints=allow", + ], + tags = [ + "cargo-bazel", + "crate-name=winnow", + "manual", + "noclippy", + "norustfmt", + ], + target_compatible_with = select({ + "@rules_rust//rust/platform:aarch64-apple-darwin": [], + "@rules_rust//rust/platform:aarch64-apple-ios": [], + "@rules_rust//rust/platform:aarch64-apple-ios-sim": [], + "@rules_rust//rust/platform:aarch64-linux-android": [], + "@rules_rust//rust/platform:aarch64-pc-windows-msvc": [], + "@rules_rust//rust/platform:aarch64-unknown-fuchsia": [], + "@rules_rust//rust/platform:aarch64-unknown-linux-gnu": [], + "@rules_rust//rust/platform:aarch64-unknown-nixos-gnu": [], + "@rules_rust//rust/platform:aarch64-unknown-nto-qnx710": [], + "@rules_rust//rust/platform:aarch64-unknown-uefi": [], + "@rules_rust//rust/platform:arm-unknown-linux-gnueabi": [], + "@rules_rust//rust/platform:arm-unknown-linux-musleabi": [], + "@rules_rust//rust/platform:armv7-linux-androideabi": [], + "@rules_rust//rust/platform:armv7-unknown-linux-gnueabi": [], + "@rules_rust//rust/platform:i686-apple-darwin": [], + "@rules_rust//rust/platform:i686-linux-android": [], + "@rules_rust//rust/platform:i686-pc-windows-msvc": [], + "@rules_rust//rust/platform:i686-unknown-freebsd": [], + "@rules_rust//rust/platform:i686-unknown-linux-gnu": [], + "@rules_rust//rust/platform:powerpc-unknown-linux-gnu": [], + "@rules_rust//rust/platform:riscv32imc-unknown-none-elf": [], + "@rules_rust//rust/platform:riscv64gc-unknown-linux-gnu": [], + "@rules_rust//rust/platform:riscv64gc-unknown-none-elf": [], + "@rules_rust//rust/platform:s390x-unknown-linux-gnu": [], + "@rules_rust//rust/platform:thumbv7em-none-eabi": [], + "@rules_rust//rust/platform:thumbv8m.main-none-eabi": [], + "@rules_rust//rust/platform:wasm32-unknown-emscripten": [], + "@rules_rust//rust/platform:wasm32-unknown-unknown": [], + "@rules_rust//rust/platform:wasm32-wasip1": [], + "@rules_rust//rust/platform:wasm32-wasip1-threads": [], + "@rules_rust//rust/platform:wasm32-wasip2": [], + "@rules_rust//rust/platform:x86_64-apple-darwin": [], + "@rules_rust//rust/platform:x86_64-apple-ios": [], + "@rules_rust//rust/platform:x86_64-linux-android": [], + "@rules_rust//rust/platform:x86_64-pc-windows-msvc": [], + "@rules_rust//rust/platform:x86_64-unknown-freebsd": [], + "@rules_rust//rust/platform:x86_64-unknown-fuchsia": [], + "@rules_rust//rust/platform:x86_64-unknown-linux-gnu": [], + "@rules_rust//rust/platform:x86_64-unknown-nixos-gnu": [], + "@rules_rust//rust/platform:x86_64-unknown-none": [], + "@rules_rust//rust/platform:x86_64-unknown-uefi": [], + "//conditions:default": ["@platforms//:incompatible"], + }), + version = "1.0.2", +) diff --git a/misc/bazel/3rdparty/tree_sitter_extractors_deps/defs.bzl b/misc/bazel/3rdparty/tree_sitter_extractors_deps/defs.bzl index aa4755432f23..11842460638f 100644 --- a/misc/bazel/3rdparty/tree_sitter_extractors_deps/defs.bzl +++ b/misc/bazel/3rdparty/tree_sitter_extractors_deps/defs.bzl @@ -635,6 +635,7 @@ _BUILD_DEPENDENCIES = { "unified/extractor/tree-sitter-swift": { _COMMON_CONDITION: { "cc": Label("@vendor_ts__cc-1.2.61//:cc"), + "tree-sitter-generate": Label("@vendor_ts__tree-sitter-generate-0.26.8//:tree_sitter_generate"), }, }, } @@ -949,6 +950,16 @@ def crate_repositories(): build_file = Label("//misc/bazel/3rdparty/tree_sitter_extractors_deps:BUILD.base64-0.22.1.bazel"), ) + maybe( + http_archive, + name = "vendor_ts__bindgen-0.72.1", + sha256 = "993776b509cfb49c750f11b8f07a46fa23e0a1386ffc01fb1e7d343efc387895", + type = "tar.gz", + urls = ["https://static.crates.io/crates/bindgen/0.72.1/download"], + strip_prefix = "bindgen-0.72.1", + build_file = Label("//misc/bazel/3rdparty/tree_sitter_extractors_deps:BUILD.bindgen-0.72.1.bazel"), + ) + maybe( http_archive, name = "vendor_ts__bitflags-1.3.2", @@ -1069,6 +1080,16 @@ def crate_repositories(): build_file = Label("//misc/bazel/3rdparty/tree_sitter_extractors_deps:BUILD.cc-1.2.61.bazel"), ) + maybe( + http_archive, + name = "vendor_ts__cexpr-0.6.0", + sha256 = "6fac387a98bb7c37292057cffc56d62ecb629900026402633ae9160df93a8766", + type = "tar.gz", + urls = ["https://static.crates.io/crates/cexpr/0.6.0/download"], + strip_prefix = "cexpr-0.6.0", + build_file = Label("//misc/bazel/3rdparty/tree_sitter_extractors_deps:BUILD.cexpr-0.6.0.bazel"), + ) + maybe( http_archive, name = "vendor_ts__cfg-if-1.0.3", @@ -1159,6 +1180,16 @@ def crate_repositories(): build_file = Label("//misc/bazel/3rdparty/tree_sitter_extractors_deps:BUILD.chrono-0.4.42.bazel"), ) + maybe( + http_archive, + name = "vendor_ts__clang-sys-1.8.1", + sha256 = "0b023947811758c97c59bf9d1c188fd619ad4718dcaa767947df1cadb14f39f4", + type = "tar.gz", + urls = ["https://static.crates.io/crates/clang-sys/1.8.1/download"], + strip_prefix = "clang-sys-1.8.1", + build_file = Label("//misc/bazel/3rdparty/tree_sitter_extractors_deps:BUILD.clang-sys-1.8.1.bazel"), + ) + maybe( http_archive, name = "vendor_ts__clap-4.5.48", @@ -1209,6 +1240,16 @@ def crate_repositories(): build_file = Label("//misc/bazel/3rdparty/tree_sitter_extractors_deps:BUILD.colorchoice-1.0.4.bazel"), ) + maybe( + http_archive, + name = "vendor_ts__convert_case-0.8.0", + sha256 = "baaaa0ecca5b51987b9423ccdc971514dd8b0bb7b4060b983d3664dad3f1f89f", + type = "tar.gz", + urls = ["https://static.crates.io/crates/convert_case/0.8.0/download"], + strip_prefix = "convert_case-0.8.0", + build_file = Label("//misc/bazel/3rdparty/tree_sitter_extractors_deps:BUILD.convert_case-0.8.0.bazel"), + ) + maybe( http_archive, name = "vendor_ts__core-foundation-sys-0.8.7", @@ -1499,6 +1540,16 @@ def crate_repositories(): build_file = Label("//misc/bazel/3rdparty/tree_sitter_extractors_deps:BUILD.erased-serde-0.4.6.bazel"), ) + maybe( + http_archive, + name = "vendor_ts__fastrand-2.4.1", + sha256 = "9f1f227452a390804cdb637b74a86990f2a7d7ba4b7d5693aac9b4dd6defd8d6", + type = "tar.gz", + urls = ["https://static.crates.io/crates/fastrand/2.4.1/download"], + strip_prefix = "fastrand-2.4.1", + build_file = Label("//misc/bazel/3rdparty/tree_sitter_extractors_deps:BUILD.fastrand-2.4.1.bazel"), + ) + maybe( http_archive, name = "vendor_ts__figment-0.10.19", @@ -1559,6 +1610,16 @@ def crate_repositories(): build_file = Label("//misc/bazel/3rdparty/tree_sitter_extractors_deps:BUILD.foldhash-0.1.5.bazel"), ) + maybe( + http_archive, + name = "vendor_ts__foldhash-0.2.0", + sha256 = "77ce24cb58228fbb8aa041425bb1050850ac19177686ea6e0f41a70416f56fdb", + type = "tar.gz", + urls = ["https://static.crates.io/crates/foldhash/0.2.0/download"], + strip_prefix = "foldhash-0.2.0", + build_file = Label("//misc/bazel/3rdparty/tree_sitter_extractors_deps:BUILD.foldhash-0.2.0.bazel"), + ) + maybe( http_archive, name = "vendor_ts__form_urlencoded-1.2.2", @@ -1659,6 +1720,26 @@ def crate_repositories(): build_file = Label("//misc/bazel/3rdparty/tree_sitter_extractors_deps:BUILD.hashbrown-0.15.5.bazel"), ) + maybe( + http_archive, + name = "vendor_ts__hashbrown-0.16.1", + sha256 = "841d1cc9bed7f9236f321df977030373f4a4163ae1a7dbfe1a51a2c1a51d9100", + type = "tar.gz", + urls = ["https://static.crates.io/crates/hashbrown/0.16.1/download"], + strip_prefix = "hashbrown-0.16.1", + build_file = Label("//misc/bazel/3rdparty/tree_sitter_extractors_deps:BUILD.hashbrown-0.16.1.bazel"), + ) + + maybe( + http_archive, + name = "vendor_ts__hashbrown-0.17.1", + sha256 = "ed5909b6e89a2db4456e54cd5f673791d7eca6732202bbf2a9cc504fe2f9b84a", + type = "tar.gz", + urls = ["https://static.crates.io/crates/hashbrown/0.17.1/download"], + strip_prefix = "hashbrown-0.17.1", + build_file = Label("//misc/bazel/3rdparty/tree_sitter_extractors_deps:BUILD.hashbrown-0.17.1.bazel"), + ) + maybe( http_archive, name = "vendor_ts__hashlink-0.10.0", @@ -1841,12 +1922,22 @@ def crate_repositories(): maybe( http_archive, - name = "vendor_ts__indexmap-2.11.4", - sha256 = "4b0f83760fb341a774ed326568e19f5a863af4a952def8c39f9ab92fd95b88e5", + name = "vendor_ts__indexmap-2.14.0", + sha256 = "d466e9454f08e4a911e14806c24e16fba1b4c121d1ea474396f396069cf949d9", + type = "tar.gz", + urls = ["https://static.crates.io/crates/indexmap/2.14.0/download"], + strip_prefix = "indexmap-2.14.0", + build_file = Label("//misc/bazel/3rdparty/tree_sitter_extractors_deps:BUILD.indexmap-2.14.0.bazel"), + ) + + maybe( + http_archive, + name = "vendor_ts__indoc-2.0.7", + sha256 = "79cf5c93f93228cf8efb3ba362535fb11199ac548a09ce117c9b1adc3030d706", type = "tar.gz", - urls = ["https://static.crates.io/crates/indexmap/2.11.4/download"], - strip_prefix = "indexmap-2.11.4", - build_file = Label("//misc/bazel/3rdparty/tree_sitter_extractors_deps:BUILD.indexmap-2.11.4.bazel"), + urls = ["https://static.crates.io/crates/indoc/2.0.7/download"], + strip_prefix = "indoc-2.0.7", + build_file = Label("//misc/bazel/3rdparty/tree_sitter_extractors_deps:BUILD.indoc-2.0.7.bazel"), ) maybe( @@ -2009,6 +2100,16 @@ def crate_repositories(): build_file = Label("//misc/bazel/3rdparty/tree_sitter_extractors_deps:BUILD.libc-0.2.175.bazel"), ) + maybe( + http_archive, + name = "vendor_ts__libloading-0.8.9", + sha256 = "d7c4b02199fee7c5d21a5ae7d8cfa79a6ef5bb2fc834d6e9058e89c825efdc55", + type = "tar.gz", + urls = ["https://static.crates.io/crates/libloading/0.8.9/download"], + strip_prefix = "libloading-0.8.9", + build_file = Label("//misc/bazel/3rdparty/tree_sitter_extractors_deps:BUILD.libloading-0.8.9.bazel"), + ) + maybe( http_archive, name = "vendor_ts__line-index-0.1.2", @@ -2089,6 +2190,16 @@ def crate_repositories(): build_file = Label("//misc/bazel/3rdparty/tree_sitter_extractors_deps:BUILD.memoffset-0.9.1.bazel"), ) + maybe( + http_archive, + name = "vendor_ts__minimal-lexical-0.2.1", + sha256 = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a", + type = "tar.gz", + urls = ["https://static.crates.io/crates/minimal-lexical/0.2.1/download"], + strip_prefix = "minimal-lexical-0.2.1", + build_file = Label("//misc/bazel/3rdparty/tree_sitter_extractors_deps:BUILD.minimal-lexical-0.2.1.bazel"), + ) + maybe( http_archive, name = "vendor_ts__miniz_oxide-0.8.9", @@ -2139,6 +2250,16 @@ def crate_repositories(): build_file = Label("//misc/bazel/3rdparty/tree_sitter_extractors_deps:BUILD.nohash-hasher-0.2.0.bazel"), ) + maybe( + http_archive, + name = "vendor_ts__nom-7.1.3", + sha256 = "d273983c5a657a70a3e8f2a01329822f3b8c8172b73826411a55751e404a0a4a", + type = "tar.gz", + urls = ["https://static.crates.io/crates/nom/7.1.3/download"], + strip_prefix = "nom-7.1.3", + build_file = Label("//misc/bazel/3rdparty/tree_sitter_extractors_deps:BUILD.nom-7.1.3.bazel"), + ) + maybe( http_archive, name = "vendor_ts__notify-8.2.0", @@ -2279,6 +2400,16 @@ def crate_repositories(): build_file = Label("//misc/bazel/3rdparty/tree_sitter_extractors_deps:BUILD.parking_lot_core-0.9.11.bazel"), ) + maybe( + http_archive, + name = "vendor_ts__pathdiff-0.2.3", + sha256 = "df94ce210e5bc13cb6651479fa48d14f601d9858cfe0467f43ae157023b938d3", + type = "tar.gz", + urls = ["https://static.crates.io/crates/pathdiff/0.2.3/download"], + strip_prefix = "pathdiff-0.2.3", + build_file = Label("//misc/bazel/3rdparty/tree_sitter_extractors_deps:BUILD.pathdiff-0.2.3.bazel"), + ) + maybe( http_archive, name = "vendor_ts__pear-0.2.9", @@ -2339,6 +2470,36 @@ def crate_repositories(): build_file = Label("//misc/bazel/3rdparty/tree_sitter_extractors_deps:BUILD.petgraph-0.6.5.bazel"), ) + maybe( + http_archive, + name = "vendor_ts__phf-0.13.1", + sha256 = "c1562dc717473dbaa4c1f85a36410e03c047b2e7df7f45ee938fbef64ae7fadf", + type = "tar.gz", + urls = ["https://static.crates.io/crates/phf/0.13.1/download"], + strip_prefix = "phf-0.13.1", + build_file = Label("//misc/bazel/3rdparty/tree_sitter_extractors_deps:BUILD.phf-0.13.1.bazel"), + ) + + maybe( + http_archive, + name = "vendor_ts__phf_generator-0.13.1", + sha256 = "135ace3a761e564ec88c03a77317a7c6b80bb7f7135ef2544dbe054243b89737", + type = "tar.gz", + urls = ["https://static.crates.io/crates/phf_generator/0.13.1/download"], + strip_prefix = "phf_generator-0.13.1", + build_file = Label("//misc/bazel/3rdparty/tree_sitter_extractors_deps:BUILD.phf_generator-0.13.1.bazel"), + ) + + maybe( + http_archive, + name = "vendor_ts__phf_shared-0.13.1", + sha256 = "e57fef6bc5981e38c2ce2d63bfa546861309f875b8a75f092d1d54ae2d64f266", + type = "tar.gz", + urls = ["https://static.crates.io/crates/phf_shared/0.13.1/download"], + strip_prefix = "phf_shared-0.13.1", + build_file = Label("//misc/bazel/3rdparty/tree_sitter_extractors_deps:BUILD.phf_shared-0.13.1.bazel"), + ) + maybe( http_archive, name = "vendor_ts__pin-project-lite-0.2.16", @@ -2399,6 +2560,26 @@ def crate_repositories(): build_file = Label("//misc/bazel/3rdparty/tree_sitter_extractors_deps:BUILD.ppv-lite86-0.2.21.bazel"), ) + maybe( + http_archive, + name = "vendor_ts__prettyplease-0.2.37", + sha256 = "479ca8adacdd7ce8f1fb39ce9ecccbfe93a3f1344b3d0d97f20bc0196208f62b", + type = "tar.gz", + urls = ["https://static.crates.io/crates/prettyplease/0.2.37/download"], + strip_prefix = "prettyplease-0.2.37", + build_file = Label("//misc/bazel/3rdparty/tree_sitter_extractors_deps:BUILD.prettyplease-0.2.37.bazel"), + ) + + maybe( + http_archive, + name = "vendor_ts__proc-macro-crate-3.5.0", + sha256 = "e67ba7e9b2b56446f1d419b1d807906278ffa1a658a8a5d8a39dcb1f5a78614f", + type = "tar.gz", + urls = ["https://static.crates.io/crates/proc-macro-crate/3.5.0/download"], + strip_prefix = "proc-macro-crate-3.5.0", + build_file = Label("//misc/bazel/3rdparty/tree_sitter_extractors_deps:BUILD.proc-macro-crate-3.5.0.bazel"), + ) + maybe( http_archive, name = "vendor_ts__proc-macro2-1.0.101", @@ -2879,6 +3060,16 @@ def crate_repositories(): build_file = Label("//misc/bazel/3rdparty/tree_sitter_extractors_deps:BUILD.regex-syntax-0.8.6.bazel"), ) + maybe( + http_archive, + name = "vendor_ts__relative-path-2.0.1", + sha256 = "bca40a312222d8ba74837cb474edef44b37f561da5f773981007a10bbaa992b0", + type = "tar.gz", + urls = ["https://static.crates.io/crates/relative-path/2.0.1/download"], + strip_prefix = "relative-path-2.0.1", + build_file = Label("//misc/bazel/3rdparty/tree_sitter_extractors_deps:BUILD.relative-path-2.0.1.bazel"), + ) + maybe( http_archive, name = "vendor_ts__rowan-0.15.15", @@ -2889,6 +3080,46 @@ def crate_repositories(): build_file = Label("//misc/bazel/3rdparty/tree_sitter_extractors_deps:BUILD.rowan-0.15.15.bazel"), ) + maybe( + http_archive, + name = "vendor_ts__rquickjs-0.10.0", + sha256 = "a135375fbac5ba723bb6a48f432a72f81539cedde422f0121a86c7c4e96d8e0d", + type = "tar.gz", + urls = ["https://static.crates.io/crates/rquickjs/0.10.0/download"], + strip_prefix = "rquickjs-0.10.0", + build_file = Label("//misc/bazel/3rdparty/tree_sitter_extractors_deps:BUILD.rquickjs-0.10.0.bazel"), + ) + + maybe( + http_archive, + name = "vendor_ts__rquickjs-core-0.10.0", + sha256 = "bccb7121a123865c8ace4dea42e7ed84d78b90cbaf4ca32c59849d8d210c9672", + type = "tar.gz", + urls = ["https://static.crates.io/crates/rquickjs-core/0.10.0/download"], + strip_prefix = "rquickjs-core-0.10.0", + build_file = Label("//misc/bazel/3rdparty/tree_sitter_extractors_deps:BUILD.rquickjs-core-0.10.0.bazel"), + ) + + maybe( + http_archive, + name = "vendor_ts__rquickjs-macro-0.10.0", + sha256 = "89f93602cc3112c7f30bf5f29e722784232138692c7df4c52ebbac7e035d900d", + type = "tar.gz", + urls = ["https://static.crates.io/crates/rquickjs-macro/0.10.0/download"], + strip_prefix = "rquickjs-macro-0.10.0", + build_file = Label("//misc/bazel/3rdparty/tree_sitter_extractors_deps:BUILD.rquickjs-macro-0.10.0.bazel"), + ) + + maybe( + http_archive, + name = "vendor_ts__rquickjs-sys-0.10.0", + sha256 = "57b1b6528590d4d65dc86b5159eae2d0219709546644c66408b2441696d1d725", + type = "tar.gz", + urls = ["https://static.crates.io/crates/rquickjs-sys/0.10.0/download"], + strip_prefix = "rquickjs-sys-0.10.0", + build_file = Label("//misc/bazel/3rdparty/tree_sitter_extractors_deps:BUILD.rquickjs-sys-0.10.0.bazel"), + ) + maybe( http_archive, name = "vendor_ts__rustc-hash-1.1.0", @@ -3051,12 +3282,12 @@ def crate_repositories(): maybe( http_archive, - name = "vendor_ts__semver-1.0.26", - sha256 = "56e6fa9c48d24d85fb3de5ad847117517440f6beceb7798af16b4a87d616b8d0", + name = "vendor_ts__semver-1.0.28", + sha256 = "8a7852d02fc848982e0c167ef163aaff9cd91dc640ba85e263cb1ce46fae51cd", type = "tar.gz", - urls = ["https://static.crates.io/crates/semver/1.0.26/download"], - strip_prefix = "semver-1.0.26", - build_file = Label("//misc/bazel/3rdparty/tree_sitter_extractors_deps:BUILD.semver-1.0.26.bazel"), + urls = ["https://static.crates.io/crates/semver/1.0.28/download"], + strip_prefix = "semver-1.0.28", + build_file = Label("//misc/bazel/3rdparty/tree_sitter_extractors_deps:BUILD.semver-1.0.28.bazel"), ) maybe( @@ -3189,6 +3420,26 @@ def crate_repositories(): build_file = Label("//misc/bazel/3rdparty/tree_sitter_extractors_deps:BUILD.shlex-1.3.0.bazel"), ) + maybe( + http_archive, + name = "vendor_ts__siphasher-1.0.3", + sha256 = "8ee5873ec9cce0195efcb7a4e9507a04cd49aec9c83d0389df45b1ef7ba2e649", + type = "tar.gz", + urls = ["https://static.crates.io/crates/siphasher/1.0.3/download"], + strip_prefix = "siphasher-1.0.3", + build_file = Label("//misc/bazel/3rdparty/tree_sitter_extractors_deps:BUILD.siphasher-1.0.3.bazel"), + ) + + maybe( + http_archive, + name = "vendor_ts__smallbitvec-2.6.1", + sha256 = "9b0e903ee191d8f7a8fbf0d712c3a1699d19e04ceba5ad1eb673053c7d938a09", + type = "tar.gz", + urls = ["https://static.crates.io/crates/smallbitvec/2.6.1/download"], + strip_prefix = "smallbitvec-2.6.1", + build_file = Label("//misc/bazel/3rdparty/tree_sitter_extractors_deps:BUILD.smallbitvec-2.6.1.bazel"), + ) + maybe( http_archive, name = "vendor_ts__smallvec-1.15.1", @@ -3291,22 +3542,22 @@ def crate_repositories(): maybe( http_archive, - name = "vendor_ts__thiserror-2.0.16", - sha256 = "3467d614147380f2e4e374161426ff399c91084acd2363eaf549172b3d5e60c0", + name = "vendor_ts__thiserror-2.0.18", + sha256 = "4288b5bcbc7920c07a1149a35cf9590a2aa808e0bc1eafaade0b80947865fbc4", type = "tar.gz", - urls = ["https://static.crates.io/crates/thiserror/2.0.16/download"], - strip_prefix = "thiserror-2.0.16", - build_file = Label("//misc/bazel/3rdparty/tree_sitter_extractors_deps:BUILD.thiserror-2.0.16.bazel"), + urls = ["https://static.crates.io/crates/thiserror/2.0.18/download"], + strip_prefix = "thiserror-2.0.18", + build_file = Label("//misc/bazel/3rdparty/tree_sitter_extractors_deps:BUILD.thiserror-2.0.18.bazel"), ) maybe( http_archive, - name = "vendor_ts__thiserror-impl-2.0.16", - sha256 = "6c5e1be1c48b9172ee610da68fd9cd2770e7a4056cb3fc98710ee6906f0c7960", + name = "vendor_ts__thiserror-impl-2.0.18", + sha256 = "ebc4ee7f67670e9b64d05fa4253e753e016c6c95ff35b89b7941d6b856dec1d5", type = "tar.gz", - urls = ["https://static.crates.io/crates/thiserror-impl/2.0.16/download"], - strip_prefix = "thiserror-impl-2.0.16", - build_file = Label("//misc/bazel/3rdparty/tree_sitter_extractors_deps:BUILD.thiserror-impl-2.0.16.bazel"), + urls = ["https://static.crates.io/crates/thiserror-impl/2.0.18/download"], + strip_prefix = "thiserror-impl-2.0.18", + build_file = Label("//misc/bazel/3rdparty/tree_sitter_extractors_deps:BUILD.thiserror-impl-2.0.18.bazel"), ) maybe( @@ -3399,6 +3650,16 @@ def crate_repositories(): build_file = Label("//misc/bazel/3rdparty/tree_sitter_extractors_deps:BUILD.toml_datetime-0.7.2.bazel"), ) + maybe( + http_archive, + name = "vendor_ts__toml_datetime-1.1.1-spec-1.1.0", + sha256 = "3165f65f62e28e0115a00b2ebdd37eb6f3b641855f9d636d3cd4103767159ad7", + type = "tar.gz", + urls = ["https://static.crates.io/crates/toml_datetime/1.1.1+spec-1.1.0/download"], + strip_prefix = "toml_datetime-1.1.1+spec-1.1.0", + build_file = Label("//misc/bazel/3rdparty/tree_sitter_extractors_deps:BUILD.toml_datetime-1.1.1+spec-1.1.0.bazel"), + ) + maybe( http_archive, name = "vendor_ts__toml_edit-0.22.27", @@ -3411,12 +3672,22 @@ def crate_repositories(): maybe( http_archive, - name = "vendor_ts__toml_parser-1.0.3", - sha256 = "4cf893c33be71572e0e9aa6dd15e6677937abd686b066eac3f8cd3531688a627", + name = "vendor_ts__toml_edit-0.25.11-spec-1.1.0", + sha256 = "0b59c4d22ed448339746c59b905d24568fcbb3ab65a500494f7b8c3e97739f2b", type = "tar.gz", - urls = ["https://static.crates.io/crates/toml_parser/1.0.3/download"], - strip_prefix = "toml_parser-1.0.3", - build_file = Label("//misc/bazel/3rdparty/tree_sitter_extractors_deps:BUILD.toml_parser-1.0.3.bazel"), + urls = ["https://static.crates.io/crates/toml_edit/0.25.11+spec-1.1.0/download"], + strip_prefix = "toml_edit-0.25.11+spec-1.1.0", + build_file = Label("//misc/bazel/3rdparty/tree_sitter_extractors_deps:BUILD.toml_edit-0.25.11+spec-1.1.0.bazel"), + ) + + maybe( + http_archive, + name = "vendor_ts__toml_parser-1.1.2-spec-1.1.0", + sha256 = "a2abe9b86193656635d2411dc43050282ca48aa31c2451210f4202550afb7526", + type = "tar.gz", + urls = ["https://static.crates.io/crates/toml_parser/1.1.2+spec-1.1.0/download"], + strip_prefix = "toml_parser-1.1.2+spec-1.1.0", + build_file = Label("//misc/bazel/3rdparty/tree_sitter_extractors_deps:BUILD.toml_parser-1.1.2+spec-1.1.0.bazel"), ) maybe( @@ -3439,6 +3710,16 @@ def crate_repositories(): build_file = Label("//misc/bazel/3rdparty/tree_sitter_extractors_deps:BUILD.toml_writer-1.0.3.bazel"), ) + maybe( + http_archive, + name = "vendor_ts__topological-sort-0.2.2", + sha256 = "ea68304e134ecd095ac6c3574494fc62b909f416c4fca77e440530221e549d3d", + type = "tar.gz", + urls = ["https://static.crates.io/crates/topological-sort/0.2.2/download"], + strip_prefix = "topological-sort-0.2.2", + build_file = Label("//misc/bazel/3rdparty/tree_sitter_extractors_deps:BUILD.topological-sort-0.2.2.bazel"), + ) + maybe( http_archive, name = "vendor_ts__tracing-0.1.41", @@ -3519,6 +3800,16 @@ def crate_repositories(): build_file = Label("//misc/bazel/3rdparty/tree_sitter_extractors_deps:BUILD.tree-sitter-embedded-template-0.25.0.bazel"), ) + maybe( + http_archive, + name = "vendor_ts__tree-sitter-generate-0.26.8", + sha256 = "c3fb2e1bdb1d5f9d23cd5fa68cf98b3bedbd223c92a2edd60bbcf30bcf7180a5", + type = "tar.gz", + urls = ["https://static.crates.io/crates/tree-sitter-generate/0.26.8/download"], + strip_prefix = "tree-sitter-generate-0.26.8", + build_file = Label("//misc/bazel/3rdparty/tree_sitter_extractors_deps:BUILD.tree-sitter-generate-0.26.8.bazel"), + ) + maybe( http_archive, name = "vendor_ts__tree-sitter-json-0.24.8", @@ -3639,6 +3930,16 @@ def crate_repositories(): build_file = Label("//misc/bazel/3rdparty/tree_sitter_extractors_deps:BUILD.unicode-properties-0.1.3.bazel"), ) + maybe( + http_archive, + name = "vendor_ts__unicode-segmentation-1.13.2", + sha256 = "9629274872b2bfaf8d66f5f15725007f635594914870f65218920345aa11aa8c", + type = "tar.gz", + urls = ["https://static.crates.io/crates/unicode-segmentation/1.13.2/download"], + strip_prefix = "unicode-segmentation-1.13.2", + build_file = Label("//misc/bazel/3rdparty/tree_sitter_extractors_deps:BUILD.unicode-segmentation-1.13.2.bazel"), + ) + maybe( http_archive, name = "vendor_ts__unicode-xid-0.2.6", @@ -4109,6 +4410,16 @@ def crate_repositories(): build_file = Label("//misc/bazel/3rdparty/tree_sitter_extractors_deps:BUILD.winnow-0.7.13.bazel"), ) + maybe( + http_archive, + name = "vendor_ts__winnow-1.0.2", + sha256 = "2ee1708bef14716a11bae175f579062d4554d95be2c6829f518df847b7b3fdd0", + type = "tar.gz", + urls = ["https://static.crates.io/crates/winnow/1.0.2/download"], + strip_prefix = "winnow-1.0.2", + build_file = Label("//misc/bazel/3rdparty/tree_sitter_extractors_deps:BUILD.winnow-1.0.2.bazel"), + ) + maybe( http_archive, name = "vendor_ts__wit-bindgen-0.45.1", @@ -4309,6 +4620,7 @@ def crate_repositories(): struct(repo = "vendor_ts__tracing-subscriber-0.3.20", is_dev_dep = False), struct(repo = "vendor_ts__tree-sitter-0.26.8", is_dev_dep = False), struct(repo = "vendor_ts__tree-sitter-embedded-template-0.25.0", is_dev_dep = False), + struct(repo = "vendor_ts__tree-sitter-generate-0.26.8", is_dev_dep = False), struct(repo = "vendor_ts__tree-sitter-language-0.1.5", is_dev_dep = False), struct(repo = "vendor_ts__tree-sitter-python-0.23.6", is_dev_dep = False), struct(repo = "vendor_ts__tree-sitter-ruby-0.23.1", is_dev_dep = False), From 513c7bb30baac0f9a5ad1879a9f56f54d3ea87ae Mon Sep 17 00:00:00 2001 From: Taus Date: Fri, 8 May 2026 13:57:34 +0000 Subject: [PATCH 235/260] unified: Add scripts for automatically rebuilding Swift grammar --- unified/AGENTS.md | 15 + .../tree-sitter-swift/node-types.yml | 633 ++++++++++++++++++ unified/scripts/regenerate-grammar.sh | 28 + 3 files changed, 676 insertions(+) create mode 100644 unified/extractor/tree-sitter-swift/node-types.yml create mode 100755 unified/scripts/regenerate-grammar.sh diff --git a/unified/AGENTS.md b/unified/AGENTS.md index 44cb74372883..488a94f44bd4 100644 --- a/unified/AGENTS.md +++ b/unified/AGENTS.md @@ -5,6 +5,21 @@ This is a CodeQL extractor based on tree-sitter. ## Building To build the extractor, run `scripts/create-extractor-pack.sh` +## Editing the Swift grammar +The vendored tree-sitter-swift grammar lives at +`extractor/tree-sitter-swift/`. After editing `grammar.js` (or any other +grammar source), run `scripts/regenerate-grammar.sh` to: +- regenerate `extractor/tree-sitter-swift/src/{parser.c, grammar.json, + node-types.json}` (and the `src/tree_sitter/*.h` headers) via + `tree-sitter generate`; and +- refresh `extractor/tree-sitter-swift/node-types.yml`, the + human-readable companion to `src/node-types.json` produced by yeast's + `node_types_yaml` binary. + +`node-types.yml` is the recommended review surface for grammar changes — +it shows the impact of a grammar tweak on the named node kinds, fields, +and child types in a form much easier to read than the raw JSON. + ## Testing - If you changed the extractor code, always rebuild it before running tests. diff --git a/unified/extractor/tree-sitter-swift/node-types.yml b/unified/extractor/tree-sitter-swift/node-types.yml new file mode 100644 index 000000000000..6b3e19f5bf0b --- /dev/null +++ b/unified/extractor/tree-sitter-swift/node-types.yml @@ -0,0 +1,633 @@ +named: + _expression: + additive_expression: + lhs+: ["!=", "!==", "%", "%=", "&", "*", "*=", "+", "++", "+=", "-", "--", "-=", "/", "/=", "<", "<<", "<=", "=", "==", "===", ">", ">=", ">>", "?", "^", additive_expression, array_literal, as_expression, assignment, await_expression, bang, bin_literal, bitwise_operation, boolean_literal, call_expression, check_expression, comparison_expression, conjunction_expression, constructor_expression, custom_operator, diagnostic, dictionary_literal, directive, disjunction_expression, equality_expression, fully_open_range, hex_literal, if_statement, infix_expression, integer_literal, key_path_expression, key_path_string_expression, lambda_literal, line_string_literal, macro_invocation, multi_line_string_literal, multiplicative_expression, navigation_expression, "nil", nil_coalescing_expression, oct_literal, open_end_range_expression, open_start_range_expression, playground_literal, postfix_expression, prefix_expression, range_expression, raw_string_literal, real_literal, regex_literal, selector_expression, self_expression, simple_identifier, special_literal, super_expression, switch_statement, ternary_expression, try_expression, tuple_expression, value_pack_expansion, value_parameter_pack, "|", "~"] + op: ["+", "-"] + rhs+: ["!=", "!==", "%", "%=", "&", "*", "*=", "+", "++", "+=", "-", "--", "-=", "/", "/=", "<", "<<", "<=", "=", "==", "===", ">", ">=", ">>", "?", "^", additive_expression, array_literal, as_expression, assignment, await_expression, bang, bin_literal, bitwise_operation, boolean_literal, call_expression, check_expression, comparison_expression, conjunction_expression, constructor_expression, custom_operator, diagnostic, dictionary_literal, directive, disjunction_expression, equality_expression, fully_open_range, hex_literal, if_statement, infix_expression, integer_literal, key_path_expression, key_path_string_expression, lambda_literal, line_string_literal, macro_invocation, multi_line_string_literal, multiplicative_expression, navigation_expression, "nil", nil_coalescing_expression, oct_literal, open_end_range_expression, open_start_range_expression, playground_literal, postfix_expression, prefix_expression, range_expression, raw_string_literal, real_literal, regex_literal, selector_expression, self_expression, simple_identifier, special_literal, super_expression, switch_statement, ternary_expression, try_expression, tuple_expression, value_pack_expansion, value_parameter_pack, "|", "~"] + array_literal: + element*: ["!=", "!==", "%", "%=", "&", "*", "*=", "+", "++", "+=", "-", "--", "-=", "/", "/=", "<", "<<", "<=", "=", "==", "===", ">", ">=", ">>", "?", "^", additive_expression, array_literal, as_expression, assignment, await_expression, bang, bin_literal, bitwise_operation, boolean_literal, call_expression, check_expression, comparison_expression, conjunction_expression, constructor_expression, custom_operator, diagnostic, dictionary_literal, directive, disjunction_expression, equality_expression, fully_open_range, hex_literal, if_statement, infix_expression, integer_literal, key_path_expression, key_path_string_expression, lambda_literal, line_string_literal, macro_invocation, multi_line_string_literal, multiplicative_expression, navigation_expression, "nil", nil_coalescing_expression, oct_literal, open_end_range_expression, open_start_range_expression, playground_literal, postfix_expression, prefix_expression, range_expression, raw_string_literal, real_literal, regex_literal, selector_expression, self_expression, simple_identifier, special_literal, super_expression, switch_statement, ternary_expression, try_expression, tuple_expression, value_pack_expansion, value_parameter_pack, "|", "~"] + array_type: + element+: [array_type, dictionary_type, existential_type, function_type, metatype, opaque_type, optional_type, protocol_composition_type, suppressed_constraint, tuple_type, type_modifiers, type_pack_expansion, type_parameter_pack, user_type] + name: [array_type, dictionary_type, existential_type, function_type, metatype, opaque_type, optional_type, protocol_composition_type, suppressed_constraint, tuple_type, type_pack_expansion, type_parameter_pack, user_type] + as_expression: + $children: as_operator + expr+: ["!=", "!==", "%", "%=", "&", "*", "*=", "+", "++", "+=", "-", "--", "-=", "/", "/=", "<", "<<", "<=", "=", "==", "===", ">", ">=", ">>", "?", "^", additive_expression, array_literal, as_expression, assignment, await_expression, bang, bin_literal, bitwise_operation, boolean_literal, call_expression, check_expression, comparison_expression, conjunction_expression, constructor_expression, custom_operator, diagnostic, dictionary_literal, directive, disjunction_expression, equality_expression, fully_open_range, hex_literal, if_statement, infix_expression, integer_literal, key_path_expression, key_path_string_expression, lambda_literal, line_string_literal, macro_invocation, multi_line_string_literal, multiplicative_expression, navigation_expression, "nil", nil_coalescing_expression, oct_literal, open_end_range_expression, open_start_range_expression, playground_literal, postfix_expression, prefix_expression, range_expression, raw_string_literal, real_literal, regex_literal, selector_expression, self_expression, simple_identifier, special_literal, super_expression, switch_statement, ternary_expression, try_expression, tuple_expression, value_pack_expansion, value_parameter_pack, "|", "~"] + name: [array_type, dictionary_type, existential_type, function_type, metatype, opaque_type, optional_type, protocol_composition_type, suppressed_constraint, tuple_type, type_pack_expansion, type_parameter_pack, user_type] + type+: [array_type, dictionary_type, existential_type, function_type, metatype, opaque_type, optional_type, protocol_composition_type, suppressed_constraint, tuple_type, type_modifiers, type_pack_expansion, type_parameter_pack, user_type] + as_operator: + assignment: + operator: ["%=", "*=", "+=", "-=", "/=", "="] + result+: ["!=", "!==", "%", "%=", "&", "*", "*=", "+", "++", "+=", "-", "--", "-=", "/", "/=", "<", "<<", "<=", "=", "==", "===", ">", ">=", ">>", "?", "^", additive_expression, array_literal, as_expression, assignment, await_expression, bang, bin_literal, bitwise_operation, boolean_literal, call_expression, check_expression, comparison_expression, conjunction_expression, constructor_expression, custom_operator, diagnostic, dictionary_literal, directive, disjunction_expression, equality_expression, fully_open_range, hex_literal, if_statement, infix_expression, integer_literal, key_path_expression, key_path_string_expression, lambda_literal, line_string_literal, macro_invocation, multi_line_string_literal, multiplicative_expression, navigation_expression, "nil", nil_coalescing_expression, oct_literal, open_end_range_expression, open_start_range_expression, playground_literal, postfix_expression, prefix_expression, range_expression, raw_string_literal, real_literal, regex_literal, selector_expression, self_expression, simple_identifier, special_literal, super_expression, switch_statement, ternary_expression, try_expression, tuple_expression, value_pack_expansion, value_parameter_pack, "|", "~"] + target: directly_assignable_expression + associatedtype_declaration: + $children*: [modifiers, type_constraints] + default_value*: [array_type, dictionary_type, existential_type, function_type, metatype, opaque_type, optional_type, protocol_composition_type, suppressed_constraint, tuple_type, type_modifiers, type_pack_expansion, type_parameter_pack, user_type] + must_inherit*: [array_type, dictionary_type, existential_type, function_type, metatype, opaque_type, optional_type, protocol_composition_type, suppressed_constraint, tuple_type, type_modifiers, type_pack_expansion, type_parameter_pack, user_type] + name+: [array_type, dictionary_type, existential_type, function_type, metatype, opaque_type, optional_type, protocol_composition_type, suppressed_constraint, tuple_type, type_identifier, type_pack_expansion, type_parameter_pack, user_type] + attribute: + $children+: [additive_expression, array_literal, as_expression, assignment, await_expression, bang, bin_literal, bitwise_operation, boolean_literal, call_expression, check_expression, comparison_expression, conjunction_expression, constructor_expression, custom_operator, diagnostic, dictionary_literal, directive, disjunction_expression, equality_expression, fully_open_range, hex_literal, if_statement, infix_expression, integer_literal, key_path_expression, key_path_string_expression, lambda_literal, line_string_literal, macro_invocation, multi_line_string_literal, multiplicative_expression, navigation_expression, nil_coalescing_expression, oct_literal, open_end_range_expression, open_start_range_expression, playground_literal, postfix_expression, prefix_expression, range_expression, raw_string_literal, real_literal, regex_literal, selector_expression, self_expression, simple_identifier, special_literal, super_expression, switch_statement, ternary_expression, try_expression, tuple_expression, user_type, value_pack_expansion, value_parameter_pack] + availability_condition: + $children*: [identifier, integer_literal] + await_expression: + $children?: [additive_expression, array_literal, as_expression, assignment, await_expression, bang, bin_literal, bitwise_operation, boolean_literal, call_expression, check_expression, comparison_expression, conjunction_expression, constructor_expression, custom_operator, diagnostic, dictionary_literal, directive, disjunction_expression, equality_expression, fully_open_range, hex_literal, if_statement, infix_expression, integer_literal, key_path_expression, key_path_string_expression, lambda_literal, line_string_literal, macro_invocation, multi_line_string_literal, multiplicative_expression, navigation_expression, nil_coalescing_expression, oct_literal, open_end_range_expression, open_start_range_expression, playground_literal, postfix_expression, prefix_expression, range_expression, raw_string_literal, real_literal, regex_literal, selector_expression, self_expression, simple_identifier, special_literal, super_expression, switch_statement, ternary_expression, try_expression, tuple_expression, value_pack_expansion, value_parameter_pack] + expr*: ["!=", "!==", "%", "%=", "&", "*", "*=", "+", "++", "+=", "-", "--", "-=", "/", "/=", "<", "<<", "<=", "=", "==", "===", ">", ">=", ">>", "?", "^", additive_expression, array_literal, as_expression, assignment, await_expression, bang, bin_literal, bitwise_operation, boolean_literal, call_expression, check_expression, comparison_expression, conjunction_expression, constructor_expression, custom_operator, diagnostic, dictionary_literal, directive, disjunction_expression, equality_expression, fully_open_range, hex_literal, if_statement, infix_expression, integer_literal, key_path_expression, key_path_string_expression, lambda_literal, line_string_literal, macro_invocation, multi_line_string_literal, multiplicative_expression, navigation_expression, "nil", nil_coalescing_expression, oct_literal, open_end_range_expression, open_start_range_expression, playground_literal, postfix_expression, prefix_expression, range_expression, raw_string_literal, real_literal, regex_literal, selector_expression, self_expression, simple_identifier, special_literal, super_expression, switch_statement, ternary_expression, try_expression, tuple_expression, value_pack_expansion, value_parameter_pack, "|", "~"] + bang: + bin_literal: + bitwise_operation: + lhs+: ["!=", "!==", "%", "%=", "&", "*", "*=", "+", "++", "+=", "-", "--", "-=", "/", "/=", "<", "<<", "<=", "=", "==", "===", ">", ">=", ">>", "?", "^", additive_expression, array_literal, as_expression, assignment, await_expression, bang, bin_literal, bitwise_operation, boolean_literal, call_expression, check_expression, comparison_expression, conjunction_expression, constructor_expression, custom_operator, diagnostic, dictionary_literal, directive, disjunction_expression, equality_expression, fully_open_range, hex_literal, if_statement, infix_expression, integer_literal, key_path_expression, key_path_string_expression, lambda_literal, line_string_literal, macro_invocation, multi_line_string_literal, multiplicative_expression, navigation_expression, "nil", nil_coalescing_expression, oct_literal, open_end_range_expression, open_start_range_expression, playground_literal, postfix_expression, prefix_expression, range_expression, raw_string_literal, real_literal, regex_literal, selector_expression, self_expression, simple_identifier, special_literal, super_expression, switch_statement, ternary_expression, try_expression, tuple_expression, value_pack_expansion, value_parameter_pack, "|", "~"] + op: ["&", "<<", ">>", "^", "|"] + rhs+: ["!=", "!==", "%", "%=", "&", "*", "*=", "+", "++", "+=", "-", "--", "-=", "/", "/=", "<", "<<", "<=", "=", "==", "===", ">", ">=", ">>", "?", "^", additive_expression, array_literal, as_expression, assignment, await_expression, bang, bin_literal, bitwise_operation, boolean_literal, call_expression, check_expression, comparison_expression, conjunction_expression, constructor_expression, custom_operator, diagnostic, dictionary_literal, directive, disjunction_expression, equality_expression, fully_open_range, hex_literal, if_statement, infix_expression, integer_literal, key_path_expression, key_path_string_expression, lambda_literal, line_string_literal, macro_invocation, multi_line_string_literal, multiplicative_expression, navigation_expression, "nil", nil_coalescing_expression, oct_literal, open_end_range_expression, open_start_range_expression, playground_literal, postfix_expression, prefix_expression, range_expression, raw_string_literal, real_literal, regex_literal, selector_expression, self_expression, simple_identifier, special_literal, super_expression, switch_statement, ternary_expression, try_expression, tuple_expression, value_pack_expansion, value_parameter_pack, "|", "~"] + boolean_literal: + call_expression: + $children+: [additive_expression, array_literal, as_expression, assignment, await_expression, bang, bin_literal, bitwise_operation, boolean_literal, call_expression, call_suffix, check_expression, comparison_expression, conjunction_expression, constructor_expression, custom_operator, diagnostic, dictionary_literal, directive, disjunction_expression, equality_expression, fully_open_range, hex_literal, if_statement, infix_expression, integer_literal, key_path_expression, key_path_string_expression, lambda_literal, line_string_literal, macro_invocation, multi_line_string_literal, multiplicative_expression, navigation_expression, nil_coalescing_expression, oct_literal, open_end_range_expression, open_start_range_expression, playground_literal, postfix_expression, prefix_expression, range_expression, raw_string_literal, real_literal, regex_literal, selector_expression, self_expression, simple_identifier, special_literal, super_expression, switch_statement, ternary_expression, try_expression, tuple_expression, value_pack_expansion, value_parameter_pack] + call_suffix: + $children+: [lambda_literal, value_arguments] + name*: simple_identifier + capture_list: + $children+: capture_list_item + capture_list_item: + $children?: ownership_modifier + name: [self_expression, simple_identifier] + value*: ["!=", "!==", "%", "%=", "&", "*", "*=", "+", "++", "+=", "-", "--", "-=", "/", "/=", "<", "<<", "<=", "=", "==", "===", ">", ">=", ">>", "?", "^", additive_expression, array_literal, as_expression, assignment, await_expression, bang, bin_literal, bitwise_operation, boolean_literal, call_expression, check_expression, comparison_expression, conjunction_expression, constructor_expression, custom_operator, diagnostic, dictionary_literal, directive, disjunction_expression, equality_expression, fully_open_range, hex_literal, if_statement, infix_expression, integer_literal, key_path_expression, key_path_string_expression, lambda_literal, line_string_literal, macro_invocation, multi_line_string_literal, multiplicative_expression, navigation_expression, "nil", nil_coalescing_expression, oct_literal, open_end_range_expression, open_start_range_expression, playground_literal, postfix_expression, prefix_expression, range_expression, raw_string_literal, real_literal, regex_literal, selector_expression, self_expression, simple_identifier, special_literal, super_expression, switch_statement, ternary_expression, try_expression, tuple_expression, value_pack_expansion, value_parameter_pack, "|", "~"] + catch_block: + $children+: [catch_keyword, statements, where_clause] + error?: pattern + catch_keyword: + check_expression: + name: [array_type, dictionary_type, existential_type, function_type, metatype, opaque_type, optional_type, protocol_composition_type, suppressed_constraint, tuple_type, type_pack_expansion, type_parameter_pack, user_type] + op: "is" + target+: ["!=", "!==", "%", "%=", "&", "*", "*=", "+", "++", "+=", "-", "--", "-=", "/", "/=", "<", "<<", "<=", "=", "==", "===", ">", ">=", ">>", "?", "^", additive_expression, array_literal, as_expression, assignment, await_expression, bang, bin_literal, bitwise_operation, boolean_literal, call_expression, check_expression, comparison_expression, conjunction_expression, constructor_expression, custom_operator, diagnostic, dictionary_literal, directive, disjunction_expression, equality_expression, fully_open_range, hex_literal, if_statement, infix_expression, integer_literal, key_path_expression, key_path_string_expression, lambda_literal, line_string_literal, macro_invocation, multi_line_string_literal, multiplicative_expression, navigation_expression, "nil", nil_coalescing_expression, oct_literal, open_end_range_expression, open_start_range_expression, playground_literal, postfix_expression, prefix_expression, range_expression, raw_string_literal, real_literal, regex_literal, selector_expression, self_expression, simple_identifier, special_literal, super_expression, switch_statement, ternary_expression, try_expression, tuple_expression, value_pack_expansion, value_parameter_pack, "|", "~"] + type+: [array_type, dictionary_type, existential_type, function_type, metatype, opaque_type, optional_type, protocol_composition_type, suppressed_constraint, tuple_type, type_modifiers, type_pack_expansion, type_parameter_pack, user_type] + class_body: + $children*: [associatedtype_declaration, class_declaration, deinit_declaration, function_declaration, import_declaration, init_declaration, multiline_comment, operator_declaration, precedence_group_declaration, property_declaration, protocol_declaration, subscript_declaration, typealias_declaration] + class_declaration: + $children*: [attribute, inheritance_modifier, inheritance_specifier, modifiers, ownership_modifier, property_behavior_modifier, type_constraints, type_parameters] + body: [class_body, enum_class_body] + declaration_kind: ["actor", "class", "enum", "extension", "struct"] + name: [array_type, dictionary_type, existential_type, function_type, metatype, opaque_type, optional_type, protocol_composition_type, suppressed_constraint, tuple_type, type_identifier, type_pack_expansion, type_parameter_pack, user_type] + comment: + comparison_expression: + lhs+: ["!=", "!==", "%", "%=", "&", "*", "*=", "+", "++", "+=", "-", "--", "-=", "/", "/=", "<", "<<", "<=", "=", "==", "===", ">", ">=", ">>", "?", "^", additive_expression, array_literal, as_expression, assignment, await_expression, bang, bin_literal, bitwise_operation, boolean_literal, call_expression, check_expression, comparison_expression, conjunction_expression, constructor_expression, custom_operator, diagnostic, dictionary_literal, directive, disjunction_expression, equality_expression, fully_open_range, hex_literal, if_statement, infix_expression, integer_literal, key_path_expression, key_path_string_expression, lambda_literal, line_string_literal, macro_invocation, multi_line_string_literal, multiplicative_expression, navigation_expression, "nil", nil_coalescing_expression, oct_literal, open_end_range_expression, open_start_range_expression, playground_literal, postfix_expression, prefix_expression, range_expression, raw_string_literal, real_literal, regex_literal, selector_expression, self_expression, simple_identifier, special_literal, super_expression, switch_statement, ternary_expression, try_expression, tuple_expression, value_pack_expansion, value_parameter_pack, "|", "~"] + op: ["<", "<=", ">", ">="] + rhs+: ["!=", "!==", "%", "%=", "&", "*", "*=", "+", "++", "+=", "-", "--", "-=", "/", "/=", "<", "<<", "<=", "=", "==", "===", ">", ">=", ">>", "?", "^", additive_expression, array_literal, as_expression, assignment, await_expression, bang, bin_literal, bitwise_operation, boolean_literal, call_expression, check_expression, comparison_expression, conjunction_expression, constructor_expression, custom_operator, diagnostic, dictionary_literal, directive, disjunction_expression, equality_expression, fully_open_range, hex_literal, if_statement, infix_expression, integer_literal, key_path_expression, key_path_string_expression, lambda_literal, line_string_literal, macro_invocation, multi_line_string_literal, multiplicative_expression, navigation_expression, "nil", nil_coalescing_expression, oct_literal, open_end_range_expression, open_start_range_expression, playground_literal, postfix_expression, prefix_expression, range_expression, raw_string_literal, real_literal, regex_literal, selector_expression, self_expression, simple_identifier, special_literal, super_expression, switch_statement, ternary_expression, try_expression, tuple_expression, value_pack_expansion, value_parameter_pack, "|", "~"] + computed_getter: + $children+: [attribute, getter_specifier, statements] + computed_modify: + $children+: [attribute, modify_specifier, statements] + computed_property: + $children*: [computed_getter, computed_modify, computed_setter, statements] + computed_setter: + $children+: [attribute, setter_specifier, simple_identifier, statements] + conjunction_expression: + lhs+: ["!=", "!==", "%", "%=", "&", "*", "*=", "+", "++", "+=", "-", "--", "-=", "/", "/=", "<", "<<", "<=", "=", "==", "===", ">", ">=", ">>", "?", "^", additive_expression, array_literal, as_expression, assignment, await_expression, bang, bin_literal, bitwise_operation, boolean_literal, call_expression, check_expression, comparison_expression, conjunction_expression, constructor_expression, custom_operator, diagnostic, dictionary_literal, directive, disjunction_expression, equality_expression, fully_open_range, hex_literal, if_statement, infix_expression, integer_literal, key_path_expression, key_path_string_expression, lambda_literal, line_string_literal, macro_invocation, multi_line_string_literal, multiplicative_expression, navigation_expression, "nil", nil_coalescing_expression, oct_literal, open_end_range_expression, open_start_range_expression, playground_literal, postfix_expression, prefix_expression, range_expression, raw_string_literal, real_literal, regex_literal, selector_expression, self_expression, simple_identifier, special_literal, super_expression, switch_statement, ternary_expression, try_expression, tuple_expression, value_pack_expansion, value_parameter_pack, "|", "~"] + op: "&&" + rhs+: ["!=", "!==", "%", "%=", "&", "*", "*=", "+", "++", "+=", "-", "--", "-=", "/", "/=", "<", "<<", "<=", "=", "==", "===", ">", ">=", ">>", "?", "^", additive_expression, array_literal, as_expression, assignment, await_expression, bang, bin_literal, bitwise_operation, boolean_literal, call_expression, check_expression, comparison_expression, conjunction_expression, constructor_expression, custom_operator, diagnostic, dictionary_literal, directive, disjunction_expression, equality_expression, fully_open_range, hex_literal, if_statement, infix_expression, integer_literal, key_path_expression, key_path_string_expression, lambda_literal, line_string_literal, macro_invocation, multi_line_string_literal, multiplicative_expression, navigation_expression, "nil", nil_coalescing_expression, oct_literal, open_end_range_expression, open_start_range_expression, playground_literal, postfix_expression, prefix_expression, range_expression, raw_string_literal, real_literal, regex_literal, selector_expression, self_expression, simple_identifier, special_literal, super_expression, switch_statement, ternary_expression, try_expression, tuple_expression, value_pack_expansion, value_parameter_pack, "|", "~"] + constructor_expression: + $children: constructor_suffix + constructed_type: [array_type, dictionary_type, user_type] + constructor_suffix: + $children+: [lambda_literal, value_arguments] + name*: simple_identifier + control_transfer_statement: + $children*: [additive_expression, array_literal, as_expression, assignment, await_expression, bang, bin_literal, bitwise_operation, boolean_literal, call_expression, check_expression, comparison_expression, conjunction_expression, constructor_expression, custom_operator, diagnostic, dictionary_literal, directive, disjunction_expression, equality_expression, fully_open_range, hex_literal, if_statement, infix_expression, integer_literal, key_path_expression, key_path_string_expression, lambda_literal, line_string_literal, macro_invocation, multi_line_string_literal, multiplicative_expression, navigation_expression, nil_coalescing_expression, oct_literal, open_end_range_expression, open_start_range_expression, playground_literal, postfix_expression, prefix_expression, range_expression, raw_string_literal, real_literal, regex_literal, selector_expression, self_expression, simple_identifier, special_literal, super_expression, switch_statement, ternary_expression, throw_keyword, try_expression, tuple_expression, value_pack_expansion, value_parameter_pack] + result*: ["!=", "!==", "%", "%=", "&", "*", "*=", "+", "++", "+=", "-", "--", "-=", "/", "/=", "<", "<<", "<=", "=", "==", "===", ">", ">=", ">>", "?", "^", additive_expression, array_literal, as_expression, assignment, await_expression, bang, bin_literal, bitwise_operation, boolean_literal, call_expression, check_expression, comparison_expression, conjunction_expression, constructor_expression, custom_operator, diagnostic, dictionary_literal, directive, disjunction_expression, equality_expression, fully_open_range, hex_literal, if_statement, infix_expression, integer_literal, key_path_expression, key_path_string_expression, lambda_literal, line_string_literal, macro_invocation, multi_line_string_literal, multiplicative_expression, navigation_expression, "nil", nil_coalescing_expression, oct_literal, open_end_range_expression, open_start_range_expression, playground_literal, postfix_expression, prefix_expression, range_expression, raw_string_literal, real_literal, regex_literal, selector_expression, self_expression, simple_identifier, special_literal, super_expression, switch_statement, ternary_expression, try_expression, tuple_expression, value_pack_expansion, value_parameter_pack, "|", "~"] + custom_operator: + default_keyword: + deinit_declaration: + $children?: modifiers + body: function_body + deprecated_operator_declaration_body: + $children*: [bin_literal, boolean_literal, hex_literal, integer_literal, line_string_literal, multi_line_string_literal, oct_literal, raw_string_literal, real_literal, regex_literal, simple_identifier] + diagnostic: + dictionary_literal: + key*: ["!=", "!==", "%", "%=", "&", "*", "*=", "+", "++", "+=", "-", "--", "-=", "/", "/=", "<", "<<", "<=", "=", "==", "===", ">", ">=", ">>", "?", "^", additive_expression, array_literal, as_expression, assignment, await_expression, bang, bin_literal, bitwise_operation, boolean_literal, call_expression, check_expression, comparison_expression, conjunction_expression, constructor_expression, custom_operator, diagnostic, dictionary_literal, directive, disjunction_expression, equality_expression, fully_open_range, hex_literal, if_statement, infix_expression, integer_literal, key_path_expression, key_path_string_expression, lambda_literal, line_string_literal, macro_invocation, multi_line_string_literal, multiplicative_expression, navigation_expression, "nil", nil_coalescing_expression, oct_literal, open_end_range_expression, open_start_range_expression, playground_literal, postfix_expression, prefix_expression, range_expression, raw_string_literal, real_literal, regex_literal, selector_expression, self_expression, simple_identifier, special_literal, super_expression, switch_statement, ternary_expression, try_expression, tuple_expression, value_pack_expansion, value_parameter_pack, "|", "~"] + value*: ["!=", "!==", "%", "%=", "&", "*", "*=", "+", "++", "+=", "-", "--", "-=", "/", "/=", "<", "<<", "<=", "=", "==", "===", ">", ">=", ">>", "?", "^", additive_expression, array_literal, as_expression, assignment, await_expression, bang, bin_literal, bitwise_operation, boolean_literal, call_expression, check_expression, comparison_expression, conjunction_expression, constructor_expression, custom_operator, diagnostic, dictionary_literal, directive, disjunction_expression, equality_expression, fully_open_range, hex_literal, if_statement, infix_expression, integer_literal, key_path_expression, key_path_string_expression, lambda_literal, line_string_literal, macro_invocation, multi_line_string_literal, multiplicative_expression, navigation_expression, "nil", nil_coalescing_expression, oct_literal, open_end_range_expression, open_start_range_expression, playground_literal, postfix_expression, prefix_expression, range_expression, raw_string_literal, real_literal, regex_literal, selector_expression, self_expression, simple_identifier, special_literal, super_expression, switch_statement, ternary_expression, try_expression, tuple_expression, value_pack_expansion, value_parameter_pack, "|", "~"] + dictionary_type: + key+: [array_type, dictionary_type, existential_type, function_type, metatype, opaque_type, optional_type, protocol_composition_type, suppressed_constraint, tuple_type, type_modifiers, type_pack_expansion, type_parameter_pack, user_type] + name+: [array_type, dictionary_type, existential_type, function_type, metatype, opaque_type, optional_type, protocol_composition_type, suppressed_constraint, tuple_type, type_pack_expansion, type_parameter_pack, user_type] + value+: [array_type, dictionary_type, existential_type, function_type, metatype, opaque_type, optional_type, protocol_composition_type, suppressed_constraint, tuple_type, type_modifiers, type_pack_expansion, type_parameter_pack, user_type] + didset_clause: + $children*: [modifiers, simple_identifier, statements] + directive: + $children*: [boolean_literal, integer_literal, simple_identifier] + directly_assignable_expression: + $children?: [additive_expression, array_literal, as_expression, assignment, await_expression, bang, bin_literal, bitwise_operation, boolean_literal, call_expression, check_expression, comparison_expression, conjunction_expression, constructor_expression, custom_operator, diagnostic, dictionary_literal, directive, disjunction_expression, equality_expression, fully_open_range, hex_literal, if_statement, infix_expression, integer_literal, key_path_expression, key_path_string_expression, lambda_literal, line_string_literal, macro_invocation, multi_line_string_literal, multiplicative_expression, navigation_expression, nil_coalescing_expression, oct_literal, open_end_range_expression, open_start_range_expression, playground_literal, postfix_expression, prefix_expression, range_expression, raw_string_literal, real_literal, regex_literal, selector_expression, self_expression, simple_identifier, special_literal, super_expression, switch_statement, ternary_expression, try_expression, tuple_expression, value_pack_expansion, value_parameter_pack] + disjunction_expression: + lhs+: ["!=", "!==", "%", "%=", "&", "*", "*=", "+", "++", "+=", "-", "--", "-=", "/", "/=", "<", "<<", "<=", "=", "==", "===", ">", ">=", ">>", "?", "^", additive_expression, array_literal, as_expression, assignment, await_expression, bang, bin_literal, bitwise_operation, boolean_literal, call_expression, check_expression, comparison_expression, conjunction_expression, constructor_expression, custom_operator, diagnostic, dictionary_literal, directive, disjunction_expression, equality_expression, fully_open_range, hex_literal, if_statement, infix_expression, integer_literal, key_path_expression, key_path_string_expression, lambda_literal, line_string_literal, macro_invocation, multi_line_string_literal, multiplicative_expression, navigation_expression, "nil", nil_coalescing_expression, oct_literal, open_end_range_expression, open_start_range_expression, playground_literal, postfix_expression, prefix_expression, range_expression, raw_string_literal, real_literal, regex_literal, selector_expression, self_expression, simple_identifier, special_literal, super_expression, switch_statement, ternary_expression, try_expression, tuple_expression, value_pack_expansion, value_parameter_pack, "|", "~"] + op: "||" + rhs+: ["!=", "!==", "%", "%=", "&", "*", "*=", "+", "++", "+=", "-", "--", "-=", "/", "/=", "<", "<<", "<=", "=", "==", "===", ">", ">=", ">>", "?", "^", additive_expression, array_literal, as_expression, assignment, await_expression, bang, bin_literal, bitwise_operation, boolean_literal, call_expression, check_expression, comparison_expression, conjunction_expression, constructor_expression, custom_operator, diagnostic, dictionary_literal, directive, disjunction_expression, equality_expression, fully_open_range, hex_literal, if_statement, infix_expression, integer_literal, key_path_expression, key_path_string_expression, lambda_literal, line_string_literal, macro_invocation, multi_line_string_literal, multiplicative_expression, navigation_expression, "nil", nil_coalescing_expression, oct_literal, open_end_range_expression, open_start_range_expression, playground_literal, postfix_expression, prefix_expression, range_expression, raw_string_literal, real_literal, regex_literal, selector_expression, self_expression, simple_identifier, special_literal, super_expression, switch_statement, ternary_expression, try_expression, tuple_expression, value_pack_expansion, value_parameter_pack, "|", "~"] + do_statement: + $children*: [catch_block, statements] + else: + enum_class_body: + $children*: [associatedtype_declaration, class_declaration, deinit_declaration, enum_entry, function_declaration, import_declaration, init_declaration, operator_declaration, precedence_group_declaration, property_declaration, protocol_declaration, subscript_declaration, typealias_declaration] + enum_entry: + $children?: modifiers + data_contents*: enum_type_parameters + name+: simple_identifier + raw_value*: ["!=", "!==", "%", "%=", "&", "*", "*=", "+", "++", "+=", "-", "--", "-=", "/", "/=", "<", "<<", "<=", "=", "==", "===", ">", ">=", ">>", "?", "^", additive_expression, array_literal, as_expression, assignment, await_expression, bang, bin_literal, bitwise_operation, boolean_literal, call_expression, check_expression, comparison_expression, conjunction_expression, constructor_expression, custom_operator, diagnostic, dictionary_literal, directive, disjunction_expression, equality_expression, fully_open_range, hex_literal, if_statement, infix_expression, integer_literal, key_path_expression, key_path_string_expression, lambda_literal, line_string_literal, macro_invocation, multi_line_string_literal, multiplicative_expression, navigation_expression, "nil", nil_coalescing_expression, oct_literal, open_end_range_expression, open_start_range_expression, playground_literal, postfix_expression, prefix_expression, range_expression, raw_string_literal, real_literal, regex_literal, selector_expression, self_expression, simple_identifier, special_literal, super_expression, switch_statement, ternary_expression, try_expression, tuple_expression, value_pack_expansion, value_parameter_pack, "|", "~"] + enum_type_parameters: + $children*: [additive_expression, array_literal, as_expression, assignment, await_expression, bang, bin_literal, bitwise_operation, boolean_literal, call_expression, check_expression, comparison_expression, conjunction_expression, constructor_expression, custom_operator, diagnostic, dictionary_literal, directive, disjunction_expression, equality_expression, fully_open_range, hex_literal, if_statement, infix_expression, integer_literal, key_path_expression, key_path_string_expression, lambda_literal, line_string_literal, macro_invocation, multi_line_string_literal, multiplicative_expression, navigation_expression, nil_coalescing_expression, oct_literal, open_end_range_expression, open_start_range_expression, playground_literal, postfix_expression, prefix_expression, range_expression, raw_string_literal, real_literal, regex_literal, selector_expression, self_expression, simple_identifier, special_literal, super_expression, switch_statement, ternary_expression, try_expression, tuple_expression, type_modifiers, value_pack_expansion, value_parameter_pack, wildcard_pattern] + name*: [array_type, dictionary_type, existential_type, function_type, metatype, opaque_type, optional_type, protocol_composition_type, suppressed_constraint, tuple_type, type_pack_expansion, type_parameter_pack, user_type] + equality_constraint: + $children*: attribute + constrained_type+: [".", array_type, dictionary_type, existential_type, function_type, identifier, metatype, opaque_type, optional_type, protocol_composition_type, simple_identifier, suppressed_constraint, tuple_type, type_pack_expansion, type_parameter_pack, user_type] + must_equal+: [array_type, dictionary_type, existential_type, function_type, metatype, opaque_type, optional_type, protocol_composition_type, suppressed_constraint, tuple_type, type_modifiers, type_pack_expansion, type_parameter_pack, user_type] + name: [array_type, dictionary_type, existential_type, function_type, metatype, opaque_type, optional_type, protocol_composition_type, suppressed_constraint, tuple_type, type_pack_expansion, type_parameter_pack, user_type] + equality_expression: + lhs+: ["!=", "!==", "%", "%=", "&", "*", "*=", "+", "++", "+=", "-", "--", "-=", "/", "/=", "<", "<<", "<=", "=", "==", "===", ">", ">=", ">>", "?", "^", additive_expression, array_literal, as_expression, assignment, await_expression, bang, bin_literal, bitwise_operation, boolean_literal, call_expression, check_expression, comparison_expression, conjunction_expression, constructor_expression, custom_operator, diagnostic, dictionary_literal, directive, disjunction_expression, equality_expression, fully_open_range, hex_literal, if_statement, infix_expression, integer_literal, key_path_expression, key_path_string_expression, lambda_literal, line_string_literal, macro_invocation, multi_line_string_literal, multiplicative_expression, navigation_expression, "nil", nil_coalescing_expression, oct_literal, open_end_range_expression, open_start_range_expression, playground_literal, postfix_expression, prefix_expression, range_expression, raw_string_literal, real_literal, regex_literal, selector_expression, self_expression, simple_identifier, special_literal, super_expression, switch_statement, ternary_expression, try_expression, tuple_expression, value_pack_expansion, value_parameter_pack, "|", "~"] + op: ["!=", "!==", "==", "==="] + rhs+: ["!=", "!==", "%", "%=", "&", "*", "*=", "+", "++", "+=", "-", "--", "-=", "/", "/=", "<", "<<", "<=", "=", "==", "===", ">", ">=", ">>", "?", "^", additive_expression, array_literal, as_expression, assignment, await_expression, bang, bin_literal, bitwise_operation, boolean_literal, call_expression, check_expression, comparison_expression, conjunction_expression, constructor_expression, custom_operator, diagnostic, dictionary_literal, directive, disjunction_expression, equality_expression, fully_open_range, hex_literal, if_statement, infix_expression, integer_literal, key_path_expression, key_path_string_expression, lambda_literal, line_string_literal, macro_invocation, multi_line_string_literal, multiplicative_expression, navigation_expression, "nil", nil_coalescing_expression, oct_literal, open_end_range_expression, open_start_range_expression, playground_literal, postfix_expression, prefix_expression, range_expression, raw_string_literal, real_literal, regex_literal, selector_expression, self_expression, simple_identifier, special_literal, super_expression, switch_statement, ternary_expression, try_expression, tuple_expression, value_pack_expansion, value_parameter_pack, "|", "~"] + existential_type: + $children: [array_type, dictionary_type, existential_type, function_type, metatype, opaque_type, optional_type, protocol_composition_type, suppressed_constraint, tuple_type, type_pack_expansion, type_parameter_pack, user_type] + external_macro_definition: + $children: value_arguments + for_statement: + $children*: [statements, try_operator, type_annotation, where_clause] + collection+: ["!=", "!==", "%", "%=", "&", "*", "*=", "+", "++", "+=", "-", "--", "-=", "/", "/=", "<", "<<", "<=", "=", "==", "===", ">", ">=", ">>", "?", "^", additive_expression, array_literal, as_expression, assignment, await_expression, bang, bin_literal, bitwise_operation, boolean_literal, call_expression, check_expression, comparison_expression, conjunction_expression, constructor_expression, custom_operator, diagnostic, dictionary_literal, directive, disjunction_expression, equality_expression, fully_open_range, hex_literal, if_statement, infix_expression, integer_literal, key_path_expression, key_path_string_expression, lambda_literal, line_string_literal, macro_invocation, multi_line_string_literal, multiplicative_expression, navigation_expression, "nil", nil_coalescing_expression, oct_literal, open_end_range_expression, open_start_range_expression, playground_literal, postfix_expression, prefix_expression, range_expression, raw_string_literal, real_literal, regex_literal, selector_expression, self_expression, simple_identifier, special_literal, super_expression, switch_statement, ternary_expression, try_expression, tuple_expression, value_pack_expansion, value_parameter_pack, "|", "~"] + item: pattern + fully_open_range: + function_body: + $children?: statements + function_declaration: + $children*: [attribute, inheritance_modifier, modifiers, ownership_modifier, parameter, property_behavior_modifier, throws, throws_clause, type_constraints, type_parameters] + body: function_body + default_value*: ["!=", "!==", "%", "%=", "&", "*", "*=", "+", "++", "+=", "-", "--", "-=", "/", "/=", "<", "<<", "<=", "=", "==", "===", ">", ">=", ">>", "?", "^", additive_expression, array_literal, as_expression, assignment, await_expression, bang, bin_literal, bitwise_operation, boolean_literal, call_expression, check_expression, comparison_expression, conjunction_expression, constructor_expression, custom_operator, diagnostic, dictionary_literal, directive, disjunction_expression, equality_expression, fully_open_range, hex_literal, if_statement, infix_expression, integer_literal, key_path_expression, key_path_string_expression, lambda_literal, line_string_literal, macro_invocation, multi_line_string_literal, multiplicative_expression, navigation_expression, "nil", nil_coalescing_expression, oct_literal, open_end_range_expression, open_start_range_expression, playground_literal, postfix_expression, prefix_expression, range_expression, raw_string_literal, real_literal, regex_literal, selector_expression, self_expression, simple_identifier, special_literal, super_expression, switch_statement, ternary_expression, try_expression, tuple_expression, value_pack_expansion, value_parameter_pack, "|", "~"] + name+: ["!=", "!==", "%", "%=", "&", "*", "*=", "+", "++", "+=", "-", "--", "-=", "/", "/=", "<", "<<", "<=", "=", "==", "===", ">", ">=", ">>", "^", array_type, bang, custom_operator, dictionary_type, existential_type, function_type, metatype, opaque_type, optional_type, protocol_composition_type, simple_identifier, suppressed_constraint, tuple_type, type_pack_expansion, type_parameter_pack, user_type, "|", "~"] + return_type*: ["!", array_type, dictionary_type, existential_type, function_type, metatype, opaque_type, optional_type, protocol_composition_type, suppressed_constraint, tuple_type, type_modifiers, type_pack_expansion, type_parameter_pack, user_type] + function_modifier: + function_type: + $children?: [throws, throws_clause] + name: [array_type, dictionary_type, existential_type, function_type, metatype, opaque_type, optional_type, protocol_composition_type, suppressed_constraint, tuple_type, type_pack_expansion, type_parameter_pack, user_type] + params: [array_type, dictionary_type, existential_type, function_type, metatype, opaque_type, optional_type, protocol_composition_type, suppressed_constraint, tuple_type, type_pack_expansion, type_parameter_pack, user_type] + return_type+: [array_type, dictionary_type, existential_type, function_type, metatype, opaque_type, optional_type, protocol_composition_type, suppressed_constraint, tuple_type, type_modifiers, type_pack_expansion, type_parameter_pack, user_type] + getter_specifier: + $children*: [mutation_modifier, throws, throws_clause] + guard_statement: + $children+: [else, statements] + bound_identifier*: simple_identifier + condition+: ["!=", "!==", "%", "%=", "&", "(", ")", "*", "*=", "+", "++", "+=", ",", "-", "--", "-=", ".", "/", "/=", ":", "<", "<<", "<=", "=", "==", "===", ">", ">=", ">>", "?", "^", additive_expression, array_literal, array_type, "as", as_expression, assignment, "async", availability_condition, await_expression, bang, bin_literal, bitwise_operation, boolean_literal, call_expression, "case", check_expression, comparison_expression, conjunction_expression, constructor_expression, custom_operator, diagnostic, dictionary_literal, dictionary_type, directive, disjunction_expression, equality_expression, existential_type, fully_open_range, function_type, hex_literal, if_statement, infix_expression, integer_literal, "is", key_path_expression, key_path_string_expression, lambda_literal, line_string_literal, macro_invocation, metatype, multi_line_string_literal, multiplicative_expression, navigation_expression, "nil", nil_coalescing_expression, oct_literal, opaque_type, open_end_range_expression, open_start_range_expression, optional_type, pattern, playground_literal, postfix_expression, prefix_expression, protocol_composition_type, range_expression, raw_string_literal, real_literal, regex_literal, selector_expression, self_expression, simple_identifier, special_literal, super_expression, suppressed_constraint, switch_statement, ternary_expression, try_expression, tuple_expression, tuple_type, type_annotation, type_modifiers, type_pack_expansion, type_parameter_pack, user_type, value_binding_pattern, value_pack_expansion, value_parameter_pack, where_clause, wildcard_pattern, "|", "~"] + name*: [array_type, dictionary_type, existential_type, function_type, metatype, opaque_type, optional_type, protocol_composition_type, suppressed_constraint, tuple_type, type_pack_expansion, type_parameter_pack, user_type] + hex_literal: + identifier: + $children+: simple_identifier + if_statement: + $children*: [else, if_statement, statements] + bound_identifier*: simple_identifier + condition+: ["!=", "!==", "%", "%=", "&", "(", ")", "*", "*=", "+", "++", "+=", ",", "-", "--", "-=", ".", "/", "/=", ":", "<", "<<", "<=", "=", "==", "===", ">", ">=", ">>", "?", "^", additive_expression, array_literal, array_type, "as", as_expression, assignment, "async", availability_condition, await_expression, bang, bin_literal, bitwise_operation, boolean_literal, call_expression, "case", check_expression, comparison_expression, conjunction_expression, constructor_expression, custom_operator, diagnostic, dictionary_literal, dictionary_type, directive, disjunction_expression, equality_expression, existential_type, fully_open_range, function_type, hex_literal, if_statement, infix_expression, integer_literal, "is", key_path_expression, key_path_string_expression, lambda_literal, line_string_literal, macro_invocation, metatype, multi_line_string_literal, multiplicative_expression, navigation_expression, "nil", nil_coalescing_expression, oct_literal, opaque_type, open_end_range_expression, open_start_range_expression, optional_type, pattern, playground_literal, postfix_expression, prefix_expression, protocol_composition_type, range_expression, raw_string_literal, real_literal, regex_literal, selector_expression, self_expression, simple_identifier, special_literal, super_expression, suppressed_constraint, switch_statement, ternary_expression, try_expression, tuple_expression, tuple_type, type_annotation, type_modifiers, type_pack_expansion, type_parameter_pack, user_type, value_binding_pattern, value_pack_expansion, value_parameter_pack, where_clause, wildcard_pattern, "|", "~"] + name*: [array_type, dictionary_type, existential_type, function_type, metatype, opaque_type, optional_type, protocol_composition_type, suppressed_constraint, tuple_type, type_pack_expansion, type_parameter_pack, user_type] + import_declaration: + $children+: [identifier, modifiers] + infix_expression: + lhs+: ["!=", "!==", "%", "%=", "&", "*", "*=", "+", "++", "+=", "-", "--", "-=", "/", "/=", "<", "<<", "<=", "=", "==", "===", ">", ">=", ">>", "?", "^", additive_expression, array_literal, as_expression, assignment, await_expression, bang, bin_literal, bitwise_operation, boolean_literal, call_expression, check_expression, comparison_expression, conjunction_expression, constructor_expression, custom_operator, diagnostic, dictionary_literal, directive, disjunction_expression, equality_expression, fully_open_range, hex_literal, if_statement, infix_expression, integer_literal, key_path_expression, key_path_string_expression, lambda_literal, line_string_literal, macro_invocation, multi_line_string_literal, multiplicative_expression, navigation_expression, "nil", nil_coalescing_expression, oct_literal, open_end_range_expression, open_start_range_expression, playground_literal, postfix_expression, prefix_expression, range_expression, raw_string_literal, real_literal, regex_literal, selector_expression, self_expression, simple_identifier, special_literal, super_expression, switch_statement, ternary_expression, try_expression, tuple_expression, value_pack_expansion, value_parameter_pack, "|", "~"] + op: custom_operator + rhs+: ["!=", "!==", "%", "%=", "&", "*", "*=", "+", "++", "+=", "-", "--", "-=", "/", "/=", "<", "<<", "<=", "=", "==", "===", ">", ">=", ">>", "?", "^", additive_expression, array_literal, as_expression, assignment, await_expression, bang, bin_literal, bitwise_operation, boolean_literal, call_expression, check_expression, comparison_expression, conjunction_expression, constructor_expression, custom_operator, diagnostic, dictionary_literal, directive, disjunction_expression, equality_expression, fully_open_range, hex_literal, if_statement, infix_expression, integer_literal, key_path_expression, key_path_string_expression, lambda_literal, line_string_literal, macro_invocation, multi_line_string_literal, multiplicative_expression, navigation_expression, "nil", nil_coalescing_expression, oct_literal, open_end_range_expression, open_start_range_expression, playground_literal, postfix_expression, prefix_expression, range_expression, raw_string_literal, real_literal, regex_literal, selector_expression, self_expression, simple_identifier, special_literal, super_expression, switch_statement, ternary_expression, try_expression, tuple_expression, value_pack_expansion, value_parameter_pack, "|", "~"] + inheritance_constraint: + $children*: attribute + constrained_type+: [".", array_type, dictionary_type, existential_type, function_type, identifier, metatype, opaque_type, optional_type, protocol_composition_type, simple_identifier, suppressed_constraint, tuple_type, type_pack_expansion, type_parameter_pack, user_type] + inherits_from+: ["!", array_type, dictionary_type, existential_type, function_type, metatype, opaque_type, optional_type, protocol_composition_type, suppressed_constraint, tuple_type, type_modifiers, type_pack_expansion, type_parameter_pack, user_type] + name: [array_type, dictionary_type, existential_type, function_type, metatype, opaque_type, optional_type, protocol_composition_type, suppressed_constraint, tuple_type, type_pack_expansion, type_parameter_pack, user_type] + inheritance_modifier: + inheritance_specifier: + inherits_from: [function_type, suppressed_constraint, user_type] + init_declaration: + $children*: [attribute, bang, modifiers, parameter, throws, throws_clause, type_constraints, type_parameters] + body?: function_body + default_value*: ["!=", "!==", "%", "%=", "&", "*", "*=", "+", "++", "+=", "-", "--", "-=", "/", "/=", "<", "<<", "<=", "=", "==", "===", ">", ">=", ">>", "?", "^", additive_expression, array_literal, as_expression, assignment, await_expression, bang, bin_literal, bitwise_operation, boolean_literal, call_expression, check_expression, comparison_expression, conjunction_expression, constructor_expression, custom_operator, diagnostic, dictionary_literal, directive, disjunction_expression, equality_expression, fully_open_range, hex_literal, if_statement, infix_expression, integer_literal, key_path_expression, key_path_string_expression, lambda_literal, line_string_literal, macro_invocation, multi_line_string_literal, multiplicative_expression, navigation_expression, "nil", nil_coalescing_expression, oct_literal, open_end_range_expression, open_start_range_expression, playground_literal, postfix_expression, prefix_expression, range_expression, raw_string_literal, real_literal, regex_literal, selector_expression, self_expression, simple_identifier, special_literal, super_expression, switch_statement, ternary_expression, try_expression, tuple_expression, value_pack_expansion, value_parameter_pack, "|", "~"] + name: "init" + integer_literal: + interpolated_expression: + $children?: type_modifiers + name?: value_argument_label + reference_specifier*: value_argument_label + value*: ["!=", "!==", "%", "%=", "&", "*", "*=", "+", "++", "+=", "-", "--", "-=", "/", "/=", "<", "<<", "<=", "=", "==", "===", ">", ">=", ">>", "?", "^", additive_expression, array_literal, as_expression, assignment, await_expression, bang, bin_literal, bitwise_operation, boolean_literal, call_expression, check_expression, comparison_expression, conjunction_expression, constructor_expression, custom_operator, diagnostic, dictionary_literal, directive, disjunction_expression, equality_expression, fully_open_range, hex_literal, if_statement, infix_expression, integer_literal, key_path_expression, key_path_string_expression, lambda_literal, line_string_literal, macro_invocation, multi_line_string_literal, multiplicative_expression, navigation_expression, "nil", nil_coalescing_expression, oct_literal, open_end_range_expression, open_start_range_expression, playground_literal, postfix_expression, prefix_expression, range_expression, raw_string_literal, real_literal, regex_literal, selector_expression, self_expression, simple_identifier, special_literal, super_expression, switch_statement, ternary_expression, try_expression, tuple_expression, value_pack_expansion, value_parameter_pack, "|", "~"] + key_path_expression: + $children*: [array_type, bang, dictionary_type, simple_identifier, type_arguments, type_identifier, value_argument] + key_path_string_expression: + $children?: [additive_expression, array_literal, as_expression, assignment, await_expression, bang, bin_literal, bitwise_operation, boolean_literal, call_expression, check_expression, comparison_expression, conjunction_expression, constructor_expression, custom_operator, diagnostic, dictionary_literal, directive, disjunction_expression, equality_expression, fully_open_range, hex_literal, if_statement, infix_expression, integer_literal, key_path_expression, key_path_string_expression, lambda_literal, line_string_literal, macro_invocation, multi_line_string_literal, multiplicative_expression, navigation_expression, nil_coalescing_expression, oct_literal, open_end_range_expression, open_start_range_expression, playground_literal, postfix_expression, prefix_expression, range_expression, raw_string_literal, real_literal, regex_literal, selector_expression, self_expression, simple_identifier, special_literal, super_expression, switch_statement, ternary_expression, try_expression, tuple_expression, value_pack_expansion, value_parameter_pack] + lambda_function_type: + $children*: [lambda_function_type_parameters, throws, throws_clause] + name?: [array_type, dictionary_type, existential_type, function_type, metatype, opaque_type, optional_type, protocol_composition_type, suppressed_constraint, tuple_type, type_pack_expansion, type_parameter_pack, user_type] + return_type*: ["!", array_type, dictionary_type, existential_type, function_type, metatype, opaque_type, optional_type, protocol_composition_type, suppressed_constraint, tuple_type, type_modifiers, type_pack_expansion, type_parameter_pack, user_type] + lambda_function_type_parameters: + $children+: lambda_parameter + lambda_literal: + $children*: [attribute, statements] + captures?: capture_list + type?: lambda_function_type + lambda_parameter: + $children?: [parameter_modifiers, self_expression] + external_name?: simple_identifier + name*: [array_type, dictionary_type, existential_type, function_type, metatype, opaque_type, optional_type, protocol_composition_type, simple_identifier, suppressed_constraint, tuple_type, type_pack_expansion, type_parameter_pack, user_type] + type*: ["!", array_type, dictionary_type, existential_type, function_type, metatype, opaque_type, optional_type, protocol_composition_type, suppressed_constraint, tuple_type, type_modifiers, type_pack_expansion, type_parameter_pack, user_type] + line_str_text: + line_string_literal: + interpolation*: interpolated_expression + text*: [line_str_text, str_escaped_char] + macro_declaration: + $children+: [array_type, attribute, dictionary_type, existential_type, function_type, metatype, modifiers, opaque_type, optional_type, parameter, protocol_composition_type, simple_identifier, suppressed_constraint, tuple_type, type_constraints, type_pack_expansion, type_parameter_pack, type_parameters, user_type] + default_value*: ["!=", "!==", "%", "%=", "&", "*", "*=", "+", "++", "+=", "-", "--", "-=", "/", "/=", "<", "<<", "<=", "=", "==", "===", ">", ">=", ">>", "?", "^", additive_expression, array_literal, as_expression, assignment, await_expression, bang, bin_literal, bitwise_operation, boolean_literal, call_expression, check_expression, comparison_expression, conjunction_expression, constructor_expression, custom_operator, diagnostic, dictionary_literal, directive, disjunction_expression, equality_expression, fully_open_range, hex_literal, if_statement, infix_expression, integer_literal, key_path_expression, key_path_string_expression, lambda_literal, line_string_literal, macro_invocation, multi_line_string_literal, multiplicative_expression, navigation_expression, "nil", nil_coalescing_expression, oct_literal, open_end_range_expression, open_start_range_expression, playground_literal, postfix_expression, prefix_expression, range_expression, raw_string_literal, real_literal, regex_literal, selector_expression, self_expression, simple_identifier, special_literal, super_expression, switch_statement, ternary_expression, try_expression, tuple_expression, value_pack_expansion, value_parameter_pack, "|", "~"] + definition?: macro_definition + macro_definition: + body+: ["!=", "!==", "%", "%=", "&", "*", "*=", "+", "++", "+=", "-", "--", "-=", "/", "/=", "<", "<<", "<=", "=", "==", "===", ">", ">=", ">>", "?", "^", additive_expression, array_literal, as_expression, assignment, await_expression, bang, bin_literal, bitwise_operation, boolean_literal, call_expression, check_expression, comparison_expression, conjunction_expression, constructor_expression, custom_operator, diagnostic, dictionary_literal, directive, disjunction_expression, equality_expression, external_macro_definition, fully_open_range, hex_literal, if_statement, infix_expression, integer_literal, key_path_expression, key_path_string_expression, lambda_literal, line_string_literal, macro_invocation, multi_line_string_literal, multiplicative_expression, navigation_expression, "nil", nil_coalescing_expression, oct_literal, open_end_range_expression, open_start_range_expression, playground_literal, postfix_expression, prefix_expression, range_expression, raw_string_literal, real_literal, regex_literal, selector_expression, self_expression, simple_identifier, special_literal, super_expression, switch_statement, ternary_expression, try_expression, tuple_expression, value_pack_expansion, value_parameter_pack, "|", "~"] + macro_invocation: + $children+: [call_suffix, simple_identifier, type_parameters] + member_modifier: + metatype: + $children: [array_type, dictionary_type, existential_type, function_type, metatype, opaque_type, optional_type, protocol_composition_type, suppressed_constraint, tuple_type, type_pack_expansion, type_parameter_pack, user_type] + modifiers: + $children+: [attribute, function_modifier, inheritance_modifier, member_modifier, mutation_modifier, ownership_modifier, parameter_modifier, property_behavior_modifier, property_modifier, visibility_modifier] + modify_specifier: + $children?: mutation_modifier + multi_line_str_text: + multi_line_string_literal: + interpolation*: interpolated_expression + text*: ["\"", multi_line_str_text, str_escaped_char] + multiline_comment: + multiplicative_expression: + lhs+: ["!=", "!==", "%", "%=", "&", "*", "*=", "+", "++", "+=", "-", "--", "-=", "/", "/=", "<", "<<", "<=", "=", "==", "===", ">", ">=", ">>", "?", "^", additive_expression, array_literal, as_expression, assignment, await_expression, bang, bin_literal, bitwise_operation, boolean_literal, call_expression, check_expression, comparison_expression, conjunction_expression, constructor_expression, custom_operator, diagnostic, dictionary_literal, directive, disjunction_expression, equality_expression, fully_open_range, hex_literal, if_statement, infix_expression, integer_literal, key_path_expression, key_path_string_expression, lambda_literal, line_string_literal, macro_invocation, multi_line_string_literal, multiplicative_expression, navigation_expression, "nil", nil_coalescing_expression, oct_literal, open_end_range_expression, open_start_range_expression, playground_literal, postfix_expression, prefix_expression, range_expression, raw_string_literal, real_literal, regex_literal, selector_expression, self_expression, simple_identifier, special_literal, super_expression, switch_statement, ternary_expression, try_expression, tuple_expression, value_pack_expansion, value_parameter_pack, "|", "~"] + op: ["%", "*", "/"] + rhs+: ["!=", "!==", "%", "%=", "&", "*", "*=", "+", "++", "+=", "-", "--", "-=", "/", "/=", "<", "<<", "<=", "=", "==", "===", ">", ">=", ">>", "?", "^", additive_expression, array_literal, as_expression, assignment, await_expression, bang, bin_literal, bitwise_operation, boolean_literal, call_expression, check_expression, comparison_expression, conjunction_expression, constructor_expression, custom_operator, diagnostic, dictionary_literal, directive, disjunction_expression, equality_expression, fully_open_range, hex_literal, if_statement, infix_expression, integer_literal, key_path_expression, key_path_string_expression, lambda_literal, line_string_literal, macro_invocation, multi_line_string_literal, multiplicative_expression, navigation_expression, "nil", nil_coalescing_expression, oct_literal, open_end_range_expression, open_start_range_expression, playground_literal, postfix_expression, prefix_expression, range_expression, raw_string_literal, real_literal, regex_literal, selector_expression, self_expression, simple_identifier, special_literal, super_expression, switch_statement, ternary_expression, try_expression, tuple_expression, value_pack_expansion, value_parameter_pack, "|", "~"] + mutation_modifier: + navigation_expression: + element?: [dictionary_type, existential_type, opaque_type] + suffix: navigation_suffix + target+: ["!=", "!==", "%", "%=", "&", "(", ")", "*", "*=", "+", "++", "+=", "-", "--", "-=", "/", "/=", "<", "<<", "<=", "=", "==", "===", ">", ">=", ">>", "?", "^", additive_expression, array_literal, array_type, as_expression, assignment, await_expression, bang, bin_literal, bitwise_operation, boolean_literal, call_expression, check_expression, comparison_expression, conjunction_expression, constructor_expression, custom_operator, diagnostic, dictionary_literal, dictionary_type, directive, disjunction_expression, equality_expression, existential_type, fully_open_range, hex_literal, if_statement, infix_expression, integer_literal, key_path_expression, key_path_string_expression, lambda_literal, line_string_literal, macro_invocation, multi_line_string_literal, multiplicative_expression, navigation_expression, "nil", nil_coalescing_expression, oct_literal, opaque_type, open_end_range_expression, open_start_range_expression, playground_literal, postfix_expression, prefix_expression, range_expression, raw_string_literal, real_literal, regex_literal, selector_expression, self_expression, simple_identifier, special_literal, super_expression, switch_statement, ternary_expression, try_expression, tuple_expression, user_type, value_pack_expansion, value_parameter_pack, "|", "~"] + navigation_suffix: + suffix: [integer_literal, simple_identifier] + nil_coalescing_expression: + if_nil+: ["!=", "!==", "%", "%=", "&", "*", "*=", "+", "++", "+=", "-", "--", "-=", "/", "/=", "<", "<<", "<=", "=", "==", "===", ">", ">=", ">>", "?", "^", additive_expression, array_literal, as_expression, assignment, await_expression, bang, bin_literal, bitwise_operation, boolean_literal, call_expression, check_expression, comparison_expression, conjunction_expression, constructor_expression, custom_operator, diagnostic, dictionary_literal, directive, disjunction_expression, equality_expression, fully_open_range, hex_literal, if_statement, infix_expression, integer_literal, key_path_expression, key_path_string_expression, lambda_literal, line_string_literal, macro_invocation, multi_line_string_literal, multiplicative_expression, navigation_expression, "nil", nil_coalescing_expression, oct_literal, open_end_range_expression, open_start_range_expression, playground_literal, postfix_expression, prefix_expression, range_expression, raw_string_literal, real_literal, regex_literal, selector_expression, self_expression, simple_identifier, special_literal, super_expression, switch_statement, ternary_expression, try_expression, tuple_expression, value_pack_expansion, value_parameter_pack, "|", "~"] + value+: ["!=", "!==", "%", "%=", "&", "*", "*=", "+", "++", "+=", "-", "--", "-=", "/", "/=", "<", "<<", "<=", "=", "==", "===", ">", ">=", ">>", "?", "^", additive_expression, array_literal, as_expression, assignment, await_expression, bang, bin_literal, bitwise_operation, boolean_literal, call_expression, check_expression, comparison_expression, conjunction_expression, constructor_expression, custom_operator, diagnostic, dictionary_literal, directive, disjunction_expression, equality_expression, fully_open_range, hex_literal, if_statement, infix_expression, integer_literal, key_path_expression, key_path_string_expression, lambda_literal, line_string_literal, macro_invocation, multi_line_string_literal, multiplicative_expression, navigation_expression, "nil", nil_coalescing_expression, oct_literal, open_end_range_expression, open_start_range_expression, playground_literal, postfix_expression, prefix_expression, range_expression, raw_string_literal, real_literal, regex_literal, selector_expression, self_expression, simple_identifier, special_literal, super_expression, switch_statement, ternary_expression, try_expression, tuple_expression, value_pack_expansion, value_parameter_pack, "|", "~"] + oct_literal: + opaque_type: + $children: [array_type, dictionary_type, existential_type, function_type, metatype, opaque_type, optional_type, protocol_composition_type, suppressed_constraint, tuple_type, type_pack_expansion, type_parameter_pack, user_type] + open_end_range_expression: + start+: ["!=", "!==", "%", "%=", "&", "*", "*=", "+", "++", "+=", "-", "--", "-=", "/", "/=", "<", "<<", "<=", "=", "==", "===", ">", ">=", ">>", "?", "^", additive_expression, array_literal, as_expression, assignment, await_expression, bang, bin_literal, bitwise_operation, boolean_literal, call_expression, check_expression, comparison_expression, conjunction_expression, constructor_expression, custom_operator, diagnostic, dictionary_literal, directive, disjunction_expression, equality_expression, fully_open_range, hex_literal, if_statement, infix_expression, integer_literal, key_path_expression, key_path_string_expression, lambda_literal, line_string_literal, macro_invocation, multi_line_string_literal, multiplicative_expression, navigation_expression, "nil", nil_coalescing_expression, oct_literal, open_end_range_expression, open_start_range_expression, playground_literal, postfix_expression, prefix_expression, range_expression, raw_string_literal, real_literal, regex_literal, selector_expression, self_expression, simple_identifier, special_literal, super_expression, switch_statement, ternary_expression, try_expression, tuple_expression, value_pack_expansion, value_parameter_pack, "|", "~"] + open_start_range_expression: + end+: ["!=", "!==", "%", "%=", "&", "*", "*=", "+", "++", "+=", "-", "--", "-=", "/", "/=", "<", "<<", "<=", "=", "==", "===", ">", ">=", ">>", "?", "^", additive_expression, array_literal, as_expression, assignment, await_expression, bang, bin_literal, bitwise_operation, boolean_literal, call_expression, check_expression, comparison_expression, conjunction_expression, constructor_expression, custom_operator, diagnostic, dictionary_literal, directive, disjunction_expression, equality_expression, fully_open_range, hex_literal, if_statement, infix_expression, integer_literal, key_path_expression, key_path_string_expression, lambda_literal, line_string_literal, macro_invocation, multi_line_string_literal, multiplicative_expression, navigation_expression, "nil", nil_coalescing_expression, oct_literal, open_end_range_expression, open_start_range_expression, playground_literal, postfix_expression, prefix_expression, range_expression, raw_string_literal, real_literal, regex_literal, selector_expression, self_expression, simple_identifier, special_literal, super_expression, switch_statement, ternary_expression, try_expression, tuple_expression, value_pack_expansion, value_parameter_pack, "|", "~"] + operator_declaration: + $children*: [bang, custom_operator, deprecated_operator_declaration_body, simple_identifier] + optional_type: + wrapped: [array_type, dictionary_type, tuple_type, user_type] + ownership_modifier: + parameter: + $children?: parameter_modifiers + external_name?: simple_identifier + name+: [array_type, dictionary_type, existential_type, function_type, metatype, opaque_type, optional_type, protocol_composition_type, simple_identifier, suppressed_constraint, tuple_type, type_pack_expansion, type_parameter_pack, user_type] + type+: ["!", array_type, dictionary_type, existential_type, function_type, metatype, opaque_type, optional_type, protocol_composition_type, suppressed_constraint, tuple_type, type_modifiers, type_pack_expansion, type_parameter_pack, user_type] + parameter_modifier: + parameter_modifiers: + $children+: parameter_modifier + pattern: + $children*: [additive_expression, array_literal, as_expression, assignment, await_expression, bang, bin_literal, bitwise_operation, boolean_literal, call_expression, check_expression, comparison_expression, conjunction_expression, constructor_expression, custom_operator, diagnostic, dictionary_literal, directive, disjunction_expression, equality_expression, fully_open_range, hex_literal, if_statement, infix_expression, integer_literal, key_path_expression, key_path_string_expression, lambda_literal, line_string_literal, macro_invocation, multi_line_string_literal, multiplicative_expression, navigation_expression, nil_coalescing_expression, oct_literal, open_end_range_expression, open_start_range_expression, pattern, playground_literal, postfix_expression, prefix_expression, range_expression, raw_string_literal, real_literal, regex_literal, selector_expression, self_expression, simple_identifier, special_literal, super_expression, switch_statement, ternary_expression, try_expression, tuple_expression, type_modifiers, user_type, value_binding_pattern, value_pack_expansion, value_parameter_pack, wildcard_pattern] + bound_identifier?: simple_identifier + name?: [array_type, dictionary_type, existential_type, function_type, metatype, opaque_type, optional_type, protocol_composition_type, suppressed_constraint, tuple_type, type_pack_expansion, type_parameter_pack, user_type] + playground_literal: + $children+: [additive_expression, array_literal, as_expression, assignment, await_expression, bang, bin_literal, bitwise_operation, boolean_literal, call_expression, check_expression, comparison_expression, conjunction_expression, constructor_expression, custom_operator, diagnostic, dictionary_literal, directive, disjunction_expression, equality_expression, fully_open_range, hex_literal, if_statement, infix_expression, integer_literal, key_path_expression, key_path_string_expression, lambda_literal, line_string_literal, macro_invocation, multi_line_string_literal, multiplicative_expression, navigation_expression, nil_coalescing_expression, oct_literal, open_end_range_expression, open_start_range_expression, playground_literal, postfix_expression, prefix_expression, range_expression, raw_string_literal, real_literal, regex_literal, selector_expression, self_expression, simple_identifier, special_literal, super_expression, switch_statement, ternary_expression, try_expression, tuple_expression, value_pack_expansion, value_parameter_pack] + postfix_expression: + operation: ["++", "--", bang] + target+: ["!=", "!==", "%", "%=", "&", "*", "*=", "+", "++", "+=", "-", "--", "-=", "/", "/=", "<", "<<", "<=", "=", "==", "===", ">", ">=", ">>", "?", "^", additive_expression, array_literal, as_expression, assignment, await_expression, bang, bin_literal, bitwise_operation, boolean_literal, call_expression, check_expression, comparison_expression, conjunction_expression, constructor_expression, custom_operator, diagnostic, dictionary_literal, directive, disjunction_expression, equality_expression, fully_open_range, hex_literal, if_statement, infix_expression, integer_literal, key_path_expression, key_path_string_expression, lambda_literal, line_string_literal, macro_invocation, multi_line_string_literal, multiplicative_expression, navigation_expression, "nil", nil_coalescing_expression, oct_literal, open_end_range_expression, open_start_range_expression, playground_literal, postfix_expression, prefix_expression, range_expression, raw_string_literal, real_literal, regex_literal, selector_expression, self_expression, simple_identifier, special_literal, super_expression, switch_statement, ternary_expression, try_expression, tuple_expression, value_pack_expansion, value_parameter_pack, "|", "~"] + precedence_group_attribute: + $children+: [boolean_literal, simple_identifier] + precedence_group_attributes: + $children+: precedence_group_attribute + precedence_group_declaration: + $children+: [precedence_group_attributes, simple_identifier] + prefix_expression: + operation: ["&", "+", "++", "-", "--", ".", bang, custom_operator, "~"] + target+: ["!=", "!==", "%", "%=", "&", "*", "*=", "+", "++", "+=", "-", "--", "-=", "/", "/=", "<", "<<", "<=", "=", "==", "===", ">", ">=", ">>", "?", "^", _expression, additive_expression, array_literal, as_expression, assignment, await_expression, bang, bin_literal, bitwise_operation, boolean_literal, call_expression, check_expression, comparison_expression, conjunction_expression, constructor_expression, custom_operator, diagnostic, dictionary_literal, directive, disjunction_expression, equality_expression, fully_open_range, hex_literal, if_statement, infix_expression, integer_literal, key_path_expression, key_path_string_expression, lambda_literal, line_string_literal, macro_invocation, multi_line_string_literal, multiplicative_expression, navigation_expression, "nil", nil_coalescing_expression, oct_literal, open_end_range_expression, open_start_range_expression, playground_literal, postfix_expression, prefix_expression, range_expression, raw_string_literal, real_literal, regex_literal, selector_expression, self_expression, simple_identifier, special_literal, super_expression, switch_statement, ternary_expression, try_expression, tuple_expression, value_pack_expansion, value_parameter_pack, "|", "~"] + property_behavior_modifier: + property_declaration: + $children*: [attribute, inheritance_modifier, modifiers, ownership_modifier, property_behavior_modifier, type_annotation, type_constraints, value_binding_pattern, willset_didset_block] + computed_value*: computed_property + name+: pattern + value*: ["!=", "!==", "%", "%=", "&", "*", "*=", "+", "++", "+=", "-", "--", "-=", "/", "/=", "<", "<<", "<=", "=", "==", "===", ">", ">=", ">>", "?", "^", additive_expression, array_literal, as_expression, assignment, await_expression, bang, bin_literal, bitwise_operation, boolean_literal, call_expression, check_expression, comparison_expression, conjunction_expression, constructor_expression, custom_operator, diagnostic, dictionary_literal, directive, disjunction_expression, equality_expression, fully_open_range, hex_literal, if_statement, infix_expression, integer_literal, key_path_expression, key_path_string_expression, lambda_literal, line_string_literal, macro_invocation, multi_line_string_literal, multiplicative_expression, navigation_expression, "nil", nil_coalescing_expression, oct_literal, open_end_range_expression, open_start_range_expression, playground_literal, postfix_expression, prefix_expression, range_expression, raw_string_literal, real_literal, regex_literal, selector_expression, self_expression, simple_identifier, special_literal, super_expression, switch_statement, ternary_expression, try_expression, tuple_expression, value_pack_expansion, value_parameter_pack, "|", "~"] + property_modifier: + protocol_body: + $children*: [associatedtype_declaration, deinit_declaration, init_declaration, protocol_function_declaration, protocol_property_declaration, subscript_declaration, typealias_declaration] + body*: protocol_function_declaration + protocol_composition_type: + $children+: [array_type, dictionary_type, existential_type, function_type, metatype, opaque_type, optional_type, protocol_composition_type, suppressed_constraint, tuple_type, type_pack_expansion, type_parameter_pack, user_type] + protocol_declaration: + $children*: [attribute, inheritance_specifier, modifiers, type_constraints, type_parameters] + body: protocol_body + declaration_kind: "protocol" + name: type_identifier + protocol_function_declaration: + $children*: [attribute, modifiers, parameter, statements, throws, throws_clause, type_constraints, type_parameters] + default_value*: ["!=", "!==", "%", "%=", "&", "*", "*=", "+", "++", "+=", "-", "--", "-=", "/", "/=", "<", "<<", "<=", "=", "==", "===", ">", ">=", ">>", "?", "^", additive_expression, array_literal, as_expression, assignment, await_expression, bang, bin_literal, bitwise_operation, boolean_literal, call_expression, check_expression, comparison_expression, conjunction_expression, constructor_expression, custom_operator, diagnostic, dictionary_literal, directive, disjunction_expression, equality_expression, fully_open_range, hex_literal, if_statement, infix_expression, integer_literal, key_path_expression, key_path_string_expression, lambda_literal, line_string_literal, macro_invocation, multi_line_string_literal, multiplicative_expression, navigation_expression, "nil", nil_coalescing_expression, oct_literal, open_end_range_expression, open_start_range_expression, playground_literal, postfix_expression, prefix_expression, range_expression, raw_string_literal, real_literal, regex_literal, selector_expression, self_expression, simple_identifier, special_literal, super_expression, switch_statement, ternary_expression, try_expression, tuple_expression, value_pack_expansion, value_parameter_pack, "|", "~"] + name*: ["!=", "!==", "%", "%=", "&", "*", "*=", "+", "++", "+=", "-", "--", "-=", "/", "/=", "<", "<<", "<=", "=", "==", "===", ">", ">=", ">>", "^", array_type, bang, custom_operator, dictionary_type, existential_type, function_type, metatype, opaque_type, optional_type, protocol_composition_type, simple_identifier, suppressed_constraint, tuple_type, type_pack_expansion, type_parameter_pack, user_type, "|", "~"] + return_type*: ["!", array_type, dictionary_type, existential_type, function_type, metatype, opaque_type, optional_type, protocol_composition_type, suppressed_constraint, tuple_type, type_modifiers, type_pack_expansion, type_parameter_pack, user_type] + protocol_property_declaration: + $children+: [modifiers, protocol_property_requirements, type_annotation, type_constraints] + name: pattern + protocol_property_requirements: + $children*: [getter_specifier, setter_specifier] + range_expression: + end+: ["!=", "!==", "%", "%=", "&", "*", "*=", "+", "++", "+=", "-", "--", "-=", "/", "/=", "<", "<<", "<=", "=", "==", "===", ">", ">=", ">>", "?", "^", additive_expression, array_literal, as_expression, assignment, await_expression, bang, bin_literal, bitwise_operation, boolean_literal, call_expression, check_expression, comparison_expression, conjunction_expression, constructor_expression, custom_operator, diagnostic, dictionary_literal, directive, disjunction_expression, equality_expression, fully_open_range, hex_literal, if_statement, infix_expression, integer_literal, key_path_expression, key_path_string_expression, lambda_literal, line_string_literal, macro_invocation, multi_line_string_literal, multiplicative_expression, navigation_expression, "nil", nil_coalescing_expression, oct_literal, open_end_range_expression, open_start_range_expression, playground_literal, postfix_expression, prefix_expression, range_expression, raw_string_literal, real_literal, regex_literal, selector_expression, self_expression, simple_identifier, special_literal, super_expression, switch_statement, ternary_expression, try_expression, tuple_expression, value_pack_expansion, value_parameter_pack, "|", "~"] + op: ["...", "..<"] + start+: ["!=", "!==", "%", "%=", "&", "*", "*=", "+", "++", "+=", "-", "--", "-=", "/", "/=", "<", "<<", "<=", "=", "==", "===", ">", ">=", ">>", "?", "^", additive_expression, array_literal, as_expression, assignment, await_expression, bang, bin_literal, bitwise_operation, boolean_literal, call_expression, check_expression, comparison_expression, conjunction_expression, constructor_expression, custom_operator, diagnostic, dictionary_literal, directive, disjunction_expression, equality_expression, fully_open_range, hex_literal, if_statement, infix_expression, integer_literal, key_path_expression, key_path_string_expression, lambda_literal, line_string_literal, macro_invocation, multi_line_string_literal, multiplicative_expression, navigation_expression, "nil", nil_coalescing_expression, oct_literal, open_end_range_expression, open_start_range_expression, playground_literal, postfix_expression, prefix_expression, range_expression, raw_string_literal, real_literal, regex_literal, selector_expression, self_expression, simple_identifier, special_literal, super_expression, switch_statement, ternary_expression, try_expression, tuple_expression, value_pack_expansion, value_parameter_pack, "|", "~"] + raw_str_continuing_indicator: + raw_str_end_part: + raw_str_interpolation: + $children: raw_str_interpolation_start + interpolation+: interpolated_expression + raw_str_interpolation_start: + raw_str_part: + raw_string_literal: + $children*: raw_str_continuing_indicator + interpolation*: raw_str_interpolation + text+: [raw_str_end_part, raw_str_part] + real_literal: + regex_literal: + repeat_while_statement: + $children?: statements + bound_identifier*: simple_identifier + condition+: ["!=", "!==", "%", "%=", "&", "(", ")", "*", "*=", "+", "++", "+=", ",", "-", "--", "-=", ".", "/", "/=", ":", "<", "<<", "<=", "=", "==", "===", ">", ">=", ">>", "?", "^", additive_expression, array_literal, array_type, "as", as_expression, assignment, "async", availability_condition, await_expression, bang, bin_literal, bitwise_operation, boolean_literal, call_expression, "case", check_expression, comparison_expression, conjunction_expression, constructor_expression, custom_operator, diagnostic, dictionary_literal, dictionary_type, directive, disjunction_expression, equality_expression, existential_type, fully_open_range, function_type, hex_literal, if_statement, infix_expression, integer_literal, "is", key_path_expression, key_path_string_expression, lambda_literal, line_string_literal, macro_invocation, metatype, multi_line_string_literal, multiplicative_expression, navigation_expression, "nil", nil_coalescing_expression, oct_literal, opaque_type, open_end_range_expression, open_start_range_expression, optional_type, pattern, playground_literal, postfix_expression, prefix_expression, protocol_composition_type, range_expression, raw_string_literal, real_literal, regex_literal, selector_expression, self_expression, simple_identifier, special_literal, super_expression, suppressed_constraint, switch_statement, ternary_expression, try_expression, tuple_expression, tuple_type, type_annotation, type_modifiers, type_pack_expansion, type_parameter_pack, user_type, value_binding_pattern, value_pack_expansion, value_parameter_pack, where_clause, wildcard_pattern, "|", "~"] + name*: [array_type, dictionary_type, existential_type, function_type, metatype, opaque_type, optional_type, protocol_composition_type, suppressed_constraint, tuple_type, type_pack_expansion, type_parameter_pack, user_type] + selector_expression: + $children?: [additive_expression, array_literal, as_expression, assignment, await_expression, bang, bin_literal, bitwise_operation, boolean_literal, call_expression, check_expression, comparison_expression, conjunction_expression, constructor_expression, custom_operator, diagnostic, dictionary_literal, directive, disjunction_expression, equality_expression, fully_open_range, hex_literal, if_statement, infix_expression, integer_literal, key_path_expression, key_path_string_expression, lambda_literal, line_string_literal, macro_invocation, multi_line_string_literal, multiplicative_expression, navigation_expression, nil_coalescing_expression, oct_literal, open_end_range_expression, open_start_range_expression, playground_literal, postfix_expression, prefix_expression, range_expression, raw_string_literal, real_literal, regex_literal, selector_expression, self_expression, simple_identifier, special_literal, super_expression, switch_statement, ternary_expression, try_expression, tuple_expression, value_pack_expansion, value_parameter_pack] + self_expression: + setter_specifier: + $children?: mutation_modifier + shebang_line: + simple_identifier: + source_file: + $children*: [additive_expression, array_literal, as_expression, assignment, associatedtype_declaration, await_expression, bang, bin_literal, bitwise_operation, boolean_literal, call_expression, check_expression, class_declaration, comparison_expression, conjunction_expression, constructor_expression, custom_operator, diagnostic, dictionary_literal, directive, disjunction_expression, do_statement, equality_expression, for_statement, fully_open_range, function_declaration, guard_statement, hex_literal, if_statement, import_declaration, infix_expression, init_declaration, integer_literal, key_path_expression, key_path_string_expression, lambda_literal, line_string_literal, macro_declaration, macro_invocation, multi_line_string_literal, multiplicative_expression, navigation_expression, nil_coalescing_expression, oct_literal, open_end_range_expression, open_start_range_expression, operator_declaration, playground_literal, postfix_expression, precedence_group_declaration, prefix_expression, property_declaration, protocol_declaration, range_expression, raw_string_literal, real_literal, regex_literal, repeat_while_statement, selector_expression, self_expression, shebang_line, simple_identifier, special_literal, statement_label, super_expression, switch_statement, ternary_expression, throw_keyword, try_expression, tuple_expression, typealias_declaration, value_pack_expansion, value_parameter_pack, while_statement] + special_literal: + statement_label: + statements: + $children*: [additive_expression, array_literal, as_expression, assignment, await_expression, bang, bin_literal, bitwise_operation, boolean_literal, call_expression, check_expression, class_declaration, comparison_expression, conjunction_expression, constructor_expression, control_transfer_statement, custom_operator, diagnostic, dictionary_literal, directive, disjunction_expression, do_statement, equality_expression, for_statement, fully_open_range, function_declaration, guard_statement, hex_literal, if_statement, infix_expression, integer_literal, key_path_expression, key_path_string_expression, lambda_literal, line_string_literal, macro_invocation, multi_line_string_literal, multiplicative_expression, navigation_expression, nil_coalescing_expression, oct_literal, open_end_range_expression, open_start_range_expression, playground_literal, postfix_expression, prefix_expression, property_declaration, range_expression, raw_string_literal, real_literal, regex_literal, repeat_while_statement, selector_expression, self_expression, simple_identifier, special_literal, statement_label, super_expression, switch_statement, ternary_expression, try_expression, tuple_expression, typealias_declaration, value_pack_expansion, value_parameter_pack, while_statement] + str_escaped_char: + subscript_declaration: + $children+: [attribute, computed_property, modifiers, parameter, type_constraints, type_parameters] + default_value*: ["!=", "!==", "%", "%=", "&", "*", "*=", "+", "++", "+=", "-", "--", "-=", "/", "/=", "<", "<<", "<=", "=", "==", "===", ">", ">=", ">>", "?", "^", additive_expression, array_literal, as_expression, assignment, await_expression, bang, bin_literal, bitwise_operation, boolean_literal, call_expression, check_expression, comparison_expression, conjunction_expression, constructor_expression, custom_operator, diagnostic, dictionary_literal, directive, disjunction_expression, equality_expression, fully_open_range, hex_literal, if_statement, infix_expression, integer_literal, key_path_expression, key_path_string_expression, lambda_literal, line_string_literal, macro_invocation, multi_line_string_literal, multiplicative_expression, navigation_expression, "nil", nil_coalescing_expression, oct_literal, open_end_range_expression, open_start_range_expression, playground_literal, postfix_expression, prefix_expression, range_expression, raw_string_literal, real_literal, regex_literal, selector_expression, self_expression, simple_identifier, special_literal, super_expression, switch_statement, ternary_expression, try_expression, tuple_expression, value_pack_expansion, value_parameter_pack, "|", "~"] + name?: [array_type, dictionary_type, existential_type, function_type, metatype, opaque_type, optional_type, protocol_composition_type, suppressed_constraint, tuple_type, type_pack_expansion, type_parameter_pack, user_type] + return_type*: ["!", array_type, dictionary_type, existential_type, function_type, metatype, opaque_type, optional_type, protocol_composition_type, suppressed_constraint, tuple_type, type_modifiers, type_pack_expansion, type_parameter_pack, user_type] + super_expression: + suppressed_constraint: + suppressed: type_identifier + switch_entry: + $children+: [additive_expression, array_literal, as_expression, assignment, await_expression, bang, bin_literal, bitwise_operation, boolean_literal, call_expression, check_expression, comparison_expression, conjunction_expression, constructor_expression, custom_operator, default_keyword, diagnostic, dictionary_literal, directive, disjunction_expression, equality_expression, fully_open_range, hex_literal, if_statement, infix_expression, integer_literal, key_path_expression, key_path_string_expression, lambda_literal, line_string_literal, macro_invocation, modifiers, multi_line_string_literal, multiplicative_expression, navigation_expression, nil_coalescing_expression, oct_literal, open_end_range_expression, open_start_range_expression, playground_literal, postfix_expression, prefix_expression, range_expression, raw_string_literal, real_literal, regex_literal, selector_expression, self_expression, simple_identifier, special_literal, statements, super_expression, switch_pattern, switch_statement, ternary_expression, try_expression, tuple_expression, value_pack_expansion, value_parameter_pack, where_keyword] + switch_pattern: + $children: pattern + switch_statement: + $children*: switch_entry + expr+: ["!=", "!==", "%", "%=", "&", "*", "*=", "+", "++", "+=", "-", "--", "-=", "/", "/=", "<", "<<", "<=", "=", "==", "===", ">", ">=", ">>", "?", "^", additive_expression, array_literal, as_expression, assignment, await_expression, bang, bin_literal, bitwise_operation, boolean_literal, call_expression, check_expression, comparison_expression, conjunction_expression, constructor_expression, custom_operator, diagnostic, dictionary_literal, directive, disjunction_expression, equality_expression, fully_open_range, hex_literal, if_statement, infix_expression, integer_literal, key_path_expression, key_path_string_expression, lambda_literal, line_string_literal, macro_invocation, multi_line_string_literal, multiplicative_expression, navigation_expression, "nil", nil_coalescing_expression, oct_literal, open_end_range_expression, open_start_range_expression, playground_literal, postfix_expression, prefix_expression, range_expression, raw_string_literal, real_literal, regex_literal, selector_expression, self_expression, simple_identifier, special_literal, super_expression, switch_statement, ternary_expression, try_expression, tuple_expression, value_pack_expansion, value_parameter_pack, "|", "~"] + ternary_expression: + condition+: ["!=", "!==", "%", "%=", "&", "*", "*=", "+", "++", "+=", "-", "--", "-=", "/", "/=", "<", "<<", "<=", "=", "==", "===", ">", ">=", ">>", "?", "^", additive_expression, array_literal, as_expression, assignment, await_expression, bang, bin_literal, bitwise_operation, boolean_literal, call_expression, check_expression, comparison_expression, conjunction_expression, constructor_expression, custom_operator, diagnostic, dictionary_literal, directive, disjunction_expression, equality_expression, fully_open_range, hex_literal, if_statement, infix_expression, integer_literal, key_path_expression, key_path_string_expression, lambda_literal, line_string_literal, macro_invocation, multi_line_string_literal, multiplicative_expression, navigation_expression, "nil", nil_coalescing_expression, oct_literal, open_end_range_expression, open_start_range_expression, playground_literal, postfix_expression, prefix_expression, range_expression, raw_string_literal, real_literal, regex_literal, selector_expression, self_expression, simple_identifier, special_literal, super_expression, switch_statement, ternary_expression, try_expression, tuple_expression, value_pack_expansion, value_parameter_pack, "|", "~"] + if_false+: ["!=", "!==", "%", "%=", "&", "*", "*=", "+", "++", "+=", "-", "--", "-=", "/", "/=", "<", "<<", "<=", "=", "==", "===", ">", ">=", ">>", "?", "^", additive_expression, array_literal, as_expression, assignment, await_expression, bang, bin_literal, bitwise_operation, boolean_literal, call_expression, check_expression, comparison_expression, conjunction_expression, constructor_expression, custom_operator, diagnostic, dictionary_literal, directive, disjunction_expression, equality_expression, fully_open_range, hex_literal, if_statement, infix_expression, integer_literal, key_path_expression, key_path_string_expression, lambda_literal, line_string_literal, macro_invocation, multi_line_string_literal, multiplicative_expression, navigation_expression, "nil", nil_coalescing_expression, oct_literal, open_end_range_expression, open_start_range_expression, playground_literal, postfix_expression, prefix_expression, range_expression, raw_string_literal, real_literal, regex_literal, selector_expression, self_expression, simple_identifier, special_literal, super_expression, switch_statement, ternary_expression, try_expression, tuple_expression, value_pack_expansion, value_parameter_pack, "|", "~"] + if_true+: ["!=", "!==", "%", "%=", "&", "*", "*=", "+", "++", "+=", "-", "--", "-=", "/", "/=", "<", "<<", "<=", "=", "==", "===", ">", ">=", ">>", "?", "^", additive_expression, array_literal, as_expression, assignment, await_expression, bang, bin_literal, bitwise_operation, boolean_literal, call_expression, check_expression, comparison_expression, conjunction_expression, constructor_expression, custom_operator, diagnostic, dictionary_literal, directive, disjunction_expression, equality_expression, fully_open_range, hex_literal, if_statement, infix_expression, integer_literal, key_path_expression, key_path_string_expression, lambda_literal, line_string_literal, macro_invocation, multi_line_string_literal, multiplicative_expression, navigation_expression, "nil", nil_coalescing_expression, oct_literal, open_end_range_expression, open_start_range_expression, playground_literal, postfix_expression, prefix_expression, range_expression, raw_string_literal, real_literal, regex_literal, selector_expression, self_expression, simple_identifier, special_literal, super_expression, switch_statement, ternary_expression, try_expression, tuple_expression, value_pack_expansion, value_parameter_pack, "|", "~"] + throw_keyword: + throws: + throws_clause: + type: [array_type, dictionary_type, existential_type, function_type, metatype, opaque_type, optional_type, protocol_composition_type, suppressed_constraint, tuple_type, type_pack_expansion, type_parameter_pack, user_type] + try_expression: + $children: try_operator + expr+: ["!=", "!==", "%", "%=", "&", "*", "*=", "+", "++", "+=", "-", "--", "-=", "/", "/=", "<", "<<", "<=", "=", "==", "===", ">", ">=", ">>", "?", "^", additive_expression, array_literal, as_expression, assignment, await_expression, bang, bin_literal, bitwise_operation, boolean_literal, call_expression, check_expression, comparison_expression, conjunction_expression, constructor_expression, custom_operator, diagnostic, dictionary_literal, directive, disjunction_expression, equality_expression, fully_open_range, hex_literal, if_statement, infix_expression, integer_literal, key_path_expression, key_path_string_expression, lambda_literal, line_string_literal, macro_invocation, multi_line_string_literal, multiplicative_expression, navigation_expression, "nil", nil_coalescing_expression, oct_literal, open_end_range_expression, open_start_range_expression, playground_literal, postfix_expression, prefix_expression, range_expression, raw_string_literal, real_literal, regex_literal, selector_expression, self_expression, simple_identifier, special_literal, super_expression, switch_statement, ternary_expression, try_expression, tuple_expression, value_pack_expansion, value_parameter_pack, "|", "~"] + try_operator: + tuple_expression: + name*: simple_identifier + value+: ["!=", "!==", "%", "%=", "&", "*", "*=", "+", "++", "+=", "-", "--", "-=", "/", "/=", "<", "<<", "<=", "=", "==", "===", ">", ">=", ">>", "?", "^", additive_expression, array_literal, as_expression, assignment, await_expression, bang, bin_literal, bitwise_operation, boolean_literal, call_expression, check_expression, comparison_expression, conjunction_expression, constructor_expression, custom_operator, diagnostic, dictionary_literal, directive, disjunction_expression, equality_expression, fully_open_range, hex_literal, if_statement, infix_expression, integer_literal, key_path_expression, key_path_string_expression, lambda_literal, line_string_literal, macro_invocation, multi_line_string_literal, multiplicative_expression, navigation_expression, "nil", nil_coalescing_expression, oct_literal, open_end_range_expression, open_start_range_expression, playground_literal, postfix_expression, prefix_expression, range_expression, raw_string_literal, real_literal, regex_literal, selector_expression, self_expression, simple_identifier, special_literal, super_expression, switch_statement, ternary_expression, try_expression, tuple_expression, value_pack_expansion, value_parameter_pack, "|", "~"] + tuple_type: + $children?: tuple_type_item + element*: tuple_type_item + tuple_type_item: + $children*: [parameter_modifiers, wildcard_pattern] + element?: [dictionary_type, existential_type, opaque_type] + name*: [array_type, dictionary_type, existential_type, function_type, metatype, opaque_type, optional_type, protocol_composition_type, simple_identifier, suppressed_constraint, tuple_type, type_pack_expansion, type_parameter_pack, user_type] + type*: [array_type, dictionary_type, existential_type, function_type, metatype, opaque_type, optional_type, protocol_composition_type, suppressed_constraint, tuple_type, type_modifiers, type_pack_expansion, type_parameter_pack, user_type] + type_annotation: + name: [array_type, dictionary_type, existential_type, function_type, metatype, opaque_type, optional_type, protocol_composition_type, suppressed_constraint, tuple_type, type_pack_expansion, type_parameter_pack, user_type] + type+: ["!", array_type, dictionary_type, existential_type, function_type, metatype, opaque_type, optional_type, protocol_composition_type, suppressed_constraint, tuple_type, type_modifiers, type_pack_expansion, type_parameter_pack, user_type] + type_arguments: + $children*: type_modifiers + name+: [array_type, dictionary_type, existential_type, function_type, metatype, opaque_type, optional_type, protocol_composition_type, suppressed_constraint, tuple_type, type_pack_expansion, type_parameter_pack, user_type] + type_constraint: + $children: [equality_constraint, inheritance_constraint] + type_constraints: + $children+: [type_constraint, where_keyword] + type_identifier: + type_modifiers: + $children+: attribute + type_pack_expansion: + $children: [array_type, dictionary_type, existential_type, function_type, metatype, opaque_type, optional_type, protocol_composition_type, suppressed_constraint, tuple_type, type_pack_expansion, type_parameter_pack, user_type] + type_parameter: + $children+: [type_identifier, type_modifiers, type_parameter_modifiers, type_parameter_pack] + name?: [array_type, dictionary_type, existential_type, function_type, metatype, opaque_type, optional_type, protocol_composition_type, suppressed_constraint, tuple_type, type_pack_expansion, type_parameter_pack, user_type] + type_parameter_modifiers: + $children+: attribute + type_parameter_pack: + $children: [array_type, dictionary_type, existential_type, function_type, metatype, opaque_type, optional_type, protocol_composition_type, suppressed_constraint, tuple_type, type_pack_expansion, type_parameter_pack, user_type] + type_parameters: + $children+: [type_constraints, type_parameter] + typealias_declaration: + $children*: [attribute, inheritance_modifier, modifiers, ownership_modifier, property_behavior_modifier, type_parameters] + name+: [array_type, dictionary_type, existential_type, function_type, metatype, opaque_type, optional_type, protocol_composition_type, suppressed_constraint, tuple_type, type_identifier, type_pack_expansion, type_parameter_pack, user_type] + value+: [array_type, dictionary_type, existential_type, function_type, metatype, opaque_type, optional_type, protocol_composition_type, suppressed_constraint, tuple_type, type_modifiers, type_pack_expansion, type_parameter_pack, user_type] + user_type: + $children+: [type_arguments, type_identifier] + value_argument: + $children?: type_modifiers + name?: value_argument_label + reference_specifier*: value_argument_label + value*: ["!=", "!==", "%", "%=", "&", "*", "*=", "+", "++", "+=", "-", "--", "-=", "/", "/=", "<", "<<", "<=", "=", "==", "===", ">", ">=", ">>", "?", "^", additive_expression, array_literal, as_expression, assignment, await_expression, bang, bin_literal, bitwise_operation, boolean_literal, call_expression, check_expression, comparison_expression, conjunction_expression, constructor_expression, custom_operator, diagnostic, dictionary_literal, directive, disjunction_expression, equality_expression, fully_open_range, hex_literal, if_statement, infix_expression, integer_literal, key_path_expression, key_path_string_expression, lambda_literal, line_string_literal, macro_invocation, multi_line_string_literal, multiplicative_expression, navigation_expression, "nil", nil_coalescing_expression, oct_literal, open_end_range_expression, open_start_range_expression, playground_literal, postfix_expression, prefix_expression, range_expression, raw_string_literal, real_literal, regex_literal, selector_expression, self_expression, simple_identifier, special_literal, super_expression, switch_statement, ternary_expression, try_expression, tuple_expression, value_pack_expansion, value_parameter_pack, "|", "~"] + value_argument_label: + $children: simple_identifier + value_arguments: + $children*: value_argument + value_binding_pattern: + mutability: ["let", "var"] + value_pack_expansion: + $children?: [additive_expression, array_literal, as_expression, assignment, await_expression, bang, bin_literal, bitwise_operation, boolean_literal, call_expression, check_expression, comparison_expression, conjunction_expression, constructor_expression, custom_operator, diagnostic, dictionary_literal, directive, disjunction_expression, equality_expression, fully_open_range, hex_literal, if_statement, infix_expression, integer_literal, key_path_expression, key_path_string_expression, lambda_literal, line_string_literal, macro_invocation, multi_line_string_literal, multiplicative_expression, navigation_expression, nil_coalescing_expression, oct_literal, open_end_range_expression, open_start_range_expression, playground_literal, postfix_expression, prefix_expression, range_expression, raw_string_literal, real_literal, regex_literal, selector_expression, self_expression, simple_identifier, special_literal, super_expression, switch_statement, ternary_expression, try_expression, tuple_expression, value_pack_expansion, value_parameter_pack] + value_parameter_pack: + $children?: [additive_expression, array_literal, as_expression, assignment, await_expression, bang, bin_literal, bitwise_operation, boolean_literal, call_expression, check_expression, comparison_expression, conjunction_expression, constructor_expression, custom_operator, diagnostic, dictionary_literal, directive, disjunction_expression, equality_expression, fully_open_range, hex_literal, if_statement, infix_expression, integer_literal, key_path_expression, key_path_string_expression, lambda_literal, line_string_literal, macro_invocation, multi_line_string_literal, multiplicative_expression, navigation_expression, nil_coalescing_expression, oct_literal, open_end_range_expression, open_start_range_expression, playground_literal, postfix_expression, prefix_expression, range_expression, raw_string_literal, real_literal, regex_literal, selector_expression, self_expression, simple_identifier, special_literal, super_expression, switch_statement, ternary_expression, try_expression, tuple_expression, value_pack_expansion, value_parameter_pack] + visibility_modifier: + where_clause: + $children+: [additive_expression, array_literal, as_expression, assignment, await_expression, bang, bin_literal, bitwise_operation, boolean_literal, call_expression, check_expression, comparison_expression, conjunction_expression, constructor_expression, custom_operator, diagnostic, dictionary_literal, directive, disjunction_expression, equality_expression, fully_open_range, hex_literal, if_statement, infix_expression, integer_literal, key_path_expression, key_path_string_expression, lambda_literal, line_string_literal, macro_invocation, multi_line_string_literal, multiplicative_expression, navigation_expression, nil_coalescing_expression, oct_literal, open_end_range_expression, open_start_range_expression, playground_literal, postfix_expression, prefix_expression, range_expression, raw_string_literal, real_literal, regex_literal, selector_expression, self_expression, simple_identifier, special_literal, super_expression, switch_statement, ternary_expression, try_expression, tuple_expression, value_pack_expansion, value_parameter_pack, where_keyword] + where_keyword: + while_statement: + $children?: statements + bound_identifier*: simple_identifier + condition+: ["!=", "!==", "%", "%=", "&", "(", ")", "*", "*=", "+", "++", "+=", ",", "-", "--", "-=", ".", "/", "/=", ":", "<", "<<", "<=", "=", "==", "===", ">", ">=", ">>", "?", "^", additive_expression, array_literal, array_type, "as", as_expression, assignment, "async", availability_condition, await_expression, bang, bin_literal, bitwise_operation, boolean_literal, call_expression, "case", check_expression, comparison_expression, conjunction_expression, constructor_expression, custom_operator, diagnostic, dictionary_literal, dictionary_type, directive, disjunction_expression, equality_expression, existential_type, fully_open_range, function_type, hex_literal, if_statement, infix_expression, integer_literal, "is", key_path_expression, key_path_string_expression, lambda_literal, line_string_literal, macro_invocation, metatype, multi_line_string_literal, multiplicative_expression, navigation_expression, "nil", nil_coalescing_expression, oct_literal, opaque_type, open_end_range_expression, open_start_range_expression, optional_type, pattern, playground_literal, postfix_expression, prefix_expression, protocol_composition_type, range_expression, raw_string_literal, real_literal, regex_literal, selector_expression, self_expression, simple_identifier, special_literal, super_expression, suppressed_constraint, switch_statement, ternary_expression, try_expression, tuple_expression, tuple_type, type_annotation, type_modifiers, type_pack_expansion, type_parameter_pack, user_type, value_binding_pattern, value_pack_expansion, value_parameter_pack, where_clause, wildcard_pattern, "|", "~"] + name*: [array_type, dictionary_type, existential_type, function_type, metatype, opaque_type, optional_type, protocol_composition_type, suppressed_constraint, tuple_type, type_pack_expansion, type_parameter_pack, user_type] + wildcard_pattern: + willset_clause: + $children*: [modifiers, simple_identifier, statements] + willset_didset_block: + $children+: [didset_clause, willset_clause] + +unnamed: + - "?" + - "!" + - "!=" + - "!==" + - "\"" + - "\"\"\"" + - "#" + - "#else" + - "#elseif" + - "#endif" + - "#if" + - "%" + - "%=" + - "&" + - "&&" + - "(" + - ")" + - "*" + - "*=" + - "+" + - "++" + - "+=" + - "," + - "-" + - "--" + - "-=" + - "->" + - "." + - "..." + - "..<" + - "/" + - "/=" + - ":" + - ";" + - "<" + - "<<" + - "<=" + - "=" + - "==" + - "===" + - ">" + - ">=" + - ">>" + - "?" + - "??" + - "@" + - "@autoclosure" + - "@escaping" + - "Protocol" + - "Type" + - "[" + - "\\" + - "\\(" + - "]" + - "^" + - "^{" + - "_modify" + - "actor" + - "any" + - "arch" + - "as" + - "as!" + - "as?" + - "associatedtype" + - "async" + - "available" + - "await" + - "borrowing" + - "break" + - "canImport" + - "case" + - "class" + - "colorLiteral" + - "column" + - "compiler" + - "consuming" + - "continue" + - "convenience" + - "deinit" + - "delegate" + - "didSet" + - "distributed" + - "do" + - "dsohandle" + - "dynamic" + - "each" + - "enum" + - "extension" + - "externalMacro" + - "fallthrough" + - "false" + - "file" + - "fileID" + - "fileLiteral" + - "filePath" + - "fileprivate" + - "final" + - "for" + - "func" + - "function" + - "get" + - "getter:" + - "guard" + - "if" + - "imageLiteral" + - "import" + - "in" + - "indirect" + - "infix" + - "init" + - "inout" + - "internal" + - "is" + - "keyPath" + - "lazy" + - "let" + - "line" + - "macro" + - "mutating" + - "nil" + - "nonisolated" + - "nonmutating" + - "open" + - "operator" + - "optional" + - "os" + - "override" + - "package" + - "param" + - "postfix" + - "precedencegroup" + - "prefix" + - "private" + - "property" + - "protocol" + - "public" + - "receiver" + - "repeat" + - "required" + - "return" + - "selector" + - "self" + - "set" + - "setparam" + - "setter:" + - "some" + - "static" + - "struct" + - "subscript" + - "super" + - "swift" + - "switch" + - "targetEnvironment" + - "true" + - "try" + - "try!" + - "try?" + - "typealias" + - "u" + - "unavailable" + - "unowned" + - "unowned(safe)" + - "unowned(unsafe)" + - "var" + - "weak" + - "while" + - "willSet" + - "yield" + - "{" + - "|" + - "||" + - "}" + - "~" diff --git a/unified/scripts/regenerate-grammar.sh b/unified/scripts/regenerate-grammar.sh new file mode 100755 index 000000000000..b7a5ce263fb8 --- /dev/null +++ b/unified/scripts/regenerate-grammar.sh @@ -0,0 +1,28 @@ +#!/bin/bash +# Regenerate the vendored tree-sitter-swift parser tables from grammar.js, +# then refresh the human-readable node-types.yml companion file. +# +# Run this after editing +# unified/extractor/tree-sitter-swift/grammar.js so that: +# * src/parser.c, src/grammar.json, src/node-types.json (and the +# src/tree_sitter/*.h headers) reflect the current grammar; and +# * node-types.yml shows the same information in a form that's +# pleasant to review in PR diffs. +# +# Requirements: tree-sitter CLI on PATH, and a working cargo toolchain. +set -euo pipefail + +cd "$(dirname "$0")/.." +SWIFT_DIR="extractor/tree-sitter-swift" + +( + cd "$SWIFT_DIR" + tree-sitter generate +) + +# Build yeast's node_types_yaml binary and use it to convert the freshly +# generated src/node-types.json into the human-readable node-types.yml. +cargo run --release --quiet -p yeast --bin node_types_yaml -- \ + --from-json "$SWIFT_DIR/src/node-types.json" > "$SWIFT_DIR/node-types.yml" + +echo "Regenerated $SWIFT_DIR/{src/parser.c,src/grammar.json,src/node-types.json,node-types.yml}" From e709650449fcc04e0b545681894fbcc4de03d086 Mon Sep 17 00:00:00 2001 From: Taus Date: Fri, 8 May 2026 14:13:06 +0000 Subject: [PATCH 236/260] unified: Rebuild generated files The astute reader will note that we seem to _lose_ some node types in the process. Apparently, these were unreachable in the grammar, and the newer version of tree-sitter removes such "dead code". --- unified/extractor/tree-sitter-swift/node-types.yml | 7 ------- 1 file changed, 7 deletions(-) diff --git a/unified/extractor/tree-sitter-swift/node-types.yml b/unified/extractor/tree-sitter-swift/node-types.yml index 6b3e19f5bf0b..9fc368de5955 100644 --- a/unified/extractor/tree-sitter-swift/node-types.yml +++ b/unified/extractor/tree-sitter-swift/node-types.yml @@ -537,7 +537,6 @@ unnamed: - "continue" - "convenience" - "deinit" - - "delegate" - "didSet" - "distributed" - "do" @@ -586,22 +585,18 @@ unnamed: - "os" - "override" - "package" - - "param" - "postfix" - "precedencegroup" - "prefix" - "private" - - "property" - "protocol" - "public" - - "receiver" - "repeat" - "required" - "return" - "selector" - "self" - "set" - - "setparam" - "setter:" - "some" - "static" @@ -613,8 +608,6 @@ unnamed: - "targetEnvironment" - "true" - "try" - - "try!" - - "try?" - "typealias" - "u" - "unavailable" From 9062bba168d2bec4c55f9e589b431bb2ba858f3b Mon Sep 17 00:00:00 2001 From: Taus Date: Fri, 8 May 2026 14:41:20 +0000 Subject: [PATCH 237/260] unified: get rid of undesirable self-recursion in _expression This caused any field containing an _expression to appear as if it could countain any number of such nodes. It also threw away the information that there was a `?` marker there. To fix it, we simply move the definition into its own named node. --- .../extractor/tree-sitter-swift/grammar.js | 4 +- .../tree-sitter-swift/node-types.yml | 144 +++++++++--------- 2 files changed, 76 insertions(+), 72 deletions(-) diff --git a/unified/extractor/tree-sitter-swift/grammar.js b/unified/extractor/tree-sitter-swift/grammar.js index 5f4e85547ad4..a72253292e2d 100644 --- a/unified/extractor/tree-sitter-swift/grammar.js +++ b/unified/extractor/tree-sitter-swift/grammar.js @@ -521,9 +521,11 @@ module.exports = grammar({ $.assignment, $.value_parameter_pack, $.value_pack_expansion, - seq($._expression, alias($._immediate_quest, "?")) + $.optional_chain_marker ) ), + optional_chain_marker: ($) => + seq($._expression, alias($._immediate_quest, "?")), // Unary expressions _unary_expression: ($) => choice( diff --git a/unified/extractor/tree-sitter-swift/node-types.yml b/unified/extractor/tree-sitter-swift/node-types.yml index 9fc368de5955..8d7f99ee205b 100644 --- a/unified/extractor/tree-sitter-swift/node-types.yml +++ b/unified/extractor/tree-sitter-swift/node-types.yml @@ -1,23 +1,23 @@ named: _expression: additive_expression: - lhs+: ["!=", "!==", "%", "%=", "&", "*", "*=", "+", "++", "+=", "-", "--", "-=", "/", "/=", "<", "<<", "<=", "=", "==", "===", ">", ">=", ">>", "?", "^", additive_expression, array_literal, as_expression, assignment, await_expression, bang, bin_literal, bitwise_operation, boolean_literal, call_expression, check_expression, comparison_expression, conjunction_expression, constructor_expression, custom_operator, diagnostic, dictionary_literal, directive, disjunction_expression, equality_expression, fully_open_range, hex_literal, if_statement, infix_expression, integer_literal, key_path_expression, key_path_string_expression, lambda_literal, line_string_literal, macro_invocation, multi_line_string_literal, multiplicative_expression, navigation_expression, "nil", nil_coalescing_expression, oct_literal, open_end_range_expression, open_start_range_expression, playground_literal, postfix_expression, prefix_expression, range_expression, raw_string_literal, real_literal, regex_literal, selector_expression, self_expression, simple_identifier, special_literal, super_expression, switch_statement, ternary_expression, try_expression, tuple_expression, value_pack_expansion, value_parameter_pack, "|", "~"] + lhs: ["!=", "!==", "%", "%=", "&", "*", "*=", "+", "++", "+=", "-", "--", "-=", "/", "/=", "<", "<<", "<=", "=", "==", "===", ">", ">=", ">>", "^", additive_expression, array_literal, as_expression, assignment, await_expression, bang, bin_literal, bitwise_operation, boolean_literal, call_expression, check_expression, comparison_expression, conjunction_expression, constructor_expression, custom_operator, diagnostic, dictionary_literal, directive, disjunction_expression, equality_expression, fully_open_range, hex_literal, if_statement, infix_expression, integer_literal, key_path_expression, key_path_string_expression, lambda_literal, line_string_literal, macro_invocation, multi_line_string_literal, multiplicative_expression, navigation_expression, "nil", nil_coalescing_expression, oct_literal, open_end_range_expression, open_start_range_expression, optional_chain_marker, playground_literal, postfix_expression, prefix_expression, range_expression, raw_string_literal, real_literal, regex_literal, selector_expression, self_expression, simple_identifier, special_literal, super_expression, switch_statement, ternary_expression, try_expression, tuple_expression, value_pack_expansion, value_parameter_pack, "|", "~"] op: ["+", "-"] - rhs+: ["!=", "!==", "%", "%=", "&", "*", "*=", "+", "++", "+=", "-", "--", "-=", "/", "/=", "<", "<<", "<=", "=", "==", "===", ">", ">=", ">>", "?", "^", additive_expression, array_literal, as_expression, assignment, await_expression, bang, bin_literal, bitwise_operation, boolean_literal, call_expression, check_expression, comparison_expression, conjunction_expression, constructor_expression, custom_operator, diagnostic, dictionary_literal, directive, disjunction_expression, equality_expression, fully_open_range, hex_literal, if_statement, infix_expression, integer_literal, key_path_expression, key_path_string_expression, lambda_literal, line_string_literal, macro_invocation, multi_line_string_literal, multiplicative_expression, navigation_expression, "nil", nil_coalescing_expression, oct_literal, open_end_range_expression, open_start_range_expression, playground_literal, postfix_expression, prefix_expression, range_expression, raw_string_literal, real_literal, regex_literal, selector_expression, self_expression, simple_identifier, special_literal, super_expression, switch_statement, ternary_expression, try_expression, tuple_expression, value_pack_expansion, value_parameter_pack, "|", "~"] + rhs: ["!=", "!==", "%", "%=", "&", "*", "*=", "+", "++", "+=", "-", "--", "-=", "/", "/=", "<", "<<", "<=", "=", "==", "===", ">", ">=", ">>", "^", additive_expression, array_literal, as_expression, assignment, await_expression, bang, bin_literal, bitwise_operation, boolean_literal, call_expression, check_expression, comparison_expression, conjunction_expression, constructor_expression, custom_operator, diagnostic, dictionary_literal, directive, disjunction_expression, equality_expression, fully_open_range, hex_literal, if_statement, infix_expression, integer_literal, key_path_expression, key_path_string_expression, lambda_literal, line_string_literal, macro_invocation, multi_line_string_literal, multiplicative_expression, navigation_expression, "nil", nil_coalescing_expression, oct_literal, open_end_range_expression, open_start_range_expression, optional_chain_marker, playground_literal, postfix_expression, prefix_expression, range_expression, raw_string_literal, real_literal, regex_literal, selector_expression, self_expression, simple_identifier, special_literal, super_expression, switch_statement, ternary_expression, try_expression, tuple_expression, value_pack_expansion, value_parameter_pack, "|", "~"] array_literal: - element*: ["!=", "!==", "%", "%=", "&", "*", "*=", "+", "++", "+=", "-", "--", "-=", "/", "/=", "<", "<<", "<=", "=", "==", "===", ">", ">=", ">>", "?", "^", additive_expression, array_literal, as_expression, assignment, await_expression, bang, bin_literal, bitwise_operation, boolean_literal, call_expression, check_expression, comparison_expression, conjunction_expression, constructor_expression, custom_operator, diagnostic, dictionary_literal, directive, disjunction_expression, equality_expression, fully_open_range, hex_literal, if_statement, infix_expression, integer_literal, key_path_expression, key_path_string_expression, lambda_literal, line_string_literal, macro_invocation, multi_line_string_literal, multiplicative_expression, navigation_expression, "nil", nil_coalescing_expression, oct_literal, open_end_range_expression, open_start_range_expression, playground_literal, postfix_expression, prefix_expression, range_expression, raw_string_literal, real_literal, regex_literal, selector_expression, self_expression, simple_identifier, special_literal, super_expression, switch_statement, ternary_expression, try_expression, tuple_expression, value_pack_expansion, value_parameter_pack, "|", "~"] + element*: ["!=", "!==", "%", "%=", "&", "*", "*=", "+", "++", "+=", "-", "--", "-=", "/", "/=", "<", "<<", "<=", "=", "==", "===", ">", ">=", ">>", "^", additive_expression, array_literal, as_expression, assignment, await_expression, bang, bin_literal, bitwise_operation, boolean_literal, call_expression, check_expression, comparison_expression, conjunction_expression, constructor_expression, custom_operator, diagnostic, dictionary_literal, directive, disjunction_expression, equality_expression, fully_open_range, hex_literal, if_statement, infix_expression, integer_literal, key_path_expression, key_path_string_expression, lambda_literal, line_string_literal, macro_invocation, multi_line_string_literal, multiplicative_expression, navigation_expression, "nil", nil_coalescing_expression, oct_literal, open_end_range_expression, open_start_range_expression, optional_chain_marker, playground_literal, postfix_expression, prefix_expression, range_expression, raw_string_literal, real_literal, regex_literal, selector_expression, self_expression, simple_identifier, special_literal, super_expression, switch_statement, ternary_expression, try_expression, tuple_expression, value_pack_expansion, value_parameter_pack, "|", "~"] array_type: element+: [array_type, dictionary_type, existential_type, function_type, metatype, opaque_type, optional_type, protocol_composition_type, suppressed_constraint, tuple_type, type_modifiers, type_pack_expansion, type_parameter_pack, user_type] name: [array_type, dictionary_type, existential_type, function_type, metatype, opaque_type, optional_type, protocol_composition_type, suppressed_constraint, tuple_type, type_pack_expansion, type_parameter_pack, user_type] as_expression: $children: as_operator - expr+: ["!=", "!==", "%", "%=", "&", "*", "*=", "+", "++", "+=", "-", "--", "-=", "/", "/=", "<", "<<", "<=", "=", "==", "===", ">", ">=", ">>", "?", "^", additive_expression, array_literal, as_expression, assignment, await_expression, bang, bin_literal, bitwise_operation, boolean_literal, call_expression, check_expression, comparison_expression, conjunction_expression, constructor_expression, custom_operator, diagnostic, dictionary_literal, directive, disjunction_expression, equality_expression, fully_open_range, hex_literal, if_statement, infix_expression, integer_literal, key_path_expression, key_path_string_expression, lambda_literal, line_string_literal, macro_invocation, multi_line_string_literal, multiplicative_expression, navigation_expression, "nil", nil_coalescing_expression, oct_literal, open_end_range_expression, open_start_range_expression, playground_literal, postfix_expression, prefix_expression, range_expression, raw_string_literal, real_literal, regex_literal, selector_expression, self_expression, simple_identifier, special_literal, super_expression, switch_statement, ternary_expression, try_expression, tuple_expression, value_pack_expansion, value_parameter_pack, "|", "~"] + expr: ["!=", "!==", "%", "%=", "&", "*", "*=", "+", "++", "+=", "-", "--", "-=", "/", "/=", "<", "<<", "<=", "=", "==", "===", ">", ">=", ">>", "^", additive_expression, array_literal, as_expression, assignment, await_expression, bang, bin_literal, bitwise_operation, boolean_literal, call_expression, check_expression, comparison_expression, conjunction_expression, constructor_expression, custom_operator, diagnostic, dictionary_literal, directive, disjunction_expression, equality_expression, fully_open_range, hex_literal, if_statement, infix_expression, integer_literal, key_path_expression, key_path_string_expression, lambda_literal, line_string_literal, macro_invocation, multi_line_string_literal, multiplicative_expression, navigation_expression, "nil", nil_coalescing_expression, oct_literal, open_end_range_expression, open_start_range_expression, optional_chain_marker, playground_literal, postfix_expression, prefix_expression, range_expression, raw_string_literal, real_literal, regex_literal, selector_expression, self_expression, simple_identifier, special_literal, super_expression, switch_statement, ternary_expression, try_expression, tuple_expression, value_pack_expansion, value_parameter_pack, "|", "~"] name: [array_type, dictionary_type, existential_type, function_type, metatype, opaque_type, optional_type, protocol_composition_type, suppressed_constraint, tuple_type, type_pack_expansion, type_parameter_pack, user_type] type+: [array_type, dictionary_type, existential_type, function_type, metatype, opaque_type, optional_type, protocol_composition_type, suppressed_constraint, tuple_type, type_modifiers, type_pack_expansion, type_parameter_pack, user_type] as_operator: assignment: operator: ["%=", "*=", "+=", "-=", "/=", "="] - result+: ["!=", "!==", "%", "%=", "&", "*", "*=", "+", "++", "+=", "-", "--", "-=", "/", "/=", "<", "<<", "<=", "=", "==", "===", ">", ">=", ">>", "?", "^", additive_expression, array_literal, as_expression, assignment, await_expression, bang, bin_literal, bitwise_operation, boolean_literal, call_expression, check_expression, comparison_expression, conjunction_expression, constructor_expression, custom_operator, diagnostic, dictionary_literal, directive, disjunction_expression, equality_expression, fully_open_range, hex_literal, if_statement, infix_expression, integer_literal, key_path_expression, key_path_string_expression, lambda_literal, line_string_literal, macro_invocation, multi_line_string_literal, multiplicative_expression, navigation_expression, "nil", nil_coalescing_expression, oct_literal, open_end_range_expression, open_start_range_expression, playground_literal, postfix_expression, prefix_expression, range_expression, raw_string_literal, real_literal, regex_literal, selector_expression, self_expression, simple_identifier, special_literal, super_expression, switch_statement, ternary_expression, try_expression, tuple_expression, value_pack_expansion, value_parameter_pack, "|", "~"] + result: ["!=", "!==", "%", "%=", "&", "*", "*=", "+", "++", "+=", "-", "--", "-=", "/", "/=", "<", "<<", "<=", "=", "==", "===", ">", ">=", ">>", "^", additive_expression, array_literal, as_expression, assignment, await_expression, bang, bin_literal, bitwise_operation, boolean_literal, call_expression, check_expression, comparison_expression, conjunction_expression, constructor_expression, custom_operator, diagnostic, dictionary_literal, directive, disjunction_expression, equality_expression, fully_open_range, hex_literal, if_statement, infix_expression, integer_literal, key_path_expression, key_path_string_expression, lambda_literal, line_string_literal, macro_invocation, multi_line_string_literal, multiplicative_expression, navigation_expression, "nil", nil_coalescing_expression, oct_literal, open_end_range_expression, open_start_range_expression, optional_chain_marker, playground_literal, postfix_expression, prefix_expression, range_expression, raw_string_literal, real_literal, regex_literal, selector_expression, self_expression, simple_identifier, special_literal, super_expression, switch_statement, ternary_expression, try_expression, tuple_expression, value_pack_expansion, value_parameter_pack, "|", "~"] target: directly_assignable_expression associatedtype_declaration: $children*: [modifiers, type_constraints] @@ -25,21 +25,21 @@ named: must_inherit*: [array_type, dictionary_type, existential_type, function_type, metatype, opaque_type, optional_type, protocol_composition_type, suppressed_constraint, tuple_type, type_modifiers, type_pack_expansion, type_parameter_pack, user_type] name+: [array_type, dictionary_type, existential_type, function_type, metatype, opaque_type, optional_type, protocol_composition_type, suppressed_constraint, tuple_type, type_identifier, type_pack_expansion, type_parameter_pack, user_type] attribute: - $children+: [additive_expression, array_literal, as_expression, assignment, await_expression, bang, bin_literal, bitwise_operation, boolean_literal, call_expression, check_expression, comparison_expression, conjunction_expression, constructor_expression, custom_operator, diagnostic, dictionary_literal, directive, disjunction_expression, equality_expression, fully_open_range, hex_literal, if_statement, infix_expression, integer_literal, key_path_expression, key_path_string_expression, lambda_literal, line_string_literal, macro_invocation, multi_line_string_literal, multiplicative_expression, navigation_expression, nil_coalescing_expression, oct_literal, open_end_range_expression, open_start_range_expression, playground_literal, postfix_expression, prefix_expression, range_expression, raw_string_literal, real_literal, regex_literal, selector_expression, self_expression, simple_identifier, special_literal, super_expression, switch_statement, ternary_expression, try_expression, tuple_expression, user_type, value_pack_expansion, value_parameter_pack] + $children+: [additive_expression, array_literal, as_expression, assignment, await_expression, bang, bin_literal, bitwise_operation, boolean_literal, call_expression, check_expression, comparison_expression, conjunction_expression, constructor_expression, custom_operator, diagnostic, dictionary_literal, directive, disjunction_expression, equality_expression, fully_open_range, hex_literal, if_statement, infix_expression, integer_literal, key_path_expression, key_path_string_expression, lambda_literal, line_string_literal, macro_invocation, multi_line_string_literal, multiplicative_expression, navigation_expression, nil_coalescing_expression, oct_literal, open_end_range_expression, open_start_range_expression, optional_chain_marker, playground_literal, postfix_expression, prefix_expression, range_expression, raw_string_literal, real_literal, regex_literal, selector_expression, self_expression, simple_identifier, special_literal, super_expression, switch_statement, ternary_expression, try_expression, tuple_expression, user_type, value_pack_expansion, value_parameter_pack] availability_condition: $children*: [identifier, integer_literal] await_expression: - $children?: [additive_expression, array_literal, as_expression, assignment, await_expression, bang, bin_literal, bitwise_operation, boolean_literal, call_expression, check_expression, comparison_expression, conjunction_expression, constructor_expression, custom_operator, diagnostic, dictionary_literal, directive, disjunction_expression, equality_expression, fully_open_range, hex_literal, if_statement, infix_expression, integer_literal, key_path_expression, key_path_string_expression, lambda_literal, line_string_literal, macro_invocation, multi_line_string_literal, multiplicative_expression, navigation_expression, nil_coalescing_expression, oct_literal, open_end_range_expression, open_start_range_expression, playground_literal, postfix_expression, prefix_expression, range_expression, raw_string_literal, real_literal, regex_literal, selector_expression, self_expression, simple_identifier, special_literal, super_expression, switch_statement, ternary_expression, try_expression, tuple_expression, value_pack_expansion, value_parameter_pack] - expr*: ["!=", "!==", "%", "%=", "&", "*", "*=", "+", "++", "+=", "-", "--", "-=", "/", "/=", "<", "<<", "<=", "=", "==", "===", ">", ">=", ">>", "?", "^", additive_expression, array_literal, as_expression, assignment, await_expression, bang, bin_literal, bitwise_operation, boolean_literal, call_expression, check_expression, comparison_expression, conjunction_expression, constructor_expression, custom_operator, diagnostic, dictionary_literal, directive, disjunction_expression, equality_expression, fully_open_range, hex_literal, if_statement, infix_expression, integer_literal, key_path_expression, key_path_string_expression, lambda_literal, line_string_literal, macro_invocation, multi_line_string_literal, multiplicative_expression, navigation_expression, "nil", nil_coalescing_expression, oct_literal, open_end_range_expression, open_start_range_expression, playground_literal, postfix_expression, prefix_expression, range_expression, raw_string_literal, real_literal, regex_literal, selector_expression, self_expression, simple_identifier, special_literal, super_expression, switch_statement, ternary_expression, try_expression, tuple_expression, value_pack_expansion, value_parameter_pack, "|", "~"] + $children?: [additive_expression, array_literal, as_expression, assignment, await_expression, bang, bin_literal, bitwise_operation, boolean_literal, call_expression, check_expression, comparison_expression, conjunction_expression, constructor_expression, custom_operator, diagnostic, dictionary_literal, directive, disjunction_expression, equality_expression, fully_open_range, hex_literal, if_statement, infix_expression, integer_literal, key_path_expression, key_path_string_expression, lambda_literal, line_string_literal, macro_invocation, multi_line_string_literal, multiplicative_expression, navigation_expression, nil_coalescing_expression, oct_literal, open_end_range_expression, open_start_range_expression, optional_chain_marker, playground_literal, postfix_expression, prefix_expression, range_expression, raw_string_literal, real_literal, regex_literal, selector_expression, self_expression, simple_identifier, special_literal, super_expression, switch_statement, ternary_expression, try_expression, tuple_expression, value_pack_expansion, value_parameter_pack] + expr?: ["!=", "!==", "%", "%=", "&", "*", "*=", "+", "++", "+=", "-", "--", "-=", "/", "/=", "<", "<<", "<=", "=", "==", "===", ">", ">=", ">>", "^", additive_expression, array_literal, as_expression, assignment, await_expression, bang, bin_literal, bitwise_operation, boolean_literal, call_expression, check_expression, comparison_expression, conjunction_expression, constructor_expression, custom_operator, diagnostic, dictionary_literal, directive, disjunction_expression, equality_expression, fully_open_range, hex_literal, if_statement, infix_expression, integer_literal, key_path_expression, key_path_string_expression, lambda_literal, line_string_literal, macro_invocation, multi_line_string_literal, multiplicative_expression, navigation_expression, "nil", nil_coalescing_expression, oct_literal, open_end_range_expression, open_start_range_expression, optional_chain_marker, playground_literal, postfix_expression, prefix_expression, range_expression, raw_string_literal, real_literal, regex_literal, selector_expression, self_expression, simple_identifier, special_literal, super_expression, switch_statement, ternary_expression, try_expression, tuple_expression, value_pack_expansion, value_parameter_pack, "|", "~"] bang: bin_literal: bitwise_operation: - lhs+: ["!=", "!==", "%", "%=", "&", "*", "*=", "+", "++", "+=", "-", "--", "-=", "/", "/=", "<", "<<", "<=", "=", "==", "===", ">", ">=", ">>", "?", "^", additive_expression, array_literal, as_expression, assignment, await_expression, bang, bin_literal, bitwise_operation, boolean_literal, call_expression, check_expression, comparison_expression, conjunction_expression, constructor_expression, custom_operator, diagnostic, dictionary_literal, directive, disjunction_expression, equality_expression, fully_open_range, hex_literal, if_statement, infix_expression, integer_literal, key_path_expression, key_path_string_expression, lambda_literal, line_string_literal, macro_invocation, multi_line_string_literal, multiplicative_expression, navigation_expression, "nil", nil_coalescing_expression, oct_literal, open_end_range_expression, open_start_range_expression, playground_literal, postfix_expression, prefix_expression, range_expression, raw_string_literal, real_literal, regex_literal, selector_expression, self_expression, simple_identifier, special_literal, super_expression, switch_statement, ternary_expression, try_expression, tuple_expression, value_pack_expansion, value_parameter_pack, "|", "~"] + lhs: ["!=", "!==", "%", "%=", "&", "*", "*=", "+", "++", "+=", "-", "--", "-=", "/", "/=", "<", "<<", "<=", "=", "==", "===", ">", ">=", ">>", "^", additive_expression, array_literal, as_expression, assignment, await_expression, bang, bin_literal, bitwise_operation, boolean_literal, call_expression, check_expression, comparison_expression, conjunction_expression, constructor_expression, custom_operator, diagnostic, dictionary_literal, directive, disjunction_expression, equality_expression, fully_open_range, hex_literal, if_statement, infix_expression, integer_literal, key_path_expression, key_path_string_expression, lambda_literal, line_string_literal, macro_invocation, multi_line_string_literal, multiplicative_expression, navigation_expression, "nil", nil_coalescing_expression, oct_literal, open_end_range_expression, open_start_range_expression, optional_chain_marker, playground_literal, postfix_expression, prefix_expression, range_expression, raw_string_literal, real_literal, regex_literal, selector_expression, self_expression, simple_identifier, special_literal, super_expression, switch_statement, ternary_expression, try_expression, tuple_expression, value_pack_expansion, value_parameter_pack, "|", "~"] op: ["&", "<<", ">>", "^", "|"] - rhs+: ["!=", "!==", "%", "%=", "&", "*", "*=", "+", "++", "+=", "-", "--", "-=", "/", "/=", "<", "<<", "<=", "=", "==", "===", ">", ">=", ">>", "?", "^", additive_expression, array_literal, as_expression, assignment, await_expression, bang, bin_literal, bitwise_operation, boolean_literal, call_expression, check_expression, comparison_expression, conjunction_expression, constructor_expression, custom_operator, diagnostic, dictionary_literal, directive, disjunction_expression, equality_expression, fully_open_range, hex_literal, if_statement, infix_expression, integer_literal, key_path_expression, key_path_string_expression, lambda_literal, line_string_literal, macro_invocation, multi_line_string_literal, multiplicative_expression, navigation_expression, "nil", nil_coalescing_expression, oct_literal, open_end_range_expression, open_start_range_expression, playground_literal, postfix_expression, prefix_expression, range_expression, raw_string_literal, real_literal, regex_literal, selector_expression, self_expression, simple_identifier, special_literal, super_expression, switch_statement, ternary_expression, try_expression, tuple_expression, value_pack_expansion, value_parameter_pack, "|", "~"] + rhs: ["!=", "!==", "%", "%=", "&", "*", "*=", "+", "++", "+=", "-", "--", "-=", "/", "/=", "<", "<<", "<=", "=", "==", "===", ">", ">=", ">>", "^", additive_expression, array_literal, as_expression, assignment, await_expression, bang, bin_literal, bitwise_operation, boolean_literal, call_expression, check_expression, comparison_expression, conjunction_expression, constructor_expression, custom_operator, diagnostic, dictionary_literal, directive, disjunction_expression, equality_expression, fully_open_range, hex_literal, if_statement, infix_expression, integer_literal, key_path_expression, key_path_string_expression, lambda_literal, line_string_literal, macro_invocation, multi_line_string_literal, multiplicative_expression, navigation_expression, "nil", nil_coalescing_expression, oct_literal, open_end_range_expression, open_start_range_expression, optional_chain_marker, playground_literal, postfix_expression, prefix_expression, range_expression, raw_string_literal, real_literal, regex_literal, selector_expression, self_expression, simple_identifier, special_literal, super_expression, switch_statement, ternary_expression, try_expression, tuple_expression, value_pack_expansion, value_parameter_pack, "|", "~"] boolean_literal: call_expression: - $children+: [additive_expression, array_literal, as_expression, assignment, await_expression, bang, bin_literal, bitwise_operation, boolean_literal, call_expression, call_suffix, check_expression, comparison_expression, conjunction_expression, constructor_expression, custom_operator, diagnostic, dictionary_literal, directive, disjunction_expression, equality_expression, fully_open_range, hex_literal, if_statement, infix_expression, integer_literal, key_path_expression, key_path_string_expression, lambda_literal, line_string_literal, macro_invocation, multi_line_string_literal, multiplicative_expression, navigation_expression, nil_coalescing_expression, oct_literal, open_end_range_expression, open_start_range_expression, playground_literal, postfix_expression, prefix_expression, range_expression, raw_string_literal, real_literal, regex_literal, selector_expression, self_expression, simple_identifier, special_literal, super_expression, switch_statement, ternary_expression, try_expression, tuple_expression, value_pack_expansion, value_parameter_pack] + $children+: [additive_expression, array_literal, as_expression, assignment, await_expression, bang, bin_literal, bitwise_operation, boolean_literal, call_expression, call_suffix, check_expression, comparison_expression, conjunction_expression, constructor_expression, custom_operator, diagnostic, dictionary_literal, directive, disjunction_expression, equality_expression, fully_open_range, hex_literal, if_statement, infix_expression, integer_literal, key_path_expression, key_path_string_expression, lambda_literal, line_string_literal, macro_invocation, multi_line_string_literal, multiplicative_expression, navigation_expression, nil_coalescing_expression, oct_literal, open_end_range_expression, open_start_range_expression, optional_chain_marker, playground_literal, postfix_expression, prefix_expression, range_expression, raw_string_literal, real_literal, regex_literal, selector_expression, self_expression, simple_identifier, special_literal, super_expression, switch_statement, ternary_expression, try_expression, tuple_expression, value_pack_expansion, value_parameter_pack] call_suffix: $children+: [lambda_literal, value_arguments] name*: simple_identifier @@ -48,7 +48,7 @@ named: capture_list_item: $children?: ownership_modifier name: [self_expression, simple_identifier] - value*: ["!=", "!==", "%", "%=", "&", "*", "*=", "+", "++", "+=", "-", "--", "-=", "/", "/=", "<", "<<", "<=", "=", "==", "===", ">", ">=", ">>", "?", "^", additive_expression, array_literal, as_expression, assignment, await_expression, bang, bin_literal, bitwise_operation, boolean_literal, call_expression, check_expression, comparison_expression, conjunction_expression, constructor_expression, custom_operator, diagnostic, dictionary_literal, directive, disjunction_expression, equality_expression, fully_open_range, hex_literal, if_statement, infix_expression, integer_literal, key_path_expression, key_path_string_expression, lambda_literal, line_string_literal, macro_invocation, multi_line_string_literal, multiplicative_expression, navigation_expression, "nil", nil_coalescing_expression, oct_literal, open_end_range_expression, open_start_range_expression, playground_literal, postfix_expression, prefix_expression, range_expression, raw_string_literal, real_literal, regex_literal, selector_expression, self_expression, simple_identifier, special_literal, super_expression, switch_statement, ternary_expression, try_expression, tuple_expression, value_pack_expansion, value_parameter_pack, "|", "~"] + value?: ["!=", "!==", "%", "%=", "&", "*", "*=", "+", "++", "+=", "-", "--", "-=", "/", "/=", "<", "<<", "<=", "=", "==", "===", ">", ">=", ">>", "^", additive_expression, array_literal, as_expression, assignment, await_expression, bang, bin_literal, bitwise_operation, boolean_literal, call_expression, check_expression, comparison_expression, conjunction_expression, constructor_expression, custom_operator, diagnostic, dictionary_literal, directive, disjunction_expression, equality_expression, fully_open_range, hex_literal, if_statement, infix_expression, integer_literal, key_path_expression, key_path_string_expression, lambda_literal, line_string_literal, macro_invocation, multi_line_string_literal, multiplicative_expression, navigation_expression, "nil", nil_coalescing_expression, oct_literal, open_end_range_expression, open_start_range_expression, optional_chain_marker, playground_literal, postfix_expression, prefix_expression, range_expression, raw_string_literal, real_literal, regex_literal, selector_expression, self_expression, simple_identifier, special_literal, super_expression, switch_statement, ternary_expression, try_expression, tuple_expression, value_pack_expansion, value_parameter_pack, "|", "~"] catch_block: $children+: [catch_keyword, statements, where_clause] error?: pattern @@ -56,7 +56,7 @@ named: check_expression: name: [array_type, dictionary_type, existential_type, function_type, metatype, opaque_type, optional_type, protocol_composition_type, suppressed_constraint, tuple_type, type_pack_expansion, type_parameter_pack, user_type] op: "is" - target+: ["!=", "!==", "%", "%=", "&", "*", "*=", "+", "++", "+=", "-", "--", "-=", "/", "/=", "<", "<<", "<=", "=", "==", "===", ">", ">=", ">>", "?", "^", additive_expression, array_literal, as_expression, assignment, await_expression, bang, bin_literal, bitwise_operation, boolean_literal, call_expression, check_expression, comparison_expression, conjunction_expression, constructor_expression, custom_operator, diagnostic, dictionary_literal, directive, disjunction_expression, equality_expression, fully_open_range, hex_literal, if_statement, infix_expression, integer_literal, key_path_expression, key_path_string_expression, lambda_literal, line_string_literal, macro_invocation, multi_line_string_literal, multiplicative_expression, navigation_expression, "nil", nil_coalescing_expression, oct_literal, open_end_range_expression, open_start_range_expression, playground_literal, postfix_expression, prefix_expression, range_expression, raw_string_literal, real_literal, regex_literal, selector_expression, self_expression, simple_identifier, special_literal, super_expression, switch_statement, ternary_expression, try_expression, tuple_expression, value_pack_expansion, value_parameter_pack, "|", "~"] + target: ["!=", "!==", "%", "%=", "&", "*", "*=", "+", "++", "+=", "-", "--", "-=", "/", "/=", "<", "<<", "<=", "=", "==", "===", ">", ">=", ">>", "^", additive_expression, array_literal, as_expression, assignment, await_expression, bang, bin_literal, bitwise_operation, boolean_literal, call_expression, check_expression, comparison_expression, conjunction_expression, constructor_expression, custom_operator, diagnostic, dictionary_literal, directive, disjunction_expression, equality_expression, fully_open_range, hex_literal, if_statement, infix_expression, integer_literal, key_path_expression, key_path_string_expression, lambda_literal, line_string_literal, macro_invocation, multi_line_string_literal, multiplicative_expression, navigation_expression, "nil", nil_coalescing_expression, oct_literal, open_end_range_expression, open_start_range_expression, optional_chain_marker, playground_literal, postfix_expression, prefix_expression, range_expression, raw_string_literal, real_literal, regex_literal, selector_expression, self_expression, simple_identifier, special_literal, super_expression, switch_statement, ternary_expression, try_expression, tuple_expression, value_pack_expansion, value_parameter_pack, "|", "~"] type+: [array_type, dictionary_type, existential_type, function_type, metatype, opaque_type, optional_type, protocol_composition_type, suppressed_constraint, tuple_type, type_modifiers, type_pack_expansion, type_parameter_pack, user_type] class_body: $children*: [associatedtype_declaration, class_declaration, deinit_declaration, function_declaration, import_declaration, init_declaration, multiline_comment, operator_declaration, precedence_group_declaration, property_declaration, protocol_declaration, subscript_declaration, typealias_declaration] @@ -67,9 +67,9 @@ named: name: [array_type, dictionary_type, existential_type, function_type, metatype, opaque_type, optional_type, protocol_composition_type, suppressed_constraint, tuple_type, type_identifier, type_pack_expansion, type_parameter_pack, user_type] comment: comparison_expression: - lhs+: ["!=", "!==", "%", "%=", "&", "*", "*=", "+", "++", "+=", "-", "--", "-=", "/", "/=", "<", "<<", "<=", "=", "==", "===", ">", ">=", ">>", "?", "^", additive_expression, array_literal, as_expression, assignment, await_expression, bang, bin_literal, bitwise_operation, boolean_literal, call_expression, check_expression, comparison_expression, conjunction_expression, constructor_expression, custom_operator, diagnostic, dictionary_literal, directive, disjunction_expression, equality_expression, fully_open_range, hex_literal, if_statement, infix_expression, integer_literal, key_path_expression, key_path_string_expression, lambda_literal, line_string_literal, macro_invocation, multi_line_string_literal, multiplicative_expression, navigation_expression, "nil", nil_coalescing_expression, oct_literal, open_end_range_expression, open_start_range_expression, playground_literal, postfix_expression, prefix_expression, range_expression, raw_string_literal, real_literal, regex_literal, selector_expression, self_expression, simple_identifier, special_literal, super_expression, switch_statement, ternary_expression, try_expression, tuple_expression, value_pack_expansion, value_parameter_pack, "|", "~"] + lhs: ["!=", "!==", "%", "%=", "&", "*", "*=", "+", "++", "+=", "-", "--", "-=", "/", "/=", "<", "<<", "<=", "=", "==", "===", ">", ">=", ">>", "^", additive_expression, array_literal, as_expression, assignment, await_expression, bang, bin_literal, bitwise_operation, boolean_literal, call_expression, check_expression, comparison_expression, conjunction_expression, constructor_expression, custom_operator, diagnostic, dictionary_literal, directive, disjunction_expression, equality_expression, fully_open_range, hex_literal, if_statement, infix_expression, integer_literal, key_path_expression, key_path_string_expression, lambda_literal, line_string_literal, macro_invocation, multi_line_string_literal, multiplicative_expression, navigation_expression, "nil", nil_coalescing_expression, oct_literal, open_end_range_expression, open_start_range_expression, optional_chain_marker, playground_literal, postfix_expression, prefix_expression, range_expression, raw_string_literal, real_literal, regex_literal, selector_expression, self_expression, simple_identifier, special_literal, super_expression, switch_statement, ternary_expression, try_expression, tuple_expression, value_pack_expansion, value_parameter_pack, "|", "~"] op: ["<", "<=", ">", ">="] - rhs+: ["!=", "!==", "%", "%=", "&", "*", "*=", "+", "++", "+=", "-", "--", "-=", "/", "/=", "<", "<<", "<=", "=", "==", "===", ">", ">=", ">>", "?", "^", additive_expression, array_literal, as_expression, assignment, await_expression, bang, bin_literal, bitwise_operation, boolean_literal, call_expression, check_expression, comparison_expression, conjunction_expression, constructor_expression, custom_operator, diagnostic, dictionary_literal, directive, disjunction_expression, equality_expression, fully_open_range, hex_literal, if_statement, infix_expression, integer_literal, key_path_expression, key_path_string_expression, lambda_literal, line_string_literal, macro_invocation, multi_line_string_literal, multiplicative_expression, navigation_expression, "nil", nil_coalescing_expression, oct_literal, open_end_range_expression, open_start_range_expression, playground_literal, postfix_expression, prefix_expression, range_expression, raw_string_literal, real_literal, regex_literal, selector_expression, self_expression, simple_identifier, special_literal, super_expression, switch_statement, ternary_expression, try_expression, tuple_expression, value_pack_expansion, value_parameter_pack, "|", "~"] + rhs: ["!=", "!==", "%", "%=", "&", "*", "*=", "+", "++", "+=", "-", "--", "-=", "/", "/=", "<", "<<", "<=", "=", "==", "===", ">", ">=", ">>", "^", additive_expression, array_literal, as_expression, assignment, await_expression, bang, bin_literal, bitwise_operation, boolean_literal, call_expression, check_expression, comparison_expression, conjunction_expression, constructor_expression, custom_operator, diagnostic, dictionary_literal, directive, disjunction_expression, equality_expression, fully_open_range, hex_literal, if_statement, infix_expression, integer_literal, key_path_expression, key_path_string_expression, lambda_literal, line_string_literal, macro_invocation, multi_line_string_literal, multiplicative_expression, navigation_expression, "nil", nil_coalescing_expression, oct_literal, open_end_range_expression, open_start_range_expression, optional_chain_marker, playground_literal, postfix_expression, prefix_expression, range_expression, raw_string_literal, real_literal, regex_literal, selector_expression, self_expression, simple_identifier, special_literal, super_expression, switch_statement, ternary_expression, try_expression, tuple_expression, value_pack_expansion, value_parameter_pack, "|", "~"] computed_getter: $children+: [attribute, getter_specifier, statements] computed_modify: @@ -79,9 +79,9 @@ named: computed_setter: $children+: [attribute, setter_specifier, simple_identifier, statements] conjunction_expression: - lhs+: ["!=", "!==", "%", "%=", "&", "*", "*=", "+", "++", "+=", "-", "--", "-=", "/", "/=", "<", "<<", "<=", "=", "==", "===", ">", ">=", ">>", "?", "^", additive_expression, array_literal, as_expression, assignment, await_expression, bang, bin_literal, bitwise_operation, boolean_literal, call_expression, check_expression, comparison_expression, conjunction_expression, constructor_expression, custom_operator, diagnostic, dictionary_literal, directive, disjunction_expression, equality_expression, fully_open_range, hex_literal, if_statement, infix_expression, integer_literal, key_path_expression, key_path_string_expression, lambda_literal, line_string_literal, macro_invocation, multi_line_string_literal, multiplicative_expression, navigation_expression, "nil", nil_coalescing_expression, oct_literal, open_end_range_expression, open_start_range_expression, playground_literal, postfix_expression, prefix_expression, range_expression, raw_string_literal, real_literal, regex_literal, selector_expression, self_expression, simple_identifier, special_literal, super_expression, switch_statement, ternary_expression, try_expression, tuple_expression, value_pack_expansion, value_parameter_pack, "|", "~"] + lhs: ["!=", "!==", "%", "%=", "&", "*", "*=", "+", "++", "+=", "-", "--", "-=", "/", "/=", "<", "<<", "<=", "=", "==", "===", ">", ">=", ">>", "^", additive_expression, array_literal, as_expression, assignment, await_expression, bang, bin_literal, bitwise_operation, boolean_literal, call_expression, check_expression, comparison_expression, conjunction_expression, constructor_expression, custom_operator, diagnostic, dictionary_literal, directive, disjunction_expression, equality_expression, fully_open_range, hex_literal, if_statement, infix_expression, integer_literal, key_path_expression, key_path_string_expression, lambda_literal, line_string_literal, macro_invocation, multi_line_string_literal, multiplicative_expression, navigation_expression, "nil", nil_coalescing_expression, oct_literal, open_end_range_expression, open_start_range_expression, optional_chain_marker, playground_literal, postfix_expression, prefix_expression, range_expression, raw_string_literal, real_literal, regex_literal, selector_expression, self_expression, simple_identifier, special_literal, super_expression, switch_statement, ternary_expression, try_expression, tuple_expression, value_pack_expansion, value_parameter_pack, "|", "~"] op: "&&" - rhs+: ["!=", "!==", "%", "%=", "&", "*", "*=", "+", "++", "+=", "-", "--", "-=", "/", "/=", "<", "<<", "<=", "=", "==", "===", ">", ">=", ">>", "?", "^", additive_expression, array_literal, as_expression, assignment, await_expression, bang, bin_literal, bitwise_operation, boolean_literal, call_expression, check_expression, comparison_expression, conjunction_expression, constructor_expression, custom_operator, diagnostic, dictionary_literal, directive, disjunction_expression, equality_expression, fully_open_range, hex_literal, if_statement, infix_expression, integer_literal, key_path_expression, key_path_string_expression, lambda_literal, line_string_literal, macro_invocation, multi_line_string_literal, multiplicative_expression, navigation_expression, "nil", nil_coalescing_expression, oct_literal, open_end_range_expression, open_start_range_expression, playground_literal, postfix_expression, prefix_expression, range_expression, raw_string_literal, real_literal, regex_literal, selector_expression, self_expression, simple_identifier, special_literal, super_expression, switch_statement, ternary_expression, try_expression, tuple_expression, value_pack_expansion, value_parameter_pack, "|", "~"] + rhs: ["!=", "!==", "%", "%=", "&", "*", "*=", "+", "++", "+=", "-", "--", "-=", "/", "/=", "<", "<<", "<=", "=", "==", "===", ">", ">=", ">>", "^", additive_expression, array_literal, as_expression, assignment, await_expression, bang, bin_literal, bitwise_operation, boolean_literal, call_expression, check_expression, comparison_expression, conjunction_expression, constructor_expression, custom_operator, diagnostic, dictionary_literal, directive, disjunction_expression, equality_expression, fully_open_range, hex_literal, if_statement, infix_expression, integer_literal, key_path_expression, key_path_string_expression, lambda_literal, line_string_literal, macro_invocation, multi_line_string_literal, multiplicative_expression, navigation_expression, "nil", nil_coalescing_expression, oct_literal, open_end_range_expression, open_start_range_expression, optional_chain_marker, playground_literal, postfix_expression, prefix_expression, range_expression, raw_string_literal, real_literal, regex_literal, selector_expression, self_expression, simple_identifier, special_literal, super_expression, switch_statement, ternary_expression, try_expression, tuple_expression, value_pack_expansion, value_parameter_pack, "|", "~"] constructor_expression: $children: constructor_suffix constructed_type: [array_type, dictionary_type, user_type] @@ -89,8 +89,8 @@ named: $children+: [lambda_literal, value_arguments] name*: simple_identifier control_transfer_statement: - $children*: [additive_expression, array_literal, as_expression, assignment, await_expression, bang, bin_literal, bitwise_operation, boolean_literal, call_expression, check_expression, comparison_expression, conjunction_expression, constructor_expression, custom_operator, diagnostic, dictionary_literal, directive, disjunction_expression, equality_expression, fully_open_range, hex_literal, if_statement, infix_expression, integer_literal, key_path_expression, key_path_string_expression, lambda_literal, line_string_literal, macro_invocation, multi_line_string_literal, multiplicative_expression, navigation_expression, nil_coalescing_expression, oct_literal, open_end_range_expression, open_start_range_expression, playground_literal, postfix_expression, prefix_expression, range_expression, raw_string_literal, real_literal, regex_literal, selector_expression, self_expression, simple_identifier, special_literal, super_expression, switch_statement, ternary_expression, throw_keyword, try_expression, tuple_expression, value_pack_expansion, value_parameter_pack] - result*: ["!=", "!==", "%", "%=", "&", "*", "*=", "+", "++", "+=", "-", "--", "-=", "/", "/=", "<", "<<", "<=", "=", "==", "===", ">", ">=", ">>", "?", "^", additive_expression, array_literal, as_expression, assignment, await_expression, bang, bin_literal, bitwise_operation, boolean_literal, call_expression, check_expression, comparison_expression, conjunction_expression, constructor_expression, custom_operator, diagnostic, dictionary_literal, directive, disjunction_expression, equality_expression, fully_open_range, hex_literal, if_statement, infix_expression, integer_literal, key_path_expression, key_path_string_expression, lambda_literal, line_string_literal, macro_invocation, multi_line_string_literal, multiplicative_expression, navigation_expression, "nil", nil_coalescing_expression, oct_literal, open_end_range_expression, open_start_range_expression, playground_literal, postfix_expression, prefix_expression, range_expression, raw_string_literal, real_literal, regex_literal, selector_expression, self_expression, simple_identifier, special_literal, super_expression, switch_statement, ternary_expression, try_expression, tuple_expression, value_pack_expansion, value_parameter_pack, "|", "~"] + $children*: [additive_expression, array_literal, as_expression, assignment, await_expression, bang, bin_literal, bitwise_operation, boolean_literal, call_expression, check_expression, comparison_expression, conjunction_expression, constructor_expression, custom_operator, diagnostic, dictionary_literal, directive, disjunction_expression, equality_expression, fully_open_range, hex_literal, if_statement, infix_expression, integer_literal, key_path_expression, key_path_string_expression, lambda_literal, line_string_literal, macro_invocation, multi_line_string_literal, multiplicative_expression, navigation_expression, nil_coalescing_expression, oct_literal, open_end_range_expression, open_start_range_expression, optional_chain_marker, playground_literal, postfix_expression, prefix_expression, range_expression, raw_string_literal, real_literal, regex_literal, selector_expression, self_expression, simple_identifier, special_literal, super_expression, switch_statement, ternary_expression, throw_keyword, try_expression, tuple_expression, value_pack_expansion, value_parameter_pack] + result?: ["!=", "!==", "%", "%=", "&", "*", "*=", "+", "++", "+=", "-", "--", "-=", "/", "/=", "<", "<<", "<=", "=", "==", "===", ">", ">=", ">>", "^", additive_expression, array_literal, as_expression, assignment, await_expression, bang, bin_literal, bitwise_operation, boolean_literal, call_expression, check_expression, comparison_expression, conjunction_expression, constructor_expression, custom_operator, diagnostic, dictionary_literal, directive, disjunction_expression, equality_expression, fully_open_range, hex_literal, if_statement, infix_expression, integer_literal, key_path_expression, key_path_string_expression, lambda_literal, line_string_literal, macro_invocation, multi_line_string_literal, multiplicative_expression, navigation_expression, "nil", nil_coalescing_expression, oct_literal, open_end_range_expression, open_start_range_expression, optional_chain_marker, playground_literal, postfix_expression, prefix_expression, range_expression, raw_string_literal, real_literal, regex_literal, selector_expression, self_expression, simple_identifier, special_literal, super_expression, switch_statement, ternary_expression, try_expression, tuple_expression, value_pack_expansion, value_parameter_pack, "|", "~"] custom_operator: default_keyword: deinit_declaration: @@ -100,8 +100,8 @@ named: $children*: [bin_literal, boolean_literal, hex_literal, integer_literal, line_string_literal, multi_line_string_literal, oct_literal, raw_string_literal, real_literal, regex_literal, simple_identifier] diagnostic: dictionary_literal: - key*: ["!=", "!==", "%", "%=", "&", "*", "*=", "+", "++", "+=", "-", "--", "-=", "/", "/=", "<", "<<", "<=", "=", "==", "===", ">", ">=", ">>", "?", "^", additive_expression, array_literal, as_expression, assignment, await_expression, bang, bin_literal, bitwise_operation, boolean_literal, call_expression, check_expression, comparison_expression, conjunction_expression, constructor_expression, custom_operator, diagnostic, dictionary_literal, directive, disjunction_expression, equality_expression, fully_open_range, hex_literal, if_statement, infix_expression, integer_literal, key_path_expression, key_path_string_expression, lambda_literal, line_string_literal, macro_invocation, multi_line_string_literal, multiplicative_expression, navigation_expression, "nil", nil_coalescing_expression, oct_literal, open_end_range_expression, open_start_range_expression, playground_literal, postfix_expression, prefix_expression, range_expression, raw_string_literal, real_literal, regex_literal, selector_expression, self_expression, simple_identifier, special_literal, super_expression, switch_statement, ternary_expression, try_expression, tuple_expression, value_pack_expansion, value_parameter_pack, "|", "~"] - value*: ["!=", "!==", "%", "%=", "&", "*", "*=", "+", "++", "+=", "-", "--", "-=", "/", "/=", "<", "<<", "<=", "=", "==", "===", ">", ">=", ">>", "?", "^", additive_expression, array_literal, as_expression, assignment, await_expression, bang, bin_literal, bitwise_operation, boolean_literal, call_expression, check_expression, comparison_expression, conjunction_expression, constructor_expression, custom_operator, diagnostic, dictionary_literal, directive, disjunction_expression, equality_expression, fully_open_range, hex_literal, if_statement, infix_expression, integer_literal, key_path_expression, key_path_string_expression, lambda_literal, line_string_literal, macro_invocation, multi_line_string_literal, multiplicative_expression, navigation_expression, "nil", nil_coalescing_expression, oct_literal, open_end_range_expression, open_start_range_expression, playground_literal, postfix_expression, prefix_expression, range_expression, raw_string_literal, real_literal, regex_literal, selector_expression, self_expression, simple_identifier, special_literal, super_expression, switch_statement, ternary_expression, try_expression, tuple_expression, value_pack_expansion, value_parameter_pack, "|", "~"] + key*: ["!=", "!==", "%", "%=", "&", "*", "*=", "+", "++", "+=", "-", "--", "-=", "/", "/=", "<", "<<", "<=", "=", "==", "===", ">", ">=", ">>", "^", additive_expression, array_literal, as_expression, assignment, await_expression, bang, bin_literal, bitwise_operation, boolean_literal, call_expression, check_expression, comparison_expression, conjunction_expression, constructor_expression, custom_operator, diagnostic, dictionary_literal, directive, disjunction_expression, equality_expression, fully_open_range, hex_literal, if_statement, infix_expression, integer_literal, key_path_expression, key_path_string_expression, lambda_literal, line_string_literal, macro_invocation, multi_line_string_literal, multiplicative_expression, navigation_expression, "nil", nil_coalescing_expression, oct_literal, open_end_range_expression, open_start_range_expression, optional_chain_marker, playground_literal, postfix_expression, prefix_expression, range_expression, raw_string_literal, real_literal, regex_literal, selector_expression, self_expression, simple_identifier, special_literal, super_expression, switch_statement, ternary_expression, try_expression, tuple_expression, value_pack_expansion, value_parameter_pack, "|", "~"] + value*: ["!=", "!==", "%", "%=", "&", "*", "*=", "+", "++", "+=", "-", "--", "-=", "/", "/=", "<", "<<", "<=", "=", "==", "===", ">", ">=", ">>", "^", additive_expression, array_literal, as_expression, assignment, await_expression, bang, bin_literal, bitwise_operation, boolean_literal, call_expression, check_expression, comparison_expression, conjunction_expression, constructor_expression, custom_operator, diagnostic, dictionary_literal, directive, disjunction_expression, equality_expression, fully_open_range, hex_literal, if_statement, infix_expression, integer_literal, key_path_expression, key_path_string_expression, lambda_literal, line_string_literal, macro_invocation, multi_line_string_literal, multiplicative_expression, navigation_expression, "nil", nil_coalescing_expression, oct_literal, open_end_range_expression, open_start_range_expression, optional_chain_marker, playground_literal, postfix_expression, prefix_expression, range_expression, raw_string_literal, real_literal, regex_literal, selector_expression, self_expression, simple_identifier, special_literal, super_expression, switch_statement, ternary_expression, try_expression, tuple_expression, value_pack_expansion, value_parameter_pack, "|", "~"] dictionary_type: key+: [array_type, dictionary_type, existential_type, function_type, metatype, opaque_type, optional_type, protocol_composition_type, suppressed_constraint, tuple_type, type_modifiers, type_pack_expansion, type_parameter_pack, user_type] name+: [array_type, dictionary_type, existential_type, function_type, metatype, opaque_type, optional_type, protocol_composition_type, suppressed_constraint, tuple_type, type_pack_expansion, type_parameter_pack, user_type] @@ -111,11 +111,11 @@ named: directive: $children*: [boolean_literal, integer_literal, simple_identifier] directly_assignable_expression: - $children?: [additive_expression, array_literal, as_expression, assignment, await_expression, bang, bin_literal, bitwise_operation, boolean_literal, call_expression, check_expression, comparison_expression, conjunction_expression, constructor_expression, custom_operator, diagnostic, dictionary_literal, directive, disjunction_expression, equality_expression, fully_open_range, hex_literal, if_statement, infix_expression, integer_literal, key_path_expression, key_path_string_expression, lambda_literal, line_string_literal, macro_invocation, multi_line_string_literal, multiplicative_expression, navigation_expression, nil_coalescing_expression, oct_literal, open_end_range_expression, open_start_range_expression, playground_literal, postfix_expression, prefix_expression, range_expression, raw_string_literal, real_literal, regex_literal, selector_expression, self_expression, simple_identifier, special_literal, super_expression, switch_statement, ternary_expression, try_expression, tuple_expression, value_pack_expansion, value_parameter_pack] + $children?: [additive_expression, array_literal, as_expression, assignment, await_expression, bang, bin_literal, bitwise_operation, boolean_literal, call_expression, check_expression, comparison_expression, conjunction_expression, constructor_expression, custom_operator, diagnostic, dictionary_literal, directive, disjunction_expression, equality_expression, fully_open_range, hex_literal, if_statement, infix_expression, integer_literal, key_path_expression, key_path_string_expression, lambda_literal, line_string_literal, macro_invocation, multi_line_string_literal, multiplicative_expression, navigation_expression, nil_coalescing_expression, oct_literal, open_end_range_expression, open_start_range_expression, optional_chain_marker, playground_literal, postfix_expression, prefix_expression, range_expression, raw_string_literal, real_literal, regex_literal, selector_expression, self_expression, simple_identifier, special_literal, super_expression, switch_statement, ternary_expression, try_expression, tuple_expression, value_pack_expansion, value_parameter_pack] disjunction_expression: - lhs+: ["!=", "!==", "%", "%=", "&", "*", "*=", "+", "++", "+=", "-", "--", "-=", "/", "/=", "<", "<<", "<=", "=", "==", "===", ">", ">=", ">>", "?", "^", additive_expression, array_literal, as_expression, assignment, await_expression, bang, bin_literal, bitwise_operation, boolean_literal, call_expression, check_expression, comparison_expression, conjunction_expression, constructor_expression, custom_operator, diagnostic, dictionary_literal, directive, disjunction_expression, equality_expression, fully_open_range, hex_literal, if_statement, infix_expression, integer_literal, key_path_expression, key_path_string_expression, lambda_literal, line_string_literal, macro_invocation, multi_line_string_literal, multiplicative_expression, navigation_expression, "nil", nil_coalescing_expression, oct_literal, open_end_range_expression, open_start_range_expression, playground_literal, postfix_expression, prefix_expression, range_expression, raw_string_literal, real_literal, regex_literal, selector_expression, self_expression, simple_identifier, special_literal, super_expression, switch_statement, ternary_expression, try_expression, tuple_expression, value_pack_expansion, value_parameter_pack, "|", "~"] + lhs: ["!=", "!==", "%", "%=", "&", "*", "*=", "+", "++", "+=", "-", "--", "-=", "/", "/=", "<", "<<", "<=", "=", "==", "===", ">", ">=", ">>", "^", additive_expression, array_literal, as_expression, assignment, await_expression, bang, bin_literal, bitwise_operation, boolean_literal, call_expression, check_expression, comparison_expression, conjunction_expression, constructor_expression, custom_operator, diagnostic, dictionary_literal, directive, disjunction_expression, equality_expression, fully_open_range, hex_literal, if_statement, infix_expression, integer_literal, key_path_expression, key_path_string_expression, lambda_literal, line_string_literal, macro_invocation, multi_line_string_literal, multiplicative_expression, navigation_expression, "nil", nil_coalescing_expression, oct_literal, open_end_range_expression, open_start_range_expression, optional_chain_marker, playground_literal, postfix_expression, prefix_expression, range_expression, raw_string_literal, real_literal, regex_literal, selector_expression, self_expression, simple_identifier, special_literal, super_expression, switch_statement, ternary_expression, try_expression, tuple_expression, value_pack_expansion, value_parameter_pack, "|", "~"] op: "||" - rhs+: ["!=", "!==", "%", "%=", "&", "*", "*=", "+", "++", "+=", "-", "--", "-=", "/", "/=", "<", "<<", "<=", "=", "==", "===", ">", ">=", ">>", "?", "^", additive_expression, array_literal, as_expression, assignment, await_expression, bang, bin_literal, bitwise_operation, boolean_literal, call_expression, check_expression, comparison_expression, conjunction_expression, constructor_expression, custom_operator, diagnostic, dictionary_literal, directive, disjunction_expression, equality_expression, fully_open_range, hex_literal, if_statement, infix_expression, integer_literal, key_path_expression, key_path_string_expression, lambda_literal, line_string_literal, macro_invocation, multi_line_string_literal, multiplicative_expression, navigation_expression, "nil", nil_coalescing_expression, oct_literal, open_end_range_expression, open_start_range_expression, playground_literal, postfix_expression, prefix_expression, range_expression, raw_string_literal, real_literal, regex_literal, selector_expression, self_expression, simple_identifier, special_literal, super_expression, switch_statement, ternary_expression, try_expression, tuple_expression, value_pack_expansion, value_parameter_pack, "|", "~"] + rhs: ["!=", "!==", "%", "%=", "&", "*", "*=", "+", "++", "+=", "-", "--", "-=", "/", "/=", "<", "<<", "<=", "=", "==", "===", ">", ">=", ">>", "^", additive_expression, array_literal, as_expression, assignment, await_expression, bang, bin_literal, bitwise_operation, boolean_literal, call_expression, check_expression, comparison_expression, conjunction_expression, constructor_expression, custom_operator, diagnostic, dictionary_literal, directive, disjunction_expression, equality_expression, fully_open_range, hex_literal, if_statement, infix_expression, integer_literal, key_path_expression, key_path_string_expression, lambda_literal, line_string_literal, macro_invocation, multi_line_string_literal, multiplicative_expression, navigation_expression, "nil", nil_coalescing_expression, oct_literal, open_end_range_expression, open_start_range_expression, optional_chain_marker, playground_literal, postfix_expression, prefix_expression, range_expression, raw_string_literal, real_literal, regex_literal, selector_expression, self_expression, simple_identifier, special_literal, super_expression, switch_statement, ternary_expression, try_expression, tuple_expression, value_pack_expansion, value_parameter_pack, "|", "~"] do_statement: $children*: [catch_block, statements] else: @@ -125,9 +125,9 @@ named: $children?: modifiers data_contents*: enum_type_parameters name+: simple_identifier - raw_value*: ["!=", "!==", "%", "%=", "&", "*", "*=", "+", "++", "+=", "-", "--", "-=", "/", "/=", "<", "<<", "<=", "=", "==", "===", ">", ">=", ">>", "?", "^", additive_expression, array_literal, as_expression, assignment, await_expression, bang, bin_literal, bitwise_operation, boolean_literal, call_expression, check_expression, comparison_expression, conjunction_expression, constructor_expression, custom_operator, diagnostic, dictionary_literal, directive, disjunction_expression, equality_expression, fully_open_range, hex_literal, if_statement, infix_expression, integer_literal, key_path_expression, key_path_string_expression, lambda_literal, line_string_literal, macro_invocation, multi_line_string_literal, multiplicative_expression, navigation_expression, "nil", nil_coalescing_expression, oct_literal, open_end_range_expression, open_start_range_expression, playground_literal, postfix_expression, prefix_expression, range_expression, raw_string_literal, real_literal, regex_literal, selector_expression, self_expression, simple_identifier, special_literal, super_expression, switch_statement, ternary_expression, try_expression, tuple_expression, value_pack_expansion, value_parameter_pack, "|", "~"] + raw_value*: ["!=", "!==", "%", "%=", "&", "*", "*=", "+", "++", "+=", "-", "--", "-=", "/", "/=", "<", "<<", "<=", "=", "==", "===", ">", ">=", ">>", "^", additive_expression, array_literal, as_expression, assignment, await_expression, bang, bin_literal, bitwise_operation, boolean_literal, call_expression, check_expression, comparison_expression, conjunction_expression, constructor_expression, custom_operator, diagnostic, dictionary_literal, directive, disjunction_expression, equality_expression, fully_open_range, hex_literal, if_statement, infix_expression, integer_literal, key_path_expression, key_path_string_expression, lambda_literal, line_string_literal, macro_invocation, multi_line_string_literal, multiplicative_expression, navigation_expression, "nil", nil_coalescing_expression, oct_literal, open_end_range_expression, open_start_range_expression, optional_chain_marker, playground_literal, postfix_expression, prefix_expression, range_expression, raw_string_literal, real_literal, regex_literal, selector_expression, self_expression, simple_identifier, special_literal, super_expression, switch_statement, ternary_expression, try_expression, tuple_expression, value_pack_expansion, value_parameter_pack, "|", "~"] enum_type_parameters: - $children*: [additive_expression, array_literal, as_expression, assignment, await_expression, bang, bin_literal, bitwise_operation, boolean_literal, call_expression, check_expression, comparison_expression, conjunction_expression, constructor_expression, custom_operator, diagnostic, dictionary_literal, directive, disjunction_expression, equality_expression, fully_open_range, hex_literal, if_statement, infix_expression, integer_literal, key_path_expression, key_path_string_expression, lambda_literal, line_string_literal, macro_invocation, multi_line_string_literal, multiplicative_expression, navigation_expression, nil_coalescing_expression, oct_literal, open_end_range_expression, open_start_range_expression, playground_literal, postfix_expression, prefix_expression, range_expression, raw_string_literal, real_literal, regex_literal, selector_expression, self_expression, simple_identifier, special_literal, super_expression, switch_statement, ternary_expression, try_expression, tuple_expression, type_modifiers, value_pack_expansion, value_parameter_pack, wildcard_pattern] + $children*: [additive_expression, array_literal, as_expression, assignment, await_expression, bang, bin_literal, bitwise_operation, boolean_literal, call_expression, check_expression, comparison_expression, conjunction_expression, constructor_expression, custom_operator, diagnostic, dictionary_literal, directive, disjunction_expression, equality_expression, fully_open_range, hex_literal, if_statement, infix_expression, integer_literal, key_path_expression, key_path_string_expression, lambda_literal, line_string_literal, macro_invocation, multi_line_string_literal, multiplicative_expression, navigation_expression, nil_coalescing_expression, oct_literal, open_end_range_expression, open_start_range_expression, optional_chain_marker, playground_literal, postfix_expression, prefix_expression, range_expression, raw_string_literal, real_literal, regex_literal, selector_expression, self_expression, simple_identifier, special_literal, super_expression, switch_statement, ternary_expression, try_expression, tuple_expression, type_modifiers, value_pack_expansion, value_parameter_pack, wildcard_pattern] name*: [array_type, dictionary_type, existential_type, function_type, metatype, opaque_type, optional_type, protocol_composition_type, suppressed_constraint, tuple_type, type_pack_expansion, type_parameter_pack, user_type] equality_constraint: $children*: attribute @@ -135,16 +135,16 @@ named: must_equal+: [array_type, dictionary_type, existential_type, function_type, metatype, opaque_type, optional_type, protocol_composition_type, suppressed_constraint, tuple_type, type_modifiers, type_pack_expansion, type_parameter_pack, user_type] name: [array_type, dictionary_type, existential_type, function_type, metatype, opaque_type, optional_type, protocol_composition_type, suppressed_constraint, tuple_type, type_pack_expansion, type_parameter_pack, user_type] equality_expression: - lhs+: ["!=", "!==", "%", "%=", "&", "*", "*=", "+", "++", "+=", "-", "--", "-=", "/", "/=", "<", "<<", "<=", "=", "==", "===", ">", ">=", ">>", "?", "^", additive_expression, array_literal, as_expression, assignment, await_expression, bang, bin_literal, bitwise_operation, boolean_literal, call_expression, check_expression, comparison_expression, conjunction_expression, constructor_expression, custom_operator, diagnostic, dictionary_literal, directive, disjunction_expression, equality_expression, fully_open_range, hex_literal, if_statement, infix_expression, integer_literal, key_path_expression, key_path_string_expression, lambda_literal, line_string_literal, macro_invocation, multi_line_string_literal, multiplicative_expression, navigation_expression, "nil", nil_coalescing_expression, oct_literal, open_end_range_expression, open_start_range_expression, playground_literal, postfix_expression, prefix_expression, range_expression, raw_string_literal, real_literal, regex_literal, selector_expression, self_expression, simple_identifier, special_literal, super_expression, switch_statement, ternary_expression, try_expression, tuple_expression, value_pack_expansion, value_parameter_pack, "|", "~"] + lhs: ["!=", "!==", "%", "%=", "&", "*", "*=", "+", "++", "+=", "-", "--", "-=", "/", "/=", "<", "<<", "<=", "=", "==", "===", ">", ">=", ">>", "^", additive_expression, array_literal, as_expression, assignment, await_expression, bang, bin_literal, bitwise_operation, boolean_literal, call_expression, check_expression, comparison_expression, conjunction_expression, constructor_expression, custom_operator, diagnostic, dictionary_literal, directive, disjunction_expression, equality_expression, fully_open_range, hex_literal, if_statement, infix_expression, integer_literal, key_path_expression, key_path_string_expression, lambda_literal, line_string_literal, macro_invocation, multi_line_string_literal, multiplicative_expression, navigation_expression, "nil", nil_coalescing_expression, oct_literal, open_end_range_expression, open_start_range_expression, optional_chain_marker, playground_literal, postfix_expression, prefix_expression, range_expression, raw_string_literal, real_literal, regex_literal, selector_expression, self_expression, simple_identifier, special_literal, super_expression, switch_statement, ternary_expression, try_expression, tuple_expression, value_pack_expansion, value_parameter_pack, "|", "~"] op: ["!=", "!==", "==", "==="] - rhs+: ["!=", "!==", "%", "%=", "&", "*", "*=", "+", "++", "+=", "-", "--", "-=", "/", "/=", "<", "<<", "<=", "=", "==", "===", ">", ">=", ">>", "?", "^", additive_expression, array_literal, as_expression, assignment, await_expression, bang, bin_literal, bitwise_operation, boolean_literal, call_expression, check_expression, comparison_expression, conjunction_expression, constructor_expression, custom_operator, diagnostic, dictionary_literal, directive, disjunction_expression, equality_expression, fully_open_range, hex_literal, if_statement, infix_expression, integer_literal, key_path_expression, key_path_string_expression, lambda_literal, line_string_literal, macro_invocation, multi_line_string_literal, multiplicative_expression, navigation_expression, "nil", nil_coalescing_expression, oct_literal, open_end_range_expression, open_start_range_expression, playground_literal, postfix_expression, prefix_expression, range_expression, raw_string_literal, real_literal, regex_literal, selector_expression, self_expression, simple_identifier, special_literal, super_expression, switch_statement, ternary_expression, try_expression, tuple_expression, value_pack_expansion, value_parameter_pack, "|", "~"] + rhs: ["!=", "!==", "%", "%=", "&", "*", "*=", "+", "++", "+=", "-", "--", "-=", "/", "/=", "<", "<<", "<=", "=", "==", "===", ">", ">=", ">>", "^", additive_expression, array_literal, as_expression, assignment, await_expression, bang, bin_literal, bitwise_operation, boolean_literal, call_expression, check_expression, comparison_expression, conjunction_expression, constructor_expression, custom_operator, diagnostic, dictionary_literal, directive, disjunction_expression, equality_expression, fully_open_range, hex_literal, if_statement, infix_expression, integer_literal, key_path_expression, key_path_string_expression, lambda_literal, line_string_literal, macro_invocation, multi_line_string_literal, multiplicative_expression, navigation_expression, "nil", nil_coalescing_expression, oct_literal, open_end_range_expression, open_start_range_expression, optional_chain_marker, playground_literal, postfix_expression, prefix_expression, range_expression, raw_string_literal, real_literal, regex_literal, selector_expression, self_expression, simple_identifier, special_literal, super_expression, switch_statement, ternary_expression, try_expression, tuple_expression, value_pack_expansion, value_parameter_pack, "|", "~"] existential_type: $children: [array_type, dictionary_type, existential_type, function_type, metatype, opaque_type, optional_type, protocol_composition_type, suppressed_constraint, tuple_type, type_pack_expansion, type_parameter_pack, user_type] external_macro_definition: $children: value_arguments for_statement: $children*: [statements, try_operator, type_annotation, where_clause] - collection+: ["!=", "!==", "%", "%=", "&", "*", "*=", "+", "++", "+=", "-", "--", "-=", "/", "/=", "<", "<<", "<=", "=", "==", "===", ">", ">=", ">>", "?", "^", additive_expression, array_literal, as_expression, assignment, await_expression, bang, bin_literal, bitwise_operation, boolean_literal, call_expression, check_expression, comparison_expression, conjunction_expression, constructor_expression, custom_operator, diagnostic, dictionary_literal, directive, disjunction_expression, equality_expression, fully_open_range, hex_literal, if_statement, infix_expression, integer_literal, key_path_expression, key_path_string_expression, lambda_literal, line_string_literal, macro_invocation, multi_line_string_literal, multiplicative_expression, navigation_expression, "nil", nil_coalescing_expression, oct_literal, open_end_range_expression, open_start_range_expression, playground_literal, postfix_expression, prefix_expression, range_expression, raw_string_literal, real_literal, regex_literal, selector_expression, self_expression, simple_identifier, special_literal, super_expression, switch_statement, ternary_expression, try_expression, tuple_expression, value_pack_expansion, value_parameter_pack, "|", "~"] + collection: ["!=", "!==", "%", "%=", "&", "*", "*=", "+", "++", "+=", "-", "--", "-=", "/", "/=", "<", "<<", "<=", "=", "==", "===", ">", ">=", ">>", "^", additive_expression, array_literal, as_expression, assignment, await_expression, bang, bin_literal, bitwise_operation, boolean_literal, call_expression, check_expression, comparison_expression, conjunction_expression, constructor_expression, custom_operator, diagnostic, dictionary_literal, directive, disjunction_expression, equality_expression, fully_open_range, hex_literal, if_statement, infix_expression, integer_literal, key_path_expression, key_path_string_expression, lambda_literal, line_string_literal, macro_invocation, multi_line_string_literal, multiplicative_expression, navigation_expression, "nil", nil_coalescing_expression, oct_literal, open_end_range_expression, open_start_range_expression, optional_chain_marker, playground_literal, postfix_expression, prefix_expression, range_expression, raw_string_literal, real_literal, regex_literal, selector_expression, self_expression, simple_identifier, special_literal, super_expression, switch_statement, ternary_expression, try_expression, tuple_expression, value_pack_expansion, value_parameter_pack, "|", "~"] item: pattern fully_open_range: function_body: @@ -152,7 +152,7 @@ named: function_declaration: $children*: [attribute, inheritance_modifier, modifiers, ownership_modifier, parameter, property_behavior_modifier, throws, throws_clause, type_constraints, type_parameters] body: function_body - default_value*: ["!=", "!==", "%", "%=", "&", "*", "*=", "+", "++", "+=", "-", "--", "-=", "/", "/=", "<", "<<", "<=", "=", "==", "===", ">", ">=", ">>", "?", "^", additive_expression, array_literal, as_expression, assignment, await_expression, bang, bin_literal, bitwise_operation, boolean_literal, call_expression, check_expression, comparison_expression, conjunction_expression, constructor_expression, custom_operator, diagnostic, dictionary_literal, directive, disjunction_expression, equality_expression, fully_open_range, hex_literal, if_statement, infix_expression, integer_literal, key_path_expression, key_path_string_expression, lambda_literal, line_string_literal, macro_invocation, multi_line_string_literal, multiplicative_expression, navigation_expression, "nil", nil_coalescing_expression, oct_literal, open_end_range_expression, open_start_range_expression, playground_literal, postfix_expression, prefix_expression, range_expression, raw_string_literal, real_literal, regex_literal, selector_expression, self_expression, simple_identifier, special_literal, super_expression, switch_statement, ternary_expression, try_expression, tuple_expression, value_pack_expansion, value_parameter_pack, "|", "~"] + default_value*: ["!=", "!==", "%", "%=", "&", "*", "*=", "+", "++", "+=", "-", "--", "-=", "/", "/=", "<", "<<", "<=", "=", "==", "===", ">", ">=", ">>", "^", additive_expression, array_literal, as_expression, assignment, await_expression, bang, bin_literal, bitwise_operation, boolean_literal, call_expression, check_expression, comparison_expression, conjunction_expression, constructor_expression, custom_operator, diagnostic, dictionary_literal, directive, disjunction_expression, equality_expression, fully_open_range, hex_literal, if_statement, infix_expression, integer_literal, key_path_expression, key_path_string_expression, lambda_literal, line_string_literal, macro_invocation, multi_line_string_literal, multiplicative_expression, navigation_expression, "nil", nil_coalescing_expression, oct_literal, open_end_range_expression, open_start_range_expression, optional_chain_marker, playground_literal, postfix_expression, prefix_expression, range_expression, raw_string_literal, real_literal, regex_literal, selector_expression, self_expression, simple_identifier, special_literal, super_expression, switch_statement, ternary_expression, try_expression, tuple_expression, value_pack_expansion, value_parameter_pack, "|", "~"] name+: ["!=", "!==", "%", "%=", "&", "*", "*=", "+", "++", "+=", "-", "--", "-=", "/", "/=", "<", "<<", "<=", "=", "==", "===", ">", ">=", ">>", "^", array_type, bang, custom_operator, dictionary_type, existential_type, function_type, metatype, opaque_type, optional_type, protocol_composition_type, simple_identifier, suppressed_constraint, tuple_type, type_pack_expansion, type_parameter_pack, user_type, "|", "~"] return_type*: ["!", array_type, dictionary_type, existential_type, function_type, metatype, opaque_type, optional_type, protocol_composition_type, suppressed_constraint, tuple_type, type_modifiers, type_pack_expansion, type_parameter_pack, user_type] function_modifier: @@ -166,7 +166,7 @@ named: guard_statement: $children+: [else, statements] bound_identifier*: simple_identifier - condition+: ["!=", "!==", "%", "%=", "&", "(", ")", "*", "*=", "+", "++", "+=", ",", "-", "--", "-=", ".", "/", "/=", ":", "<", "<<", "<=", "=", "==", "===", ">", ">=", ">>", "?", "^", additive_expression, array_literal, array_type, "as", as_expression, assignment, "async", availability_condition, await_expression, bang, bin_literal, bitwise_operation, boolean_literal, call_expression, "case", check_expression, comparison_expression, conjunction_expression, constructor_expression, custom_operator, diagnostic, dictionary_literal, dictionary_type, directive, disjunction_expression, equality_expression, existential_type, fully_open_range, function_type, hex_literal, if_statement, infix_expression, integer_literal, "is", key_path_expression, key_path_string_expression, lambda_literal, line_string_literal, macro_invocation, metatype, multi_line_string_literal, multiplicative_expression, navigation_expression, "nil", nil_coalescing_expression, oct_literal, opaque_type, open_end_range_expression, open_start_range_expression, optional_type, pattern, playground_literal, postfix_expression, prefix_expression, protocol_composition_type, range_expression, raw_string_literal, real_literal, regex_literal, selector_expression, self_expression, simple_identifier, special_literal, super_expression, suppressed_constraint, switch_statement, ternary_expression, try_expression, tuple_expression, tuple_type, type_annotation, type_modifiers, type_pack_expansion, type_parameter_pack, user_type, value_binding_pattern, value_pack_expansion, value_parameter_pack, where_clause, wildcard_pattern, "|", "~"] + condition+: ["!=", "!==", "%", "%=", "&", "(", ")", "*", "*=", "+", "++", "+=", ",", "-", "--", "-=", ".", "/", "/=", ":", "<", "<<", "<=", "=", "==", "===", ">", ">=", ">>", "?", "^", additive_expression, array_literal, array_type, "as", as_expression, assignment, "async", availability_condition, await_expression, bang, bin_literal, bitwise_operation, boolean_literal, call_expression, "case", check_expression, comparison_expression, conjunction_expression, constructor_expression, custom_operator, diagnostic, dictionary_literal, dictionary_type, directive, disjunction_expression, equality_expression, existential_type, fully_open_range, function_type, hex_literal, if_statement, infix_expression, integer_literal, "is", key_path_expression, key_path_string_expression, lambda_literal, line_string_literal, macro_invocation, metatype, multi_line_string_literal, multiplicative_expression, navigation_expression, "nil", nil_coalescing_expression, oct_literal, opaque_type, open_end_range_expression, open_start_range_expression, optional_chain_marker, optional_type, pattern, playground_literal, postfix_expression, prefix_expression, protocol_composition_type, range_expression, raw_string_literal, real_literal, regex_literal, selector_expression, self_expression, simple_identifier, special_literal, super_expression, suppressed_constraint, switch_statement, ternary_expression, try_expression, tuple_expression, tuple_type, type_annotation, type_modifiers, type_pack_expansion, type_parameter_pack, user_type, value_binding_pattern, value_pack_expansion, value_parameter_pack, where_clause, wildcard_pattern, "|", "~"] name*: [array_type, dictionary_type, existential_type, function_type, metatype, opaque_type, optional_type, protocol_composition_type, suppressed_constraint, tuple_type, type_pack_expansion, type_parameter_pack, user_type] hex_literal: identifier: @@ -174,14 +174,14 @@ named: if_statement: $children*: [else, if_statement, statements] bound_identifier*: simple_identifier - condition+: ["!=", "!==", "%", "%=", "&", "(", ")", "*", "*=", "+", "++", "+=", ",", "-", "--", "-=", ".", "/", "/=", ":", "<", "<<", "<=", "=", "==", "===", ">", ">=", ">>", "?", "^", additive_expression, array_literal, array_type, "as", as_expression, assignment, "async", availability_condition, await_expression, bang, bin_literal, bitwise_operation, boolean_literal, call_expression, "case", check_expression, comparison_expression, conjunction_expression, constructor_expression, custom_operator, diagnostic, dictionary_literal, dictionary_type, directive, disjunction_expression, equality_expression, existential_type, fully_open_range, function_type, hex_literal, if_statement, infix_expression, integer_literal, "is", key_path_expression, key_path_string_expression, lambda_literal, line_string_literal, macro_invocation, metatype, multi_line_string_literal, multiplicative_expression, navigation_expression, "nil", nil_coalescing_expression, oct_literal, opaque_type, open_end_range_expression, open_start_range_expression, optional_type, pattern, playground_literal, postfix_expression, prefix_expression, protocol_composition_type, range_expression, raw_string_literal, real_literal, regex_literal, selector_expression, self_expression, simple_identifier, special_literal, super_expression, suppressed_constraint, switch_statement, ternary_expression, try_expression, tuple_expression, tuple_type, type_annotation, type_modifiers, type_pack_expansion, type_parameter_pack, user_type, value_binding_pattern, value_pack_expansion, value_parameter_pack, where_clause, wildcard_pattern, "|", "~"] + condition+: ["!=", "!==", "%", "%=", "&", "(", ")", "*", "*=", "+", "++", "+=", ",", "-", "--", "-=", ".", "/", "/=", ":", "<", "<<", "<=", "=", "==", "===", ">", ">=", ">>", "?", "^", additive_expression, array_literal, array_type, "as", as_expression, assignment, "async", availability_condition, await_expression, bang, bin_literal, bitwise_operation, boolean_literal, call_expression, "case", check_expression, comparison_expression, conjunction_expression, constructor_expression, custom_operator, diagnostic, dictionary_literal, dictionary_type, directive, disjunction_expression, equality_expression, existential_type, fully_open_range, function_type, hex_literal, if_statement, infix_expression, integer_literal, "is", key_path_expression, key_path_string_expression, lambda_literal, line_string_literal, macro_invocation, metatype, multi_line_string_literal, multiplicative_expression, navigation_expression, "nil", nil_coalescing_expression, oct_literal, opaque_type, open_end_range_expression, open_start_range_expression, optional_chain_marker, optional_type, pattern, playground_literal, postfix_expression, prefix_expression, protocol_composition_type, range_expression, raw_string_literal, real_literal, regex_literal, selector_expression, self_expression, simple_identifier, special_literal, super_expression, suppressed_constraint, switch_statement, ternary_expression, try_expression, tuple_expression, tuple_type, type_annotation, type_modifiers, type_pack_expansion, type_parameter_pack, user_type, value_binding_pattern, value_pack_expansion, value_parameter_pack, where_clause, wildcard_pattern, "|", "~"] name*: [array_type, dictionary_type, existential_type, function_type, metatype, opaque_type, optional_type, protocol_composition_type, suppressed_constraint, tuple_type, type_pack_expansion, type_parameter_pack, user_type] import_declaration: $children+: [identifier, modifiers] infix_expression: - lhs+: ["!=", "!==", "%", "%=", "&", "*", "*=", "+", "++", "+=", "-", "--", "-=", "/", "/=", "<", "<<", "<=", "=", "==", "===", ">", ">=", ">>", "?", "^", additive_expression, array_literal, as_expression, assignment, await_expression, bang, bin_literal, bitwise_operation, boolean_literal, call_expression, check_expression, comparison_expression, conjunction_expression, constructor_expression, custom_operator, diagnostic, dictionary_literal, directive, disjunction_expression, equality_expression, fully_open_range, hex_literal, if_statement, infix_expression, integer_literal, key_path_expression, key_path_string_expression, lambda_literal, line_string_literal, macro_invocation, multi_line_string_literal, multiplicative_expression, navigation_expression, "nil", nil_coalescing_expression, oct_literal, open_end_range_expression, open_start_range_expression, playground_literal, postfix_expression, prefix_expression, range_expression, raw_string_literal, real_literal, regex_literal, selector_expression, self_expression, simple_identifier, special_literal, super_expression, switch_statement, ternary_expression, try_expression, tuple_expression, value_pack_expansion, value_parameter_pack, "|", "~"] + lhs: ["!=", "!==", "%", "%=", "&", "*", "*=", "+", "++", "+=", "-", "--", "-=", "/", "/=", "<", "<<", "<=", "=", "==", "===", ">", ">=", ">>", "^", additive_expression, array_literal, as_expression, assignment, await_expression, bang, bin_literal, bitwise_operation, boolean_literal, call_expression, check_expression, comparison_expression, conjunction_expression, constructor_expression, custom_operator, diagnostic, dictionary_literal, directive, disjunction_expression, equality_expression, fully_open_range, hex_literal, if_statement, infix_expression, integer_literal, key_path_expression, key_path_string_expression, lambda_literal, line_string_literal, macro_invocation, multi_line_string_literal, multiplicative_expression, navigation_expression, "nil", nil_coalescing_expression, oct_literal, open_end_range_expression, open_start_range_expression, optional_chain_marker, playground_literal, postfix_expression, prefix_expression, range_expression, raw_string_literal, real_literal, regex_literal, selector_expression, self_expression, simple_identifier, special_literal, super_expression, switch_statement, ternary_expression, try_expression, tuple_expression, value_pack_expansion, value_parameter_pack, "|", "~"] op: custom_operator - rhs+: ["!=", "!==", "%", "%=", "&", "*", "*=", "+", "++", "+=", "-", "--", "-=", "/", "/=", "<", "<<", "<=", "=", "==", "===", ">", ">=", ">>", "?", "^", additive_expression, array_literal, as_expression, assignment, await_expression, bang, bin_literal, bitwise_operation, boolean_literal, call_expression, check_expression, comparison_expression, conjunction_expression, constructor_expression, custom_operator, diagnostic, dictionary_literal, directive, disjunction_expression, equality_expression, fully_open_range, hex_literal, if_statement, infix_expression, integer_literal, key_path_expression, key_path_string_expression, lambda_literal, line_string_literal, macro_invocation, multi_line_string_literal, multiplicative_expression, navigation_expression, "nil", nil_coalescing_expression, oct_literal, open_end_range_expression, open_start_range_expression, playground_literal, postfix_expression, prefix_expression, range_expression, raw_string_literal, real_literal, regex_literal, selector_expression, self_expression, simple_identifier, special_literal, super_expression, switch_statement, ternary_expression, try_expression, tuple_expression, value_pack_expansion, value_parameter_pack, "|", "~"] + rhs: ["!=", "!==", "%", "%=", "&", "*", "*=", "+", "++", "+=", "-", "--", "-=", "/", "/=", "<", "<<", "<=", "=", "==", "===", ">", ">=", ">>", "^", additive_expression, array_literal, as_expression, assignment, await_expression, bang, bin_literal, bitwise_operation, boolean_literal, call_expression, check_expression, comparison_expression, conjunction_expression, constructor_expression, custom_operator, diagnostic, dictionary_literal, directive, disjunction_expression, equality_expression, fully_open_range, hex_literal, if_statement, infix_expression, integer_literal, key_path_expression, key_path_string_expression, lambda_literal, line_string_literal, macro_invocation, multi_line_string_literal, multiplicative_expression, navigation_expression, "nil", nil_coalescing_expression, oct_literal, open_end_range_expression, open_start_range_expression, optional_chain_marker, playground_literal, postfix_expression, prefix_expression, range_expression, raw_string_literal, real_literal, regex_literal, selector_expression, self_expression, simple_identifier, special_literal, super_expression, switch_statement, ternary_expression, try_expression, tuple_expression, value_pack_expansion, value_parameter_pack, "|", "~"] inheritance_constraint: $children*: attribute constrained_type+: [".", array_type, dictionary_type, existential_type, function_type, identifier, metatype, opaque_type, optional_type, protocol_composition_type, simple_identifier, suppressed_constraint, tuple_type, type_pack_expansion, type_parameter_pack, user_type] @@ -193,18 +193,18 @@ named: init_declaration: $children*: [attribute, bang, modifiers, parameter, throws, throws_clause, type_constraints, type_parameters] body?: function_body - default_value*: ["!=", "!==", "%", "%=", "&", "*", "*=", "+", "++", "+=", "-", "--", "-=", "/", "/=", "<", "<<", "<=", "=", "==", "===", ">", ">=", ">>", "?", "^", additive_expression, array_literal, as_expression, assignment, await_expression, bang, bin_literal, bitwise_operation, boolean_literal, call_expression, check_expression, comparison_expression, conjunction_expression, constructor_expression, custom_operator, diagnostic, dictionary_literal, directive, disjunction_expression, equality_expression, fully_open_range, hex_literal, if_statement, infix_expression, integer_literal, key_path_expression, key_path_string_expression, lambda_literal, line_string_literal, macro_invocation, multi_line_string_literal, multiplicative_expression, navigation_expression, "nil", nil_coalescing_expression, oct_literal, open_end_range_expression, open_start_range_expression, playground_literal, postfix_expression, prefix_expression, range_expression, raw_string_literal, real_literal, regex_literal, selector_expression, self_expression, simple_identifier, special_literal, super_expression, switch_statement, ternary_expression, try_expression, tuple_expression, value_pack_expansion, value_parameter_pack, "|", "~"] + default_value*: ["!=", "!==", "%", "%=", "&", "*", "*=", "+", "++", "+=", "-", "--", "-=", "/", "/=", "<", "<<", "<=", "=", "==", "===", ">", ">=", ">>", "^", additive_expression, array_literal, as_expression, assignment, await_expression, bang, bin_literal, bitwise_operation, boolean_literal, call_expression, check_expression, comparison_expression, conjunction_expression, constructor_expression, custom_operator, diagnostic, dictionary_literal, directive, disjunction_expression, equality_expression, fully_open_range, hex_literal, if_statement, infix_expression, integer_literal, key_path_expression, key_path_string_expression, lambda_literal, line_string_literal, macro_invocation, multi_line_string_literal, multiplicative_expression, navigation_expression, "nil", nil_coalescing_expression, oct_literal, open_end_range_expression, open_start_range_expression, optional_chain_marker, playground_literal, postfix_expression, prefix_expression, range_expression, raw_string_literal, real_literal, regex_literal, selector_expression, self_expression, simple_identifier, special_literal, super_expression, switch_statement, ternary_expression, try_expression, tuple_expression, value_pack_expansion, value_parameter_pack, "|", "~"] name: "init" integer_literal: interpolated_expression: $children?: type_modifiers name?: value_argument_label reference_specifier*: value_argument_label - value*: ["!=", "!==", "%", "%=", "&", "*", "*=", "+", "++", "+=", "-", "--", "-=", "/", "/=", "<", "<<", "<=", "=", "==", "===", ">", ">=", ">>", "?", "^", additive_expression, array_literal, as_expression, assignment, await_expression, bang, bin_literal, bitwise_operation, boolean_literal, call_expression, check_expression, comparison_expression, conjunction_expression, constructor_expression, custom_operator, diagnostic, dictionary_literal, directive, disjunction_expression, equality_expression, fully_open_range, hex_literal, if_statement, infix_expression, integer_literal, key_path_expression, key_path_string_expression, lambda_literal, line_string_literal, macro_invocation, multi_line_string_literal, multiplicative_expression, navigation_expression, "nil", nil_coalescing_expression, oct_literal, open_end_range_expression, open_start_range_expression, playground_literal, postfix_expression, prefix_expression, range_expression, raw_string_literal, real_literal, regex_literal, selector_expression, self_expression, simple_identifier, special_literal, super_expression, switch_statement, ternary_expression, try_expression, tuple_expression, value_pack_expansion, value_parameter_pack, "|", "~"] + value?: ["!=", "!==", "%", "%=", "&", "*", "*=", "+", "++", "+=", "-", "--", "-=", "/", "/=", "<", "<<", "<=", "=", "==", "===", ">", ">=", ">>", "^", additive_expression, array_literal, as_expression, assignment, await_expression, bang, bin_literal, bitwise_operation, boolean_literal, call_expression, check_expression, comparison_expression, conjunction_expression, constructor_expression, custom_operator, diagnostic, dictionary_literal, directive, disjunction_expression, equality_expression, fully_open_range, hex_literal, if_statement, infix_expression, integer_literal, key_path_expression, key_path_string_expression, lambda_literal, line_string_literal, macro_invocation, multi_line_string_literal, multiplicative_expression, navigation_expression, "nil", nil_coalescing_expression, oct_literal, open_end_range_expression, open_start_range_expression, optional_chain_marker, playground_literal, postfix_expression, prefix_expression, range_expression, raw_string_literal, real_literal, regex_literal, selector_expression, self_expression, simple_identifier, special_literal, super_expression, switch_statement, ternary_expression, try_expression, tuple_expression, value_pack_expansion, value_parameter_pack, "|", "~"] key_path_expression: $children*: [array_type, bang, dictionary_type, simple_identifier, type_arguments, type_identifier, value_argument] key_path_string_expression: - $children?: [additive_expression, array_literal, as_expression, assignment, await_expression, bang, bin_literal, bitwise_operation, boolean_literal, call_expression, check_expression, comparison_expression, conjunction_expression, constructor_expression, custom_operator, diagnostic, dictionary_literal, directive, disjunction_expression, equality_expression, fully_open_range, hex_literal, if_statement, infix_expression, integer_literal, key_path_expression, key_path_string_expression, lambda_literal, line_string_literal, macro_invocation, multi_line_string_literal, multiplicative_expression, navigation_expression, nil_coalescing_expression, oct_literal, open_end_range_expression, open_start_range_expression, playground_literal, postfix_expression, prefix_expression, range_expression, raw_string_literal, real_literal, regex_literal, selector_expression, self_expression, simple_identifier, special_literal, super_expression, switch_statement, ternary_expression, try_expression, tuple_expression, value_pack_expansion, value_parameter_pack] + $children?: [additive_expression, array_literal, as_expression, assignment, await_expression, bang, bin_literal, bitwise_operation, boolean_literal, call_expression, check_expression, comparison_expression, conjunction_expression, constructor_expression, custom_operator, diagnostic, dictionary_literal, directive, disjunction_expression, equality_expression, fully_open_range, hex_literal, if_statement, infix_expression, integer_literal, key_path_expression, key_path_string_expression, lambda_literal, line_string_literal, macro_invocation, multi_line_string_literal, multiplicative_expression, navigation_expression, nil_coalescing_expression, oct_literal, open_end_range_expression, open_start_range_expression, optional_chain_marker, playground_literal, postfix_expression, prefix_expression, range_expression, raw_string_literal, real_literal, regex_literal, selector_expression, self_expression, simple_identifier, special_literal, super_expression, switch_statement, ternary_expression, try_expression, tuple_expression, value_pack_expansion, value_parameter_pack] lambda_function_type: $children*: [lambda_function_type_parameters, throws, throws_clause] name?: [array_type, dictionary_type, existential_type, function_type, metatype, opaque_type, optional_type, protocol_composition_type, suppressed_constraint, tuple_type, type_pack_expansion, type_parameter_pack, user_type] @@ -226,10 +226,10 @@ named: text*: [line_str_text, str_escaped_char] macro_declaration: $children+: [array_type, attribute, dictionary_type, existential_type, function_type, metatype, modifiers, opaque_type, optional_type, parameter, protocol_composition_type, simple_identifier, suppressed_constraint, tuple_type, type_constraints, type_pack_expansion, type_parameter_pack, type_parameters, user_type] - default_value*: ["!=", "!==", "%", "%=", "&", "*", "*=", "+", "++", "+=", "-", "--", "-=", "/", "/=", "<", "<<", "<=", "=", "==", "===", ">", ">=", ">>", "?", "^", additive_expression, array_literal, as_expression, assignment, await_expression, bang, bin_literal, bitwise_operation, boolean_literal, call_expression, check_expression, comparison_expression, conjunction_expression, constructor_expression, custom_operator, diagnostic, dictionary_literal, directive, disjunction_expression, equality_expression, fully_open_range, hex_literal, if_statement, infix_expression, integer_literal, key_path_expression, key_path_string_expression, lambda_literal, line_string_literal, macro_invocation, multi_line_string_literal, multiplicative_expression, navigation_expression, "nil", nil_coalescing_expression, oct_literal, open_end_range_expression, open_start_range_expression, playground_literal, postfix_expression, prefix_expression, range_expression, raw_string_literal, real_literal, regex_literal, selector_expression, self_expression, simple_identifier, special_literal, super_expression, switch_statement, ternary_expression, try_expression, tuple_expression, value_pack_expansion, value_parameter_pack, "|", "~"] + default_value*: ["!=", "!==", "%", "%=", "&", "*", "*=", "+", "++", "+=", "-", "--", "-=", "/", "/=", "<", "<<", "<=", "=", "==", "===", ">", ">=", ">>", "^", additive_expression, array_literal, as_expression, assignment, await_expression, bang, bin_literal, bitwise_operation, boolean_literal, call_expression, check_expression, comparison_expression, conjunction_expression, constructor_expression, custom_operator, diagnostic, dictionary_literal, directive, disjunction_expression, equality_expression, fully_open_range, hex_literal, if_statement, infix_expression, integer_literal, key_path_expression, key_path_string_expression, lambda_literal, line_string_literal, macro_invocation, multi_line_string_literal, multiplicative_expression, navigation_expression, "nil", nil_coalescing_expression, oct_literal, open_end_range_expression, open_start_range_expression, optional_chain_marker, playground_literal, postfix_expression, prefix_expression, range_expression, raw_string_literal, real_literal, regex_literal, selector_expression, self_expression, simple_identifier, special_literal, super_expression, switch_statement, ternary_expression, try_expression, tuple_expression, value_pack_expansion, value_parameter_pack, "|", "~"] definition?: macro_definition macro_definition: - body+: ["!=", "!==", "%", "%=", "&", "*", "*=", "+", "++", "+=", "-", "--", "-=", "/", "/=", "<", "<<", "<=", "=", "==", "===", ">", ">=", ">>", "?", "^", additive_expression, array_literal, as_expression, assignment, await_expression, bang, bin_literal, bitwise_operation, boolean_literal, call_expression, check_expression, comparison_expression, conjunction_expression, constructor_expression, custom_operator, diagnostic, dictionary_literal, directive, disjunction_expression, equality_expression, external_macro_definition, fully_open_range, hex_literal, if_statement, infix_expression, integer_literal, key_path_expression, key_path_string_expression, lambda_literal, line_string_literal, macro_invocation, multi_line_string_literal, multiplicative_expression, navigation_expression, "nil", nil_coalescing_expression, oct_literal, open_end_range_expression, open_start_range_expression, playground_literal, postfix_expression, prefix_expression, range_expression, raw_string_literal, real_literal, regex_literal, selector_expression, self_expression, simple_identifier, special_literal, super_expression, switch_statement, ternary_expression, try_expression, tuple_expression, value_pack_expansion, value_parameter_pack, "|", "~"] + body: ["!=", "!==", "%", "%=", "&", "*", "*=", "+", "++", "+=", "-", "--", "-=", "/", "/=", "<", "<<", "<=", "=", "==", "===", ">", ">=", ">>", "^", additive_expression, array_literal, as_expression, assignment, await_expression, bang, bin_literal, bitwise_operation, boolean_literal, call_expression, check_expression, comparison_expression, conjunction_expression, constructor_expression, custom_operator, diagnostic, dictionary_literal, directive, disjunction_expression, equality_expression, external_macro_definition, fully_open_range, hex_literal, if_statement, infix_expression, integer_literal, key_path_expression, key_path_string_expression, lambda_literal, line_string_literal, macro_invocation, multi_line_string_literal, multiplicative_expression, navigation_expression, "nil", nil_coalescing_expression, oct_literal, open_end_range_expression, open_start_range_expression, optional_chain_marker, playground_literal, postfix_expression, prefix_expression, range_expression, raw_string_literal, real_literal, regex_literal, selector_expression, self_expression, simple_identifier, special_literal, super_expression, switch_statement, ternary_expression, try_expression, tuple_expression, value_pack_expansion, value_parameter_pack, "|", "~"] macro_invocation: $children+: [call_suffix, simple_identifier, type_parameters] member_modifier: @@ -245,28 +245,30 @@ named: text*: ["\"", multi_line_str_text, str_escaped_char] multiline_comment: multiplicative_expression: - lhs+: ["!=", "!==", "%", "%=", "&", "*", "*=", "+", "++", "+=", "-", "--", "-=", "/", "/=", "<", "<<", "<=", "=", "==", "===", ">", ">=", ">>", "?", "^", additive_expression, array_literal, as_expression, assignment, await_expression, bang, bin_literal, bitwise_operation, boolean_literal, call_expression, check_expression, comparison_expression, conjunction_expression, constructor_expression, custom_operator, diagnostic, dictionary_literal, directive, disjunction_expression, equality_expression, fully_open_range, hex_literal, if_statement, infix_expression, integer_literal, key_path_expression, key_path_string_expression, lambda_literal, line_string_literal, macro_invocation, multi_line_string_literal, multiplicative_expression, navigation_expression, "nil", nil_coalescing_expression, oct_literal, open_end_range_expression, open_start_range_expression, playground_literal, postfix_expression, prefix_expression, range_expression, raw_string_literal, real_literal, regex_literal, selector_expression, self_expression, simple_identifier, special_literal, super_expression, switch_statement, ternary_expression, try_expression, tuple_expression, value_pack_expansion, value_parameter_pack, "|", "~"] + lhs: ["!=", "!==", "%", "%=", "&", "*", "*=", "+", "++", "+=", "-", "--", "-=", "/", "/=", "<", "<<", "<=", "=", "==", "===", ">", ">=", ">>", "^", additive_expression, array_literal, as_expression, assignment, await_expression, bang, bin_literal, bitwise_operation, boolean_literal, call_expression, check_expression, comparison_expression, conjunction_expression, constructor_expression, custom_operator, diagnostic, dictionary_literal, directive, disjunction_expression, equality_expression, fully_open_range, hex_literal, if_statement, infix_expression, integer_literal, key_path_expression, key_path_string_expression, lambda_literal, line_string_literal, macro_invocation, multi_line_string_literal, multiplicative_expression, navigation_expression, "nil", nil_coalescing_expression, oct_literal, open_end_range_expression, open_start_range_expression, optional_chain_marker, playground_literal, postfix_expression, prefix_expression, range_expression, raw_string_literal, real_literal, regex_literal, selector_expression, self_expression, simple_identifier, special_literal, super_expression, switch_statement, ternary_expression, try_expression, tuple_expression, value_pack_expansion, value_parameter_pack, "|", "~"] op: ["%", "*", "/"] - rhs+: ["!=", "!==", "%", "%=", "&", "*", "*=", "+", "++", "+=", "-", "--", "-=", "/", "/=", "<", "<<", "<=", "=", "==", "===", ">", ">=", ">>", "?", "^", additive_expression, array_literal, as_expression, assignment, await_expression, bang, bin_literal, bitwise_operation, boolean_literal, call_expression, check_expression, comparison_expression, conjunction_expression, constructor_expression, custom_operator, diagnostic, dictionary_literal, directive, disjunction_expression, equality_expression, fully_open_range, hex_literal, if_statement, infix_expression, integer_literal, key_path_expression, key_path_string_expression, lambda_literal, line_string_literal, macro_invocation, multi_line_string_literal, multiplicative_expression, navigation_expression, "nil", nil_coalescing_expression, oct_literal, open_end_range_expression, open_start_range_expression, playground_literal, postfix_expression, prefix_expression, range_expression, raw_string_literal, real_literal, regex_literal, selector_expression, self_expression, simple_identifier, special_literal, super_expression, switch_statement, ternary_expression, try_expression, tuple_expression, value_pack_expansion, value_parameter_pack, "|", "~"] + rhs: ["!=", "!==", "%", "%=", "&", "*", "*=", "+", "++", "+=", "-", "--", "-=", "/", "/=", "<", "<<", "<=", "=", "==", "===", ">", ">=", ">>", "^", additive_expression, array_literal, as_expression, assignment, await_expression, bang, bin_literal, bitwise_operation, boolean_literal, call_expression, check_expression, comparison_expression, conjunction_expression, constructor_expression, custom_operator, diagnostic, dictionary_literal, directive, disjunction_expression, equality_expression, fully_open_range, hex_literal, if_statement, infix_expression, integer_literal, key_path_expression, key_path_string_expression, lambda_literal, line_string_literal, macro_invocation, multi_line_string_literal, multiplicative_expression, navigation_expression, "nil", nil_coalescing_expression, oct_literal, open_end_range_expression, open_start_range_expression, optional_chain_marker, playground_literal, postfix_expression, prefix_expression, range_expression, raw_string_literal, real_literal, regex_literal, selector_expression, self_expression, simple_identifier, special_literal, super_expression, switch_statement, ternary_expression, try_expression, tuple_expression, value_pack_expansion, value_parameter_pack, "|", "~"] mutation_modifier: navigation_expression: element?: [dictionary_type, existential_type, opaque_type] suffix: navigation_suffix - target+: ["!=", "!==", "%", "%=", "&", "(", ")", "*", "*=", "+", "++", "+=", "-", "--", "-=", "/", "/=", "<", "<<", "<=", "=", "==", "===", ">", ">=", ">>", "?", "^", additive_expression, array_literal, array_type, as_expression, assignment, await_expression, bang, bin_literal, bitwise_operation, boolean_literal, call_expression, check_expression, comparison_expression, conjunction_expression, constructor_expression, custom_operator, diagnostic, dictionary_literal, dictionary_type, directive, disjunction_expression, equality_expression, existential_type, fully_open_range, hex_literal, if_statement, infix_expression, integer_literal, key_path_expression, key_path_string_expression, lambda_literal, line_string_literal, macro_invocation, multi_line_string_literal, multiplicative_expression, navigation_expression, "nil", nil_coalescing_expression, oct_literal, opaque_type, open_end_range_expression, open_start_range_expression, playground_literal, postfix_expression, prefix_expression, range_expression, raw_string_literal, real_literal, regex_literal, selector_expression, self_expression, simple_identifier, special_literal, super_expression, switch_statement, ternary_expression, try_expression, tuple_expression, user_type, value_pack_expansion, value_parameter_pack, "|", "~"] + target+: ["!=", "!==", "%", "%=", "&", "(", ")", "*", "*=", "+", "++", "+=", "-", "--", "-=", "/", "/=", "<", "<<", "<=", "=", "==", "===", ">", ">=", ">>", "^", additive_expression, array_literal, array_type, as_expression, assignment, await_expression, bang, bin_literal, bitwise_operation, boolean_literal, call_expression, check_expression, comparison_expression, conjunction_expression, constructor_expression, custom_operator, diagnostic, dictionary_literal, dictionary_type, directive, disjunction_expression, equality_expression, existential_type, fully_open_range, hex_literal, if_statement, infix_expression, integer_literal, key_path_expression, key_path_string_expression, lambda_literal, line_string_literal, macro_invocation, multi_line_string_literal, multiplicative_expression, navigation_expression, "nil", nil_coalescing_expression, oct_literal, opaque_type, open_end_range_expression, open_start_range_expression, optional_chain_marker, playground_literal, postfix_expression, prefix_expression, range_expression, raw_string_literal, real_literal, regex_literal, selector_expression, self_expression, simple_identifier, special_literal, super_expression, switch_statement, ternary_expression, try_expression, tuple_expression, user_type, value_pack_expansion, value_parameter_pack, "|", "~"] navigation_suffix: suffix: [integer_literal, simple_identifier] nil_coalescing_expression: - if_nil+: ["!=", "!==", "%", "%=", "&", "*", "*=", "+", "++", "+=", "-", "--", "-=", "/", "/=", "<", "<<", "<=", "=", "==", "===", ">", ">=", ">>", "?", "^", additive_expression, array_literal, as_expression, assignment, await_expression, bang, bin_literal, bitwise_operation, boolean_literal, call_expression, check_expression, comparison_expression, conjunction_expression, constructor_expression, custom_operator, diagnostic, dictionary_literal, directive, disjunction_expression, equality_expression, fully_open_range, hex_literal, if_statement, infix_expression, integer_literal, key_path_expression, key_path_string_expression, lambda_literal, line_string_literal, macro_invocation, multi_line_string_literal, multiplicative_expression, navigation_expression, "nil", nil_coalescing_expression, oct_literal, open_end_range_expression, open_start_range_expression, playground_literal, postfix_expression, prefix_expression, range_expression, raw_string_literal, real_literal, regex_literal, selector_expression, self_expression, simple_identifier, special_literal, super_expression, switch_statement, ternary_expression, try_expression, tuple_expression, value_pack_expansion, value_parameter_pack, "|", "~"] - value+: ["!=", "!==", "%", "%=", "&", "*", "*=", "+", "++", "+=", "-", "--", "-=", "/", "/=", "<", "<<", "<=", "=", "==", "===", ">", ">=", ">>", "?", "^", additive_expression, array_literal, as_expression, assignment, await_expression, bang, bin_literal, bitwise_operation, boolean_literal, call_expression, check_expression, comparison_expression, conjunction_expression, constructor_expression, custom_operator, diagnostic, dictionary_literal, directive, disjunction_expression, equality_expression, fully_open_range, hex_literal, if_statement, infix_expression, integer_literal, key_path_expression, key_path_string_expression, lambda_literal, line_string_literal, macro_invocation, multi_line_string_literal, multiplicative_expression, navigation_expression, "nil", nil_coalescing_expression, oct_literal, open_end_range_expression, open_start_range_expression, playground_literal, postfix_expression, prefix_expression, range_expression, raw_string_literal, real_literal, regex_literal, selector_expression, self_expression, simple_identifier, special_literal, super_expression, switch_statement, ternary_expression, try_expression, tuple_expression, value_pack_expansion, value_parameter_pack, "|", "~"] + if_nil: ["!=", "!==", "%", "%=", "&", "*", "*=", "+", "++", "+=", "-", "--", "-=", "/", "/=", "<", "<<", "<=", "=", "==", "===", ">", ">=", ">>", "^", additive_expression, array_literal, as_expression, assignment, await_expression, bang, bin_literal, bitwise_operation, boolean_literal, call_expression, check_expression, comparison_expression, conjunction_expression, constructor_expression, custom_operator, diagnostic, dictionary_literal, directive, disjunction_expression, equality_expression, fully_open_range, hex_literal, if_statement, infix_expression, integer_literal, key_path_expression, key_path_string_expression, lambda_literal, line_string_literal, macro_invocation, multi_line_string_literal, multiplicative_expression, navigation_expression, "nil", nil_coalescing_expression, oct_literal, open_end_range_expression, open_start_range_expression, optional_chain_marker, playground_literal, postfix_expression, prefix_expression, range_expression, raw_string_literal, real_literal, regex_literal, selector_expression, self_expression, simple_identifier, special_literal, super_expression, switch_statement, ternary_expression, try_expression, tuple_expression, value_pack_expansion, value_parameter_pack, "|", "~"] + value: ["!=", "!==", "%", "%=", "&", "*", "*=", "+", "++", "+=", "-", "--", "-=", "/", "/=", "<", "<<", "<=", "=", "==", "===", ">", ">=", ">>", "^", additive_expression, array_literal, as_expression, assignment, await_expression, bang, bin_literal, bitwise_operation, boolean_literal, call_expression, check_expression, comparison_expression, conjunction_expression, constructor_expression, custom_operator, diagnostic, dictionary_literal, directive, disjunction_expression, equality_expression, fully_open_range, hex_literal, if_statement, infix_expression, integer_literal, key_path_expression, key_path_string_expression, lambda_literal, line_string_literal, macro_invocation, multi_line_string_literal, multiplicative_expression, navigation_expression, "nil", nil_coalescing_expression, oct_literal, open_end_range_expression, open_start_range_expression, optional_chain_marker, playground_literal, postfix_expression, prefix_expression, range_expression, raw_string_literal, real_literal, regex_literal, selector_expression, self_expression, simple_identifier, special_literal, super_expression, switch_statement, ternary_expression, try_expression, tuple_expression, value_pack_expansion, value_parameter_pack, "|", "~"] oct_literal: opaque_type: $children: [array_type, dictionary_type, existential_type, function_type, metatype, opaque_type, optional_type, protocol_composition_type, suppressed_constraint, tuple_type, type_pack_expansion, type_parameter_pack, user_type] open_end_range_expression: - start+: ["!=", "!==", "%", "%=", "&", "*", "*=", "+", "++", "+=", "-", "--", "-=", "/", "/=", "<", "<<", "<=", "=", "==", "===", ">", ">=", ">>", "?", "^", additive_expression, array_literal, as_expression, assignment, await_expression, bang, bin_literal, bitwise_operation, boolean_literal, call_expression, check_expression, comparison_expression, conjunction_expression, constructor_expression, custom_operator, diagnostic, dictionary_literal, directive, disjunction_expression, equality_expression, fully_open_range, hex_literal, if_statement, infix_expression, integer_literal, key_path_expression, key_path_string_expression, lambda_literal, line_string_literal, macro_invocation, multi_line_string_literal, multiplicative_expression, navigation_expression, "nil", nil_coalescing_expression, oct_literal, open_end_range_expression, open_start_range_expression, playground_literal, postfix_expression, prefix_expression, range_expression, raw_string_literal, real_literal, regex_literal, selector_expression, self_expression, simple_identifier, special_literal, super_expression, switch_statement, ternary_expression, try_expression, tuple_expression, value_pack_expansion, value_parameter_pack, "|", "~"] + start: ["!=", "!==", "%", "%=", "&", "*", "*=", "+", "++", "+=", "-", "--", "-=", "/", "/=", "<", "<<", "<=", "=", "==", "===", ">", ">=", ">>", "^", additive_expression, array_literal, as_expression, assignment, await_expression, bang, bin_literal, bitwise_operation, boolean_literal, call_expression, check_expression, comparison_expression, conjunction_expression, constructor_expression, custom_operator, diagnostic, dictionary_literal, directive, disjunction_expression, equality_expression, fully_open_range, hex_literal, if_statement, infix_expression, integer_literal, key_path_expression, key_path_string_expression, lambda_literal, line_string_literal, macro_invocation, multi_line_string_literal, multiplicative_expression, navigation_expression, "nil", nil_coalescing_expression, oct_literal, open_end_range_expression, open_start_range_expression, optional_chain_marker, playground_literal, postfix_expression, prefix_expression, range_expression, raw_string_literal, real_literal, regex_literal, selector_expression, self_expression, simple_identifier, special_literal, super_expression, switch_statement, ternary_expression, try_expression, tuple_expression, value_pack_expansion, value_parameter_pack, "|", "~"] open_start_range_expression: - end+: ["!=", "!==", "%", "%=", "&", "*", "*=", "+", "++", "+=", "-", "--", "-=", "/", "/=", "<", "<<", "<=", "=", "==", "===", ">", ">=", ">>", "?", "^", additive_expression, array_literal, as_expression, assignment, await_expression, bang, bin_literal, bitwise_operation, boolean_literal, call_expression, check_expression, comparison_expression, conjunction_expression, constructor_expression, custom_operator, diagnostic, dictionary_literal, directive, disjunction_expression, equality_expression, fully_open_range, hex_literal, if_statement, infix_expression, integer_literal, key_path_expression, key_path_string_expression, lambda_literal, line_string_literal, macro_invocation, multi_line_string_literal, multiplicative_expression, navigation_expression, "nil", nil_coalescing_expression, oct_literal, open_end_range_expression, open_start_range_expression, playground_literal, postfix_expression, prefix_expression, range_expression, raw_string_literal, real_literal, regex_literal, selector_expression, self_expression, simple_identifier, special_literal, super_expression, switch_statement, ternary_expression, try_expression, tuple_expression, value_pack_expansion, value_parameter_pack, "|", "~"] + end: ["!=", "!==", "%", "%=", "&", "*", "*=", "+", "++", "+=", "-", "--", "-=", "/", "/=", "<", "<<", "<=", "=", "==", "===", ">", ">=", ">>", "^", additive_expression, array_literal, as_expression, assignment, await_expression, bang, bin_literal, bitwise_operation, boolean_literal, call_expression, check_expression, comparison_expression, conjunction_expression, constructor_expression, custom_operator, diagnostic, dictionary_literal, directive, disjunction_expression, equality_expression, fully_open_range, hex_literal, if_statement, infix_expression, integer_literal, key_path_expression, key_path_string_expression, lambda_literal, line_string_literal, macro_invocation, multi_line_string_literal, multiplicative_expression, navigation_expression, "nil", nil_coalescing_expression, oct_literal, open_end_range_expression, open_start_range_expression, optional_chain_marker, playground_literal, postfix_expression, prefix_expression, range_expression, raw_string_literal, real_literal, regex_literal, selector_expression, self_expression, simple_identifier, special_literal, super_expression, switch_statement, ternary_expression, try_expression, tuple_expression, value_pack_expansion, value_parameter_pack, "|", "~"] operator_declaration: $children*: [bang, custom_operator, deprecated_operator_declaration_body, simple_identifier] + optional_chain_marker: + $children?: [additive_expression, array_literal, as_expression, assignment, await_expression, bang, bin_literal, bitwise_operation, boolean_literal, call_expression, check_expression, comparison_expression, conjunction_expression, constructor_expression, custom_operator, diagnostic, dictionary_literal, directive, disjunction_expression, equality_expression, fully_open_range, hex_literal, if_statement, infix_expression, integer_literal, key_path_expression, key_path_string_expression, lambda_literal, line_string_literal, macro_invocation, multi_line_string_literal, multiplicative_expression, navigation_expression, nil_coalescing_expression, oct_literal, open_end_range_expression, open_start_range_expression, optional_chain_marker, playground_literal, postfix_expression, prefix_expression, range_expression, raw_string_literal, real_literal, regex_literal, selector_expression, self_expression, simple_identifier, special_literal, super_expression, switch_statement, ternary_expression, try_expression, tuple_expression, value_pack_expansion, value_parameter_pack] optional_type: wrapped: [array_type, dictionary_type, tuple_type, user_type] ownership_modifier: @@ -279,14 +281,14 @@ named: parameter_modifiers: $children+: parameter_modifier pattern: - $children*: [additive_expression, array_literal, as_expression, assignment, await_expression, bang, bin_literal, bitwise_operation, boolean_literal, call_expression, check_expression, comparison_expression, conjunction_expression, constructor_expression, custom_operator, diagnostic, dictionary_literal, directive, disjunction_expression, equality_expression, fully_open_range, hex_literal, if_statement, infix_expression, integer_literal, key_path_expression, key_path_string_expression, lambda_literal, line_string_literal, macro_invocation, multi_line_string_literal, multiplicative_expression, navigation_expression, nil_coalescing_expression, oct_literal, open_end_range_expression, open_start_range_expression, pattern, playground_literal, postfix_expression, prefix_expression, range_expression, raw_string_literal, real_literal, regex_literal, selector_expression, self_expression, simple_identifier, special_literal, super_expression, switch_statement, ternary_expression, try_expression, tuple_expression, type_modifiers, user_type, value_binding_pattern, value_pack_expansion, value_parameter_pack, wildcard_pattern] + $children*: [additive_expression, array_literal, as_expression, assignment, await_expression, bang, bin_literal, bitwise_operation, boolean_literal, call_expression, check_expression, comparison_expression, conjunction_expression, constructor_expression, custom_operator, diagnostic, dictionary_literal, directive, disjunction_expression, equality_expression, fully_open_range, hex_literal, if_statement, infix_expression, integer_literal, key_path_expression, key_path_string_expression, lambda_literal, line_string_literal, macro_invocation, multi_line_string_literal, multiplicative_expression, navigation_expression, nil_coalescing_expression, oct_literal, open_end_range_expression, open_start_range_expression, optional_chain_marker, pattern, playground_literal, postfix_expression, prefix_expression, range_expression, raw_string_literal, real_literal, regex_literal, selector_expression, self_expression, simple_identifier, special_literal, super_expression, switch_statement, ternary_expression, try_expression, tuple_expression, type_modifiers, user_type, value_binding_pattern, value_pack_expansion, value_parameter_pack, wildcard_pattern] bound_identifier?: simple_identifier name?: [array_type, dictionary_type, existential_type, function_type, metatype, opaque_type, optional_type, protocol_composition_type, suppressed_constraint, tuple_type, type_pack_expansion, type_parameter_pack, user_type] playground_literal: - $children+: [additive_expression, array_literal, as_expression, assignment, await_expression, bang, bin_literal, bitwise_operation, boolean_literal, call_expression, check_expression, comparison_expression, conjunction_expression, constructor_expression, custom_operator, diagnostic, dictionary_literal, directive, disjunction_expression, equality_expression, fully_open_range, hex_literal, if_statement, infix_expression, integer_literal, key_path_expression, key_path_string_expression, lambda_literal, line_string_literal, macro_invocation, multi_line_string_literal, multiplicative_expression, navigation_expression, nil_coalescing_expression, oct_literal, open_end_range_expression, open_start_range_expression, playground_literal, postfix_expression, prefix_expression, range_expression, raw_string_literal, real_literal, regex_literal, selector_expression, self_expression, simple_identifier, special_literal, super_expression, switch_statement, ternary_expression, try_expression, tuple_expression, value_pack_expansion, value_parameter_pack] + $children+: [additive_expression, array_literal, as_expression, assignment, await_expression, bang, bin_literal, bitwise_operation, boolean_literal, call_expression, check_expression, comparison_expression, conjunction_expression, constructor_expression, custom_operator, diagnostic, dictionary_literal, directive, disjunction_expression, equality_expression, fully_open_range, hex_literal, if_statement, infix_expression, integer_literal, key_path_expression, key_path_string_expression, lambda_literal, line_string_literal, macro_invocation, multi_line_string_literal, multiplicative_expression, navigation_expression, nil_coalescing_expression, oct_literal, open_end_range_expression, open_start_range_expression, optional_chain_marker, playground_literal, postfix_expression, prefix_expression, range_expression, raw_string_literal, real_literal, regex_literal, selector_expression, self_expression, simple_identifier, special_literal, super_expression, switch_statement, ternary_expression, try_expression, tuple_expression, value_pack_expansion, value_parameter_pack] postfix_expression: operation: ["++", "--", bang] - target+: ["!=", "!==", "%", "%=", "&", "*", "*=", "+", "++", "+=", "-", "--", "-=", "/", "/=", "<", "<<", "<=", "=", "==", "===", ">", ">=", ">>", "?", "^", additive_expression, array_literal, as_expression, assignment, await_expression, bang, bin_literal, bitwise_operation, boolean_literal, call_expression, check_expression, comparison_expression, conjunction_expression, constructor_expression, custom_operator, diagnostic, dictionary_literal, directive, disjunction_expression, equality_expression, fully_open_range, hex_literal, if_statement, infix_expression, integer_literal, key_path_expression, key_path_string_expression, lambda_literal, line_string_literal, macro_invocation, multi_line_string_literal, multiplicative_expression, navigation_expression, "nil", nil_coalescing_expression, oct_literal, open_end_range_expression, open_start_range_expression, playground_literal, postfix_expression, prefix_expression, range_expression, raw_string_literal, real_literal, regex_literal, selector_expression, self_expression, simple_identifier, special_literal, super_expression, switch_statement, ternary_expression, try_expression, tuple_expression, value_pack_expansion, value_parameter_pack, "|", "~"] + target: ["!=", "!==", "%", "%=", "&", "*", "*=", "+", "++", "+=", "-", "--", "-=", "/", "/=", "<", "<<", "<=", "=", "==", "===", ">", ">=", ">>", "^", additive_expression, array_literal, as_expression, assignment, await_expression, bang, bin_literal, bitwise_operation, boolean_literal, call_expression, check_expression, comparison_expression, conjunction_expression, constructor_expression, custom_operator, diagnostic, dictionary_literal, directive, disjunction_expression, equality_expression, fully_open_range, hex_literal, if_statement, infix_expression, integer_literal, key_path_expression, key_path_string_expression, lambda_literal, line_string_literal, macro_invocation, multi_line_string_literal, multiplicative_expression, navigation_expression, "nil", nil_coalescing_expression, oct_literal, open_end_range_expression, open_start_range_expression, optional_chain_marker, playground_literal, postfix_expression, prefix_expression, range_expression, raw_string_literal, real_literal, regex_literal, selector_expression, self_expression, simple_identifier, special_literal, super_expression, switch_statement, ternary_expression, try_expression, tuple_expression, value_pack_expansion, value_parameter_pack, "|", "~"] precedence_group_attribute: $children+: [boolean_literal, simple_identifier] precedence_group_attributes: @@ -295,13 +297,13 @@ named: $children+: [precedence_group_attributes, simple_identifier] prefix_expression: operation: ["&", "+", "++", "-", "--", ".", bang, custom_operator, "~"] - target+: ["!=", "!==", "%", "%=", "&", "*", "*=", "+", "++", "+=", "-", "--", "-=", "/", "/=", "<", "<<", "<=", "=", "==", "===", ">", ">=", ">>", "?", "^", _expression, additive_expression, array_literal, as_expression, assignment, await_expression, bang, bin_literal, bitwise_operation, boolean_literal, call_expression, check_expression, comparison_expression, conjunction_expression, constructor_expression, custom_operator, diagnostic, dictionary_literal, directive, disjunction_expression, equality_expression, fully_open_range, hex_literal, if_statement, infix_expression, integer_literal, key_path_expression, key_path_string_expression, lambda_literal, line_string_literal, macro_invocation, multi_line_string_literal, multiplicative_expression, navigation_expression, "nil", nil_coalescing_expression, oct_literal, open_end_range_expression, open_start_range_expression, playground_literal, postfix_expression, prefix_expression, range_expression, raw_string_literal, real_literal, regex_literal, selector_expression, self_expression, simple_identifier, special_literal, super_expression, switch_statement, ternary_expression, try_expression, tuple_expression, value_pack_expansion, value_parameter_pack, "|", "~"] + target: ["!=", "!==", "%", "%=", "&", "*", "*=", "+", "++", "+=", "-", "--", "-=", "/", "/=", "<", "<<", "<=", "=", "==", "===", ">", ">=", ">>", "^", _expression, additive_expression, array_literal, as_expression, assignment, await_expression, bang, bin_literal, bitwise_operation, boolean_literal, call_expression, check_expression, comparison_expression, conjunction_expression, constructor_expression, custom_operator, diagnostic, dictionary_literal, directive, disjunction_expression, equality_expression, fully_open_range, hex_literal, if_statement, infix_expression, integer_literal, key_path_expression, key_path_string_expression, lambda_literal, line_string_literal, macro_invocation, multi_line_string_literal, multiplicative_expression, navigation_expression, "nil", nil_coalescing_expression, oct_literal, open_end_range_expression, open_start_range_expression, optional_chain_marker, playground_literal, postfix_expression, prefix_expression, range_expression, raw_string_literal, real_literal, regex_literal, selector_expression, self_expression, simple_identifier, special_literal, super_expression, switch_statement, ternary_expression, try_expression, tuple_expression, value_pack_expansion, value_parameter_pack, "|", "~"] property_behavior_modifier: property_declaration: $children*: [attribute, inheritance_modifier, modifiers, ownership_modifier, property_behavior_modifier, type_annotation, type_constraints, value_binding_pattern, willset_didset_block] computed_value*: computed_property name+: pattern - value*: ["!=", "!==", "%", "%=", "&", "*", "*=", "+", "++", "+=", "-", "--", "-=", "/", "/=", "<", "<<", "<=", "=", "==", "===", ">", ">=", ">>", "?", "^", additive_expression, array_literal, as_expression, assignment, await_expression, bang, bin_literal, bitwise_operation, boolean_literal, call_expression, check_expression, comparison_expression, conjunction_expression, constructor_expression, custom_operator, diagnostic, dictionary_literal, directive, disjunction_expression, equality_expression, fully_open_range, hex_literal, if_statement, infix_expression, integer_literal, key_path_expression, key_path_string_expression, lambda_literal, line_string_literal, macro_invocation, multi_line_string_literal, multiplicative_expression, navigation_expression, "nil", nil_coalescing_expression, oct_literal, open_end_range_expression, open_start_range_expression, playground_literal, postfix_expression, prefix_expression, range_expression, raw_string_literal, real_literal, regex_literal, selector_expression, self_expression, simple_identifier, special_literal, super_expression, switch_statement, ternary_expression, try_expression, tuple_expression, value_pack_expansion, value_parameter_pack, "|", "~"] + value*: ["!=", "!==", "%", "%=", "&", "*", "*=", "+", "++", "+=", "-", "--", "-=", "/", "/=", "<", "<<", "<=", "=", "==", "===", ">", ">=", ">>", "^", additive_expression, array_literal, as_expression, assignment, await_expression, bang, bin_literal, bitwise_operation, boolean_literal, call_expression, check_expression, comparison_expression, conjunction_expression, constructor_expression, custom_operator, diagnostic, dictionary_literal, directive, disjunction_expression, equality_expression, fully_open_range, hex_literal, if_statement, infix_expression, integer_literal, key_path_expression, key_path_string_expression, lambda_literal, line_string_literal, macro_invocation, multi_line_string_literal, multiplicative_expression, navigation_expression, "nil", nil_coalescing_expression, oct_literal, open_end_range_expression, open_start_range_expression, optional_chain_marker, playground_literal, postfix_expression, prefix_expression, range_expression, raw_string_literal, real_literal, regex_literal, selector_expression, self_expression, simple_identifier, special_literal, super_expression, switch_statement, ternary_expression, try_expression, tuple_expression, value_pack_expansion, value_parameter_pack, "|", "~"] property_modifier: protocol_body: $children*: [associatedtype_declaration, deinit_declaration, init_declaration, protocol_function_declaration, protocol_property_declaration, subscript_declaration, typealias_declaration] @@ -315,7 +317,7 @@ named: name: type_identifier protocol_function_declaration: $children*: [attribute, modifiers, parameter, statements, throws, throws_clause, type_constraints, type_parameters] - default_value*: ["!=", "!==", "%", "%=", "&", "*", "*=", "+", "++", "+=", "-", "--", "-=", "/", "/=", "<", "<<", "<=", "=", "==", "===", ">", ">=", ">>", "?", "^", additive_expression, array_literal, as_expression, assignment, await_expression, bang, bin_literal, bitwise_operation, boolean_literal, call_expression, check_expression, comparison_expression, conjunction_expression, constructor_expression, custom_operator, diagnostic, dictionary_literal, directive, disjunction_expression, equality_expression, fully_open_range, hex_literal, if_statement, infix_expression, integer_literal, key_path_expression, key_path_string_expression, lambda_literal, line_string_literal, macro_invocation, multi_line_string_literal, multiplicative_expression, navigation_expression, "nil", nil_coalescing_expression, oct_literal, open_end_range_expression, open_start_range_expression, playground_literal, postfix_expression, prefix_expression, range_expression, raw_string_literal, real_literal, regex_literal, selector_expression, self_expression, simple_identifier, special_literal, super_expression, switch_statement, ternary_expression, try_expression, tuple_expression, value_pack_expansion, value_parameter_pack, "|", "~"] + default_value*: ["!=", "!==", "%", "%=", "&", "*", "*=", "+", "++", "+=", "-", "--", "-=", "/", "/=", "<", "<<", "<=", "=", "==", "===", ">", ">=", ">>", "^", additive_expression, array_literal, as_expression, assignment, await_expression, bang, bin_literal, bitwise_operation, boolean_literal, call_expression, check_expression, comparison_expression, conjunction_expression, constructor_expression, custom_operator, diagnostic, dictionary_literal, directive, disjunction_expression, equality_expression, fully_open_range, hex_literal, if_statement, infix_expression, integer_literal, key_path_expression, key_path_string_expression, lambda_literal, line_string_literal, macro_invocation, multi_line_string_literal, multiplicative_expression, navigation_expression, "nil", nil_coalescing_expression, oct_literal, open_end_range_expression, open_start_range_expression, optional_chain_marker, playground_literal, postfix_expression, prefix_expression, range_expression, raw_string_literal, real_literal, regex_literal, selector_expression, self_expression, simple_identifier, special_literal, super_expression, switch_statement, ternary_expression, try_expression, tuple_expression, value_pack_expansion, value_parameter_pack, "|", "~"] name*: ["!=", "!==", "%", "%=", "&", "*", "*=", "+", "++", "+=", "-", "--", "-=", "/", "/=", "<", "<<", "<=", "=", "==", "===", ">", ">=", ">>", "^", array_type, bang, custom_operator, dictionary_type, existential_type, function_type, metatype, opaque_type, optional_type, protocol_composition_type, simple_identifier, suppressed_constraint, tuple_type, type_pack_expansion, type_parameter_pack, user_type, "|", "~"] return_type*: ["!", array_type, dictionary_type, existential_type, function_type, metatype, opaque_type, optional_type, protocol_composition_type, suppressed_constraint, tuple_type, type_modifiers, type_pack_expansion, type_parameter_pack, user_type] protocol_property_declaration: @@ -324,9 +326,9 @@ named: protocol_property_requirements: $children*: [getter_specifier, setter_specifier] range_expression: - end+: ["!=", "!==", "%", "%=", "&", "*", "*=", "+", "++", "+=", "-", "--", "-=", "/", "/=", "<", "<<", "<=", "=", "==", "===", ">", ">=", ">>", "?", "^", additive_expression, array_literal, as_expression, assignment, await_expression, bang, bin_literal, bitwise_operation, boolean_literal, call_expression, check_expression, comparison_expression, conjunction_expression, constructor_expression, custom_operator, diagnostic, dictionary_literal, directive, disjunction_expression, equality_expression, fully_open_range, hex_literal, if_statement, infix_expression, integer_literal, key_path_expression, key_path_string_expression, lambda_literal, line_string_literal, macro_invocation, multi_line_string_literal, multiplicative_expression, navigation_expression, "nil", nil_coalescing_expression, oct_literal, open_end_range_expression, open_start_range_expression, playground_literal, postfix_expression, prefix_expression, range_expression, raw_string_literal, real_literal, regex_literal, selector_expression, self_expression, simple_identifier, special_literal, super_expression, switch_statement, ternary_expression, try_expression, tuple_expression, value_pack_expansion, value_parameter_pack, "|", "~"] + end: ["!=", "!==", "%", "%=", "&", "*", "*=", "+", "++", "+=", "-", "--", "-=", "/", "/=", "<", "<<", "<=", "=", "==", "===", ">", ">=", ">>", "^", additive_expression, array_literal, as_expression, assignment, await_expression, bang, bin_literal, bitwise_operation, boolean_literal, call_expression, check_expression, comparison_expression, conjunction_expression, constructor_expression, custom_operator, diagnostic, dictionary_literal, directive, disjunction_expression, equality_expression, fully_open_range, hex_literal, if_statement, infix_expression, integer_literal, key_path_expression, key_path_string_expression, lambda_literal, line_string_literal, macro_invocation, multi_line_string_literal, multiplicative_expression, navigation_expression, "nil", nil_coalescing_expression, oct_literal, open_end_range_expression, open_start_range_expression, optional_chain_marker, playground_literal, postfix_expression, prefix_expression, range_expression, raw_string_literal, real_literal, regex_literal, selector_expression, self_expression, simple_identifier, special_literal, super_expression, switch_statement, ternary_expression, try_expression, tuple_expression, value_pack_expansion, value_parameter_pack, "|", "~"] op: ["...", "..<"] - start+: ["!=", "!==", "%", "%=", "&", "*", "*=", "+", "++", "+=", "-", "--", "-=", "/", "/=", "<", "<<", "<=", "=", "==", "===", ">", ">=", ">>", "?", "^", additive_expression, array_literal, as_expression, assignment, await_expression, bang, bin_literal, bitwise_operation, boolean_literal, call_expression, check_expression, comparison_expression, conjunction_expression, constructor_expression, custom_operator, diagnostic, dictionary_literal, directive, disjunction_expression, equality_expression, fully_open_range, hex_literal, if_statement, infix_expression, integer_literal, key_path_expression, key_path_string_expression, lambda_literal, line_string_literal, macro_invocation, multi_line_string_literal, multiplicative_expression, navigation_expression, "nil", nil_coalescing_expression, oct_literal, open_end_range_expression, open_start_range_expression, playground_literal, postfix_expression, prefix_expression, range_expression, raw_string_literal, real_literal, regex_literal, selector_expression, self_expression, simple_identifier, special_literal, super_expression, switch_statement, ternary_expression, try_expression, tuple_expression, value_pack_expansion, value_parameter_pack, "|", "~"] + start: ["!=", "!==", "%", "%=", "&", "*", "*=", "+", "++", "+=", "-", "--", "-=", "/", "/=", "<", "<<", "<=", "=", "==", "===", ">", ">=", ">>", "^", additive_expression, array_literal, as_expression, assignment, await_expression, bang, bin_literal, bitwise_operation, boolean_literal, call_expression, check_expression, comparison_expression, conjunction_expression, constructor_expression, custom_operator, diagnostic, dictionary_literal, directive, disjunction_expression, equality_expression, fully_open_range, hex_literal, if_statement, infix_expression, integer_literal, key_path_expression, key_path_string_expression, lambda_literal, line_string_literal, macro_invocation, multi_line_string_literal, multiplicative_expression, navigation_expression, "nil", nil_coalescing_expression, oct_literal, open_end_range_expression, open_start_range_expression, optional_chain_marker, playground_literal, postfix_expression, prefix_expression, range_expression, raw_string_literal, real_literal, regex_literal, selector_expression, self_expression, simple_identifier, special_literal, super_expression, switch_statement, ternary_expression, try_expression, tuple_expression, value_pack_expansion, value_parameter_pack, "|", "~"] raw_str_continuing_indicator: raw_str_end_part: raw_str_interpolation: @@ -343,52 +345,52 @@ named: repeat_while_statement: $children?: statements bound_identifier*: simple_identifier - condition+: ["!=", "!==", "%", "%=", "&", "(", ")", "*", "*=", "+", "++", "+=", ",", "-", "--", "-=", ".", "/", "/=", ":", "<", "<<", "<=", "=", "==", "===", ">", ">=", ">>", "?", "^", additive_expression, array_literal, array_type, "as", as_expression, assignment, "async", availability_condition, await_expression, bang, bin_literal, bitwise_operation, boolean_literal, call_expression, "case", check_expression, comparison_expression, conjunction_expression, constructor_expression, custom_operator, diagnostic, dictionary_literal, dictionary_type, directive, disjunction_expression, equality_expression, existential_type, fully_open_range, function_type, hex_literal, if_statement, infix_expression, integer_literal, "is", key_path_expression, key_path_string_expression, lambda_literal, line_string_literal, macro_invocation, metatype, multi_line_string_literal, multiplicative_expression, navigation_expression, "nil", nil_coalescing_expression, oct_literal, opaque_type, open_end_range_expression, open_start_range_expression, optional_type, pattern, playground_literal, postfix_expression, prefix_expression, protocol_composition_type, range_expression, raw_string_literal, real_literal, regex_literal, selector_expression, self_expression, simple_identifier, special_literal, super_expression, suppressed_constraint, switch_statement, ternary_expression, try_expression, tuple_expression, tuple_type, type_annotation, type_modifiers, type_pack_expansion, type_parameter_pack, user_type, value_binding_pattern, value_pack_expansion, value_parameter_pack, where_clause, wildcard_pattern, "|", "~"] + condition+: ["!=", "!==", "%", "%=", "&", "(", ")", "*", "*=", "+", "++", "+=", ",", "-", "--", "-=", ".", "/", "/=", ":", "<", "<<", "<=", "=", "==", "===", ">", ">=", ">>", "?", "^", additive_expression, array_literal, array_type, "as", as_expression, assignment, "async", availability_condition, await_expression, bang, bin_literal, bitwise_operation, boolean_literal, call_expression, "case", check_expression, comparison_expression, conjunction_expression, constructor_expression, custom_operator, diagnostic, dictionary_literal, dictionary_type, directive, disjunction_expression, equality_expression, existential_type, fully_open_range, function_type, hex_literal, if_statement, infix_expression, integer_literal, "is", key_path_expression, key_path_string_expression, lambda_literal, line_string_literal, macro_invocation, metatype, multi_line_string_literal, multiplicative_expression, navigation_expression, "nil", nil_coalescing_expression, oct_literal, opaque_type, open_end_range_expression, open_start_range_expression, optional_chain_marker, optional_type, pattern, playground_literal, postfix_expression, prefix_expression, protocol_composition_type, range_expression, raw_string_literal, real_literal, regex_literal, selector_expression, self_expression, simple_identifier, special_literal, super_expression, suppressed_constraint, switch_statement, ternary_expression, try_expression, tuple_expression, tuple_type, type_annotation, type_modifiers, type_pack_expansion, type_parameter_pack, user_type, value_binding_pattern, value_pack_expansion, value_parameter_pack, where_clause, wildcard_pattern, "|", "~"] name*: [array_type, dictionary_type, existential_type, function_type, metatype, opaque_type, optional_type, protocol_composition_type, suppressed_constraint, tuple_type, type_pack_expansion, type_parameter_pack, user_type] selector_expression: - $children?: [additive_expression, array_literal, as_expression, assignment, await_expression, bang, bin_literal, bitwise_operation, boolean_literal, call_expression, check_expression, comparison_expression, conjunction_expression, constructor_expression, custom_operator, diagnostic, dictionary_literal, directive, disjunction_expression, equality_expression, fully_open_range, hex_literal, if_statement, infix_expression, integer_literal, key_path_expression, key_path_string_expression, lambda_literal, line_string_literal, macro_invocation, multi_line_string_literal, multiplicative_expression, navigation_expression, nil_coalescing_expression, oct_literal, open_end_range_expression, open_start_range_expression, playground_literal, postfix_expression, prefix_expression, range_expression, raw_string_literal, real_literal, regex_literal, selector_expression, self_expression, simple_identifier, special_literal, super_expression, switch_statement, ternary_expression, try_expression, tuple_expression, value_pack_expansion, value_parameter_pack] + $children?: [additive_expression, array_literal, as_expression, assignment, await_expression, bang, bin_literal, bitwise_operation, boolean_literal, call_expression, check_expression, comparison_expression, conjunction_expression, constructor_expression, custom_operator, diagnostic, dictionary_literal, directive, disjunction_expression, equality_expression, fully_open_range, hex_literal, if_statement, infix_expression, integer_literal, key_path_expression, key_path_string_expression, lambda_literal, line_string_literal, macro_invocation, multi_line_string_literal, multiplicative_expression, navigation_expression, nil_coalescing_expression, oct_literal, open_end_range_expression, open_start_range_expression, optional_chain_marker, playground_literal, postfix_expression, prefix_expression, range_expression, raw_string_literal, real_literal, regex_literal, selector_expression, self_expression, simple_identifier, special_literal, super_expression, switch_statement, ternary_expression, try_expression, tuple_expression, value_pack_expansion, value_parameter_pack] self_expression: setter_specifier: $children?: mutation_modifier shebang_line: simple_identifier: source_file: - $children*: [additive_expression, array_literal, as_expression, assignment, associatedtype_declaration, await_expression, bang, bin_literal, bitwise_operation, boolean_literal, call_expression, check_expression, class_declaration, comparison_expression, conjunction_expression, constructor_expression, custom_operator, diagnostic, dictionary_literal, directive, disjunction_expression, do_statement, equality_expression, for_statement, fully_open_range, function_declaration, guard_statement, hex_literal, if_statement, import_declaration, infix_expression, init_declaration, integer_literal, key_path_expression, key_path_string_expression, lambda_literal, line_string_literal, macro_declaration, macro_invocation, multi_line_string_literal, multiplicative_expression, navigation_expression, nil_coalescing_expression, oct_literal, open_end_range_expression, open_start_range_expression, operator_declaration, playground_literal, postfix_expression, precedence_group_declaration, prefix_expression, property_declaration, protocol_declaration, range_expression, raw_string_literal, real_literal, regex_literal, repeat_while_statement, selector_expression, self_expression, shebang_line, simple_identifier, special_literal, statement_label, super_expression, switch_statement, ternary_expression, throw_keyword, try_expression, tuple_expression, typealias_declaration, value_pack_expansion, value_parameter_pack, while_statement] + $children*: [additive_expression, array_literal, as_expression, assignment, associatedtype_declaration, await_expression, bang, bin_literal, bitwise_operation, boolean_literal, call_expression, check_expression, class_declaration, comparison_expression, conjunction_expression, constructor_expression, custom_operator, diagnostic, dictionary_literal, directive, disjunction_expression, do_statement, equality_expression, for_statement, fully_open_range, function_declaration, guard_statement, hex_literal, if_statement, import_declaration, infix_expression, init_declaration, integer_literal, key_path_expression, key_path_string_expression, lambda_literal, line_string_literal, macro_declaration, macro_invocation, multi_line_string_literal, multiplicative_expression, navigation_expression, nil_coalescing_expression, oct_literal, open_end_range_expression, open_start_range_expression, operator_declaration, optional_chain_marker, playground_literal, postfix_expression, precedence_group_declaration, prefix_expression, property_declaration, protocol_declaration, range_expression, raw_string_literal, real_literal, regex_literal, repeat_while_statement, selector_expression, self_expression, shebang_line, simple_identifier, special_literal, statement_label, super_expression, switch_statement, ternary_expression, throw_keyword, try_expression, tuple_expression, typealias_declaration, value_pack_expansion, value_parameter_pack, while_statement] special_literal: statement_label: statements: - $children*: [additive_expression, array_literal, as_expression, assignment, await_expression, bang, bin_literal, bitwise_operation, boolean_literal, call_expression, check_expression, class_declaration, comparison_expression, conjunction_expression, constructor_expression, control_transfer_statement, custom_operator, diagnostic, dictionary_literal, directive, disjunction_expression, do_statement, equality_expression, for_statement, fully_open_range, function_declaration, guard_statement, hex_literal, if_statement, infix_expression, integer_literal, key_path_expression, key_path_string_expression, lambda_literal, line_string_literal, macro_invocation, multi_line_string_literal, multiplicative_expression, navigation_expression, nil_coalescing_expression, oct_literal, open_end_range_expression, open_start_range_expression, playground_literal, postfix_expression, prefix_expression, property_declaration, range_expression, raw_string_literal, real_literal, regex_literal, repeat_while_statement, selector_expression, self_expression, simple_identifier, special_literal, statement_label, super_expression, switch_statement, ternary_expression, try_expression, tuple_expression, typealias_declaration, value_pack_expansion, value_parameter_pack, while_statement] + $children*: [additive_expression, array_literal, as_expression, assignment, await_expression, bang, bin_literal, bitwise_operation, boolean_literal, call_expression, check_expression, class_declaration, comparison_expression, conjunction_expression, constructor_expression, control_transfer_statement, custom_operator, diagnostic, dictionary_literal, directive, disjunction_expression, do_statement, equality_expression, for_statement, fully_open_range, function_declaration, guard_statement, hex_literal, if_statement, infix_expression, integer_literal, key_path_expression, key_path_string_expression, lambda_literal, line_string_literal, macro_invocation, multi_line_string_literal, multiplicative_expression, navigation_expression, nil_coalescing_expression, oct_literal, open_end_range_expression, open_start_range_expression, optional_chain_marker, playground_literal, postfix_expression, prefix_expression, property_declaration, range_expression, raw_string_literal, real_literal, regex_literal, repeat_while_statement, selector_expression, self_expression, simple_identifier, special_literal, statement_label, super_expression, switch_statement, ternary_expression, try_expression, tuple_expression, typealias_declaration, value_pack_expansion, value_parameter_pack, while_statement] str_escaped_char: subscript_declaration: $children+: [attribute, computed_property, modifiers, parameter, type_constraints, type_parameters] - default_value*: ["!=", "!==", "%", "%=", "&", "*", "*=", "+", "++", "+=", "-", "--", "-=", "/", "/=", "<", "<<", "<=", "=", "==", "===", ">", ">=", ">>", "?", "^", additive_expression, array_literal, as_expression, assignment, await_expression, bang, bin_literal, bitwise_operation, boolean_literal, call_expression, check_expression, comparison_expression, conjunction_expression, constructor_expression, custom_operator, diagnostic, dictionary_literal, directive, disjunction_expression, equality_expression, fully_open_range, hex_literal, if_statement, infix_expression, integer_literal, key_path_expression, key_path_string_expression, lambda_literal, line_string_literal, macro_invocation, multi_line_string_literal, multiplicative_expression, navigation_expression, "nil", nil_coalescing_expression, oct_literal, open_end_range_expression, open_start_range_expression, playground_literal, postfix_expression, prefix_expression, range_expression, raw_string_literal, real_literal, regex_literal, selector_expression, self_expression, simple_identifier, special_literal, super_expression, switch_statement, ternary_expression, try_expression, tuple_expression, value_pack_expansion, value_parameter_pack, "|", "~"] + default_value*: ["!=", "!==", "%", "%=", "&", "*", "*=", "+", "++", "+=", "-", "--", "-=", "/", "/=", "<", "<<", "<=", "=", "==", "===", ">", ">=", ">>", "^", additive_expression, array_literal, as_expression, assignment, await_expression, bang, bin_literal, bitwise_operation, boolean_literal, call_expression, check_expression, comparison_expression, conjunction_expression, constructor_expression, custom_operator, diagnostic, dictionary_literal, directive, disjunction_expression, equality_expression, fully_open_range, hex_literal, if_statement, infix_expression, integer_literal, key_path_expression, key_path_string_expression, lambda_literal, line_string_literal, macro_invocation, multi_line_string_literal, multiplicative_expression, navigation_expression, "nil", nil_coalescing_expression, oct_literal, open_end_range_expression, open_start_range_expression, optional_chain_marker, playground_literal, postfix_expression, prefix_expression, range_expression, raw_string_literal, real_literal, regex_literal, selector_expression, self_expression, simple_identifier, special_literal, super_expression, switch_statement, ternary_expression, try_expression, tuple_expression, value_pack_expansion, value_parameter_pack, "|", "~"] name?: [array_type, dictionary_type, existential_type, function_type, metatype, opaque_type, optional_type, protocol_composition_type, suppressed_constraint, tuple_type, type_pack_expansion, type_parameter_pack, user_type] return_type*: ["!", array_type, dictionary_type, existential_type, function_type, metatype, opaque_type, optional_type, protocol_composition_type, suppressed_constraint, tuple_type, type_modifiers, type_pack_expansion, type_parameter_pack, user_type] super_expression: suppressed_constraint: suppressed: type_identifier switch_entry: - $children+: [additive_expression, array_literal, as_expression, assignment, await_expression, bang, bin_literal, bitwise_operation, boolean_literal, call_expression, check_expression, comparison_expression, conjunction_expression, constructor_expression, custom_operator, default_keyword, diagnostic, dictionary_literal, directive, disjunction_expression, equality_expression, fully_open_range, hex_literal, if_statement, infix_expression, integer_literal, key_path_expression, key_path_string_expression, lambda_literal, line_string_literal, macro_invocation, modifiers, multi_line_string_literal, multiplicative_expression, navigation_expression, nil_coalescing_expression, oct_literal, open_end_range_expression, open_start_range_expression, playground_literal, postfix_expression, prefix_expression, range_expression, raw_string_literal, real_literal, regex_literal, selector_expression, self_expression, simple_identifier, special_literal, statements, super_expression, switch_pattern, switch_statement, ternary_expression, try_expression, tuple_expression, value_pack_expansion, value_parameter_pack, where_keyword] + $children+: [additive_expression, array_literal, as_expression, assignment, await_expression, bang, bin_literal, bitwise_operation, boolean_literal, call_expression, check_expression, comparison_expression, conjunction_expression, constructor_expression, custom_operator, default_keyword, diagnostic, dictionary_literal, directive, disjunction_expression, equality_expression, fully_open_range, hex_literal, if_statement, infix_expression, integer_literal, key_path_expression, key_path_string_expression, lambda_literal, line_string_literal, macro_invocation, modifiers, multi_line_string_literal, multiplicative_expression, navigation_expression, nil_coalescing_expression, oct_literal, open_end_range_expression, open_start_range_expression, optional_chain_marker, playground_literal, postfix_expression, prefix_expression, range_expression, raw_string_literal, real_literal, regex_literal, selector_expression, self_expression, simple_identifier, special_literal, statements, super_expression, switch_pattern, switch_statement, ternary_expression, try_expression, tuple_expression, value_pack_expansion, value_parameter_pack, where_keyword] switch_pattern: $children: pattern switch_statement: $children*: switch_entry - expr+: ["!=", "!==", "%", "%=", "&", "*", "*=", "+", "++", "+=", "-", "--", "-=", "/", "/=", "<", "<<", "<=", "=", "==", "===", ">", ">=", ">>", "?", "^", additive_expression, array_literal, as_expression, assignment, await_expression, bang, bin_literal, bitwise_operation, boolean_literal, call_expression, check_expression, comparison_expression, conjunction_expression, constructor_expression, custom_operator, diagnostic, dictionary_literal, directive, disjunction_expression, equality_expression, fully_open_range, hex_literal, if_statement, infix_expression, integer_literal, key_path_expression, key_path_string_expression, lambda_literal, line_string_literal, macro_invocation, multi_line_string_literal, multiplicative_expression, navigation_expression, "nil", nil_coalescing_expression, oct_literal, open_end_range_expression, open_start_range_expression, playground_literal, postfix_expression, prefix_expression, range_expression, raw_string_literal, real_literal, regex_literal, selector_expression, self_expression, simple_identifier, special_literal, super_expression, switch_statement, ternary_expression, try_expression, tuple_expression, value_pack_expansion, value_parameter_pack, "|", "~"] + expr: ["!=", "!==", "%", "%=", "&", "*", "*=", "+", "++", "+=", "-", "--", "-=", "/", "/=", "<", "<<", "<=", "=", "==", "===", ">", ">=", ">>", "^", additive_expression, array_literal, as_expression, assignment, await_expression, bang, bin_literal, bitwise_operation, boolean_literal, call_expression, check_expression, comparison_expression, conjunction_expression, constructor_expression, custom_operator, diagnostic, dictionary_literal, directive, disjunction_expression, equality_expression, fully_open_range, hex_literal, if_statement, infix_expression, integer_literal, key_path_expression, key_path_string_expression, lambda_literal, line_string_literal, macro_invocation, multi_line_string_literal, multiplicative_expression, navigation_expression, "nil", nil_coalescing_expression, oct_literal, open_end_range_expression, open_start_range_expression, optional_chain_marker, playground_literal, postfix_expression, prefix_expression, range_expression, raw_string_literal, real_literal, regex_literal, selector_expression, self_expression, simple_identifier, special_literal, super_expression, switch_statement, ternary_expression, try_expression, tuple_expression, value_pack_expansion, value_parameter_pack, "|", "~"] ternary_expression: - condition+: ["!=", "!==", "%", "%=", "&", "*", "*=", "+", "++", "+=", "-", "--", "-=", "/", "/=", "<", "<<", "<=", "=", "==", "===", ">", ">=", ">>", "?", "^", additive_expression, array_literal, as_expression, assignment, await_expression, bang, bin_literal, bitwise_operation, boolean_literal, call_expression, check_expression, comparison_expression, conjunction_expression, constructor_expression, custom_operator, diagnostic, dictionary_literal, directive, disjunction_expression, equality_expression, fully_open_range, hex_literal, if_statement, infix_expression, integer_literal, key_path_expression, key_path_string_expression, lambda_literal, line_string_literal, macro_invocation, multi_line_string_literal, multiplicative_expression, navigation_expression, "nil", nil_coalescing_expression, oct_literal, open_end_range_expression, open_start_range_expression, playground_literal, postfix_expression, prefix_expression, range_expression, raw_string_literal, real_literal, regex_literal, selector_expression, self_expression, simple_identifier, special_literal, super_expression, switch_statement, ternary_expression, try_expression, tuple_expression, value_pack_expansion, value_parameter_pack, "|", "~"] - if_false+: ["!=", "!==", "%", "%=", "&", "*", "*=", "+", "++", "+=", "-", "--", "-=", "/", "/=", "<", "<<", "<=", "=", "==", "===", ">", ">=", ">>", "?", "^", additive_expression, array_literal, as_expression, assignment, await_expression, bang, bin_literal, bitwise_operation, boolean_literal, call_expression, check_expression, comparison_expression, conjunction_expression, constructor_expression, custom_operator, diagnostic, dictionary_literal, directive, disjunction_expression, equality_expression, fully_open_range, hex_literal, if_statement, infix_expression, integer_literal, key_path_expression, key_path_string_expression, lambda_literal, line_string_literal, macro_invocation, multi_line_string_literal, multiplicative_expression, navigation_expression, "nil", nil_coalescing_expression, oct_literal, open_end_range_expression, open_start_range_expression, playground_literal, postfix_expression, prefix_expression, range_expression, raw_string_literal, real_literal, regex_literal, selector_expression, self_expression, simple_identifier, special_literal, super_expression, switch_statement, ternary_expression, try_expression, tuple_expression, value_pack_expansion, value_parameter_pack, "|", "~"] - if_true+: ["!=", "!==", "%", "%=", "&", "*", "*=", "+", "++", "+=", "-", "--", "-=", "/", "/=", "<", "<<", "<=", "=", "==", "===", ">", ">=", ">>", "?", "^", additive_expression, array_literal, as_expression, assignment, await_expression, bang, bin_literal, bitwise_operation, boolean_literal, call_expression, check_expression, comparison_expression, conjunction_expression, constructor_expression, custom_operator, diagnostic, dictionary_literal, directive, disjunction_expression, equality_expression, fully_open_range, hex_literal, if_statement, infix_expression, integer_literal, key_path_expression, key_path_string_expression, lambda_literal, line_string_literal, macro_invocation, multi_line_string_literal, multiplicative_expression, navigation_expression, "nil", nil_coalescing_expression, oct_literal, open_end_range_expression, open_start_range_expression, playground_literal, postfix_expression, prefix_expression, range_expression, raw_string_literal, real_literal, regex_literal, selector_expression, self_expression, simple_identifier, special_literal, super_expression, switch_statement, ternary_expression, try_expression, tuple_expression, value_pack_expansion, value_parameter_pack, "|", "~"] + condition: ["!=", "!==", "%", "%=", "&", "*", "*=", "+", "++", "+=", "-", "--", "-=", "/", "/=", "<", "<<", "<=", "=", "==", "===", ">", ">=", ">>", "^", additive_expression, array_literal, as_expression, assignment, await_expression, bang, bin_literal, bitwise_operation, boolean_literal, call_expression, check_expression, comparison_expression, conjunction_expression, constructor_expression, custom_operator, diagnostic, dictionary_literal, directive, disjunction_expression, equality_expression, fully_open_range, hex_literal, if_statement, infix_expression, integer_literal, key_path_expression, key_path_string_expression, lambda_literal, line_string_literal, macro_invocation, multi_line_string_literal, multiplicative_expression, navigation_expression, "nil", nil_coalescing_expression, oct_literal, open_end_range_expression, open_start_range_expression, optional_chain_marker, playground_literal, postfix_expression, prefix_expression, range_expression, raw_string_literal, real_literal, regex_literal, selector_expression, self_expression, simple_identifier, special_literal, super_expression, switch_statement, ternary_expression, try_expression, tuple_expression, value_pack_expansion, value_parameter_pack, "|", "~"] + if_false: ["!=", "!==", "%", "%=", "&", "*", "*=", "+", "++", "+=", "-", "--", "-=", "/", "/=", "<", "<<", "<=", "=", "==", "===", ">", ">=", ">>", "^", additive_expression, array_literal, as_expression, assignment, await_expression, bang, bin_literal, bitwise_operation, boolean_literal, call_expression, check_expression, comparison_expression, conjunction_expression, constructor_expression, custom_operator, diagnostic, dictionary_literal, directive, disjunction_expression, equality_expression, fully_open_range, hex_literal, if_statement, infix_expression, integer_literal, key_path_expression, key_path_string_expression, lambda_literal, line_string_literal, macro_invocation, multi_line_string_literal, multiplicative_expression, navigation_expression, "nil", nil_coalescing_expression, oct_literal, open_end_range_expression, open_start_range_expression, optional_chain_marker, playground_literal, postfix_expression, prefix_expression, range_expression, raw_string_literal, real_literal, regex_literal, selector_expression, self_expression, simple_identifier, special_literal, super_expression, switch_statement, ternary_expression, try_expression, tuple_expression, value_pack_expansion, value_parameter_pack, "|", "~"] + if_true: ["!=", "!==", "%", "%=", "&", "*", "*=", "+", "++", "+=", "-", "--", "-=", "/", "/=", "<", "<<", "<=", "=", "==", "===", ">", ">=", ">>", "^", additive_expression, array_literal, as_expression, assignment, await_expression, bang, bin_literal, bitwise_operation, boolean_literal, call_expression, check_expression, comparison_expression, conjunction_expression, constructor_expression, custom_operator, diagnostic, dictionary_literal, directive, disjunction_expression, equality_expression, fully_open_range, hex_literal, if_statement, infix_expression, integer_literal, key_path_expression, key_path_string_expression, lambda_literal, line_string_literal, macro_invocation, multi_line_string_literal, multiplicative_expression, navigation_expression, "nil", nil_coalescing_expression, oct_literal, open_end_range_expression, open_start_range_expression, optional_chain_marker, playground_literal, postfix_expression, prefix_expression, range_expression, raw_string_literal, real_literal, regex_literal, selector_expression, self_expression, simple_identifier, special_literal, super_expression, switch_statement, ternary_expression, try_expression, tuple_expression, value_pack_expansion, value_parameter_pack, "|", "~"] throw_keyword: throws: throws_clause: type: [array_type, dictionary_type, existential_type, function_type, metatype, opaque_type, optional_type, protocol_composition_type, suppressed_constraint, tuple_type, type_pack_expansion, type_parameter_pack, user_type] try_expression: $children: try_operator - expr+: ["!=", "!==", "%", "%=", "&", "*", "*=", "+", "++", "+=", "-", "--", "-=", "/", "/=", "<", "<<", "<=", "=", "==", "===", ">", ">=", ">>", "?", "^", additive_expression, array_literal, as_expression, assignment, await_expression, bang, bin_literal, bitwise_operation, boolean_literal, call_expression, check_expression, comparison_expression, conjunction_expression, constructor_expression, custom_operator, diagnostic, dictionary_literal, directive, disjunction_expression, equality_expression, fully_open_range, hex_literal, if_statement, infix_expression, integer_literal, key_path_expression, key_path_string_expression, lambda_literal, line_string_literal, macro_invocation, multi_line_string_literal, multiplicative_expression, navigation_expression, "nil", nil_coalescing_expression, oct_literal, open_end_range_expression, open_start_range_expression, playground_literal, postfix_expression, prefix_expression, range_expression, raw_string_literal, real_literal, regex_literal, selector_expression, self_expression, simple_identifier, special_literal, super_expression, switch_statement, ternary_expression, try_expression, tuple_expression, value_pack_expansion, value_parameter_pack, "|", "~"] + expr: ["!=", "!==", "%", "%=", "&", "*", "*=", "+", "++", "+=", "-", "--", "-=", "/", "/=", "<", "<<", "<=", "=", "==", "===", ">", ">=", ">>", "^", additive_expression, array_literal, as_expression, assignment, await_expression, bang, bin_literal, bitwise_operation, boolean_literal, call_expression, check_expression, comparison_expression, conjunction_expression, constructor_expression, custom_operator, diagnostic, dictionary_literal, directive, disjunction_expression, equality_expression, fully_open_range, hex_literal, if_statement, infix_expression, integer_literal, key_path_expression, key_path_string_expression, lambda_literal, line_string_literal, macro_invocation, multi_line_string_literal, multiplicative_expression, navigation_expression, "nil", nil_coalescing_expression, oct_literal, open_end_range_expression, open_start_range_expression, optional_chain_marker, playground_literal, postfix_expression, prefix_expression, range_expression, raw_string_literal, real_literal, regex_literal, selector_expression, self_expression, simple_identifier, special_literal, super_expression, switch_statement, ternary_expression, try_expression, tuple_expression, value_pack_expansion, value_parameter_pack, "|", "~"] try_operator: tuple_expression: name*: simple_identifier - value+: ["!=", "!==", "%", "%=", "&", "*", "*=", "+", "++", "+=", "-", "--", "-=", "/", "/=", "<", "<<", "<=", "=", "==", "===", ">", ">=", ">>", "?", "^", additive_expression, array_literal, as_expression, assignment, await_expression, bang, bin_literal, bitwise_operation, boolean_literal, call_expression, check_expression, comparison_expression, conjunction_expression, constructor_expression, custom_operator, diagnostic, dictionary_literal, directive, disjunction_expression, equality_expression, fully_open_range, hex_literal, if_statement, infix_expression, integer_literal, key_path_expression, key_path_string_expression, lambda_literal, line_string_literal, macro_invocation, multi_line_string_literal, multiplicative_expression, navigation_expression, "nil", nil_coalescing_expression, oct_literal, open_end_range_expression, open_start_range_expression, playground_literal, postfix_expression, prefix_expression, range_expression, raw_string_literal, real_literal, regex_literal, selector_expression, self_expression, simple_identifier, special_literal, super_expression, switch_statement, ternary_expression, try_expression, tuple_expression, value_pack_expansion, value_parameter_pack, "|", "~"] + value+: ["!=", "!==", "%", "%=", "&", "*", "*=", "+", "++", "+=", "-", "--", "-=", "/", "/=", "<", "<<", "<=", "=", "==", "===", ">", ">=", ">>", "^", additive_expression, array_literal, as_expression, assignment, await_expression, bang, bin_literal, bitwise_operation, boolean_literal, call_expression, check_expression, comparison_expression, conjunction_expression, constructor_expression, custom_operator, diagnostic, dictionary_literal, directive, disjunction_expression, equality_expression, fully_open_range, hex_literal, if_statement, infix_expression, integer_literal, key_path_expression, key_path_string_expression, lambda_literal, line_string_literal, macro_invocation, multi_line_string_literal, multiplicative_expression, navigation_expression, "nil", nil_coalescing_expression, oct_literal, open_end_range_expression, open_start_range_expression, optional_chain_marker, playground_literal, postfix_expression, prefix_expression, range_expression, raw_string_literal, real_literal, regex_literal, selector_expression, self_expression, simple_identifier, special_literal, super_expression, switch_statement, ternary_expression, try_expression, tuple_expression, value_pack_expansion, value_parameter_pack, "|", "~"] tuple_type: $children?: tuple_type_item element*: tuple_type_item @@ -431,7 +433,7 @@ named: $children?: type_modifiers name?: value_argument_label reference_specifier*: value_argument_label - value*: ["!=", "!==", "%", "%=", "&", "*", "*=", "+", "++", "+=", "-", "--", "-=", "/", "/=", "<", "<<", "<=", "=", "==", "===", ">", ">=", ">>", "?", "^", additive_expression, array_literal, as_expression, assignment, await_expression, bang, bin_literal, bitwise_operation, boolean_literal, call_expression, check_expression, comparison_expression, conjunction_expression, constructor_expression, custom_operator, diagnostic, dictionary_literal, directive, disjunction_expression, equality_expression, fully_open_range, hex_literal, if_statement, infix_expression, integer_literal, key_path_expression, key_path_string_expression, lambda_literal, line_string_literal, macro_invocation, multi_line_string_literal, multiplicative_expression, navigation_expression, "nil", nil_coalescing_expression, oct_literal, open_end_range_expression, open_start_range_expression, playground_literal, postfix_expression, prefix_expression, range_expression, raw_string_literal, real_literal, regex_literal, selector_expression, self_expression, simple_identifier, special_literal, super_expression, switch_statement, ternary_expression, try_expression, tuple_expression, value_pack_expansion, value_parameter_pack, "|", "~"] + value?: ["!=", "!==", "%", "%=", "&", "*", "*=", "+", "++", "+=", "-", "--", "-=", "/", "/=", "<", "<<", "<=", "=", "==", "===", ">", ">=", ">>", "^", additive_expression, array_literal, as_expression, assignment, await_expression, bang, bin_literal, bitwise_operation, boolean_literal, call_expression, check_expression, comparison_expression, conjunction_expression, constructor_expression, custom_operator, diagnostic, dictionary_literal, directive, disjunction_expression, equality_expression, fully_open_range, hex_literal, if_statement, infix_expression, integer_literal, key_path_expression, key_path_string_expression, lambda_literal, line_string_literal, macro_invocation, multi_line_string_literal, multiplicative_expression, navigation_expression, "nil", nil_coalescing_expression, oct_literal, open_end_range_expression, open_start_range_expression, optional_chain_marker, playground_literal, postfix_expression, prefix_expression, range_expression, raw_string_literal, real_literal, regex_literal, selector_expression, self_expression, simple_identifier, special_literal, super_expression, switch_statement, ternary_expression, try_expression, tuple_expression, value_pack_expansion, value_parameter_pack, "|", "~"] value_argument_label: $children: simple_identifier value_arguments: @@ -439,17 +441,17 @@ named: value_binding_pattern: mutability: ["let", "var"] value_pack_expansion: - $children?: [additive_expression, array_literal, as_expression, assignment, await_expression, bang, bin_literal, bitwise_operation, boolean_literal, call_expression, check_expression, comparison_expression, conjunction_expression, constructor_expression, custom_operator, diagnostic, dictionary_literal, directive, disjunction_expression, equality_expression, fully_open_range, hex_literal, if_statement, infix_expression, integer_literal, key_path_expression, key_path_string_expression, lambda_literal, line_string_literal, macro_invocation, multi_line_string_literal, multiplicative_expression, navigation_expression, nil_coalescing_expression, oct_literal, open_end_range_expression, open_start_range_expression, playground_literal, postfix_expression, prefix_expression, range_expression, raw_string_literal, real_literal, regex_literal, selector_expression, self_expression, simple_identifier, special_literal, super_expression, switch_statement, ternary_expression, try_expression, tuple_expression, value_pack_expansion, value_parameter_pack] + $children?: [additive_expression, array_literal, as_expression, assignment, await_expression, bang, bin_literal, bitwise_operation, boolean_literal, call_expression, check_expression, comparison_expression, conjunction_expression, constructor_expression, custom_operator, diagnostic, dictionary_literal, directive, disjunction_expression, equality_expression, fully_open_range, hex_literal, if_statement, infix_expression, integer_literal, key_path_expression, key_path_string_expression, lambda_literal, line_string_literal, macro_invocation, multi_line_string_literal, multiplicative_expression, navigation_expression, nil_coalescing_expression, oct_literal, open_end_range_expression, open_start_range_expression, optional_chain_marker, playground_literal, postfix_expression, prefix_expression, range_expression, raw_string_literal, real_literal, regex_literal, selector_expression, self_expression, simple_identifier, special_literal, super_expression, switch_statement, ternary_expression, try_expression, tuple_expression, value_pack_expansion, value_parameter_pack] value_parameter_pack: - $children?: [additive_expression, array_literal, as_expression, assignment, await_expression, bang, bin_literal, bitwise_operation, boolean_literal, call_expression, check_expression, comparison_expression, conjunction_expression, constructor_expression, custom_operator, diagnostic, dictionary_literal, directive, disjunction_expression, equality_expression, fully_open_range, hex_literal, if_statement, infix_expression, integer_literal, key_path_expression, key_path_string_expression, lambda_literal, line_string_literal, macro_invocation, multi_line_string_literal, multiplicative_expression, navigation_expression, nil_coalescing_expression, oct_literal, open_end_range_expression, open_start_range_expression, playground_literal, postfix_expression, prefix_expression, range_expression, raw_string_literal, real_literal, regex_literal, selector_expression, self_expression, simple_identifier, special_literal, super_expression, switch_statement, ternary_expression, try_expression, tuple_expression, value_pack_expansion, value_parameter_pack] + $children?: [additive_expression, array_literal, as_expression, assignment, await_expression, bang, bin_literal, bitwise_operation, boolean_literal, call_expression, check_expression, comparison_expression, conjunction_expression, constructor_expression, custom_operator, diagnostic, dictionary_literal, directive, disjunction_expression, equality_expression, fully_open_range, hex_literal, if_statement, infix_expression, integer_literal, key_path_expression, key_path_string_expression, lambda_literal, line_string_literal, macro_invocation, multi_line_string_literal, multiplicative_expression, navigation_expression, nil_coalescing_expression, oct_literal, open_end_range_expression, open_start_range_expression, optional_chain_marker, playground_literal, postfix_expression, prefix_expression, range_expression, raw_string_literal, real_literal, regex_literal, selector_expression, self_expression, simple_identifier, special_literal, super_expression, switch_statement, ternary_expression, try_expression, tuple_expression, value_pack_expansion, value_parameter_pack] visibility_modifier: where_clause: - $children+: [additive_expression, array_literal, as_expression, assignment, await_expression, bang, bin_literal, bitwise_operation, boolean_literal, call_expression, check_expression, comparison_expression, conjunction_expression, constructor_expression, custom_operator, diagnostic, dictionary_literal, directive, disjunction_expression, equality_expression, fully_open_range, hex_literal, if_statement, infix_expression, integer_literal, key_path_expression, key_path_string_expression, lambda_literal, line_string_literal, macro_invocation, multi_line_string_literal, multiplicative_expression, navigation_expression, nil_coalescing_expression, oct_literal, open_end_range_expression, open_start_range_expression, playground_literal, postfix_expression, prefix_expression, range_expression, raw_string_literal, real_literal, regex_literal, selector_expression, self_expression, simple_identifier, special_literal, super_expression, switch_statement, ternary_expression, try_expression, tuple_expression, value_pack_expansion, value_parameter_pack, where_keyword] + $children+: [additive_expression, array_literal, as_expression, assignment, await_expression, bang, bin_literal, bitwise_operation, boolean_literal, call_expression, check_expression, comparison_expression, conjunction_expression, constructor_expression, custom_operator, diagnostic, dictionary_literal, directive, disjunction_expression, equality_expression, fully_open_range, hex_literal, if_statement, infix_expression, integer_literal, key_path_expression, key_path_string_expression, lambda_literal, line_string_literal, macro_invocation, multi_line_string_literal, multiplicative_expression, navigation_expression, nil_coalescing_expression, oct_literal, open_end_range_expression, open_start_range_expression, optional_chain_marker, playground_literal, postfix_expression, prefix_expression, range_expression, raw_string_literal, real_literal, regex_literal, selector_expression, self_expression, simple_identifier, special_literal, super_expression, switch_statement, ternary_expression, try_expression, tuple_expression, value_pack_expansion, value_parameter_pack, where_keyword] where_keyword: while_statement: $children?: statements bound_identifier*: simple_identifier - condition+: ["!=", "!==", "%", "%=", "&", "(", ")", "*", "*=", "+", "++", "+=", ",", "-", "--", "-=", ".", "/", "/=", ":", "<", "<<", "<=", "=", "==", "===", ">", ">=", ">>", "?", "^", additive_expression, array_literal, array_type, "as", as_expression, assignment, "async", availability_condition, await_expression, bang, bin_literal, bitwise_operation, boolean_literal, call_expression, "case", check_expression, comparison_expression, conjunction_expression, constructor_expression, custom_operator, diagnostic, dictionary_literal, dictionary_type, directive, disjunction_expression, equality_expression, existential_type, fully_open_range, function_type, hex_literal, if_statement, infix_expression, integer_literal, "is", key_path_expression, key_path_string_expression, lambda_literal, line_string_literal, macro_invocation, metatype, multi_line_string_literal, multiplicative_expression, navigation_expression, "nil", nil_coalescing_expression, oct_literal, opaque_type, open_end_range_expression, open_start_range_expression, optional_type, pattern, playground_literal, postfix_expression, prefix_expression, protocol_composition_type, range_expression, raw_string_literal, real_literal, regex_literal, selector_expression, self_expression, simple_identifier, special_literal, super_expression, suppressed_constraint, switch_statement, ternary_expression, try_expression, tuple_expression, tuple_type, type_annotation, type_modifiers, type_pack_expansion, type_parameter_pack, user_type, value_binding_pattern, value_pack_expansion, value_parameter_pack, where_clause, wildcard_pattern, "|", "~"] + condition+: ["!=", "!==", "%", "%=", "&", "(", ")", "*", "*=", "+", "++", "+=", ",", "-", "--", "-=", ".", "/", "/=", ":", "<", "<<", "<=", "=", "==", "===", ">", ">=", ">>", "?", "^", additive_expression, array_literal, array_type, "as", as_expression, assignment, "async", availability_condition, await_expression, bang, bin_literal, bitwise_operation, boolean_literal, call_expression, "case", check_expression, comparison_expression, conjunction_expression, constructor_expression, custom_operator, diagnostic, dictionary_literal, dictionary_type, directive, disjunction_expression, equality_expression, existential_type, fully_open_range, function_type, hex_literal, if_statement, infix_expression, integer_literal, "is", key_path_expression, key_path_string_expression, lambda_literal, line_string_literal, macro_invocation, metatype, multi_line_string_literal, multiplicative_expression, navigation_expression, "nil", nil_coalescing_expression, oct_literal, opaque_type, open_end_range_expression, open_start_range_expression, optional_chain_marker, optional_type, pattern, playground_literal, postfix_expression, prefix_expression, protocol_composition_type, range_expression, raw_string_literal, real_literal, regex_literal, selector_expression, self_expression, simple_identifier, special_literal, super_expression, suppressed_constraint, switch_statement, ternary_expression, try_expression, tuple_expression, tuple_type, type_annotation, type_modifiers, type_pack_expansion, type_parameter_pack, user_type, value_binding_pattern, value_pack_expansion, value_parameter_pack, where_clause, wildcard_pattern, "|", "~"] name*: [array_type, dictionary_type, existential_type, function_type, metatype, opaque_type, optional_type, protocol_composition_type, suppressed_constraint, tuple_type, type_pack_expansion, type_parameter_pack, user_type] wildcard_pattern: willset_clause: From 76a1a87c41d5da9d5d481b07691174d0670321db Mon Sep 17 00:00:00 2001 From: Taus Date: Fri, 8 May 2026 14:41:31 +0000 Subject: [PATCH 238/260] unified: regenerate files --- unified/ql/lib/codeql/unified/Ast.qll | 218 ++++++------ unified/ql/lib/unified.dbscheme | 483 ++++++++------------------ 2 files changed, 256 insertions(+), 445 deletions(-) diff --git a/unified/ql/lib/codeql/unified/Ast.qll b/unified/ql/lib/codeql/unified/Ast.qll index 54c1caceaf4b..8155f61de562 100644 --- a/unified/ql/lib/codeql/unified/Ast.qll +++ b/unified/ql/lib/codeql/unified/Ast.qll @@ -99,11 +99,11 @@ module Swift { final override string getAPrimaryQlClass() { result = "AdditiveExpression" } /** Gets the node corresponding to the field `lhs`. */ - final AstNode getLhs(int i) { swift_additive_expression_lhs(this, i, result) } + final AstNode getLhs() { swift_additive_expression_def(this, result, _, _) } /** Gets the node corresponding to the field `op`. */ final string getOp() { - exists(int value | swift_additive_expression_def(this, value) | + exists(int value | swift_additive_expression_def(this, _, value, _) | result = "+" and value = 0 or result = "-" and value = 1 @@ -111,12 +111,12 @@ module Swift { } /** Gets the node corresponding to the field `rhs`. */ - final AstNode getRhs(int i) { swift_additive_expression_rhs(this, i, result) } + final AstNode getRhs() { swift_additive_expression_def(this, _, _, result) } /** Gets a field or child node of this node. */ final override AstNode getAFieldOrChild() { - swift_additive_expression_lhs(this, _, result) or - swift_additive_expression_rhs(this, _, result) + swift_additive_expression_def(this, result, _, _) or + swift_additive_expression_def(this, _, _, result) } } @@ -155,23 +155,23 @@ module Swift { final override string getAPrimaryQlClass() { result = "AsExpression" } /** Gets the node corresponding to the field `expr`. */ - final AstNode getExpr(int i) { swift_as_expression_expr(this, i, result) } + final AstNode getExpr() { swift_as_expression_def(this, result, _, _) } /** Gets the node corresponding to the field `name`. */ - final AstNode getName() { swift_as_expression_def(this, result, _) } + final AstNode getName() { swift_as_expression_def(this, _, result, _) } /** Gets the node corresponding to the field `type`. */ final AstNode getType(int i) { swift_as_expression_type(this, i, result) } /** Gets the child of this node. */ - final AsOperator getChild() { swift_as_expression_def(this, _, result) } + final AsOperator getChild() { swift_as_expression_def(this, _, _, result) } /** Gets a field or child node of this node. */ final override AstNode getAFieldOrChild() { - swift_as_expression_expr(this, _, result) or - swift_as_expression_def(this, result, _) or + swift_as_expression_def(this, result, _, _) or + swift_as_expression_def(this, _, result, _) or swift_as_expression_type(this, _, result) or - swift_as_expression_def(this, _, result) + swift_as_expression_def(this, _, _, result) } } @@ -188,7 +188,7 @@ module Swift { /** Gets the node corresponding to the field `operator`. */ final string getOperator() { - exists(int value | swift_assignment_def(this, value, _) | + exists(int value | swift_assignment_def(this, value, _, _) | result = "%=" and value = 0 or result = "*=" and value = 1 @@ -204,14 +204,14 @@ module Swift { } /** Gets the node corresponding to the field `result`. */ - final AstNode getResult(int i) { swift_assignment_result(this, i, result) } + final AstNode getResult() { swift_assignment_def(this, _, result, _) } /** Gets the node corresponding to the field `target`. */ - final DirectlyAssignableExpression getTarget() { swift_assignment_def(this, _, result) } + final DirectlyAssignableExpression getTarget() { swift_assignment_def(this, _, _, result) } /** Gets a field or child node of this node. */ final override AstNode getAFieldOrChild() { - swift_assignment_result(this, _, result) or swift_assignment_def(this, _, result) + swift_assignment_def(this, _, result, _) or swift_assignment_def(this, _, _, result) } } @@ -277,14 +277,14 @@ module Swift { final override string getAPrimaryQlClass() { result = "AwaitExpression" } /** Gets the node corresponding to the field `expr`. */ - final AstNode getExpr(int i) { swift_await_expression_expr(this, i, result) } + final AstNode getExpr() { swift_await_expression_expr(this, result) } /** Gets the child of this node. */ final AstNode getChild() { swift_await_expression_child(this, result) } /** Gets a field or child node of this node. */ final override AstNode getAFieldOrChild() { - swift_await_expression_expr(this, _, result) or swift_await_expression_child(this, result) + swift_await_expression_expr(this, result) or swift_await_expression_child(this, result) } } @@ -306,11 +306,11 @@ module Swift { final override string getAPrimaryQlClass() { result = "BitwiseOperation" } /** Gets the node corresponding to the field `lhs`. */ - final AstNode getLhs(int i) { swift_bitwise_operation_lhs(this, i, result) } + final AstNode getLhs() { swift_bitwise_operation_def(this, result, _, _) } /** Gets the node corresponding to the field `op`. */ final string getOp() { - exists(int value | swift_bitwise_operation_def(this, value) | + exists(int value | swift_bitwise_operation_def(this, _, value, _) | result = "&" and value = 0 or result = "<<" and value = 1 @@ -324,11 +324,12 @@ module Swift { } /** Gets the node corresponding to the field `rhs`. */ - final AstNode getRhs(int i) { swift_bitwise_operation_rhs(this, i, result) } + final AstNode getRhs() { swift_bitwise_operation_def(this, _, _, result) } /** Gets a field or child node of this node. */ final override AstNode getAFieldOrChild() { - swift_bitwise_operation_lhs(this, _, result) or swift_bitwise_operation_rhs(this, _, result) + swift_bitwise_operation_def(this, result, _, _) or + swift_bitwise_operation_def(this, _, _, result) } } @@ -388,7 +389,7 @@ module Swift { final AstNode getName() { swift_capture_list_item_def(this, result) } /** Gets the node corresponding to the field `value`. */ - final AstNode getValue(int i) { swift_capture_list_item_value(this, i, result) } + final AstNode getValue() { swift_capture_list_item_value(this, result) } /** Gets the child of this node. */ final OwnershipModifier getChild() { swift_capture_list_item_child(this, result) } @@ -396,7 +397,7 @@ module Swift { /** Gets a field or child node of this node. */ final override AstNode getAFieldOrChild() { swift_capture_list_item_def(this, result) or - swift_capture_list_item_value(this, _, result) or + swift_capture_list_item_value(this, result) or swift_capture_list_item_child(this, result) } } @@ -430,23 +431,25 @@ module Swift { final override string getAPrimaryQlClass() { result = "CheckExpression" } /** Gets the node corresponding to the field `name`. */ - final AstNode getName() { swift_check_expression_def(this, result, _) } + final AstNode getName() { swift_check_expression_def(this, result, _, _) } /** Gets the node corresponding to the field `op`. */ final string getOp() { - exists(int value | swift_check_expression_def(this, _, value) | (result = "is" and value = 0)) + exists(int value | swift_check_expression_def(this, _, value, _) | + (result = "is" and value = 0) + ) } /** Gets the node corresponding to the field `target`. */ - final AstNode getTarget(int i) { swift_check_expression_target(this, i, result) } + final AstNode getTarget() { swift_check_expression_def(this, _, _, result) } /** Gets the node corresponding to the field `type`. */ final AstNode getType(int i) { swift_check_expression_type(this, i, result) } /** Gets a field or child node of this node. */ final override AstNode getAFieldOrChild() { - swift_check_expression_def(this, result, _) or - swift_check_expression_target(this, _, result) or + swift_check_expression_def(this, result, _, _) or + swift_check_expression_def(this, _, _, result) or swift_check_expression_type(this, _, result) } } @@ -512,11 +515,11 @@ module Swift { final override string getAPrimaryQlClass() { result = "ComparisonExpression" } /** Gets the node corresponding to the field `lhs`. */ - final AstNode getLhs(int i) { swift_comparison_expression_lhs(this, i, result) } + final AstNode getLhs() { swift_comparison_expression_def(this, result, _, _) } /** Gets the node corresponding to the field `op`. */ final string getOp() { - exists(int value | swift_comparison_expression_def(this, value) | + exists(int value | swift_comparison_expression_def(this, _, value, _) | result = "<" and value = 0 or result = "<=" and value = 1 @@ -528,12 +531,12 @@ module Swift { } /** Gets the node corresponding to the field `rhs`. */ - final AstNode getRhs(int i) { swift_comparison_expression_rhs(this, i, result) } + final AstNode getRhs() { swift_comparison_expression_def(this, _, _, result) } /** Gets a field or child node of this node. */ final override AstNode getAFieldOrChild() { - swift_comparison_expression_lhs(this, _, result) or - swift_comparison_expression_rhs(this, _, result) + swift_comparison_expression_def(this, result, _, _) or + swift_comparison_expression_def(this, _, _, result) } } @@ -591,22 +594,22 @@ module Swift { final override string getAPrimaryQlClass() { result = "ConjunctionExpression" } /** Gets the node corresponding to the field `lhs`. */ - final AstNode getLhs(int i) { swift_conjunction_expression_lhs(this, i, result) } + final AstNode getLhs() { swift_conjunction_expression_def(this, result, _, _) } /** Gets the node corresponding to the field `op`. */ final string getOp() { - exists(int value | swift_conjunction_expression_def(this, value) | + exists(int value | swift_conjunction_expression_def(this, _, value, _) | (result = "&&" and value = 0) ) } /** Gets the node corresponding to the field `rhs`. */ - final AstNode getRhs(int i) { swift_conjunction_expression_rhs(this, i, result) } + final AstNode getRhs() { swift_conjunction_expression_def(this, _, _, result) } /** Gets a field or child node of this node. */ final override AstNode getAFieldOrChild() { - swift_conjunction_expression_lhs(this, _, result) or - swift_conjunction_expression_rhs(this, _, result) + swift_conjunction_expression_def(this, result, _, _) or + swift_conjunction_expression_def(this, _, _, result) } } @@ -652,14 +655,14 @@ module Swift { final override string getAPrimaryQlClass() { result = "ControlTransferStatement" } /** Gets the node corresponding to the field `result`. */ - final AstNode getResult(int i) { swift_control_transfer_statement_result(this, i, result) } + final AstNode getResult() { swift_control_transfer_statement_result(this, result) } /** Gets the `i`th child of this node. */ final AstNode getChild(int i) { swift_control_transfer_statement_child(this, i, result) } /** Gets a field or child node of this node. */ final override AstNode getAFieldOrChild() { - swift_control_transfer_statement_result(this, _, result) or + swift_control_transfer_statement_result(this, result) or swift_control_transfer_statement_child(this, _, result) } } @@ -801,22 +804,22 @@ module Swift { final override string getAPrimaryQlClass() { result = "DisjunctionExpression" } /** Gets the node corresponding to the field `lhs`. */ - final AstNode getLhs(int i) { swift_disjunction_expression_lhs(this, i, result) } + final AstNode getLhs() { swift_disjunction_expression_def(this, result, _, _) } /** Gets the node corresponding to the field `op`. */ final string getOp() { - exists(int value | swift_disjunction_expression_def(this, value) | + exists(int value | swift_disjunction_expression_def(this, _, value, _) | (result = "||" and value = 0) ) } /** Gets the node corresponding to the field `rhs`. */ - final AstNode getRhs(int i) { swift_disjunction_expression_rhs(this, i, result) } + final AstNode getRhs() { swift_disjunction_expression_def(this, _, _, result) } /** Gets a field or child node of this node. */ final override AstNode getAFieldOrChild() { - swift_disjunction_expression_lhs(this, _, result) or - swift_disjunction_expression_rhs(this, _, result) + swift_disjunction_expression_def(this, result, _, _) or + swift_disjunction_expression_def(this, _, _, result) } } @@ -930,11 +933,11 @@ module Swift { final override string getAPrimaryQlClass() { result = "EqualityExpression" } /** Gets the node corresponding to the field `lhs`. */ - final AstNode getLhs(int i) { swift_equality_expression_lhs(this, i, result) } + final AstNode getLhs() { swift_equality_expression_def(this, result, _, _) } /** Gets the node corresponding to the field `op`. */ final string getOp() { - exists(int value | swift_equality_expression_def(this, value) | + exists(int value | swift_equality_expression_def(this, _, value, _) | result = "!=" and value = 0 or result = "!==" and value = 1 @@ -946,12 +949,12 @@ module Swift { } /** Gets the node corresponding to the field `rhs`. */ - final AstNode getRhs(int i) { swift_equality_expression_rhs(this, i, result) } + final AstNode getRhs() { swift_equality_expression_def(this, _, _, result) } /** Gets a field or child node of this node. */ final override AstNode getAFieldOrChild() { - swift_equality_expression_lhs(this, _, result) or - swift_equality_expression_rhs(this, _, result) + swift_equality_expression_def(this, result, _, _) or + swift_equality_expression_def(this, _, _, result) } } @@ -985,18 +988,18 @@ module Swift { final override string getAPrimaryQlClass() { result = "ForStatement" } /** Gets the node corresponding to the field `collection`. */ - final AstNode getCollection(int i) { swift_for_statement_collection(this, i, result) } + final AstNode getCollection() { swift_for_statement_def(this, result, _) } /** Gets the node corresponding to the field `item`. */ - final Pattern getItem() { swift_for_statement_def(this, result) } + final Pattern getItem() { swift_for_statement_def(this, _, result) } /** Gets the `i`th child of this node. */ final AstNode getChild(int i) { swift_for_statement_child(this, i, result) } /** Gets a field or child node of this node. */ final override AstNode getAFieldOrChild() { - swift_for_statement_collection(this, _, result) or - swift_for_statement_def(this, result) or + swift_for_statement_def(this, result, _) or + swift_for_statement_def(this, _, result) or swift_for_statement_child(this, _, result) } } @@ -1187,19 +1190,19 @@ module Swift { final override string getAPrimaryQlClass() { result = "InfixExpression" } /** Gets the node corresponding to the field `lhs`. */ - final AstNode getLhs(int i) { swift_infix_expression_lhs(this, i, result) } + final AstNode getLhs() { swift_infix_expression_def(this, result, _, _) } /** Gets the node corresponding to the field `op`. */ - final CustomOperator getOp() { swift_infix_expression_def(this, result) } + final CustomOperator getOp() { swift_infix_expression_def(this, _, result, _) } /** Gets the node corresponding to the field `rhs`. */ - final AstNode getRhs(int i) { swift_infix_expression_rhs(this, i, result) } + final AstNode getRhs() { swift_infix_expression_def(this, _, _, result) } /** Gets a field or child node of this node. */ final override AstNode getAFieldOrChild() { - swift_infix_expression_lhs(this, _, result) or - swift_infix_expression_def(this, result) or - swift_infix_expression_rhs(this, _, result) + swift_infix_expression_def(this, result, _, _) or + swift_infix_expression_def(this, _, result, _) or + swift_infix_expression_def(this, _, _, result) } } @@ -1298,7 +1301,7 @@ module Swift { } /** Gets the node corresponding to the field `value`. */ - final AstNode getValue(int i) { swift_interpolated_expression_value(this, i, result) } + final AstNode getValue() { swift_interpolated_expression_value(this, result) } /** Gets the child of this node. */ final TypeModifiers getChild() { swift_interpolated_expression_child(this, result) } @@ -1307,7 +1310,7 @@ module Swift { final override AstNode getAFieldOrChild() { swift_interpolated_expression_name(this, result) or swift_interpolated_expression_reference_specifier(this, _, result) or - swift_interpolated_expression_value(this, _, result) or + swift_interpolated_expression_value(this, result) or swift_interpolated_expression_child(this, result) } } @@ -1478,10 +1481,10 @@ module Swift { final override string getAPrimaryQlClass() { result = "MacroDefinition" } /** Gets the node corresponding to the field `body`. */ - final AstNode getBody(int i) { swift_macro_definition_body(this, i, result) } + final AstNode getBody() { swift_macro_definition_def(this, result) } /** Gets a field or child node of this node. */ - final override AstNode getAFieldOrChild() { swift_macro_definition_body(this, _, result) } + final override AstNode getAFieldOrChild() { swift_macro_definition_def(this, result) } } /** A class representing `macro_invocation` nodes. */ @@ -1576,11 +1579,11 @@ module Swift { final override string getAPrimaryQlClass() { result = "MultiplicativeExpression" } /** Gets the node corresponding to the field `lhs`. */ - final AstNode getLhs(int i) { swift_multiplicative_expression_lhs(this, i, result) } + final AstNode getLhs() { swift_multiplicative_expression_def(this, result, _, _) } /** Gets the node corresponding to the field `op`. */ final string getOp() { - exists(int value | swift_multiplicative_expression_def(this, value) | + exists(int value | swift_multiplicative_expression_def(this, _, value, _) | result = "%" and value = 0 or result = "*" and value = 1 @@ -1590,12 +1593,12 @@ module Swift { } /** Gets the node corresponding to the field `rhs`. */ - final AstNode getRhs(int i) { swift_multiplicative_expression_rhs(this, i, result) } + final AstNode getRhs() { swift_multiplicative_expression_def(this, _, _, result) } /** Gets a field or child node of this node. */ final override AstNode getAFieldOrChild() { - swift_multiplicative_expression_lhs(this, _, result) or - swift_multiplicative_expression_rhs(this, _, result) + swift_multiplicative_expression_def(this, result, _, _) or + swift_multiplicative_expression_def(this, _, _, result) } } @@ -1645,15 +1648,15 @@ module Swift { final override string getAPrimaryQlClass() { result = "NilCoalescingExpression" } /** Gets the node corresponding to the field `if_nil`. */ - final AstNode getIfNil(int i) { swift_nil_coalescing_expression_if_nil(this, i, result) } + final AstNode getIfNil() { swift_nil_coalescing_expression_def(this, result, _) } /** Gets the node corresponding to the field `value`. */ - final AstNode getValue(int i) { swift_nil_coalescing_expression_value(this, i, result) } + final AstNode getValue() { swift_nil_coalescing_expression_def(this, _, result) } /** Gets a field or child node of this node. */ final override AstNode getAFieldOrChild() { - swift_nil_coalescing_expression_if_nil(this, _, result) or - swift_nil_coalescing_expression_value(this, _, result) + swift_nil_coalescing_expression_def(this, result, _) or + swift_nil_coalescing_expression_def(this, _, result) } } @@ -1681,12 +1684,10 @@ module Swift { final override string getAPrimaryQlClass() { result = "OpenEndRangeExpression" } /** Gets the node corresponding to the field `start`. */ - final AstNode getStart(int i) { swift_open_end_range_expression_start(this, i, result) } + final AstNode getStart() { swift_open_end_range_expression_def(this, result) } /** Gets a field or child node of this node. */ - final override AstNode getAFieldOrChild() { - swift_open_end_range_expression_start(this, _, result) - } + final override AstNode getAFieldOrChild() { swift_open_end_range_expression_def(this, result) } } /** A class representing `open_start_range_expression` nodes. */ @@ -1695,11 +1696,11 @@ module Swift { final override string getAPrimaryQlClass() { result = "OpenStartRangeExpression" } /** Gets the node corresponding to the field `end`. */ - final AstNode getEnd(int i) { swift_open_start_range_expression_end(this, i, result) } + final AstNode getEnd() { swift_open_start_range_expression_def(this, result) } /** Gets a field or child node of this node. */ final override AstNode getAFieldOrChild() { - swift_open_start_range_expression_end(this, _, result) + swift_open_start_range_expression_def(this, result) } } @@ -1715,6 +1716,18 @@ module Swift { final override AstNode getAFieldOrChild() { swift_operator_declaration_child(this, _, result) } } + /** A class representing `optional_chain_marker` nodes. */ + class OptionalChainMarker extends @swift_optional_chain_marker, AstNode { + /** Gets the name of the primary QL class for this element. */ + final override string getAPrimaryQlClass() { result = "OptionalChainMarker" } + + /** Gets the child of this node. */ + final AstNode getChild() { swift_optional_chain_marker_child(this, result) } + + /** Gets a field or child node of this node. */ + final override AstNode getAFieldOrChild() { swift_optional_chain_marker_child(this, result) } + } + /** A class representing `optional_type` nodes. */ class OptionalType extends @swift_optional_type, AstNode { /** Gets the name of the primary QL class for this element. */ @@ -1817,14 +1830,14 @@ module Swift { final override string getAPrimaryQlClass() { result = "PostfixExpression" } /** Gets the node corresponding to the field `operation`. */ - final AstNode getOperation() { swift_postfix_expression_def(this, result) } + final AstNode getOperation() { swift_postfix_expression_def(this, result, _) } /** Gets the node corresponding to the field `target`. */ - final AstNode getTarget(int i) { swift_postfix_expression_target(this, i, result) } + final AstNode getTarget() { swift_postfix_expression_def(this, _, result) } /** Gets a field or child node of this node. */ final override AstNode getAFieldOrChild() { - swift_postfix_expression_def(this, result) or swift_postfix_expression_target(this, _, result) + swift_postfix_expression_def(this, result, _) or swift_postfix_expression_def(this, _, result) } } @@ -1878,14 +1891,14 @@ module Swift { final override string getAPrimaryQlClass() { result = "PrefixExpression" } /** Gets the node corresponding to the field `operation`. */ - final AstNode getOperation() { swift_prefix_expression_def(this, result) } + final AstNode getOperation() { swift_prefix_expression_def(this, result, _) } /** Gets the node corresponding to the field `target`. */ - final AstNode getTarget(int i) { swift_prefix_expression_target(this, i, result) } + final AstNode getTarget() { swift_prefix_expression_def(this, _, result) } /** Gets a field or child node of this node. */ final override AstNode getAFieldOrChild() { - swift_prefix_expression_def(this, result) or swift_prefix_expression_target(this, _, result) + swift_prefix_expression_def(this, result, _) or swift_prefix_expression_def(this, _, result) } } @@ -2057,11 +2070,11 @@ module Swift { final override string getAPrimaryQlClass() { result = "RangeExpression" } /** Gets the node corresponding to the field `end`. */ - final AstNode getEnd(int i) { swift_range_expression_end(this, i, result) } + final AstNode getEnd() { swift_range_expression_def(this, result, _, _) } /** Gets the node corresponding to the field `op`. */ final string getOp() { - exists(int value | swift_range_expression_def(this, value) | + exists(int value | swift_range_expression_def(this, _, value, _) | result = "..." and value = 0 or result = "..<" and value = 1 @@ -2069,11 +2082,12 @@ module Swift { } /** Gets the node corresponding to the field `start`. */ - final AstNode getStart(int i) { swift_range_expression_start(this, i, result) } + final AstNode getStart() { swift_range_expression_def(this, _, _, result) } /** Gets a field or child node of this node. */ final override AstNode getAFieldOrChild() { - swift_range_expression_end(this, _, result) or swift_range_expression_start(this, _, result) + swift_range_expression_def(this, result, _, _) or + swift_range_expression_def(this, _, _, result) } } @@ -2347,14 +2361,14 @@ module Swift { final override string getAPrimaryQlClass() { result = "SwitchStatement" } /** Gets the node corresponding to the field `expr`. */ - final AstNode getExpr(int i) { swift_switch_statement_expr(this, i, result) } + final AstNode getExpr() { swift_switch_statement_def(this, result) } /** Gets the `i`th child of this node. */ final SwitchEntry getChild(int i) { swift_switch_statement_child(this, i, result) } /** Gets a field or child node of this node. */ final override AstNode getAFieldOrChild() { - swift_switch_statement_expr(this, _, result) or swift_switch_statement_child(this, _, result) + swift_switch_statement_def(this, result) or swift_switch_statement_child(this, _, result) } } @@ -2364,19 +2378,19 @@ module Swift { final override string getAPrimaryQlClass() { result = "TernaryExpression" } /** Gets the node corresponding to the field `condition`. */ - final AstNode getCondition(int i) { swift_ternary_expression_condition(this, i, result) } + final AstNode getCondition() { swift_ternary_expression_def(this, result, _, _) } /** Gets the node corresponding to the field `if_false`. */ - final AstNode getIfFalse(int i) { swift_ternary_expression_if_false(this, i, result) } + final AstNode getIfFalse() { swift_ternary_expression_def(this, _, result, _) } /** Gets the node corresponding to the field `if_true`. */ - final AstNode getIfTrue(int i) { swift_ternary_expression_if_true(this, i, result) } + final AstNode getIfTrue() { swift_ternary_expression_def(this, _, _, result) } /** Gets a field or child node of this node. */ final override AstNode getAFieldOrChild() { - swift_ternary_expression_condition(this, _, result) or - swift_ternary_expression_if_false(this, _, result) or - swift_ternary_expression_if_true(this, _, result) + swift_ternary_expression_def(this, result, _, _) or + swift_ternary_expression_def(this, _, result, _) or + swift_ternary_expression_def(this, _, _, result) } } @@ -2410,14 +2424,14 @@ module Swift { final override string getAPrimaryQlClass() { result = "TryExpression" } /** Gets the node corresponding to the field `expr`. */ - final AstNode getExpr(int i) { swift_try_expression_expr(this, i, result) } + final AstNode getExpr() { swift_try_expression_def(this, result, _) } /** Gets the child of this node. */ - final TryOperator getChild() { swift_try_expression_def(this, result) } + final TryOperator getChild() { swift_try_expression_def(this, _, result) } /** Gets a field or child node of this node. */ final override AstNode getAFieldOrChild() { - swift_try_expression_expr(this, _, result) or swift_try_expression_def(this, result) + swift_try_expression_def(this, result, _) or swift_try_expression_def(this, _, result) } } @@ -2678,7 +2692,7 @@ module Swift { } /** Gets the node corresponding to the field `value`. */ - final AstNode getValue(int i) { swift_value_argument_value(this, i, result) } + final AstNode getValue() { swift_value_argument_value(this, result) } /** Gets the child of this node. */ final TypeModifiers getChild() { swift_value_argument_child(this, result) } @@ -2687,7 +2701,7 @@ module Swift { final override AstNode getAFieldOrChild() { swift_value_argument_name(this, result) or swift_value_argument_reference_specifier(this, _, result) or - swift_value_argument_value(this, _, result) or + swift_value_argument_value(this, result) or swift_value_argument_child(this, result) } } diff --git a/unified/ql/lib/unified.dbscheme b/unified/ql/lib/unified.dbscheme index c580e8e69271..cfd37ea9db66 100644 --- a/unified/ql/lib/unified.dbscheme +++ b/unified/ql/lib/unified.dbscheme @@ -132,14 +132,7 @@ overlayChangedFiles( ); /*- Swift dbscheme -*/ -@swift_additive_expression_lhs_type = @swift_additive_expression | @swift_array_literal | @swift_as_expression | @swift_assignment | @swift_await_expression | @swift_bitwise_operation | @swift_call_expression | @swift_check_expression | @swift_comparison_expression | @swift_conjunction_expression | @swift_constructor_expression | @swift_dictionary_literal | @swift_directive | @swift_disjunction_expression | @swift_equality_expression | @swift_if_statement | @swift_infix_expression | @swift_key_path_expression | @swift_key_path_string_expression | @swift_lambda_literal | @swift_line_string_literal | @swift_macro_invocation | @swift_multi_line_string_literal | @swift_multiplicative_expression | @swift_navigation_expression | @swift_nil_coalescing_expression | @swift_open_end_range_expression | @swift_open_start_range_expression | @swift_playground_literal | @swift_postfix_expression | @swift_prefix_expression | @swift_range_expression | @swift_raw_string_literal | @swift_reserved_word | @swift_selector_expression | @swift_switch_statement | @swift_ternary_expression | @swift_token_bang | @swift_token_bin_literal | @swift_token_boolean_literal | @swift_token_custom_operator | @swift_token_diagnostic | @swift_token_fully_open_range | @swift_token_hex_literal | @swift_token_integer_literal | @swift_token_oct_literal | @swift_token_real_literal | @swift_token_regex_literal | @swift_token_self_expression | @swift_token_simple_identifier | @swift_token_special_literal | @swift_token_super_expression | @swift_try_expression | @swift_tuple_expression | @swift_value_pack_expansion | @swift_value_parameter_pack - -#keyset[swift_additive_expression, index] -swift_additive_expression_lhs( - int swift_additive_expression: @swift_additive_expression ref, - int index: int ref, - unique int lhs: @swift_additive_expression_lhs_type ref -); +@swift_additive_expression_lhs_type = @swift_additive_expression | @swift_array_literal | @swift_as_expression | @swift_assignment | @swift_await_expression | @swift_bitwise_operation | @swift_call_expression | @swift_check_expression | @swift_comparison_expression | @swift_conjunction_expression | @swift_constructor_expression | @swift_dictionary_literal | @swift_directive | @swift_disjunction_expression | @swift_equality_expression | @swift_if_statement | @swift_infix_expression | @swift_key_path_expression | @swift_key_path_string_expression | @swift_lambda_literal | @swift_line_string_literal | @swift_macro_invocation | @swift_multi_line_string_literal | @swift_multiplicative_expression | @swift_navigation_expression | @swift_nil_coalescing_expression | @swift_open_end_range_expression | @swift_open_start_range_expression | @swift_optional_chain_marker | @swift_playground_literal | @swift_postfix_expression | @swift_prefix_expression | @swift_range_expression | @swift_raw_string_literal | @swift_reserved_word | @swift_selector_expression | @swift_switch_statement | @swift_ternary_expression | @swift_token_bang | @swift_token_bin_literal | @swift_token_boolean_literal | @swift_token_custom_operator | @swift_token_diagnostic | @swift_token_fully_open_range | @swift_token_hex_literal | @swift_token_integer_literal | @swift_token_oct_literal | @swift_token_real_literal | @swift_token_regex_literal | @swift_token_self_expression | @swift_token_simple_identifier | @swift_token_special_literal | @swift_token_super_expression | @swift_try_expression | @swift_tuple_expression | @swift_value_pack_expansion | @swift_value_parameter_pack case @swift_additive_expression.op of 0 = @swift_additive_expression_plus @@ -147,21 +140,16 @@ case @swift_additive_expression.op of ; -@swift_additive_expression_rhs_type = @swift_additive_expression | @swift_array_literal | @swift_as_expression | @swift_assignment | @swift_await_expression | @swift_bitwise_operation | @swift_call_expression | @swift_check_expression | @swift_comparison_expression | @swift_conjunction_expression | @swift_constructor_expression | @swift_dictionary_literal | @swift_directive | @swift_disjunction_expression | @swift_equality_expression | @swift_if_statement | @swift_infix_expression | @swift_key_path_expression | @swift_key_path_string_expression | @swift_lambda_literal | @swift_line_string_literal | @swift_macro_invocation | @swift_multi_line_string_literal | @swift_multiplicative_expression | @swift_navigation_expression | @swift_nil_coalescing_expression | @swift_open_end_range_expression | @swift_open_start_range_expression | @swift_playground_literal | @swift_postfix_expression | @swift_prefix_expression | @swift_range_expression | @swift_raw_string_literal | @swift_reserved_word | @swift_selector_expression | @swift_switch_statement | @swift_ternary_expression | @swift_token_bang | @swift_token_bin_literal | @swift_token_boolean_literal | @swift_token_custom_operator | @swift_token_diagnostic | @swift_token_fully_open_range | @swift_token_hex_literal | @swift_token_integer_literal | @swift_token_oct_literal | @swift_token_real_literal | @swift_token_regex_literal | @swift_token_self_expression | @swift_token_simple_identifier | @swift_token_special_literal | @swift_token_super_expression | @swift_try_expression | @swift_tuple_expression | @swift_value_pack_expansion | @swift_value_parameter_pack - -#keyset[swift_additive_expression, index] -swift_additive_expression_rhs( - int swift_additive_expression: @swift_additive_expression ref, - int index: int ref, - unique int rhs: @swift_additive_expression_rhs_type ref -); +@swift_additive_expression_rhs_type = @swift_additive_expression | @swift_array_literal | @swift_as_expression | @swift_assignment | @swift_await_expression | @swift_bitwise_operation | @swift_call_expression | @swift_check_expression | @swift_comparison_expression | @swift_conjunction_expression | @swift_constructor_expression | @swift_dictionary_literal | @swift_directive | @swift_disjunction_expression | @swift_equality_expression | @swift_if_statement | @swift_infix_expression | @swift_key_path_expression | @swift_key_path_string_expression | @swift_lambda_literal | @swift_line_string_literal | @swift_macro_invocation | @swift_multi_line_string_literal | @swift_multiplicative_expression | @swift_navigation_expression | @swift_nil_coalescing_expression | @swift_open_end_range_expression | @swift_open_start_range_expression | @swift_optional_chain_marker | @swift_playground_literal | @swift_postfix_expression | @swift_prefix_expression | @swift_range_expression | @swift_raw_string_literal | @swift_reserved_word | @swift_selector_expression | @swift_switch_statement | @swift_ternary_expression | @swift_token_bang | @swift_token_bin_literal | @swift_token_boolean_literal | @swift_token_custom_operator | @swift_token_diagnostic | @swift_token_fully_open_range | @swift_token_hex_literal | @swift_token_integer_literal | @swift_token_oct_literal | @swift_token_real_literal | @swift_token_regex_literal | @swift_token_self_expression | @swift_token_simple_identifier | @swift_token_special_literal | @swift_token_super_expression | @swift_try_expression | @swift_tuple_expression | @swift_value_pack_expansion | @swift_value_parameter_pack swift_additive_expression_def( unique int id: @swift_additive_expression, - int op: int ref + int lhs: @swift_additive_expression_lhs_type ref, + int op: int ref, + int rhs: @swift_additive_expression_rhs_type ref ); -@swift_array_literal_element_type = @swift_additive_expression | @swift_array_literal | @swift_as_expression | @swift_assignment | @swift_await_expression | @swift_bitwise_operation | @swift_call_expression | @swift_check_expression | @swift_comparison_expression | @swift_conjunction_expression | @swift_constructor_expression | @swift_dictionary_literal | @swift_directive | @swift_disjunction_expression | @swift_equality_expression | @swift_if_statement | @swift_infix_expression | @swift_key_path_expression | @swift_key_path_string_expression | @swift_lambda_literal | @swift_line_string_literal | @swift_macro_invocation | @swift_multi_line_string_literal | @swift_multiplicative_expression | @swift_navigation_expression | @swift_nil_coalescing_expression | @swift_open_end_range_expression | @swift_open_start_range_expression | @swift_playground_literal | @swift_postfix_expression | @swift_prefix_expression | @swift_range_expression | @swift_raw_string_literal | @swift_reserved_word | @swift_selector_expression | @swift_switch_statement | @swift_ternary_expression | @swift_token_bang | @swift_token_bin_literal | @swift_token_boolean_literal | @swift_token_custom_operator | @swift_token_diagnostic | @swift_token_fully_open_range | @swift_token_hex_literal | @swift_token_integer_literal | @swift_token_oct_literal | @swift_token_real_literal | @swift_token_regex_literal | @swift_token_self_expression | @swift_token_simple_identifier | @swift_token_special_literal | @swift_token_super_expression | @swift_try_expression | @swift_tuple_expression | @swift_value_pack_expansion | @swift_value_parameter_pack +@swift_array_literal_element_type = @swift_additive_expression | @swift_array_literal | @swift_as_expression | @swift_assignment | @swift_await_expression | @swift_bitwise_operation | @swift_call_expression | @swift_check_expression | @swift_comparison_expression | @swift_conjunction_expression | @swift_constructor_expression | @swift_dictionary_literal | @swift_directive | @swift_disjunction_expression | @swift_equality_expression | @swift_if_statement | @swift_infix_expression | @swift_key_path_expression | @swift_key_path_string_expression | @swift_lambda_literal | @swift_line_string_literal | @swift_macro_invocation | @swift_multi_line_string_literal | @swift_multiplicative_expression | @swift_navigation_expression | @swift_nil_coalescing_expression | @swift_open_end_range_expression | @swift_open_start_range_expression | @swift_optional_chain_marker | @swift_playground_literal | @swift_postfix_expression | @swift_prefix_expression | @swift_range_expression | @swift_raw_string_literal | @swift_reserved_word | @swift_selector_expression | @swift_switch_statement | @swift_ternary_expression | @swift_token_bang | @swift_token_bin_literal | @swift_token_boolean_literal | @swift_token_custom_operator | @swift_token_diagnostic | @swift_token_fully_open_range | @swift_token_hex_literal | @swift_token_integer_literal | @swift_token_oct_literal | @swift_token_real_literal | @swift_token_regex_literal | @swift_token_self_expression | @swift_token_simple_identifier | @swift_token_special_literal | @swift_token_super_expression | @swift_try_expression | @swift_tuple_expression | @swift_value_pack_expansion | @swift_value_parameter_pack #keyset[swift_array_literal, index] swift_array_literal_element( @@ -190,14 +178,7 @@ swift_array_type_def( int name: @swift_array_type_name_type ref ); -@swift_as_expression_expr_type = @swift_additive_expression | @swift_array_literal | @swift_as_expression | @swift_assignment | @swift_await_expression | @swift_bitwise_operation | @swift_call_expression | @swift_check_expression | @swift_comparison_expression | @swift_conjunction_expression | @swift_constructor_expression | @swift_dictionary_literal | @swift_directive | @swift_disjunction_expression | @swift_equality_expression | @swift_if_statement | @swift_infix_expression | @swift_key_path_expression | @swift_key_path_string_expression | @swift_lambda_literal | @swift_line_string_literal | @swift_macro_invocation | @swift_multi_line_string_literal | @swift_multiplicative_expression | @swift_navigation_expression | @swift_nil_coalescing_expression | @swift_open_end_range_expression | @swift_open_start_range_expression | @swift_playground_literal | @swift_postfix_expression | @swift_prefix_expression | @swift_range_expression | @swift_raw_string_literal | @swift_reserved_word | @swift_selector_expression | @swift_switch_statement | @swift_ternary_expression | @swift_token_bang | @swift_token_bin_literal | @swift_token_boolean_literal | @swift_token_custom_operator | @swift_token_diagnostic | @swift_token_fully_open_range | @swift_token_hex_literal | @swift_token_integer_literal | @swift_token_oct_literal | @swift_token_real_literal | @swift_token_regex_literal | @swift_token_self_expression | @swift_token_simple_identifier | @swift_token_special_literal | @swift_token_super_expression | @swift_try_expression | @swift_tuple_expression | @swift_value_pack_expansion | @swift_value_parameter_pack - -#keyset[swift_as_expression, index] -swift_as_expression_expr( - int swift_as_expression: @swift_as_expression ref, - int index: int ref, - unique int expr: @swift_as_expression_expr_type ref -); +@swift_as_expression_expr_type = @swift_additive_expression | @swift_array_literal | @swift_as_expression | @swift_assignment | @swift_await_expression | @swift_bitwise_operation | @swift_call_expression | @swift_check_expression | @swift_comparison_expression | @swift_conjunction_expression | @swift_constructor_expression | @swift_dictionary_literal | @swift_directive | @swift_disjunction_expression | @swift_equality_expression | @swift_if_statement | @swift_infix_expression | @swift_key_path_expression | @swift_key_path_string_expression | @swift_lambda_literal | @swift_line_string_literal | @swift_macro_invocation | @swift_multi_line_string_literal | @swift_multiplicative_expression | @swift_navigation_expression | @swift_nil_coalescing_expression | @swift_open_end_range_expression | @swift_open_start_range_expression | @swift_optional_chain_marker | @swift_playground_literal | @swift_postfix_expression | @swift_prefix_expression | @swift_range_expression | @swift_raw_string_literal | @swift_reserved_word | @swift_selector_expression | @swift_switch_statement | @swift_ternary_expression | @swift_token_bang | @swift_token_bin_literal | @swift_token_boolean_literal | @swift_token_custom_operator | @swift_token_diagnostic | @swift_token_fully_open_range | @swift_token_hex_literal | @swift_token_integer_literal | @swift_token_oct_literal | @swift_token_real_literal | @swift_token_regex_literal | @swift_token_self_expression | @swift_token_simple_identifier | @swift_token_special_literal | @swift_token_super_expression | @swift_try_expression | @swift_tuple_expression | @swift_value_pack_expansion | @swift_value_parameter_pack @swift_as_expression_name_type = @swift_array_type | @swift_dictionary_type | @swift_existential_type | @swift_function_type | @swift_metatype | @swift_opaque_type | @swift_optional_type | @swift_protocol_composition_type | @swift_suppressed_constraint | @swift_tuple_type | @swift_type_pack_expansion | @swift_type_parameter_pack | @swift_user_type @@ -212,6 +193,7 @@ swift_as_expression_type( swift_as_expression_def( unique int id: @swift_as_expression, + int expr: @swift_as_expression_expr_type ref, int name: @swift_as_expression_name_type ref, int child: @swift_token_as_operator ref ); @@ -226,18 +208,12 @@ case @swift_assignment.operator of ; -@swift_assignment_result_type = @swift_additive_expression | @swift_array_literal | @swift_as_expression | @swift_assignment | @swift_await_expression | @swift_bitwise_operation | @swift_call_expression | @swift_check_expression | @swift_comparison_expression | @swift_conjunction_expression | @swift_constructor_expression | @swift_dictionary_literal | @swift_directive | @swift_disjunction_expression | @swift_equality_expression | @swift_if_statement | @swift_infix_expression | @swift_key_path_expression | @swift_key_path_string_expression | @swift_lambda_literal | @swift_line_string_literal | @swift_macro_invocation | @swift_multi_line_string_literal | @swift_multiplicative_expression | @swift_navigation_expression | @swift_nil_coalescing_expression | @swift_open_end_range_expression | @swift_open_start_range_expression | @swift_playground_literal | @swift_postfix_expression | @swift_prefix_expression | @swift_range_expression | @swift_raw_string_literal | @swift_reserved_word | @swift_selector_expression | @swift_switch_statement | @swift_ternary_expression | @swift_token_bang | @swift_token_bin_literal | @swift_token_boolean_literal | @swift_token_custom_operator | @swift_token_diagnostic | @swift_token_fully_open_range | @swift_token_hex_literal | @swift_token_integer_literal | @swift_token_oct_literal | @swift_token_real_literal | @swift_token_regex_literal | @swift_token_self_expression | @swift_token_simple_identifier | @swift_token_special_literal | @swift_token_super_expression | @swift_try_expression | @swift_tuple_expression | @swift_value_pack_expansion | @swift_value_parameter_pack - -#keyset[swift_assignment, index] -swift_assignment_result( - int swift_assignment: @swift_assignment ref, - int index: int ref, - unique int result: @swift_assignment_result_type ref -); +@swift_assignment_result_type = @swift_additive_expression | @swift_array_literal | @swift_as_expression | @swift_assignment | @swift_await_expression | @swift_bitwise_operation | @swift_call_expression | @swift_check_expression | @swift_comparison_expression | @swift_conjunction_expression | @swift_constructor_expression | @swift_dictionary_literal | @swift_directive | @swift_disjunction_expression | @swift_equality_expression | @swift_if_statement | @swift_infix_expression | @swift_key_path_expression | @swift_key_path_string_expression | @swift_lambda_literal | @swift_line_string_literal | @swift_macro_invocation | @swift_multi_line_string_literal | @swift_multiplicative_expression | @swift_navigation_expression | @swift_nil_coalescing_expression | @swift_open_end_range_expression | @swift_open_start_range_expression | @swift_optional_chain_marker | @swift_playground_literal | @swift_postfix_expression | @swift_prefix_expression | @swift_range_expression | @swift_raw_string_literal | @swift_reserved_word | @swift_selector_expression | @swift_switch_statement | @swift_ternary_expression | @swift_token_bang | @swift_token_bin_literal | @swift_token_boolean_literal | @swift_token_custom_operator | @swift_token_diagnostic | @swift_token_fully_open_range | @swift_token_hex_literal | @swift_token_integer_literal | @swift_token_oct_literal | @swift_token_real_literal | @swift_token_regex_literal | @swift_token_self_expression | @swift_token_simple_identifier | @swift_token_special_literal | @swift_token_super_expression | @swift_try_expression | @swift_tuple_expression | @swift_value_pack_expansion | @swift_value_parameter_pack swift_assignment_def( unique int id: @swift_assignment, int operator: int ref, + int result: @swift_assignment_result_type ref, int target: @swift_directly_assignable_expression ref ); @@ -281,7 +257,7 @@ swift_associatedtype_declaration_def( unique int id: @swift_associatedtype_declaration ); -@swift_attribute_child_type = @swift_additive_expression | @swift_array_literal | @swift_as_expression | @swift_assignment | @swift_await_expression | @swift_bitwise_operation | @swift_call_expression | @swift_check_expression | @swift_comparison_expression | @swift_conjunction_expression | @swift_constructor_expression | @swift_dictionary_literal | @swift_directive | @swift_disjunction_expression | @swift_equality_expression | @swift_if_statement | @swift_infix_expression | @swift_key_path_expression | @swift_key_path_string_expression | @swift_lambda_literal | @swift_line_string_literal | @swift_macro_invocation | @swift_multi_line_string_literal | @swift_multiplicative_expression | @swift_navigation_expression | @swift_nil_coalescing_expression | @swift_open_end_range_expression | @swift_open_start_range_expression | @swift_playground_literal | @swift_postfix_expression | @swift_prefix_expression | @swift_range_expression | @swift_raw_string_literal | @swift_selector_expression | @swift_switch_statement | @swift_ternary_expression | @swift_token_bang | @swift_token_bin_literal | @swift_token_boolean_literal | @swift_token_custom_operator | @swift_token_diagnostic | @swift_token_fully_open_range | @swift_token_hex_literal | @swift_token_integer_literal | @swift_token_oct_literal | @swift_token_real_literal | @swift_token_regex_literal | @swift_token_self_expression | @swift_token_simple_identifier | @swift_token_special_literal | @swift_token_super_expression | @swift_try_expression | @swift_tuple_expression | @swift_user_type | @swift_value_pack_expansion | @swift_value_parameter_pack +@swift_attribute_child_type = @swift_additive_expression | @swift_array_literal | @swift_as_expression | @swift_assignment | @swift_await_expression | @swift_bitwise_operation | @swift_call_expression | @swift_check_expression | @swift_comparison_expression | @swift_conjunction_expression | @swift_constructor_expression | @swift_dictionary_literal | @swift_directive | @swift_disjunction_expression | @swift_equality_expression | @swift_if_statement | @swift_infix_expression | @swift_key_path_expression | @swift_key_path_string_expression | @swift_lambda_literal | @swift_line_string_literal | @swift_macro_invocation | @swift_multi_line_string_literal | @swift_multiplicative_expression | @swift_navigation_expression | @swift_nil_coalescing_expression | @swift_open_end_range_expression | @swift_open_start_range_expression | @swift_optional_chain_marker | @swift_playground_literal | @swift_postfix_expression | @swift_prefix_expression | @swift_range_expression | @swift_raw_string_literal | @swift_selector_expression | @swift_switch_statement | @swift_ternary_expression | @swift_token_bang | @swift_token_bin_literal | @swift_token_boolean_literal | @swift_token_custom_operator | @swift_token_diagnostic | @swift_token_fully_open_range | @swift_token_hex_literal | @swift_token_integer_literal | @swift_token_oct_literal | @swift_token_real_literal | @swift_token_regex_literal | @swift_token_self_expression | @swift_token_simple_identifier | @swift_token_special_literal | @swift_token_super_expression | @swift_try_expression | @swift_tuple_expression | @swift_user_type | @swift_value_pack_expansion | @swift_value_parameter_pack #keyset[swift_attribute, index] swift_attribute_child( @@ -307,16 +283,14 @@ swift_availability_condition_def( unique int id: @swift_availability_condition ); -@swift_await_expression_expr_type = @swift_additive_expression | @swift_array_literal | @swift_as_expression | @swift_assignment | @swift_await_expression | @swift_bitwise_operation | @swift_call_expression | @swift_check_expression | @swift_comparison_expression | @swift_conjunction_expression | @swift_constructor_expression | @swift_dictionary_literal | @swift_directive | @swift_disjunction_expression | @swift_equality_expression | @swift_if_statement | @swift_infix_expression | @swift_key_path_expression | @swift_key_path_string_expression | @swift_lambda_literal | @swift_line_string_literal | @swift_macro_invocation | @swift_multi_line_string_literal | @swift_multiplicative_expression | @swift_navigation_expression | @swift_nil_coalescing_expression | @swift_open_end_range_expression | @swift_open_start_range_expression | @swift_playground_literal | @swift_postfix_expression | @swift_prefix_expression | @swift_range_expression | @swift_raw_string_literal | @swift_reserved_word | @swift_selector_expression | @swift_switch_statement | @swift_ternary_expression | @swift_token_bang | @swift_token_bin_literal | @swift_token_boolean_literal | @swift_token_custom_operator | @swift_token_diagnostic | @swift_token_fully_open_range | @swift_token_hex_literal | @swift_token_integer_literal | @swift_token_oct_literal | @swift_token_real_literal | @swift_token_regex_literal | @swift_token_self_expression | @swift_token_simple_identifier | @swift_token_special_literal | @swift_token_super_expression | @swift_try_expression | @swift_tuple_expression | @swift_value_pack_expansion | @swift_value_parameter_pack +@swift_await_expression_expr_type = @swift_additive_expression | @swift_array_literal | @swift_as_expression | @swift_assignment | @swift_await_expression | @swift_bitwise_operation | @swift_call_expression | @swift_check_expression | @swift_comparison_expression | @swift_conjunction_expression | @swift_constructor_expression | @swift_dictionary_literal | @swift_directive | @swift_disjunction_expression | @swift_equality_expression | @swift_if_statement | @swift_infix_expression | @swift_key_path_expression | @swift_key_path_string_expression | @swift_lambda_literal | @swift_line_string_literal | @swift_macro_invocation | @swift_multi_line_string_literal | @swift_multiplicative_expression | @swift_navigation_expression | @swift_nil_coalescing_expression | @swift_open_end_range_expression | @swift_open_start_range_expression | @swift_optional_chain_marker | @swift_playground_literal | @swift_postfix_expression | @swift_prefix_expression | @swift_range_expression | @swift_raw_string_literal | @swift_reserved_word | @swift_selector_expression | @swift_switch_statement | @swift_ternary_expression | @swift_token_bang | @swift_token_bin_literal | @swift_token_boolean_literal | @swift_token_custom_operator | @swift_token_diagnostic | @swift_token_fully_open_range | @swift_token_hex_literal | @swift_token_integer_literal | @swift_token_oct_literal | @swift_token_real_literal | @swift_token_regex_literal | @swift_token_self_expression | @swift_token_simple_identifier | @swift_token_special_literal | @swift_token_super_expression | @swift_try_expression | @swift_tuple_expression | @swift_value_pack_expansion | @swift_value_parameter_pack -#keyset[swift_await_expression, index] swift_await_expression_expr( - int swift_await_expression: @swift_await_expression ref, - int index: int ref, + unique int swift_await_expression: @swift_await_expression ref, unique int expr: @swift_await_expression_expr_type ref ); -@swift_await_expression_child_type = @swift_additive_expression | @swift_array_literal | @swift_as_expression | @swift_assignment | @swift_await_expression | @swift_bitwise_operation | @swift_call_expression | @swift_check_expression | @swift_comparison_expression | @swift_conjunction_expression | @swift_constructor_expression | @swift_dictionary_literal | @swift_directive | @swift_disjunction_expression | @swift_equality_expression | @swift_if_statement | @swift_infix_expression | @swift_key_path_expression | @swift_key_path_string_expression | @swift_lambda_literal | @swift_line_string_literal | @swift_macro_invocation | @swift_multi_line_string_literal | @swift_multiplicative_expression | @swift_navigation_expression | @swift_nil_coalescing_expression | @swift_open_end_range_expression | @swift_open_start_range_expression | @swift_playground_literal | @swift_postfix_expression | @swift_prefix_expression | @swift_range_expression | @swift_raw_string_literal | @swift_selector_expression | @swift_switch_statement | @swift_ternary_expression | @swift_token_bang | @swift_token_bin_literal | @swift_token_boolean_literal | @swift_token_custom_operator | @swift_token_diagnostic | @swift_token_fully_open_range | @swift_token_hex_literal | @swift_token_integer_literal | @swift_token_oct_literal | @swift_token_real_literal | @swift_token_regex_literal | @swift_token_self_expression | @swift_token_simple_identifier | @swift_token_special_literal | @swift_token_super_expression | @swift_try_expression | @swift_tuple_expression | @swift_value_pack_expansion | @swift_value_parameter_pack +@swift_await_expression_child_type = @swift_additive_expression | @swift_array_literal | @swift_as_expression | @swift_assignment | @swift_await_expression | @swift_bitwise_operation | @swift_call_expression | @swift_check_expression | @swift_comparison_expression | @swift_conjunction_expression | @swift_constructor_expression | @swift_dictionary_literal | @swift_directive | @swift_disjunction_expression | @swift_equality_expression | @swift_if_statement | @swift_infix_expression | @swift_key_path_expression | @swift_key_path_string_expression | @swift_lambda_literal | @swift_line_string_literal | @swift_macro_invocation | @swift_multi_line_string_literal | @swift_multiplicative_expression | @swift_navigation_expression | @swift_nil_coalescing_expression | @swift_open_end_range_expression | @swift_open_start_range_expression | @swift_optional_chain_marker | @swift_playground_literal | @swift_postfix_expression | @swift_prefix_expression | @swift_range_expression | @swift_raw_string_literal | @swift_selector_expression | @swift_switch_statement | @swift_ternary_expression | @swift_token_bang | @swift_token_bin_literal | @swift_token_boolean_literal | @swift_token_custom_operator | @swift_token_diagnostic | @swift_token_fully_open_range | @swift_token_hex_literal | @swift_token_integer_literal | @swift_token_oct_literal | @swift_token_real_literal | @swift_token_regex_literal | @swift_token_self_expression | @swift_token_simple_identifier | @swift_token_special_literal | @swift_token_super_expression | @swift_try_expression | @swift_tuple_expression | @swift_value_pack_expansion | @swift_value_parameter_pack swift_await_expression_child( unique int swift_await_expression: @swift_await_expression ref, @@ -327,14 +301,7 @@ swift_await_expression_def( unique int id: @swift_await_expression ); -@swift_bitwise_operation_lhs_type = @swift_additive_expression | @swift_array_literal | @swift_as_expression | @swift_assignment | @swift_await_expression | @swift_bitwise_operation | @swift_call_expression | @swift_check_expression | @swift_comparison_expression | @swift_conjunction_expression | @swift_constructor_expression | @swift_dictionary_literal | @swift_directive | @swift_disjunction_expression | @swift_equality_expression | @swift_if_statement | @swift_infix_expression | @swift_key_path_expression | @swift_key_path_string_expression | @swift_lambda_literal | @swift_line_string_literal | @swift_macro_invocation | @swift_multi_line_string_literal | @swift_multiplicative_expression | @swift_navigation_expression | @swift_nil_coalescing_expression | @swift_open_end_range_expression | @swift_open_start_range_expression | @swift_playground_literal | @swift_postfix_expression | @swift_prefix_expression | @swift_range_expression | @swift_raw_string_literal | @swift_reserved_word | @swift_selector_expression | @swift_switch_statement | @swift_ternary_expression | @swift_token_bang | @swift_token_bin_literal | @swift_token_boolean_literal | @swift_token_custom_operator | @swift_token_diagnostic | @swift_token_fully_open_range | @swift_token_hex_literal | @swift_token_integer_literal | @swift_token_oct_literal | @swift_token_real_literal | @swift_token_regex_literal | @swift_token_self_expression | @swift_token_simple_identifier | @swift_token_special_literal | @swift_token_super_expression | @swift_try_expression | @swift_tuple_expression | @swift_value_pack_expansion | @swift_value_parameter_pack - -#keyset[swift_bitwise_operation, index] -swift_bitwise_operation_lhs( - int swift_bitwise_operation: @swift_bitwise_operation ref, - int index: int ref, - unique int lhs: @swift_bitwise_operation_lhs_type ref -); +@swift_bitwise_operation_lhs_type = @swift_additive_expression | @swift_array_literal | @swift_as_expression | @swift_assignment | @swift_await_expression | @swift_bitwise_operation | @swift_call_expression | @swift_check_expression | @swift_comparison_expression | @swift_conjunction_expression | @swift_constructor_expression | @swift_dictionary_literal | @swift_directive | @swift_disjunction_expression | @swift_equality_expression | @swift_if_statement | @swift_infix_expression | @swift_key_path_expression | @swift_key_path_string_expression | @swift_lambda_literal | @swift_line_string_literal | @swift_macro_invocation | @swift_multi_line_string_literal | @swift_multiplicative_expression | @swift_navigation_expression | @swift_nil_coalescing_expression | @swift_open_end_range_expression | @swift_open_start_range_expression | @swift_optional_chain_marker | @swift_playground_literal | @swift_postfix_expression | @swift_prefix_expression | @swift_range_expression | @swift_raw_string_literal | @swift_reserved_word | @swift_selector_expression | @swift_switch_statement | @swift_ternary_expression | @swift_token_bang | @swift_token_bin_literal | @swift_token_boolean_literal | @swift_token_custom_operator | @swift_token_diagnostic | @swift_token_fully_open_range | @swift_token_hex_literal | @swift_token_integer_literal | @swift_token_oct_literal | @swift_token_real_literal | @swift_token_regex_literal | @swift_token_self_expression | @swift_token_simple_identifier | @swift_token_special_literal | @swift_token_super_expression | @swift_try_expression | @swift_tuple_expression | @swift_value_pack_expansion | @swift_value_parameter_pack case @swift_bitwise_operation.op of 0 = @swift_bitwise_operation_ampersand @@ -345,21 +312,16 @@ case @swift_bitwise_operation.op of ; -@swift_bitwise_operation_rhs_type = @swift_additive_expression | @swift_array_literal | @swift_as_expression | @swift_assignment | @swift_await_expression | @swift_bitwise_operation | @swift_call_expression | @swift_check_expression | @swift_comparison_expression | @swift_conjunction_expression | @swift_constructor_expression | @swift_dictionary_literal | @swift_directive | @swift_disjunction_expression | @swift_equality_expression | @swift_if_statement | @swift_infix_expression | @swift_key_path_expression | @swift_key_path_string_expression | @swift_lambda_literal | @swift_line_string_literal | @swift_macro_invocation | @swift_multi_line_string_literal | @swift_multiplicative_expression | @swift_navigation_expression | @swift_nil_coalescing_expression | @swift_open_end_range_expression | @swift_open_start_range_expression | @swift_playground_literal | @swift_postfix_expression | @swift_prefix_expression | @swift_range_expression | @swift_raw_string_literal | @swift_reserved_word | @swift_selector_expression | @swift_switch_statement | @swift_ternary_expression | @swift_token_bang | @swift_token_bin_literal | @swift_token_boolean_literal | @swift_token_custom_operator | @swift_token_diagnostic | @swift_token_fully_open_range | @swift_token_hex_literal | @swift_token_integer_literal | @swift_token_oct_literal | @swift_token_real_literal | @swift_token_regex_literal | @swift_token_self_expression | @swift_token_simple_identifier | @swift_token_special_literal | @swift_token_super_expression | @swift_try_expression | @swift_tuple_expression | @swift_value_pack_expansion | @swift_value_parameter_pack - -#keyset[swift_bitwise_operation, index] -swift_bitwise_operation_rhs( - int swift_bitwise_operation: @swift_bitwise_operation ref, - int index: int ref, - unique int rhs: @swift_bitwise_operation_rhs_type ref -); +@swift_bitwise_operation_rhs_type = @swift_additive_expression | @swift_array_literal | @swift_as_expression | @swift_assignment | @swift_await_expression | @swift_bitwise_operation | @swift_call_expression | @swift_check_expression | @swift_comparison_expression | @swift_conjunction_expression | @swift_constructor_expression | @swift_dictionary_literal | @swift_directive | @swift_disjunction_expression | @swift_equality_expression | @swift_if_statement | @swift_infix_expression | @swift_key_path_expression | @swift_key_path_string_expression | @swift_lambda_literal | @swift_line_string_literal | @swift_macro_invocation | @swift_multi_line_string_literal | @swift_multiplicative_expression | @swift_navigation_expression | @swift_nil_coalescing_expression | @swift_open_end_range_expression | @swift_open_start_range_expression | @swift_optional_chain_marker | @swift_playground_literal | @swift_postfix_expression | @swift_prefix_expression | @swift_range_expression | @swift_raw_string_literal | @swift_reserved_word | @swift_selector_expression | @swift_switch_statement | @swift_ternary_expression | @swift_token_bang | @swift_token_bin_literal | @swift_token_boolean_literal | @swift_token_custom_operator | @swift_token_diagnostic | @swift_token_fully_open_range | @swift_token_hex_literal | @swift_token_integer_literal | @swift_token_oct_literal | @swift_token_real_literal | @swift_token_regex_literal | @swift_token_self_expression | @swift_token_simple_identifier | @swift_token_special_literal | @swift_token_super_expression | @swift_try_expression | @swift_tuple_expression | @swift_value_pack_expansion | @swift_value_parameter_pack swift_bitwise_operation_def( unique int id: @swift_bitwise_operation, - int op: int ref + int lhs: @swift_bitwise_operation_lhs_type ref, + int op: int ref, + int rhs: @swift_bitwise_operation_rhs_type ref ); -@swift_call_expression_child_type = @swift_additive_expression | @swift_array_literal | @swift_as_expression | @swift_assignment | @swift_await_expression | @swift_bitwise_operation | @swift_call_expression | @swift_call_suffix | @swift_check_expression | @swift_comparison_expression | @swift_conjunction_expression | @swift_constructor_expression | @swift_dictionary_literal | @swift_directive | @swift_disjunction_expression | @swift_equality_expression | @swift_if_statement | @swift_infix_expression | @swift_key_path_expression | @swift_key_path_string_expression | @swift_lambda_literal | @swift_line_string_literal | @swift_macro_invocation | @swift_multi_line_string_literal | @swift_multiplicative_expression | @swift_navigation_expression | @swift_nil_coalescing_expression | @swift_open_end_range_expression | @swift_open_start_range_expression | @swift_playground_literal | @swift_postfix_expression | @swift_prefix_expression | @swift_range_expression | @swift_raw_string_literal | @swift_selector_expression | @swift_switch_statement | @swift_ternary_expression | @swift_token_bang | @swift_token_bin_literal | @swift_token_boolean_literal | @swift_token_custom_operator | @swift_token_diagnostic | @swift_token_fully_open_range | @swift_token_hex_literal | @swift_token_integer_literal | @swift_token_oct_literal | @swift_token_real_literal | @swift_token_regex_literal | @swift_token_self_expression | @swift_token_simple_identifier | @swift_token_special_literal | @swift_token_super_expression | @swift_try_expression | @swift_tuple_expression | @swift_value_pack_expansion | @swift_value_parameter_pack +@swift_call_expression_child_type = @swift_additive_expression | @swift_array_literal | @swift_as_expression | @swift_assignment | @swift_await_expression | @swift_bitwise_operation | @swift_call_expression | @swift_call_suffix | @swift_check_expression | @swift_comparison_expression | @swift_conjunction_expression | @swift_constructor_expression | @swift_dictionary_literal | @swift_directive | @swift_disjunction_expression | @swift_equality_expression | @swift_if_statement | @swift_infix_expression | @swift_key_path_expression | @swift_key_path_string_expression | @swift_lambda_literal | @swift_line_string_literal | @swift_macro_invocation | @swift_multi_line_string_literal | @swift_multiplicative_expression | @swift_navigation_expression | @swift_nil_coalescing_expression | @swift_open_end_range_expression | @swift_open_start_range_expression | @swift_optional_chain_marker | @swift_playground_literal | @swift_postfix_expression | @swift_prefix_expression | @swift_range_expression | @swift_raw_string_literal | @swift_selector_expression | @swift_switch_statement | @swift_ternary_expression | @swift_token_bang | @swift_token_bin_literal | @swift_token_boolean_literal | @swift_token_custom_operator | @swift_token_diagnostic | @swift_token_fully_open_range | @swift_token_hex_literal | @swift_token_integer_literal | @swift_token_oct_literal | @swift_token_real_literal | @swift_token_regex_literal | @swift_token_self_expression | @swift_token_simple_identifier | @swift_token_special_literal | @swift_token_super_expression | @swift_try_expression | @swift_tuple_expression | @swift_value_pack_expansion | @swift_value_parameter_pack #keyset[swift_call_expression, index] swift_call_expression_child( @@ -405,12 +367,10 @@ swift_capture_list_def( @swift_capture_list_item_name_type = @swift_token_self_expression | @swift_token_simple_identifier -@swift_capture_list_item_value_type = @swift_additive_expression | @swift_array_literal | @swift_as_expression | @swift_assignment | @swift_await_expression | @swift_bitwise_operation | @swift_call_expression | @swift_check_expression | @swift_comparison_expression | @swift_conjunction_expression | @swift_constructor_expression | @swift_dictionary_literal | @swift_directive | @swift_disjunction_expression | @swift_equality_expression | @swift_if_statement | @swift_infix_expression | @swift_key_path_expression | @swift_key_path_string_expression | @swift_lambda_literal | @swift_line_string_literal | @swift_macro_invocation | @swift_multi_line_string_literal | @swift_multiplicative_expression | @swift_navigation_expression | @swift_nil_coalescing_expression | @swift_open_end_range_expression | @swift_open_start_range_expression | @swift_playground_literal | @swift_postfix_expression | @swift_prefix_expression | @swift_range_expression | @swift_raw_string_literal | @swift_reserved_word | @swift_selector_expression | @swift_switch_statement | @swift_ternary_expression | @swift_token_bang | @swift_token_bin_literal | @swift_token_boolean_literal | @swift_token_custom_operator | @swift_token_diagnostic | @swift_token_fully_open_range | @swift_token_hex_literal | @swift_token_integer_literal | @swift_token_oct_literal | @swift_token_real_literal | @swift_token_regex_literal | @swift_token_self_expression | @swift_token_simple_identifier | @swift_token_special_literal | @swift_token_super_expression | @swift_try_expression | @swift_tuple_expression | @swift_value_pack_expansion | @swift_value_parameter_pack +@swift_capture_list_item_value_type = @swift_additive_expression | @swift_array_literal | @swift_as_expression | @swift_assignment | @swift_await_expression | @swift_bitwise_operation | @swift_call_expression | @swift_check_expression | @swift_comparison_expression | @swift_conjunction_expression | @swift_constructor_expression | @swift_dictionary_literal | @swift_directive | @swift_disjunction_expression | @swift_equality_expression | @swift_if_statement | @swift_infix_expression | @swift_key_path_expression | @swift_key_path_string_expression | @swift_lambda_literal | @swift_line_string_literal | @swift_macro_invocation | @swift_multi_line_string_literal | @swift_multiplicative_expression | @swift_navigation_expression | @swift_nil_coalescing_expression | @swift_open_end_range_expression | @swift_open_start_range_expression | @swift_optional_chain_marker | @swift_playground_literal | @swift_postfix_expression | @swift_prefix_expression | @swift_range_expression | @swift_raw_string_literal | @swift_reserved_word | @swift_selector_expression | @swift_switch_statement | @swift_ternary_expression | @swift_token_bang | @swift_token_bin_literal | @swift_token_boolean_literal | @swift_token_custom_operator | @swift_token_diagnostic | @swift_token_fully_open_range | @swift_token_hex_literal | @swift_token_integer_literal | @swift_token_oct_literal | @swift_token_real_literal | @swift_token_regex_literal | @swift_token_self_expression | @swift_token_simple_identifier | @swift_token_special_literal | @swift_token_super_expression | @swift_try_expression | @swift_tuple_expression | @swift_value_pack_expansion | @swift_value_parameter_pack -#keyset[swift_capture_list_item, index] swift_capture_list_item_value( - int swift_capture_list_item: @swift_capture_list_item ref, - int index: int ref, + unique int swift_capture_list_item: @swift_capture_list_item ref, unique int value: @swift_capture_list_item_value_type ref ); @@ -449,14 +409,7 @@ case @swift_check_expression.op of ; -@swift_check_expression_target_type = @swift_additive_expression | @swift_array_literal | @swift_as_expression | @swift_assignment | @swift_await_expression | @swift_bitwise_operation | @swift_call_expression | @swift_check_expression | @swift_comparison_expression | @swift_conjunction_expression | @swift_constructor_expression | @swift_dictionary_literal | @swift_directive | @swift_disjunction_expression | @swift_equality_expression | @swift_if_statement | @swift_infix_expression | @swift_key_path_expression | @swift_key_path_string_expression | @swift_lambda_literal | @swift_line_string_literal | @swift_macro_invocation | @swift_multi_line_string_literal | @swift_multiplicative_expression | @swift_navigation_expression | @swift_nil_coalescing_expression | @swift_open_end_range_expression | @swift_open_start_range_expression | @swift_playground_literal | @swift_postfix_expression | @swift_prefix_expression | @swift_range_expression | @swift_raw_string_literal | @swift_reserved_word | @swift_selector_expression | @swift_switch_statement | @swift_ternary_expression | @swift_token_bang | @swift_token_bin_literal | @swift_token_boolean_literal | @swift_token_custom_operator | @swift_token_diagnostic | @swift_token_fully_open_range | @swift_token_hex_literal | @swift_token_integer_literal | @swift_token_oct_literal | @swift_token_real_literal | @swift_token_regex_literal | @swift_token_self_expression | @swift_token_simple_identifier | @swift_token_special_literal | @swift_token_super_expression | @swift_try_expression | @swift_tuple_expression | @swift_value_pack_expansion | @swift_value_parameter_pack - -#keyset[swift_check_expression, index] -swift_check_expression_target( - int swift_check_expression: @swift_check_expression ref, - int index: int ref, - unique int target: @swift_check_expression_target_type ref -); +@swift_check_expression_target_type = @swift_additive_expression | @swift_array_literal | @swift_as_expression | @swift_assignment | @swift_await_expression | @swift_bitwise_operation | @swift_call_expression | @swift_check_expression | @swift_comparison_expression | @swift_conjunction_expression | @swift_constructor_expression | @swift_dictionary_literal | @swift_directive | @swift_disjunction_expression | @swift_equality_expression | @swift_if_statement | @swift_infix_expression | @swift_key_path_expression | @swift_key_path_string_expression | @swift_lambda_literal | @swift_line_string_literal | @swift_macro_invocation | @swift_multi_line_string_literal | @swift_multiplicative_expression | @swift_navigation_expression | @swift_nil_coalescing_expression | @swift_open_end_range_expression | @swift_open_start_range_expression | @swift_optional_chain_marker | @swift_playground_literal | @swift_postfix_expression | @swift_prefix_expression | @swift_range_expression | @swift_raw_string_literal | @swift_reserved_word | @swift_selector_expression | @swift_switch_statement | @swift_ternary_expression | @swift_token_bang | @swift_token_bin_literal | @swift_token_boolean_literal | @swift_token_custom_operator | @swift_token_diagnostic | @swift_token_fully_open_range | @swift_token_hex_literal | @swift_token_integer_literal | @swift_token_oct_literal | @swift_token_real_literal | @swift_token_regex_literal | @swift_token_self_expression | @swift_token_simple_identifier | @swift_token_special_literal | @swift_token_super_expression | @swift_try_expression | @swift_tuple_expression | @swift_value_pack_expansion | @swift_value_parameter_pack @swift_check_expression_type_type = @swift_array_type | @swift_dictionary_type | @swift_existential_type | @swift_function_type | @swift_metatype | @swift_opaque_type | @swift_optional_type | @swift_protocol_composition_type | @swift_suppressed_constraint | @swift_tuple_type | @swift_type_modifiers | @swift_type_pack_expansion | @swift_type_parameter_pack | @swift_user_type @@ -470,7 +423,8 @@ swift_check_expression_type( swift_check_expression_def( unique int id: @swift_check_expression, int name: @swift_check_expression_name_type ref, - int op: int ref + int op: int ref, + int target: @swift_check_expression_target_type ref ); @swift_class_body_child_type = @swift_associatedtype_declaration | @swift_class_declaration | @swift_deinit_declaration | @swift_function_declaration | @swift_import_declaration | @swift_init_declaration | @swift_operator_declaration | @swift_precedence_group_declaration | @swift_property_declaration | @swift_protocol_declaration | @swift_subscript_declaration | @swift_token_multiline_comment | @swift_typealias_declaration @@ -515,14 +469,7 @@ swift_class_declaration_def( int name: @swift_class_declaration_name_type ref ); -@swift_comparison_expression_lhs_type = @swift_additive_expression | @swift_array_literal | @swift_as_expression | @swift_assignment | @swift_await_expression | @swift_bitwise_operation | @swift_call_expression | @swift_check_expression | @swift_comparison_expression | @swift_conjunction_expression | @swift_constructor_expression | @swift_dictionary_literal | @swift_directive | @swift_disjunction_expression | @swift_equality_expression | @swift_if_statement | @swift_infix_expression | @swift_key_path_expression | @swift_key_path_string_expression | @swift_lambda_literal | @swift_line_string_literal | @swift_macro_invocation | @swift_multi_line_string_literal | @swift_multiplicative_expression | @swift_navigation_expression | @swift_nil_coalescing_expression | @swift_open_end_range_expression | @swift_open_start_range_expression | @swift_playground_literal | @swift_postfix_expression | @swift_prefix_expression | @swift_range_expression | @swift_raw_string_literal | @swift_reserved_word | @swift_selector_expression | @swift_switch_statement | @swift_ternary_expression | @swift_token_bang | @swift_token_bin_literal | @swift_token_boolean_literal | @swift_token_custom_operator | @swift_token_diagnostic | @swift_token_fully_open_range | @swift_token_hex_literal | @swift_token_integer_literal | @swift_token_oct_literal | @swift_token_real_literal | @swift_token_regex_literal | @swift_token_self_expression | @swift_token_simple_identifier | @swift_token_special_literal | @swift_token_super_expression | @swift_try_expression | @swift_tuple_expression | @swift_value_pack_expansion | @swift_value_parameter_pack - -#keyset[swift_comparison_expression, index] -swift_comparison_expression_lhs( - int swift_comparison_expression: @swift_comparison_expression ref, - int index: int ref, - unique int lhs: @swift_comparison_expression_lhs_type ref -); +@swift_comparison_expression_lhs_type = @swift_additive_expression | @swift_array_literal | @swift_as_expression | @swift_assignment | @swift_await_expression | @swift_bitwise_operation | @swift_call_expression | @swift_check_expression | @swift_comparison_expression | @swift_conjunction_expression | @swift_constructor_expression | @swift_dictionary_literal | @swift_directive | @swift_disjunction_expression | @swift_equality_expression | @swift_if_statement | @swift_infix_expression | @swift_key_path_expression | @swift_key_path_string_expression | @swift_lambda_literal | @swift_line_string_literal | @swift_macro_invocation | @swift_multi_line_string_literal | @swift_multiplicative_expression | @swift_navigation_expression | @swift_nil_coalescing_expression | @swift_open_end_range_expression | @swift_open_start_range_expression | @swift_optional_chain_marker | @swift_playground_literal | @swift_postfix_expression | @swift_prefix_expression | @swift_range_expression | @swift_raw_string_literal | @swift_reserved_word | @swift_selector_expression | @swift_switch_statement | @swift_ternary_expression | @swift_token_bang | @swift_token_bin_literal | @swift_token_boolean_literal | @swift_token_custom_operator | @swift_token_diagnostic | @swift_token_fully_open_range | @swift_token_hex_literal | @swift_token_integer_literal | @swift_token_oct_literal | @swift_token_real_literal | @swift_token_regex_literal | @swift_token_self_expression | @swift_token_simple_identifier | @swift_token_special_literal | @swift_token_super_expression | @swift_try_expression | @swift_tuple_expression | @swift_value_pack_expansion | @swift_value_parameter_pack case @swift_comparison_expression.op of 0 = @swift_comparison_expression_langle @@ -532,18 +479,13 @@ case @swift_comparison_expression.op of ; -@swift_comparison_expression_rhs_type = @swift_additive_expression | @swift_array_literal | @swift_as_expression | @swift_assignment | @swift_await_expression | @swift_bitwise_operation | @swift_call_expression | @swift_check_expression | @swift_comparison_expression | @swift_conjunction_expression | @swift_constructor_expression | @swift_dictionary_literal | @swift_directive | @swift_disjunction_expression | @swift_equality_expression | @swift_if_statement | @swift_infix_expression | @swift_key_path_expression | @swift_key_path_string_expression | @swift_lambda_literal | @swift_line_string_literal | @swift_macro_invocation | @swift_multi_line_string_literal | @swift_multiplicative_expression | @swift_navigation_expression | @swift_nil_coalescing_expression | @swift_open_end_range_expression | @swift_open_start_range_expression | @swift_playground_literal | @swift_postfix_expression | @swift_prefix_expression | @swift_range_expression | @swift_raw_string_literal | @swift_reserved_word | @swift_selector_expression | @swift_switch_statement | @swift_ternary_expression | @swift_token_bang | @swift_token_bin_literal | @swift_token_boolean_literal | @swift_token_custom_operator | @swift_token_diagnostic | @swift_token_fully_open_range | @swift_token_hex_literal | @swift_token_integer_literal | @swift_token_oct_literal | @swift_token_real_literal | @swift_token_regex_literal | @swift_token_self_expression | @swift_token_simple_identifier | @swift_token_special_literal | @swift_token_super_expression | @swift_try_expression | @swift_tuple_expression | @swift_value_pack_expansion | @swift_value_parameter_pack - -#keyset[swift_comparison_expression, index] -swift_comparison_expression_rhs( - int swift_comparison_expression: @swift_comparison_expression ref, - int index: int ref, - unique int rhs: @swift_comparison_expression_rhs_type ref -); +@swift_comparison_expression_rhs_type = @swift_additive_expression | @swift_array_literal | @swift_as_expression | @swift_assignment | @swift_await_expression | @swift_bitwise_operation | @swift_call_expression | @swift_check_expression | @swift_comparison_expression | @swift_conjunction_expression | @swift_constructor_expression | @swift_dictionary_literal | @swift_directive | @swift_disjunction_expression | @swift_equality_expression | @swift_if_statement | @swift_infix_expression | @swift_key_path_expression | @swift_key_path_string_expression | @swift_lambda_literal | @swift_line_string_literal | @swift_macro_invocation | @swift_multi_line_string_literal | @swift_multiplicative_expression | @swift_navigation_expression | @swift_nil_coalescing_expression | @swift_open_end_range_expression | @swift_open_start_range_expression | @swift_optional_chain_marker | @swift_playground_literal | @swift_postfix_expression | @swift_prefix_expression | @swift_range_expression | @swift_raw_string_literal | @swift_reserved_word | @swift_selector_expression | @swift_switch_statement | @swift_ternary_expression | @swift_token_bang | @swift_token_bin_literal | @swift_token_boolean_literal | @swift_token_custom_operator | @swift_token_diagnostic | @swift_token_fully_open_range | @swift_token_hex_literal | @swift_token_integer_literal | @swift_token_oct_literal | @swift_token_real_literal | @swift_token_regex_literal | @swift_token_self_expression | @swift_token_simple_identifier | @swift_token_special_literal | @swift_token_super_expression | @swift_try_expression | @swift_tuple_expression | @swift_value_pack_expansion | @swift_value_parameter_pack swift_comparison_expression_def( unique int id: @swift_comparison_expression, - int op: int ref + int lhs: @swift_comparison_expression_lhs_type ref, + int op: int ref, + int rhs: @swift_comparison_expression_rhs_type ref ); @swift_computed_getter_child_type = @swift_attribute | @swift_getter_specifier | @swift_statements @@ -598,32 +540,20 @@ swift_computed_setter_def( unique int id: @swift_computed_setter ); -@swift_conjunction_expression_lhs_type = @swift_additive_expression | @swift_array_literal | @swift_as_expression | @swift_assignment | @swift_await_expression | @swift_bitwise_operation | @swift_call_expression | @swift_check_expression | @swift_comparison_expression | @swift_conjunction_expression | @swift_constructor_expression | @swift_dictionary_literal | @swift_directive | @swift_disjunction_expression | @swift_equality_expression | @swift_if_statement | @swift_infix_expression | @swift_key_path_expression | @swift_key_path_string_expression | @swift_lambda_literal | @swift_line_string_literal | @swift_macro_invocation | @swift_multi_line_string_literal | @swift_multiplicative_expression | @swift_navigation_expression | @swift_nil_coalescing_expression | @swift_open_end_range_expression | @swift_open_start_range_expression | @swift_playground_literal | @swift_postfix_expression | @swift_prefix_expression | @swift_range_expression | @swift_raw_string_literal | @swift_reserved_word | @swift_selector_expression | @swift_switch_statement | @swift_ternary_expression | @swift_token_bang | @swift_token_bin_literal | @swift_token_boolean_literal | @swift_token_custom_operator | @swift_token_diagnostic | @swift_token_fully_open_range | @swift_token_hex_literal | @swift_token_integer_literal | @swift_token_oct_literal | @swift_token_real_literal | @swift_token_regex_literal | @swift_token_self_expression | @swift_token_simple_identifier | @swift_token_special_literal | @swift_token_super_expression | @swift_try_expression | @swift_tuple_expression | @swift_value_pack_expansion | @swift_value_parameter_pack - -#keyset[swift_conjunction_expression, index] -swift_conjunction_expression_lhs( - int swift_conjunction_expression: @swift_conjunction_expression ref, - int index: int ref, - unique int lhs: @swift_conjunction_expression_lhs_type ref -); +@swift_conjunction_expression_lhs_type = @swift_additive_expression | @swift_array_literal | @swift_as_expression | @swift_assignment | @swift_await_expression | @swift_bitwise_operation | @swift_call_expression | @swift_check_expression | @swift_comparison_expression | @swift_conjunction_expression | @swift_constructor_expression | @swift_dictionary_literal | @swift_directive | @swift_disjunction_expression | @swift_equality_expression | @swift_if_statement | @swift_infix_expression | @swift_key_path_expression | @swift_key_path_string_expression | @swift_lambda_literal | @swift_line_string_literal | @swift_macro_invocation | @swift_multi_line_string_literal | @swift_multiplicative_expression | @swift_navigation_expression | @swift_nil_coalescing_expression | @swift_open_end_range_expression | @swift_open_start_range_expression | @swift_optional_chain_marker | @swift_playground_literal | @swift_postfix_expression | @swift_prefix_expression | @swift_range_expression | @swift_raw_string_literal | @swift_reserved_word | @swift_selector_expression | @swift_switch_statement | @swift_ternary_expression | @swift_token_bang | @swift_token_bin_literal | @swift_token_boolean_literal | @swift_token_custom_operator | @swift_token_diagnostic | @swift_token_fully_open_range | @swift_token_hex_literal | @swift_token_integer_literal | @swift_token_oct_literal | @swift_token_real_literal | @swift_token_regex_literal | @swift_token_self_expression | @swift_token_simple_identifier | @swift_token_special_literal | @swift_token_super_expression | @swift_try_expression | @swift_tuple_expression | @swift_value_pack_expansion | @swift_value_parameter_pack case @swift_conjunction_expression.op of 0 = @swift_conjunction_expression_ampersandampersand ; -@swift_conjunction_expression_rhs_type = @swift_additive_expression | @swift_array_literal | @swift_as_expression | @swift_assignment | @swift_await_expression | @swift_bitwise_operation | @swift_call_expression | @swift_check_expression | @swift_comparison_expression | @swift_conjunction_expression | @swift_constructor_expression | @swift_dictionary_literal | @swift_directive | @swift_disjunction_expression | @swift_equality_expression | @swift_if_statement | @swift_infix_expression | @swift_key_path_expression | @swift_key_path_string_expression | @swift_lambda_literal | @swift_line_string_literal | @swift_macro_invocation | @swift_multi_line_string_literal | @swift_multiplicative_expression | @swift_navigation_expression | @swift_nil_coalescing_expression | @swift_open_end_range_expression | @swift_open_start_range_expression | @swift_playground_literal | @swift_postfix_expression | @swift_prefix_expression | @swift_range_expression | @swift_raw_string_literal | @swift_reserved_word | @swift_selector_expression | @swift_switch_statement | @swift_ternary_expression | @swift_token_bang | @swift_token_bin_literal | @swift_token_boolean_literal | @swift_token_custom_operator | @swift_token_diagnostic | @swift_token_fully_open_range | @swift_token_hex_literal | @swift_token_integer_literal | @swift_token_oct_literal | @swift_token_real_literal | @swift_token_regex_literal | @swift_token_self_expression | @swift_token_simple_identifier | @swift_token_special_literal | @swift_token_super_expression | @swift_try_expression | @swift_tuple_expression | @swift_value_pack_expansion | @swift_value_parameter_pack - -#keyset[swift_conjunction_expression, index] -swift_conjunction_expression_rhs( - int swift_conjunction_expression: @swift_conjunction_expression ref, - int index: int ref, - unique int rhs: @swift_conjunction_expression_rhs_type ref -); +@swift_conjunction_expression_rhs_type = @swift_additive_expression | @swift_array_literal | @swift_as_expression | @swift_assignment | @swift_await_expression | @swift_bitwise_operation | @swift_call_expression | @swift_check_expression | @swift_comparison_expression | @swift_conjunction_expression | @swift_constructor_expression | @swift_dictionary_literal | @swift_directive | @swift_disjunction_expression | @swift_equality_expression | @swift_if_statement | @swift_infix_expression | @swift_key_path_expression | @swift_key_path_string_expression | @swift_lambda_literal | @swift_line_string_literal | @swift_macro_invocation | @swift_multi_line_string_literal | @swift_multiplicative_expression | @swift_navigation_expression | @swift_nil_coalescing_expression | @swift_open_end_range_expression | @swift_open_start_range_expression | @swift_optional_chain_marker | @swift_playground_literal | @swift_postfix_expression | @swift_prefix_expression | @swift_range_expression | @swift_raw_string_literal | @swift_reserved_word | @swift_selector_expression | @swift_switch_statement | @swift_ternary_expression | @swift_token_bang | @swift_token_bin_literal | @swift_token_boolean_literal | @swift_token_custom_operator | @swift_token_diagnostic | @swift_token_fully_open_range | @swift_token_hex_literal | @swift_token_integer_literal | @swift_token_oct_literal | @swift_token_real_literal | @swift_token_regex_literal | @swift_token_self_expression | @swift_token_simple_identifier | @swift_token_special_literal | @swift_token_super_expression | @swift_try_expression | @swift_tuple_expression | @swift_value_pack_expansion | @swift_value_parameter_pack swift_conjunction_expression_def( unique int id: @swift_conjunction_expression, - int op: int ref + int lhs: @swift_conjunction_expression_lhs_type ref, + int op: int ref, + int rhs: @swift_conjunction_expression_rhs_type ref ); @swift_constructor_expression_constructed_type_type = @swift_array_type | @swift_dictionary_type | @swift_user_type @@ -654,16 +584,14 @@ swift_constructor_suffix_def( unique int id: @swift_constructor_suffix ); -@swift_control_transfer_statement_result_type = @swift_additive_expression | @swift_array_literal | @swift_as_expression | @swift_assignment | @swift_await_expression | @swift_bitwise_operation | @swift_call_expression | @swift_check_expression | @swift_comparison_expression | @swift_conjunction_expression | @swift_constructor_expression | @swift_dictionary_literal | @swift_directive | @swift_disjunction_expression | @swift_equality_expression | @swift_if_statement | @swift_infix_expression | @swift_key_path_expression | @swift_key_path_string_expression | @swift_lambda_literal | @swift_line_string_literal | @swift_macro_invocation | @swift_multi_line_string_literal | @swift_multiplicative_expression | @swift_navigation_expression | @swift_nil_coalescing_expression | @swift_open_end_range_expression | @swift_open_start_range_expression | @swift_playground_literal | @swift_postfix_expression | @swift_prefix_expression | @swift_range_expression | @swift_raw_string_literal | @swift_reserved_word | @swift_selector_expression | @swift_switch_statement | @swift_ternary_expression | @swift_token_bang | @swift_token_bin_literal | @swift_token_boolean_literal | @swift_token_custom_operator | @swift_token_diagnostic | @swift_token_fully_open_range | @swift_token_hex_literal | @swift_token_integer_literal | @swift_token_oct_literal | @swift_token_real_literal | @swift_token_regex_literal | @swift_token_self_expression | @swift_token_simple_identifier | @swift_token_special_literal | @swift_token_super_expression | @swift_try_expression | @swift_tuple_expression | @swift_value_pack_expansion | @swift_value_parameter_pack +@swift_control_transfer_statement_result_type = @swift_additive_expression | @swift_array_literal | @swift_as_expression | @swift_assignment | @swift_await_expression | @swift_bitwise_operation | @swift_call_expression | @swift_check_expression | @swift_comparison_expression | @swift_conjunction_expression | @swift_constructor_expression | @swift_dictionary_literal | @swift_directive | @swift_disjunction_expression | @swift_equality_expression | @swift_if_statement | @swift_infix_expression | @swift_key_path_expression | @swift_key_path_string_expression | @swift_lambda_literal | @swift_line_string_literal | @swift_macro_invocation | @swift_multi_line_string_literal | @swift_multiplicative_expression | @swift_navigation_expression | @swift_nil_coalescing_expression | @swift_open_end_range_expression | @swift_open_start_range_expression | @swift_optional_chain_marker | @swift_playground_literal | @swift_postfix_expression | @swift_prefix_expression | @swift_range_expression | @swift_raw_string_literal | @swift_reserved_word | @swift_selector_expression | @swift_switch_statement | @swift_ternary_expression | @swift_token_bang | @swift_token_bin_literal | @swift_token_boolean_literal | @swift_token_custom_operator | @swift_token_diagnostic | @swift_token_fully_open_range | @swift_token_hex_literal | @swift_token_integer_literal | @swift_token_oct_literal | @swift_token_real_literal | @swift_token_regex_literal | @swift_token_self_expression | @swift_token_simple_identifier | @swift_token_special_literal | @swift_token_super_expression | @swift_try_expression | @swift_tuple_expression | @swift_value_pack_expansion | @swift_value_parameter_pack -#keyset[swift_control_transfer_statement, index] swift_control_transfer_statement_result( - int swift_control_transfer_statement: @swift_control_transfer_statement ref, - int index: int ref, + unique int swift_control_transfer_statement: @swift_control_transfer_statement ref, unique int result: @swift_control_transfer_statement_result_type ref ); -@swift_control_transfer_statement_child_type = @swift_additive_expression | @swift_array_literal | @swift_as_expression | @swift_assignment | @swift_await_expression | @swift_bitwise_operation | @swift_call_expression | @swift_check_expression | @swift_comparison_expression | @swift_conjunction_expression | @swift_constructor_expression | @swift_dictionary_literal | @swift_directive | @swift_disjunction_expression | @swift_equality_expression | @swift_if_statement | @swift_infix_expression | @swift_key_path_expression | @swift_key_path_string_expression | @swift_lambda_literal | @swift_line_string_literal | @swift_macro_invocation | @swift_multi_line_string_literal | @swift_multiplicative_expression | @swift_navigation_expression | @swift_nil_coalescing_expression | @swift_open_end_range_expression | @swift_open_start_range_expression | @swift_playground_literal | @swift_postfix_expression | @swift_prefix_expression | @swift_range_expression | @swift_raw_string_literal | @swift_selector_expression | @swift_switch_statement | @swift_ternary_expression | @swift_token_bang | @swift_token_bin_literal | @swift_token_boolean_literal | @swift_token_custom_operator | @swift_token_diagnostic | @swift_token_fully_open_range | @swift_token_hex_literal | @swift_token_integer_literal | @swift_token_oct_literal | @swift_token_real_literal | @swift_token_regex_literal | @swift_token_self_expression | @swift_token_simple_identifier | @swift_token_special_literal | @swift_token_super_expression | @swift_token_throw_keyword | @swift_try_expression | @swift_tuple_expression | @swift_value_pack_expansion | @swift_value_parameter_pack +@swift_control_transfer_statement_child_type = @swift_additive_expression | @swift_array_literal | @swift_as_expression | @swift_assignment | @swift_await_expression | @swift_bitwise_operation | @swift_call_expression | @swift_check_expression | @swift_comparison_expression | @swift_conjunction_expression | @swift_constructor_expression | @swift_dictionary_literal | @swift_directive | @swift_disjunction_expression | @swift_equality_expression | @swift_if_statement | @swift_infix_expression | @swift_key_path_expression | @swift_key_path_string_expression | @swift_lambda_literal | @swift_line_string_literal | @swift_macro_invocation | @swift_multi_line_string_literal | @swift_multiplicative_expression | @swift_navigation_expression | @swift_nil_coalescing_expression | @swift_open_end_range_expression | @swift_open_start_range_expression | @swift_optional_chain_marker | @swift_playground_literal | @swift_postfix_expression | @swift_prefix_expression | @swift_range_expression | @swift_raw_string_literal | @swift_selector_expression | @swift_switch_statement | @swift_ternary_expression | @swift_token_bang | @swift_token_bin_literal | @swift_token_boolean_literal | @swift_token_custom_operator | @swift_token_diagnostic | @swift_token_fully_open_range | @swift_token_hex_literal | @swift_token_integer_literal | @swift_token_oct_literal | @swift_token_real_literal | @swift_token_regex_literal | @swift_token_self_expression | @swift_token_simple_identifier | @swift_token_special_literal | @swift_token_super_expression | @swift_token_throw_keyword | @swift_try_expression | @swift_tuple_expression | @swift_value_pack_expansion | @swift_value_parameter_pack #keyset[swift_control_transfer_statement, index] swift_control_transfer_statement_child( @@ -699,7 +627,7 @@ swift_deprecated_operator_declaration_body_def( unique int id: @swift_deprecated_operator_declaration_body ); -@swift_dictionary_literal_key_type = @swift_additive_expression | @swift_array_literal | @swift_as_expression | @swift_assignment | @swift_await_expression | @swift_bitwise_operation | @swift_call_expression | @swift_check_expression | @swift_comparison_expression | @swift_conjunction_expression | @swift_constructor_expression | @swift_dictionary_literal | @swift_directive | @swift_disjunction_expression | @swift_equality_expression | @swift_if_statement | @swift_infix_expression | @swift_key_path_expression | @swift_key_path_string_expression | @swift_lambda_literal | @swift_line_string_literal | @swift_macro_invocation | @swift_multi_line_string_literal | @swift_multiplicative_expression | @swift_navigation_expression | @swift_nil_coalescing_expression | @swift_open_end_range_expression | @swift_open_start_range_expression | @swift_playground_literal | @swift_postfix_expression | @swift_prefix_expression | @swift_range_expression | @swift_raw_string_literal | @swift_reserved_word | @swift_selector_expression | @swift_switch_statement | @swift_ternary_expression | @swift_token_bang | @swift_token_bin_literal | @swift_token_boolean_literal | @swift_token_custom_operator | @swift_token_diagnostic | @swift_token_fully_open_range | @swift_token_hex_literal | @swift_token_integer_literal | @swift_token_oct_literal | @swift_token_real_literal | @swift_token_regex_literal | @swift_token_self_expression | @swift_token_simple_identifier | @swift_token_special_literal | @swift_token_super_expression | @swift_try_expression | @swift_tuple_expression | @swift_value_pack_expansion | @swift_value_parameter_pack +@swift_dictionary_literal_key_type = @swift_additive_expression | @swift_array_literal | @swift_as_expression | @swift_assignment | @swift_await_expression | @swift_bitwise_operation | @swift_call_expression | @swift_check_expression | @swift_comparison_expression | @swift_conjunction_expression | @swift_constructor_expression | @swift_dictionary_literal | @swift_directive | @swift_disjunction_expression | @swift_equality_expression | @swift_if_statement | @swift_infix_expression | @swift_key_path_expression | @swift_key_path_string_expression | @swift_lambda_literal | @swift_line_string_literal | @swift_macro_invocation | @swift_multi_line_string_literal | @swift_multiplicative_expression | @swift_navigation_expression | @swift_nil_coalescing_expression | @swift_open_end_range_expression | @swift_open_start_range_expression | @swift_optional_chain_marker | @swift_playground_literal | @swift_postfix_expression | @swift_prefix_expression | @swift_range_expression | @swift_raw_string_literal | @swift_reserved_word | @swift_selector_expression | @swift_switch_statement | @swift_ternary_expression | @swift_token_bang | @swift_token_bin_literal | @swift_token_boolean_literal | @swift_token_custom_operator | @swift_token_diagnostic | @swift_token_fully_open_range | @swift_token_hex_literal | @swift_token_integer_literal | @swift_token_oct_literal | @swift_token_real_literal | @swift_token_regex_literal | @swift_token_self_expression | @swift_token_simple_identifier | @swift_token_special_literal | @swift_token_super_expression | @swift_try_expression | @swift_tuple_expression | @swift_value_pack_expansion | @swift_value_parameter_pack #keyset[swift_dictionary_literal, index] swift_dictionary_literal_key( @@ -708,7 +636,7 @@ swift_dictionary_literal_key( unique int key__: @swift_dictionary_literal_key_type ref ); -@swift_dictionary_literal_value_type = @swift_additive_expression | @swift_array_literal | @swift_as_expression | @swift_assignment | @swift_await_expression | @swift_bitwise_operation | @swift_call_expression | @swift_check_expression | @swift_comparison_expression | @swift_conjunction_expression | @swift_constructor_expression | @swift_dictionary_literal | @swift_directive | @swift_disjunction_expression | @swift_equality_expression | @swift_if_statement | @swift_infix_expression | @swift_key_path_expression | @swift_key_path_string_expression | @swift_lambda_literal | @swift_line_string_literal | @swift_macro_invocation | @swift_multi_line_string_literal | @swift_multiplicative_expression | @swift_navigation_expression | @swift_nil_coalescing_expression | @swift_open_end_range_expression | @swift_open_start_range_expression | @swift_playground_literal | @swift_postfix_expression | @swift_prefix_expression | @swift_range_expression | @swift_raw_string_literal | @swift_reserved_word | @swift_selector_expression | @swift_switch_statement | @swift_ternary_expression | @swift_token_bang | @swift_token_bin_literal | @swift_token_boolean_literal | @swift_token_custom_operator | @swift_token_diagnostic | @swift_token_fully_open_range | @swift_token_hex_literal | @swift_token_integer_literal | @swift_token_oct_literal | @swift_token_real_literal | @swift_token_regex_literal | @swift_token_self_expression | @swift_token_simple_identifier | @swift_token_special_literal | @swift_token_super_expression | @swift_try_expression | @swift_tuple_expression | @swift_value_pack_expansion | @swift_value_parameter_pack +@swift_dictionary_literal_value_type = @swift_additive_expression | @swift_array_literal | @swift_as_expression | @swift_assignment | @swift_await_expression | @swift_bitwise_operation | @swift_call_expression | @swift_check_expression | @swift_comparison_expression | @swift_conjunction_expression | @swift_constructor_expression | @swift_dictionary_literal | @swift_directive | @swift_disjunction_expression | @swift_equality_expression | @swift_if_statement | @swift_infix_expression | @swift_key_path_expression | @swift_key_path_string_expression | @swift_lambda_literal | @swift_line_string_literal | @swift_macro_invocation | @swift_multi_line_string_literal | @swift_multiplicative_expression | @swift_navigation_expression | @swift_nil_coalescing_expression | @swift_open_end_range_expression | @swift_open_start_range_expression | @swift_optional_chain_marker | @swift_playground_literal | @swift_postfix_expression | @swift_prefix_expression | @swift_range_expression | @swift_raw_string_literal | @swift_reserved_word | @swift_selector_expression | @swift_switch_statement | @swift_ternary_expression | @swift_token_bang | @swift_token_bin_literal | @swift_token_boolean_literal | @swift_token_custom_operator | @swift_token_diagnostic | @swift_token_fully_open_range | @swift_token_hex_literal | @swift_token_integer_literal | @swift_token_oct_literal | @swift_token_real_literal | @swift_token_regex_literal | @swift_token_self_expression | @swift_token_simple_identifier | @swift_token_special_literal | @swift_token_super_expression | @swift_try_expression | @swift_tuple_expression | @swift_value_pack_expansion | @swift_value_parameter_pack #keyset[swift_dictionary_literal, index] swift_dictionary_literal_value( @@ -778,7 +706,7 @@ swift_directive_def( unique int id: @swift_directive ); -@swift_directly_assignable_expression_child_type = @swift_additive_expression | @swift_array_literal | @swift_as_expression | @swift_assignment | @swift_await_expression | @swift_bitwise_operation | @swift_call_expression | @swift_check_expression | @swift_comparison_expression | @swift_conjunction_expression | @swift_constructor_expression | @swift_dictionary_literal | @swift_directive | @swift_disjunction_expression | @swift_equality_expression | @swift_if_statement | @swift_infix_expression | @swift_key_path_expression | @swift_key_path_string_expression | @swift_lambda_literal | @swift_line_string_literal | @swift_macro_invocation | @swift_multi_line_string_literal | @swift_multiplicative_expression | @swift_navigation_expression | @swift_nil_coalescing_expression | @swift_open_end_range_expression | @swift_open_start_range_expression | @swift_playground_literal | @swift_postfix_expression | @swift_prefix_expression | @swift_range_expression | @swift_raw_string_literal | @swift_selector_expression | @swift_switch_statement | @swift_ternary_expression | @swift_token_bang | @swift_token_bin_literal | @swift_token_boolean_literal | @swift_token_custom_operator | @swift_token_diagnostic | @swift_token_fully_open_range | @swift_token_hex_literal | @swift_token_integer_literal | @swift_token_oct_literal | @swift_token_real_literal | @swift_token_regex_literal | @swift_token_self_expression | @swift_token_simple_identifier | @swift_token_special_literal | @swift_token_super_expression | @swift_try_expression | @swift_tuple_expression | @swift_value_pack_expansion | @swift_value_parameter_pack +@swift_directly_assignable_expression_child_type = @swift_additive_expression | @swift_array_literal | @swift_as_expression | @swift_assignment | @swift_await_expression | @swift_bitwise_operation | @swift_call_expression | @swift_check_expression | @swift_comparison_expression | @swift_conjunction_expression | @swift_constructor_expression | @swift_dictionary_literal | @swift_directive | @swift_disjunction_expression | @swift_equality_expression | @swift_if_statement | @swift_infix_expression | @swift_key_path_expression | @swift_key_path_string_expression | @swift_lambda_literal | @swift_line_string_literal | @swift_macro_invocation | @swift_multi_line_string_literal | @swift_multiplicative_expression | @swift_navigation_expression | @swift_nil_coalescing_expression | @swift_open_end_range_expression | @swift_open_start_range_expression | @swift_optional_chain_marker | @swift_playground_literal | @swift_postfix_expression | @swift_prefix_expression | @swift_range_expression | @swift_raw_string_literal | @swift_selector_expression | @swift_switch_statement | @swift_ternary_expression | @swift_token_bang | @swift_token_bin_literal | @swift_token_boolean_literal | @swift_token_custom_operator | @swift_token_diagnostic | @swift_token_fully_open_range | @swift_token_hex_literal | @swift_token_integer_literal | @swift_token_oct_literal | @swift_token_real_literal | @swift_token_regex_literal | @swift_token_self_expression | @swift_token_simple_identifier | @swift_token_special_literal | @swift_token_super_expression | @swift_try_expression | @swift_tuple_expression | @swift_value_pack_expansion | @swift_value_parameter_pack swift_directly_assignable_expression_child( unique int swift_directly_assignable_expression: @swift_directly_assignable_expression ref, @@ -789,32 +717,20 @@ swift_directly_assignable_expression_def( unique int id: @swift_directly_assignable_expression ); -@swift_disjunction_expression_lhs_type = @swift_additive_expression | @swift_array_literal | @swift_as_expression | @swift_assignment | @swift_await_expression | @swift_bitwise_operation | @swift_call_expression | @swift_check_expression | @swift_comparison_expression | @swift_conjunction_expression | @swift_constructor_expression | @swift_dictionary_literal | @swift_directive | @swift_disjunction_expression | @swift_equality_expression | @swift_if_statement | @swift_infix_expression | @swift_key_path_expression | @swift_key_path_string_expression | @swift_lambda_literal | @swift_line_string_literal | @swift_macro_invocation | @swift_multi_line_string_literal | @swift_multiplicative_expression | @swift_navigation_expression | @swift_nil_coalescing_expression | @swift_open_end_range_expression | @swift_open_start_range_expression | @swift_playground_literal | @swift_postfix_expression | @swift_prefix_expression | @swift_range_expression | @swift_raw_string_literal | @swift_reserved_word | @swift_selector_expression | @swift_switch_statement | @swift_ternary_expression | @swift_token_bang | @swift_token_bin_literal | @swift_token_boolean_literal | @swift_token_custom_operator | @swift_token_diagnostic | @swift_token_fully_open_range | @swift_token_hex_literal | @swift_token_integer_literal | @swift_token_oct_literal | @swift_token_real_literal | @swift_token_regex_literal | @swift_token_self_expression | @swift_token_simple_identifier | @swift_token_special_literal | @swift_token_super_expression | @swift_try_expression | @swift_tuple_expression | @swift_value_pack_expansion | @swift_value_parameter_pack - -#keyset[swift_disjunction_expression, index] -swift_disjunction_expression_lhs( - int swift_disjunction_expression: @swift_disjunction_expression ref, - int index: int ref, - unique int lhs: @swift_disjunction_expression_lhs_type ref -); +@swift_disjunction_expression_lhs_type = @swift_additive_expression | @swift_array_literal | @swift_as_expression | @swift_assignment | @swift_await_expression | @swift_bitwise_operation | @swift_call_expression | @swift_check_expression | @swift_comparison_expression | @swift_conjunction_expression | @swift_constructor_expression | @swift_dictionary_literal | @swift_directive | @swift_disjunction_expression | @swift_equality_expression | @swift_if_statement | @swift_infix_expression | @swift_key_path_expression | @swift_key_path_string_expression | @swift_lambda_literal | @swift_line_string_literal | @swift_macro_invocation | @swift_multi_line_string_literal | @swift_multiplicative_expression | @swift_navigation_expression | @swift_nil_coalescing_expression | @swift_open_end_range_expression | @swift_open_start_range_expression | @swift_optional_chain_marker | @swift_playground_literal | @swift_postfix_expression | @swift_prefix_expression | @swift_range_expression | @swift_raw_string_literal | @swift_reserved_word | @swift_selector_expression | @swift_switch_statement | @swift_ternary_expression | @swift_token_bang | @swift_token_bin_literal | @swift_token_boolean_literal | @swift_token_custom_operator | @swift_token_diagnostic | @swift_token_fully_open_range | @swift_token_hex_literal | @swift_token_integer_literal | @swift_token_oct_literal | @swift_token_real_literal | @swift_token_regex_literal | @swift_token_self_expression | @swift_token_simple_identifier | @swift_token_special_literal | @swift_token_super_expression | @swift_try_expression | @swift_tuple_expression | @swift_value_pack_expansion | @swift_value_parameter_pack case @swift_disjunction_expression.op of 0 = @swift_disjunction_expression_pipepipe ; -@swift_disjunction_expression_rhs_type = @swift_additive_expression | @swift_array_literal | @swift_as_expression | @swift_assignment | @swift_await_expression | @swift_bitwise_operation | @swift_call_expression | @swift_check_expression | @swift_comparison_expression | @swift_conjunction_expression | @swift_constructor_expression | @swift_dictionary_literal | @swift_directive | @swift_disjunction_expression | @swift_equality_expression | @swift_if_statement | @swift_infix_expression | @swift_key_path_expression | @swift_key_path_string_expression | @swift_lambda_literal | @swift_line_string_literal | @swift_macro_invocation | @swift_multi_line_string_literal | @swift_multiplicative_expression | @swift_navigation_expression | @swift_nil_coalescing_expression | @swift_open_end_range_expression | @swift_open_start_range_expression | @swift_playground_literal | @swift_postfix_expression | @swift_prefix_expression | @swift_range_expression | @swift_raw_string_literal | @swift_reserved_word | @swift_selector_expression | @swift_switch_statement | @swift_ternary_expression | @swift_token_bang | @swift_token_bin_literal | @swift_token_boolean_literal | @swift_token_custom_operator | @swift_token_diagnostic | @swift_token_fully_open_range | @swift_token_hex_literal | @swift_token_integer_literal | @swift_token_oct_literal | @swift_token_real_literal | @swift_token_regex_literal | @swift_token_self_expression | @swift_token_simple_identifier | @swift_token_special_literal | @swift_token_super_expression | @swift_try_expression | @swift_tuple_expression | @swift_value_pack_expansion | @swift_value_parameter_pack - -#keyset[swift_disjunction_expression, index] -swift_disjunction_expression_rhs( - int swift_disjunction_expression: @swift_disjunction_expression ref, - int index: int ref, - unique int rhs: @swift_disjunction_expression_rhs_type ref -); +@swift_disjunction_expression_rhs_type = @swift_additive_expression | @swift_array_literal | @swift_as_expression | @swift_assignment | @swift_await_expression | @swift_bitwise_operation | @swift_call_expression | @swift_check_expression | @swift_comparison_expression | @swift_conjunction_expression | @swift_constructor_expression | @swift_dictionary_literal | @swift_directive | @swift_disjunction_expression | @swift_equality_expression | @swift_if_statement | @swift_infix_expression | @swift_key_path_expression | @swift_key_path_string_expression | @swift_lambda_literal | @swift_line_string_literal | @swift_macro_invocation | @swift_multi_line_string_literal | @swift_multiplicative_expression | @swift_navigation_expression | @swift_nil_coalescing_expression | @swift_open_end_range_expression | @swift_open_start_range_expression | @swift_optional_chain_marker | @swift_playground_literal | @swift_postfix_expression | @swift_prefix_expression | @swift_range_expression | @swift_raw_string_literal | @swift_reserved_word | @swift_selector_expression | @swift_switch_statement | @swift_ternary_expression | @swift_token_bang | @swift_token_bin_literal | @swift_token_boolean_literal | @swift_token_custom_operator | @swift_token_diagnostic | @swift_token_fully_open_range | @swift_token_hex_literal | @swift_token_integer_literal | @swift_token_oct_literal | @swift_token_real_literal | @swift_token_regex_literal | @swift_token_self_expression | @swift_token_simple_identifier | @swift_token_special_literal | @swift_token_super_expression | @swift_try_expression | @swift_tuple_expression | @swift_value_pack_expansion | @swift_value_parameter_pack swift_disjunction_expression_def( unique int id: @swift_disjunction_expression, - int op: int ref + int lhs: @swift_disjunction_expression_lhs_type ref, + int op: int ref, + int rhs: @swift_disjunction_expression_rhs_type ref ); @swift_do_statement_child_type = @swift_catch_block | @swift_statements @@ -857,7 +773,7 @@ swift_enum_entry_name( unique int name: @swift_token_simple_identifier ref ); -@swift_enum_entry_raw_value_type = @swift_additive_expression | @swift_array_literal | @swift_as_expression | @swift_assignment | @swift_await_expression | @swift_bitwise_operation | @swift_call_expression | @swift_check_expression | @swift_comparison_expression | @swift_conjunction_expression | @swift_constructor_expression | @swift_dictionary_literal | @swift_directive | @swift_disjunction_expression | @swift_equality_expression | @swift_if_statement | @swift_infix_expression | @swift_key_path_expression | @swift_key_path_string_expression | @swift_lambda_literal | @swift_line_string_literal | @swift_macro_invocation | @swift_multi_line_string_literal | @swift_multiplicative_expression | @swift_navigation_expression | @swift_nil_coalescing_expression | @swift_open_end_range_expression | @swift_open_start_range_expression | @swift_playground_literal | @swift_postfix_expression | @swift_prefix_expression | @swift_range_expression | @swift_raw_string_literal | @swift_reserved_word | @swift_selector_expression | @swift_switch_statement | @swift_ternary_expression | @swift_token_bang | @swift_token_bin_literal | @swift_token_boolean_literal | @swift_token_custom_operator | @swift_token_diagnostic | @swift_token_fully_open_range | @swift_token_hex_literal | @swift_token_integer_literal | @swift_token_oct_literal | @swift_token_real_literal | @swift_token_regex_literal | @swift_token_self_expression | @swift_token_simple_identifier | @swift_token_special_literal | @swift_token_super_expression | @swift_try_expression | @swift_tuple_expression | @swift_value_pack_expansion | @swift_value_parameter_pack +@swift_enum_entry_raw_value_type = @swift_additive_expression | @swift_array_literal | @swift_as_expression | @swift_assignment | @swift_await_expression | @swift_bitwise_operation | @swift_call_expression | @swift_check_expression | @swift_comparison_expression | @swift_conjunction_expression | @swift_constructor_expression | @swift_dictionary_literal | @swift_directive | @swift_disjunction_expression | @swift_equality_expression | @swift_if_statement | @swift_infix_expression | @swift_key_path_expression | @swift_key_path_string_expression | @swift_lambda_literal | @swift_line_string_literal | @swift_macro_invocation | @swift_multi_line_string_literal | @swift_multiplicative_expression | @swift_navigation_expression | @swift_nil_coalescing_expression | @swift_open_end_range_expression | @swift_open_start_range_expression | @swift_optional_chain_marker | @swift_playground_literal | @swift_postfix_expression | @swift_prefix_expression | @swift_range_expression | @swift_raw_string_literal | @swift_reserved_word | @swift_selector_expression | @swift_switch_statement | @swift_ternary_expression | @swift_token_bang | @swift_token_bin_literal | @swift_token_boolean_literal | @swift_token_custom_operator | @swift_token_diagnostic | @swift_token_fully_open_range | @swift_token_hex_literal | @swift_token_integer_literal | @swift_token_oct_literal | @swift_token_real_literal | @swift_token_regex_literal | @swift_token_self_expression | @swift_token_simple_identifier | @swift_token_special_literal | @swift_token_super_expression | @swift_try_expression | @swift_tuple_expression | @swift_value_pack_expansion | @swift_value_parameter_pack #keyset[swift_enum_entry, index] swift_enum_entry_raw_value( @@ -884,7 +800,7 @@ swift_enum_type_parameters_name( unique int name: @swift_enum_type_parameters_name_type ref ); -@swift_enum_type_parameters_child_type = @swift_additive_expression | @swift_array_literal | @swift_as_expression | @swift_assignment | @swift_await_expression | @swift_bitwise_operation | @swift_call_expression | @swift_check_expression | @swift_comparison_expression | @swift_conjunction_expression | @swift_constructor_expression | @swift_dictionary_literal | @swift_directive | @swift_disjunction_expression | @swift_equality_expression | @swift_if_statement | @swift_infix_expression | @swift_key_path_expression | @swift_key_path_string_expression | @swift_lambda_literal | @swift_line_string_literal | @swift_macro_invocation | @swift_multi_line_string_literal | @swift_multiplicative_expression | @swift_navigation_expression | @swift_nil_coalescing_expression | @swift_open_end_range_expression | @swift_open_start_range_expression | @swift_playground_literal | @swift_postfix_expression | @swift_prefix_expression | @swift_range_expression | @swift_raw_string_literal | @swift_selector_expression | @swift_switch_statement | @swift_ternary_expression | @swift_token_bang | @swift_token_bin_literal | @swift_token_boolean_literal | @swift_token_custom_operator | @swift_token_diagnostic | @swift_token_fully_open_range | @swift_token_hex_literal | @swift_token_integer_literal | @swift_token_oct_literal | @swift_token_real_literal | @swift_token_regex_literal | @swift_token_self_expression | @swift_token_simple_identifier | @swift_token_special_literal | @swift_token_super_expression | @swift_token_wildcard_pattern | @swift_try_expression | @swift_tuple_expression | @swift_type_modifiers | @swift_value_pack_expansion | @swift_value_parameter_pack +@swift_enum_type_parameters_child_type = @swift_additive_expression | @swift_array_literal | @swift_as_expression | @swift_assignment | @swift_await_expression | @swift_bitwise_operation | @swift_call_expression | @swift_check_expression | @swift_comparison_expression | @swift_conjunction_expression | @swift_constructor_expression | @swift_dictionary_literal | @swift_directive | @swift_disjunction_expression | @swift_equality_expression | @swift_if_statement | @swift_infix_expression | @swift_key_path_expression | @swift_key_path_string_expression | @swift_lambda_literal | @swift_line_string_literal | @swift_macro_invocation | @swift_multi_line_string_literal | @swift_multiplicative_expression | @swift_navigation_expression | @swift_nil_coalescing_expression | @swift_open_end_range_expression | @swift_open_start_range_expression | @swift_optional_chain_marker | @swift_playground_literal | @swift_postfix_expression | @swift_prefix_expression | @swift_range_expression | @swift_raw_string_literal | @swift_selector_expression | @swift_switch_statement | @swift_ternary_expression | @swift_token_bang | @swift_token_bin_literal | @swift_token_boolean_literal | @swift_token_custom_operator | @swift_token_diagnostic | @swift_token_fully_open_range | @swift_token_hex_literal | @swift_token_integer_literal | @swift_token_oct_literal | @swift_token_real_literal | @swift_token_regex_literal | @swift_token_self_expression | @swift_token_simple_identifier | @swift_token_special_literal | @swift_token_super_expression | @swift_token_wildcard_pattern | @swift_try_expression | @swift_tuple_expression | @swift_type_modifiers | @swift_value_pack_expansion | @swift_value_parameter_pack #keyset[swift_enum_type_parameters, index] swift_enum_type_parameters_child( @@ -929,14 +845,7 @@ swift_equality_constraint_def( int name: @swift_equality_constraint_name_type ref ); -@swift_equality_expression_lhs_type = @swift_additive_expression | @swift_array_literal | @swift_as_expression | @swift_assignment | @swift_await_expression | @swift_bitwise_operation | @swift_call_expression | @swift_check_expression | @swift_comparison_expression | @swift_conjunction_expression | @swift_constructor_expression | @swift_dictionary_literal | @swift_directive | @swift_disjunction_expression | @swift_equality_expression | @swift_if_statement | @swift_infix_expression | @swift_key_path_expression | @swift_key_path_string_expression | @swift_lambda_literal | @swift_line_string_literal | @swift_macro_invocation | @swift_multi_line_string_literal | @swift_multiplicative_expression | @swift_navigation_expression | @swift_nil_coalescing_expression | @swift_open_end_range_expression | @swift_open_start_range_expression | @swift_playground_literal | @swift_postfix_expression | @swift_prefix_expression | @swift_range_expression | @swift_raw_string_literal | @swift_reserved_word | @swift_selector_expression | @swift_switch_statement | @swift_ternary_expression | @swift_token_bang | @swift_token_bin_literal | @swift_token_boolean_literal | @swift_token_custom_operator | @swift_token_diagnostic | @swift_token_fully_open_range | @swift_token_hex_literal | @swift_token_integer_literal | @swift_token_oct_literal | @swift_token_real_literal | @swift_token_regex_literal | @swift_token_self_expression | @swift_token_simple_identifier | @swift_token_special_literal | @swift_token_super_expression | @swift_try_expression | @swift_tuple_expression | @swift_value_pack_expansion | @swift_value_parameter_pack - -#keyset[swift_equality_expression, index] -swift_equality_expression_lhs( - int swift_equality_expression: @swift_equality_expression ref, - int index: int ref, - unique int lhs: @swift_equality_expression_lhs_type ref -); +@swift_equality_expression_lhs_type = @swift_additive_expression | @swift_array_literal | @swift_as_expression | @swift_assignment | @swift_await_expression | @swift_bitwise_operation | @swift_call_expression | @swift_check_expression | @swift_comparison_expression | @swift_conjunction_expression | @swift_constructor_expression | @swift_dictionary_literal | @swift_directive | @swift_disjunction_expression | @swift_equality_expression | @swift_if_statement | @swift_infix_expression | @swift_key_path_expression | @swift_key_path_string_expression | @swift_lambda_literal | @swift_line_string_literal | @swift_macro_invocation | @swift_multi_line_string_literal | @swift_multiplicative_expression | @swift_navigation_expression | @swift_nil_coalescing_expression | @swift_open_end_range_expression | @swift_open_start_range_expression | @swift_optional_chain_marker | @swift_playground_literal | @swift_postfix_expression | @swift_prefix_expression | @swift_range_expression | @swift_raw_string_literal | @swift_reserved_word | @swift_selector_expression | @swift_switch_statement | @swift_ternary_expression | @swift_token_bang | @swift_token_bin_literal | @swift_token_boolean_literal | @swift_token_custom_operator | @swift_token_diagnostic | @swift_token_fully_open_range | @swift_token_hex_literal | @swift_token_integer_literal | @swift_token_oct_literal | @swift_token_real_literal | @swift_token_regex_literal | @swift_token_self_expression | @swift_token_simple_identifier | @swift_token_special_literal | @swift_token_super_expression | @swift_try_expression | @swift_tuple_expression | @swift_value_pack_expansion | @swift_value_parameter_pack case @swift_equality_expression.op of 0 = @swift_equality_expression_bangequal @@ -946,18 +855,13 @@ case @swift_equality_expression.op of ; -@swift_equality_expression_rhs_type = @swift_additive_expression | @swift_array_literal | @swift_as_expression | @swift_assignment | @swift_await_expression | @swift_bitwise_operation | @swift_call_expression | @swift_check_expression | @swift_comparison_expression | @swift_conjunction_expression | @swift_constructor_expression | @swift_dictionary_literal | @swift_directive | @swift_disjunction_expression | @swift_equality_expression | @swift_if_statement | @swift_infix_expression | @swift_key_path_expression | @swift_key_path_string_expression | @swift_lambda_literal | @swift_line_string_literal | @swift_macro_invocation | @swift_multi_line_string_literal | @swift_multiplicative_expression | @swift_navigation_expression | @swift_nil_coalescing_expression | @swift_open_end_range_expression | @swift_open_start_range_expression | @swift_playground_literal | @swift_postfix_expression | @swift_prefix_expression | @swift_range_expression | @swift_raw_string_literal | @swift_reserved_word | @swift_selector_expression | @swift_switch_statement | @swift_ternary_expression | @swift_token_bang | @swift_token_bin_literal | @swift_token_boolean_literal | @swift_token_custom_operator | @swift_token_diagnostic | @swift_token_fully_open_range | @swift_token_hex_literal | @swift_token_integer_literal | @swift_token_oct_literal | @swift_token_real_literal | @swift_token_regex_literal | @swift_token_self_expression | @swift_token_simple_identifier | @swift_token_special_literal | @swift_token_super_expression | @swift_try_expression | @swift_tuple_expression | @swift_value_pack_expansion | @swift_value_parameter_pack - -#keyset[swift_equality_expression, index] -swift_equality_expression_rhs( - int swift_equality_expression: @swift_equality_expression ref, - int index: int ref, - unique int rhs: @swift_equality_expression_rhs_type ref -); +@swift_equality_expression_rhs_type = @swift_additive_expression | @swift_array_literal | @swift_as_expression | @swift_assignment | @swift_await_expression | @swift_bitwise_operation | @swift_call_expression | @swift_check_expression | @swift_comparison_expression | @swift_conjunction_expression | @swift_constructor_expression | @swift_dictionary_literal | @swift_directive | @swift_disjunction_expression | @swift_equality_expression | @swift_if_statement | @swift_infix_expression | @swift_key_path_expression | @swift_key_path_string_expression | @swift_lambda_literal | @swift_line_string_literal | @swift_macro_invocation | @swift_multi_line_string_literal | @swift_multiplicative_expression | @swift_navigation_expression | @swift_nil_coalescing_expression | @swift_open_end_range_expression | @swift_open_start_range_expression | @swift_optional_chain_marker | @swift_playground_literal | @swift_postfix_expression | @swift_prefix_expression | @swift_range_expression | @swift_raw_string_literal | @swift_reserved_word | @swift_selector_expression | @swift_switch_statement | @swift_ternary_expression | @swift_token_bang | @swift_token_bin_literal | @swift_token_boolean_literal | @swift_token_custom_operator | @swift_token_diagnostic | @swift_token_fully_open_range | @swift_token_hex_literal | @swift_token_integer_literal | @swift_token_oct_literal | @swift_token_real_literal | @swift_token_regex_literal | @swift_token_self_expression | @swift_token_simple_identifier | @swift_token_special_literal | @swift_token_super_expression | @swift_try_expression | @swift_tuple_expression | @swift_value_pack_expansion | @swift_value_parameter_pack swift_equality_expression_def( unique int id: @swift_equality_expression, - int op: int ref + int lhs: @swift_equality_expression_lhs_type ref, + int op: int ref, + int rhs: @swift_equality_expression_rhs_type ref ); @swift_existential_type_child_type = @swift_array_type | @swift_dictionary_type | @swift_existential_type | @swift_function_type | @swift_metatype | @swift_opaque_type | @swift_optional_type | @swift_protocol_composition_type | @swift_suppressed_constraint | @swift_tuple_type | @swift_type_pack_expansion | @swift_type_parameter_pack | @swift_user_type @@ -972,14 +876,7 @@ swift_external_macro_definition_def( int child: @swift_value_arguments ref ); -@swift_for_statement_collection_type = @swift_additive_expression | @swift_array_literal | @swift_as_expression | @swift_assignment | @swift_await_expression | @swift_bitwise_operation | @swift_call_expression | @swift_check_expression | @swift_comparison_expression | @swift_conjunction_expression | @swift_constructor_expression | @swift_dictionary_literal | @swift_directive | @swift_disjunction_expression | @swift_equality_expression | @swift_if_statement | @swift_infix_expression | @swift_key_path_expression | @swift_key_path_string_expression | @swift_lambda_literal | @swift_line_string_literal | @swift_macro_invocation | @swift_multi_line_string_literal | @swift_multiplicative_expression | @swift_navigation_expression | @swift_nil_coalescing_expression | @swift_open_end_range_expression | @swift_open_start_range_expression | @swift_playground_literal | @swift_postfix_expression | @swift_prefix_expression | @swift_range_expression | @swift_raw_string_literal | @swift_reserved_word | @swift_selector_expression | @swift_switch_statement | @swift_ternary_expression | @swift_token_bang | @swift_token_bin_literal | @swift_token_boolean_literal | @swift_token_custom_operator | @swift_token_diagnostic | @swift_token_fully_open_range | @swift_token_hex_literal | @swift_token_integer_literal | @swift_token_oct_literal | @swift_token_real_literal | @swift_token_regex_literal | @swift_token_self_expression | @swift_token_simple_identifier | @swift_token_special_literal | @swift_token_super_expression | @swift_try_expression | @swift_tuple_expression | @swift_value_pack_expansion | @swift_value_parameter_pack - -#keyset[swift_for_statement, index] -swift_for_statement_collection( - int swift_for_statement: @swift_for_statement ref, - int index: int ref, - unique int collection: @swift_for_statement_collection_type ref -); +@swift_for_statement_collection_type = @swift_additive_expression | @swift_array_literal | @swift_as_expression | @swift_assignment | @swift_await_expression | @swift_bitwise_operation | @swift_call_expression | @swift_check_expression | @swift_comparison_expression | @swift_conjunction_expression | @swift_constructor_expression | @swift_dictionary_literal | @swift_directive | @swift_disjunction_expression | @swift_equality_expression | @swift_if_statement | @swift_infix_expression | @swift_key_path_expression | @swift_key_path_string_expression | @swift_lambda_literal | @swift_line_string_literal | @swift_macro_invocation | @swift_multi_line_string_literal | @swift_multiplicative_expression | @swift_navigation_expression | @swift_nil_coalescing_expression | @swift_open_end_range_expression | @swift_open_start_range_expression | @swift_optional_chain_marker | @swift_playground_literal | @swift_postfix_expression | @swift_prefix_expression | @swift_range_expression | @swift_raw_string_literal | @swift_reserved_word | @swift_selector_expression | @swift_switch_statement | @swift_ternary_expression | @swift_token_bang | @swift_token_bin_literal | @swift_token_boolean_literal | @swift_token_custom_operator | @swift_token_diagnostic | @swift_token_fully_open_range | @swift_token_hex_literal | @swift_token_integer_literal | @swift_token_oct_literal | @swift_token_real_literal | @swift_token_regex_literal | @swift_token_self_expression | @swift_token_simple_identifier | @swift_token_special_literal | @swift_token_super_expression | @swift_try_expression | @swift_tuple_expression | @swift_value_pack_expansion | @swift_value_parameter_pack @swift_for_statement_child_type = @swift_statements | @swift_token_try_operator | @swift_type_annotation | @swift_where_clause @@ -992,6 +889,7 @@ swift_for_statement_child( swift_for_statement_def( unique int id: @swift_for_statement, + int collection: @swift_for_statement_collection_type ref, int item: @swift_pattern ref ); @@ -1004,7 +902,7 @@ swift_function_body_def( unique int id: @swift_function_body ); -@swift_function_declaration_default_value_type = @swift_additive_expression | @swift_array_literal | @swift_as_expression | @swift_assignment | @swift_await_expression | @swift_bitwise_operation | @swift_call_expression | @swift_check_expression | @swift_comparison_expression | @swift_conjunction_expression | @swift_constructor_expression | @swift_dictionary_literal | @swift_directive | @swift_disjunction_expression | @swift_equality_expression | @swift_if_statement | @swift_infix_expression | @swift_key_path_expression | @swift_key_path_string_expression | @swift_lambda_literal | @swift_line_string_literal | @swift_macro_invocation | @swift_multi_line_string_literal | @swift_multiplicative_expression | @swift_navigation_expression | @swift_nil_coalescing_expression | @swift_open_end_range_expression | @swift_open_start_range_expression | @swift_playground_literal | @swift_postfix_expression | @swift_prefix_expression | @swift_range_expression | @swift_raw_string_literal | @swift_reserved_word | @swift_selector_expression | @swift_switch_statement | @swift_ternary_expression | @swift_token_bang | @swift_token_bin_literal | @swift_token_boolean_literal | @swift_token_custom_operator | @swift_token_diagnostic | @swift_token_fully_open_range | @swift_token_hex_literal | @swift_token_integer_literal | @swift_token_oct_literal | @swift_token_real_literal | @swift_token_regex_literal | @swift_token_self_expression | @swift_token_simple_identifier | @swift_token_special_literal | @swift_token_super_expression | @swift_try_expression | @swift_tuple_expression | @swift_value_pack_expansion | @swift_value_parameter_pack +@swift_function_declaration_default_value_type = @swift_additive_expression | @swift_array_literal | @swift_as_expression | @swift_assignment | @swift_await_expression | @swift_bitwise_operation | @swift_call_expression | @swift_check_expression | @swift_comparison_expression | @swift_conjunction_expression | @swift_constructor_expression | @swift_dictionary_literal | @swift_directive | @swift_disjunction_expression | @swift_equality_expression | @swift_if_statement | @swift_infix_expression | @swift_key_path_expression | @swift_key_path_string_expression | @swift_lambda_literal | @swift_line_string_literal | @swift_macro_invocation | @swift_multi_line_string_literal | @swift_multiplicative_expression | @swift_navigation_expression | @swift_nil_coalescing_expression | @swift_open_end_range_expression | @swift_open_start_range_expression | @swift_optional_chain_marker | @swift_playground_literal | @swift_postfix_expression | @swift_prefix_expression | @swift_range_expression | @swift_raw_string_literal | @swift_reserved_word | @swift_selector_expression | @swift_switch_statement | @swift_ternary_expression | @swift_token_bang | @swift_token_bin_literal | @swift_token_boolean_literal | @swift_token_custom_operator | @swift_token_diagnostic | @swift_token_fully_open_range | @swift_token_hex_literal | @swift_token_integer_literal | @swift_token_oct_literal | @swift_token_real_literal | @swift_token_regex_literal | @swift_token_self_expression | @swift_token_simple_identifier | @swift_token_special_literal | @swift_token_super_expression | @swift_try_expression | @swift_tuple_expression | @swift_value_pack_expansion | @swift_value_parameter_pack #keyset[swift_function_declaration, index] swift_function_declaration_default_value( @@ -1091,7 +989,7 @@ swift_guard_statement_bound_identifier( unique int bound_identifier: @swift_token_simple_identifier ref ); -@swift_guard_statement_condition_type = @swift_additive_expression | @swift_array_literal | @swift_array_type | @swift_as_expression | @swift_assignment | @swift_availability_condition | @swift_await_expression | @swift_bitwise_operation | @swift_call_expression | @swift_check_expression | @swift_comparison_expression | @swift_conjunction_expression | @swift_constructor_expression | @swift_dictionary_literal | @swift_dictionary_type | @swift_directive | @swift_disjunction_expression | @swift_equality_expression | @swift_existential_type | @swift_function_type | @swift_if_statement | @swift_infix_expression | @swift_key_path_expression | @swift_key_path_string_expression | @swift_lambda_literal | @swift_line_string_literal | @swift_macro_invocation | @swift_metatype | @swift_multi_line_string_literal | @swift_multiplicative_expression | @swift_navigation_expression | @swift_nil_coalescing_expression | @swift_opaque_type | @swift_open_end_range_expression | @swift_open_start_range_expression | @swift_optional_type | @swift_pattern | @swift_playground_literal | @swift_postfix_expression | @swift_prefix_expression | @swift_protocol_composition_type | @swift_range_expression | @swift_raw_string_literal | @swift_reserved_word | @swift_selector_expression | @swift_suppressed_constraint | @swift_switch_statement | @swift_ternary_expression | @swift_token_bang | @swift_token_bin_literal | @swift_token_boolean_literal | @swift_token_custom_operator | @swift_token_diagnostic | @swift_token_fully_open_range | @swift_token_hex_literal | @swift_token_integer_literal | @swift_token_oct_literal | @swift_token_real_literal | @swift_token_regex_literal | @swift_token_self_expression | @swift_token_simple_identifier | @swift_token_special_literal | @swift_token_super_expression | @swift_token_wildcard_pattern | @swift_try_expression | @swift_tuple_expression | @swift_tuple_type | @swift_type_annotation | @swift_type_modifiers | @swift_type_pack_expansion | @swift_type_parameter_pack | @swift_user_type | @swift_value_binding_pattern | @swift_value_pack_expansion | @swift_value_parameter_pack | @swift_where_clause +@swift_guard_statement_condition_type = @swift_additive_expression | @swift_array_literal | @swift_array_type | @swift_as_expression | @swift_assignment | @swift_availability_condition | @swift_await_expression | @swift_bitwise_operation | @swift_call_expression | @swift_check_expression | @swift_comparison_expression | @swift_conjunction_expression | @swift_constructor_expression | @swift_dictionary_literal | @swift_dictionary_type | @swift_directive | @swift_disjunction_expression | @swift_equality_expression | @swift_existential_type | @swift_function_type | @swift_if_statement | @swift_infix_expression | @swift_key_path_expression | @swift_key_path_string_expression | @swift_lambda_literal | @swift_line_string_literal | @swift_macro_invocation | @swift_metatype | @swift_multi_line_string_literal | @swift_multiplicative_expression | @swift_navigation_expression | @swift_nil_coalescing_expression | @swift_opaque_type | @swift_open_end_range_expression | @swift_open_start_range_expression | @swift_optional_chain_marker | @swift_optional_type | @swift_pattern | @swift_playground_literal | @swift_postfix_expression | @swift_prefix_expression | @swift_protocol_composition_type | @swift_range_expression | @swift_raw_string_literal | @swift_reserved_word | @swift_selector_expression | @swift_suppressed_constraint | @swift_switch_statement | @swift_ternary_expression | @swift_token_bang | @swift_token_bin_literal | @swift_token_boolean_literal | @swift_token_custom_operator | @swift_token_diagnostic | @swift_token_fully_open_range | @swift_token_hex_literal | @swift_token_integer_literal | @swift_token_oct_literal | @swift_token_real_literal | @swift_token_regex_literal | @swift_token_self_expression | @swift_token_simple_identifier | @swift_token_special_literal | @swift_token_super_expression | @swift_token_wildcard_pattern | @swift_try_expression | @swift_tuple_expression | @swift_tuple_type | @swift_type_annotation | @swift_type_modifiers | @swift_type_pack_expansion | @swift_type_parameter_pack | @swift_user_type | @swift_value_binding_pattern | @swift_value_pack_expansion | @swift_value_parameter_pack | @swift_where_clause #keyset[swift_guard_statement, index] swift_guard_statement_condition( @@ -1140,7 +1038,7 @@ swift_if_statement_bound_identifier( unique int bound_identifier: @swift_token_simple_identifier ref ); -@swift_if_statement_condition_type = @swift_additive_expression | @swift_array_literal | @swift_array_type | @swift_as_expression | @swift_assignment | @swift_availability_condition | @swift_await_expression | @swift_bitwise_operation | @swift_call_expression | @swift_check_expression | @swift_comparison_expression | @swift_conjunction_expression | @swift_constructor_expression | @swift_dictionary_literal | @swift_dictionary_type | @swift_directive | @swift_disjunction_expression | @swift_equality_expression | @swift_existential_type | @swift_function_type | @swift_if_statement | @swift_infix_expression | @swift_key_path_expression | @swift_key_path_string_expression | @swift_lambda_literal | @swift_line_string_literal | @swift_macro_invocation | @swift_metatype | @swift_multi_line_string_literal | @swift_multiplicative_expression | @swift_navigation_expression | @swift_nil_coalescing_expression | @swift_opaque_type | @swift_open_end_range_expression | @swift_open_start_range_expression | @swift_optional_type | @swift_pattern | @swift_playground_literal | @swift_postfix_expression | @swift_prefix_expression | @swift_protocol_composition_type | @swift_range_expression | @swift_raw_string_literal | @swift_reserved_word | @swift_selector_expression | @swift_suppressed_constraint | @swift_switch_statement | @swift_ternary_expression | @swift_token_bang | @swift_token_bin_literal | @swift_token_boolean_literal | @swift_token_custom_operator | @swift_token_diagnostic | @swift_token_fully_open_range | @swift_token_hex_literal | @swift_token_integer_literal | @swift_token_oct_literal | @swift_token_real_literal | @swift_token_regex_literal | @swift_token_self_expression | @swift_token_simple_identifier | @swift_token_special_literal | @swift_token_super_expression | @swift_token_wildcard_pattern | @swift_try_expression | @swift_tuple_expression | @swift_tuple_type | @swift_type_annotation | @swift_type_modifiers | @swift_type_pack_expansion | @swift_type_parameter_pack | @swift_user_type | @swift_value_binding_pattern | @swift_value_pack_expansion | @swift_value_parameter_pack | @swift_where_clause +@swift_if_statement_condition_type = @swift_additive_expression | @swift_array_literal | @swift_array_type | @swift_as_expression | @swift_assignment | @swift_availability_condition | @swift_await_expression | @swift_bitwise_operation | @swift_call_expression | @swift_check_expression | @swift_comparison_expression | @swift_conjunction_expression | @swift_constructor_expression | @swift_dictionary_literal | @swift_dictionary_type | @swift_directive | @swift_disjunction_expression | @swift_equality_expression | @swift_existential_type | @swift_function_type | @swift_if_statement | @swift_infix_expression | @swift_key_path_expression | @swift_key_path_string_expression | @swift_lambda_literal | @swift_line_string_literal | @swift_macro_invocation | @swift_metatype | @swift_multi_line_string_literal | @swift_multiplicative_expression | @swift_navigation_expression | @swift_nil_coalescing_expression | @swift_opaque_type | @swift_open_end_range_expression | @swift_open_start_range_expression | @swift_optional_chain_marker | @swift_optional_type | @swift_pattern | @swift_playground_literal | @swift_postfix_expression | @swift_prefix_expression | @swift_protocol_composition_type | @swift_range_expression | @swift_raw_string_literal | @swift_reserved_word | @swift_selector_expression | @swift_suppressed_constraint | @swift_switch_statement | @swift_ternary_expression | @swift_token_bang | @swift_token_bin_literal | @swift_token_boolean_literal | @swift_token_custom_operator | @swift_token_diagnostic | @swift_token_fully_open_range | @swift_token_hex_literal | @swift_token_integer_literal | @swift_token_oct_literal | @swift_token_real_literal | @swift_token_regex_literal | @swift_token_self_expression | @swift_token_simple_identifier | @swift_token_special_literal | @swift_token_super_expression | @swift_token_wildcard_pattern | @swift_try_expression | @swift_tuple_expression | @swift_tuple_type | @swift_type_annotation | @swift_type_modifiers | @swift_type_pack_expansion | @swift_type_parameter_pack | @swift_user_type | @swift_value_binding_pattern | @swift_value_pack_expansion | @swift_value_parameter_pack | @swift_where_clause #keyset[swift_if_statement, index] swift_if_statement_condition( @@ -1184,27 +1082,15 @@ swift_import_declaration_def( unique int id: @swift_import_declaration ); -@swift_infix_expression_lhs_type = @swift_additive_expression | @swift_array_literal | @swift_as_expression | @swift_assignment | @swift_await_expression | @swift_bitwise_operation | @swift_call_expression | @swift_check_expression | @swift_comparison_expression | @swift_conjunction_expression | @swift_constructor_expression | @swift_dictionary_literal | @swift_directive | @swift_disjunction_expression | @swift_equality_expression | @swift_if_statement | @swift_infix_expression | @swift_key_path_expression | @swift_key_path_string_expression | @swift_lambda_literal | @swift_line_string_literal | @swift_macro_invocation | @swift_multi_line_string_literal | @swift_multiplicative_expression | @swift_navigation_expression | @swift_nil_coalescing_expression | @swift_open_end_range_expression | @swift_open_start_range_expression | @swift_playground_literal | @swift_postfix_expression | @swift_prefix_expression | @swift_range_expression | @swift_raw_string_literal | @swift_reserved_word | @swift_selector_expression | @swift_switch_statement | @swift_ternary_expression | @swift_token_bang | @swift_token_bin_literal | @swift_token_boolean_literal | @swift_token_custom_operator | @swift_token_diagnostic | @swift_token_fully_open_range | @swift_token_hex_literal | @swift_token_integer_literal | @swift_token_oct_literal | @swift_token_real_literal | @swift_token_regex_literal | @swift_token_self_expression | @swift_token_simple_identifier | @swift_token_special_literal | @swift_token_super_expression | @swift_try_expression | @swift_tuple_expression | @swift_value_pack_expansion | @swift_value_parameter_pack - -#keyset[swift_infix_expression, index] -swift_infix_expression_lhs( - int swift_infix_expression: @swift_infix_expression ref, - int index: int ref, - unique int lhs: @swift_infix_expression_lhs_type ref -); - -@swift_infix_expression_rhs_type = @swift_additive_expression | @swift_array_literal | @swift_as_expression | @swift_assignment | @swift_await_expression | @swift_bitwise_operation | @swift_call_expression | @swift_check_expression | @swift_comparison_expression | @swift_conjunction_expression | @swift_constructor_expression | @swift_dictionary_literal | @swift_directive | @swift_disjunction_expression | @swift_equality_expression | @swift_if_statement | @swift_infix_expression | @swift_key_path_expression | @swift_key_path_string_expression | @swift_lambda_literal | @swift_line_string_literal | @swift_macro_invocation | @swift_multi_line_string_literal | @swift_multiplicative_expression | @swift_navigation_expression | @swift_nil_coalescing_expression | @swift_open_end_range_expression | @swift_open_start_range_expression | @swift_playground_literal | @swift_postfix_expression | @swift_prefix_expression | @swift_range_expression | @swift_raw_string_literal | @swift_reserved_word | @swift_selector_expression | @swift_switch_statement | @swift_ternary_expression | @swift_token_bang | @swift_token_bin_literal | @swift_token_boolean_literal | @swift_token_custom_operator | @swift_token_diagnostic | @swift_token_fully_open_range | @swift_token_hex_literal | @swift_token_integer_literal | @swift_token_oct_literal | @swift_token_real_literal | @swift_token_regex_literal | @swift_token_self_expression | @swift_token_simple_identifier | @swift_token_special_literal | @swift_token_super_expression | @swift_try_expression | @swift_tuple_expression | @swift_value_pack_expansion | @swift_value_parameter_pack +@swift_infix_expression_lhs_type = @swift_additive_expression | @swift_array_literal | @swift_as_expression | @swift_assignment | @swift_await_expression | @swift_bitwise_operation | @swift_call_expression | @swift_check_expression | @swift_comparison_expression | @swift_conjunction_expression | @swift_constructor_expression | @swift_dictionary_literal | @swift_directive | @swift_disjunction_expression | @swift_equality_expression | @swift_if_statement | @swift_infix_expression | @swift_key_path_expression | @swift_key_path_string_expression | @swift_lambda_literal | @swift_line_string_literal | @swift_macro_invocation | @swift_multi_line_string_literal | @swift_multiplicative_expression | @swift_navigation_expression | @swift_nil_coalescing_expression | @swift_open_end_range_expression | @swift_open_start_range_expression | @swift_optional_chain_marker | @swift_playground_literal | @swift_postfix_expression | @swift_prefix_expression | @swift_range_expression | @swift_raw_string_literal | @swift_reserved_word | @swift_selector_expression | @swift_switch_statement | @swift_ternary_expression | @swift_token_bang | @swift_token_bin_literal | @swift_token_boolean_literal | @swift_token_custom_operator | @swift_token_diagnostic | @swift_token_fully_open_range | @swift_token_hex_literal | @swift_token_integer_literal | @swift_token_oct_literal | @swift_token_real_literal | @swift_token_regex_literal | @swift_token_self_expression | @swift_token_simple_identifier | @swift_token_special_literal | @swift_token_super_expression | @swift_try_expression | @swift_tuple_expression | @swift_value_pack_expansion | @swift_value_parameter_pack -#keyset[swift_infix_expression, index] -swift_infix_expression_rhs( - int swift_infix_expression: @swift_infix_expression ref, - int index: int ref, - unique int rhs: @swift_infix_expression_rhs_type ref -); +@swift_infix_expression_rhs_type = @swift_additive_expression | @swift_array_literal | @swift_as_expression | @swift_assignment | @swift_await_expression | @swift_bitwise_operation | @swift_call_expression | @swift_check_expression | @swift_comparison_expression | @swift_conjunction_expression | @swift_constructor_expression | @swift_dictionary_literal | @swift_directive | @swift_disjunction_expression | @swift_equality_expression | @swift_if_statement | @swift_infix_expression | @swift_key_path_expression | @swift_key_path_string_expression | @swift_lambda_literal | @swift_line_string_literal | @swift_macro_invocation | @swift_multi_line_string_literal | @swift_multiplicative_expression | @swift_navigation_expression | @swift_nil_coalescing_expression | @swift_open_end_range_expression | @swift_open_start_range_expression | @swift_optional_chain_marker | @swift_playground_literal | @swift_postfix_expression | @swift_prefix_expression | @swift_range_expression | @swift_raw_string_literal | @swift_reserved_word | @swift_selector_expression | @swift_switch_statement | @swift_ternary_expression | @swift_token_bang | @swift_token_bin_literal | @swift_token_boolean_literal | @swift_token_custom_operator | @swift_token_diagnostic | @swift_token_fully_open_range | @swift_token_hex_literal | @swift_token_integer_literal | @swift_token_oct_literal | @swift_token_real_literal | @swift_token_regex_literal | @swift_token_self_expression | @swift_token_simple_identifier | @swift_token_special_literal | @swift_token_super_expression | @swift_try_expression | @swift_tuple_expression | @swift_value_pack_expansion | @swift_value_parameter_pack swift_infix_expression_def( unique int id: @swift_infix_expression, - int op: @swift_token_custom_operator ref + int lhs: @swift_infix_expression_lhs_type ref, + int op: @swift_token_custom_operator ref, + int rhs: @swift_infix_expression_rhs_type ref ); @swift_inheritance_constraint_constrained_type_type = @swift_array_type | @swift_dictionary_type | @swift_existential_type | @swift_function_type | @swift_identifier | @swift_metatype | @swift_opaque_type | @swift_optional_type | @swift_protocol_composition_type | @swift_reserved_word | @swift_suppressed_constraint | @swift_token_simple_identifier | @swift_tuple_type | @swift_type_pack_expansion | @swift_type_parameter_pack | @swift_user_type @@ -1251,7 +1137,7 @@ swift_init_declaration_body( unique int body: @swift_function_body ref ); -@swift_init_declaration_default_value_type = @swift_additive_expression | @swift_array_literal | @swift_as_expression | @swift_assignment | @swift_await_expression | @swift_bitwise_operation | @swift_call_expression | @swift_check_expression | @swift_comparison_expression | @swift_conjunction_expression | @swift_constructor_expression | @swift_dictionary_literal | @swift_directive | @swift_disjunction_expression | @swift_equality_expression | @swift_if_statement | @swift_infix_expression | @swift_key_path_expression | @swift_key_path_string_expression | @swift_lambda_literal | @swift_line_string_literal | @swift_macro_invocation | @swift_multi_line_string_literal | @swift_multiplicative_expression | @swift_navigation_expression | @swift_nil_coalescing_expression | @swift_open_end_range_expression | @swift_open_start_range_expression | @swift_playground_literal | @swift_postfix_expression | @swift_prefix_expression | @swift_range_expression | @swift_raw_string_literal | @swift_reserved_word | @swift_selector_expression | @swift_switch_statement | @swift_ternary_expression | @swift_token_bang | @swift_token_bin_literal | @swift_token_boolean_literal | @swift_token_custom_operator | @swift_token_diagnostic | @swift_token_fully_open_range | @swift_token_hex_literal | @swift_token_integer_literal | @swift_token_oct_literal | @swift_token_real_literal | @swift_token_regex_literal | @swift_token_self_expression | @swift_token_simple_identifier | @swift_token_special_literal | @swift_token_super_expression | @swift_try_expression | @swift_tuple_expression | @swift_value_pack_expansion | @swift_value_parameter_pack +@swift_init_declaration_default_value_type = @swift_additive_expression | @swift_array_literal | @swift_as_expression | @swift_assignment | @swift_await_expression | @swift_bitwise_operation | @swift_call_expression | @swift_check_expression | @swift_comparison_expression | @swift_conjunction_expression | @swift_constructor_expression | @swift_dictionary_literal | @swift_directive | @swift_disjunction_expression | @swift_equality_expression | @swift_if_statement | @swift_infix_expression | @swift_key_path_expression | @swift_key_path_string_expression | @swift_lambda_literal | @swift_line_string_literal | @swift_macro_invocation | @swift_multi_line_string_literal | @swift_multiplicative_expression | @swift_navigation_expression | @swift_nil_coalescing_expression | @swift_open_end_range_expression | @swift_open_start_range_expression | @swift_optional_chain_marker | @swift_playground_literal | @swift_postfix_expression | @swift_prefix_expression | @swift_range_expression | @swift_raw_string_literal | @swift_reserved_word | @swift_selector_expression | @swift_switch_statement | @swift_ternary_expression | @swift_token_bang | @swift_token_bin_literal | @swift_token_boolean_literal | @swift_token_custom_operator | @swift_token_diagnostic | @swift_token_fully_open_range | @swift_token_hex_literal | @swift_token_integer_literal | @swift_token_oct_literal | @swift_token_real_literal | @swift_token_regex_literal | @swift_token_self_expression | @swift_token_simple_identifier | @swift_token_special_literal | @swift_token_super_expression | @swift_try_expression | @swift_tuple_expression | @swift_value_pack_expansion | @swift_value_parameter_pack #keyset[swift_init_declaration, index] swift_init_declaration_default_value( @@ -1291,12 +1177,10 @@ swift_interpolated_expression_reference_specifier( unique int reference_specifier: @swift_value_argument_label ref ); -@swift_interpolated_expression_value_type = @swift_additive_expression | @swift_array_literal | @swift_as_expression | @swift_assignment | @swift_await_expression | @swift_bitwise_operation | @swift_call_expression | @swift_check_expression | @swift_comparison_expression | @swift_conjunction_expression | @swift_constructor_expression | @swift_dictionary_literal | @swift_directive | @swift_disjunction_expression | @swift_equality_expression | @swift_if_statement | @swift_infix_expression | @swift_key_path_expression | @swift_key_path_string_expression | @swift_lambda_literal | @swift_line_string_literal | @swift_macro_invocation | @swift_multi_line_string_literal | @swift_multiplicative_expression | @swift_navigation_expression | @swift_nil_coalescing_expression | @swift_open_end_range_expression | @swift_open_start_range_expression | @swift_playground_literal | @swift_postfix_expression | @swift_prefix_expression | @swift_range_expression | @swift_raw_string_literal | @swift_reserved_word | @swift_selector_expression | @swift_switch_statement | @swift_ternary_expression | @swift_token_bang | @swift_token_bin_literal | @swift_token_boolean_literal | @swift_token_custom_operator | @swift_token_diagnostic | @swift_token_fully_open_range | @swift_token_hex_literal | @swift_token_integer_literal | @swift_token_oct_literal | @swift_token_real_literal | @swift_token_regex_literal | @swift_token_self_expression | @swift_token_simple_identifier | @swift_token_special_literal | @swift_token_super_expression | @swift_try_expression | @swift_tuple_expression | @swift_value_pack_expansion | @swift_value_parameter_pack +@swift_interpolated_expression_value_type = @swift_additive_expression | @swift_array_literal | @swift_as_expression | @swift_assignment | @swift_await_expression | @swift_bitwise_operation | @swift_call_expression | @swift_check_expression | @swift_comparison_expression | @swift_conjunction_expression | @swift_constructor_expression | @swift_dictionary_literal | @swift_directive | @swift_disjunction_expression | @swift_equality_expression | @swift_if_statement | @swift_infix_expression | @swift_key_path_expression | @swift_key_path_string_expression | @swift_lambda_literal | @swift_line_string_literal | @swift_macro_invocation | @swift_multi_line_string_literal | @swift_multiplicative_expression | @swift_navigation_expression | @swift_nil_coalescing_expression | @swift_open_end_range_expression | @swift_open_start_range_expression | @swift_optional_chain_marker | @swift_playground_literal | @swift_postfix_expression | @swift_prefix_expression | @swift_range_expression | @swift_raw_string_literal | @swift_reserved_word | @swift_selector_expression | @swift_switch_statement | @swift_ternary_expression | @swift_token_bang | @swift_token_bin_literal | @swift_token_boolean_literal | @swift_token_custom_operator | @swift_token_diagnostic | @swift_token_fully_open_range | @swift_token_hex_literal | @swift_token_integer_literal | @swift_token_oct_literal | @swift_token_real_literal | @swift_token_regex_literal | @swift_token_self_expression | @swift_token_simple_identifier | @swift_token_special_literal | @swift_token_super_expression | @swift_try_expression | @swift_tuple_expression | @swift_value_pack_expansion | @swift_value_parameter_pack -#keyset[swift_interpolated_expression, index] swift_interpolated_expression_value( - int swift_interpolated_expression: @swift_interpolated_expression ref, - int index: int ref, + unique int swift_interpolated_expression: @swift_interpolated_expression ref, unique int value: @swift_interpolated_expression_value_type ref ); @@ -1322,7 +1206,7 @@ swift_key_path_expression_def( unique int id: @swift_key_path_expression ); -@swift_key_path_string_expression_child_type = @swift_additive_expression | @swift_array_literal | @swift_as_expression | @swift_assignment | @swift_await_expression | @swift_bitwise_operation | @swift_call_expression | @swift_check_expression | @swift_comparison_expression | @swift_conjunction_expression | @swift_constructor_expression | @swift_dictionary_literal | @swift_directive | @swift_disjunction_expression | @swift_equality_expression | @swift_if_statement | @swift_infix_expression | @swift_key_path_expression | @swift_key_path_string_expression | @swift_lambda_literal | @swift_line_string_literal | @swift_macro_invocation | @swift_multi_line_string_literal | @swift_multiplicative_expression | @swift_navigation_expression | @swift_nil_coalescing_expression | @swift_open_end_range_expression | @swift_open_start_range_expression | @swift_playground_literal | @swift_postfix_expression | @swift_prefix_expression | @swift_range_expression | @swift_raw_string_literal | @swift_selector_expression | @swift_switch_statement | @swift_ternary_expression | @swift_token_bang | @swift_token_bin_literal | @swift_token_boolean_literal | @swift_token_custom_operator | @swift_token_diagnostic | @swift_token_fully_open_range | @swift_token_hex_literal | @swift_token_integer_literal | @swift_token_oct_literal | @swift_token_real_literal | @swift_token_regex_literal | @swift_token_self_expression | @swift_token_simple_identifier | @swift_token_special_literal | @swift_token_super_expression | @swift_try_expression | @swift_tuple_expression | @swift_value_pack_expansion | @swift_value_parameter_pack +@swift_key_path_string_expression_child_type = @swift_additive_expression | @swift_array_literal | @swift_as_expression | @swift_assignment | @swift_await_expression | @swift_bitwise_operation | @swift_call_expression | @swift_check_expression | @swift_comparison_expression | @swift_conjunction_expression | @swift_constructor_expression | @swift_dictionary_literal | @swift_directive | @swift_disjunction_expression | @swift_equality_expression | @swift_if_statement | @swift_infix_expression | @swift_key_path_expression | @swift_key_path_string_expression | @swift_lambda_literal | @swift_line_string_literal | @swift_macro_invocation | @swift_multi_line_string_literal | @swift_multiplicative_expression | @swift_navigation_expression | @swift_nil_coalescing_expression | @swift_open_end_range_expression | @swift_open_start_range_expression | @swift_optional_chain_marker | @swift_playground_literal | @swift_postfix_expression | @swift_prefix_expression | @swift_range_expression | @swift_raw_string_literal | @swift_selector_expression | @swift_switch_statement | @swift_ternary_expression | @swift_token_bang | @swift_token_bin_literal | @swift_token_boolean_literal | @swift_token_custom_operator | @swift_token_diagnostic | @swift_token_fully_open_range | @swift_token_hex_literal | @swift_token_integer_literal | @swift_token_oct_literal | @swift_token_real_literal | @swift_token_regex_literal | @swift_token_self_expression | @swift_token_simple_identifier | @swift_token_special_literal | @swift_token_super_expression | @swift_try_expression | @swift_tuple_expression | @swift_value_pack_expansion | @swift_value_parameter_pack swift_key_path_string_expression_child( unique int swift_key_path_string_expression: @swift_key_path_string_expression ref, @@ -1450,7 +1334,7 @@ swift_line_string_literal_def( unique int id: @swift_line_string_literal ); -@swift_macro_declaration_default_value_type = @swift_additive_expression | @swift_array_literal | @swift_as_expression | @swift_assignment | @swift_await_expression | @swift_bitwise_operation | @swift_call_expression | @swift_check_expression | @swift_comparison_expression | @swift_conjunction_expression | @swift_constructor_expression | @swift_dictionary_literal | @swift_directive | @swift_disjunction_expression | @swift_equality_expression | @swift_if_statement | @swift_infix_expression | @swift_key_path_expression | @swift_key_path_string_expression | @swift_lambda_literal | @swift_line_string_literal | @swift_macro_invocation | @swift_multi_line_string_literal | @swift_multiplicative_expression | @swift_navigation_expression | @swift_nil_coalescing_expression | @swift_open_end_range_expression | @swift_open_start_range_expression | @swift_playground_literal | @swift_postfix_expression | @swift_prefix_expression | @swift_range_expression | @swift_raw_string_literal | @swift_reserved_word | @swift_selector_expression | @swift_switch_statement | @swift_ternary_expression | @swift_token_bang | @swift_token_bin_literal | @swift_token_boolean_literal | @swift_token_custom_operator | @swift_token_diagnostic | @swift_token_fully_open_range | @swift_token_hex_literal | @swift_token_integer_literal | @swift_token_oct_literal | @swift_token_real_literal | @swift_token_regex_literal | @swift_token_self_expression | @swift_token_simple_identifier | @swift_token_special_literal | @swift_token_super_expression | @swift_try_expression | @swift_tuple_expression | @swift_value_pack_expansion | @swift_value_parameter_pack +@swift_macro_declaration_default_value_type = @swift_additive_expression | @swift_array_literal | @swift_as_expression | @swift_assignment | @swift_await_expression | @swift_bitwise_operation | @swift_call_expression | @swift_check_expression | @swift_comparison_expression | @swift_conjunction_expression | @swift_constructor_expression | @swift_dictionary_literal | @swift_directive | @swift_disjunction_expression | @swift_equality_expression | @swift_if_statement | @swift_infix_expression | @swift_key_path_expression | @swift_key_path_string_expression | @swift_lambda_literal | @swift_line_string_literal | @swift_macro_invocation | @swift_multi_line_string_literal | @swift_multiplicative_expression | @swift_navigation_expression | @swift_nil_coalescing_expression | @swift_open_end_range_expression | @swift_open_start_range_expression | @swift_optional_chain_marker | @swift_playground_literal | @swift_postfix_expression | @swift_prefix_expression | @swift_range_expression | @swift_raw_string_literal | @swift_reserved_word | @swift_selector_expression | @swift_switch_statement | @swift_ternary_expression | @swift_token_bang | @swift_token_bin_literal | @swift_token_boolean_literal | @swift_token_custom_operator | @swift_token_diagnostic | @swift_token_fully_open_range | @swift_token_hex_literal | @swift_token_integer_literal | @swift_token_oct_literal | @swift_token_real_literal | @swift_token_regex_literal | @swift_token_self_expression | @swift_token_simple_identifier | @swift_token_special_literal | @swift_token_super_expression | @swift_try_expression | @swift_tuple_expression | @swift_value_pack_expansion | @swift_value_parameter_pack #keyset[swift_macro_declaration, index] swift_macro_declaration_default_value( @@ -1477,17 +1361,11 @@ swift_macro_declaration_def( unique int id: @swift_macro_declaration ); -@swift_macro_definition_body_type = @swift_additive_expression | @swift_array_literal | @swift_as_expression | @swift_assignment | @swift_await_expression | @swift_bitwise_operation | @swift_call_expression | @swift_check_expression | @swift_comparison_expression | @swift_conjunction_expression | @swift_constructor_expression | @swift_dictionary_literal | @swift_directive | @swift_disjunction_expression | @swift_equality_expression | @swift_external_macro_definition | @swift_if_statement | @swift_infix_expression | @swift_key_path_expression | @swift_key_path_string_expression | @swift_lambda_literal | @swift_line_string_literal | @swift_macro_invocation | @swift_multi_line_string_literal | @swift_multiplicative_expression | @swift_navigation_expression | @swift_nil_coalescing_expression | @swift_open_end_range_expression | @swift_open_start_range_expression | @swift_playground_literal | @swift_postfix_expression | @swift_prefix_expression | @swift_range_expression | @swift_raw_string_literal | @swift_reserved_word | @swift_selector_expression | @swift_switch_statement | @swift_ternary_expression | @swift_token_bang | @swift_token_bin_literal | @swift_token_boolean_literal | @swift_token_custom_operator | @swift_token_diagnostic | @swift_token_fully_open_range | @swift_token_hex_literal | @swift_token_integer_literal | @swift_token_oct_literal | @swift_token_real_literal | @swift_token_regex_literal | @swift_token_self_expression | @swift_token_simple_identifier | @swift_token_special_literal | @swift_token_super_expression | @swift_try_expression | @swift_tuple_expression | @swift_value_pack_expansion | @swift_value_parameter_pack - -#keyset[swift_macro_definition, index] -swift_macro_definition_body( - int swift_macro_definition: @swift_macro_definition ref, - int index: int ref, - unique int body: @swift_macro_definition_body_type ref -); +@swift_macro_definition_body_type = @swift_additive_expression | @swift_array_literal | @swift_as_expression | @swift_assignment | @swift_await_expression | @swift_bitwise_operation | @swift_call_expression | @swift_check_expression | @swift_comparison_expression | @swift_conjunction_expression | @swift_constructor_expression | @swift_dictionary_literal | @swift_directive | @swift_disjunction_expression | @swift_equality_expression | @swift_external_macro_definition | @swift_if_statement | @swift_infix_expression | @swift_key_path_expression | @swift_key_path_string_expression | @swift_lambda_literal | @swift_line_string_literal | @swift_macro_invocation | @swift_multi_line_string_literal | @swift_multiplicative_expression | @swift_navigation_expression | @swift_nil_coalescing_expression | @swift_open_end_range_expression | @swift_open_start_range_expression | @swift_optional_chain_marker | @swift_playground_literal | @swift_postfix_expression | @swift_prefix_expression | @swift_range_expression | @swift_raw_string_literal | @swift_reserved_word | @swift_selector_expression | @swift_switch_statement | @swift_ternary_expression | @swift_token_bang | @swift_token_bin_literal | @swift_token_boolean_literal | @swift_token_custom_operator | @swift_token_diagnostic | @swift_token_fully_open_range | @swift_token_hex_literal | @swift_token_integer_literal | @swift_token_oct_literal | @swift_token_real_literal | @swift_token_regex_literal | @swift_token_self_expression | @swift_token_simple_identifier | @swift_token_special_literal | @swift_token_super_expression | @swift_try_expression | @swift_tuple_expression | @swift_value_pack_expansion | @swift_value_parameter_pack swift_macro_definition_def( - unique int id: @swift_macro_definition + unique int id: @swift_macro_definition, + int body: @swift_macro_definition_body_type ref ); @swift_macro_invocation_child_type = @swift_call_suffix | @swift_token_simple_identifier | @swift_type_parameters @@ -1552,14 +1430,7 @@ swift_multi_line_string_literal_def( unique int id: @swift_multi_line_string_literal ); -@swift_multiplicative_expression_lhs_type = @swift_additive_expression | @swift_array_literal | @swift_as_expression | @swift_assignment | @swift_await_expression | @swift_bitwise_operation | @swift_call_expression | @swift_check_expression | @swift_comparison_expression | @swift_conjunction_expression | @swift_constructor_expression | @swift_dictionary_literal | @swift_directive | @swift_disjunction_expression | @swift_equality_expression | @swift_if_statement | @swift_infix_expression | @swift_key_path_expression | @swift_key_path_string_expression | @swift_lambda_literal | @swift_line_string_literal | @swift_macro_invocation | @swift_multi_line_string_literal | @swift_multiplicative_expression | @swift_navigation_expression | @swift_nil_coalescing_expression | @swift_open_end_range_expression | @swift_open_start_range_expression | @swift_playground_literal | @swift_postfix_expression | @swift_prefix_expression | @swift_range_expression | @swift_raw_string_literal | @swift_reserved_word | @swift_selector_expression | @swift_switch_statement | @swift_ternary_expression | @swift_token_bang | @swift_token_bin_literal | @swift_token_boolean_literal | @swift_token_custom_operator | @swift_token_diagnostic | @swift_token_fully_open_range | @swift_token_hex_literal | @swift_token_integer_literal | @swift_token_oct_literal | @swift_token_real_literal | @swift_token_regex_literal | @swift_token_self_expression | @swift_token_simple_identifier | @swift_token_special_literal | @swift_token_super_expression | @swift_try_expression | @swift_tuple_expression | @swift_value_pack_expansion | @swift_value_parameter_pack - -#keyset[swift_multiplicative_expression, index] -swift_multiplicative_expression_lhs( - int swift_multiplicative_expression: @swift_multiplicative_expression ref, - int index: int ref, - unique int lhs: @swift_multiplicative_expression_lhs_type ref -); +@swift_multiplicative_expression_lhs_type = @swift_additive_expression | @swift_array_literal | @swift_as_expression | @swift_assignment | @swift_await_expression | @swift_bitwise_operation | @swift_call_expression | @swift_check_expression | @swift_comparison_expression | @swift_conjunction_expression | @swift_constructor_expression | @swift_dictionary_literal | @swift_directive | @swift_disjunction_expression | @swift_equality_expression | @swift_if_statement | @swift_infix_expression | @swift_key_path_expression | @swift_key_path_string_expression | @swift_lambda_literal | @swift_line_string_literal | @swift_macro_invocation | @swift_multi_line_string_literal | @swift_multiplicative_expression | @swift_navigation_expression | @swift_nil_coalescing_expression | @swift_open_end_range_expression | @swift_open_start_range_expression | @swift_optional_chain_marker | @swift_playground_literal | @swift_postfix_expression | @swift_prefix_expression | @swift_range_expression | @swift_raw_string_literal | @swift_reserved_word | @swift_selector_expression | @swift_switch_statement | @swift_ternary_expression | @swift_token_bang | @swift_token_bin_literal | @swift_token_boolean_literal | @swift_token_custom_operator | @swift_token_diagnostic | @swift_token_fully_open_range | @swift_token_hex_literal | @swift_token_integer_literal | @swift_token_oct_literal | @swift_token_real_literal | @swift_token_regex_literal | @swift_token_self_expression | @swift_token_simple_identifier | @swift_token_special_literal | @swift_token_super_expression | @swift_try_expression | @swift_tuple_expression | @swift_value_pack_expansion | @swift_value_parameter_pack case @swift_multiplicative_expression.op of 0 = @swift_multiplicative_expression_percent @@ -1568,18 +1439,13 @@ case @swift_multiplicative_expression.op of ; -@swift_multiplicative_expression_rhs_type = @swift_additive_expression | @swift_array_literal | @swift_as_expression | @swift_assignment | @swift_await_expression | @swift_bitwise_operation | @swift_call_expression | @swift_check_expression | @swift_comparison_expression | @swift_conjunction_expression | @swift_constructor_expression | @swift_dictionary_literal | @swift_directive | @swift_disjunction_expression | @swift_equality_expression | @swift_if_statement | @swift_infix_expression | @swift_key_path_expression | @swift_key_path_string_expression | @swift_lambda_literal | @swift_line_string_literal | @swift_macro_invocation | @swift_multi_line_string_literal | @swift_multiplicative_expression | @swift_navigation_expression | @swift_nil_coalescing_expression | @swift_open_end_range_expression | @swift_open_start_range_expression | @swift_playground_literal | @swift_postfix_expression | @swift_prefix_expression | @swift_range_expression | @swift_raw_string_literal | @swift_reserved_word | @swift_selector_expression | @swift_switch_statement | @swift_ternary_expression | @swift_token_bang | @swift_token_bin_literal | @swift_token_boolean_literal | @swift_token_custom_operator | @swift_token_diagnostic | @swift_token_fully_open_range | @swift_token_hex_literal | @swift_token_integer_literal | @swift_token_oct_literal | @swift_token_real_literal | @swift_token_regex_literal | @swift_token_self_expression | @swift_token_simple_identifier | @swift_token_special_literal | @swift_token_super_expression | @swift_try_expression | @swift_tuple_expression | @swift_value_pack_expansion | @swift_value_parameter_pack - -#keyset[swift_multiplicative_expression, index] -swift_multiplicative_expression_rhs( - int swift_multiplicative_expression: @swift_multiplicative_expression ref, - int index: int ref, - unique int rhs: @swift_multiplicative_expression_rhs_type ref -); +@swift_multiplicative_expression_rhs_type = @swift_additive_expression | @swift_array_literal | @swift_as_expression | @swift_assignment | @swift_await_expression | @swift_bitwise_operation | @swift_call_expression | @swift_check_expression | @swift_comparison_expression | @swift_conjunction_expression | @swift_constructor_expression | @swift_dictionary_literal | @swift_directive | @swift_disjunction_expression | @swift_equality_expression | @swift_if_statement | @swift_infix_expression | @swift_key_path_expression | @swift_key_path_string_expression | @swift_lambda_literal | @swift_line_string_literal | @swift_macro_invocation | @swift_multi_line_string_literal | @swift_multiplicative_expression | @swift_navigation_expression | @swift_nil_coalescing_expression | @swift_open_end_range_expression | @swift_open_start_range_expression | @swift_optional_chain_marker | @swift_playground_literal | @swift_postfix_expression | @swift_prefix_expression | @swift_range_expression | @swift_raw_string_literal | @swift_reserved_word | @swift_selector_expression | @swift_switch_statement | @swift_ternary_expression | @swift_token_bang | @swift_token_bin_literal | @swift_token_boolean_literal | @swift_token_custom_operator | @swift_token_diagnostic | @swift_token_fully_open_range | @swift_token_hex_literal | @swift_token_integer_literal | @swift_token_oct_literal | @swift_token_real_literal | @swift_token_regex_literal | @swift_token_self_expression | @swift_token_simple_identifier | @swift_token_special_literal | @swift_token_super_expression | @swift_try_expression | @swift_tuple_expression | @swift_value_pack_expansion | @swift_value_parameter_pack swift_multiplicative_expression_def( unique int id: @swift_multiplicative_expression, - int op: int ref + int lhs: @swift_multiplicative_expression_lhs_type ref, + int op: int ref, + int rhs: @swift_multiplicative_expression_rhs_type ref ); @swift_navigation_expression_element_type = @swift_dictionary_type | @swift_existential_type | @swift_opaque_type @@ -1589,7 +1455,7 @@ swift_navigation_expression_element( unique int element: @swift_navigation_expression_element_type ref ); -@swift_navigation_expression_target_type = @swift_additive_expression | @swift_array_literal | @swift_array_type | @swift_as_expression | @swift_assignment | @swift_await_expression | @swift_bitwise_operation | @swift_call_expression | @swift_check_expression | @swift_comparison_expression | @swift_conjunction_expression | @swift_constructor_expression | @swift_dictionary_literal | @swift_dictionary_type | @swift_directive | @swift_disjunction_expression | @swift_equality_expression | @swift_existential_type | @swift_if_statement | @swift_infix_expression | @swift_key_path_expression | @swift_key_path_string_expression | @swift_lambda_literal | @swift_line_string_literal | @swift_macro_invocation | @swift_multi_line_string_literal | @swift_multiplicative_expression | @swift_navigation_expression | @swift_nil_coalescing_expression | @swift_opaque_type | @swift_open_end_range_expression | @swift_open_start_range_expression | @swift_playground_literal | @swift_postfix_expression | @swift_prefix_expression | @swift_range_expression | @swift_raw_string_literal | @swift_reserved_word | @swift_selector_expression | @swift_switch_statement | @swift_ternary_expression | @swift_token_bang | @swift_token_bin_literal | @swift_token_boolean_literal | @swift_token_custom_operator | @swift_token_diagnostic | @swift_token_fully_open_range | @swift_token_hex_literal | @swift_token_integer_literal | @swift_token_oct_literal | @swift_token_real_literal | @swift_token_regex_literal | @swift_token_self_expression | @swift_token_simple_identifier | @swift_token_special_literal | @swift_token_super_expression | @swift_try_expression | @swift_tuple_expression | @swift_user_type | @swift_value_pack_expansion | @swift_value_parameter_pack +@swift_navigation_expression_target_type = @swift_additive_expression | @swift_array_literal | @swift_array_type | @swift_as_expression | @swift_assignment | @swift_await_expression | @swift_bitwise_operation | @swift_call_expression | @swift_check_expression | @swift_comparison_expression | @swift_conjunction_expression | @swift_constructor_expression | @swift_dictionary_literal | @swift_dictionary_type | @swift_directive | @swift_disjunction_expression | @swift_equality_expression | @swift_existential_type | @swift_if_statement | @swift_infix_expression | @swift_key_path_expression | @swift_key_path_string_expression | @swift_lambda_literal | @swift_line_string_literal | @swift_macro_invocation | @swift_multi_line_string_literal | @swift_multiplicative_expression | @swift_navigation_expression | @swift_nil_coalescing_expression | @swift_opaque_type | @swift_open_end_range_expression | @swift_open_start_range_expression | @swift_optional_chain_marker | @swift_playground_literal | @swift_postfix_expression | @swift_prefix_expression | @swift_range_expression | @swift_raw_string_literal | @swift_reserved_word | @swift_selector_expression | @swift_switch_statement | @swift_ternary_expression | @swift_token_bang | @swift_token_bin_literal | @swift_token_boolean_literal | @swift_token_custom_operator | @swift_token_diagnostic | @swift_token_fully_open_range | @swift_token_hex_literal | @swift_token_integer_literal | @swift_token_oct_literal | @swift_token_real_literal | @swift_token_regex_literal | @swift_token_self_expression | @swift_token_simple_identifier | @swift_token_special_literal | @swift_token_super_expression | @swift_try_expression | @swift_tuple_expression | @swift_user_type | @swift_value_pack_expansion | @swift_value_parameter_pack #keyset[swift_navigation_expression, index] swift_navigation_expression_target( @@ -1610,26 +1476,14 @@ swift_navigation_suffix_def( int suffix: @swift_navigation_suffix_suffix_type ref ); -@swift_nil_coalescing_expression_if_nil_type = @swift_additive_expression | @swift_array_literal | @swift_as_expression | @swift_assignment | @swift_await_expression | @swift_bitwise_operation | @swift_call_expression | @swift_check_expression | @swift_comparison_expression | @swift_conjunction_expression | @swift_constructor_expression | @swift_dictionary_literal | @swift_directive | @swift_disjunction_expression | @swift_equality_expression | @swift_if_statement | @swift_infix_expression | @swift_key_path_expression | @swift_key_path_string_expression | @swift_lambda_literal | @swift_line_string_literal | @swift_macro_invocation | @swift_multi_line_string_literal | @swift_multiplicative_expression | @swift_navigation_expression | @swift_nil_coalescing_expression | @swift_open_end_range_expression | @swift_open_start_range_expression | @swift_playground_literal | @swift_postfix_expression | @swift_prefix_expression | @swift_range_expression | @swift_raw_string_literal | @swift_reserved_word | @swift_selector_expression | @swift_switch_statement | @swift_ternary_expression | @swift_token_bang | @swift_token_bin_literal | @swift_token_boolean_literal | @swift_token_custom_operator | @swift_token_diagnostic | @swift_token_fully_open_range | @swift_token_hex_literal | @swift_token_integer_literal | @swift_token_oct_literal | @swift_token_real_literal | @swift_token_regex_literal | @swift_token_self_expression | @swift_token_simple_identifier | @swift_token_special_literal | @swift_token_super_expression | @swift_try_expression | @swift_tuple_expression | @swift_value_pack_expansion | @swift_value_parameter_pack +@swift_nil_coalescing_expression_if_nil_type = @swift_additive_expression | @swift_array_literal | @swift_as_expression | @swift_assignment | @swift_await_expression | @swift_bitwise_operation | @swift_call_expression | @swift_check_expression | @swift_comparison_expression | @swift_conjunction_expression | @swift_constructor_expression | @swift_dictionary_literal | @swift_directive | @swift_disjunction_expression | @swift_equality_expression | @swift_if_statement | @swift_infix_expression | @swift_key_path_expression | @swift_key_path_string_expression | @swift_lambda_literal | @swift_line_string_literal | @swift_macro_invocation | @swift_multi_line_string_literal | @swift_multiplicative_expression | @swift_navigation_expression | @swift_nil_coalescing_expression | @swift_open_end_range_expression | @swift_open_start_range_expression | @swift_optional_chain_marker | @swift_playground_literal | @swift_postfix_expression | @swift_prefix_expression | @swift_range_expression | @swift_raw_string_literal | @swift_reserved_word | @swift_selector_expression | @swift_switch_statement | @swift_ternary_expression | @swift_token_bang | @swift_token_bin_literal | @swift_token_boolean_literal | @swift_token_custom_operator | @swift_token_diagnostic | @swift_token_fully_open_range | @swift_token_hex_literal | @swift_token_integer_literal | @swift_token_oct_literal | @swift_token_real_literal | @swift_token_regex_literal | @swift_token_self_expression | @swift_token_simple_identifier | @swift_token_special_literal | @swift_token_super_expression | @swift_try_expression | @swift_tuple_expression | @swift_value_pack_expansion | @swift_value_parameter_pack -#keyset[swift_nil_coalescing_expression, index] -swift_nil_coalescing_expression_if_nil( - int swift_nil_coalescing_expression: @swift_nil_coalescing_expression ref, - int index: int ref, - unique int if_nil: @swift_nil_coalescing_expression_if_nil_type ref -); - -@swift_nil_coalescing_expression_value_type = @swift_additive_expression | @swift_array_literal | @swift_as_expression | @swift_assignment | @swift_await_expression | @swift_bitwise_operation | @swift_call_expression | @swift_check_expression | @swift_comparison_expression | @swift_conjunction_expression | @swift_constructor_expression | @swift_dictionary_literal | @swift_directive | @swift_disjunction_expression | @swift_equality_expression | @swift_if_statement | @swift_infix_expression | @swift_key_path_expression | @swift_key_path_string_expression | @swift_lambda_literal | @swift_line_string_literal | @swift_macro_invocation | @swift_multi_line_string_literal | @swift_multiplicative_expression | @swift_navigation_expression | @swift_nil_coalescing_expression | @swift_open_end_range_expression | @swift_open_start_range_expression | @swift_playground_literal | @swift_postfix_expression | @swift_prefix_expression | @swift_range_expression | @swift_raw_string_literal | @swift_reserved_word | @swift_selector_expression | @swift_switch_statement | @swift_ternary_expression | @swift_token_bang | @swift_token_bin_literal | @swift_token_boolean_literal | @swift_token_custom_operator | @swift_token_diagnostic | @swift_token_fully_open_range | @swift_token_hex_literal | @swift_token_integer_literal | @swift_token_oct_literal | @swift_token_real_literal | @swift_token_regex_literal | @swift_token_self_expression | @swift_token_simple_identifier | @swift_token_special_literal | @swift_token_super_expression | @swift_try_expression | @swift_tuple_expression | @swift_value_pack_expansion | @swift_value_parameter_pack - -#keyset[swift_nil_coalescing_expression, index] -swift_nil_coalescing_expression_value( - int swift_nil_coalescing_expression: @swift_nil_coalescing_expression ref, - int index: int ref, - unique int value: @swift_nil_coalescing_expression_value_type ref -); +@swift_nil_coalescing_expression_value_type = @swift_additive_expression | @swift_array_literal | @swift_as_expression | @swift_assignment | @swift_await_expression | @swift_bitwise_operation | @swift_call_expression | @swift_check_expression | @swift_comparison_expression | @swift_conjunction_expression | @swift_constructor_expression | @swift_dictionary_literal | @swift_directive | @swift_disjunction_expression | @swift_equality_expression | @swift_if_statement | @swift_infix_expression | @swift_key_path_expression | @swift_key_path_string_expression | @swift_lambda_literal | @swift_line_string_literal | @swift_macro_invocation | @swift_multi_line_string_literal | @swift_multiplicative_expression | @swift_navigation_expression | @swift_nil_coalescing_expression | @swift_open_end_range_expression | @swift_open_start_range_expression | @swift_optional_chain_marker | @swift_playground_literal | @swift_postfix_expression | @swift_prefix_expression | @swift_range_expression | @swift_raw_string_literal | @swift_reserved_word | @swift_selector_expression | @swift_switch_statement | @swift_ternary_expression | @swift_token_bang | @swift_token_bin_literal | @swift_token_boolean_literal | @swift_token_custom_operator | @swift_token_diagnostic | @swift_token_fully_open_range | @swift_token_hex_literal | @swift_token_integer_literal | @swift_token_oct_literal | @swift_token_real_literal | @swift_token_regex_literal | @swift_token_self_expression | @swift_token_simple_identifier | @swift_token_special_literal | @swift_token_super_expression | @swift_try_expression | @swift_tuple_expression | @swift_value_pack_expansion | @swift_value_parameter_pack swift_nil_coalescing_expression_def( - unique int id: @swift_nil_coalescing_expression + unique int id: @swift_nil_coalescing_expression, + int if_nil: @swift_nil_coalescing_expression_if_nil_type ref, + int value: @swift_nil_coalescing_expression_value_type ref ); @swift_opaque_type_child_type = @swift_array_type | @swift_dictionary_type | @swift_existential_type | @swift_function_type | @swift_metatype | @swift_opaque_type | @swift_optional_type | @swift_protocol_composition_type | @swift_suppressed_constraint | @swift_tuple_type | @swift_type_pack_expansion | @swift_type_parameter_pack | @swift_user_type @@ -1639,30 +1493,18 @@ swift_opaque_type_def( int child: @swift_opaque_type_child_type ref ); -@swift_open_end_range_expression_start_type = @swift_additive_expression | @swift_array_literal | @swift_as_expression | @swift_assignment | @swift_await_expression | @swift_bitwise_operation | @swift_call_expression | @swift_check_expression | @swift_comparison_expression | @swift_conjunction_expression | @swift_constructor_expression | @swift_dictionary_literal | @swift_directive | @swift_disjunction_expression | @swift_equality_expression | @swift_if_statement | @swift_infix_expression | @swift_key_path_expression | @swift_key_path_string_expression | @swift_lambda_literal | @swift_line_string_literal | @swift_macro_invocation | @swift_multi_line_string_literal | @swift_multiplicative_expression | @swift_navigation_expression | @swift_nil_coalescing_expression | @swift_open_end_range_expression | @swift_open_start_range_expression | @swift_playground_literal | @swift_postfix_expression | @swift_prefix_expression | @swift_range_expression | @swift_raw_string_literal | @swift_reserved_word | @swift_selector_expression | @swift_switch_statement | @swift_ternary_expression | @swift_token_bang | @swift_token_bin_literal | @swift_token_boolean_literal | @swift_token_custom_operator | @swift_token_diagnostic | @swift_token_fully_open_range | @swift_token_hex_literal | @swift_token_integer_literal | @swift_token_oct_literal | @swift_token_real_literal | @swift_token_regex_literal | @swift_token_self_expression | @swift_token_simple_identifier | @swift_token_special_literal | @swift_token_super_expression | @swift_try_expression | @swift_tuple_expression | @swift_value_pack_expansion | @swift_value_parameter_pack - -#keyset[swift_open_end_range_expression, index] -swift_open_end_range_expression_start( - int swift_open_end_range_expression: @swift_open_end_range_expression ref, - int index: int ref, - unique int start: @swift_open_end_range_expression_start_type ref -); +@swift_open_end_range_expression_start_type = @swift_additive_expression | @swift_array_literal | @swift_as_expression | @swift_assignment | @swift_await_expression | @swift_bitwise_operation | @swift_call_expression | @swift_check_expression | @swift_comparison_expression | @swift_conjunction_expression | @swift_constructor_expression | @swift_dictionary_literal | @swift_directive | @swift_disjunction_expression | @swift_equality_expression | @swift_if_statement | @swift_infix_expression | @swift_key_path_expression | @swift_key_path_string_expression | @swift_lambda_literal | @swift_line_string_literal | @swift_macro_invocation | @swift_multi_line_string_literal | @swift_multiplicative_expression | @swift_navigation_expression | @swift_nil_coalescing_expression | @swift_open_end_range_expression | @swift_open_start_range_expression | @swift_optional_chain_marker | @swift_playground_literal | @swift_postfix_expression | @swift_prefix_expression | @swift_range_expression | @swift_raw_string_literal | @swift_reserved_word | @swift_selector_expression | @swift_switch_statement | @swift_ternary_expression | @swift_token_bang | @swift_token_bin_literal | @swift_token_boolean_literal | @swift_token_custom_operator | @swift_token_diagnostic | @swift_token_fully_open_range | @swift_token_hex_literal | @swift_token_integer_literal | @swift_token_oct_literal | @swift_token_real_literal | @swift_token_regex_literal | @swift_token_self_expression | @swift_token_simple_identifier | @swift_token_special_literal | @swift_token_super_expression | @swift_try_expression | @swift_tuple_expression | @swift_value_pack_expansion | @swift_value_parameter_pack swift_open_end_range_expression_def( - unique int id: @swift_open_end_range_expression + unique int id: @swift_open_end_range_expression, + int start: @swift_open_end_range_expression_start_type ref ); -@swift_open_start_range_expression_end_type = @swift_additive_expression | @swift_array_literal | @swift_as_expression | @swift_assignment | @swift_await_expression | @swift_bitwise_operation | @swift_call_expression | @swift_check_expression | @swift_comparison_expression | @swift_conjunction_expression | @swift_constructor_expression | @swift_dictionary_literal | @swift_directive | @swift_disjunction_expression | @swift_equality_expression | @swift_if_statement | @swift_infix_expression | @swift_key_path_expression | @swift_key_path_string_expression | @swift_lambda_literal | @swift_line_string_literal | @swift_macro_invocation | @swift_multi_line_string_literal | @swift_multiplicative_expression | @swift_navigation_expression | @swift_nil_coalescing_expression | @swift_open_end_range_expression | @swift_open_start_range_expression | @swift_playground_literal | @swift_postfix_expression | @swift_prefix_expression | @swift_range_expression | @swift_raw_string_literal | @swift_reserved_word | @swift_selector_expression | @swift_switch_statement | @swift_ternary_expression | @swift_token_bang | @swift_token_bin_literal | @swift_token_boolean_literal | @swift_token_custom_operator | @swift_token_diagnostic | @swift_token_fully_open_range | @swift_token_hex_literal | @swift_token_integer_literal | @swift_token_oct_literal | @swift_token_real_literal | @swift_token_regex_literal | @swift_token_self_expression | @swift_token_simple_identifier | @swift_token_special_literal | @swift_token_super_expression | @swift_try_expression | @swift_tuple_expression | @swift_value_pack_expansion | @swift_value_parameter_pack - -#keyset[swift_open_start_range_expression, index] -swift_open_start_range_expression_end( - int swift_open_start_range_expression: @swift_open_start_range_expression ref, - int index: int ref, - unique int end: @swift_open_start_range_expression_end_type ref -); +@swift_open_start_range_expression_end_type = @swift_additive_expression | @swift_array_literal | @swift_as_expression | @swift_assignment | @swift_await_expression | @swift_bitwise_operation | @swift_call_expression | @swift_check_expression | @swift_comparison_expression | @swift_conjunction_expression | @swift_constructor_expression | @swift_dictionary_literal | @swift_directive | @swift_disjunction_expression | @swift_equality_expression | @swift_if_statement | @swift_infix_expression | @swift_key_path_expression | @swift_key_path_string_expression | @swift_lambda_literal | @swift_line_string_literal | @swift_macro_invocation | @swift_multi_line_string_literal | @swift_multiplicative_expression | @swift_navigation_expression | @swift_nil_coalescing_expression | @swift_open_end_range_expression | @swift_open_start_range_expression | @swift_optional_chain_marker | @swift_playground_literal | @swift_postfix_expression | @swift_prefix_expression | @swift_range_expression | @swift_raw_string_literal | @swift_reserved_word | @swift_selector_expression | @swift_switch_statement | @swift_ternary_expression | @swift_token_bang | @swift_token_bin_literal | @swift_token_boolean_literal | @swift_token_custom_operator | @swift_token_diagnostic | @swift_token_fully_open_range | @swift_token_hex_literal | @swift_token_integer_literal | @swift_token_oct_literal | @swift_token_real_literal | @swift_token_regex_literal | @swift_token_self_expression | @swift_token_simple_identifier | @swift_token_special_literal | @swift_token_super_expression | @swift_try_expression | @swift_tuple_expression | @swift_value_pack_expansion | @swift_value_parameter_pack swift_open_start_range_expression_def( - unique int id: @swift_open_start_range_expression + unique int id: @swift_open_start_range_expression, + int end: @swift_open_start_range_expression_end_type ref ); @swift_operator_declaration_child_type = @swift_deprecated_operator_declaration_body | @swift_token_bang | @swift_token_custom_operator | @swift_token_simple_identifier @@ -1678,6 +1520,17 @@ swift_operator_declaration_def( unique int id: @swift_operator_declaration ); +@swift_optional_chain_marker_child_type = @swift_additive_expression | @swift_array_literal | @swift_as_expression | @swift_assignment | @swift_await_expression | @swift_bitwise_operation | @swift_call_expression | @swift_check_expression | @swift_comparison_expression | @swift_conjunction_expression | @swift_constructor_expression | @swift_dictionary_literal | @swift_directive | @swift_disjunction_expression | @swift_equality_expression | @swift_if_statement | @swift_infix_expression | @swift_key_path_expression | @swift_key_path_string_expression | @swift_lambda_literal | @swift_line_string_literal | @swift_macro_invocation | @swift_multi_line_string_literal | @swift_multiplicative_expression | @swift_navigation_expression | @swift_nil_coalescing_expression | @swift_open_end_range_expression | @swift_open_start_range_expression | @swift_optional_chain_marker | @swift_playground_literal | @swift_postfix_expression | @swift_prefix_expression | @swift_range_expression | @swift_raw_string_literal | @swift_selector_expression | @swift_switch_statement | @swift_ternary_expression | @swift_token_bang | @swift_token_bin_literal | @swift_token_boolean_literal | @swift_token_custom_operator | @swift_token_diagnostic | @swift_token_fully_open_range | @swift_token_hex_literal | @swift_token_integer_literal | @swift_token_oct_literal | @swift_token_real_literal | @swift_token_regex_literal | @swift_token_self_expression | @swift_token_simple_identifier | @swift_token_special_literal | @swift_token_super_expression | @swift_try_expression | @swift_tuple_expression | @swift_value_pack_expansion | @swift_value_parameter_pack + +swift_optional_chain_marker_child( + unique int swift_optional_chain_marker: @swift_optional_chain_marker ref, + unique int child: @swift_optional_chain_marker_child_type ref +); + +swift_optional_chain_marker_def( + unique int id: @swift_optional_chain_marker +); + @swift_optional_type_wrapped_type = @swift_array_type | @swift_dictionary_type | @swift_tuple_type | @swift_user_type swift_optional_type_def( @@ -1740,7 +1593,7 @@ swift_pattern_name( unique int name: @swift_pattern_name_type ref ); -@swift_pattern_child_type = @swift_additive_expression | @swift_array_literal | @swift_as_expression | @swift_assignment | @swift_await_expression | @swift_bitwise_operation | @swift_call_expression | @swift_check_expression | @swift_comparison_expression | @swift_conjunction_expression | @swift_constructor_expression | @swift_dictionary_literal | @swift_directive | @swift_disjunction_expression | @swift_equality_expression | @swift_if_statement | @swift_infix_expression | @swift_key_path_expression | @swift_key_path_string_expression | @swift_lambda_literal | @swift_line_string_literal | @swift_macro_invocation | @swift_multi_line_string_literal | @swift_multiplicative_expression | @swift_navigation_expression | @swift_nil_coalescing_expression | @swift_open_end_range_expression | @swift_open_start_range_expression | @swift_pattern | @swift_playground_literal | @swift_postfix_expression | @swift_prefix_expression | @swift_range_expression | @swift_raw_string_literal | @swift_selector_expression | @swift_switch_statement | @swift_ternary_expression | @swift_token_bang | @swift_token_bin_literal | @swift_token_boolean_literal | @swift_token_custom_operator | @swift_token_diagnostic | @swift_token_fully_open_range | @swift_token_hex_literal | @swift_token_integer_literal | @swift_token_oct_literal | @swift_token_real_literal | @swift_token_regex_literal | @swift_token_self_expression | @swift_token_simple_identifier | @swift_token_special_literal | @swift_token_super_expression | @swift_token_wildcard_pattern | @swift_try_expression | @swift_tuple_expression | @swift_type_modifiers | @swift_user_type | @swift_value_binding_pattern | @swift_value_pack_expansion | @swift_value_parameter_pack +@swift_pattern_child_type = @swift_additive_expression | @swift_array_literal | @swift_as_expression | @swift_assignment | @swift_await_expression | @swift_bitwise_operation | @swift_call_expression | @swift_check_expression | @swift_comparison_expression | @swift_conjunction_expression | @swift_constructor_expression | @swift_dictionary_literal | @swift_directive | @swift_disjunction_expression | @swift_equality_expression | @swift_if_statement | @swift_infix_expression | @swift_key_path_expression | @swift_key_path_string_expression | @swift_lambda_literal | @swift_line_string_literal | @swift_macro_invocation | @swift_multi_line_string_literal | @swift_multiplicative_expression | @swift_navigation_expression | @swift_nil_coalescing_expression | @swift_open_end_range_expression | @swift_open_start_range_expression | @swift_optional_chain_marker | @swift_pattern | @swift_playground_literal | @swift_postfix_expression | @swift_prefix_expression | @swift_range_expression | @swift_raw_string_literal | @swift_selector_expression | @swift_switch_statement | @swift_ternary_expression | @swift_token_bang | @swift_token_bin_literal | @swift_token_boolean_literal | @swift_token_custom_operator | @swift_token_diagnostic | @swift_token_fully_open_range | @swift_token_hex_literal | @swift_token_integer_literal | @swift_token_oct_literal | @swift_token_real_literal | @swift_token_regex_literal | @swift_token_self_expression | @swift_token_simple_identifier | @swift_token_special_literal | @swift_token_super_expression | @swift_token_wildcard_pattern | @swift_try_expression | @swift_tuple_expression | @swift_type_modifiers | @swift_user_type | @swift_value_binding_pattern | @swift_value_pack_expansion | @swift_value_parameter_pack #keyset[swift_pattern, index] swift_pattern_child( @@ -1753,7 +1606,7 @@ swift_pattern_def( unique int id: @swift_pattern ); -@swift_playground_literal_child_type = @swift_additive_expression | @swift_array_literal | @swift_as_expression | @swift_assignment | @swift_await_expression | @swift_bitwise_operation | @swift_call_expression | @swift_check_expression | @swift_comparison_expression | @swift_conjunction_expression | @swift_constructor_expression | @swift_dictionary_literal | @swift_directive | @swift_disjunction_expression | @swift_equality_expression | @swift_if_statement | @swift_infix_expression | @swift_key_path_expression | @swift_key_path_string_expression | @swift_lambda_literal | @swift_line_string_literal | @swift_macro_invocation | @swift_multi_line_string_literal | @swift_multiplicative_expression | @swift_navigation_expression | @swift_nil_coalescing_expression | @swift_open_end_range_expression | @swift_open_start_range_expression | @swift_playground_literal | @swift_postfix_expression | @swift_prefix_expression | @swift_range_expression | @swift_raw_string_literal | @swift_selector_expression | @swift_switch_statement | @swift_ternary_expression | @swift_token_bang | @swift_token_bin_literal | @swift_token_boolean_literal | @swift_token_custom_operator | @swift_token_diagnostic | @swift_token_fully_open_range | @swift_token_hex_literal | @swift_token_integer_literal | @swift_token_oct_literal | @swift_token_real_literal | @swift_token_regex_literal | @swift_token_self_expression | @swift_token_simple_identifier | @swift_token_special_literal | @swift_token_super_expression | @swift_try_expression | @swift_tuple_expression | @swift_value_pack_expansion | @swift_value_parameter_pack +@swift_playground_literal_child_type = @swift_additive_expression | @swift_array_literal | @swift_as_expression | @swift_assignment | @swift_await_expression | @swift_bitwise_operation | @swift_call_expression | @swift_check_expression | @swift_comparison_expression | @swift_conjunction_expression | @swift_constructor_expression | @swift_dictionary_literal | @swift_directive | @swift_disjunction_expression | @swift_equality_expression | @swift_if_statement | @swift_infix_expression | @swift_key_path_expression | @swift_key_path_string_expression | @swift_lambda_literal | @swift_line_string_literal | @swift_macro_invocation | @swift_multi_line_string_literal | @swift_multiplicative_expression | @swift_navigation_expression | @swift_nil_coalescing_expression | @swift_open_end_range_expression | @swift_open_start_range_expression | @swift_optional_chain_marker | @swift_playground_literal | @swift_postfix_expression | @swift_prefix_expression | @swift_range_expression | @swift_raw_string_literal | @swift_selector_expression | @swift_switch_statement | @swift_ternary_expression | @swift_token_bang | @swift_token_bin_literal | @swift_token_boolean_literal | @swift_token_custom_operator | @swift_token_diagnostic | @swift_token_fully_open_range | @swift_token_hex_literal | @swift_token_integer_literal | @swift_token_oct_literal | @swift_token_real_literal | @swift_token_regex_literal | @swift_token_self_expression | @swift_token_simple_identifier | @swift_token_special_literal | @swift_token_super_expression | @swift_try_expression | @swift_tuple_expression | @swift_value_pack_expansion | @swift_value_parameter_pack #keyset[swift_playground_literal, index] swift_playground_literal_child( @@ -1768,18 +1621,12 @@ swift_playground_literal_def( @swift_postfix_expression_operation_type = @swift_reserved_word | @swift_token_bang -@swift_postfix_expression_target_type = @swift_additive_expression | @swift_array_literal | @swift_as_expression | @swift_assignment | @swift_await_expression | @swift_bitwise_operation | @swift_call_expression | @swift_check_expression | @swift_comparison_expression | @swift_conjunction_expression | @swift_constructor_expression | @swift_dictionary_literal | @swift_directive | @swift_disjunction_expression | @swift_equality_expression | @swift_if_statement | @swift_infix_expression | @swift_key_path_expression | @swift_key_path_string_expression | @swift_lambda_literal | @swift_line_string_literal | @swift_macro_invocation | @swift_multi_line_string_literal | @swift_multiplicative_expression | @swift_navigation_expression | @swift_nil_coalescing_expression | @swift_open_end_range_expression | @swift_open_start_range_expression | @swift_playground_literal | @swift_postfix_expression | @swift_prefix_expression | @swift_range_expression | @swift_raw_string_literal | @swift_reserved_word | @swift_selector_expression | @swift_switch_statement | @swift_ternary_expression | @swift_token_bang | @swift_token_bin_literal | @swift_token_boolean_literal | @swift_token_custom_operator | @swift_token_diagnostic | @swift_token_fully_open_range | @swift_token_hex_literal | @swift_token_integer_literal | @swift_token_oct_literal | @swift_token_real_literal | @swift_token_regex_literal | @swift_token_self_expression | @swift_token_simple_identifier | @swift_token_special_literal | @swift_token_super_expression | @swift_try_expression | @swift_tuple_expression | @swift_value_pack_expansion | @swift_value_parameter_pack - -#keyset[swift_postfix_expression, index] -swift_postfix_expression_target( - int swift_postfix_expression: @swift_postfix_expression ref, - int index: int ref, - unique int target: @swift_postfix_expression_target_type ref -); +@swift_postfix_expression_target_type = @swift_additive_expression | @swift_array_literal | @swift_as_expression | @swift_assignment | @swift_await_expression | @swift_bitwise_operation | @swift_call_expression | @swift_check_expression | @swift_comparison_expression | @swift_conjunction_expression | @swift_constructor_expression | @swift_dictionary_literal | @swift_directive | @swift_disjunction_expression | @swift_equality_expression | @swift_if_statement | @swift_infix_expression | @swift_key_path_expression | @swift_key_path_string_expression | @swift_lambda_literal | @swift_line_string_literal | @swift_macro_invocation | @swift_multi_line_string_literal | @swift_multiplicative_expression | @swift_navigation_expression | @swift_nil_coalescing_expression | @swift_open_end_range_expression | @swift_open_start_range_expression | @swift_optional_chain_marker | @swift_playground_literal | @swift_postfix_expression | @swift_prefix_expression | @swift_range_expression | @swift_raw_string_literal | @swift_reserved_word | @swift_selector_expression | @swift_switch_statement | @swift_ternary_expression | @swift_token_bang | @swift_token_bin_literal | @swift_token_boolean_literal | @swift_token_custom_operator | @swift_token_diagnostic | @swift_token_fully_open_range | @swift_token_hex_literal | @swift_token_integer_literal | @swift_token_oct_literal | @swift_token_real_literal | @swift_token_regex_literal | @swift_token_self_expression | @swift_token_simple_identifier | @swift_token_special_literal | @swift_token_super_expression | @swift_try_expression | @swift_tuple_expression | @swift_value_pack_expansion | @swift_value_parameter_pack swift_postfix_expression_def( unique int id: @swift_postfix_expression, - int operation: @swift_postfix_expression_operation_type ref + int operation: @swift_postfix_expression_operation_type ref, + int target: @swift_postfix_expression_target_type ref ); @swift_precedence_group_attribute_child_type = @swift_token_boolean_literal | @swift_token_simple_identifier @@ -1821,18 +1668,12 @@ swift_precedence_group_declaration_def( @swift_prefix_expression_operation_type = @swift_reserved_word | @swift_token_bang | @swift_token_custom_operator -@swift_prefix_expression_target_type = @swift_additive_expression | @swift_array_literal | @swift_as_expression | @swift_assignment | @swift_await_expression | @swift_bitwise_operation | @swift_call_expression | @swift_check_expression | @swift_comparison_expression | @swift_conjunction_expression | @swift_constructor_expression | @swift_dictionary_literal | @swift_directive | @swift_disjunction_expression | @swift_equality_expression | @swift_if_statement | @swift_infix_expression | @swift_key_path_expression | @swift_key_path_string_expression | @swift_lambda_literal | @swift_line_string_literal | @swift_macro_invocation | @swift_multi_line_string_literal | @swift_multiplicative_expression | @swift_navigation_expression | @swift_nil_coalescing_expression | @swift_open_end_range_expression | @swift_open_start_range_expression | @swift_playground_literal | @swift_postfix_expression | @swift_prefix_expression | @swift_range_expression | @swift_raw_string_literal | @swift_reserved_word | @swift_selector_expression | @swift_switch_statement | @swift_ternary_expression | @swift_token__expression | @swift_token_bang | @swift_token_bin_literal | @swift_token_boolean_literal | @swift_token_custom_operator | @swift_token_diagnostic | @swift_token_fully_open_range | @swift_token_hex_literal | @swift_token_integer_literal | @swift_token_oct_literal | @swift_token_real_literal | @swift_token_regex_literal | @swift_token_self_expression | @swift_token_simple_identifier | @swift_token_special_literal | @swift_token_super_expression | @swift_try_expression | @swift_tuple_expression | @swift_value_pack_expansion | @swift_value_parameter_pack - -#keyset[swift_prefix_expression, index] -swift_prefix_expression_target( - int swift_prefix_expression: @swift_prefix_expression ref, - int index: int ref, - unique int target: @swift_prefix_expression_target_type ref -); +@swift_prefix_expression_target_type = @swift_additive_expression | @swift_array_literal | @swift_as_expression | @swift_assignment | @swift_await_expression | @swift_bitwise_operation | @swift_call_expression | @swift_check_expression | @swift_comparison_expression | @swift_conjunction_expression | @swift_constructor_expression | @swift_dictionary_literal | @swift_directive | @swift_disjunction_expression | @swift_equality_expression | @swift_if_statement | @swift_infix_expression | @swift_key_path_expression | @swift_key_path_string_expression | @swift_lambda_literal | @swift_line_string_literal | @swift_macro_invocation | @swift_multi_line_string_literal | @swift_multiplicative_expression | @swift_navigation_expression | @swift_nil_coalescing_expression | @swift_open_end_range_expression | @swift_open_start_range_expression | @swift_optional_chain_marker | @swift_playground_literal | @swift_postfix_expression | @swift_prefix_expression | @swift_range_expression | @swift_raw_string_literal | @swift_reserved_word | @swift_selector_expression | @swift_switch_statement | @swift_ternary_expression | @swift_token__expression | @swift_token_bang | @swift_token_bin_literal | @swift_token_boolean_literal | @swift_token_custom_operator | @swift_token_diagnostic | @swift_token_fully_open_range | @swift_token_hex_literal | @swift_token_integer_literal | @swift_token_oct_literal | @swift_token_real_literal | @swift_token_regex_literal | @swift_token_self_expression | @swift_token_simple_identifier | @swift_token_special_literal | @swift_token_super_expression | @swift_try_expression | @swift_tuple_expression | @swift_value_pack_expansion | @swift_value_parameter_pack swift_prefix_expression_def( unique int id: @swift_prefix_expression, - int operation: @swift_prefix_expression_operation_type ref + int operation: @swift_prefix_expression_operation_type ref, + int target: @swift_prefix_expression_target_type ref ); #keyset[swift_property_declaration, index] @@ -1849,7 +1690,7 @@ swift_property_declaration_name( unique int name: @swift_pattern ref ); -@swift_property_declaration_value_type = @swift_additive_expression | @swift_array_literal | @swift_as_expression | @swift_assignment | @swift_await_expression | @swift_bitwise_operation | @swift_call_expression | @swift_check_expression | @swift_comparison_expression | @swift_conjunction_expression | @swift_constructor_expression | @swift_dictionary_literal | @swift_directive | @swift_disjunction_expression | @swift_equality_expression | @swift_if_statement | @swift_infix_expression | @swift_key_path_expression | @swift_key_path_string_expression | @swift_lambda_literal | @swift_line_string_literal | @swift_macro_invocation | @swift_multi_line_string_literal | @swift_multiplicative_expression | @swift_navigation_expression | @swift_nil_coalescing_expression | @swift_open_end_range_expression | @swift_open_start_range_expression | @swift_playground_literal | @swift_postfix_expression | @swift_prefix_expression | @swift_range_expression | @swift_raw_string_literal | @swift_reserved_word | @swift_selector_expression | @swift_switch_statement | @swift_ternary_expression | @swift_token_bang | @swift_token_bin_literal | @swift_token_boolean_literal | @swift_token_custom_operator | @swift_token_diagnostic | @swift_token_fully_open_range | @swift_token_hex_literal | @swift_token_integer_literal | @swift_token_oct_literal | @swift_token_real_literal | @swift_token_regex_literal | @swift_token_self_expression | @swift_token_simple_identifier | @swift_token_special_literal | @swift_token_super_expression | @swift_try_expression | @swift_tuple_expression | @swift_value_pack_expansion | @swift_value_parameter_pack +@swift_property_declaration_value_type = @swift_additive_expression | @swift_array_literal | @swift_as_expression | @swift_assignment | @swift_await_expression | @swift_bitwise_operation | @swift_call_expression | @swift_check_expression | @swift_comparison_expression | @swift_conjunction_expression | @swift_constructor_expression | @swift_dictionary_literal | @swift_directive | @swift_disjunction_expression | @swift_equality_expression | @swift_if_statement | @swift_infix_expression | @swift_key_path_expression | @swift_key_path_string_expression | @swift_lambda_literal | @swift_line_string_literal | @swift_macro_invocation | @swift_multi_line_string_literal | @swift_multiplicative_expression | @swift_navigation_expression | @swift_nil_coalescing_expression | @swift_open_end_range_expression | @swift_open_start_range_expression | @swift_optional_chain_marker | @swift_playground_literal | @swift_postfix_expression | @swift_prefix_expression | @swift_range_expression | @swift_raw_string_literal | @swift_reserved_word | @swift_selector_expression | @swift_switch_statement | @swift_ternary_expression | @swift_token_bang | @swift_token_bin_literal | @swift_token_boolean_literal | @swift_token_custom_operator | @swift_token_diagnostic | @swift_token_fully_open_range | @swift_token_hex_literal | @swift_token_integer_literal | @swift_token_oct_literal | @swift_token_real_literal | @swift_token_regex_literal | @swift_token_self_expression | @swift_token_simple_identifier | @swift_token_special_literal | @swift_token_super_expression | @swift_try_expression | @swift_tuple_expression | @swift_value_pack_expansion | @swift_value_parameter_pack #keyset[swift_property_declaration, index] swift_property_declaration_value( @@ -1925,7 +1766,7 @@ swift_protocol_declaration_def( int name: @swift_token_type_identifier ref ); -@swift_protocol_function_declaration_default_value_type = @swift_additive_expression | @swift_array_literal | @swift_as_expression | @swift_assignment | @swift_await_expression | @swift_bitwise_operation | @swift_call_expression | @swift_check_expression | @swift_comparison_expression | @swift_conjunction_expression | @swift_constructor_expression | @swift_dictionary_literal | @swift_directive | @swift_disjunction_expression | @swift_equality_expression | @swift_if_statement | @swift_infix_expression | @swift_key_path_expression | @swift_key_path_string_expression | @swift_lambda_literal | @swift_line_string_literal | @swift_macro_invocation | @swift_multi_line_string_literal | @swift_multiplicative_expression | @swift_navigation_expression | @swift_nil_coalescing_expression | @swift_open_end_range_expression | @swift_open_start_range_expression | @swift_playground_literal | @swift_postfix_expression | @swift_prefix_expression | @swift_range_expression | @swift_raw_string_literal | @swift_reserved_word | @swift_selector_expression | @swift_switch_statement | @swift_ternary_expression | @swift_token_bang | @swift_token_bin_literal | @swift_token_boolean_literal | @swift_token_custom_operator | @swift_token_diagnostic | @swift_token_fully_open_range | @swift_token_hex_literal | @swift_token_integer_literal | @swift_token_oct_literal | @swift_token_real_literal | @swift_token_regex_literal | @swift_token_self_expression | @swift_token_simple_identifier | @swift_token_special_literal | @swift_token_super_expression | @swift_try_expression | @swift_tuple_expression | @swift_value_pack_expansion | @swift_value_parameter_pack +@swift_protocol_function_declaration_default_value_type = @swift_additive_expression | @swift_array_literal | @swift_as_expression | @swift_assignment | @swift_await_expression | @swift_bitwise_operation | @swift_call_expression | @swift_check_expression | @swift_comparison_expression | @swift_conjunction_expression | @swift_constructor_expression | @swift_dictionary_literal | @swift_directive | @swift_disjunction_expression | @swift_equality_expression | @swift_if_statement | @swift_infix_expression | @swift_key_path_expression | @swift_key_path_string_expression | @swift_lambda_literal | @swift_line_string_literal | @swift_macro_invocation | @swift_multi_line_string_literal | @swift_multiplicative_expression | @swift_navigation_expression | @swift_nil_coalescing_expression | @swift_open_end_range_expression | @swift_open_start_range_expression | @swift_optional_chain_marker | @swift_playground_literal | @swift_postfix_expression | @swift_prefix_expression | @swift_range_expression | @swift_raw_string_literal | @swift_reserved_word | @swift_selector_expression | @swift_switch_statement | @swift_ternary_expression | @swift_token_bang | @swift_token_bin_literal | @swift_token_boolean_literal | @swift_token_custom_operator | @swift_token_diagnostic | @swift_token_fully_open_range | @swift_token_hex_literal | @swift_token_integer_literal | @swift_token_oct_literal | @swift_token_real_literal | @swift_token_regex_literal | @swift_token_self_expression | @swift_token_simple_identifier | @swift_token_special_literal | @swift_token_super_expression | @swift_try_expression | @swift_tuple_expression | @swift_value_pack_expansion | @swift_value_parameter_pack #keyset[swift_protocol_function_declaration, index] swift_protocol_function_declaration_default_value( @@ -1992,14 +1833,7 @@ swift_protocol_property_requirements_def( unique int id: @swift_protocol_property_requirements ); -@swift_range_expression_end_type = @swift_additive_expression | @swift_array_literal | @swift_as_expression | @swift_assignment | @swift_await_expression | @swift_bitwise_operation | @swift_call_expression | @swift_check_expression | @swift_comparison_expression | @swift_conjunction_expression | @swift_constructor_expression | @swift_dictionary_literal | @swift_directive | @swift_disjunction_expression | @swift_equality_expression | @swift_if_statement | @swift_infix_expression | @swift_key_path_expression | @swift_key_path_string_expression | @swift_lambda_literal | @swift_line_string_literal | @swift_macro_invocation | @swift_multi_line_string_literal | @swift_multiplicative_expression | @swift_navigation_expression | @swift_nil_coalescing_expression | @swift_open_end_range_expression | @swift_open_start_range_expression | @swift_playground_literal | @swift_postfix_expression | @swift_prefix_expression | @swift_range_expression | @swift_raw_string_literal | @swift_reserved_word | @swift_selector_expression | @swift_switch_statement | @swift_ternary_expression | @swift_token_bang | @swift_token_bin_literal | @swift_token_boolean_literal | @swift_token_custom_operator | @swift_token_diagnostic | @swift_token_fully_open_range | @swift_token_hex_literal | @swift_token_integer_literal | @swift_token_oct_literal | @swift_token_real_literal | @swift_token_regex_literal | @swift_token_self_expression | @swift_token_simple_identifier | @swift_token_special_literal | @swift_token_super_expression | @swift_try_expression | @swift_tuple_expression | @swift_value_pack_expansion | @swift_value_parameter_pack - -#keyset[swift_range_expression, index] -swift_range_expression_end( - int swift_range_expression: @swift_range_expression ref, - int index: int ref, - unique int end: @swift_range_expression_end_type ref -); +@swift_range_expression_end_type = @swift_additive_expression | @swift_array_literal | @swift_as_expression | @swift_assignment | @swift_await_expression | @swift_bitwise_operation | @swift_call_expression | @swift_check_expression | @swift_comparison_expression | @swift_conjunction_expression | @swift_constructor_expression | @swift_dictionary_literal | @swift_directive | @swift_disjunction_expression | @swift_equality_expression | @swift_if_statement | @swift_infix_expression | @swift_key_path_expression | @swift_key_path_string_expression | @swift_lambda_literal | @swift_line_string_literal | @swift_macro_invocation | @swift_multi_line_string_literal | @swift_multiplicative_expression | @swift_navigation_expression | @swift_nil_coalescing_expression | @swift_open_end_range_expression | @swift_open_start_range_expression | @swift_optional_chain_marker | @swift_playground_literal | @swift_postfix_expression | @swift_prefix_expression | @swift_range_expression | @swift_raw_string_literal | @swift_reserved_word | @swift_selector_expression | @swift_switch_statement | @swift_ternary_expression | @swift_token_bang | @swift_token_bin_literal | @swift_token_boolean_literal | @swift_token_custom_operator | @swift_token_diagnostic | @swift_token_fully_open_range | @swift_token_hex_literal | @swift_token_integer_literal | @swift_token_oct_literal | @swift_token_real_literal | @swift_token_regex_literal | @swift_token_self_expression | @swift_token_simple_identifier | @swift_token_special_literal | @swift_token_super_expression | @swift_try_expression | @swift_tuple_expression | @swift_value_pack_expansion | @swift_value_parameter_pack case @swift_range_expression.op of 0 = @swift_range_expression_dotdotdot @@ -2007,18 +1841,13 @@ case @swift_range_expression.op of ; -@swift_range_expression_start_type = @swift_additive_expression | @swift_array_literal | @swift_as_expression | @swift_assignment | @swift_await_expression | @swift_bitwise_operation | @swift_call_expression | @swift_check_expression | @swift_comparison_expression | @swift_conjunction_expression | @swift_constructor_expression | @swift_dictionary_literal | @swift_directive | @swift_disjunction_expression | @swift_equality_expression | @swift_if_statement | @swift_infix_expression | @swift_key_path_expression | @swift_key_path_string_expression | @swift_lambda_literal | @swift_line_string_literal | @swift_macro_invocation | @swift_multi_line_string_literal | @swift_multiplicative_expression | @swift_navigation_expression | @swift_nil_coalescing_expression | @swift_open_end_range_expression | @swift_open_start_range_expression | @swift_playground_literal | @swift_postfix_expression | @swift_prefix_expression | @swift_range_expression | @swift_raw_string_literal | @swift_reserved_word | @swift_selector_expression | @swift_switch_statement | @swift_ternary_expression | @swift_token_bang | @swift_token_bin_literal | @swift_token_boolean_literal | @swift_token_custom_operator | @swift_token_diagnostic | @swift_token_fully_open_range | @swift_token_hex_literal | @swift_token_integer_literal | @swift_token_oct_literal | @swift_token_real_literal | @swift_token_regex_literal | @swift_token_self_expression | @swift_token_simple_identifier | @swift_token_special_literal | @swift_token_super_expression | @swift_try_expression | @swift_tuple_expression | @swift_value_pack_expansion | @swift_value_parameter_pack - -#keyset[swift_range_expression, index] -swift_range_expression_start( - int swift_range_expression: @swift_range_expression ref, - int index: int ref, - unique int start: @swift_range_expression_start_type ref -); +@swift_range_expression_start_type = @swift_additive_expression | @swift_array_literal | @swift_as_expression | @swift_assignment | @swift_await_expression | @swift_bitwise_operation | @swift_call_expression | @swift_check_expression | @swift_comparison_expression | @swift_conjunction_expression | @swift_constructor_expression | @swift_dictionary_literal | @swift_directive | @swift_disjunction_expression | @swift_equality_expression | @swift_if_statement | @swift_infix_expression | @swift_key_path_expression | @swift_key_path_string_expression | @swift_lambda_literal | @swift_line_string_literal | @swift_macro_invocation | @swift_multi_line_string_literal | @swift_multiplicative_expression | @swift_navigation_expression | @swift_nil_coalescing_expression | @swift_open_end_range_expression | @swift_open_start_range_expression | @swift_optional_chain_marker | @swift_playground_literal | @swift_postfix_expression | @swift_prefix_expression | @swift_range_expression | @swift_raw_string_literal | @swift_reserved_word | @swift_selector_expression | @swift_switch_statement | @swift_ternary_expression | @swift_token_bang | @swift_token_bin_literal | @swift_token_boolean_literal | @swift_token_custom_operator | @swift_token_diagnostic | @swift_token_fully_open_range | @swift_token_hex_literal | @swift_token_integer_literal | @swift_token_oct_literal | @swift_token_real_literal | @swift_token_regex_literal | @swift_token_self_expression | @swift_token_simple_identifier | @swift_token_special_literal | @swift_token_super_expression | @swift_try_expression | @swift_tuple_expression | @swift_value_pack_expansion | @swift_value_parameter_pack swift_range_expression_def( unique int id: @swift_range_expression, - int op: int ref + int end: @swift_range_expression_end_type ref, + int op: int ref, + int start: @swift_range_expression_start_type ref ); #keyset[swift_raw_str_interpolation, index] @@ -2067,7 +1896,7 @@ swift_repeat_while_statement_bound_identifier( unique int bound_identifier: @swift_token_simple_identifier ref ); -@swift_repeat_while_statement_condition_type = @swift_additive_expression | @swift_array_literal | @swift_array_type | @swift_as_expression | @swift_assignment | @swift_availability_condition | @swift_await_expression | @swift_bitwise_operation | @swift_call_expression | @swift_check_expression | @swift_comparison_expression | @swift_conjunction_expression | @swift_constructor_expression | @swift_dictionary_literal | @swift_dictionary_type | @swift_directive | @swift_disjunction_expression | @swift_equality_expression | @swift_existential_type | @swift_function_type | @swift_if_statement | @swift_infix_expression | @swift_key_path_expression | @swift_key_path_string_expression | @swift_lambda_literal | @swift_line_string_literal | @swift_macro_invocation | @swift_metatype | @swift_multi_line_string_literal | @swift_multiplicative_expression | @swift_navigation_expression | @swift_nil_coalescing_expression | @swift_opaque_type | @swift_open_end_range_expression | @swift_open_start_range_expression | @swift_optional_type | @swift_pattern | @swift_playground_literal | @swift_postfix_expression | @swift_prefix_expression | @swift_protocol_composition_type | @swift_range_expression | @swift_raw_string_literal | @swift_reserved_word | @swift_selector_expression | @swift_suppressed_constraint | @swift_switch_statement | @swift_ternary_expression | @swift_token_bang | @swift_token_bin_literal | @swift_token_boolean_literal | @swift_token_custom_operator | @swift_token_diagnostic | @swift_token_fully_open_range | @swift_token_hex_literal | @swift_token_integer_literal | @swift_token_oct_literal | @swift_token_real_literal | @swift_token_regex_literal | @swift_token_self_expression | @swift_token_simple_identifier | @swift_token_special_literal | @swift_token_super_expression | @swift_token_wildcard_pattern | @swift_try_expression | @swift_tuple_expression | @swift_tuple_type | @swift_type_annotation | @swift_type_modifiers | @swift_type_pack_expansion | @swift_type_parameter_pack | @swift_user_type | @swift_value_binding_pattern | @swift_value_pack_expansion | @swift_value_parameter_pack | @swift_where_clause +@swift_repeat_while_statement_condition_type = @swift_additive_expression | @swift_array_literal | @swift_array_type | @swift_as_expression | @swift_assignment | @swift_availability_condition | @swift_await_expression | @swift_bitwise_operation | @swift_call_expression | @swift_check_expression | @swift_comparison_expression | @swift_conjunction_expression | @swift_constructor_expression | @swift_dictionary_literal | @swift_dictionary_type | @swift_directive | @swift_disjunction_expression | @swift_equality_expression | @swift_existential_type | @swift_function_type | @swift_if_statement | @swift_infix_expression | @swift_key_path_expression | @swift_key_path_string_expression | @swift_lambda_literal | @swift_line_string_literal | @swift_macro_invocation | @swift_metatype | @swift_multi_line_string_literal | @swift_multiplicative_expression | @swift_navigation_expression | @swift_nil_coalescing_expression | @swift_opaque_type | @swift_open_end_range_expression | @swift_open_start_range_expression | @swift_optional_chain_marker | @swift_optional_type | @swift_pattern | @swift_playground_literal | @swift_postfix_expression | @swift_prefix_expression | @swift_protocol_composition_type | @swift_range_expression | @swift_raw_string_literal | @swift_reserved_word | @swift_selector_expression | @swift_suppressed_constraint | @swift_switch_statement | @swift_ternary_expression | @swift_token_bang | @swift_token_bin_literal | @swift_token_boolean_literal | @swift_token_custom_operator | @swift_token_diagnostic | @swift_token_fully_open_range | @swift_token_hex_literal | @swift_token_integer_literal | @swift_token_oct_literal | @swift_token_real_literal | @swift_token_regex_literal | @swift_token_self_expression | @swift_token_simple_identifier | @swift_token_special_literal | @swift_token_super_expression | @swift_token_wildcard_pattern | @swift_try_expression | @swift_tuple_expression | @swift_tuple_type | @swift_type_annotation | @swift_type_modifiers | @swift_type_pack_expansion | @swift_type_parameter_pack | @swift_user_type | @swift_value_binding_pattern | @swift_value_pack_expansion | @swift_value_parameter_pack | @swift_where_clause #keyset[swift_repeat_while_statement, index] swift_repeat_while_statement_condition( @@ -2094,7 +1923,7 @@ swift_repeat_while_statement_def( unique int id: @swift_repeat_while_statement ); -@swift_selector_expression_child_type = @swift_additive_expression | @swift_array_literal | @swift_as_expression | @swift_assignment | @swift_await_expression | @swift_bitwise_operation | @swift_call_expression | @swift_check_expression | @swift_comparison_expression | @swift_conjunction_expression | @swift_constructor_expression | @swift_dictionary_literal | @swift_directive | @swift_disjunction_expression | @swift_equality_expression | @swift_if_statement | @swift_infix_expression | @swift_key_path_expression | @swift_key_path_string_expression | @swift_lambda_literal | @swift_line_string_literal | @swift_macro_invocation | @swift_multi_line_string_literal | @swift_multiplicative_expression | @swift_navigation_expression | @swift_nil_coalescing_expression | @swift_open_end_range_expression | @swift_open_start_range_expression | @swift_playground_literal | @swift_postfix_expression | @swift_prefix_expression | @swift_range_expression | @swift_raw_string_literal | @swift_selector_expression | @swift_switch_statement | @swift_ternary_expression | @swift_token_bang | @swift_token_bin_literal | @swift_token_boolean_literal | @swift_token_custom_operator | @swift_token_diagnostic | @swift_token_fully_open_range | @swift_token_hex_literal | @swift_token_integer_literal | @swift_token_oct_literal | @swift_token_real_literal | @swift_token_regex_literal | @swift_token_self_expression | @swift_token_simple_identifier | @swift_token_special_literal | @swift_token_super_expression | @swift_try_expression | @swift_tuple_expression | @swift_value_pack_expansion | @swift_value_parameter_pack +@swift_selector_expression_child_type = @swift_additive_expression | @swift_array_literal | @swift_as_expression | @swift_assignment | @swift_await_expression | @swift_bitwise_operation | @swift_call_expression | @swift_check_expression | @swift_comparison_expression | @swift_conjunction_expression | @swift_constructor_expression | @swift_dictionary_literal | @swift_directive | @swift_disjunction_expression | @swift_equality_expression | @swift_if_statement | @swift_infix_expression | @swift_key_path_expression | @swift_key_path_string_expression | @swift_lambda_literal | @swift_line_string_literal | @swift_macro_invocation | @swift_multi_line_string_literal | @swift_multiplicative_expression | @swift_navigation_expression | @swift_nil_coalescing_expression | @swift_open_end_range_expression | @swift_open_start_range_expression | @swift_optional_chain_marker | @swift_playground_literal | @swift_postfix_expression | @swift_prefix_expression | @swift_range_expression | @swift_raw_string_literal | @swift_selector_expression | @swift_switch_statement | @swift_ternary_expression | @swift_token_bang | @swift_token_bin_literal | @swift_token_boolean_literal | @swift_token_custom_operator | @swift_token_diagnostic | @swift_token_fully_open_range | @swift_token_hex_literal | @swift_token_integer_literal | @swift_token_oct_literal | @swift_token_real_literal | @swift_token_regex_literal | @swift_token_self_expression | @swift_token_simple_identifier | @swift_token_special_literal | @swift_token_super_expression | @swift_try_expression | @swift_tuple_expression | @swift_value_pack_expansion | @swift_value_parameter_pack swift_selector_expression_child( unique int swift_selector_expression: @swift_selector_expression ref, @@ -2114,7 +1943,7 @@ swift_setter_specifier_def( unique int id: @swift_setter_specifier ); -@swift_source_file_child_type = @swift_additive_expression | @swift_array_literal | @swift_as_expression | @swift_assignment | @swift_associatedtype_declaration | @swift_await_expression | @swift_bitwise_operation | @swift_call_expression | @swift_check_expression | @swift_class_declaration | @swift_comparison_expression | @swift_conjunction_expression | @swift_constructor_expression | @swift_dictionary_literal | @swift_directive | @swift_disjunction_expression | @swift_do_statement | @swift_equality_expression | @swift_for_statement | @swift_function_declaration | @swift_guard_statement | @swift_if_statement | @swift_import_declaration | @swift_infix_expression | @swift_init_declaration | @swift_key_path_expression | @swift_key_path_string_expression | @swift_lambda_literal | @swift_line_string_literal | @swift_macro_declaration | @swift_macro_invocation | @swift_multi_line_string_literal | @swift_multiplicative_expression | @swift_navigation_expression | @swift_nil_coalescing_expression | @swift_open_end_range_expression | @swift_open_start_range_expression | @swift_operator_declaration | @swift_playground_literal | @swift_postfix_expression | @swift_precedence_group_declaration | @swift_prefix_expression | @swift_property_declaration | @swift_protocol_declaration | @swift_range_expression | @swift_raw_string_literal | @swift_repeat_while_statement | @swift_selector_expression | @swift_switch_statement | @swift_ternary_expression | @swift_token_bang | @swift_token_bin_literal | @swift_token_boolean_literal | @swift_token_custom_operator | @swift_token_diagnostic | @swift_token_fully_open_range | @swift_token_hex_literal | @swift_token_integer_literal | @swift_token_oct_literal | @swift_token_real_literal | @swift_token_regex_literal | @swift_token_self_expression | @swift_token_shebang_line | @swift_token_simple_identifier | @swift_token_special_literal | @swift_token_statement_label | @swift_token_super_expression | @swift_token_throw_keyword | @swift_try_expression | @swift_tuple_expression | @swift_typealias_declaration | @swift_value_pack_expansion | @swift_value_parameter_pack | @swift_while_statement +@swift_source_file_child_type = @swift_additive_expression | @swift_array_literal | @swift_as_expression | @swift_assignment | @swift_associatedtype_declaration | @swift_await_expression | @swift_bitwise_operation | @swift_call_expression | @swift_check_expression | @swift_class_declaration | @swift_comparison_expression | @swift_conjunction_expression | @swift_constructor_expression | @swift_dictionary_literal | @swift_directive | @swift_disjunction_expression | @swift_do_statement | @swift_equality_expression | @swift_for_statement | @swift_function_declaration | @swift_guard_statement | @swift_if_statement | @swift_import_declaration | @swift_infix_expression | @swift_init_declaration | @swift_key_path_expression | @swift_key_path_string_expression | @swift_lambda_literal | @swift_line_string_literal | @swift_macro_declaration | @swift_macro_invocation | @swift_multi_line_string_literal | @swift_multiplicative_expression | @swift_navigation_expression | @swift_nil_coalescing_expression | @swift_open_end_range_expression | @swift_open_start_range_expression | @swift_operator_declaration | @swift_optional_chain_marker | @swift_playground_literal | @swift_postfix_expression | @swift_precedence_group_declaration | @swift_prefix_expression | @swift_property_declaration | @swift_protocol_declaration | @swift_range_expression | @swift_raw_string_literal | @swift_repeat_while_statement | @swift_selector_expression | @swift_switch_statement | @swift_ternary_expression | @swift_token_bang | @swift_token_bin_literal | @swift_token_boolean_literal | @swift_token_custom_operator | @swift_token_diagnostic | @swift_token_fully_open_range | @swift_token_hex_literal | @swift_token_integer_literal | @swift_token_oct_literal | @swift_token_real_literal | @swift_token_regex_literal | @swift_token_self_expression | @swift_token_shebang_line | @swift_token_simple_identifier | @swift_token_special_literal | @swift_token_statement_label | @swift_token_super_expression | @swift_token_throw_keyword | @swift_try_expression | @swift_tuple_expression | @swift_typealias_declaration | @swift_value_pack_expansion | @swift_value_parameter_pack | @swift_while_statement #keyset[swift_source_file, index] swift_source_file_child( @@ -2127,7 +1956,7 @@ swift_source_file_def( unique int id: @swift_source_file ); -@swift_statements_child_type = @swift_additive_expression | @swift_array_literal | @swift_as_expression | @swift_assignment | @swift_await_expression | @swift_bitwise_operation | @swift_call_expression | @swift_check_expression | @swift_class_declaration | @swift_comparison_expression | @swift_conjunction_expression | @swift_constructor_expression | @swift_control_transfer_statement | @swift_dictionary_literal | @swift_directive | @swift_disjunction_expression | @swift_do_statement | @swift_equality_expression | @swift_for_statement | @swift_function_declaration | @swift_guard_statement | @swift_if_statement | @swift_infix_expression | @swift_key_path_expression | @swift_key_path_string_expression | @swift_lambda_literal | @swift_line_string_literal | @swift_macro_invocation | @swift_multi_line_string_literal | @swift_multiplicative_expression | @swift_navigation_expression | @swift_nil_coalescing_expression | @swift_open_end_range_expression | @swift_open_start_range_expression | @swift_playground_literal | @swift_postfix_expression | @swift_prefix_expression | @swift_property_declaration | @swift_range_expression | @swift_raw_string_literal | @swift_repeat_while_statement | @swift_selector_expression | @swift_switch_statement | @swift_ternary_expression | @swift_token_bang | @swift_token_bin_literal | @swift_token_boolean_literal | @swift_token_custom_operator | @swift_token_diagnostic | @swift_token_fully_open_range | @swift_token_hex_literal | @swift_token_integer_literal | @swift_token_oct_literal | @swift_token_real_literal | @swift_token_regex_literal | @swift_token_self_expression | @swift_token_simple_identifier | @swift_token_special_literal | @swift_token_statement_label | @swift_token_super_expression | @swift_try_expression | @swift_tuple_expression | @swift_typealias_declaration | @swift_value_pack_expansion | @swift_value_parameter_pack | @swift_while_statement +@swift_statements_child_type = @swift_additive_expression | @swift_array_literal | @swift_as_expression | @swift_assignment | @swift_await_expression | @swift_bitwise_operation | @swift_call_expression | @swift_check_expression | @swift_class_declaration | @swift_comparison_expression | @swift_conjunction_expression | @swift_constructor_expression | @swift_control_transfer_statement | @swift_dictionary_literal | @swift_directive | @swift_disjunction_expression | @swift_do_statement | @swift_equality_expression | @swift_for_statement | @swift_function_declaration | @swift_guard_statement | @swift_if_statement | @swift_infix_expression | @swift_key_path_expression | @swift_key_path_string_expression | @swift_lambda_literal | @swift_line_string_literal | @swift_macro_invocation | @swift_multi_line_string_literal | @swift_multiplicative_expression | @swift_navigation_expression | @swift_nil_coalescing_expression | @swift_open_end_range_expression | @swift_open_start_range_expression | @swift_optional_chain_marker | @swift_playground_literal | @swift_postfix_expression | @swift_prefix_expression | @swift_property_declaration | @swift_range_expression | @swift_raw_string_literal | @swift_repeat_while_statement | @swift_selector_expression | @swift_switch_statement | @swift_ternary_expression | @swift_token_bang | @swift_token_bin_literal | @swift_token_boolean_literal | @swift_token_custom_operator | @swift_token_diagnostic | @swift_token_fully_open_range | @swift_token_hex_literal | @swift_token_integer_literal | @swift_token_oct_literal | @swift_token_real_literal | @swift_token_regex_literal | @swift_token_self_expression | @swift_token_simple_identifier | @swift_token_special_literal | @swift_token_statement_label | @swift_token_super_expression | @swift_try_expression | @swift_tuple_expression | @swift_typealias_declaration | @swift_value_pack_expansion | @swift_value_parameter_pack | @swift_while_statement #keyset[swift_statements, index] swift_statements_child( @@ -2140,7 +1969,7 @@ swift_statements_def( unique int id: @swift_statements ); -@swift_subscript_declaration_default_value_type = @swift_additive_expression | @swift_array_literal | @swift_as_expression | @swift_assignment | @swift_await_expression | @swift_bitwise_operation | @swift_call_expression | @swift_check_expression | @swift_comparison_expression | @swift_conjunction_expression | @swift_constructor_expression | @swift_dictionary_literal | @swift_directive | @swift_disjunction_expression | @swift_equality_expression | @swift_if_statement | @swift_infix_expression | @swift_key_path_expression | @swift_key_path_string_expression | @swift_lambda_literal | @swift_line_string_literal | @swift_macro_invocation | @swift_multi_line_string_literal | @swift_multiplicative_expression | @swift_navigation_expression | @swift_nil_coalescing_expression | @swift_open_end_range_expression | @swift_open_start_range_expression | @swift_playground_literal | @swift_postfix_expression | @swift_prefix_expression | @swift_range_expression | @swift_raw_string_literal | @swift_reserved_word | @swift_selector_expression | @swift_switch_statement | @swift_ternary_expression | @swift_token_bang | @swift_token_bin_literal | @swift_token_boolean_literal | @swift_token_custom_operator | @swift_token_diagnostic | @swift_token_fully_open_range | @swift_token_hex_literal | @swift_token_integer_literal | @swift_token_oct_literal | @swift_token_real_literal | @swift_token_regex_literal | @swift_token_self_expression | @swift_token_simple_identifier | @swift_token_special_literal | @swift_token_super_expression | @swift_try_expression | @swift_tuple_expression | @swift_value_pack_expansion | @swift_value_parameter_pack +@swift_subscript_declaration_default_value_type = @swift_additive_expression | @swift_array_literal | @swift_as_expression | @swift_assignment | @swift_await_expression | @swift_bitwise_operation | @swift_call_expression | @swift_check_expression | @swift_comparison_expression | @swift_conjunction_expression | @swift_constructor_expression | @swift_dictionary_literal | @swift_directive | @swift_disjunction_expression | @swift_equality_expression | @swift_if_statement | @swift_infix_expression | @swift_key_path_expression | @swift_key_path_string_expression | @swift_lambda_literal | @swift_line_string_literal | @swift_macro_invocation | @swift_multi_line_string_literal | @swift_multiplicative_expression | @swift_navigation_expression | @swift_nil_coalescing_expression | @swift_open_end_range_expression | @swift_open_start_range_expression | @swift_optional_chain_marker | @swift_playground_literal | @swift_postfix_expression | @swift_prefix_expression | @swift_range_expression | @swift_raw_string_literal | @swift_reserved_word | @swift_selector_expression | @swift_switch_statement | @swift_ternary_expression | @swift_token_bang | @swift_token_bin_literal | @swift_token_boolean_literal | @swift_token_custom_operator | @swift_token_diagnostic | @swift_token_fully_open_range | @swift_token_hex_literal | @swift_token_integer_literal | @swift_token_oct_literal | @swift_token_real_literal | @swift_token_regex_literal | @swift_token_self_expression | @swift_token_simple_identifier | @swift_token_special_literal | @swift_token_super_expression | @swift_try_expression | @swift_tuple_expression | @swift_value_pack_expansion | @swift_value_parameter_pack #keyset[swift_subscript_declaration, index] swift_subscript_declaration_default_value( @@ -2183,7 +2012,7 @@ swift_suppressed_constraint_def( int suppressed: @swift_token_type_identifier ref ); -@swift_switch_entry_child_type = @swift_additive_expression | @swift_array_literal | @swift_as_expression | @swift_assignment | @swift_await_expression | @swift_bitwise_operation | @swift_call_expression | @swift_check_expression | @swift_comparison_expression | @swift_conjunction_expression | @swift_constructor_expression | @swift_dictionary_literal | @swift_directive | @swift_disjunction_expression | @swift_equality_expression | @swift_if_statement | @swift_infix_expression | @swift_key_path_expression | @swift_key_path_string_expression | @swift_lambda_literal | @swift_line_string_literal | @swift_macro_invocation | @swift_modifiers | @swift_multi_line_string_literal | @swift_multiplicative_expression | @swift_navigation_expression | @swift_nil_coalescing_expression | @swift_open_end_range_expression | @swift_open_start_range_expression | @swift_playground_literal | @swift_postfix_expression | @swift_prefix_expression | @swift_range_expression | @swift_raw_string_literal | @swift_selector_expression | @swift_statements | @swift_switch_pattern | @swift_switch_statement | @swift_ternary_expression | @swift_token_bang | @swift_token_bin_literal | @swift_token_boolean_literal | @swift_token_custom_operator | @swift_token_default_keyword | @swift_token_diagnostic | @swift_token_fully_open_range | @swift_token_hex_literal | @swift_token_integer_literal | @swift_token_oct_literal | @swift_token_real_literal | @swift_token_regex_literal | @swift_token_self_expression | @swift_token_simple_identifier | @swift_token_special_literal | @swift_token_super_expression | @swift_token_where_keyword | @swift_try_expression | @swift_tuple_expression | @swift_value_pack_expansion | @swift_value_parameter_pack +@swift_switch_entry_child_type = @swift_additive_expression | @swift_array_literal | @swift_as_expression | @swift_assignment | @swift_await_expression | @swift_bitwise_operation | @swift_call_expression | @swift_check_expression | @swift_comparison_expression | @swift_conjunction_expression | @swift_constructor_expression | @swift_dictionary_literal | @swift_directive | @swift_disjunction_expression | @swift_equality_expression | @swift_if_statement | @swift_infix_expression | @swift_key_path_expression | @swift_key_path_string_expression | @swift_lambda_literal | @swift_line_string_literal | @swift_macro_invocation | @swift_modifiers | @swift_multi_line_string_literal | @swift_multiplicative_expression | @swift_navigation_expression | @swift_nil_coalescing_expression | @swift_open_end_range_expression | @swift_open_start_range_expression | @swift_optional_chain_marker | @swift_playground_literal | @swift_postfix_expression | @swift_prefix_expression | @swift_range_expression | @swift_raw_string_literal | @swift_selector_expression | @swift_statements | @swift_switch_pattern | @swift_switch_statement | @swift_ternary_expression | @swift_token_bang | @swift_token_bin_literal | @swift_token_boolean_literal | @swift_token_custom_operator | @swift_token_default_keyword | @swift_token_diagnostic | @swift_token_fully_open_range | @swift_token_hex_literal | @swift_token_integer_literal | @swift_token_oct_literal | @swift_token_real_literal | @swift_token_regex_literal | @swift_token_self_expression | @swift_token_simple_identifier | @swift_token_special_literal | @swift_token_super_expression | @swift_token_where_keyword | @swift_try_expression | @swift_tuple_expression | @swift_value_pack_expansion | @swift_value_parameter_pack #keyset[swift_switch_entry, index] swift_switch_entry_child( @@ -2201,14 +2030,7 @@ swift_switch_pattern_def( int child: @swift_pattern ref ); -@swift_switch_statement_expr_type = @swift_additive_expression | @swift_array_literal | @swift_as_expression | @swift_assignment | @swift_await_expression | @swift_bitwise_operation | @swift_call_expression | @swift_check_expression | @swift_comparison_expression | @swift_conjunction_expression | @swift_constructor_expression | @swift_dictionary_literal | @swift_directive | @swift_disjunction_expression | @swift_equality_expression | @swift_if_statement | @swift_infix_expression | @swift_key_path_expression | @swift_key_path_string_expression | @swift_lambda_literal | @swift_line_string_literal | @swift_macro_invocation | @swift_multi_line_string_literal | @swift_multiplicative_expression | @swift_navigation_expression | @swift_nil_coalescing_expression | @swift_open_end_range_expression | @swift_open_start_range_expression | @swift_playground_literal | @swift_postfix_expression | @swift_prefix_expression | @swift_range_expression | @swift_raw_string_literal | @swift_reserved_word | @swift_selector_expression | @swift_switch_statement | @swift_ternary_expression | @swift_token_bang | @swift_token_bin_literal | @swift_token_boolean_literal | @swift_token_custom_operator | @swift_token_diagnostic | @swift_token_fully_open_range | @swift_token_hex_literal | @swift_token_integer_literal | @swift_token_oct_literal | @swift_token_real_literal | @swift_token_regex_literal | @swift_token_self_expression | @swift_token_simple_identifier | @swift_token_special_literal | @swift_token_super_expression | @swift_try_expression | @swift_tuple_expression | @swift_value_pack_expansion | @swift_value_parameter_pack - -#keyset[swift_switch_statement, index] -swift_switch_statement_expr( - int swift_switch_statement: @swift_switch_statement ref, - int index: int ref, - unique int expr: @swift_switch_statement_expr_type ref -); +@swift_switch_statement_expr_type = @swift_additive_expression | @swift_array_literal | @swift_as_expression | @swift_assignment | @swift_await_expression | @swift_bitwise_operation | @swift_call_expression | @swift_check_expression | @swift_comparison_expression | @swift_conjunction_expression | @swift_constructor_expression | @swift_dictionary_literal | @swift_directive | @swift_disjunction_expression | @swift_equality_expression | @swift_if_statement | @swift_infix_expression | @swift_key_path_expression | @swift_key_path_string_expression | @swift_lambda_literal | @swift_line_string_literal | @swift_macro_invocation | @swift_multi_line_string_literal | @swift_multiplicative_expression | @swift_navigation_expression | @swift_nil_coalescing_expression | @swift_open_end_range_expression | @swift_open_start_range_expression | @swift_optional_chain_marker | @swift_playground_literal | @swift_postfix_expression | @swift_prefix_expression | @swift_range_expression | @swift_raw_string_literal | @swift_reserved_word | @swift_selector_expression | @swift_switch_statement | @swift_ternary_expression | @swift_token_bang | @swift_token_bin_literal | @swift_token_boolean_literal | @swift_token_custom_operator | @swift_token_diagnostic | @swift_token_fully_open_range | @swift_token_hex_literal | @swift_token_integer_literal | @swift_token_oct_literal | @swift_token_real_literal | @swift_token_regex_literal | @swift_token_self_expression | @swift_token_simple_identifier | @swift_token_special_literal | @swift_token_super_expression | @swift_try_expression | @swift_tuple_expression | @swift_value_pack_expansion | @swift_value_parameter_pack #keyset[swift_switch_statement, index] swift_switch_statement_child( @@ -2218,38 +2040,21 @@ swift_switch_statement_child( ); swift_switch_statement_def( - unique int id: @swift_switch_statement + unique int id: @swift_switch_statement, + int expr: @swift_switch_statement_expr_type ref ); -@swift_ternary_expression_condition_type = @swift_additive_expression | @swift_array_literal | @swift_as_expression | @swift_assignment | @swift_await_expression | @swift_bitwise_operation | @swift_call_expression | @swift_check_expression | @swift_comparison_expression | @swift_conjunction_expression | @swift_constructor_expression | @swift_dictionary_literal | @swift_directive | @swift_disjunction_expression | @swift_equality_expression | @swift_if_statement | @swift_infix_expression | @swift_key_path_expression | @swift_key_path_string_expression | @swift_lambda_literal | @swift_line_string_literal | @swift_macro_invocation | @swift_multi_line_string_literal | @swift_multiplicative_expression | @swift_navigation_expression | @swift_nil_coalescing_expression | @swift_open_end_range_expression | @swift_open_start_range_expression | @swift_playground_literal | @swift_postfix_expression | @swift_prefix_expression | @swift_range_expression | @swift_raw_string_literal | @swift_reserved_word | @swift_selector_expression | @swift_switch_statement | @swift_ternary_expression | @swift_token_bang | @swift_token_bin_literal | @swift_token_boolean_literal | @swift_token_custom_operator | @swift_token_diagnostic | @swift_token_fully_open_range | @swift_token_hex_literal | @swift_token_integer_literal | @swift_token_oct_literal | @swift_token_real_literal | @swift_token_regex_literal | @swift_token_self_expression | @swift_token_simple_identifier | @swift_token_special_literal | @swift_token_super_expression | @swift_try_expression | @swift_tuple_expression | @swift_value_pack_expansion | @swift_value_parameter_pack +@swift_ternary_expression_condition_type = @swift_additive_expression | @swift_array_literal | @swift_as_expression | @swift_assignment | @swift_await_expression | @swift_bitwise_operation | @swift_call_expression | @swift_check_expression | @swift_comparison_expression | @swift_conjunction_expression | @swift_constructor_expression | @swift_dictionary_literal | @swift_directive | @swift_disjunction_expression | @swift_equality_expression | @swift_if_statement | @swift_infix_expression | @swift_key_path_expression | @swift_key_path_string_expression | @swift_lambda_literal | @swift_line_string_literal | @swift_macro_invocation | @swift_multi_line_string_literal | @swift_multiplicative_expression | @swift_navigation_expression | @swift_nil_coalescing_expression | @swift_open_end_range_expression | @swift_open_start_range_expression | @swift_optional_chain_marker | @swift_playground_literal | @swift_postfix_expression | @swift_prefix_expression | @swift_range_expression | @swift_raw_string_literal | @swift_reserved_word | @swift_selector_expression | @swift_switch_statement | @swift_ternary_expression | @swift_token_bang | @swift_token_bin_literal | @swift_token_boolean_literal | @swift_token_custom_operator | @swift_token_diagnostic | @swift_token_fully_open_range | @swift_token_hex_literal | @swift_token_integer_literal | @swift_token_oct_literal | @swift_token_real_literal | @swift_token_regex_literal | @swift_token_self_expression | @swift_token_simple_identifier | @swift_token_special_literal | @swift_token_super_expression | @swift_try_expression | @swift_tuple_expression | @swift_value_pack_expansion | @swift_value_parameter_pack -#keyset[swift_ternary_expression, index] -swift_ternary_expression_condition( - int swift_ternary_expression: @swift_ternary_expression ref, - int index: int ref, - unique int condition: @swift_ternary_expression_condition_type ref -); - -@swift_ternary_expression_if_false_type = @swift_additive_expression | @swift_array_literal | @swift_as_expression | @swift_assignment | @swift_await_expression | @swift_bitwise_operation | @swift_call_expression | @swift_check_expression | @swift_comparison_expression | @swift_conjunction_expression | @swift_constructor_expression | @swift_dictionary_literal | @swift_directive | @swift_disjunction_expression | @swift_equality_expression | @swift_if_statement | @swift_infix_expression | @swift_key_path_expression | @swift_key_path_string_expression | @swift_lambda_literal | @swift_line_string_literal | @swift_macro_invocation | @swift_multi_line_string_literal | @swift_multiplicative_expression | @swift_navigation_expression | @swift_nil_coalescing_expression | @swift_open_end_range_expression | @swift_open_start_range_expression | @swift_playground_literal | @swift_postfix_expression | @swift_prefix_expression | @swift_range_expression | @swift_raw_string_literal | @swift_reserved_word | @swift_selector_expression | @swift_switch_statement | @swift_ternary_expression | @swift_token_bang | @swift_token_bin_literal | @swift_token_boolean_literal | @swift_token_custom_operator | @swift_token_diagnostic | @swift_token_fully_open_range | @swift_token_hex_literal | @swift_token_integer_literal | @swift_token_oct_literal | @swift_token_real_literal | @swift_token_regex_literal | @swift_token_self_expression | @swift_token_simple_identifier | @swift_token_special_literal | @swift_token_super_expression | @swift_try_expression | @swift_tuple_expression | @swift_value_pack_expansion | @swift_value_parameter_pack - -#keyset[swift_ternary_expression, index] -swift_ternary_expression_if_false( - int swift_ternary_expression: @swift_ternary_expression ref, - int index: int ref, - unique int if_false: @swift_ternary_expression_if_false_type ref -); +@swift_ternary_expression_if_false_type = @swift_additive_expression | @swift_array_literal | @swift_as_expression | @swift_assignment | @swift_await_expression | @swift_bitwise_operation | @swift_call_expression | @swift_check_expression | @swift_comparison_expression | @swift_conjunction_expression | @swift_constructor_expression | @swift_dictionary_literal | @swift_directive | @swift_disjunction_expression | @swift_equality_expression | @swift_if_statement | @swift_infix_expression | @swift_key_path_expression | @swift_key_path_string_expression | @swift_lambda_literal | @swift_line_string_literal | @swift_macro_invocation | @swift_multi_line_string_literal | @swift_multiplicative_expression | @swift_navigation_expression | @swift_nil_coalescing_expression | @swift_open_end_range_expression | @swift_open_start_range_expression | @swift_optional_chain_marker | @swift_playground_literal | @swift_postfix_expression | @swift_prefix_expression | @swift_range_expression | @swift_raw_string_literal | @swift_reserved_word | @swift_selector_expression | @swift_switch_statement | @swift_ternary_expression | @swift_token_bang | @swift_token_bin_literal | @swift_token_boolean_literal | @swift_token_custom_operator | @swift_token_diagnostic | @swift_token_fully_open_range | @swift_token_hex_literal | @swift_token_integer_literal | @swift_token_oct_literal | @swift_token_real_literal | @swift_token_regex_literal | @swift_token_self_expression | @swift_token_simple_identifier | @swift_token_special_literal | @swift_token_super_expression | @swift_try_expression | @swift_tuple_expression | @swift_value_pack_expansion | @swift_value_parameter_pack -@swift_ternary_expression_if_true_type = @swift_additive_expression | @swift_array_literal | @swift_as_expression | @swift_assignment | @swift_await_expression | @swift_bitwise_operation | @swift_call_expression | @swift_check_expression | @swift_comparison_expression | @swift_conjunction_expression | @swift_constructor_expression | @swift_dictionary_literal | @swift_directive | @swift_disjunction_expression | @swift_equality_expression | @swift_if_statement | @swift_infix_expression | @swift_key_path_expression | @swift_key_path_string_expression | @swift_lambda_literal | @swift_line_string_literal | @swift_macro_invocation | @swift_multi_line_string_literal | @swift_multiplicative_expression | @swift_navigation_expression | @swift_nil_coalescing_expression | @swift_open_end_range_expression | @swift_open_start_range_expression | @swift_playground_literal | @swift_postfix_expression | @swift_prefix_expression | @swift_range_expression | @swift_raw_string_literal | @swift_reserved_word | @swift_selector_expression | @swift_switch_statement | @swift_ternary_expression | @swift_token_bang | @swift_token_bin_literal | @swift_token_boolean_literal | @swift_token_custom_operator | @swift_token_diagnostic | @swift_token_fully_open_range | @swift_token_hex_literal | @swift_token_integer_literal | @swift_token_oct_literal | @swift_token_real_literal | @swift_token_regex_literal | @swift_token_self_expression | @swift_token_simple_identifier | @swift_token_special_literal | @swift_token_super_expression | @swift_try_expression | @swift_tuple_expression | @swift_value_pack_expansion | @swift_value_parameter_pack - -#keyset[swift_ternary_expression, index] -swift_ternary_expression_if_true( - int swift_ternary_expression: @swift_ternary_expression ref, - int index: int ref, - unique int if_true: @swift_ternary_expression_if_true_type ref -); +@swift_ternary_expression_if_true_type = @swift_additive_expression | @swift_array_literal | @swift_as_expression | @swift_assignment | @swift_await_expression | @swift_bitwise_operation | @swift_call_expression | @swift_check_expression | @swift_comparison_expression | @swift_conjunction_expression | @swift_constructor_expression | @swift_dictionary_literal | @swift_directive | @swift_disjunction_expression | @swift_equality_expression | @swift_if_statement | @swift_infix_expression | @swift_key_path_expression | @swift_key_path_string_expression | @swift_lambda_literal | @swift_line_string_literal | @swift_macro_invocation | @swift_multi_line_string_literal | @swift_multiplicative_expression | @swift_navigation_expression | @swift_nil_coalescing_expression | @swift_open_end_range_expression | @swift_open_start_range_expression | @swift_optional_chain_marker | @swift_playground_literal | @swift_postfix_expression | @swift_prefix_expression | @swift_range_expression | @swift_raw_string_literal | @swift_reserved_word | @swift_selector_expression | @swift_switch_statement | @swift_ternary_expression | @swift_token_bang | @swift_token_bin_literal | @swift_token_boolean_literal | @swift_token_custom_operator | @swift_token_diagnostic | @swift_token_fully_open_range | @swift_token_hex_literal | @swift_token_integer_literal | @swift_token_oct_literal | @swift_token_real_literal | @swift_token_regex_literal | @swift_token_self_expression | @swift_token_simple_identifier | @swift_token_special_literal | @swift_token_super_expression | @swift_try_expression | @swift_tuple_expression | @swift_value_pack_expansion | @swift_value_parameter_pack swift_ternary_expression_def( - unique int id: @swift_ternary_expression + unique int id: @swift_ternary_expression, + int condition: @swift_ternary_expression_condition_type ref, + int if_false: @swift_ternary_expression_if_false_type ref, + int if_true: @swift_ternary_expression_if_true_type ref ); @swift_throws_clause_type_type = @swift_array_type | @swift_dictionary_type | @swift_existential_type | @swift_function_type | @swift_metatype | @swift_opaque_type | @swift_optional_type | @swift_protocol_composition_type | @swift_suppressed_constraint | @swift_tuple_type | @swift_type_pack_expansion | @swift_type_parameter_pack | @swift_user_type @@ -2259,17 +2064,11 @@ swift_throws_clause_def( int type__: @swift_throws_clause_type_type ref ); -@swift_try_expression_expr_type = @swift_additive_expression | @swift_array_literal | @swift_as_expression | @swift_assignment | @swift_await_expression | @swift_bitwise_operation | @swift_call_expression | @swift_check_expression | @swift_comparison_expression | @swift_conjunction_expression | @swift_constructor_expression | @swift_dictionary_literal | @swift_directive | @swift_disjunction_expression | @swift_equality_expression | @swift_if_statement | @swift_infix_expression | @swift_key_path_expression | @swift_key_path_string_expression | @swift_lambda_literal | @swift_line_string_literal | @swift_macro_invocation | @swift_multi_line_string_literal | @swift_multiplicative_expression | @swift_navigation_expression | @swift_nil_coalescing_expression | @swift_open_end_range_expression | @swift_open_start_range_expression | @swift_playground_literal | @swift_postfix_expression | @swift_prefix_expression | @swift_range_expression | @swift_raw_string_literal | @swift_reserved_word | @swift_selector_expression | @swift_switch_statement | @swift_ternary_expression | @swift_token_bang | @swift_token_bin_literal | @swift_token_boolean_literal | @swift_token_custom_operator | @swift_token_diagnostic | @swift_token_fully_open_range | @swift_token_hex_literal | @swift_token_integer_literal | @swift_token_oct_literal | @swift_token_real_literal | @swift_token_regex_literal | @swift_token_self_expression | @swift_token_simple_identifier | @swift_token_special_literal | @swift_token_super_expression | @swift_try_expression | @swift_tuple_expression | @swift_value_pack_expansion | @swift_value_parameter_pack - -#keyset[swift_try_expression, index] -swift_try_expression_expr( - int swift_try_expression: @swift_try_expression ref, - int index: int ref, - unique int expr: @swift_try_expression_expr_type ref -); +@swift_try_expression_expr_type = @swift_additive_expression | @swift_array_literal | @swift_as_expression | @swift_assignment | @swift_await_expression | @swift_bitwise_operation | @swift_call_expression | @swift_check_expression | @swift_comparison_expression | @swift_conjunction_expression | @swift_constructor_expression | @swift_dictionary_literal | @swift_directive | @swift_disjunction_expression | @swift_equality_expression | @swift_if_statement | @swift_infix_expression | @swift_key_path_expression | @swift_key_path_string_expression | @swift_lambda_literal | @swift_line_string_literal | @swift_macro_invocation | @swift_multi_line_string_literal | @swift_multiplicative_expression | @swift_navigation_expression | @swift_nil_coalescing_expression | @swift_open_end_range_expression | @swift_open_start_range_expression | @swift_optional_chain_marker | @swift_playground_literal | @swift_postfix_expression | @swift_prefix_expression | @swift_range_expression | @swift_raw_string_literal | @swift_reserved_word | @swift_selector_expression | @swift_switch_statement | @swift_ternary_expression | @swift_token_bang | @swift_token_bin_literal | @swift_token_boolean_literal | @swift_token_custom_operator | @swift_token_diagnostic | @swift_token_fully_open_range | @swift_token_hex_literal | @swift_token_integer_literal | @swift_token_oct_literal | @swift_token_real_literal | @swift_token_regex_literal | @swift_token_self_expression | @swift_token_simple_identifier | @swift_token_special_literal | @swift_token_super_expression | @swift_try_expression | @swift_tuple_expression | @swift_value_pack_expansion | @swift_value_parameter_pack swift_try_expression_def( unique int id: @swift_try_expression, + int expr: @swift_try_expression_expr_type ref, int child: @swift_token_try_operator ref ); @@ -2280,7 +2079,7 @@ swift_tuple_expression_name( unique int name: @swift_token_simple_identifier ref ); -@swift_tuple_expression_value_type = @swift_additive_expression | @swift_array_literal | @swift_as_expression | @swift_assignment | @swift_await_expression | @swift_bitwise_operation | @swift_call_expression | @swift_check_expression | @swift_comparison_expression | @swift_conjunction_expression | @swift_constructor_expression | @swift_dictionary_literal | @swift_directive | @swift_disjunction_expression | @swift_equality_expression | @swift_if_statement | @swift_infix_expression | @swift_key_path_expression | @swift_key_path_string_expression | @swift_lambda_literal | @swift_line_string_literal | @swift_macro_invocation | @swift_multi_line_string_literal | @swift_multiplicative_expression | @swift_navigation_expression | @swift_nil_coalescing_expression | @swift_open_end_range_expression | @swift_open_start_range_expression | @swift_playground_literal | @swift_postfix_expression | @swift_prefix_expression | @swift_range_expression | @swift_raw_string_literal | @swift_reserved_word | @swift_selector_expression | @swift_switch_statement | @swift_ternary_expression | @swift_token_bang | @swift_token_bin_literal | @swift_token_boolean_literal | @swift_token_custom_operator | @swift_token_diagnostic | @swift_token_fully_open_range | @swift_token_hex_literal | @swift_token_integer_literal | @swift_token_oct_literal | @swift_token_real_literal | @swift_token_regex_literal | @swift_token_self_expression | @swift_token_simple_identifier | @swift_token_special_literal | @swift_token_super_expression | @swift_try_expression | @swift_tuple_expression | @swift_value_pack_expansion | @swift_value_parameter_pack +@swift_tuple_expression_value_type = @swift_additive_expression | @swift_array_literal | @swift_as_expression | @swift_assignment | @swift_await_expression | @swift_bitwise_operation | @swift_call_expression | @swift_check_expression | @swift_comparison_expression | @swift_conjunction_expression | @swift_constructor_expression | @swift_dictionary_literal | @swift_directive | @swift_disjunction_expression | @swift_equality_expression | @swift_if_statement | @swift_infix_expression | @swift_key_path_expression | @swift_key_path_string_expression | @swift_lambda_literal | @swift_line_string_literal | @swift_macro_invocation | @swift_multi_line_string_literal | @swift_multiplicative_expression | @swift_navigation_expression | @swift_nil_coalescing_expression | @swift_open_end_range_expression | @swift_open_start_range_expression | @swift_optional_chain_marker | @swift_playground_literal | @swift_postfix_expression | @swift_prefix_expression | @swift_range_expression | @swift_raw_string_literal | @swift_reserved_word | @swift_selector_expression | @swift_switch_statement | @swift_ternary_expression | @swift_token_bang | @swift_token_bin_literal | @swift_token_boolean_literal | @swift_token_custom_operator | @swift_token_diagnostic | @swift_token_fully_open_range | @swift_token_hex_literal | @swift_token_integer_literal | @swift_token_oct_literal | @swift_token_real_literal | @swift_token_regex_literal | @swift_token_self_expression | @swift_token_simple_identifier | @swift_token_special_literal | @swift_token_super_expression | @swift_try_expression | @swift_tuple_expression | @swift_value_pack_expansion | @swift_value_parameter_pack #keyset[swift_tuple_expression, index] swift_tuple_expression_value( @@ -2528,12 +2327,10 @@ swift_value_argument_reference_specifier( unique int reference_specifier: @swift_value_argument_label ref ); -@swift_value_argument_value_type = @swift_additive_expression | @swift_array_literal | @swift_as_expression | @swift_assignment | @swift_await_expression | @swift_bitwise_operation | @swift_call_expression | @swift_check_expression | @swift_comparison_expression | @swift_conjunction_expression | @swift_constructor_expression | @swift_dictionary_literal | @swift_directive | @swift_disjunction_expression | @swift_equality_expression | @swift_if_statement | @swift_infix_expression | @swift_key_path_expression | @swift_key_path_string_expression | @swift_lambda_literal | @swift_line_string_literal | @swift_macro_invocation | @swift_multi_line_string_literal | @swift_multiplicative_expression | @swift_navigation_expression | @swift_nil_coalescing_expression | @swift_open_end_range_expression | @swift_open_start_range_expression | @swift_playground_literal | @swift_postfix_expression | @swift_prefix_expression | @swift_range_expression | @swift_raw_string_literal | @swift_reserved_word | @swift_selector_expression | @swift_switch_statement | @swift_ternary_expression | @swift_token_bang | @swift_token_bin_literal | @swift_token_boolean_literal | @swift_token_custom_operator | @swift_token_diagnostic | @swift_token_fully_open_range | @swift_token_hex_literal | @swift_token_integer_literal | @swift_token_oct_literal | @swift_token_real_literal | @swift_token_regex_literal | @swift_token_self_expression | @swift_token_simple_identifier | @swift_token_special_literal | @swift_token_super_expression | @swift_try_expression | @swift_tuple_expression | @swift_value_pack_expansion | @swift_value_parameter_pack +@swift_value_argument_value_type = @swift_additive_expression | @swift_array_literal | @swift_as_expression | @swift_assignment | @swift_await_expression | @swift_bitwise_operation | @swift_call_expression | @swift_check_expression | @swift_comparison_expression | @swift_conjunction_expression | @swift_constructor_expression | @swift_dictionary_literal | @swift_directive | @swift_disjunction_expression | @swift_equality_expression | @swift_if_statement | @swift_infix_expression | @swift_key_path_expression | @swift_key_path_string_expression | @swift_lambda_literal | @swift_line_string_literal | @swift_macro_invocation | @swift_multi_line_string_literal | @swift_multiplicative_expression | @swift_navigation_expression | @swift_nil_coalescing_expression | @swift_open_end_range_expression | @swift_open_start_range_expression | @swift_optional_chain_marker | @swift_playground_literal | @swift_postfix_expression | @swift_prefix_expression | @swift_range_expression | @swift_raw_string_literal | @swift_reserved_word | @swift_selector_expression | @swift_switch_statement | @swift_ternary_expression | @swift_token_bang | @swift_token_bin_literal | @swift_token_boolean_literal | @swift_token_custom_operator | @swift_token_diagnostic | @swift_token_fully_open_range | @swift_token_hex_literal | @swift_token_integer_literal | @swift_token_oct_literal | @swift_token_real_literal | @swift_token_regex_literal | @swift_token_self_expression | @swift_token_simple_identifier | @swift_token_special_literal | @swift_token_super_expression | @swift_try_expression | @swift_tuple_expression | @swift_value_pack_expansion | @swift_value_parameter_pack -#keyset[swift_value_argument, index] swift_value_argument_value( - int swift_value_argument: @swift_value_argument ref, - int index: int ref, + unique int swift_value_argument: @swift_value_argument ref, unique int value: @swift_value_argument_value_type ref ); @@ -2573,7 +2370,7 @@ swift_value_binding_pattern_def( int mutability: int ref ); -@swift_value_pack_expansion_child_type = @swift_additive_expression | @swift_array_literal | @swift_as_expression | @swift_assignment | @swift_await_expression | @swift_bitwise_operation | @swift_call_expression | @swift_check_expression | @swift_comparison_expression | @swift_conjunction_expression | @swift_constructor_expression | @swift_dictionary_literal | @swift_directive | @swift_disjunction_expression | @swift_equality_expression | @swift_if_statement | @swift_infix_expression | @swift_key_path_expression | @swift_key_path_string_expression | @swift_lambda_literal | @swift_line_string_literal | @swift_macro_invocation | @swift_multi_line_string_literal | @swift_multiplicative_expression | @swift_navigation_expression | @swift_nil_coalescing_expression | @swift_open_end_range_expression | @swift_open_start_range_expression | @swift_playground_literal | @swift_postfix_expression | @swift_prefix_expression | @swift_range_expression | @swift_raw_string_literal | @swift_selector_expression | @swift_switch_statement | @swift_ternary_expression | @swift_token_bang | @swift_token_bin_literal | @swift_token_boolean_literal | @swift_token_custom_operator | @swift_token_diagnostic | @swift_token_fully_open_range | @swift_token_hex_literal | @swift_token_integer_literal | @swift_token_oct_literal | @swift_token_real_literal | @swift_token_regex_literal | @swift_token_self_expression | @swift_token_simple_identifier | @swift_token_special_literal | @swift_token_super_expression | @swift_try_expression | @swift_tuple_expression | @swift_value_pack_expansion | @swift_value_parameter_pack +@swift_value_pack_expansion_child_type = @swift_additive_expression | @swift_array_literal | @swift_as_expression | @swift_assignment | @swift_await_expression | @swift_bitwise_operation | @swift_call_expression | @swift_check_expression | @swift_comparison_expression | @swift_conjunction_expression | @swift_constructor_expression | @swift_dictionary_literal | @swift_directive | @swift_disjunction_expression | @swift_equality_expression | @swift_if_statement | @swift_infix_expression | @swift_key_path_expression | @swift_key_path_string_expression | @swift_lambda_literal | @swift_line_string_literal | @swift_macro_invocation | @swift_multi_line_string_literal | @swift_multiplicative_expression | @swift_navigation_expression | @swift_nil_coalescing_expression | @swift_open_end_range_expression | @swift_open_start_range_expression | @swift_optional_chain_marker | @swift_playground_literal | @swift_postfix_expression | @swift_prefix_expression | @swift_range_expression | @swift_raw_string_literal | @swift_selector_expression | @swift_switch_statement | @swift_ternary_expression | @swift_token_bang | @swift_token_bin_literal | @swift_token_boolean_literal | @swift_token_custom_operator | @swift_token_diagnostic | @swift_token_fully_open_range | @swift_token_hex_literal | @swift_token_integer_literal | @swift_token_oct_literal | @swift_token_real_literal | @swift_token_regex_literal | @swift_token_self_expression | @swift_token_simple_identifier | @swift_token_special_literal | @swift_token_super_expression | @swift_try_expression | @swift_tuple_expression | @swift_value_pack_expansion | @swift_value_parameter_pack swift_value_pack_expansion_child( unique int swift_value_pack_expansion: @swift_value_pack_expansion ref, @@ -2584,7 +2381,7 @@ swift_value_pack_expansion_def( unique int id: @swift_value_pack_expansion ); -@swift_value_parameter_pack_child_type = @swift_additive_expression | @swift_array_literal | @swift_as_expression | @swift_assignment | @swift_await_expression | @swift_bitwise_operation | @swift_call_expression | @swift_check_expression | @swift_comparison_expression | @swift_conjunction_expression | @swift_constructor_expression | @swift_dictionary_literal | @swift_directive | @swift_disjunction_expression | @swift_equality_expression | @swift_if_statement | @swift_infix_expression | @swift_key_path_expression | @swift_key_path_string_expression | @swift_lambda_literal | @swift_line_string_literal | @swift_macro_invocation | @swift_multi_line_string_literal | @swift_multiplicative_expression | @swift_navigation_expression | @swift_nil_coalescing_expression | @swift_open_end_range_expression | @swift_open_start_range_expression | @swift_playground_literal | @swift_postfix_expression | @swift_prefix_expression | @swift_range_expression | @swift_raw_string_literal | @swift_selector_expression | @swift_switch_statement | @swift_ternary_expression | @swift_token_bang | @swift_token_bin_literal | @swift_token_boolean_literal | @swift_token_custom_operator | @swift_token_diagnostic | @swift_token_fully_open_range | @swift_token_hex_literal | @swift_token_integer_literal | @swift_token_oct_literal | @swift_token_real_literal | @swift_token_regex_literal | @swift_token_self_expression | @swift_token_simple_identifier | @swift_token_special_literal | @swift_token_super_expression | @swift_try_expression | @swift_tuple_expression | @swift_value_pack_expansion | @swift_value_parameter_pack +@swift_value_parameter_pack_child_type = @swift_additive_expression | @swift_array_literal | @swift_as_expression | @swift_assignment | @swift_await_expression | @swift_bitwise_operation | @swift_call_expression | @swift_check_expression | @swift_comparison_expression | @swift_conjunction_expression | @swift_constructor_expression | @swift_dictionary_literal | @swift_directive | @swift_disjunction_expression | @swift_equality_expression | @swift_if_statement | @swift_infix_expression | @swift_key_path_expression | @swift_key_path_string_expression | @swift_lambda_literal | @swift_line_string_literal | @swift_macro_invocation | @swift_multi_line_string_literal | @swift_multiplicative_expression | @swift_navigation_expression | @swift_nil_coalescing_expression | @swift_open_end_range_expression | @swift_open_start_range_expression | @swift_optional_chain_marker | @swift_playground_literal | @swift_postfix_expression | @swift_prefix_expression | @swift_range_expression | @swift_raw_string_literal | @swift_selector_expression | @swift_switch_statement | @swift_ternary_expression | @swift_token_bang | @swift_token_bin_literal | @swift_token_boolean_literal | @swift_token_custom_operator | @swift_token_diagnostic | @swift_token_fully_open_range | @swift_token_hex_literal | @swift_token_integer_literal | @swift_token_oct_literal | @swift_token_real_literal | @swift_token_regex_literal | @swift_token_self_expression | @swift_token_simple_identifier | @swift_token_special_literal | @swift_token_super_expression | @swift_try_expression | @swift_tuple_expression | @swift_value_pack_expansion | @swift_value_parameter_pack swift_value_parameter_pack_child( unique int swift_value_parameter_pack: @swift_value_parameter_pack ref, @@ -2595,7 +2392,7 @@ swift_value_parameter_pack_def( unique int id: @swift_value_parameter_pack ); -@swift_where_clause_child_type = @swift_additive_expression | @swift_array_literal | @swift_as_expression | @swift_assignment | @swift_await_expression | @swift_bitwise_operation | @swift_call_expression | @swift_check_expression | @swift_comparison_expression | @swift_conjunction_expression | @swift_constructor_expression | @swift_dictionary_literal | @swift_directive | @swift_disjunction_expression | @swift_equality_expression | @swift_if_statement | @swift_infix_expression | @swift_key_path_expression | @swift_key_path_string_expression | @swift_lambda_literal | @swift_line_string_literal | @swift_macro_invocation | @swift_multi_line_string_literal | @swift_multiplicative_expression | @swift_navigation_expression | @swift_nil_coalescing_expression | @swift_open_end_range_expression | @swift_open_start_range_expression | @swift_playground_literal | @swift_postfix_expression | @swift_prefix_expression | @swift_range_expression | @swift_raw_string_literal | @swift_selector_expression | @swift_switch_statement | @swift_ternary_expression | @swift_token_bang | @swift_token_bin_literal | @swift_token_boolean_literal | @swift_token_custom_operator | @swift_token_diagnostic | @swift_token_fully_open_range | @swift_token_hex_literal | @swift_token_integer_literal | @swift_token_oct_literal | @swift_token_real_literal | @swift_token_regex_literal | @swift_token_self_expression | @swift_token_simple_identifier | @swift_token_special_literal | @swift_token_super_expression | @swift_token_where_keyword | @swift_try_expression | @swift_tuple_expression | @swift_value_pack_expansion | @swift_value_parameter_pack +@swift_where_clause_child_type = @swift_additive_expression | @swift_array_literal | @swift_as_expression | @swift_assignment | @swift_await_expression | @swift_bitwise_operation | @swift_call_expression | @swift_check_expression | @swift_comparison_expression | @swift_conjunction_expression | @swift_constructor_expression | @swift_dictionary_literal | @swift_directive | @swift_disjunction_expression | @swift_equality_expression | @swift_if_statement | @swift_infix_expression | @swift_key_path_expression | @swift_key_path_string_expression | @swift_lambda_literal | @swift_line_string_literal | @swift_macro_invocation | @swift_multi_line_string_literal | @swift_multiplicative_expression | @swift_navigation_expression | @swift_nil_coalescing_expression | @swift_open_end_range_expression | @swift_open_start_range_expression | @swift_optional_chain_marker | @swift_playground_literal | @swift_postfix_expression | @swift_prefix_expression | @swift_range_expression | @swift_raw_string_literal | @swift_selector_expression | @swift_switch_statement | @swift_ternary_expression | @swift_token_bang | @swift_token_bin_literal | @swift_token_boolean_literal | @swift_token_custom_operator | @swift_token_diagnostic | @swift_token_fully_open_range | @swift_token_hex_literal | @swift_token_integer_literal | @swift_token_oct_literal | @swift_token_real_literal | @swift_token_regex_literal | @swift_token_self_expression | @swift_token_simple_identifier | @swift_token_special_literal | @swift_token_super_expression | @swift_token_where_keyword | @swift_try_expression | @swift_tuple_expression | @swift_value_pack_expansion | @swift_value_parameter_pack #keyset[swift_where_clause, index] swift_where_clause_child( @@ -2615,7 +2412,7 @@ swift_while_statement_bound_identifier( unique int bound_identifier: @swift_token_simple_identifier ref ); -@swift_while_statement_condition_type = @swift_additive_expression | @swift_array_literal | @swift_array_type | @swift_as_expression | @swift_assignment | @swift_availability_condition | @swift_await_expression | @swift_bitwise_operation | @swift_call_expression | @swift_check_expression | @swift_comparison_expression | @swift_conjunction_expression | @swift_constructor_expression | @swift_dictionary_literal | @swift_dictionary_type | @swift_directive | @swift_disjunction_expression | @swift_equality_expression | @swift_existential_type | @swift_function_type | @swift_if_statement | @swift_infix_expression | @swift_key_path_expression | @swift_key_path_string_expression | @swift_lambda_literal | @swift_line_string_literal | @swift_macro_invocation | @swift_metatype | @swift_multi_line_string_literal | @swift_multiplicative_expression | @swift_navigation_expression | @swift_nil_coalescing_expression | @swift_opaque_type | @swift_open_end_range_expression | @swift_open_start_range_expression | @swift_optional_type | @swift_pattern | @swift_playground_literal | @swift_postfix_expression | @swift_prefix_expression | @swift_protocol_composition_type | @swift_range_expression | @swift_raw_string_literal | @swift_reserved_word | @swift_selector_expression | @swift_suppressed_constraint | @swift_switch_statement | @swift_ternary_expression | @swift_token_bang | @swift_token_bin_literal | @swift_token_boolean_literal | @swift_token_custom_operator | @swift_token_diagnostic | @swift_token_fully_open_range | @swift_token_hex_literal | @swift_token_integer_literal | @swift_token_oct_literal | @swift_token_real_literal | @swift_token_regex_literal | @swift_token_self_expression | @swift_token_simple_identifier | @swift_token_special_literal | @swift_token_super_expression | @swift_token_wildcard_pattern | @swift_try_expression | @swift_tuple_expression | @swift_tuple_type | @swift_type_annotation | @swift_type_modifiers | @swift_type_pack_expansion | @swift_type_parameter_pack | @swift_user_type | @swift_value_binding_pattern | @swift_value_pack_expansion | @swift_value_parameter_pack | @swift_where_clause +@swift_while_statement_condition_type = @swift_additive_expression | @swift_array_literal | @swift_array_type | @swift_as_expression | @swift_assignment | @swift_availability_condition | @swift_await_expression | @swift_bitwise_operation | @swift_call_expression | @swift_check_expression | @swift_comparison_expression | @swift_conjunction_expression | @swift_constructor_expression | @swift_dictionary_literal | @swift_dictionary_type | @swift_directive | @swift_disjunction_expression | @swift_equality_expression | @swift_existential_type | @swift_function_type | @swift_if_statement | @swift_infix_expression | @swift_key_path_expression | @swift_key_path_string_expression | @swift_lambda_literal | @swift_line_string_literal | @swift_macro_invocation | @swift_metatype | @swift_multi_line_string_literal | @swift_multiplicative_expression | @swift_navigation_expression | @swift_nil_coalescing_expression | @swift_opaque_type | @swift_open_end_range_expression | @swift_open_start_range_expression | @swift_optional_chain_marker | @swift_optional_type | @swift_pattern | @swift_playground_literal | @swift_postfix_expression | @swift_prefix_expression | @swift_protocol_composition_type | @swift_range_expression | @swift_raw_string_literal | @swift_reserved_word | @swift_selector_expression | @swift_suppressed_constraint | @swift_switch_statement | @swift_ternary_expression | @swift_token_bang | @swift_token_bin_literal | @swift_token_boolean_literal | @swift_token_custom_operator | @swift_token_diagnostic | @swift_token_fully_open_range | @swift_token_hex_literal | @swift_token_integer_literal | @swift_token_oct_literal | @swift_token_real_literal | @swift_token_regex_literal | @swift_token_self_expression | @swift_token_simple_identifier | @swift_token_special_literal | @swift_token_super_expression | @swift_token_wildcard_pattern | @swift_try_expression | @swift_tuple_expression | @swift_tuple_type | @swift_type_annotation | @swift_type_modifiers | @swift_type_pack_expansion | @swift_type_parameter_pack | @swift_user_type | @swift_value_binding_pattern | @swift_value_pack_expansion | @swift_value_parameter_pack | @swift_where_clause #keyset[swift_while_statement, index] swift_while_statement_condition( @@ -2725,7 +2522,7 @@ case @swift_token.kind of ; -@swift_ast_node = @swift_additive_expression | @swift_array_literal | @swift_array_type | @swift_as_expression | @swift_assignment | @swift_associatedtype_declaration | @swift_attribute | @swift_availability_condition | @swift_await_expression | @swift_bitwise_operation | @swift_call_expression | @swift_call_suffix | @swift_capture_list | @swift_capture_list_item | @swift_catch_block | @swift_check_expression | @swift_class_body | @swift_class_declaration | @swift_comparison_expression | @swift_computed_getter | @swift_computed_modify | @swift_computed_property | @swift_computed_setter | @swift_conjunction_expression | @swift_constructor_expression | @swift_constructor_suffix | @swift_control_transfer_statement | @swift_deinit_declaration | @swift_deprecated_operator_declaration_body | @swift_dictionary_literal | @swift_dictionary_type | @swift_didset_clause | @swift_directive | @swift_directly_assignable_expression | @swift_disjunction_expression | @swift_do_statement | @swift_enum_class_body | @swift_enum_entry | @swift_enum_type_parameters | @swift_equality_constraint | @swift_equality_expression | @swift_existential_type | @swift_external_macro_definition | @swift_for_statement | @swift_function_body | @swift_function_declaration | @swift_function_type | @swift_getter_specifier | @swift_guard_statement | @swift_identifier | @swift_if_statement | @swift_import_declaration | @swift_infix_expression | @swift_inheritance_constraint | @swift_inheritance_specifier | @swift_init_declaration | @swift_interpolated_expression | @swift_key_path_expression | @swift_key_path_string_expression | @swift_lambda_function_type | @swift_lambda_function_type_parameters | @swift_lambda_literal | @swift_lambda_parameter | @swift_line_string_literal | @swift_macro_declaration | @swift_macro_definition | @swift_macro_invocation | @swift_metatype | @swift_modifiers | @swift_modify_specifier | @swift_multi_line_string_literal | @swift_multiplicative_expression | @swift_navigation_expression | @swift_navigation_suffix | @swift_nil_coalescing_expression | @swift_opaque_type | @swift_open_end_range_expression | @swift_open_start_range_expression | @swift_operator_declaration | @swift_optional_type | @swift_parameter | @swift_parameter_modifiers | @swift_pattern | @swift_playground_literal | @swift_postfix_expression | @swift_precedence_group_attribute | @swift_precedence_group_attributes | @swift_precedence_group_declaration | @swift_prefix_expression | @swift_property_declaration | @swift_protocol_body | @swift_protocol_composition_type | @swift_protocol_declaration | @swift_protocol_function_declaration | @swift_protocol_property_declaration | @swift_protocol_property_requirements | @swift_range_expression | @swift_raw_str_interpolation | @swift_raw_string_literal | @swift_repeat_while_statement | @swift_selector_expression | @swift_setter_specifier | @swift_source_file | @swift_statements | @swift_subscript_declaration | @swift_suppressed_constraint | @swift_switch_entry | @swift_switch_pattern | @swift_switch_statement | @swift_ternary_expression | @swift_throws_clause | @swift_token | @swift_try_expression | @swift_tuple_expression | @swift_tuple_type | @swift_tuple_type_item | @swift_type_annotation | @swift_type_arguments | @swift_type_constraint | @swift_type_constraints | @swift_type_modifiers | @swift_type_pack_expansion | @swift_type_parameter | @swift_type_parameter_modifiers | @swift_type_parameter_pack | @swift_type_parameters | @swift_typealias_declaration | @swift_user_type | @swift_value_argument | @swift_value_argument_label | @swift_value_arguments | @swift_value_binding_pattern | @swift_value_pack_expansion | @swift_value_parameter_pack | @swift_where_clause | @swift_while_statement | @swift_willset_clause | @swift_willset_didset_block +@swift_ast_node = @swift_additive_expression | @swift_array_literal | @swift_array_type | @swift_as_expression | @swift_assignment | @swift_associatedtype_declaration | @swift_attribute | @swift_availability_condition | @swift_await_expression | @swift_bitwise_operation | @swift_call_expression | @swift_call_suffix | @swift_capture_list | @swift_capture_list_item | @swift_catch_block | @swift_check_expression | @swift_class_body | @swift_class_declaration | @swift_comparison_expression | @swift_computed_getter | @swift_computed_modify | @swift_computed_property | @swift_computed_setter | @swift_conjunction_expression | @swift_constructor_expression | @swift_constructor_suffix | @swift_control_transfer_statement | @swift_deinit_declaration | @swift_deprecated_operator_declaration_body | @swift_dictionary_literal | @swift_dictionary_type | @swift_didset_clause | @swift_directive | @swift_directly_assignable_expression | @swift_disjunction_expression | @swift_do_statement | @swift_enum_class_body | @swift_enum_entry | @swift_enum_type_parameters | @swift_equality_constraint | @swift_equality_expression | @swift_existential_type | @swift_external_macro_definition | @swift_for_statement | @swift_function_body | @swift_function_declaration | @swift_function_type | @swift_getter_specifier | @swift_guard_statement | @swift_identifier | @swift_if_statement | @swift_import_declaration | @swift_infix_expression | @swift_inheritance_constraint | @swift_inheritance_specifier | @swift_init_declaration | @swift_interpolated_expression | @swift_key_path_expression | @swift_key_path_string_expression | @swift_lambda_function_type | @swift_lambda_function_type_parameters | @swift_lambda_literal | @swift_lambda_parameter | @swift_line_string_literal | @swift_macro_declaration | @swift_macro_definition | @swift_macro_invocation | @swift_metatype | @swift_modifiers | @swift_modify_specifier | @swift_multi_line_string_literal | @swift_multiplicative_expression | @swift_navigation_expression | @swift_navigation_suffix | @swift_nil_coalescing_expression | @swift_opaque_type | @swift_open_end_range_expression | @swift_open_start_range_expression | @swift_operator_declaration | @swift_optional_chain_marker | @swift_optional_type | @swift_parameter | @swift_parameter_modifiers | @swift_pattern | @swift_playground_literal | @swift_postfix_expression | @swift_precedence_group_attribute | @swift_precedence_group_attributes | @swift_precedence_group_declaration | @swift_prefix_expression | @swift_property_declaration | @swift_protocol_body | @swift_protocol_composition_type | @swift_protocol_declaration | @swift_protocol_function_declaration | @swift_protocol_property_declaration | @swift_protocol_property_requirements | @swift_range_expression | @swift_raw_str_interpolation | @swift_raw_string_literal | @swift_repeat_while_statement | @swift_selector_expression | @swift_setter_specifier | @swift_source_file | @swift_statements | @swift_subscript_declaration | @swift_suppressed_constraint | @swift_switch_entry | @swift_switch_pattern | @swift_switch_statement | @swift_ternary_expression | @swift_throws_clause | @swift_token | @swift_try_expression | @swift_tuple_expression | @swift_tuple_type | @swift_tuple_type_item | @swift_type_annotation | @swift_type_arguments | @swift_type_constraint | @swift_type_constraints | @swift_type_modifiers | @swift_type_pack_expansion | @swift_type_parameter | @swift_type_parameter_modifiers | @swift_type_parameter_pack | @swift_type_parameters | @swift_typealias_declaration | @swift_user_type | @swift_value_argument | @swift_value_argument_label | @swift_value_arguments | @swift_value_binding_pattern | @swift_value_pack_expansion | @swift_value_parameter_pack | @swift_where_clause | @swift_while_statement | @swift_willset_clause | @swift_willset_didset_block swift_ast_node_location( unique int node: @swift_ast_node ref, From 7854a534fdf66dda813a1b02fe5f1062dfcffe45 Mon Sep 17 00:00:00 2001 From: Taus Date: Fri, 8 May 2026 14:51:05 +0000 Subject: [PATCH 239/260] unified: stop operators bleeding through everywhere We make _referenceable_operator a named node. This prevents it from bleeding through to the _expression definition. It likely also makes the output easier to deal with, as bare operators used as arguments now have a named node wrapping them in the AST. Also removes a duplicated inclusion of _comparison_operator that served no purpose. --- .../extractor/tree-sitter-swift/grammar.js | 11 +- .../tree-sitter-swift/node-types.yml | 152 +++++++++--------- 2 files changed, 82 insertions(+), 81 deletions(-) diff --git a/unified/extractor/tree-sitter-swift/grammar.js b/unified/extractor/tree-sitter-swift/grammar.js index a72253292e2d..5a2d84db3928 100644 --- a/unified/extractor/tree-sitter-swift/grammar.js +++ b/unified/extractor/tree-sitter-swift/grammar.js @@ -105,7 +105,7 @@ module.exports = grammar({ // `+(...)` is ambigously either "call the function produced by a reference to the operator `+`" or "use the unary // operator `+` on the result of the parenthetical expression." [$._additive_operator, $._prefix_unary_operator], - [$._referenceable_operator, $._prefix_unary_operator], + [$.referenceable_operator, $._prefix_unary_operator], // `{ [self, b, c] ...` could be a capture list or an array literal depending on what else happens. [$.capture_list_item, $._expression], [$.capture_list_item, $._expression, $._simple_user_type], @@ -906,7 +906,7 @@ module.exports = grammar({ $.super_expression, $.try_expression, $.await_expression, - $._referenceable_operator, + $.referenceable_operator, $.key_path_expression, $.key_path_string_expression, prec.right( @@ -1625,16 +1625,15 @@ module.exports = grammar({ _non_constructor_function_decl: ($) => seq( "func", - field("name", choice($.simple_identifier, $._referenceable_operator)) + field("name", choice($.simple_identifier, $.referenceable_operator)) ), - _referenceable_operator: ($) => + referenceable_operator: ($) => choice( $.custom_operator, $._comparison_operator, $._additive_operator, $._multiplicative_operator, $._equality_operator, - $._comparison_operator, $._assignment_and_operator, "++", "--", @@ -1806,7 +1805,7 @@ module.exports = grammar({ seq( choice("prefix", "infix", "postfix"), "operator", - $._referenceable_operator, + $.referenceable_operator, optional(seq(":", $.simple_identifier)), optional($.deprecated_operator_declaration_body) ), diff --git a/unified/extractor/tree-sitter-swift/node-types.yml b/unified/extractor/tree-sitter-swift/node-types.yml index 8d7f99ee205b..d03d57036df4 100644 --- a/unified/extractor/tree-sitter-swift/node-types.yml +++ b/unified/extractor/tree-sitter-swift/node-types.yml @@ -1,23 +1,23 @@ named: _expression: additive_expression: - lhs: ["!=", "!==", "%", "%=", "&", "*", "*=", "+", "++", "+=", "-", "--", "-=", "/", "/=", "<", "<<", "<=", "=", "==", "===", ">", ">=", ">>", "^", additive_expression, array_literal, as_expression, assignment, await_expression, bang, bin_literal, bitwise_operation, boolean_literal, call_expression, check_expression, comparison_expression, conjunction_expression, constructor_expression, custom_operator, diagnostic, dictionary_literal, directive, disjunction_expression, equality_expression, fully_open_range, hex_literal, if_statement, infix_expression, integer_literal, key_path_expression, key_path_string_expression, lambda_literal, line_string_literal, macro_invocation, multi_line_string_literal, multiplicative_expression, navigation_expression, "nil", nil_coalescing_expression, oct_literal, open_end_range_expression, open_start_range_expression, optional_chain_marker, playground_literal, postfix_expression, prefix_expression, range_expression, raw_string_literal, real_literal, regex_literal, selector_expression, self_expression, simple_identifier, special_literal, super_expression, switch_statement, ternary_expression, try_expression, tuple_expression, value_pack_expansion, value_parameter_pack, "|", "~"] + lhs: [additive_expression, array_literal, as_expression, assignment, await_expression, bin_literal, bitwise_operation, boolean_literal, call_expression, check_expression, comparison_expression, conjunction_expression, constructor_expression, diagnostic, dictionary_literal, directive, disjunction_expression, equality_expression, fully_open_range, hex_literal, if_statement, infix_expression, integer_literal, key_path_expression, key_path_string_expression, lambda_literal, line_string_literal, macro_invocation, multi_line_string_literal, multiplicative_expression, navigation_expression, "nil", nil_coalescing_expression, oct_literal, open_end_range_expression, open_start_range_expression, optional_chain_marker, playground_literal, postfix_expression, prefix_expression, range_expression, raw_string_literal, real_literal, referenceable_operator, regex_literal, selector_expression, self_expression, simple_identifier, special_literal, super_expression, switch_statement, ternary_expression, try_expression, tuple_expression, value_pack_expansion, value_parameter_pack] op: ["+", "-"] - rhs: ["!=", "!==", "%", "%=", "&", "*", "*=", "+", "++", "+=", "-", "--", "-=", "/", "/=", "<", "<<", "<=", "=", "==", "===", ">", ">=", ">>", "^", additive_expression, array_literal, as_expression, assignment, await_expression, bang, bin_literal, bitwise_operation, boolean_literal, call_expression, check_expression, comparison_expression, conjunction_expression, constructor_expression, custom_operator, diagnostic, dictionary_literal, directive, disjunction_expression, equality_expression, fully_open_range, hex_literal, if_statement, infix_expression, integer_literal, key_path_expression, key_path_string_expression, lambda_literal, line_string_literal, macro_invocation, multi_line_string_literal, multiplicative_expression, navigation_expression, "nil", nil_coalescing_expression, oct_literal, open_end_range_expression, open_start_range_expression, optional_chain_marker, playground_literal, postfix_expression, prefix_expression, range_expression, raw_string_literal, real_literal, regex_literal, selector_expression, self_expression, simple_identifier, special_literal, super_expression, switch_statement, ternary_expression, try_expression, tuple_expression, value_pack_expansion, value_parameter_pack, "|", "~"] + rhs: [additive_expression, array_literal, as_expression, assignment, await_expression, bin_literal, bitwise_operation, boolean_literal, call_expression, check_expression, comparison_expression, conjunction_expression, constructor_expression, diagnostic, dictionary_literal, directive, disjunction_expression, equality_expression, fully_open_range, hex_literal, if_statement, infix_expression, integer_literal, key_path_expression, key_path_string_expression, lambda_literal, line_string_literal, macro_invocation, multi_line_string_literal, multiplicative_expression, navigation_expression, "nil", nil_coalescing_expression, oct_literal, open_end_range_expression, open_start_range_expression, optional_chain_marker, playground_literal, postfix_expression, prefix_expression, range_expression, raw_string_literal, real_literal, referenceable_operator, regex_literal, selector_expression, self_expression, simple_identifier, special_literal, super_expression, switch_statement, ternary_expression, try_expression, tuple_expression, value_pack_expansion, value_parameter_pack] array_literal: - element*: ["!=", "!==", "%", "%=", "&", "*", "*=", "+", "++", "+=", "-", "--", "-=", "/", "/=", "<", "<<", "<=", "=", "==", "===", ">", ">=", ">>", "^", additive_expression, array_literal, as_expression, assignment, await_expression, bang, bin_literal, bitwise_operation, boolean_literal, call_expression, check_expression, comparison_expression, conjunction_expression, constructor_expression, custom_operator, diagnostic, dictionary_literal, directive, disjunction_expression, equality_expression, fully_open_range, hex_literal, if_statement, infix_expression, integer_literal, key_path_expression, key_path_string_expression, lambda_literal, line_string_literal, macro_invocation, multi_line_string_literal, multiplicative_expression, navigation_expression, "nil", nil_coalescing_expression, oct_literal, open_end_range_expression, open_start_range_expression, optional_chain_marker, playground_literal, postfix_expression, prefix_expression, range_expression, raw_string_literal, real_literal, regex_literal, selector_expression, self_expression, simple_identifier, special_literal, super_expression, switch_statement, ternary_expression, try_expression, tuple_expression, value_pack_expansion, value_parameter_pack, "|", "~"] + element*: [additive_expression, array_literal, as_expression, assignment, await_expression, bin_literal, bitwise_operation, boolean_literal, call_expression, check_expression, comparison_expression, conjunction_expression, constructor_expression, diagnostic, dictionary_literal, directive, disjunction_expression, equality_expression, fully_open_range, hex_literal, if_statement, infix_expression, integer_literal, key_path_expression, key_path_string_expression, lambda_literal, line_string_literal, macro_invocation, multi_line_string_literal, multiplicative_expression, navigation_expression, "nil", nil_coalescing_expression, oct_literal, open_end_range_expression, open_start_range_expression, optional_chain_marker, playground_literal, postfix_expression, prefix_expression, range_expression, raw_string_literal, real_literal, referenceable_operator, regex_literal, selector_expression, self_expression, simple_identifier, special_literal, super_expression, switch_statement, ternary_expression, try_expression, tuple_expression, value_pack_expansion, value_parameter_pack] array_type: element+: [array_type, dictionary_type, existential_type, function_type, metatype, opaque_type, optional_type, protocol_composition_type, suppressed_constraint, tuple_type, type_modifiers, type_pack_expansion, type_parameter_pack, user_type] name: [array_type, dictionary_type, existential_type, function_type, metatype, opaque_type, optional_type, protocol_composition_type, suppressed_constraint, tuple_type, type_pack_expansion, type_parameter_pack, user_type] as_expression: $children: as_operator - expr: ["!=", "!==", "%", "%=", "&", "*", "*=", "+", "++", "+=", "-", "--", "-=", "/", "/=", "<", "<<", "<=", "=", "==", "===", ">", ">=", ">>", "^", additive_expression, array_literal, as_expression, assignment, await_expression, bang, bin_literal, bitwise_operation, boolean_literal, call_expression, check_expression, comparison_expression, conjunction_expression, constructor_expression, custom_operator, diagnostic, dictionary_literal, directive, disjunction_expression, equality_expression, fully_open_range, hex_literal, if_statement, infix_expression, integer_literal, key_path_expression, key_path_string_expression, lambda_literal, line_string_literal, macro_invocation, multi_line_string_literal, multiplicative_expression, navigation_expression, "nil", nil_coalescing_expression, oct_literal, open_end_range_expression, open_start_range_expression, optional_chain_marker, playground_literal, postfix_expression, prefix_expression, range_expression, raw_string_literal, real_literal, regex_literal, selector_expression, self_expression, simple_identifier, special_literal, super_expression, switch_statement, ternary_expression, try_expression, tuple_expression, value_pack_expansion, value_parameter_pack, "|", "~"] + expr: [additive_expression, array_literal, as_expression, assignment, await_expression, bin_literal, bitwise_operation, boolean_literal, call_expression, check_expression, comparison_expression, conjunction_expression, constructor_expression, diagnostic, dictionary_literal, directive, disjunction_expression, equality_expression, fully_open_range, hex_literal, if_statement, infix_expression, integer_literal, key_path_expression, key_path_string_expression, lambda_literal, line_string_literal, macro_invocation, multi_line_string_literal, multiplicative_expression, navigation_expression, "nil", nil_coalescing_expression, oct_literal, open_end_range_expression, open_start_range_expression, optional_chain_marker, playground_literal, postfix_expression, prefix_expression, range_expression, raw_string_literal, real_literal, referenceable_operator, regex_literal, selector_expression, self_expression, simple_identifier, special_literal, super_expression, switch_statement, ternary_expression, try_expression, tuple_expression, value_pack_expansion, value_parameter_pack] name: [array_type, dictionary_type, existential_type, function_type, metatype, opaque_type, optional_type, protocol_composition_type, suppressed_constraint, tuple_type, type_pack_expansion, type_parameter_pack, user_type] type+: [array_type, dictionary_type, existential_type, function_type, metatype, opaque_type, optional_type, protocol_composition_type, suppressed_constraint, tuple_type, type_modifiers, type_pack_expansion, type_parameter_pack, user_type] as_operator: assignment: operator: ["%=", "*=", "+=", "-=", "/=", "="] - result: ["!=", "!==", "%", "%=", "&", "*", "*=", "+", "++", "+=", "-", "--", "-=", "/", "/=", "<", "<<", "<=", "=", "==", "===", ">", ">=", ">>", "^", additive_expression, array_literal, as_expression, assignment, await_expression, bang, bin_literal, bitwise_operation, boolean_literal, call_expression, check_expression, comparison_expression, conjunction_expression, constructor_expression, custom_operator, diagnostic, dictionary_literal, directive, disjunction_expression, equality_expression, fully_open_range, hex_literal, if_statement, infix_expression, integer_literal, key_path_expression, key_path_string_expression, lambda_literal, line_string_literal, macro_invocation, multi_line_string_literal, multiplicative_expression, navigation_expression, "nil", nil_coalescing_expression, oct_literal, open_end_range_expression, open_start_range_expression, optional_chain_marker, playground_literal, postfix_expression, prefix_expression, range_expression, raw_string_literal, real_literal, regex_literal, selector_expression, self_expression, simple_identifier, special_literal, super_expression, switch_statement, ternary_expression, try_expression, tuple_expression, value_pack_expansion, value_parameter_pack, "|", "~"] + result: [additive_expression, array_literal, as_expression, assignment, await_expression, bin_literal, bitwise_operation, boolean_literal, call_expression, check_expression, comparison_expression, conjunction_expression, constructor_expression, diagnostic, dictionary_literal, directive, disjunction_expression, equality_expression, fully_open_range, hex_literal, if_statement, infix_expression, integer_literal, key_path_expression, key_path_string_expression, lambda_literal, line_string_literal, macro_invocation, multi_line_string_literal, multiplicative_expression, navigation_expression, "nil", nil_coalescing_expression, oct_literal, open_end_range_expression, open_start_range_expression, optional_chain_marker, playground_literal, postfix_expression, prefix_expression, range_expression, raw_string_literal, real_literal, referenceable_operator, regex_literal, selector_expression, self_expression, simple_identifier, special_literal, super_expression, switch_statement, ternary_expression, try_expression, tuple_expression, value_pack_expansion, value_parameter_pack] target: directly_assignable_expression associatedtype_declaration: $children*: [modifiers, type_constraints] @@ -25,21 +25,21 @@ named: must_inherit*: [array_type, dictionary_type, existential_type, function_type, metatype, opaque_type, optional_type, protocol_composition_type, suppressed_constraint, tuple_type, type_modifiers, type_pack_expansion, type_parameter_pack, user_type] name+: [array_type, dictionary_type, existential_type, function_type, metatype, opaque_type, optional_type, protocol_composition_type, suppressed_constraint, tuple_type, type_identifier, type_pack_expansion, type_parameter_pack, user_type] attribute: - $children+: [additive_expression, array_literal, as_expression, assignment, await_expression, bang, bin_literal, bitwise_operation, boolean_literal, call_expression, check_expression, comparison_expression, conjunction_expression, constructor_expression, custom_operator, diagnostic, dictionary_literal, directive, disjunction_expression, equality_expression, fully_open_range, hex_literal, if_statement, infix_expression, integer_literal, key_path_expression, key_path_string_expression, lambda_literal, line_string_literal, macro_invocation, multi_line_string_literal, multiplicative_expression, navigation_expression, nil_coalescing_expression, oct_literal, open_end_range_expression, open_start_range_expression, optional_chain_marker, playground_literal, postfix_expression, prefix_expression, range_expression, raw_string_literal, real_literal, regex_literal, selector_expression, self_expression, simple_identifier, special_literal, super_expression, switch_statement, ternary_expression, try_expression, tuple_expression, user_type, value_pack_expansion, value_parameter_pack] + $children+: [additive_expression, array_literal, as_expression, assignment, await_expression, bin_literal, bitwise_operation, boolean_literal, call_expression, check_expression, comparison_expression, conjunction_expression, constructor_expression, diagnostic, dictionary_literal, directive, disjunction_expression, equality_expression, fully_open_range, hex_literal, if_statement, infix_expression, integer_literal, key_path_expression, key_path_string_expression, lambda_literal, line_string_literal, macro_invocation, multi_line_string_literal, multiplicative_expression, navigation_expression, nil_coalescing_expression, oct_literal, open_end_range_expression, open_start_range_expression, optional_chain_marker, playground_literal, postfix_expression, prefix_expression, range_expression, raw_string_literal, real_literal, referenceable_operator, regex_literal, selector_expression, self_expression, simple_identifier, special_literal, super_expression, switch_statement, ternary_expression, try_expression, tuple_expression, user_type, value_pack_expansion, value_parameter_pack] availability_condition: $children*: [identifier, integer_literal] await_expression: - $children?: [additive_expression, array_literal, as_expression, assignment, await_expression, bang, bin_literal, bitwise_operation, boolean_literal, call_expression, check_expression, comparison_expression, conjunction_expression, constructor_expression, custom_operator, diagnostic, dictionary_literal, directive, disjunction_expression, equality_expression, fully_open_range, hex_literal, if_statement, infix_expression, integer_literal, key_path_expression, key_path_string_expression, lambda_literal, line_string_literal, macro_invocation, multi_line_string_literal, multiplicative_expression, navigation_expression, nil_coalescing_expression, oct_literal, open_end_range_expression, open_start_range_expression, optional_chain_marker, playground_literal, postfix_expression, prefix_expression, range_expression, raw_string_literal, real_literal, regex_literal, selector_expression, self_expression, simple_identifier, special_literal, super_expression, switch_statement, ternary_expression, try_expression, tuple_expression, value_pack_expansion, value_parameter_pack] - expr?: ["!=", "!==", "%", "%=", "&", "*", "*=", "+", "++", "+=", "-", "--", "-=", "/", "/=", "<", "<<", "<=", "=", "==", "===", ">", ">=", ">>", "^", additive_expression, array_literal, as_expression, assignment, await_expression, bang, bin_literal, bitwise_operation, boolean_literal, call_expression, check_expression, comparison_expression, conjunction_expression, constructor_expression, custom_operator, diagnostic, dictionary_literal, directive, disjunction_expression, equality_expression, fully_open_range, hex_literal, if_statement, infix_expression, integer_literal, key_path_expression, key_path_string_expression, lambda_literal, line_string_literal, macro_invocation, multi_line_string_literal, multiplicative_expression, navigation_expression, "nil", nil_coalescing_expression, oct_literal, open_end_range_expression, open_start_range_expression, optional_chain_marker, playground_literal, postfix_expression, prefix_expression, range_expression, raw_string_literal, real_literal, regex_literal, selector_expression, self_expression, simple_identifier, special_literal, super_expression, switch_statement, ternary_expression, try_expression, tuple_expression, value_pack_expansion, value_parameter_pack, "|", "~"] + $children?: [additive_expression, array_literal, as_expression, assignment, await_expression, bin_literal, bitwise_operation, boolean_literal, call_expression, check_expression, comparison_expression, conjunction_expression, constructor_expression, diagnostic, dictionary_literal, directive, disjunction_expression, equality_expression, fully_open_range, hex_literal, if_statement, infix_expression, integer_literal, key_path_expression, key_path_string_expression, lambda_literal, line_string_literal, macro_invocation, multi_line_string_literal, multiplicative_expression, navigation_expression, nil_coalescing_expression, oct_literal, open_end_range_expression, open_start_range_expression, optional_chain_marker, playground_literal, postfix_expression, prefix_expression, range_expression, raw_string_literal, real_literal, referenceable_operator, regex_literal, selector_expression, self_expression, simple_identifier, special_literal, super_expression, switch_statement, ternary_expression, try_expression, tuple_expression, value_pack_expansion, value_parameter_pack] + expr?: [additive_expression, array_literal, as_expression, assignment, await_expression, bin_literal, bitwise_operation, boolean_literal, call_expression, check_expression, comparison_expression, conjunction_expression, constructor_expression, diagnostic, dictionary_literal, directive, disjunction_expression, equality_expression, fully_open_range, hex_literal, if_statement, infix_expression, integer_literal, key_path_expression, key_path_string_expression, lambda_literal, line_string_literal, macro_invocation, multi_line_string_literal, multiplicative_expression, navigation_expression, "nil", nil_coalescing_expression, oct_literal, open_end_range_expression, open_start_range_expression, optional_chain_marker, playground_literal, postfix_expression, prefix_expression, range_expression, raw_string_literal, real_literal, referenceable_operator, regex_literal, selector_expression, self_expression, simple_identifier, special_literal, super_expression, switch_statement, ternary_expression, try_expression, tuple_expression, value_pack_expansion, value_parameter_pack] bang: bin_literal: bitwise_operation: - lhs: ["!=", "!==", "%", "%=", "&", "*", "*=", "+", "++", "+=", "-", "--", "-=", "/", "/=", "<", "<<", "<=", "=", "==", "===", ">", ">=", ">>", "^", additive_expression, array_literal, as_expression, assignment, await_expression, bang, bin_literal, bitwise_operation, boolean_literal, call_expression, check_expression, comparison_expression, conjunction_expression, constructor_expression, custom_operator, diagnostic, dictionary_literal, directive, disjunction_expression, equality_expression, fully_open_range, hex_literal, if_statement, infix_expression, integer_literal, key_path_expression, key_path_string_expression, lambda_literal, line_string_literal, macro_invocation, multi_line_string_literal, multiplicative_expression, navigation_expression, "nil", nil_coalescing_expression, oct_literal, open_end_range_expression, open_start_range_expression, optional_chain_marker, playground_literal, postfix_expression, prefix_expression, range_expression, raw_string_literal, real_literal, regex_literal, selector_expression, self_expression, simple_identifier, special_literal, super_expression, switch_statement, ternary_expression, try_expression, tuple_expression, value_pack_expansion, value_parameter_pack, "|", "~"] + lhs: [additive_expression, array_literal, as_expression, assignment, await_expression, bin_literal, bitwise_operation, boolean_literal, call_expression, check_expression, comparison_expression, conjunction_expression, constructor_expression, diagnostic, dictionary_literal, directive, disjunction_expression, equality_expression, fully_open_range, hex_literal, if_statement, infix_expression, integer_literal, key_path_expression, key_path_string_expression, lambda_literal, line_string_literal, macro_invocation, multi_line_string_literal, multiplicative_expression, navigation_expression, "nil", nil_coalescing_expression, oct_literal, open_end_range_expression, open_start_range_expression, optional_chain_marker, playground_literal, postfix_expression, prefix_expression, range_expression, raw_string_literal, real_literal, referenceable_operator, regex_literal, selector_expression, self_expression, simple_identifier, special_literal, super_expression, switch_statement, ternary_expression, try_expression, tuple_expression, value_pack_expansion, value_parameter_pack] op: ["&", "<<", ">>", "^", "|"] - rhs: ["!=", "!==", "%", "%=", "&", "*", "*=", "+", "++", "+=", "-", "--", "-=", "/", "/=", "<", "<<", "<=", "=", "==", "===", ">", ">=", ">>", "^", additive_expression, array_literal, as_expression, assignment, await_expression, bang, bin_literal, bitwise_operation, boolean_literal, call_expression, check_expression, comparison_expression, conjunction_expression, constructor_expression, custom_operator, diagnostic, dictionary_literal, directive, disjunction_expression, equality_expression, fully_open_range, hex_literal, if_statement, infix_expression, integer_literal, key_path_expression, key_path_string_expression, lambda_literal, line_string_literal, macro_invocation, multi_line_string_literal, multiplicative_expression, navigation_expression, "nil", nil_coalescing_expression, oct_literal, open_end_range_expression, open_start_range_expression, optional_chain_marker, playground_literal, postfix_expression, prefix_expression, range_expression, raw_string_literal, real_literal, regex_literal, selector_expression, self_expression, simple_identifier, special_literal, super_expression, switch_statement, ternary_expression, try_expression, tuple_expression, value_pack_expansion, value_parameter_pack, "|", "~"] + rhs: [additive_expression, array_literal, as_expression, assignment, await_expression, bin_literal, bitwise_operation, boolean_literal, call_expression, check_expression, comparison_expression, conjunction_expression, constructor_expression, diagnostic, dictionary_literal, directive, disjunction_expression, equality_expression, fully_open_range, hex_literal, if_statement, infix_expression, integer_literal, key_path_expression, key_path_string_expression, lambda_literal, line_string_literal, macro_invocation, multi_line_string_literal, multiplicative_expression, navigation_expression, "nil", nil_coalescing_expression, oct_literal, open_end_range_expression, open_start_range_expression, optional_chain_marker, playground_literal, postfix_expression, prefix_expression, range_expression, raw_string_literal, real_literal, referenceable_operator, regex_literal, selector_expression, self_expression, simple_identifier, special_literal, super_expression, switch_statement, ternary_expression, try_expression, tuple_expression, value_pack_expansion, value_parameter_pack] boolean_literal: call_expression: - $children+: [additive_expression, array_literal, as_expression, assignment, await_expression, bang, bin_literal, bitwise_operation, boolean_literal, call_expression, call_suffix, check_expression, comparison_expression, conjunction_expression, constructor_expression, custom_operator, diagnostic, dictionary_literal, directive, disjunction_expression, equality_expression, fully_open_range, hex_literal, if_statement, infix_expression, integer_literal, key_path_expression, key_path_string_expression, lambda_literal, line_string_literal, macro_invocation, multi_line_string_literal, multiplicative_expression, navigation_expression, nil_coalescing_expression, oct_literal, open_end_range_expression, open_start_range_expression, optional_chain_marker, playground_literal, postfix_expression, prefix_expression, range_expression, raw_string_literal, real_literal, regex_literal, selector_expression, self_expression, simple_identifier, special_literal, super_expression, switch_statement, ternary_expression, try_expression, tuple_expression, value_pack_expansion, value_parameter_pack] + $children+: [additive_expression, array_literal, as_expression, assignment, await_expression, bin_literal, bitwise_operation, boolean_literal, call_expression, call_suffix, check_expression, comparison_expression, conjunction_expression, constructor_expression, diagnostic, dictionary_literal, directive, disjunction_expression, equality_expression, fully_open_range, hex_literal, if_statement, infix_expression, integer_literal, key_path_expression, key_path_string_expression, lambda_literal, line_string_literal, macro_invocation, multi_line_string_literal, multiplicative_expression, navigation_expression, nil_coalescing_expression, oct_literal, open_end_range_expression, open_start_range_expression, optional_chain_marker, playground_literal, postfix_expression, prefix_expression, range_expression, raw_string_literal, real_literal, referenceable_operator, regex_literal, selector_expression, self_expression, simple_identifier, special_literal, super_expression, switch_statement, ternary_expression, try_expression, tuple_expression, value_pack_expansion, value_parameter_pack] call_suffix: $children+: [lambda_literal, value_arguments] name*: simple_identifier @@ -48,7 +48,7 @@ named: capture_list_item: $children?: ownership_modifier name: [self_expression, simple_identifier] - value?: ["!=", "!==", "%", "%=", "&", "*", "*=", "+", "++", "+=", "-", "--", "-=", "/", "/=", "<", "<<", "<=", "=", "==", "===", ">", ">=", ">>", "^", additive_expression, array_literal, as_expression, assignment, await_expression, bang, bin_literal, bitwise_operation, boolean_literal, call_expression, check_expression, comparison_expression, conjunction_expression, constructor_expression, custom_operator, diagnostic, dictionary_literal, directive, disjunction_expression, equality_expression, fully_open_range, hex_literal, if_statement, infix_expression, integer_literal, key_path_expression, key_path_string_expression, lambda_literal, line_string_literal, macro_invocation, multi_line_string_literal, multiplicative_expression, navigation_expression, "nil", nil_coalescing_expression, oct_literal, open_end_range_expression, open_start_range_expression, optional_chain_marker, playground_literal, postfix_expression, prefix_expression, range_expression, raw_string_literal, real_literal, regex_literal, selector_expression, self_expression, simple_identifier, special_literal, super_expression, switch_statement, ternary_expression, try_expression, tuple_expression, value_pack_expansion, value_parameter_pack, "|", "~"] + value?: [additive_expression, array_literal, as_expression, assignment, await_expression, bin_literal, bitwise_operation, boolean_literal, call_expression, check_expression, comparison_expression, conjunction_expression, constructor_expression, diagnostic, dictionary_literal, directive, disjunction_expression, equality_expression, fully_open_range, hex_literal, if_statement, infix_expression, integer_literal, key_path_expression, key_path_string_expression, lambda_literal, line_string_literal, macro_invocation, multi_line_string_literal, multiplicative_expression, navigation_expression, "nil", nil_coalescing_expression, oct_literal, open_end_range_expression, open_start_range_expression, optional_chain_marker, playground_literal, postfix_expression, prefix_expression, range_expression, raw_string_literal, real_literal, referenceable_operator, regex_literal, selector_expression, self_expression, simple_identifier, special_literal, super_expression, switch_statement, ternary_expression, try_expression, tuple_expression, value_pack_expansion, value_parameter_pack] catch_block: $children+: [catch_keyword, statements, where_clause] error?: pattern @@ -56,7 +56,7 @@ named: check_expression: name: [array_type, dictionary_type, existential_type, function_type, metatype, opaque_type, optional_type, protocol_composition_type, suppressed_constraint, tuple_type, type_pack_expansion, type_parameter_pack, user_type] op: "is" - target: ["!=", "!==", "%", "%=", "&", "*", "*=", "+", "++", "+=", "-", "--", "-=", "/", "/=", "<", "<<", "<=", "=", "==", "===", ">", ">=", ">>", "^", additive_expression, array_literal, as_expression, assignment, await_expression, bang, bin_literal, bitwise_operation, boolean_literal, call_expression, check_expression, comparison_expression, conjunction_expression, constructor_expression, custom_operator, diagnostic, dictionary_literal, directive, disjunction_expression, equality_expression, fully_open_range, hex_literal, if_statement, infix_expression, integer_literal, key_path_expression, key_path_string_expression, lambda_literal, line_string_literal, macro_invocation, multi_line_string_literal, multiplicative_expression, navigation_expression, "nil", nil_coalescing_expression, oct_literal, open_end_range_expression, open_start_range_expression, optional_chain_marker, playground_literal, postfix_expression, prefix_expression, range_expression, raw_string_literal, real_literal, regex_literal, selector_expression, self_expression, simple_identifier, special_literal, super_expression, switch_statement, ternary_expression, try_expression, tuple_expression, value_pack_expansion, value_parameter_pack, "|", "~"] + target: [additive_expression, array_literal, as_expression, assignment, await_expression, bin_literal, bitwise_operation, boolean_literal, call_expression, check_expression, comparison_expression, conjunction_expression, constructor_expression, diagnostic, dictionary_literal, directive, disjunction_expression, equality_expression, fully_open_range, hex_literal, if_statement, infix_expression, integer_literal, key_path_expression, key_path_string_expression, lambda_literal, line_string_literal, macro_invocation, multi_line_string_literal, multiplicative_expression, navigation_expression, "nil", nil_coalescing_expression, oct_literal, open_end_range_expression, open_start_range_expression, optional_chain_marker, playground_literal, postfix_expression, prefix_expression, range_expression, raw_string_literal, real_literal, referenceable_operator, regex_literal, selector_expression, self_expression, simple_identifier, special_literal, super_expression, switch_statement, ternary_expression, try_expression, tuple_expression, value_pack_expansion, value_parameter_pack] type+: [array_type, dictionary_type, existential_type, function_type, metatype, opaque_type, optional_type, protocol_composition_type, suppressed_constraint, tuple_type, type_modifiers, type_pack_expansion, type_parameter_pack, user_type] class_body: $children*: [associatedtype_declaration, class_declaration, deinit_declaration, function_declaration, import_declaration, init_declaration, multiline_comment, operator_declaration, precedence_group_declaration, property_declaration, protocol_declaration, subscript_declaration, typealias_declaration] @@ -67,9 +67,9 @@ named: name: [array_type, dictionary_type, existential_type, function_type, metatype, opaque_type, optional_type, protocol_composition_type, suppressed_constraint, tuple_type, type_identifier, type_pack_expansion, type_parameter_pack, user_type] comment: comparison_expression: - lhs: ["!=", "!==", "%", "%=", "&", "*", "*=", "+", "++", "+=", "-", "--", "-=", "/", "/=", "<", "<<", "<=", "=", "==", "===", ">", ">=", ">>", "^", additive_expression, array_literal, as_expression, assignment, await_expression, bang, bin_literal, bitwise_operation, boolean_literal, call_expression, check_expression, comparison_expression, conjunction_expression, constructor_expression, custom_operator, diagnostic, dictionary_literal, directive, disjunction_expression, equality_expression, fully_open_range, hex_literal, if_statement, infix_expression, integer_literal, key_path_expression, key_path_string_expression, lambda_literal, line_string_literal, macro_invocation, multi_line_string_literal, multiplicative_expression, navigation_expression, "nil", nil_coalescing_expression, oct_literal, open_end_range_expression, open_start_range_expression, optional_chain_marker, playground_literal, postfix_expression, prefix_expression, range_expression, raw_string_literal, real_literal, regex_literal, selector_expression, self_expression, simple_identifier, special_literal, super_expression, switch_statement, ternary_expression, try_expression, tuple_expression, value_pack_expansion, value_parameter_pack, "|", "~"] + lhs: [additive_expression, array_literal, as_expression, assignment, await_expression, bin_literal, bitwise_operation, boolean_literal, call_expression, check_expression, comparison_expression, conjunction_expression, constructor_expression, diagnostic, dictionary_literal, directive, disjunction_expression, equality_expression, fully_open_range, hex_literal, if_statement, infix_expression, integer_literal, key_path_expression, key_path_string_expression, lambda_literal, line_string_literal, macro_invocation, multi_line_string_literal, multiplicative_expression, navigation_expression, "nil", nil_coalescing_expression, oct_literal, open_end_range_expression, open_start_range_expression, optional_chain_marker, playground_literal, postfix_expression, prefix_expression, range_expression, raw_string_literal, real_literal, referenceable_operator, regex_literal, selector_expression, self_expression, simple_identifier, special_literal, super_expression, switch_statement, ternary_expression, try_expression, tuple_expression, value_pack_expansion, value_parameter_pack] op: ["<", "<=", ">", ">="] - rhs: ["!=", "!==", "%", "%=", "&", "*", "*=", "+", "++", "+=", "-", "--", "-=", "/", "/=", "<", "<<", "<=", "=", "==", "===", ">", ">=", ">>", "^", additive_expression, array_literal, as_expression, assignment, await_expression, bang, bin_literal, bitwise_operation, boolean_literal, call_expression, check_expression, comparison_expression, conjunction_expression, constructor_expression, custom_operator, diagnostic, dictionary_literal, directive, disjunction_expression, equality_expression, fully_open_range, hex_literal, if_statement, infix_expression, integer_literal, key_path_expression, key_path_string_expression, lambda_literal, line_string_literal, macro_invocation, multi_line_string_literal, multiplicative_expression, navigation_expression, "nil", nil_coalescing_expression, oct_literal, open_end_range_expression, open_start_range_expression, optional_chain_marker, playground_literal, postfix_expression, prefix_expression, range_expression, raw_string_literal, real_literal, regex_literal, selector_expression, self_expression, simple_identifier, special_literal, super_expression, switch_statement, ternary_expression, try_expression, tuple_expression, value_pack_expansion, value_parameter_pack, "|", "~"] + rhs: [additive_expression, array_literal, as_expression, assignment, await_expression, bin_literal, bitwise_operation, boolean_literal, call_expression, check_expression, comparison_expression, conjunction_expression, constructor_expression, diagnostic, dictionary_literal, directive, disjunction_expression, equality_expression, fully_open_range, hex_literal, if_statement, infix_expression, integer_literal, key_path_expression, key_path_string_expression, lambda_literal, line_string_literal, macro_invocation, multi_line_string_literal, multiplicative_expression, navigation_expression, "nil", nil_coalescing_expression, oct_literal, open_end_range_expression, open_start_range_expression, optional_chain_marker, playground_literal, postfix_expression, prefix_expression, range_expression, raw_string_literal, real_literal, referenceable_operator, regex_literal, selector_expression, self_expression, simple_identifier, special_literal, super_expression, switch_statement, ternary_expression, try_expression, tuple_expression, value_pack_expansion, value_parameter_pack] computed_getter: $children+: [attribute, getter_specifier, statements] computed_modify: @@ -79,9 +79,9 @@ named: computed_setter: $children+: [attribute, setter_specifier, simple_identifier, statements] conjunction_expression: - lhs: ["!=", "!==", "%", "%=", "&", "*", "*=", "+", "++", "+=", "-", "--", "-=", "/", "/=", "<", "<<", "<=", "=", "==", "===", ">", ">=", ">>", "^", additive_expression, array_literal, as_expression, assignment, await_expression, bang, bin_literal, bitwise_operation, boolean_literal, call_expression, check_expression, comparison_expression, conjunction_expression, constructor_expression, custom_operator, diagnostic, dictionary_literal, directive, disjunction_expression, equality_expression, fully_open_range, hex_literal, if_statement, infix_expression, integer_literal, key_path_expression, key_path_string_expression, lambda_literal, line_string_literal, macro_invocation, multi_line_string_literal, multiplicative_expression, navigation_expression, "nil", nil_coalescing_expression, oct_literal, open_end_range_expression, open_start_range_expression, optional_chain_marker, playground_literal, postfix_expression, prefix_expression, range_expression, raw_string_literal, real_literal, regex_literal, selector_expression, self_expression, simple_identifier, special_literal, super_expression, switch_statement, ternary_expression, try_expression, tuple_expression, value_pack_expansion, value_parameter_pack, "|", "~"] + lhs: [additive_expression, array_literal, as_expression, assignment, await_expression, bin_literal, bitwise_operation, boolean_literal, call_expression, check_expression, comparison_expression, conjunction_expression, constructor_expression, diagnostic, dictionary_literal, directive, disjunction_expression, equality_expression, fully_open_range, hex_literal, if_statement, infix_expression, integer_literal, key_path_expression, key_path_string_expression, lambda_literal, line_string_literal, macro_invocation, multi_line_string_literal, multiplicative_expression, navigation_expression, "nil", nil_coalescing_expression, oct_literal, open_end_range_expression, open_start_range_expression, optional_chain_marker, playground_literal, postfix_expression, prefix_expression, range_expression, raw_string_literal, real_literal, referenceable_operator, regex_literal, selector_expression, self_expression, simple_identifier, special_literal, super_expression, switch_statement, ternary_expression, try_expression, tuple_expression, value_pack_expansion, value_parameter_pack] op: "&&" - rhs: ["!=", "!==", "%", "%=", "&", "*", "*=", "+", "++", "+=", "-", "--", "-=", "/", "/=", "<", "<<", "<=", "=", "==", "===", ">", ">=", ">>", "^", additive_expression, array_literal, as_expression, assignment, await_expression, bang, bin_literal, bitwise_operation, boolean_literal, call_expression, check_expression, comparison_expression, conjunction_expression, constructor_expression, custom_operator, diagnostic, dictionary_literal, directive, disjunction_expression, equality_expression, fully_open_range, hex_literal, if_statement, infix_expression, integer_literal, key_path_expression, key_path_string_expression, lambda_literal, line_string_literal, macro_invocation, multi_line_string_literal, multiplicative_expression, navigation_expression, "nil", nil_coalescing_expression, oct_literal, open_end_range_expression, open_start_range_expression, optional_chain_marker, playground_literal, postfix_expression, prefix_expression, range_expression, raw_string_literal, real_literal, regex_literal, selector_expression, self_expression, simple_identifier, special_literal, super_expression, switch_statement, ternary_expression, try_expression, tuple_expression, value_pack_expansion, value_parameter_pack, "|", "~"] + rhs: [additive_expression, array_literal, as_expression, assignment, await_expression, bin_literal, bitwise_operation, boolean_literal, call_expression, check_expression, comparison_expression, conjunction_expression, constructor_expression, diagnostic, dictionary_literal, directive, disjunction_expression, equality_expression, fully_open_range, hex_literal, if_statement, infix_expression, integer_literal, key_path_expression, key_path_string_expression, lambda_literal, line_string_literal, macro_invocation, multi_line_string_literal, multiplicative_expression, navigation_expression, "nil", nil_coalescing_expression, oct_literal, open_end_range_expression, open_start_range_expression, optional_chain_marker, playground_literal, postfix_expression, prefix_expression, range_expression, raw_string_literal, real_literal, referenceable_operator, regex_literal, selector_expression, self_expression, simple_identifier, special_literal, super_expression, switch_statement, ternary_expression, try_expression, tuple_expression, value_pack_expansion, value_parameter_pack] constructor_expression: $children: constructor_suffix constructed_type: [array_type, dictionary_type, user_type] @@ -89,8 +89,8 @@ named: $children+: [lambda_literal, value_arguments] name*: simple_identifier control_transfer_statement: - $children*: [additive_expression, array_literal, as_expression, assignment, await_expression, bang, bin_literal, bitwise_operation, boolean_literal, call_expression, check_expression, comparison_expression, conjunction_expression, constructor_expression, custom_operator, diagnostic, dictionary_literal, directive, disjunction_expression, equality_expression, fully_open_range, hex_literal, if_statement, infix_expression, integer_literal, key_path_expression, key_path_string_expression, lambda_literal, line_string_literal, macro_invocation, multi_line_string_literal, multiplicative_expression, navigation_expression, nil_coalescing_expression, oct_literal, open_end_range_expression, open_start_range_expression, optional_chain_marker, playground_literal, postfix_expression, prefix_expression, range_expression, raw_string_literal, real_literal, regex_literal, selector_expression, self_expression, simple_identifier, special_literal, super_expression, switch_statement, ternary_expression, throw_keyword, try_expression, tuple_expression, value_pack_expansion, value_parameter_pack] - result?: ["!=", "!==", "%", "%=", "&", "*", "*=", "+", "++", "+=", "-", "--", "-=", "/", "/=", "<", "<<", "<=", "=", "==", "===", ">", ">=", ">>", "^", additive_expression, array_literal, as_expression, assignment, await_expression, bang, bin_literal, bitwise_operation, boolean_literal, call_expression, check_expression, comparison_expression, conjunction_expression, constructor_expression, custom_operator, diagnostic, dictionary_literal, directive, disjunction_expression, equality_expression, fully_open_range, hex_literal, if_statement, infix_expression, integer_literal, key_path_expression, key_path_string_expression, lambda_literal, line_string_literal, macro_invocation, multi_line_string_literal, multiplicative_expression, navigation_expression, "nil", nil_coalescing_expression, oct_literal, open_end_range_expression, open_start_range_expression, optional_chain_marker, playground_literal, postfix_expression, prefix_expression, range_expression, raw_string_literal, real_literal, regex_literal, selector_expression, self_expression, simple_identifier, special_literal, super_expression, switch_statement, ternary_expression, try_expression, tuple_expression, value_pack_expansion, value_parameter_pack, "|", "~"] + $children*: [additive_expression, array_literal, as_expression, assignment, await_expression, bin_literal, bitwise_operation, boolean_literal, call_expression, check_expression, comparison_expression, conjunction_expression, constructor_expression, diagnostic, dictionary_literal, directive, disjunction_expression, equality_expression, fully_open_range, hex_literal, if_statement, infix_expression, integer_literal, key_path_expression, key_path_string_expression, lambda_literal, line_string_literal, macro_invocation, multi_line_string_literal, multiplicative_expression, navigation_expression, nil_coalescing_expression, oct_literal, open_end_range_expression, open_start_range_expression, optional_chain_marker, playground_literal, postfix_expression, prefix_expression, range_expression, raw_string_literal, real_literal, referenceable_operator, regex_literal, selector_expression, self_expression, simple_identifier, special_literal, super_expression, switch_statement, ternary_expression, throw_keyword, try_expression, tuple_expression, value_pack_expansion, value_parameter_pack] + result?: [additive_expression, array_literal, as_expression, assignment, await_expression, bin_literal, bitwise_operation, boolean_literal, call_expression, check_expression, comparison_expression, conjunction_expression, constructor_expression, diagnostic, dictionary_literal, directive, disjunction_expression, equality_expression, fully_open_range, hex_literal, if_statement, infix_expression, integer_literal, key_path_expression, key_path_string_expression, lambda_literal, line_string_literal, macro_invocation, multi_line_string_literal, multiplicative_expression, navigation_expression, "nil", nil_coalescing_expression, oct_literal, open_end_range_expression, open_start_range_expression, optional_chain_marker, playground_literal, postfix_expression, prefix_expression, range_expression, raw_string_literal, real_literal, referenceable_operator, regex_literal, selector_expression, self_expression, simple_identifier, special_literal, super_expression, switch_statement, ternary_expression, try_expression, tuple_expression, value_pack_expansion, value_parameter_pack] custom_operator: default_keyword: deinit_declaration: @@ -100,8 +100,8 @@ named: $children*: [bin_literal, boolean_literal, hex_literal, integer_literal, line_string_literal, multi_line_string_literal, oct_literal, raw_string_literal, real_literal, regex_literal, simple_identifier] diagnostic: dictionary_literal: - key*: ["!=", "!==", "%", "%=", "&", "*", "*=", "+", "++", "+=", "-", "--", "-=", "/", "/=", "<", "<<", "<=", "=", "==", "===", ">", ">=", ">>", "^", additive_expression, array_literal, as_expression, assignment, await_expression, bang, bin_literal, bitwise_operation, boolean_literal, call_expression, check_expression, comparison_expression, conjunction_expression, constructor_expression, custom_operator, diagnostic, dictionary_literal, directive, disjunction_expression, equality_expression, fully_open_range, hex_literal, if_statement, infix_expression, integer_literal, key_path_expression, key_path_string_expression, lambda_literal, line_string_literal, macro_invocation, multi_line_string_literal, multiplicative_expression, navigation_expression, "nil", nil_coalescing_expression, oct_literal, open_end_range_expression, open_start_range_expression, optional_chain_marker, playground_literal, postfix_expression, prefix_expression, range_expression, raw_string_literal, real_literal, regex_literal, selector_expression, self_expression, simple_identifier, special_literal, super_expression, switch_statement, ternary_expression, try_expression, tuple_expression, value_pack_expansion, value_parameter_pack, "|", "~"] - value*: ["!=", "!==", "%", "%=", "&", "*", "*=", "+", "++", "+=", "-", "--", "-=", "/", "/=", "<", "<<", "<=", "=", "==", "===", ">", ">=", ">>", "^", additive_expression, array_literal, as_expression, assignment, await_expression, bang, bin_literal, bitwise_operation, boolean_literal, call_expression, check_expression, comparison_expression, conjunction_expression, constructor_expression, custom_operator, diagnostic, dictionary_literal, directive, disjunction_expression, equality_expression, fully_open_range, hex_literal, if_statement, infix_expression, integer_literal, key_path_expression, key_path_string_expression, lambda_literal, line_string_literal, macro_invocation, multi_line_string_literal, multiplicative_expression, navigation_expression, "nil", nil_coalescing_expression, oct_literal, open_end_range_expression, open_start_range_expression, optional_chain_marker, playground_literal, postfix_expression, prefix_expression, range_expression, raw_string_literal, real_literal, regex_literal, selector_expression, self_expression, simple_identifier, special_literal, super_expression, switch_statement, ternary_expression, try_expression, tuple_expression, value_pack_expansion, value_parameter_pack, "|", "~"] + key*: [additive_expression, array_literal, as_expression, assignment, await_expression, bin_literal, bitwise_operation, boolean_literal, call_expression, check_expression, comparison_expression, conjunction_expression, constructor_expression, diagnostic, dictionary_literal, directive, disjunction_expression, equality_expression, fully_open_range, hex_literal, if_statement, infix_expression, integer_literal, key_path_expression, key_path_string_expression, lambda_literal, line_string_literal, macro_invocation, multi_line_string_literal, multiplicative_expression, navigation_expression, "nil", nil_coalescing_expression, oct_literal, open_end_range_expression, open_start_range_expression, optional_chain_marker, playground_literal, postfix_expression, prefix_expression, range_expression, raw_string_literal, real_literal, referenceable_operator, regex_literal, selector_expression, self_expression, simple_identifier, special_literal, super_expression, switch_statement, ternary_expression, try_expression, tuple_expression, value_pack_expansion, value_parameter_pack] + value*: [additive_expression, array_literal, as_expression, assignment, await_expression, bin_literal, bitwise_operation, boolean_literal, call_expression, check_expression, comparison_expression, conjunction_expression, constructor_expression, diagnostic, dictionary_literal, directive, disjunction_expression, equality_expression, fully_open_range, hex_literal, if_statement, infix_expression, integer_literal, key_path_expression, key_path_string_expression, lambda_literal, line_string_literal, macro_invocation, multi_line_string_literal, multiplicative_expression, navigation_expression, "nil", nil_coalescing_expression, oct_literal, open_end_range_expression, open_start_range_expression, optional_chain_marker, playground_literal, postfix_expression, prefix_expression, range_expression, raw_string_literal, real_literal, referenceable_operator, regex_literal, selector_expression, self_expression, simple_identifier, special_literal, super_expression, switch_statement, ternary_expression, try_expression, tuple_expression, value_pack_expansion, value_parameter_pack] dictionary_type: key+: [array_type, dictionary_type, existential_type, function_type, metatype, opaque_type, optional_type, protocol_composition_type, suppressed_constraint, tuple_type, type_modifiers, type_pack_expansion, type_parameter_pack, user_type] name+: [array_type, dictionary_type, existential_type, function_type, metatype, opaque_type, optional_type, protocol_composition_type, suppressed_constraint, tuple_type, type_pack_expansion, type_parameter_pack, user_type] @@ -111,11 +111,11 @@ named: directive: $children*: [boolean_literal, integer_literal, simple_identifier] directly_assignable_expression: - $children?: [additive_expression, array_literal, as_expression, assignment, await_expression, bang, bin_literal, bitwise_operation, boolean_literal, call_expression, check_expression, comparison_expression, conjunction_expression, constructor_expression, custom_operator, diagnostic, dictionary_literal, directive, disjunction_expression, equality_expression, fully_open_range, hex_literal, if_statement, infix_expression, integer_literal, key_path_expression, key_path_string_expression, lambda_literal, line_string_literal, macro_invocation, multi_line_string_literal, multiplicative_expression, navigation_expression, nil_coalescing_expression, oct_literal, open_end_range_expression, open_start_range_expression, optional_chain_marker, playground_literal, postfix_expression, prefix_expression, range_expression, raw_string_literal, real_literal, regex_literal, selector_expression, self_expression, simple_identifier, special_literal, super_expression, switch_statement, ternary_expression, try_expression, tuple_expression, value_pack_expansion, value_parameter_pack] + $children?: [additive_expression, array_literal, as_expression, assignment, await_expression, bin_literal, bitwise_operation, boolean_literal, call_expression, check_expression, comparison_expression, conjunction_expression, constructor_expression, diagnostic, dictionary_literal, directive, disjunction_expression, equality_expression, fully_open_range, hex_literal, if_statement, infix_expression, integer_literal, key_path_expression, key_path_string_expression, lambda_literal, line_string_literal, macro_invocation, multi_line_string_literal, multiplicative_expression, navigation_expression, nil_coalescing_expression, oct_literal, open_end_range_expression, open_start_range_expression, optional_chain_marker, playground_literal, postfix_expression, prefix_expression, range_expression, raw_string_literal, real_literal, referenceable_operator, regex_literal, selector_expression, self_expression, simple_identifier, special_literal, super_expression, switch_statement, ternary_expression, try_expression, tuple_expression, value_pack_expansion, value_parameter_pack] disjunction_expression: - lhs: ["!=", "!==", "%", "%=", "&", "*", "*=", "+", "++", "+=", "-", "--", "-=", "/", "/=", "<", "<<", "<=", "=", "==", "===", ">", ">=", ">>", "^", additive_expression, array_literal, as_expression, assignment, await_expression, bang, bin_literal, bitwise_operation, boolean_literal, call_expression, check_expression, comparison_expression, conjunction_expression, constructor_expression, custom_operator, diagnostic, dictionary_literal, directive, disjunction_expression, equality_expression, fully_open_range, hex_literal, if_statement, infix_expression, integer_literal, key_path_expression, key_path_string_expression, lambda_literal, line_string_literal, macro_invocation, multi_line_string_literal, multiplicative_expression, navigation_expression, "nil", nil_coalescing_expression, oct_literal, open_end_range_expression, open_start_range_expression, optional_chain_marker, playground_literal, postfix_expression, prefix_expression, range_expression, raw_string_literal, real_literal, regex_literal, selector_expression, self_expression, simple_identifier, special_literal, super_expression, switch_statement, ternary_expression, try_expression, tuple_expression, value_pack_expansion, value_parameter_pack, "|", "~"] + lhs: [additive_expression, array_literal, as_expression, assignment, await_expression, bin_literal, bitwise_operation, boolean_literal, call_expression, check_expression, comparison_expression, conjunction_expression, constructor_expression, diagnostic, dictionary_literal, directive, disjunction_expression, equality_expression, fully_open_range, hex_literal, if_statement, infix_expression, integer_literal, key_path_expression, key_path_string_expression, lambda_literal, line_string_literal, macro_invocation, multi_line_string_literal, multiplicative_expression, navigation_expression, "nil", nil_coalescing_expression, oct_literal, open_end_range_expression, open_start_range_expression, optional_chain_marker, playground_literal, postfix_expression, prefix_expression, range_expression, raw_string_literal, real_literal, referenceable_operator, regex_literal, selector_expression, self_expression, simple_identifier, special_literal, super_expression, switch_statement, ternary_expression, try_expression, tuple_expression, value_pack_expansion, value_parameter_pack] op: "||" - rhs: ["!=", "!==", "%", "%=", "&", "*", "*=", "+", "++", "+=", "-", "--", "-=", "/", "/=", "<", "<<", "<=", "=", "==", "===", ">", ">=", ">>", "^", additive_expression, array_literal, as_expression, assignment, await_expression, bang, bin_literal, bitwise_operation, boolean_literal, call_expression, check_expression, comparison_expression, conjunction_expression, constructor_expression, custom_operator, diagnostic, dictionary_literal, directive, disjunction_expression, equality_expression, fully_open_range, hex_literal, if_statement, infix_expression, integer_literal, key_path_expression, key_path_string_expression, lambda_literal, line_string_literal, macro_invocation, multi_line_string_literal, multiplicative_expression, navigation_expression, "nil", nil_coalescing_expression, oct_literal, open_end_range_expression, open_start_range_expression, optional_chain_marker, playground_literal, postfix_expression, prefix_expression, range_expression, raw_string_literal, real_literal, regex_literal, selector_expression, self_expression, simple_identifier, special_literal, super_expression, switch_statement, ternary_expression, try_expression, tuple_expression, value_pack_expansion, value_parameter_pack, "|", "~"] + rhs: [additive_expression, array_literal, as_expression, assignment, await_expression, bin_literal, bitwise_operation, boolean_literal, call_expression, check_expression, comparison_expression, conjunction_expression, constructor_expression, diagnostic, dictionary_literal, directive, disjunction_expression, equality_expression, fully_open_range, hex_literal, if_statement, infix_expression, integer_literal, key_path_expression, key_path_string_expression, lambda_literal, line_string_literal, macro_invocation, multi_line_string_literal, multiplicative_expression, navigation_expression, "nil", nil_coalescing_expression, oct_literal, open_end_range_expression, open_start_range_expression, optional_chain_marker, playground_literal, postfix_expression, prefix_expression, range_expression, raw_string_literal, real_literal, referenceable_operator, regex_literal, selector_expression, self_expression, simple_identifier, special_literal, super_expression, switch_statement, ternary_expression, try_expression, tuple_expression, value_pack_expansion, value_parameter_pack] do_statement: $children*: [catch_block, statements] else: @@ -125,9 +125,9 @@ named: $children?: modifiers data_contents*: enum_type_parameters name+: simple_identifier - raw_value*: ["!=", "!==", "%", "%=", "&", "*", "*=", "+", "++", "+=", "-", "--", "-=", "/", "/=", "<", "<<", "<=", "=", "==", "===", ">", ">=", ">>", "^", additive_expression, array_literal, as_expression, assignment, await_expression, bang, bin_literal, bitwise_operation, boolean_literal, call_expression, check_expression, comparison_expression, conjunction_expression, constructor_expression, custom_operator, diagnostic, dictionary_literal, directive, disjunction_expression, equality_expression, fully_open_range, hex_literal, if_statement, infix_expression, integer_literal, key_path_expression, key_path_string_expression, lambda_literal, line_string_literal, macro_invocation, multi_line_string_literal, multiplicative_expression, navigation_expression, "nil", nil_coalescing_expression, oct_literal, open_end_range_expression, open_start_range_expression, optional_chain_marker, playground_literal, postfix_expression, prefix_expression, range_expression, raw_string_literal, real_literal, regex_literal, selector_expression, self_expression, simple_identifier, special_literal, super_expression, switch_statement, ternary_expression, try_expression, tuple_expression, value_pack_expansion, value_parameter_pack, "|", "~"] + raw_value*: [additive_expression, array_literal, as_expression, assignment, await_expression, bin_literal, bitwise_operation, boolean_literal, call_expression, check_expression, comparison_expression, conjunction_expression, constructor_expression, diagnostic, dictionary_literal, directive, disjunction_expression, equality_expression, fully_open_range, hex_literal, if_statement, infix_expression, integer_literal, key_path_expression, key_path_string_expression, lambda_literal, line_string_literal, macro_invocation, multi_line_string_literal, multiplicative_expression, navigation_expression, "nil", nil_coalescing_expression, oct_literal, open_end_range_expression, open_start_range_expression, optional_chain_marker, playground_literal, postfix_expression, prefix_expression, range_expression, raw_string_literal, real_literal, referenceable_operator, regex_literal, selector_expression, self_expression, simple_identifier, special_literal, super_expression, switch_statement, ternary_expression, try_expression, tuple_expression, value_pack_expansion, value_parameter_pack] enum_type_parameters: - $children*: [additive_expression, array_literal, as_expression, assignment, await_expression, bang, bin_literal, bitwise_operation, boolean_literal, call_expression, check_expression, comparison_expression, conjunction_expression, constructor_expression, custom_operator, diagnostic, dictionary_literal, directive, disjunction_expression, equality_expression, fully_open_range, hex_literal, if_statement, infix_expression, integer_literal, key_path_expression, key_path_string_expression, lambda_literal, line_string_literal, macro_invocation, multi_line_string_literal, multiplicative_expression, navigation_expression, nil_coalescing_expression, oct_literal, open_end_range_expression, open_start_range_expression, optional_chain_marker, playground_literal, postfix_expression, prefix_expression, range_expression, raw_string_literal, real_literal, regex_literal, selector_expression, self_expression, simple_identifier, special_literal, super_expression, switch_statement, ternary_expression, try_expression, tuple_expression, type_modifiers, value_pack_expansion, value_parameter_pack, wildcard_pattern] + $children*: [additive_expression, array_literal, as_expression, assignment, await_expression, bin_literal, bitwise_operation, boolean_literal, call_expression, check_expression, comparison_expression, conjunction_expression, constructor_expression, diagnostic, dictionary_literal, directive, disjunction_expression, equality_expression, fully_open_range, hex_literal, if_statement, infix_expression, integer_literal, key_path_expression, key_path_string_expression, lambda_literal, line_string_literal, macro_invocation, multi_line_string_literal, multiplicative_expression, navigation_expression, nil_coalescing_expression, oct_literal, open_end_range_expression, open_start_range_expression, optional_chain_marker, playground_literal, postfix_expression, prefix_expression, range_expression, raw_string_literal, real_literal, referenceable_operator, regex_literal, selector_expression, self_expression, simple_identifier, special_literal, super_expression, switch_statement, ternary_expression, try_expression, tuple_expression, type_modifiers, value_pack_expansion, value_parameter_pack, wildcard_pattern] name*: [array_type, dictionary_type, existential_type, function_type, metatype, opaque_type, optional_type, protocol_composition_type, suppressed_constraint, tuple_type, type_pack_expansion, type_parameter_pack, user_type] equality_constraint: $children*: attribute @@ -135,16 +135,16 @@ named: must_equal+: [array_type, dictionary_type, existential_type, function_type, metatype, opaque_type, optional_type, protocol_composition_type, suppressed_constraint, tuple_type, type_modifiers, type_pack_expansion, type_parameter_pack, user_type] name: [array_type, dictionary_type, existential_type, function_type, metatype, opaque_type, optional_type, protocol_composition_type, suppressed_constraint, tuple_type, type_pack_expansion, type_parameter_pack, user_type] equality_expression: - lhs: ["!=", "!==", "%", "%=", "&", "*", "*=", "+", "++", "+=", "-", "--", "-=", "/", "/=", "<", "<<", "<=", "=", "==", "===", ">", ">=", ">>", "^", additive_expression, array_literal, as_expression, assignment, await_expression, bang, bin_literal, bitwise_operation, boolean_literal, call_expression, check_expression, comparison_expression, conjunction_expression, constructor_expression, custom_operator, diagnostic, dictionary_literal, directive, disjunction_expression, equality_expression, fully_open_range, hex_literal, if_statement, infix_expression, integer_literal, key_path_expression, key_path_string_expression, lambda_literal, line_string_literal, macro_invocation, multi_line_string_literal, multiplicative_expression, navigation_expression, "nil", nil_coalescing_expression, oct_literal, open_end_range_expression, open_start_range_expression, optional_chain_marker, playground_literal, postfix_expression, prefix_expression, range_expression, raw_string_literal, real_literal, regex_literal, selector_expression, self_expression, simple_identifier, special_literal, super_expression, switch_statement, ternary_expression, try_expression, tuple_expression, value_pack_expansion, value_parameter_pack, "|", "~"] + lhs: [additive_expression, array_literal, as_expression, assignment, await_expression, bin_literal, bitwise_operation, boolean_literal, call_expression, check_expression, comparison_expression, conjunction_expression, constructor_expression, diagnostic, dictionary_literal, directive, disjunction_expression, equality_expression, fully_open_range, hex_literal, if_statement, infix_expression, integer_literal, key_path_expression, key_path_string_expression, lambda_literal, line_string_literal, macro_invocation, multi_line_string_literal, multiplicative_expression, navigation_expression, "nil", nil_coalescing_expression, oct_literal, open_end_range_expression, open_start_range_expression, optional_chain_marker, playground_literal, postfix_expression, prefix_expression, range_expression, raw_string_literal, real_literal, referenceable_operator, regex_literal, selector_expression, self_expression, simple_identifier, special_literal, super_expression, switch_statement, ternary_expression, try_expression, tuple_expression, value_pack_expansion, value_parameter_pack] op: ["!=", "!==", "==", "==="] - rhs: ["!=", "!==", "%", "%=", "&", "*", "*=", "+", "++", "+=", "-", "--", "-=", "/", "/=", "<", "<<", "<=", "=", "==", "===", ">", ">=", ">>", "^", additive_expression, array_literal, as_expression, assignment, await_expression, bang, bin_literal, bitwise_operation, boolean_literal, call_expression, check_expression, comparison_expression, conjunction_expression, constructor_expression, custom_operator, diagnostic, dictionary_literal, directive, disjunction_expression, equality_expression, fully_open_range, hex_literal, if_statement, infix_expression, integer_literal, key_path_expression, key_path_string_expression, lambda_literal, line_string_literal, macro_invocation, multi_line_string_literal, multiplicative_expression, navigation_expression, "nil", nil_coalescing_expression, oct_literal, open_end_range_expression, open_start_range_expression, optional_chain_marker, playground_literal, postfix_expression, prefix_expression, range_expression, raw_string_literal, real_literal, regex_literal, selector_expression, self_expression, simple_identifier, special_literal, super_expression, switch_statement, ternary_expression, try_expression, tuple_expression, value_pack_expansion, value_parameter_pack, "|", "~"] + rhs: [additive_expression, array_literal, as_expression, assignment, await_expression, bin_literal, bitwise_operation, boolean_literal, call_expression, check_expression, comparison_expression, conjunction_expression, constructor_expression, diagnostic, dictionary_literal, directive, disjunction_expression, equality_expression, fully_open_range, hex_literal, if_statement, infix_expression, integer_literal, key_path_expression, key_path_string_expression, lambda_literal, line_string_literal, macro_invocation, multi_line_string_literal, multiplicative_expression, navigation_expression, "nil", nil_coalescing_expression, oct_literal, open_end_range_expression, open_start_range_expression, optional_chain_marker, playground_literal, postfix_expression, prefix_expression, range_expression, raw_string_literal, real_literal, referenceable_operator, regex_literal, selector_expression, self_expression, simple_identifier, special_literal, super_expression, switch_statement, ternary_expression, try_expression, tuple_expression, value_pack_expansion, value_parameter_pack] existential_type: $children: [array_type, dictionary_type, existential_type, function_type, metatype, opaque_type, optional_type, protocol_composition_type, suppressed_constraint, tuple_type, type_pack_expansion, type_parameter_pack, user_type] external_macro_definition: $children: value_arguments for_statement: $children*: [statements, try_operator, type_annotation, where_clause] - collection: ["!=", "!==", "%", "%=", "&", "*", "*=", "+", "++", "+=", "-", "--", "-=", "/", "/=", "<", "<<", "<=", "=", "==", "===", ">", ">=", ">>", "^", additive_expression, array_literal, as_expression, assignment, await_expression, bang, bin_literal, bitwise_operation, boolean_literal, call_expression, check_expression, comparison_expression, conjunction_expression, constructor_expression, custom_operator, diagnostic, dictionary_literal, directive, disjunction_expression, equality_expression, fully_open_range, hex_literal, if_statement, infix_expression, integer_literal, key_path_expression, key_path_string_expression, lambda_literal, line_string_literal, macro_invocation, multi_line_string_literal, multiplicative_expression, navigation_expression, "nil", nil_coalescing_expression, oct_literal, open_end_range_expression, open_start_range_expression, optional_chain_marker, playground_literal, postfix_expression, prefix_expression, range_expression, raw_string_literal, real_literal, regex_literal, selector_expression, self_expression, simple_identifier, special_literal, super_expression, switch_statement, ternary_expression, try_expression, tuple_expression, value_pack_expansion, value_parameter_pack, "|", "~"] + collection: [additive_expression, array_literal, as_expression, assignment, await_expression, bin_literal, bitwise_operation, boolean_literal, call_expression, check_expression, comparison_expression, conjunction_expression, constructor_expression, diagnostic, dictionary_literal, directive, disjunction_expression, equality_expression, fully_open_range, hex_literal, if_statement, infix_expression, integer_literal, key_path_expression, key_path_string_expression, lambda_literal, line_string_literal, macro_invocation, multi_line_string_literal, multiplicative_expression, navigation_expression, "nil", nil_coalescing_expression, oct_literal, open_end_range_expression, open_start_range_expression, optional_chain_marker, playground_literal, postfix_expression, prefix_expression, range_expression, raw_string_literal, real_literal, referenceable_operator, regex_literal, selector_expression, self_expression, simple_identifier, special_literal, super_expression, switch_statement, ternary_expression, try_expression, tuple_expression, value_pack_expansion, value_parameter_pack] item: pattern fully_open_range: function_body: @@ -152,8 +152,8 @@ named: function_declaration: $children*: [attribute, inheritance_modifier, modifiers, ownership_modifier, parameter, property_behavior_modifier, throws, throws_clause, type_constraints, type_parameters] body: function_body - default_value*: ["!=", "!==", "%", "%=", "&", "*", "*=", "+", "++", "+=", "-", "--", "-=", "/", "/=", "<", "<<", "<=", "=", "==", "===", ">", ">=", ">>", "^", additive_expression, array_literal, as_expression, assignment, await_expression, bang, bin_literal, bitwise_operation, boolean_literal, call_expression, check_expression, comparison_expression, conjunction_expression, constructor_expression, custom_operator, diagnostic, dictionary_literal, directive, disjunction_expression, equality_expression, fully_open_range, hex_literal, if_statement, infix_expression, integer_literal, key_path_expression, key_path_string_expression, lambda_literal, line_string_literal, macro_invocation, multi_line_string_literal, multiplicative_expression, navigation_expression, "nil", nil_coalescing_expression, oct_literal, open_end_range_expression, open_start_range_expression, optional_chain_marker, playground_literal, postfix_expression, prefix_expression, range_expression, raw_string_literal, real_literal, regex_literal, selector_expression, self_expression, simple_identifier, special_literal, super_expression, switch_statement, ternary_expression, try_expression, tuple_expression, value_pack_expansion, value_parameter_pack, "|", "~"] - name+: ["!=", "!==", "%", "%=", "&", "*", "*=", "+", "++", "+=", "-", "--", "-=", "/", "/=", "<", "<<", "<=", "=", "==", "===", ">", ">=", ">>", "^", array_type, bang, custom_operator, dictionary_type, existential_type, function_type, metatype, opaque_type, optional_type, protocol_composition_type, simple_identifier, suppressed_constraint, tuple_type, type_pack_expansion, type_parameter_pack, user_type, "|", "~"] + default_value*: [additive_expression, array_literal, as_expression, assignment, await_expression, bin_literal, bitwise_operation, boolean_literal, call_expression, check_expression, comparison_expression, conjunction_expression, constructor_expression, diagnostic, dictionary_literal, directive, disjunction_expression, equality_expression, fully_open_range, hex_literal, if_statement, infix_expression, integer_literal, key_path_expression, key_path_string_expression, lambda_literal, line_string_literal, macro_invocation, multi_line_string_literal, multiplicative_expression, navigation_expression, "nil", nil_coalescing_expression, oct_literal, open_end_range_expression, open_start_range_expression, optional_chain_marker, playground_literal, postfix_expression, prefix_expression, range_expression, raw_string_literal, real_literal, referenceable_operator, regex_literal, selector_expression, self_expression, simple_identifier, special_literal, super_expression, switch_statement, ternary_expression, try_expression, tuple_expression, value_pack_expansion, value_parameter_pack] + name+: [array_type, dictionary_type, existential_type, function_type, metatype, opaque_type, optional_type, protocol_composition_type, referenceable_operator, simple_identifier, suppressed_constraint, tuple_type, type_pack_expansion, type_parameter_pack, user_type] return_type*: ["!", array_type, dictionary_type, existential_type, function_type, metatype, opaque_type, optional_type, protocol_composition_type, suppressed_constraint, tuple_type, type_modifiers, type_pack_expansion, type_parameter_pack, user_type] function_modifier: function_type: @@ -166,7 +166,7 @@ named: guard_statement: $children+: [else, statements] bound_identifier*: simple_identifier - condition+: ["!=", "!==", "%", "%=", "&", "(", ")", "*", "*=", "+", "++", "+=", ",", "-", "--", "-=", ".", "/", "/=", ":", "<", "<<", "<=", "=", "==", "===", ">", ">=", ">>", "?", "^", additive_expression, array_literal, array_type, "as", as_expression, assignment, "async", availability_condition, await_expression, bang, bin_literal, bitwise_operation, boolean_literal, call_expression, "case", check_expression, comparison_expression, conjunction_expression, constructor_expression, custom_operator, diagnostic, dictionary_literal, dictionary_type, directive, disjunction_expression, equality_expression, existential_type, fully_open_range, function_type, hex_literal, if_statement, infix_expression, integer_literal, "is", key_path_expression, key_path_string_expression, lambda_literal, line_string_literal, macro_invocation, metatype, multi_line_string_literal, multiplicative_expression, navigation_expression, "nil", nil_coalescing_expression, oct_literal, opaque_type, open_end_range_expression, open_start_range_expression, optional_chain_marker, optional_type, pattern, playground_literal, postfix_expression, prefix_expression, protocol_composition_type, range_expression, raw_string_literal, real_literal, regex_literal, selector_expression, self_expression, simple_identifier, special_literal, super_expression, suppressed_constraint, switch_statement, ternary_expression, try_expression, tuple_expression, tuple_type, type_annotation, type_modifiers, type_pack_expansion, type_parameter_pack, user_type, value_binding_pattern, value_pack_expansion, value_parameter_pack, where_clause, wildcard_pattern, "|", "~"] + condition+: ["(", ")", ",", ".", ":", "=", "?", additive_expression, array_literal, array_type, "as", as_expression, assignment, "async", availability_condition, await_expression, bin_literal, bitwise_operation, boolean_literal, call_expression, "case", check_expression, comparison_expression, conjunction_expression, constructor_expression, diagnostic, dictionary_literal, dictionary_type, directive, disjunction_expression, equality_expression, existential_type, fully_open_range, function_type, hex_literal, if_statement, infix_expression, integer_literal, "is", key_path_expression, key_path_string_expression, lambda_literal, line_string_literal, macro_invocation, metatype, multi_line_string_literal, multiplicative_expression, navigation_expression, "nil", nil_coalescing_expression, oct_literal, opaque_type, open_end_range_expression, open_start_range_expression, optional_chain_marker, optional_type, pattern, playground_literal, postfix_expression, prefix_expression, protocol_composition_type, range_expression, raw_string_literal, real_literal, referenceable_operator, regex_literal, selector_expression, self_expression, simple_identifier, special_literal, super_expression, suppressed_constraint, switch_statement, ternary_expression, try_expression, tuple_expression, tuple_type, type_annotation, type_modifiers, type_pack_expansion, type_parameter_pack, user_type, value_binding_pattern, value_pack_expansion, value_parameter_pack, where_clause, wildcard_pattern] name*: [array_type, dictionary_type, existential_type, function_type, metatype, opaque_type, optional_type, protocol_composition_type, suppressed_constraint, tuple_type, type_pack_expansion, type_parameter_pack, user_type] hex_literal: identifier: @@ -174,14 +174,14 @@ named: if_statement: $children*: [else, if_statement, statements] bound_identifier*: simple_identifier - condition+: ["!=", "!==", "%", "%=", "&", "(", ")", "*", "*=", "+", "++", "+=", ",", "-", "--", "-=", ".", "/", "/=", ":", "<", "<<", "<=", "=", "==", "===", ">", ">=", ">>", "?", "^", additive_expression, array_literal, array_type, "as", as_expression, assignment, "async", availability_condition, await_expression, bang, bin_literal, bitwise_operation, boolean_literal, call_expression, "case", check_expression, comparison_expression, conjunction_expression, constructor_expression, custom_operator, diagnostic, dictionary_literal, dictionary_type, directive, disjunction_expression, equality_expression, existential_type, fully_open_range, function_type, hex_literal, if_statement, infix_expression, integer_literal, "is", key_path_expression, key_path_string_expression, lambda_literal, line_string_literal, macro_invocation, metatype, multi_line_string_literal, multiplicative_expression, navigation_expression, "nil", nil_coalescing_expression, oct_literal, opaque_type, open_end_range_expression, open_start_range_expression, optional_chain_marker, optional_type, pattern, playground_literal, postfix_expression, prefix_expression, protocol_composition_type, range_expression, raw_string_literal, real_literal, regex_literal, selector_expression, self_expression, simple_identifier, special_literal, super_expression, suppressed_constraint, switch_statement, ternary_expression, try_expression, tuple_expression, tuple_type, type_annotation, type_modifiers, type_pack_expansion, type_parameter_pack, user_type, value_binding_pattern, value_pack_expansion, value_parameter_pack, where_clause, wildcard_pattern, "|", "~"] + condition+: ["(", ")", ",", ".", ":", "=", "?", additive_expression, array_literal, array_type, "as", as_expression, assignment, "async", availability_condition, await_expression, bin_literal, bitwise_operation, boolean_literal, call_expression, "case", check_expression, comparison_expression, conjunction_expression, constructor_expression, diagnostic, dictionary_literal, dictionary_type, directive, disjunction_expression, equality_expression, existential_type, fully_open_range, function_type, hex_literal, if_statement, infix_expression, integer_literal, "is", key_path_expression, key_path_string_expression, lambda_literal, line_string_literal, macro_invocation, metatype, multi_line_string_literal, multiplicative_expression, navigation_expression, "nil", nil_coalescing_expression, oct_literal, opaque_type, open_end_range_expression, open_start_range_expression, optional_chain_marker, optional_type, pattern, playground_literal, postfix_expression, prefix_expression, protocol_composition_type, range_expression, raw_string_literal, real_literal, referenceable_operator, regex_literal, selector_expression, self_expression, simple_identifier, special_literal, super_expression, suppressed_constraint, switch_statement, ternary_expression, try_expression, tuple_expression, tuple_type, type_annotation, type_modifiers, type_pack_expansion, type_parameter_pack, user_type, value_binding_pattern, value_pack_expansion, value_parameter_pack, where_clause, wildcard_pattern] name*: [array_type, dictionary_type, existential_type, function_type, metatype, opaque_type, optional_type, protocol_composition_type, suppressed_constraint, tuple_type, type_pack_expansion, type_parameter_pack, user_type] import_declaration: $children+: [identifier, modifiers] infix_expression: - lhs: ["!=", "!==", "%", "%=", "&", "*", "*=", "+", "++", "+=", "-", "--", "-=", "/", "/=", "<", "<<", "<=", "=", "==", "===", ">", ">=", ">>", "^", additive_expression, array_literal, as_expression, assignment, await_expression, bang, bin_literal, bitwise_operation, boolean_literal, call_expression, check_expression, comparison_expression, conjunction_expression, constructor_expression, custom_operator, diagnostic, dictionary_literal, directive, disjunction_expression, equality_expression, fully_open_range, hex_literal, if_statement, infix_expression, integer_literal, key_path_expression, key_path_string_expression, lambda_literal, line_string_literal, macro_invocation, multi_line_string_literal, multiplicative_expression, navigation_expression, "nil", nil_coalescing_expression, oct_literal, open_end_range_expression, open_start_range_expression, optional_chain_marker, playground_literal, postfix_expression, prefix_expression, range_expression, raw_string_literal, real_literal, regex_literal, selector_expression, self_expression, simple_identifier, special_literal, super_expression, switch_statement, ternary_expression, try_expression, tuple_expression, value_pack_expansion, value_parameter_pack, "|", "~"] + lhs: [additive_expression, array_literal, as_expression, assignment, await_expression, bin_literal, bitwise_operation, boolean_literal, call_expression, check_expression, comparison_expression, conjunction_expression, constructor_expression, diagnostic, dictionary_literal, directive, disjunction_expression, equality_expression, fully_open_range, hex_literal, if_statement, infix_expression, integer_literal, key_path_expression, key_path_string_expression, lambda_literal, line_string_literal, macro_invocation, multi_line_string_literal, multiplicative_expression, navigation_expression, "nil", nil_coalescing_expression, oct_literal, open_end_range_expression, open_start_range_expression, optional_chain_marker, playground_literal, postfix_expression, prefix_expression, range_expression, raw_string_literal, real_literal, referenceable_operator, regex_literal, selector_expression, self_expression, simple_identifier, special_literal, super_expression, switch_statement, ternary_expression, try_expression, tuple_expression, value_pack_expansion, value_parameter_pack] op: custom_operator - rhs: ["!=", "!==", "%", "%=", "&", "*", "*=", "+", "++", "+=", "-", "--", "-=", "/", "/=", "<", "<<", "<=", "=", "==", "===", ">", ">=", ">>", "^", additive_expression, array_literal, as_expression, assignment, await_expression, bang, bin_literal, bitwise_operation, boolean_literal, call_expression, check_expression, comparison_expression, conjunction_expression, constructor_expression, custom_operator, diagnostic, dictionary_literal, directive, disjunction_expression, equality_expression, fully_open_range, hex_literal, if_statement, infix_expression, integer_literal, key_path_expression, key_path_string_expression, lambda_literal, line_string_literal, macro_invocation, multi_line_string_literal, multiplicative_expression, navigation_expression, "nil", nil_coalescing_expression, oct_literal, open_end_range_expression, open_start_range_expression, optional_chain_marker, playground_literal, postfix_expression, prefix_expression, range_expression, raw_string_literal, real_literal, regex_literal, selector_expression, self_expression, simple_identifier, special_literal, super_expression, switch_statement, ternary_expression, try_expression, tuple_expression, value_pack_expansion, value_parameter_pack, "|", "~"] + rhs: [additive_expression, array_literal, as_expression, assignment, await_expression, bin_literal, bitwise_operation, boolean_literal, call_expression, check_expression, comparison_expression, conjunction_expression, constructor_expression, diagnostic, dictionary_literal, directive, disjunction_expression, equality_expression, fully_open_range, hex_literal, if_statement, infix_expression, integer_literal, key_path_expression, key_path_string_expression, lambda_literal, line_string_literal, macro_invocation, multi_line_string_literal, multiplicative_expression, navigation_expression, "nil", nil_coalescing_expression, oct_literal, open_end_range_expression, open_start_range_expression, optional_chain_marker, playground_literal, postfix_expression, prefix_expression, range_expression, raw_string_literal, real_literal, referenceable_operator, regex_literal, selector_expression, self_expression, simple_identifier, special_literal, super_expression, switch_statement, ternary_expression, try_expression, tuple_expression, value_pack_expansion, value_parameter_pack] inheritance_constraint: $children*: attribute constrained_type+: [".", array_type, dictionary_type, existential_type, function_type, identifier, metatype, opaque_type, optional_type, protocol_composition_type, simple_identifier, suppressed_constraint, tuple_type, type_pack_expansion, type_parameter_pack, user_type] @@ -193,18 +193,18 @@ named: init_declaration: $children*: [attribute, bang, modifiers, parameter, throws, throws_clause, type_constraints, type_parameters] body?: function_body - default_value*: ["!=", "!==", "%", "%=", "&", "*", "*=", "+", "++", "+=", "-", "--", "-=", "/", "/=", "<", "<<", "<=", "=", "==", "===", ">", ">=", ">>", "^", additive_expression, array_literal, as_expression, assignment, await_expression, bang, bin_literal, bitwise_operation, boolean_literal, call_expression, check_expression, comparison_expression, conjunction_expression, constructor_expression, custom_operator, diagnostic, dictionary_literal, directive, disjunction_expression, equality_expression, fully_open_range, hex_literal, if_statement, infix_expression, integer_literal, key_path_expression, key_path_string_expression, lambda_literal, line_string_literal, macro_invocation, multi_line_string_literal, multiplicative_expression, navigation_expression, "nil", nil_coalescing_expression, oct_literal, open_end_range_expression, open_start_range_expression, optional_chain_marker, playground_literal, postfix_expression, prefix_expression, range_expression, raw_string_literal, real_literal, regex_literal, selector_expression, self_expression, simple_identifier, special_literal, super_expression, switch_statement, ternary_expression, try_expression, tuple_expression, value_pack_expansion, value_parameter_pack, "|", "~"] + default_value*: [additive_expression, array_literal, as_expression, assignment, await_expression, bin_literal, bitwise_operation, boolean_literal, call_expression, check_expression, comparison_expression, conjunction_expression, constructor_expression, diagnostic, dictionary_literal, directive, disjunction_expression, equality_expression, fully_open_range, hex_literal, if_statement, infix_expression, integer_literal, key_path_expression, key_path_string_expression, lambda_literal, line_string_literal, macro_invocation, multi_line_string_literal, multiplicative_expression, navigation_expression, "nil", nil_coalescing_expression, oct_literal, open_end_range_expression, open_start_range_expression, optional_chain_marker, playground_literal, postfix_expression, prefix_expression, range_expression, raw_string_literal, real_literal, referenceable_operator, regex_literal, selector_expression, self_expression, simple_identifier, special_literal, super_expression, switch_statement, ternary_expression, try_expression, tuple_expression, value_pack_expansion, value_parameter_pack] name: "init" integer_literal: interpolated_expression: $children?: type_modifiers name?: value_argument_label reference_specifier*: value_argument_label - value?: ["!=", "!==", "%", "%=", "&", "*", "*=", "+", "++", "+=", "-", "--", "-=", "/", "/=", "<", "<<", "<=", "=", "==", "===", ">", ">=", ">>", "^", additive_expression, array_literal, as_expression, assignment, await_expression, bang, bin_literal, bitwise_operation, boolean_literal, call_expression, check_expression, comparison_expression, conjunction_expression, constructor_expression, custom_operator, diagnostic, dictionary_literal, directive, disjunction_expression, equality_expression, fully_open_range, hex_literal, if_statement, infix_expression, integer_literal, key_path_expression, key_path_string_expression, lambda_literal, line_string_literal, macro_invocation, multi_line_string_literal, multiplicative_expression, navigation_expression, "nil", nil_coalescing_expression, oct_literal, open_end_range_expression, open_start_range_expression, optional_chain_marker, playground_literal, postfix_expression, prefix_expression, range_expression, raw_string_literal, real_literal, regex_literal, selector_expression, self_expression, simple_identifier, special_literal, super_expression, switch_statement, ternary_expression, try_expression, tuple_expression, value_pack_expansion, value_parameter_pack, "|", "~"] + value?: [additive_expression, array_literal, as_expression, assignment, await_expression, bin_literal, bitwise_operation, boolean_literal, call_expression, check_expression, comparison_expression, conjunction_expression, constructor_expression, diagnostic, dictionary_literal, directive, disjunction_expression, equality_expression, fully_open_range, hex_literal, if_statement, infix_expression, integer_literal, key_path_expression, key_path_string_expression, lambda_literal, line_string_literal, macro_invocation, multi_line_string_literal, multiplicative_expression, navigation_expression, "nil", nil_coalescing_expression, oct_literal, open_end_range_expression, open_start_range_expression, optional_chain_marker, playground_literal, postfix_expression, prefix_expression, range_expression, raw_string_literal, real_literal, referenceable_operator, regex_literal, selector_expression, self_expression, simple_identifier, special_literal, super_expression, switch_statement, ternary_expression, try_expression, tuple_expression, value_pack_expansion, value_parameter_pack] key_path_expression: $children*: [array_type, bang, dictionary_type, simple_identifier, type_arguments, type_identifier, value_argument] key_path_string_expression: - $children?: [additive_expression, array_literal, as_expression, assignment, await_expression, bang, bin_literal, bitwise_operation, boolean_literal, call_expression, check_expression, comparison_expression, conjunction_expression, constructor_expression, custom_operator, diagnostic, dictionary_literal, directive, disjunction_expression, equality_expression, fully_open_range, hex_literal, if_statement, infix_expression, integer_literal, key_path_expression, key_path_string_expression, lambda_literal, line_string_literal, macro_invocation, multi_line_string_literal, multiplicative_expression, navigation_expression, nil_coalescing_expression, oct_literal, open_end_range_expression, open_start_range_expression, optional_chain_marker, playground_literal, postfix_expression, prefix_expression, range_expression, raw_string_literal, real_literal, regex_literal, selector_expression, self_expression, simple_identifier, special_literal, super_expression, switch_statement, ternary_expression, try_expression, tuple_expression, value_pack_expansion, value_parameter_pack] + $children?: [additive_expression, array_literal, as_expression, assignment, await_expression, bin_literal, bitwise_operation, boolean_literal, call_expression, check_expression, comparison_expression, conjunction_expression, constructor_expression, diagnostic, dictionary_literal, directive, disjunction_expression, equality_expression, fully_open_range, hex_literal, if_statement, infix_expression, integer_literal, key_path_expression, key_path_string_expression, lambda_literal, line_string_literal, macro_invocation, multi_line_string_literal, multiplicative_expression, navigation_expression, nil_coalescing_expression, oct_literal, open_end_range_expression, open_start_range_expression, optional_chain_marker, playground_literal, postfix_expression, prefix_expression, range_expression, raw_string_literal, real_literal, referenceable_operator, regex_literal, selector_expression, self_expression, simple_identifier, special_literal, super_expression, switch_statement, ternary_expression, try_expression, tuple_expression, value_pack_expansion, value_parameter_pack] lambda_function_type: $children*: [lambda_function_type_parameters, throws, throws_clause] name?: [array_type, dictionary_type, existential_type, function_type, metatype, opaque_type, optional_type, protocol_composition_type, suppressed_constraint, tuple_type, type_pack_expansion, type_parameter_pack, user_type] @@ -226,10 +226,10 @@ named: text*: [line_str_text, str_escaped_char] macro_declaration: $children+: [array_type, attribute, dictionary_type, existential_type, function_type, metatype, modifiers, opaque_type, optional_type, parameter, protocol_composition_type, simple_identifier, suppressed_constraint, tuple_type, type_constraints, type_pack_expansion, type_parameter_pack, type_parameters, user_type] - default_value*: ["!=", "!==", "%", "%=", "&", "*", "*=", "+", "++", "+=", "-", "--", "-=", "/", "/=", "<", "<<", "<=", "=", "==", "===", ">", ">=", ">>", "^", additive_expression, array_literal, as_expression, assignment, await_expression, bang, bin_literal, bitwise_operation, boolean_literal, call_expression, check_expression, comparison_expression, conjunction_expression, constructor_expression, custom_operator, diagnostic, dictionary_literal, directive, disjunction_expression, equality_expression, fully_open_range, hex_literal, if_statement, infix_expression, integer_literal, key_path_expression, key_path_string_expression, lambda_literal, line_string_literal, macro_invocation, multi_line_string_literal, multiplicative_expression, navigation_expression, "nil", nil_coalescing_expression, oct_literal, open_end_range_expression, open_start_range_expression, optional_chain_marker, playground_literal, postfix_expression, prefix_expression, range_expression, raw_string_literal, real_literal, regex_literal, selector_expression, self_expression, simple_identifier, special_literal, super_expression, switch_statement, ternary_expression, try_expression, tuple_expression, value_pack_expansion, value_parameter_pack, "|", "~"] + default_value*: [additive_expression, array_literal, as_expression, assignment, await_expression, bin_literal, bitwise_operation, boolean_literal, call_expression, check_expression, comparison_expression, conjunction_expression, constructor_expression, diagnostic, dictionary_literal, directive, disjunction_expression, equality_expression, fully_open_range, hex_literal, if_statement, infix_expression, integer_literal, key_path_expression, key_path_string_expression, lambda_literal, line_string_literal, macro_invocation, multi_line_string_literal, multiplicative_expression, navigation_expression, "nil", nil_coalescing_expression, oct_literal, open_end_range_expression, open_start_range_expression, optional_chain_marker, playground_literal, postfix_expression, prefix_expression, range_expression, raw_string_literal, real_literal, referenceable_operator, regex_literal, selector_expression, self_expression, simple_identifier, special_literal, super_expression, switch_statement, ternary_expression, try_expression, tuple_expression, value_pack_expansion, value_parameter_pack] definition?: macro_definition macro_definition: - body: ["!=", "!==", "%", "%=", "&", "*", "*=", "+", "++", "+=", "-", "--", "-=", "/", "/=", "<", "<<", "<=", "=", "==", "===", ">", ">=", ">>", "^", additive_expression, array_literal, as_expression, assignment, await_expression, bang, bin_literal, bitwise_operation, boolean_literal, call_expression, check_expression, comparison_expression, conjunction_expression, constructor_expression, custom_operator, diagnostic, dictionary_literal, directive, disjunction_expression, equality_expression, external_macro_definition, fully_open_range, hex_literal, if_statement, infix_expression, integer_literal, key_path_expression, key_path_string_expression, lambda_literal, line_string_literal, macro_invocation, multi_line_string_literal, multiplicative_expression, navigation_expression, "nil", nil_coalescing_expression, oct_literal, open_end_range_expression, open_start_range_expression, optional_chain_marker, playground_literal, postfix_expression, prefix_expression, range_expression, raw_string_literal, real_literal, regex_literal, selector_expression, self_expression, simple_identifier, special_literal, super_expression, switch_statement, ternary_expression, try_expression, tuple_expression, value_pack_expansion, value_parameter_pack, "|", "~"] + body: [additive_expression, array_literal, as_expression, assignment, await_expression, bin_literal, bitwise_operation, boolean_literal, call_expression, check_expression, comparison_expression, conjunction_expression, constructor_expression, diagnostic, dictionary_literal, directive, disjunction_expression, equality_expression, external_macro_definition, fully_open_range, hex_literal, if_statement, infix_expression, integer_literal, key_path_expression, key_path_string_expression, lambda_literal, line_string_literal, macro_invocation, multi_line_string_literal, multiplicative_expression, navigation_expression, "nil", nil_coalescing_expression, oct_literal, open_end_range_expression, open_start_range_expression, optional_chain_marker, playground_literal, postfix_expression, prefix_expression, range_expression, raw_string_literal, real_literal, referenceable_operator, regex_literal, selector_expression, self_expression, simple_identifier, special_literal, super_expression, switch_statement, ternary_expression, try_expression, tuple_expression, value_pack_expansion, value_parameter_pack] macro_invocation: $children+: [call_suffix, simple_identifier, type_parameters] member_modifier: @@ -245,30 +245,30 @@ named: text*: ["\"", multi_line_str_text, str_escaped_char] multiline_comment: multiplicative_expression: - lhs: ["!=", "!==", "%", "%=", "&", "*", "*=", "+", "++", "+=", "-", "--", "-=", "/", "/=", "<", "<<", "<=", "=", "==", "===", ">", ">=", ">>", "^", additive_expression, array_literal, as_expression, assignment, await_expression, bang, bin_literal, bitwise_operation, boolean_literal, call_expression, check_expression, comparison_expression, conjunction_expression, constructor_expression, custom_operator, diagnostic, dictionary_literal, directive, disjunction_expression, equality_expression, fully_open_range, hex_literal, if_statement, infix_expression, integer_literal, key_path_expression, key_path_string_expression, lambda_literal, line_string_literal, macro_invocation, multi_line_string_literal, multiplicative_expression, navigation_expression, "nil", nil_coalescing_expression, oct_literal, open_end_range_expression, open_start_range_expression, optional_chain_marker, playground_literal, postfix_expression, prefix_expression, range_expression, raw_string_literal, real_literal, regex_literal, selector_expression, self_expression, simple_identifier, special_literal, super_expression, switch_statement, ternary_expression, try_expression, tuple_expression, value_pack_expansion, value_parameter_pack, "|", "~"] + lhs: [additive_expression, array_literal, as_expression, assignment, await_expression, bin_literal, bitwise_operation, boolean_literal, call_expression, check_expression, comparison_expression, conjunction_expression, constructor_expression, diagnostic, dictionary_literal, directive, disjunction_expression, equality_expression, fully_open_range, hex_literal, if_statement, infix_expression, integer_literal, key_path_expression, key_path_string_expression, lambda_literal, line_string_literal, macro_invocation, multi_line_string_literal, multiplicative_expression, navigation_expression, "nil", nil_coalescing_expression, oct_literal, open_end_range_expression, open_start_range_expression, optional_chain_marker, playground_literal, postfix_expression, prefix_expression, range_expression, raw_string_literal, real_literal, referenceable_operator, regex_literal, selector_expression, self_expression, simple_identifier, special_literal, super_expression, switch_statement, ternary_expression, try_expression, tuple_expression, value_pack_expansion, value_parameter_pack] op: ["%", "*", "/"] - rhs: ["!=", "!==", "%", "%=", "&", "*", "*=", "+", "++", "+=", "-", "--", "-=", "/", "/=", "<", "<<", "<=", "=", "==", "===", ">", ">=", ">>", "^", additive_expression, array_literal, as_expression, assignment, await_expression, bang, bin_literal, bitwise_operation, boolean_literal, call_expression, check_expression, comparison_expression, conjunction_expression, constructor_expression, custom_operator, diagnostic, dictionary_literal, directive, disjunction_expression, equality_expression, fully_open_range, hex_literal, if_statement, infix_expression, integer_literal, key_path_expression, key_path_string_expression, lambda_literal, line_string_literal, macro_invocation, multi_line_string_literal, multiplicative_expression, navigation_expression, "nil", nil_coalescing_expression, oct_literal, open_end_range_expression, open_start_range_expression, optional_chain_marker, playground_literal, postfix_expression, prefix_expression, range_expression, raw_string_literal, real_literal, regex_literal, selector_expression, self_expression, simple_identifier, special_literal, super_expression, switch_statement, ternary_expression, try_expression, tuple_expression, value_pack_expansion, value_parameter_pack, "|", "~"] + rhs: [additive_expression, array_literal, as_expression, assignment, await_expression, bin_literal, bitwise_operation, boolean_literal, call_expression, check_expression, comparison_expression, conjunction_expression, constructor_expression, diagnostic, dictionary_literal, directive, disjunction_expression, equality_expression, fully_open_range, hex_literal, if_statement, infix_expression, integer_literal, key_path_expression, key_path_string_expression, lambda_literal, line_string_literal, macro_invocation, multi_line_string_literal, multiplicative_expression, navigation_expression, "nil", nil_coalescing_expression, oct_literal, open_end_range_expression, open_start_range_expression, optional_chain_marker, playground_literal, postfix_expression, prefix_expression, range_expression, raw_string_literal, real_literal, referenceable_operator, regex_literal, selector_expression, self_expression, simple_identifier, special_literal, super_expression, switch_statement, ternary_expression, try_expression, tuple_expression, value_pack_expansion, value_parameter_pack] mutation_modifier: navigation_expression: element?: [dictionary_type, existential_type, opaque_type] suffix: navigation_suffix - target+: ["!=", "!==", "%", "%=", "&", "(", ")", "*", "*=", "+", "++", "+=", "-", "--", "-=", "/", "/=", "<", "<<", "<=", "=", "==", "===", ">", ">=", ">>", "^", additive_expression, array_literal, array_type, as_expression, assignment, await_expression, bang, bin_literal, bitwise_operation, boolean_literal, call_expression, check_expression, comparison_expression, conjunction_expression, constructor_expression, custom_operator, diagnostic, dictionary_literal, dictionary_type, directive, disjunction_expression, equality_expression, existential_type, fully_open_range, hex_literal, if_statement, infix_expression, integer_literal, key_path_expression, key_path_string_expression, lambda_literal, line_string_literal, macro_invocation, multi_line_string_literal, multiplicative_expression, navigation_expression, "nil", nil_coalescing_expression, oct_literal, opaque_type, open_end_range_expression, open_start_range_expression, optional_chain_marker, playground_literal, postfix_expression, prefix_expression, range_expression, raw_string_literal, real_literal, regex_literal, selector_expression, self_expression, simple_identifier, special_literal, super_expression, switch_statement, ternary_expression, try_expression, tuple_expression, user_type, value_pack_expansion, value_parameter_pack, "|", "~"] + target+: ["(", ")", additive_expression, array_literal, array_type, as_expression, assignment, await_expression, bin_literal, bitwise_operation, boolean_literal, call_expression, check_expression, comparison_expression, conjunction_expression, constructor_expression, diagnostic, dictionary_literal, dictionary_type, directive, disjunction_expression, equality_expression, existential_type, fully_open_range, hex_literal, if_statement, infix_expression, integer_literal, key_path_expression, key_path_string_expression, lambda_literal, line_string_literal, macro_invocation, multi_line_string_literal, multiplicative_expression, navigation_expression, "nil", nil_coalescing_expression, oct_literal, opaque_type, open_end_range_expression, open_start_range_expression, optional_chain_marker, playground_literal, postfix_expression, prefix_expression, range_expression, raw_string_literal, real_literal, referenceable_operator, regex_literal, selector_expression, self_expression, simple_identifier, special_literal, super_expression, switch_statement, ternary_expression, try_expression, tuple_expression, user_type, value_pack_expansion, value_parameter_pack] navigation_suffix: suffix: [integer_literal, simple_identifier] nil_coalescing_expression: - if_nil: ["!=", "!==", "%", "%=", "&", "*", "*=", "+", "++", "+=", "-", "--", "-=", "/", "/=", "<", "<<", "<=", "=", "==", "===", ">", ">=", ">>", "^", additive_expression, array_literal, as_expression, assignment, await_expression, bang, bin_literal, bitwise_operation, boolean_literal, call_expression, check_expression, comparison_expression, conjunction_expression, constructor_expression, custom_operator, diagnostic, dictionary_literal, directive, disjunction_expression, equality_expression, fully_open_range, hex_literal, if_statement, infix_expression, integer_literal, key_path_expression, key_path_string_expression, lambda_literal, line_string_literal, macro_invocation, multi_line_string_literal, multiplicative_expression, navigation_expression, "nil", nil_coalescing_expression, oct_literal, open_end_range_expression, open_start_range_expression, optional_chain_marker, playground_literal, postfix_expression, prefix_expression, range_expression, raw_string_literal, real_literal, regex_literal, selector_expression, self_expression, simple_identifier, special_literal, super_expression, switch_statement, ternary_expression, try_expression, tuple_expression, value_pack_expansion, value_parameter_pack, "|", "~"] - value: ["!=", "!==", "%", "%=", "&", "*", "*=", "+", "++", "+=", "-", "--", "-=", "/", "/=", "<", "<<", "<=", "=", "==", "===", ">", ">=", ">>", "^", additive_expression, array_literal, as_expression, assignment, await_expression, bang, bin_literal, bitwise_operation, boolean_literal, call_expression, check_expression, comparison_expression, conjunction_expression, constructor_expression, custom_operator, diagnostic, dictionary_literal, directive, disjunction_expression, equality_expression, fully_open_range, hex_literal, if_statement, infix_expression, integer_literal, key_path_expression, key_path_string_expression, lambda_literal, line_string_literal, macro_invocation, multi_line_string_literal, multiplicative_expression, navigation_expression, "nil", nil_coalescing_expression, oct_literal, open_end_range_expression, open_start_range_expression, optional_chain_marker, playground_literal, postfix_expression, prefix_expression, range_expression, raw_string_literal, real_literal, regex_literal, selector_expression, self_expression, simple_identifier, special_literal, super_expression, switch_statement, ternary_expression, try_expression, tuple_expression, value_pack_expansion, value_parameter_pack, "|", "~"] + if_nil: [additive_expression, array_literal, as_expression, assignment, await_expression, bin_literal, bitwise_operation, boolean_literal, call_expression, check_expression, comparison_expression, conjunction_expression, constructor_expression, diagnostic, dictionary_literal, directive, disjunction_expression, equality_expression, fully_open_range, hex_literal, if_statement, infix_expression, integer_literal, key_path_expression, key_path_string_expression, lambda_literal, line_string_literal, macro_invocation, multi_line_string_literal, multiplicative_expression, navigation_expression, "nil", nil_coalescing_expression, oct_literal, open_end_range_expression, open_start_range_expression, optional_chain_marker, playground_literal, postfix_expression, prefix_expression, range_expression, raw_string_literal, real_literal, referenceable_operator, regex_literal, selector_expression, self_expression, simple_identifier, special_literal, super_expression, switch_statement, ternary_expression, try_expression, tuple_expression, value_pack_expansion, value_parameter_pack] + value: [additive_expression, array_literal, as_expression, assignment, await_expression, bin_literal, bitwise_operation, boolean_literal, call_expression, check_expression, comparison_expression, conjunction_expression, constructor_expression, diagnostic, dictionary_literal, directive, disjunction_expression, equality_expression, fully_open_range, hex_literal, if_statement, infix_expression, integer_literal, key_path_expression, key_path_string_expression, lambda_literal, line_string_literal, macro_invocation, multi_line_string_literal, multiplicative_expression, navigation_expression, "nil", nil_coalescing_expression, oct_literal, open_end_range_expression, open_start_range_expression, optional_chain_marker, playground_literal, postfix_expression, prefix_expression, range_expression, raw_string_literal, real_literal, referenceable_operator, regex_literal, selector_expression, self_expression, simple_identifier, special_literal, super_expression, switch_statement, ternary_expression, try_expression, tuple_expression, value_pack_expansion, value_parameter_pack] oct_literal: opaque_type: $children: [array_type, dictionary_type, existential_type, function_type, metatype, opaque_type, optional_type, protocol_composition_type, suppressed_constraint, tuple_type, type_pack_expansion, type_parameter_pack, user_type] open_end_range_expression: - start: ["!=", "!==", "%", "%=", "&", "*", "*=", "+", "++", "+=", "-", "--", "-=", "/", "/=", "<", "<<", "<=", "=", "==", "===", ">", ">=", ">>", "^", additive_expression, array_literal, as_expression, assignment, await_expression, bang, bin_literal, bitwise_operation, boolean_literal, call_expression, check_expression, comparison_expression, conjunction_expression, constructor_expression, custom_operator, diagnostic, dictionary_literal, directive, disjunction_expression, equality_expression, fully_open_range, hex_literal, if_statement, infix_expression, integer_literal, key_path_expression, key_path_string_expression, lambda_literal, line_string_literal, macro_invocation, multi_line_string_literal, multiplicative_expression, navigation_expression, "nil", nil_coalescing_expression, oct_literal, open_end_range_expression, open_start_range_expression, optional_chain_marker, playground_literal, postfix_expression, prefix_expression, range_expression, raw_string_literal, real_literal, regex_literal, selector_expression, self_expression, simple_identifier, special_literal, super_expression, switch_statement, ternary_expression, try_expression, tuple_expression, value_pack_expansion, value_parameter_pack, "|", "~"] + start: [additive_expression, array_literal, as_expression, assignment, await_expression, bin_literal, bitwise_operation, boolean_literal, call_expression, check_expression, comparison_expression, conjunction_expression, constructor_expression, diagnostic, dictionary_literal, directive, disjunction_expression, equality_expression, fully_open_range, hex_literal, if_statement, infix_expression, integer_literal, key_path_expression, key_path_string_expression, lambda_literal, line_string_literal, macro_invocation, multi_line_string_literal, multiplicative_expression, navigation_expression, "nil", nil_coalescing_expression, oct_literal, open_end_range_expression, open_start_range_expression, optional_chain_marker, playground_literal, postfix_expression, prefix_expression, range_expression, raw_string_literal, real_literal, referenceable_operator, regex_literal, selector_expression, self_expression, simple_identifier, special_literal, super_expression, switch_statement, ternary_expression, try_expression, tuple_expression, value_pack_expansion, value_parameter_pack] open_start_range_expression: - end: ["!=", "!==", "%", "%=", "&", "*", "*=", "+", "++", "+=", "-", "--", "-=", "/", "/=", "<", "<<", "<=", "=", "==", "===", ">", ">=", ">>", "^", additive_expression, array_literal, as_expression, assignment, await_expression, bang, bin_literal, bitwise_operation, boolean_literal, call_expression, check_expression, comparison_expression, conjunction_expression, constructor_expression, custom_operator, diagnostic, dictionary_literal, directive, disjunction_expression, equality_expression, fully_open_range, hex_literal, if_statement, infix_expression, integer_literal, key_path_expression, key_path_string_expression, lambda_literal, line_string_literal, macro_invocation, multi_line_string_literal, multiplicative_expression, navigation_expression, "nil", nil_coalescing_expression, oct_literal, open_end_range_expression, open_start_range_expression, optional_chain_marker, playground_literal, postfix_expression, prefix_expression, range_expression, raw_string_literal, real_literal, regex_literal, selector_expression, self_expression, simple_identifier, special_literal, super_expression, switch_statement, ternary_expression, try_expression, tuple_expression, value_pack_expansion, value_parameter_pack, "|", "~"] + end: [additive_expression, array_literal, as_expression, assignment, await_expression, bin_literal, bitwise_operation, boolean_literal, call_expression, check_expression, comparison_expression, conjunction_expression, constructor_expression, diagnostic, dictionary_literal, directive, disjunction_expression, equality_expression, fully_open_range, hex_literal, if_statement, infix_expression, integer_literal, key_path_expression, key_path_string_expression, lambda_literal, line_string_literal, macro_invocation, multi_line_string_literal, multiplicative_expression, navigation_expression, "nil", nil_coalescing_expression, oct_literal, open_end_range_expression, open_start_range_expression, optional_chain_marker, playground_literal, postfix_expression, prefix_expression, range_expression, raw_string_literal, real_literal, referenceable_operator, regex_literal, selector_expression, self_expression, simple_identifier, special_literal, super_expression, switch_statement, ternary_expression, try_expression, tuple_expression, value_pack_expansion, value_parameter_pack] operator_declaration: - $children*: [bang, custom_operator, deprecated_operator_declaration_body, simple_identifier] + $children+: [deprecated_operator_declaration_body, referenceable_operator, simple_identifier] optional_chain_marker: - $children?: [additive_expression, array_literal, as_expression, assignment, await_expression, bang, bin_literal, bitwise_operation, boolean_literal, call_expression, check_expression, comparison_expression, conjunction_expression, constructor_expression, custom_operator, diagnostic, dictionary_literal, directive, disjunction_expression, equality_expression, fully_open_range, hex_literal, if_statement, infix_expression, integer_literal, key_path_expression, key_path_string_expression, lambda_literal, line_string_literal, macro_invocation, multi_line_string_literal, multiplicative_expression, navigation_expression, nil_coalescing_expression, oct_literal, open_end_range_expression, open_start_range_expression, optional_chain_marker, playground_literal, postfix_expression, prefix_expression, range_expression, raw_string_literal, real_literal, regex_literal, selector_expression, self_expression, simple_identifier, special_literal, super_expression, switch_statement, ternary_expression, try_expression, tuple_expression, value_pack_expansion, value_parameter_pack] + $children?: [additive_expression, array_literal, as_expression, assignment, await_expression, bin_literal, bitwise_operation, boolean_literal, call_expression, check_expression, comparison_expression, conjunction_expression, constructor_expression, diagnostic, dictionary_literal, directive, disjunction_expression, equality_expression, fully_open_range, hex_literal, if_statement, infix_expression, integer_literal, key_path_expression, key_path_string_expression, lambda_literal, line_string_literal, macro_invocation, multi_line_string_literal, multiplicative_expression, navigation_expression, nil_coalescing_expression, oct_literal, open_end_range_expression, open_start_range_expression, optional_chain_marker, playground_literal, postfix_expression, prefix_expression, range_expression, raw_string_literal, real_literal, referenceable_operator, regex_literal, selector_expression, self_expression, simple_identifier, special_literal, super_expression, switch_statement, ternary_expression, try_expression, tuple_expression, value_pack_expansion, value_parameter_pack] optional_type: wrapped: [array_type, dictionary_type, tuple_type, user_type] ownership_modifier: @@ -281,14 +281,14 @@ named: parameter_modifiers: $children+: parameter_modifier pattern: - $children*: [additive_expression, array_literal, as_expression, assignment, await_expression, bang, bin_literal, bitwise_operation, boolean_literal, call_expression, check_expression, comparison_expression, conjunction_expression, constructor_expression, custom_operator, diagnostic, dictionary_literal, directive, disjunction_expression, equality_expression, fully_open_range, hex_literal, if_statement, infix_expression, integer_literal, key_path_expression, key_path_string_expression, lambda_literal, line_string_literal, macro_invocation, multi_line_string_literal, multiplicative_expression, navigation_expression, nil_coalescing_expression, oct_literal, open_end_range_expression, open_start_range_expression, optional_chain_marker, pattern, playground_literal, postfix_expression, prefix_expression, range_expression, raw_string_literal, real_literal, regex_literal, selector_expression, self_expression, simple_identifier, special_literal, super_expression, switch_statement, ternary_expression, try_expression, tuple_expression, type_modifiers, user_type, value_binding_pattern, value_pack_expansion, value_parameter_pack, wildcard_pattern] + $children*: [additive_expression, array_literal, as_expression, assignment, await_expression, bin_literal, bitwise_operation, boolean_literal, call_expression, check_expression, comparison_expression, conjunction_expression, constructor_expression, diagnostic, dictionary_literal, directive, disjunction_expression, equality_expression, fully_open_range, hex_literal, if_statement, infix_expression, integer_literal, key_path_expression, key_path_string_expression, lambda_literal, line_string_literal, macro_invocation, multi_line_string_literal, multiplicative_expression, navigation_expression, nil_coalescing_expression, oct_literal, open_end_range_expression, open_start_range_expression, optional_chain_marker, pattern, playground_literal, postfix_expression, prefix_expression, range_expression, raw_string_literal, real_literal, referenceable_operator, regex_literal, selector_expression, self_expression, simple_identifier, special_literal, super_expression, switch_statement, ternary_expression, try_expression, tuple_expression, type_modifiers, user_type, value_binding_pattern, value_pack_expansion, value_parameter_pack, wildcard_pattern] bound_identifier?: simple_identifier name?: [array_type, dictionary_type, existential_type, function_type, metatype, opaque_type, optional_type, protocol_composition_type, suppressed_constraint, tuple_type, type_pack_expansion, type_parameter_pack, user_type] playground_literal: - $children+: [additive_expression, array_literal, as_expression, assignment, await_expression, bang, bin_literal, bitwise_operation, boolean_literal, call_expression, check_expression, comparison_expression, conjunction_expression, constructor_expression, custom_operator, diagnostic, dictionary_literal, directive, disjunction_expression, equality_expression, fully_open_range, hex_literal, if_statement, infix_expression, integer_literal, key_path_expression, key_path_string_expression, lambda_literal, line_string_literal, macro_invocation, multi_line_string_literal, multiplicative_expression, navigation_expression, nil_coalescing_expression, oct_literal, open_end_range_expression, open_start_range_expression, optional_chain_marker, playground_literal, postfix_expression, prefix_expression, range_expression, raw_string_literal, real_literal, regex_literal, selector_expression, self_expression, simple_identifier, special_literal, super_expression, switch_statement, ternary_expression, try_expression, tuple_expression, value_pack_expansion, value_parameter_pack] + $children+: [additive_expression, array_literal, as_expression, assignment, await_expression, bin_literal, bitwise_operation, boolean_literal, call_expression, check_expression, comparison_expression, conjunction_expression, constructor_expression, diagnostic, dictionary_literal, directive, disjunction_expression, equality_expression, fully_open_range, hex_literal, if_statement, infix_expression, integer_literal, key_path_expression, key_path_string_expression, lambda_literal, line_string_literal, macro_invocation, multi_line_string_literal, multiplicative_expression, navigation_expression, nil_coalescing_expression, oct_literal, open_end_range_expression, open_start_range_expression, optional_chain_marker, playground_literal, postfix_expression, prefix_expression, range_expression, raw_string_literal, real_literal, referenceable_operator, regex_literal, selector_expression, self_expression, simple_identifier, special_literal, super_expression, switch_statement, ternary_expression, try_expression, tuple_expression, value_pack_expansion, value_parameter_pack] postfix_expression: operation: ["++", "--", bang] - target: ["!=", "!==", "%", "%=", "&", "*", "*=", "+", "++", "+=", "-", "--", "-=", "/", "/=", "<", "<<", "<=", "=", "==", "===", ">", ">=", ">>", "^", additive_expression, array_literal, as_expression, assignment, await_expression, bang, bin_literal, bitwise_operation, boolean_literal, call_expression, check_expression, comparison_expression, conjunction_expression, constructor_expression, custom_operator, diagnostic, dictionary_literal, directive, disjunction_expression, equality_expression, fully_open_range, hex_literal, if_statement, infix_expression, integer_literal, key_path_expression, key_path_string_expression, lambda_literal, line_string_literal, macro_invocation, multi_line_string_literal, multiplicative_expression, navigation_expression, "nil", nil_coalescing_expression, oct_literal, open_end_range_expression, open_start_range_expression, optional_chain_marker, playground_literal, postfix_expression, prefix_expression, range_expression, raw_string_literal, real_literal, regex_literal, selector_expression, self_expression, simple_identifier, special_literal, super_expression, switch_statement, ternary_expression, try_expression, tuple_expression, value_pack_expansion, value_parameter_pack, "|", "~"] + target: [additive_expression, array_literal, as_expression, assignment, await_expression, bin_literal, bitwise_operation, boolean_literal, call_expression, check_expression, comparison_expression, conjunction_expression, constructor_expression, diagnostic, dictionary_literal, directive, disjunction_expression, equality_expression, fully_open_range, hex_literal, if_statement, infix_expression, integer_literal, key_path_expression, key_path_string_expression, lambda_literal, line_string_literal, macro_invocation, multi_line_string_literal, multiplicative_expression, navigation_expression, "nil", nil_coalescing_expression, oct_literal, open_end_range_expression, open_start_range_expression, optional_chain_marker, playground_literal, postfix_expression, prefix_expression, range_expression, raw_string_literal, real_literal, referenceable_operator, regex_literal, selector_expression, self_expression, simple_identifier, special_literal, super_expression, switch_statement, ternary_expression, try_expression, tuple_expression, value_pack_expansion, value_parameter_pack] precedence_group_attribute: $children+: [boolean_literal, simple_identifier] precedence_group_attributes: @@ -297,13 +297,13 @@ named: $children+: [precedence_group_attributes, simple_identifier] prefix_expression: operation: ["&", "+", "++", "-", "--", ".", bang, custom_operator, "~"] - target: ["!=", "!==", "%", "%=", "&", "*", "*=", "+", "++", "+=", "-", "--", "-=", "/", "/=", "<", "<<", "<=", "=", "==", "===", ">", ">=", ">>", "^", _expression, additive_expression, array_literal, as_expression, assignment, await_expression, bang, bin_literal, bitwise_operation, boolean_literal, call_expression, check_expression, comparison_expression, conjunction_expression, constructor_expression, custom_operator, diagnostic, dictionary_literal, directive, disjunction_expression, equality_expression, fully_open_range, hex_literal, if_statement, infix_expression, integer_literal, key_path_expression, key_path_string_expression, lambda_literal, line_string_literal, macro_invocation, multi_line_string_literal, multiplicative_expression, navigation_expression, "nil", nil_coalescing_expression, oct_literal, open_end_range_expression, open_start_range_expression, optional_chain_marker, playground_literal, postfix_expression, prefix_expression, range_expression, raw_string_literal, real_literal, regex_literal, selector_expression, self_expression, simple_identifier, special_literal, super_expression, switch_statement, ternary_expression, try_expression, tuple_expression, value_pack_expansion, value_parameter_pack, "|", "~"] + target: [_expression, additive_expression, array_literal, as_expression, assignment, await_expression, bin_literal, bitwise_operation, boolean_literal, call_expression, check_expression, comparison_expression, conjunction_expression, constructor_expression, diagnostic, dictionary_literal, directive, disjunction_expression, equality_expression, fully_open_range, hex_literal, if_statement, infix_expression, integer_literal, key_path_expression, key_path_string_expression, lambda_literal, line_string_literal, macro_invocation, multi_line_string_literal, multiplicative_expression, navigation_expression, "nil", nil_coalescing_expression, oct_literal, open_end_range_expression, open_start_range_expression, optional_chain_marker, playground_literal, postfix_expression, prefix_expression, range_expression, raw_string_literal, real_literal, referenceable_operator, regex_literal, selector_expression, self_expression, simple_identifier, special_literal, super_expression, switch_statement, ternary_expression, try_expression, tuple_expression, value_pack_expansion, value_parameter_pack] property_behavior_modifier: property_declaration: $children*: [attribute, inheritance_modifier, modifiers, ownership_modifier, property_behavior_modifier, type_annotation, type_constraints, value_binding_pattern, willset_didset_block] computed_value*: computed_property name+: pattern - value*: ["!=", "!==", "%", "%=", "&", "*", "*=", "+", "++", "+=", "-", "--", "-=", "/", "/=", "<", "<<", "<=", "=", "==", "===", ">", ">=", ">>", "^", additive_expression, array_literal, as_expression, assignment, await_expression, bang, bin_literal, bitwise_operation, boolean_literal, call_expression, check_expression, comparison_expression, conjunction_expression, constructor_expression, custom_operator, diagnostic, dictionary_literal, directive, disjunction_expression, equality_expression, fully_open_range, hex_literal, if_statement, infix_expression, integer_literal, key_path_expression, key_path_string_expression, lambda_literal, line_string_literal, macro_invocation, multi_line_string_literal, multiplicative_expression, navigation_expression, "nil", nil_coalescing_expression, oct_literal, open_end_range_expression, open_start_range_expression, optional_chain_marker, playground_literal, postfix_expression, prefix_expression, range_expression, raw_string_literal, real_literal, regex_literal, selector_expression, self_expression, simple_identifier, special_literal, super_expression, switch_statement, ternary_expression, try_expression, tuple_expression, value_pack_expansion, value_parameter_pack, "|", "~"] + value*: [additive_expression, array_literal, as_expression, assignment, await_expression, bin_literal, bitwise_operation, boolean_literal, call_expression, check_expression, comparison_expression, conjunction_expression, constructor_expression, diagnostic, dictionary_literal, directive, disjunction_expression, equality_expression, fully_open_range, hex_literal, if_statement, infix_expression, integer_literal, key_path_expression, key_path_string_expression, lambda_literal, line_string_literal, macro_invocation, multi_line_string_literal, multiplicative_expression, navigation_expression, "nil", nil_coalescing_expression, oct_literal, open_end_range_expression, open_start_range_expression, optional_chain_marker, playground_literal, postfix_expression, prefix_expression, range_expression, raw_string_literal, real_literal, referenceable_operator, regex_literal, selector_expression, self_expression, simple_identifier, special_literal, super_expression, switch_statement, ternary_expression, try_expression, tuple_expression, value_pack_expansion, value_parameter_pack] property_modifier: protocol_body: $children*: [associatedtype_declaration, deinit_declaration, init_declaration, protocol_function_declaration, protocol_property_declaration, subscript_declaration, typealias_declaration] @@ -317,8 +317,8 @@ named: name: type_identifier protocol_function_declaration: $children*: [attribute, modifiers, parameter, statements, throws, throws_clause, type_constraints, type_parameters] - default_value*: ["!=", "!==", "%", "%=", "&", "*", "*=", "+", "++", "+=", "-", "--", "-=", "/", "/=", "<", "<<", "<=", "=", "==", "===", ">", ">=", ">>", "^", additive_expression, array_literal, as_expression, assignment, await_expression, bang, bin_literal, bitwise_operation, boolean_literal, call_expression, check_expression, comparison_expression, conjunction_expression, constructor_expression, custom_operator, diagnostic, dictionary_literal, directive, disjunction_expression, equality_expression, fully_open_range, hex_literal, if_statement, infix_expression, integer_literal, key_path_expression, key_path_string_expression, lambda_literal, line_string_literal, macro_invocation, multi_line_string_literal, multiplicative_expression, navigation_expression, "nil", nil_coalescing_expression, oct_literal, open_end_range_expression, open_start_range_expression, optional_chain_marker, playground_literal, postfix_expression, prefix_expression, range_expression, raw_string_literal, real_literal, regex_literal, selector_expression, self_expression, simple_identifier, special_literal, super_expression, switch_statement, ternary_expression, try_expression, tuple_expression, value_pack_expansion, value_parameter_pack, "|", "~"] - name*: ["!=", "!==", "%", "%=", "&", "*", "*=", "+", "++", "+=", "-", "--", "-=", "/", "/=", "<", "<<", "<=", "=", "==", "===", ">", ">=", ">>", "^", array_type, bang, custom_operator, dictionary_type, existential_type, function_type, metatype, opaque_type, optional_type, protocol_composition_type, simple_identifier, suppressed_constraint, tuple_type, type_pack_expansion, type_parameter_pack, user_type, "|", "~"] + default_value*: [additive_expression, array_literal, as_expression, assignment, await_expression, bin_literal, bitwise_operation, boolean_literal, call_expression, check_expression, comparison_expression, conjunction_expression, constructor_expression, diagnostic, dictionary_literal, directive, disjunction_expression, equality_expression, fully_open_range, hex_literal, if_statement, infix_expression, integer_literal, key_path_expression, key_path_string_expression, lambda_literal, line_string_literal, macro_invocation, multi_line_string_literal, multiplicative_expression, navigation_expression, "nil", nil_coalescing_expression, oct_literal, open_end_range_expression, open_start_range_expression, optional_chain_marker, playground_literal, postfix_expression, prefix_expression, range_expression, raw_string_literal, real_literal, referenceable_operator, regex_literal, selector_expression, self_expression, simple_identifier, special_literal, super_expression, switch_statement, ternary_expression, try_expression, tuple_expression, value_pack_expansion, value_parameter_pack] + name*: [array_type, dictionary_type, existential_type, function_type, metatype, opaque_type, optional_type, protocol_composition_type, referenceable_operator, simple_identifier, suppressed_constraint, tuple_type, type_pack_expansion, type_parameter_pack, user_type] return_type*: ["!", array_type, dictionary_type, existential_type, function_type, metatype, opaque_type, optional_type, protocol_composition_type, suppressed_constraint, tuple_type, type_modifiers, type_pack_expansion, type_parameter_pack, user_type] protocol_property_declaration: $children+: [modifiers, protocol_property_requirements, type_annotation, type_constraints] @@ -326,9 +326,9 @@ named: protocol_property_requirements: $children*: [getter_specifier, setter_specifier] range_expression: - end: ["!=", "!==", "%", "%=", "&", "*", "*=", "+", "++", "+=", "-", "--", "-=", "/", "/=", "<", "<<", "<=", "=", "==", "===", ">", ">=", ">>", "^", additive_expression, array_literal, as_expression, assignment, await_expression, bang, bin_literal, bitwise_operation, boolean_literal, call_expression, check_expression, comparison_expression, conjunction_expression, constructor_expression, custom_operator, diagnostic, dictionary_literal, directive, disjunction_expression, equality_expression, fully_open_range, hex_literal, if_statement, infix_expression, integer_literal, key_path_expression, key_path_string_expression, lambda_literal, line_string_literal, macro_invocation, multi_line_string_literal, multiplicative_expression, navigation_expression, "nil", nil_coalescing_expression, oct_literal, open_end_range_expression, open_start_range_expression, optional_chain_marker, playground_literal, postfix_expression, prefix_expression, range_expression, raw_string_literal, real_literal, regex_literal, selector_expression, self_expression, simple_identifier, special_literal, super_expression, switch_statement, ternary_expression, try_expression, tuple_expression, value_pack_expansion, value_parameter_pack, "|", "~"] + end: [additive_expression, array_literal, as_expression, assignment, await_expression, bin_literal, bitwise_operation, boolean_literal, call_expression, check_expression, comparison_expression, conjunction_expression, constructor_expression, diagnostic, dictionary_literal, directive, disjunction_expression, equality_expression, fully_open_range, hex_literal, if_statement, infix_expression, integer_literal, key_path_expression, key_path_string_expression, lambda_literal, line_string_literal, macro_invocation, multi_line_string_literal, multiplicative_expression, navigation_expression, "nil", nil_coalescing_expression, oct_literal, open_end_range_expression, open_start_range_expression, optional_chain_marker, playground_literal, postfix_expression, prefix_expression, range_expression, raw_string_literal, real_literal, referenceable_operator, regex_literal, selector_expression, self_expression, simple_identifier, special_literal, super_expression, switch_statement, ternary_expression, try_expression, tuple_expression, value_pack_expansion, value_parameter_pack] op: ["...", "..<"] - start: ["!=", "!==", "%", "%=", "&", "*", "*=", "+", "++", "+=", "-", "--", "-=", "/", "/=", "<", "<<", "<=", "=", "==", "===", ">", ">=", ">>", "^", additive_expression, array_literal, as_expression, assignment, await_expression, bang, bin_literal, bitwise_operation, boolean_literal, call_expression, check_expression, comparison_expression, conjunction_expression, constructor_expression, custom_operator, diagnostic, dictionary_literal, directive, disjunction_expression, equality_expression, fully_open_range, hex_literal, if_statement, infix_expression, integer_literal, key_path_expression, key_path_string_expression, lambda_literal, line_string_literal, macro_invocation, multi_line_string_literal, multiplicative_expression, navigation_expression, "nil", nil_coalescing_expression, oct_literal, open_end_range_expression, open_start_range_expression, optional_chain_marker, playground_literal, postfix_expression, prefix_expression, range_expression, raw_string_literal, real_literal, regex_literal, selector_expression, self_expression, simple_identifier, special_literal, super_expression, switch_statement, ternary_expression, try_expression, tuple_expression, value_pack_expansion, value_parameter_pack, "|", "~"] + start: [additive_expression, array_literal, as_expression, assignment, await_expression, bin_literal, bitwise_operation, boolean_literal, call_expression, check_expression, comparison_expression, conjunction_expression, constructor_expression, diagnostic, dictionary_literal, directive, disjunction_expression, equality_expression, fully_open_range, hex_literal, if_statement, infix_expression, integer_literal, key_path_expression, key_path_string_expression, lambda_literal, line_string_literal, macro_invocation, multi_line_string_literal, multiplicative_expression, navigation_expression, "nil", nil_coalescing_expression, oct_literal, open_end_range_expression, open_start_range_expression, optional_chain_marker, playground_literal, postfix_expression, prefix_expression, range_expression, raw_string_literal, real_literal, referenceable_operator, regex_literal, selector_expression, self_expression, simple_identifier, special_literal, super_expression, switch_statement, ternary_expression, try_expression, tuple_expression, value_pack_expansion, value_parameter_pack] raw_str_continuing_indicator: raw_str_end_part: raw_str_interpolation: @@ -341,56 +341,58 @@ named: interpolation*: raw_str_interpolation text+: [raw_str_end_part, raw_str_part] real_literal: + referenceable_operator: + $children?: [bang, custom_operator] regex_literal: repeat_while_statement: $children?: statements bound_identifier*: simple_identifier - condition+: ["!=", "!==", "%", "%=", "&", "(", ")", "*", "*=", "+", "++", "+=", ",", "-", "--", "-=", ".", "/", "/=", ":", "<", "<<", "<=", "=", "==", "===", ">", ">=", ">>", "?", "^", additive_expression, array_literal, array_type, "as", as_expression, assignment, "async", availability_condition, await_expression, bang, bin_literal, bitwise_operation, boolean_literal, call_expression, "case", check_expression, comparison_expression, conjunction_expression, constructor_expression, custom_operator, diagnostic, dictionary_literal, dictionary_type, directive, disjunction_expression, equality_expression, existential_type, fully_open_range, function_type, hex_literal, if_statement, infix_expression, integer_literal, "is", key_path_expression, key_path_string_expression, lambda_literal, line_string_literal, macro_invocation, metatype, multi_line_string_literal, multiplicative_expression, navigation_expression, "nil", nil_coalescing_expression, oct_literal, opaque_type, open_end_range_expression, open_start_range_expression, optional_chain_marker, optional_type, pattern, playground_literal, postfix_expression, prefix_expression, protocol_composition_type, range_expression, raw_string_literal, real_literal, regex_literal, selector_expression, self_expression, simple_identifier, special_literal, super_expression, suppressed_constraint, switch_statement, ternary_expression, try_expression, tuple_expression, tuple_type, type_annotation, type_modifiers, type_pack_expansion, type_parameter_pack, user_type, value_binding_pattern, value_pack_expansion, value_parameter_pack, where_clause, wildcard_pattern, "|", "~"] + condition+: ["(", ")", ",", ".", ":", "=", "?", additive_expression, array_literal, array_type, "as", as_expression, assignment, "async", availability_condition, await_expression, bin_literal, bitwise_operation, boolean_literal, call_expression, "case", check_expression, comparison_expression, conjunction_expression, constructor_expression, diagnostic, dictionary_literal, dictionary_type, directive, disjunction_expression, equality_expression, existential_type, fully_open_range, function_type, hex_literal, if_statement, infix_expression, integer_literal, "is", key_path_expression, key_path_string_expression, lambda_literal, line_string_literal, macro_invocation, metatype, multi_line_string_literal, multiplicative_expression, navigation_expression, "nil", nil_coalescing_expression, oct_literal, opaque_type, open_end_range_expression, open_start_range_expression, optional_chain_marker, optional_type, pattern, playground_literal, postfix_expression, prefix_expression, protocol_composition_type, range_expression, raw_string_literal, real_literal, referenceable_operator, regex_literal, selector_expression, self_expression, simple_identifier, special_literal, super_expression, suppressed_constraint, switch_statement, ternary_expression, try_expression, tuple_expression, tuple_type, type_annotation, type_modifiers, type_pack_expansion, type_parameter_pack, user_type, value_binding_pattern, value_pack_expansion, value_parameter_pack, where_clause, wildcard_pattern] name*: [array_type, dictionary_type, existential_type, function_type, metatype, opaque_type, optional_type, protocol_composition_type, suppressed_constraint, tuple_type, type_pack_expansion, type_parameter_pack, user_type] selector_expression: - $children?: [additive_expression, array_literal, as_expression, assignment, await_expression, bang, bin_literal, bitwise_operation, boolean_literal, call_expression, check_expression, comparison_expression, conjunction_expression, constructor_expression, custom_operator, diagnostic, dictionary_literal, directive, disjunction_expression, equality_expression, fully_open_range, hex_literal, if_statement, infix_expression, integer_literal, key_path_expression, key_path_string_expression, lambda_literal, line_string_literal, macro_invocation, multi_line_string_literal, multiplicative_expression, navigation_expression, nil_coalescing_expression, oct_literal, open_end_range_expression, open_start_range_expression, optional_chain_marker, playground_literal, postfix_expression, prefix_expression, range_expression, raw_string_literal, real_literal, regex_literal, selector_expression, self_expression, simple_identifier, special_literal, super_expression, switch_statement, ternary_expression, try_expression, tuple_expression, value_pack_expansion, value_parameter_pack] + $children?: [additive_expression, array_literal, as_expression, assignment, await_expression, bin_literal, bitwise_operation, boolean_literal, call_expression, check_expression, comparison_expression, conjunction_expression, constructor_expression, diagnostic, dictionary_literal, directive, disjunction_expression, equality_expression, fully_open_range, hex_literal, if_statement, infix_expression, integer_literal, key_path_expression, key_path_string_expression, lambda_literal, line_string_literal, macro_invocation, multi_line_string_literal, multiplicative_expression, navigation_expression, nil_coalescing_expression, oct_literal, open_end_range_expression, open_start_range_expression, optional_chain_marker, playground_literal, postfix_expression, prefix_expression, range_expression, raw_string_literal, real_literal, referenceable_operator, regex_literal, selector_expression, self_expression, simple_identifier, special_literal, super_expression, switch_statement, ternary_expression, try_expression, tuple_expression, value_pack_expansion, value_parameter_pack] self_expression: setter_specifier: $children?: mutation_modifier shebang_line: simple_identifier: source_file: - $children*: [additive_expression, array_literal, as_expression, assignment, associatedtype_declaration, await_expression, bang, bin_literal, bitwise_operation, boolean_literal, call_expression, check_expression, class_declaration, comparison_expression, conjunction_expression, constructor_expression, custom_operator, diagnostic, dictionary_literal, directive, disjunction_expression, do_statement, equality_expression, for_statement, fully_open_range, function_declaration, guard_statement, hex_literal, if_statement, import_declaration, infix_expression, init_declaration, integer_literal, key_path_expression, key_path_string_expression, lambda_literal, line_string_literal, macro_declaration, macro_invocation, multi_line_string_literal, multiplicative_expression, navigation_expression, nil_coalescing_expression, oct_literal, open_end_range_expression, open_start_range_expression, operator_declaration, optional_chain_marker, playground_literal, postfix_expression, precedence_group_declaration, prefix_expression, property_declaration, protocol_declaration, range_expression, raw_string_literal, real_literal, regex_literal, repeat_while_statement, selector_expression, self_expression, shebang_line, simple_identifier, special_literal, statement_label, super_expression, switch_statement, ternary_expression, throw_keyword, try_expression, tuple_expression, typealias_declaration, value_pack_expansion, value_parameter_pack, while_statement] + $children*: [additive_expression, array_literal, as_expression, assignment, associatedtype_declaration, await_expression, bin_literal, bitwise_operation, boolean_literal, call_expression, check_expression, class_declaration, comparison_expression, conjunction_expression, constructor_expression, diagnostic, dictionary_literal, directive, disjunction_expression, do_statement, equality_expression, for_statement, fully_open_range, function_declaration, guard_statement, hex_literal, if_statement, import_declaration, infix_expression, init_declaration, integer_literal, key_path_expression, key_path_string_expression, lambda_literal, line_string_literal, macro_declaration, macro_invocation, multi_line_string_literal, multiplicative_expression, navigation_expression, nil_coalescing_expression, oct_literal, open_end_range_expression, open_start_range_expression, operator_declaration, optional_chain_marker, playground_literal, postfix_expression, precedence_group_declaration, prefix_expression, property_declaration, protocol_declaration, range_expression, raw_string_literal, real_literal, referenceable_operator, regex_literal, repeat_while_statement, selector_expression, self_expression, shebang_line, simple_identifier, special_literal, statement_label, super_expression, switch_statement, ternary_expression, throw_keyword, try_expression, tuple_expression, typealias_declaration, value_pack_expansion, value_parameter_pack, while_statement] special_literal: statement_label: statements: - $children*: [additive_expression, array_literal, as_expression, assignment, await_expression, bang, bin_literal, bitwise_operation, boolean_literal, call_expression, check_expression, class_declaration, comparison_expression, conjunction_expression, constructor_expression, control_transfer_statement, custom_operator, diagnostic, dictionary_literal, directive, disjunction_expression, do_statement, equality_expression, for_statement, fully_open_range, function_declaration, guard_statement, hex_literal, if_statement, infix_expression, integer_literal, key_path_expression, key_path_string_expression, lambda_literal, line_string_literal, macro_invocation, multi_line_string_literal, multiplicative_expression, navigation_expression, nil_coalescing_expression, oct_literal, open_end_range_expression, open_start_range_expression, optional_chain_marker, playground_literal, postfix_expression, prefix_expression, property_declaration, range_expression, raw_string_literal, real_literal, regex_literal, repeat_while_statement, selector_expression, self_expression, simple_identifier, special_literal, statement_label, super_expression, switch_statement, ternary_expression, try_expression, tuple_expression, typealias_declaration, value_pack_expansion, value_parameter_pack, while_statement] + $children*: [additive_expression, array_literal, as_expression, assignment, await_expression, bin_literal, bitwise_operation, boolean_literal, call_expression, check_expression, class_declaration, comparison_expression, conjunction_expression, constructor_expression, control_transfer_statement, diagnostic, dictionary_literal, directive, disjunction_expression, do_statement, equality_expression, for_statement, fully_open_range, function_declaration, guard_statement, hex_literal, if_statement, infix_expression, integer_literal, key_path_expression, key_path_string_expression, lambda_literal, line_string_literal, macro_invocation, multi_line_string_literal, multiplicative_expression, navigation_expression, nil_coalescing_expression, oct_literal, open_end_range_expression, open_start_range_expression, optional_chain_marker, playground_literal, postfix_expression, prefix_expression, property_declaration, range_expression, raw_string_literal, real_literal, referenceable_operator, regex_literal, repeat_while_statement, selector_expression, self_expression, simple_identifier, special_literal, statement_label, super_expression, switch_statement, ternary_expression, try_expression, tuple_expression, typealias_declaration, value_pack_expansion, value_parameter_pack, while_statement] str_escaped_char: subscript_declaration: $children+: [attribute, computed_property, modifiers, parameter, type_constraints, type_parameters] - default_value*: ["!=", "!==", "%", "%=", "&", "*", "*=", "+", "++", "+=", "-", "--", "-=", "/", "/=", "<", "<<", "<=", "=", "==", "===", ">", ">=", ">>", "^", additive_expression, array_literal, as_expression, assignment, await_expression, bang, bin_literal, bitwise_operation, boolean_literal, call_expression, check_expression, comparison_expression, conjunction_expression, constructor_expression, custom_operator, diagnostic, dictionary_literal, directive, disjunction_expression, equality_expression, fully_open_range, hex_literal, if_statement, infix_expression, integer_literal, key_path_expression, key_path_string_expression, lambda_literal, line_string_literal, macro_invocation, multi_line_string_literal, multiplicative_expression, navigation_expression, "nil", nil_coalescing_expression, oct_literal, open_end_range_expression, open_start_range_expression, optional_chain_marker, playground_literal, postfix_expression, prefix_expression, range_expression, raw_string_literal, real_literal, regex_literal, selector_expression, self_expression, simple_identifier, special_literal, super_expression, switch_statement, ternary_expression, try_expression, tuple_expression, value_pack_expansion, value_parameter_pack, "|", "~"] + default_value*: [additive_expression, array_literal, as_expression, assignment, await_expression, bin_literal, bitwise_operation, boolean_literal, call_expression, check_expression, comparison_expression, conjunction_expression, constructor_expression, diagnostic, dictionary_literal, directive, disjunction_expression, equality_expression, fully_open_range, hex_literal, if_statement, infix_expression, integer_literal, key_path_expression, key_path_string_expression, lambda_literal, line_string_literal, macro_invocation, multi_line_string_literal, multiplicative_expression, navigation_expression, "nil", nil_coalescing_expression, oct_literal, open_end_range_expression, open_start_range_expression, optional_chain_marker, playground_literal, postfix_expression, prefix_expression, range_expression, raw_string_literal, real_literal, referenceable_operator, regex_literal, selector_expression, self_expression, simple_identifier, special_literal, super_expression, switch_statement, ternary_expression, try_expression, tuple_expression, value_pack_expansion, value_parameter_pack] name?: [array_type, dictionary_type, existential_type, function_type, metatype, opaque_type, optional_type, protocol_composition_type, suppressed_constraint, tuple_type, type_pack_expansion, type_parameter_pack, user_type] return_type*: ["!", array_type, dictionary_type, existential_type, function_type, metatype, opaque_type, optional_type, protocol_composition_type, suppressed_constraint, tuple_type, type_modifiers, type_pack_expansion, type_parameter_pack, user_type] super_expression: suppressed_constraint: suppressed: type_identifier switch_entry: - $children+: [additive_expression, array_literal, as_expression, assignment, await_expression, bang, bin_literal, bitwise_operation, boolean_literal, call_expression, check_expression, comparison_expression, conjunction_expression, constructor_expression, custom_operator, default_keyword, diagnostic, dictionary_literal, directive, disjunction_expression, equality_expression, fully_open_range, hex_literal, if_statement, infix_expression, integer_literal, key_path_expression, key_path_string_expression, lambda_literal, line_string_literal, macro_invocation, modifiers, multi_line_string_literal, multiplicative_expression, navigation_expression, nil_coalescing_expression, oct_literal, open_end_range_expression, open_start_range_expression, optional_chain_marker, playground_literal, postfix_expression, prefix_expression, range_expression, raw_string_literal, real_literal, regex_literal, selector_expression, self_expression, simple_identifier, special_literal, statements, super_expression, switch_pattern, switch_statement, ternary_expression, try_expression, tuple_expression, value_pack_expansion, value_parameter_pack, where_keyword] + $children+: [additive_expression, array_literal, as_expression, assignment, await_expression, bin_literal, bitwise_operation, boolean_literal, call_expression, check_expression, comparison_expression, conjunction_expression, constructor_expression, default_keyword, diagnostic, dictionary_literal, directive, disjunction_expression, equality_expression, fully_open_range, hex_literal, if_statement, infix_expression, integer_literal, key_path_expression, key_path_string_expression, lambda_literal, line_string_literal, macro_invocation, modifiers, multi_line_string_literal, multiplicative_expression, navigation_expression, nil_coalescing_expression, oct_literal, open_end_range_expression, open_start_range_expression, optional_chain_marker, playground_literal, postfix_expression, prefix_expression, range_expression, raw_string_literal, real_literal, referenceable_operator, regex_literal, selector_expression, self_expression, simple_identifier, special_literal, statements, super_expression, switch_pattern, switch_statement, ternary_expression, try_expression, tuple_expression, value_pack_expansion, value_parameter_pack, where_keyword] switch_pattern: $children: pattern switch_statement: $children*: switch_entry - expr: ["!=", "!==", "%", "%=", "&", "*", "*=", "+", "++", "+=", "-", "--", "-=", "/", "/=", "<", "<<", "<=", "=", "==", "===", ">", ">=", ">>", "^", additive_expression, array_literal, as_expression, assignment, await_expression, bang, bin_literal, bitwise_operation, boolean_literal, call_expression, check_expression, comparison_expression, conjunction_expression, constructor_expression, custom_operator, diagnostic, dictionary_literal, directive, disjunction_expression, equality_expression, fully_open_range, hex_literal, if_statement, infix_expression, integer_literal, key_path_expression, key_path_string_expression, lambda_literal, line_string_literal, macro_invocation, multi_line_string_literal, multiplicative_expression, navigation_expression, "nil", nil_coalescing_expression, oct_literal, open_end_range_expression, open_start_range_expression, optional_chain_marker, playground_literal, postfix_expression, prefix_expression, range_expression, raw_string_literal, real_literal, regex_literal, selector_expression, self_expression, simple_identifier, special_literal, super_expression, switch_statement, ternary_expression, try_expression, tuple_expression, value_pack_expansion, value_parameter_pack, "|", "~"] + expr: [additive_expression, array_literal, as_expression, assignment, await_expression, bin_literal, bitwise_operation, boolean_literal, call_expression, check_expression, comparison_expression, conjunction_expression, constructor_expression, diagnostic, dictionary_literal, directive, disjunction_expression, equality_expression, fully_open_range, hex_literal, if_statement, infix_expression, integer_literal, key_path_expression, key_path_string_expression, lambda_literal, line_string_literal, macro_invocation, multi_line_string_literal, multiplicative_expression, navigation_expression, "nil", nil_coalescing_expression, oct_literal, open_end_range_expression, open_start_range_expression, optional_chain_marker, playground_literal, postfix_expression, prefix_expression, range_expression, raw_string_literal, real_literal, referenceable_operator, regex_literal, selector_expression, self_expression, simple_identifier, special_literal, super_expression, switch_statement, ternary_expression, try_expression, tuple_expression, value_pack_expansion, value_parameter_pack] ternary_expression: - condition: ["!=", "!==", "%", "%=", "&", "*", "*=", "+", "++", "+=", "-", "--", "-=", "/", "/=", "<", "<<", "<=", "=", "==", "===", ">", ">=", ">>", "^", additive_expression, array_literal, as_expression, assignment, await_expression, bang, bin_literal, bitwise_operation, boolean_literal, call_expression, check_expression, comparison_expression, conjunction_expression, constructor_expression, custom_operator, diagnostic, dictionary_literal, directive, disjunction_expression, equality_expression, fully_open_range, hex_literal, if_statement, infix_expression, integer_literal, key_path_expression, key_path_string_expression, lambda_literal, line_string_literal, macro_invocation, multi_line_string_literal, multiplicative_expression, navigation_expression, "nil", nil_coalescing_expression, oct_literal, open_end_range_expression, open_start_range_expression, optional_chain_marker, playground_literal, postfix_expression, prefix_expression, range_expression, raw_string_literal, real_literal, regex_literal, selector_expression, self_expression, simple_identifier, special_literal, super_expression, switch_statement, ternary_expression, try_expression, tuple_expression, value_pack_expansion, value_parameter_pack, "|", "~"] - if_false: ["!=", "!==", "%", "%=", "&", "*", "*=", "+", "++", "+=", "-", "--", "-=", "/", "/=", "<", "<<", "<=", "=", "==", "===", ">", ">=", ">>", "^", additive_expression, array_literal, as_expression, assignment, await_expression, bang, bin_literal, bitwise_operation, boolean_literal, call_expression, check_expression, comparison_expression, conjunction_expression, constructor_expression, custom_operator, diagnostic, dictionary_literal, directive, disjunction_expression, equality_expression, fully_open_range, hex_literal, if_statement, infix_expression, integer_literal, key_path_expression, key_path_string_expression, lambda_literal, line_string_literal, macro_invocation, multi_line_string_literal, multiplicative_expression, navigation_expression, "nil", nil_coalescing_expression, oct_literal, open_end_range_expression, open_start_range_expression, optional_chain_marker, playground_literal, postfix_expression, prefix_expression, range_expression, raw_string_literal, real_literal, regex_literal, selector_expression, self_expression, simple_identifier, special_literal, super_expression, switch_statement, ternary_expression, try_expression, tuple_expression, value_pack_expansion, value_parameter_pack, "|", "~"] - if_true: ["!=", "!==", "%", "%=", "&", "*", "*=", "+", "++", "+=", "-", "--", "-=", "/", "/=", "<", "<<", "<=", "=", "==", "===", ">", ">=", ">>", "^", additive_expression, array_literal, as_expression, assignment, await_expression, bang, bin_literal, bitwise_operation, boolean_literal, call_expression, check_expression, comparison_expression, conjunction_expression, constructor_expression, custom_operator, diagnostic, dictionary_literal, directive, disjunction_expression, equality_expression, fully_open_range, hex_literal, if_statement, infix_expression, integer_literal, key_path_expression, key_path_string_expression, lambda_literal, line_string_literal, macro_invocation, multi_line_string_literal, multiplicative_expression, navigation_expression, "nil", nil_coalescing_expression, oct_literal, open_end_range_expression, open_start_range_expression, optional_chain_marker, playground_literal, postfix_expression, prefix_expression, range_expression, raw_string_literal, real_literal, regex_literal, selector_expression, self_expression, simple_identifier, special_literal, super_expression, switch_statement, ternary_expression, try_expression, tuple_expression, value_pack_expansion, value_parameter_pack, "|", "~"] + condition: [additive_expression, array_literal, as_expression, assignment, await_expression, bin_literal, bitwise_operation, boolean_literal, call_expression, check_expression, comparison_expression, conjunction_expression, constructor_expression, diagnostic, dictionary_literal, directive, disjunction_expression, equality_expression, fully_open_range, hex_literal, if_statement, infix_expression, integer_literal, key_path_expression, key_path_string_expression, lambda_literal, line_string_literal, macro_invocation, multi_line_string_literal, multiplicative_expression, navigation_expression, "nil", nil_coalescing_expression, oct_literal, open_end_range_expression, open_start_range_expression, optional_chain_marker, playground_literal, postfix_expression, prefix_expression, range_expression, raw_string_literal, real_literal, referenceable_operator, regex_literal, selector_expression, self_expression, simple_identifier, special_literal, super_expression, switch_statement, ternary_expression, try_expression, tuple_expression, value_pack_expansion, value_parameter_pack] + if_false: [additive_expression, array_literal, as_expression, assignment, await_expression, bin_literal, bitwise_operation, boolean_literal, call_expression, check_expression, comparison_expression, conjunction_expression, constructor_expression, diagnostic, dictionary_literal, directive, disjunction_expression, equality_expression, fully_open_range, hex_literal, if_statement, infix_expression, integer_literal, key_path_expression, key_path_string_expression, lambda_literal, line_string_literal, macro_invocation, multi_line_string_literal, multiplicative_expression, navigation_expression, "nil", nil_coalescing_expression, oct_literal, open_end_range_expression, open_start_range_expression, optional_chain_marker, playground_literal, postfix_expression, prefix_expression, range_expression, raw_string_literal, real_literal, referenceable_operator, regex_literal, selector_expression, self_expression, simple_identifier, special_literal, super_expression, switch_statement, ternary_expression, try_expression, tuple_expression, value_pack_expansion, value_parameter_pack] + if_true: [additive_expression, array_literal, as_expression, assignment, await_expression, bin_literal, bitwise_operation, boolean_literal, call_expression, check_expression, comparison_expression, conjunction_expression, constructor_expression, diagnostic, dictionary_literal, directive, disjunction_expression, equality_expression, fully_open_range, hex_literal, if_statement, infix_expression, integer_literal, key_path_expression, key_path_string_expression, lambda_literal, line_string_literal, macro_invocation, multi_line_string_literal, multiplicative_expression, navigation_expression, "nil", nil_coalescing_expression, oct_literal, open_end_range_expression, open_start_range_expression, optional_chain_marker, playground_literal, postfix_expression, prefix_expression, range_expression, raw_string_literal, real_literal, referenceable_operator, regex_literal, selector_expression, self_expression, simple_identifier, special_literal, super_expression, switch_statement, ternary_expression, try_expression, tuple_expression, value_pack_expansion, value_parameter_pack] throw_keyword: throws: throws_clause: type: [array_type, dictionary_type, existential_type, function_type, metatype, opaque_type, optional_type, protocol_composition_type, suppressed_constraint, tuple_type, type_pack_expansion, type_parameter_pack, user_type] try_expression: $children: try_operator - expr: ["!=", "!==", "%", "%=", "&", "*", "*=", "+", "++", "+=", "-", "--", "-=", "/", "/=", "<", "<<", "<=", "=", "==", "===", ">", ">=", ">>", "^", additive_expression, array_literal, as_expression, assignment, await_expression, bang, bin_literal, bitwise_operation, boolean_literal, call_expression, check_expression, comparison_expression, conjunction_expression, constructor_expression, custom_operator, diagnostic, dictionary_literal, directive, disjunction_expression, equality_expression, fully_open_range, hex_literal, if_statement, infix_expression, integer_literal, key_path_expression, key_path_string_expression, lambda_literal, line_string_literal, macro_invocation, multi_line_string_literal, multiplicative_expression, navigation_expression, "nil", nil_coalescing_expression, oct_literal, open_end_range_expression, open_start_range_expression, optional_chain_marker, playground_literal, postfix_expression, prefix_expression, range_expression, raw_string_literal, real_literal, regex_literal, selector_expression, self_expression, simple_identifier, special_literal, super_expression, switch_statement, ternary_expression, try_expression, tuple_expression, value_pack_expansion, value_parameter_pack, "|", "~"] + expr: [additive_expression, array_literal, as_expression, assignment, await_expression, bin_literal, bitwise_operation, boolean_literal, call_expression, check_expression, comparison_expression, conjunction_expression, constructor_expression, diagnostic, dictionary_literal, directive, disjunction_expression, equality_expression, fully_open_range, hex_literal, if_statement, infix_expression, integer_literal, key_path_expression, key_path_string_expression, lambda_literal, line_string_literal, macro_invocation, multi_line_string_literal, multiplicative_expression, navigation_expression, "nil", nil_coalescing_expression, oct_literal, open_end_range_expression, open_start_range_expression, optional_chain_marker, playground_literal, postfix_expression, prefix_expression, range_expression, raw_string_literal, real_literal, referenceable_operator, regex_literal, selector_expression, self_expression, simple_identifier, special_literal, super_expression, switch_statement, ternary_expression, try_expression, tuple_expression, value_pack_expansion, value_parameter_pack] try_operator: tuple_expression: name*: simple_identifier - value+: ["!=", "!==", "%", "%=", "&", "*", "*=", "+", "++", "+=", "-", "--", "-=", "/", "/=", "<", "<<", "<=", "=", "==", "===", ">", ">=", ">>", "^", additive_expression, array_literal, as_expression, assignment, await_expression, bang, bin_literal, bitwise_operation, boolean_literal, call_expression, check_expression, comparison_expression, conjunction_expression, constructor_expression, custom_operator, diagnostic, dictionary_literal, directive, disjunction_expression, equality_expression, fully_open_range, hex_literal, if_statement, infix_expression, integer_literal, key_path_expression, key_path_string_expression, lambda_literal, line_string_literal, macro_invocation, multi_line_string_literal, multiplicative_expression, navigation_expression, "nil", nil_coalescing_expression, oct_literal, open_end_range_expression, open_start_range_expression, optional_chain_marker, playground_literal, postfix_expression, prefix_expression, range_expression, raw_string_literal, real_literal, regex_literal, selector_expression, self_expression, simple_identifier, special_literal, super_expression, switch_statement, ternary_expression, try_expression, tuple_expression, value_pack_expansion, value_parameter_pack, "|", "~"] + value+: [additive_expression, array_literal, as_expression, assignment, await_expression, bin_literal, bitwise_operation, boolean_literal, call_expression, check_expression, comparison_expression, conjunction_expression, constructor_expression, diagnostic, dictionary_literal, directive, disjunction_expression, equality_expression, fully_open_range, hex_literal, if_statement, infix_expression, integer_literal, key_path_expression, key_path_string_expression, lambda_literal, line_string_literal, macro_invocation, multi_line_string_literal, multiplicative_expression, navigation_expression, "nil", nil_coalescing_expression, oct_literal, open_end_range_expression, open_start_range_expression, optional_chain_marker, playground_literal, postfix_expression, prefix_expression, range_expression, raw_string_literal, real_literal, referenceable_operator, regex_literal, selector_expression, self_expression, simple_identifier, special_literal, super_expression, switch_statement, ternary_expression, try_expression, tuple_expression, value_pack_expansion, value_parameter_pack] tuple_type: $children?: tuple_type_item element*: tuple_type_item @@ -433,7 +435,7 @@ named: $children?: type_modifiers name?: value_argument_label reference_specifier*: value_argument_label - value?: ["!=", "!==", "%", "%=", "&", "*", "*=", "+", "++", "+=", "-", "--", "-=", "/", "/=", "<", "<<", "<=", "=", "==", "===", ">", ">=", ">>", "^", additive_expression, array_literal, as_expression, assignment, await_expression, bang, bin_literal, bitwise_operation, boolean_literal, call_expression, check_expression, comparison_expression, conjunction_expression, constructor_expression, custom_operator, diagnostic, dictionary_literal, directive, disjunction_expression, equality_expression, fully_open_range, hex_literal, if_statement, infix_expression, integer_literal, key_path_expression, key_path_string_expression, lambda_literal, line_string_literal, macro_invocation, multi_line_string_literal, multiplicative_expression, navigation_expression, "nil", nil_coalescing_expression, oct_literal, open_end_range_expression, open_start_range_expression, optional_chain_marker, playground_literal, postfix_expression, prefix_expression, range_expression, raw_string_literal, real_literal, regex_literal, selector_expression, self_expression, simple_identifier, special_literal, super_expression, switch_statement, ternary_expression, try_expression, tuple_expression, value_pack_expansion, value_parameter_pack, "|", "~"] + value?: [additive_expression, array_literal, as_expression, assignment, await_expression, bin_literal, bitwise_operation, boolean_literal, call_expression, check_expression, comparison_expression, conjunction_expression, constructor_expression, diagnostic, dictionary_literal, directive, disjunction_expression, equality_expression, fully_open_range, hex_literal, if_statement, infix_expression, integer_literal, key_path_expression, key_path_string_expression, lambda_literal, line_string_literal, macro_invocation, multi_line_string_literal, multiplicative_expression, navigation_expression, "nil", nil_coalescing_expression, oct_literal, open_end_range_expression, open_start_range_expression, optional_chain_marker, playground_literal, postfix_expression, prefix_expression, range_expression, raw_string_literal, real_literal, referenceable_operator, regex_literal, selector_expression, self_expression, simple_identifier, special_literal, super_expression, switch_statement, ternary_expression, try_expression, tuple_expression, value_pack_expansion, value_parameter_pack] value_argument_label: $children: simple_identifier value_arguments: @@ -441,17 +443,17 @@ named: value_binding_pattern: mutability: ["let", "var"] value_pack_expansion: - $children?: [additive_expression, array_literal, as_expression, assignment, await_expression, bang, bin_literal, bitwise_operation, boolean_literal, call_expression, check_expression, comparison_expression, conjunction_expression, constructor_expression, custom_operator, diagnostic, dictionary_literal, directive, disjunction_expression, equality_expression, fully_open_range, hex_literal, if_statement, infix_expression, integer_literal, key_path_expression, key_path_string_expression, lambda_literal, line_string_literal, macro_invocation, multi_line_string_literal, multiplicative_expression, navigation_expression, nil_coalescing_expression, oct_literal, open_end_range_expression, open_start_range_expression, optional_chain_marker, playground_literal, postfix_expression, prefix_expression, range_expression, raw_string_literal, real_literal, regex_literal, selector_expression, self_expression, simple_identifier, special_literal, super_expression, switch_statement, ternary_expression, try_expression, tuple_expression, value_pack_expansion, value_parameter_pack] + $children?: [additive_expression, array_literal, as_expression, assignment, await_expression, bin_literal, bitwise_operation, boolean_literal, call_expression, check_expression, comparison_expression, conjunction_expression, constructor_expression, diagnostic, dictionary_literal, directive, disjunction_expression, equality_expression, fully_open_range, hex_literal, if_statement, infix_expression, integer_literal, key_path_expression, key_path_string_expression, lambda_literal, line_string_literal, macro_invocation, multi_line_string_literal, multiplicative_expression, navigation_expression, nil_coalescing_expression, oct_literal, open_end_range_expression, open_start_range_expression, optional_chain_marker, playground_literal, postfix_expression, prefix_expression, range_expression, raw_string_literal, real_literal, referenceable_operator, regex_literal, selector_expression, self_expression, simple_identifier, special_literal, super_expression, switch_statement, ternary_expression, try_expression, tuple_expression, value_pack_expansion, value_parameter_pack] value_parameter_pack: - $children?: [additive_expression, array_literal, as_expression, assignment, await_expression, bang, bin_literal, bitwise_operation, boolean_literal, call_expression, check_expression, comparison_expression, conjunction_expression, constructor_expression, custom_operator, diagnostic, dictionary_literal, directive, disjunction_expression, equality_expression, fully_open_range, hex_literal, if_statement, infix_expression, integer_literal, key_path_expression, key_path_string_expression, lambda_literal, line_string_literal, macro_invocation, multi_line_string_literal, multiplicative_expression, navigation_expression, nil_coalescing_expression, oct_literal, open_end_range_expression, open_start_range_expression, optional_chain_marker, playground_literal, postfix_expression, prefix_expression, range_expression, raw_string_literal, real_literal, regex_literal, selector_expression, self_expression, simple_identifier, special_literal, super_expression, switch_statement, ternary_expression, try_expression, tuple_expression, value_pack_expansion, value_parameter_pack] + $children?: [additive_expression, array_literal, as_expression, assignment, await_expression, bin_literal, bitwise_operation, boolean_literal, call_expression, check_expression, comparison_expression, conjunction_expression, constructor_expression, diagnostic, dictionary_literal, directive, disjunction_expression, equality_expression, fully_open_range, hex_literal, if_statement, infix_expression, integer_literal, key_path_expression, key_path_string_expression, lambda_literal, line_string_literal, macro_invocation, multi_line_string_literal, multiplicative_expression, navigation_expression, nil_coalescing_expression, oct_literal, open_end_range_expression, open_start_range_expression, optional_chain_marker, playground_literal, postfix_expression, prefix_expression, range_expression, raw_string_literal, real_literal, referenceable_operator, regex_literal, selector_expression, self_expression, simple_identifier, special_literal, super_expression, switch_statement, ternary_expression, try_expression, tuple_expression, value_pack_expansion, value_parameter_pack] visibility_modifier: where_clause: - $children+: [additive_expression, array_literal, as_expression, assignment, await_expression, bang, bin_literal, bitwise_operation, boolean_literal, call_expression, check_expression, comparison_expression, conjunction_expression, constructor_expression, custom_operator, diagnostic, dictionary_literal, directive, disjunction_expression, equality_expression, fully_open_range, hex_literal, if_statement, infix_expression, integer_literal, key_path_expression, key_path_string_expression, lambda_literal, line_string_literal, macro_invocation, multi_line_string_literal, multiplicative_expression, navigation_expression, nil_coalescing_expression, oct_literal, open_end_range_expression, open_start_range_expression, optional_chain_marker, playground_literal, postfix_expression, prefix_expression, range_expression, raw_string_literal, real_literal, regex_literal, selector_expression, self_expression, simple_identifier, special_literal, super_expression, switch_statement, ternary_expression, try_expression, tuple_expression, value_pack_expansion, value_parameter_pack, where_keyword] + $children+: [additive_expression, array_literal, as_expression, assignment, await_expression, bin_literal, bitwise_operation, boolean_literal, call_expression, check_expression, comparison_expression, conjunction_expression, constructor_expression, diagnostic, dictionary_literal, directive, disjunction_expression, equality_expression, fully_open_range, hex_literal, if_statement, infix_expression, integer_literal, key_path_expression, key_path_string_expression, lambda_literal, line_string_literal, macro_invocation, multi_line_string_literal, multiplicative_expression, navigation_expression, nil_coalescing_expression, oct_literal, open_end_range_expression, open_start_range_expression, optional_chain_marker, playground_literal, postfix_expression, prefix_expression, range_expression, raw_string_literal, real_literal, referenceable_operator, regex_literal, selector_expression, self_expression, simple_identifier, special_literal, super_expression, switch_statement, ternary_expression, try_expression, tuple_expression, value_pack_expansion, value_parameter_pack, where_keyword] where_keyword: while_statement: $children?: statements bound_identifier*: simple_identifier - condition+: ["!=", "!==", "%", "%=", "&", "(", ")", "*", "*=", "+", "++", "+=", ",", "-", "--", "-=", ".", "/", "/=", ":", "<", "<<", "<=", "=", "==", "===", ">", ">=", ">>", "?", "^", additive_expression, array_literal, array_type, "as", as_expression, assignment, "async", availability_condition, await_expression, bang, bin_literal, bitwise_operation, boolean_literal, call_expression, "case", check_expression, comparison_expression, conjunction_expression, constructor_expression, custom_operator, diagnostic, dictionary_literal, dictionary_type, directive, disjunction_expression, equality_expression, existential_type, fully_open_range, function_type, hex_literal, if_statement, infix_expression, integer_literal, "is", key_path_expression, key_path_string_expression, lambda_literal, line_string_literal, macro_invocation, metatype, multi_line_string_literal, multiplicative_expression, navigation_expression, "nil", nil_coalescing_expression, oct_literal, opaque_type, open_end_range_expression, open_start_range_expression, optional_chain_marker, optional_type, pattern, playground_literal, postfix_expression, prefix_expression, protocol_composition_type, range_expression, raw_string_literal, real_literal, regex_literal, selector_expression, self_expression, simple_identifier, special_literal, super_expression, suppressed_constraint, switch_statement, ternary_expression, try_expression, tuple_expression, tuple_type, type_annotation, type_modifiers, type_pack_expansion, type_parameter_pack, user_type, value_binding_pattern, value_pack_expansion, value_parameter_pack, where_clause, wildcard_pattern, "|", "~"] + condition+: ["(", ")", ",", ".", ":", "=", "?", additive_expression, array_literal, array_type, "as", as_expression, assignment, "async", availability_condition, await_expression, bin_literal, bitwise_operation, boolean_literal, call_expression, "case", check_expression, comparison_expression, conjunction_expression, constructor_expression, diagnostic, dictionary_literal, dictionary_type, directive, disjunction_expression, equality_expression, existential_type, fully_open_range, function_type, hex_literal, if_statement, infix_expression, integer_literal, "is", key_path_expression, key_path_string_expression, lambda_literal, line_string_literal, macro_invocation, metatype, multi_line_string_literal, multiplicative_expression, navigation_expression, "nil", nil_coalescing_expression, oct_literal, opaque_type, open_end_range_expression, open_start_range_expression, optional_chain_marker, optional_type, pattern, playground_literal, postfix_expression, prefix_expression, protocol_composition_type, range_expression, raw_string_literal, real_literal, referenceable_operator, regex_literal, selector_expression, self_expression, simple_identifier, special_literal, super_expression, suppressed_constraint, switch_statement, ternary_expression, try_expression, tuple_expression, tuple_type, type_annotation, type_modifiers, type_pack_expansion, type_parameter_pack, user_type, value_binding_pattern, value_pack_expansion, value_parameter_pack, where_clause, wildcard_pattern] name*: [array_type, dictionary_type, existential_type, function_type, metatype, opaque_type, optional_type, protocol_composition_type, suppressed_constraint, tuple_type, type_pack_expansion, type_parameter_pack, user_type] wildcard_pattern: willset_clause: From 5c16b0faf96f6d32c7d7eb7aeff011c00047da5f Mon Sep 17 00:00:00 2001 From: Taus Date: Fri, 8 May 2026 14:51:19 +0000 Subject: [PATCH 240/260] unified: regenerate files --- unified/ql/lib/codeql/unified/Ast.qll | 12 ++ unified/ql/lib/unified.dbscheme | 163 ++++++++++++++------------ 2 files changed, 99 insertions(+), 76 deletions(-) diff --git a/unified/ql/lib/codeql/unified/Ast.qll b/unified/ql/lib/codeql/unified/Ast.qll index 8155f61de562..e07d871de9de 100644 --- a/unified/ql/lib/codeql/unified/Ast.qll +++ b/unified/ql/lib/codeql/unified/Ast.qll @@ -2167,6 +2167,18 @@ module Swift { final override string getAPrimaryQlClass() { result = "RealLiteral" } } + /** A class representing `referenceable_operator` nodes. */ + class ReferenceableOperator extends @swift_referenceable_operator, AstNode { + /** Gets the name of the primary QL class for this element. */ + final override string getAPrimaryQlClass() { result = "ReferenceableOperator" } + + /** Gets the child of this node. */ + final AstNode getChild() { swift_referenceable_operator_child(this, result) } + + /** Gets a field or child node of this node. */ + final override AstNode getAFieldOrChild() { swift_referenceable_operator_child(this, result) } + } + /** A class representing `regex_literal` tokens. */ class RegexLiteral extends @swift_token_regex_literal, Token { /** Gets the name of the primary QL class for this element. */ diff --git a/unified/ql/lib/unified.dbscheme b/unified/ql/lib/unified.dbscheme index cfd37ea9db66..1b883f6730ec 100644 --- a/unified/ql/lib/unified.dbscheme +++ b/unified/ql/lib/unified.dbscheme @@ -132,7 +132,7 @@ overlayChangedFiles( ); /*- Swift dbscheme -*/ -@swift_additive_expression_lhs_type = @swift_additive_expression | @swift_array_literal | @swift_as_expression | @swift_assignment | @swift_await_expression | @swift_bitwise_operation | @swift_call_expression | @swift_check_expression | @swift_comparison_expression | @swift_conjunction_expression | @swift_constructor_expression | @swift_dictionary_literal | @swift_directive | @swift_disjunction_expression | @swift_equality_expression | @swift_if_statement | @swift_infix_expression | @swift_key_path_expression | @swift_key_path_string_expression | @swift_lambda_literal | @swift_line_string_literal | @swift_macro_invocation | @swift_multi_line_string_literal | @swift_multiplicative_expression | @swift_navigation_expression | @swift_nil_coalescing_expression | @swift_open_end_range_expression | @swift_open_start_range_expression | @swift_optional_chain_marker | @swift_playground_literal | @swift_postfix_expression | @swift_prefix_expression | @swift_range_expression | @swift_raw_string_literal | @swift_reserved_word | @swift_selector_expression | @swift_switch_statement | @swift_ternary_expression | @swift_token_bang | @swift_token_bin_literal | @swift_token_boolean_literal | @swift_token_custom_operator | @swift_token_diagnostic | @swift_token_fully_open_range | @swift_token_hex_literal | @swift_token_integer_literal | @swift_token_oct_literal | @swift_token_real_literal | @swift_token_regex_literal | @swift_token_self_expression | @swift_token_simple_identifier | @swift_token_special_literal | @swift_token_super_expression | @swift_try_expression | @swift_tuple_expression | @swift_value_pack_expansion | @swift_value_parameter_pack +@swift_additive_expression_lhs_type = @swift_additive_expression | @swift_array_literal | @swift_as_expression | @swift_assignment | @swift_await_expression | @swift_bitwise_operation | @swift_call_expression | @swift_check_expression | @swift_comparison_expression | @swift_conjunction_expression | @swift_constructor_expression | @swift_dictionary_literal | @swift_directive | @swift_disjunction_expression | @swift_equality_expression | @swift_if_statement | @swift_infix_expression | @swift_key_path_expression | @swift_key_path_string_expression | @swift_lambda_literal | @swift_line_string_literal | @swift_macro_invocation | @swift_multi_line_string_literal | @swift_multiplicative_expression | @swift_navigation_expression | @swift_nil_coalescing_expression | @swift_open_end_range_expression | @swift_open_start_range_expression | @swift_optional_chain_marker | @swift_playground_literal | @swift_postfix_expression | @swift_prefix_expression | @swift_range_expression | @swift_raw_string_literal | @swift_referenceable_operator | @swift_reserved_word | @swift_selector_expression | @swift_switch_statement | @swift_ternary_expression | @swift_token_bin_literal | @swift_token_boolean_literal | @swift_token_diagnostic | @swift_token_fully_open_range | @swift_token_hex_literal | @swift_token_integer_literal | @swift_token_oct_literal | @swift_token_real_literal | @swift_token_regex_literal | @swift_token_self_expression | @swift_token_simple_identifier | @swift_token_special_literal | @swift_token_super_expression | @swift_try_expression | @swift_tuple_expression | @swift_value_pack_expansion | @swift_value_parameter_pack case @swift_additive_expression.op of 0 = @swift_additive_expression_plus @@ -140,7 +140,7 @@ case @swift_additive_expression.op of ; -@swift_additive_expression_rhs_type = @swift_additive_expression | @swift_array_literal | @swift_as_expression | @swift_assignment | @swift_await_expression | @swift_bitwise_operation | @swift_call_expression | @swift_check_expression | @swift_comparison_expression | @swift_conjunction_expression | @swift_constructor_expression | @swift_dictionary_literal | @swift_directive | @swift_disjunction_expression | @swift_equality_expression | @swift_if_statement | @swift_infix_expression | @swift_key_path_expression | @swift_key_path_string_expression | @swift_lambda_literal | @swift_line_string_literal | @swift_macro_invocation | @swift_multi_line_string_literal | @swift_multiplicative_expression | @swift_navigation_expression | @swift_nil_coalescing_expression | @swift_open_end_range_expression | @swift_open_start_range_expression | @swift_optional_chain_marker | @swift_playground_literal | @swift_postfix_expression | @swift_prefix_expression | @swift_range_expression | @swift_raw_string_literal | @swift_reserved_word | @swift_selector_expression | @swift_switch_statement | @swift_ternary_expression | @swift_token_bang | @swift_token_bin_literal | @swift_token_boolean_literal | @swift_token_custom_operator | @swift_token_diagnostic | @swift_token_fully_open_range | @swift_token_hex_literal | @swift_token_integer_literal | @swift_token_oct_literal | @swift_token_real_literal | @swift_token_regex_literal | @swift_token_self_expression | @swift_token_simple_identifier | @swift_token_special_literal | @swift_token_super_expression | @swift_try_expression | @swift_tuple_expression | @swift_value_pack_expansion | @swift_value_parameter_pack +@swift_additive_expression_rhs_type = @swift_additive_expression | @swift_array_literal | @swift_as_expression | @swift_assignment | @swift_await_expression | @swift_bitwise_operation | @swift_call_expression | @swift_check_expression | @swift_comparison_expression | @swift_conjunction_expression | @swift_constructor_expression | @swift_dictionary_literal | @swift_directive | @swift_disjunction_expression | @swift_equality_expression | @swift_if_statement | @swift_infix_expression | @swift_key_path_expression | @swift_key_path_string_expression | @swift_lambda_literal | @swift_line_string_literal | @swift_macro_invocation | @swift_multi_line_string_literal | @swift_multiplicative_expression | @swift_navigation_expression | @swift_nil_coalescing_expression | @swift_open_end_range_expression | @swift_open_start_range_expression | @swift_optional_chain_marker | @swift_playground_literal | @swift_postfix_expression | @swift_prefix_expression | @swift_range_expression | @swift_raw_string_literal | @swift_referenceable_operator | @swift_reserved_word | @swift_selector_expression | @swift_switch_statement | @swift_ternary_expression | @swift_token_bin_literal | @swift_token_boolean_literal | @swift_token_diagnostic | @swift_token_fully_open_range | @swift_token_hex_literal | @swift_token_integer_literal | @swift_token_oct_literal | @swift_token_real_literal | @swift_token_regex_literal | @swift_token_self_expression | @swift_token_simple_identifier | @swift_token_special_literal | @swift_token_super_expression | @swift_try_expression | @swift_tuple_expression | @swift_value_pack_expansion | @swift_value_parameter_pack swift_additive_expression_def( unique int id: @swift_additive_expression, @@ -149,7 +149,7 @@ swift_additive_expression_def( int rhs: @swift_additive_expression_rhs_type ref ); -@swift_array_literal_element_type = @swift_additive_expression | @swift_array_literal | @swift_as_expression | @swift_assignment | @swift_await_expression | @swift_bitwise_operation | @swift_call_expression | @swift_check_expression | @swift_comparison_expression | @swift_conjunction_expression | @swift_constructor_expression | @swift_dictionary_literal | @swift_directive | @swift_disjunction_expression | @swift_equality_expression | @swift_if_statement | @swift_infix_expression | @swift_key_path_expression | @swift_key_path_string_expression | @swift_lambda_literal | @swift_line_string_literal | @swift_macro_invocation | @swift_multi_line_string_literal | @swift_multiplicative_expression | @swift_navigation_expression | @swift_nil_coalescing_expression | @swift_open_end_range_expression | @swift_open_start_range_expression | @swift_optional_chain_marker | @swift_playground_literal | @swift_postfix_expression | @swift_prefix_expression | @swift_range_expression | @swift_raw_string_literal | @swift_reserved_word | @swift_selector_expression | @swift_switch_statement | @swift_ternary_expression | @swift_token_bang | @swift_token_bin_literal | @swift_token_boolean_literal | @swift_token_custom_operator | @swift_token_diagnostic | @swift_token_fully_open_range | @swift_token_hex_literal | @swift_token_integer_literal | @swift_token_oct_literal | @swift_token_real_literal | @swift_token_regex_literal | @swift_token_self_expression | @swift_token_simple_identifier | @swift_token_special_literal | @swift_token_super_expression | @swift_try_expression | @swift_tuple_expression | @swift_value_pack_expansion | @swift_value_parameter_pack +@swift_array_literal_element_type = @swift_additive_expression | @swift_array_literal | @swift_as_expression | @swift_assignment | @swift_await_expression | @swift_bitwise_operation | @swift_call_expression | @swift_check_expression | @swift_comparison_expression | @swift_conjunction_expression | @swift_constructor_expression | @swift_dictionary_literal | @swift_directive | @swift_disjunction_expression | @swift_equality_expression | @swift_if_statement | @swift_infix_expression | @swift_key_path_expression | @swift_key_path_string_expression | @swift_lambda_literal | @swift_line_string_literal | @swift_macro_invocation | @swift_multi_line_string_literal | @swift_multiplicative_expression | @swift_navigation_expression | @swift_nil_coalescing_expression | @swift_open_end_range_expression | @swift_open_start_range_expression | @swift_optional_chain_marker | @swift_playground_literal | @swift_postfix_expression | @swift_prefix_expression | @swift_range_expression | @swift_raw_string_literal | @swift_referenceable_operator | @swift_reserved_word | @swift_selector_expression | @swift_switch_statement | @swift_ternary_expression | @swift_token_bin_literal | @swift_token_boolean_literal | @swift_token_diagnostic | @swift_token_fully_open_range | @swift_token_hex_literal | @swift_token_integer_literal | @swift_token_oct_literal | @swift_token_real_literal | @swift_token_regex_literal | @swift_token_self_expression | @swift_token_simple_identifier | @swift_token_special_literal | @swift_token_super_expression | @swift_try_expression | @swift_tuple_expression | @swift_value_pack_expansion | @swift_value_parameter_pack #keyset[swift_array_literal, index] swift_array_literal_element( @@ -178,7 +178,7 @@ swift_array_type_def( int name: @swift_array_type_name_type ref ); -@swift_as_expression_expr_type = @swift_additive_expression | @swift_array_literal | @swift_as_expression | @swift_assignment | @swift_await_expression | @swift_bitwise_operation | @swift_call_expression | @swift_check_expression | @swift_comparison_expression | @swift_conjunction_expression | @swift_constructor_expression | @swift_dictionary_literal | @swift_directive | @swift_disjunction_expression | @swift_equality_expression | @swift_if_statement | @swift_infix_expression | @swift_key_path_expression | @swift_key_path_string_expression | @swift_lambda_literal | @swift_line_string_literal | @swift_macro_invocation | @swift_multi_line_string_literal | @swift_multiplicative_expression | @swift_navigation_expression | @swift_nil_coalescing_expression | @swift_open_end_range_expression | @swift_open_start_range_expression | @swift_optional_chain_marker | @swift_playground_literal | @swift_postfix_expression | @swift_prefix_expression | @swift_range_expression | @swift_raw_string_literal | @swift_reserved_word | @swift_selector_expression | @swift_switch_statement | @swift_ternary_expression | @swift_token_bang | @swift_token_bin_literal | @swift_token_boolean_literal | @swift_token_custom_operator | @swift_token_diagnostic | @swift_token_fully_open_range | @swift_token_hex_literal | @swift_token_integer_literal | @swift_token_oct_literal | @swift_token_real_literal | @swift_token_regex_literal | @swift_token_self_expression | @swift_token_simple_identifier | @swift_token_special_literal | @swift_token_super_expression | @swift_try_expression | @swift_tuple_expression | @swift_value_pack_expansion | @swift_value_parameter_pack +@swift_as_expression_expr_type = @swift_additive_expression | @swift_array_literal | @swift_as_expression | @swift_assignment | @swift_await_expression | @swift_bitwise_operation | @swift_call_expression | @swift_check_expression | @swift_comparison_expression | @swift_conjunction_expression | @swift_constructor_expression | @swift_dictionary_literal | @swift_directive | @swift_disjunction_expression | @swift_equality_expression | @swift_if_statement | @swift_infix_expression | @swift_key_path_expression | @swift_key_path_string_expression | @swift_lambda_literal | @swift_line_string_literal | @swift_macro_invocation | @swift_multi_line_string_literal | @swift_multiplicative_expression | @swift_navigation_expression | @swift_nil_coalescing_expression | @swift_open_end_range_expression | @swift_open_start_range_expression | @swift_optional_chain_marker | @swift_playground_literal | @swift_postfix_expression | @swift_prefix_expression | @swift_range_expression | @swift_raw_string_literal | @swift_referenceable_operator | @swift_reserved_word | @swift_selector_expression | @swift_switch_statement | @swift_ternary_expression | @swift_token_bin_literal | @swift_token_boolean_literal | @swift_token_diagnostic | @swift_token_fully_open_range | @swift_token_hex_literal | @swift_token_integer_literal | @swift_token_oct_literal | @swift_token_real_literal | @swift_token_regex_literal | @swift_token_self_expression | @swift_token_simple_identifier | @swift_token_special_literal | @swift_token_super_expression | @swift_try_expression | @swift_tuple_expression | @swift_value_pack_expansion | @swift_value_parameter_pack @swift_as_expression_name_type = @swift_array_type | @swift_dictionary_type | @swift_existential_type | @swift_function_type | @swift_metatype | @swift_opaque_type | @swift_optional_type | @swift_protocol_composition_type | @swift_suppressed_constraint | @swift_tuple_type | @swift_type_pack_expansion | @swift_type_parameter_pack | @swift_user_type @@ -208,7 +208,7 @@ case @swift_assignment.operator of ; -@swift_assignment_result_type = @swift_additive_expression | @swift_array_literal | @swift_as_expression | @swift_assignment | @swift_await_expression | @swift_bitwise_operation | @swift_call_expression | @swift_check_expression | @swift_comparison_expression | @swift_conjunction_expression | @swift_constructor_expression | @swift_dictionary_literal | @swift_directive | @swift_disjunction_expression | @swift_equality_expression | @swift_if_statement | @swift_infix_expression | @swift_key_path_expression | @swift_key_path_string_expression | @swift_lambda_literal | @swift_line_string_literal | @swift_macro_invocation | @swift_multi_line_string_literal | @swift_multiplicative_expression | @swift_navigation_expression | @swift_nil_coalescing_expression | @swift_open_end_range_expression | @swift_open_start_range_expression | @swift_optional_chain_marker | @swift_playground_literal | @swift_postfix_expression | @swift_prefix_expression | @swift_range_expression | @swift_raw_string_literal | @swift_reserved_word | @swift_selector_expression | @swift_switch_statement | @swift_ternary_expression | @swift_token_bang | @swift_token_bin_literal | @swift_token_boolean_literal | @swift_token_custom_operator | @swift_token_diagnostic | @swift_token_fully_open_range | @swift_token_hex_literal | @swift_token_integer_literal | @swift_token_oct_literal | @swift_token_real_literal | @swift_token_regex_literal | @swift_token_self_expression | @swift_token_simple_identifier | @swift_token_special_literal | @swift_token_super_expression | @swift_try_expression | @swift_tuple_expression | @swift_value_pack_expansion | @swift_value_parameter_pack +@swift_assignment_result_type = @swift_additive_expression | @swift_array_literal | @swift_as_expression | @swift_assignment | @swift_await_expression | @swift_bitwise_operation | @swift_call_expression | @swift_check_expression | @swift_comparison_expression | @swift_conjunction_expression | @swift_constructor_expression | @swift_dictionary_literal | @swift_directive | @swift_disjunction_expression | @swift_equality_expression | @swift_if_statement | @swift_infix_expression | @swift_key_path_expression | @swift_key_path_string_expression | @swift_lambda_literal | @swift_line_string_literal | @swift_macro_invocation | @swift_multi_line_string_literal | @swift_multiplicative_expression | @swift_navigation_expression | @swift_nil_coalescing_expression | @swift_open_end_range_expression | @swift_open_start_range_expression | @swift_optional_chain_marker | @swift_playground_literal | @swift_postfix_expression | @swift_prefix_expression | @swift_range_expression | @swift_raw_string_literal | @swift_referenceable_operator | @swift_reserved_word | @swift_selector_expression | @swift_switch_statement | @swift_ternary_expression | @swift_token_bin_literal | @swift_token_boolean_literal | @swift_token_diagnostic | @swift_token_fully_open_range | @swift_token_hex_literal | @swift_token_integer_literal | @swift_token_oct_literal | @swift_token_real_literal | @swift_token_regex_literal | @swift_token_self_expression | @swift_token_simple_identifier | @swift_token_special_literal | @swift_token_super_expression | @swift_try_expression | @swift_tuple_expression | @swift_value_pack_expansion | @swift_value_parameter_pack swift_assignment_def( unique int id: @swift_assignment, @@ -257,7 +257,7 @@ swift_associatedtype_declaration_def( unique int id: @swift_associatedtype_declaration ); -@swift_attribute_child_type = @swift_additive_expression | @swift_array_literal | @swift_as_expression | @swift_assignment | @swift_await_expression | @swift_bitwise_operation | @swift_call_expression | @swift_check_expression | @swift_comparison_expression | @swift_conjunction_expression | @swift_constructor_expression | @swift_dictionary_literal | @swift_directive | @swift_disjunction_expression | @swift_equality_expression | @swift_if_statement | @swift_infix_expression | @swift_key_path_expression | @swift_key_path_string_expression | @swift_lambda_literal | @swift_line_string_literal | @swift_macro_invocation | @swift_multi_line_string_literal | @swift_multiplicative_expression | @swift_navigation_expression | @swift_nil_coalescing_expression | @swift_open_end_range_expression | @swift_open_start_range_expression | @swift_optional_chain_marker | @swift_playground_literal | @swift_postfix_expression | @swift_prefix_expression | @swift_range_expression | @swift_raw_string_literal | @swift_selector_expression | @swift_switch_statement | @swift_ternary_expression | @swift_token_bang | @swift_token_bin_literal | @swift_token_boolean_literal | @swift_token_custom_operator | @swift_token_diagnostic | @swift_token_fully_open_range | @swift_token_hex_literal | @swift_token_integer_literal | @swift_token_oct_literal | @swift_token_real_literal | @swift_token_regex_literal | @swift_token_self_expression | @swift_token_simple_identifier | @swift_token_special_literal | @swift_token_super_expression | @swift_try_expression | @swift_tuple_expression | @swift_user_type | @swift_value_pack_expansion | @swift_value_parameter_pack +@swift_attribute_child_type = @swift_additive_expression | @swift_array_literal | @swift_as_expression | @swift_assignment | @swift_await_expression | @swift_bitwise_operation | @swift_call_expression | @swift_check_expression | @swift_comparison_expression | @swift_conjunction_expression | @swift_constructor_expression | @swift_dictionary_literal | @swift_directive | @swift_disjunction_expression | @swift_equality_expression | @swift_if_statement | @swift_infix_expression | @swift_key_path_expression | @swift_key_path_string_expression | @swift_lambda_literal | @swift_line_string_literal | @swift_macro_invocation | @swift_multi_line_string_literal | @swift_multiplicative_expression | @swift_navigation_expression | @swift_nil_coalescing_expression | @swift_open_end_range_expression | @swift_open_start_range_expression | @swift_optional_chain_marker | @swift_playground_literal | @swift_postfix_expression | @swift_prefix_expression | @swift_range_expression | @swift_raw_string_literal | @swift_referenceable_operator | @swift_selector_expression | @swift_switch_statement | @swift_ternary_expression | @swift_token_bin_literal | @swift_token_boolean_literal | @swift_token_diagnostic | @swift_token_fully_open_range | @swift_token_hex_literal | @swift_token_integer_literal | @swift_token_oct_literal | @swift_token_real_literal | @swift_token_regex_literal | @swift_token_self_expression | @swift_token_simple_identifier | @swift_token_special_literal | @swift_token_super_expression | @swift_try_expression | @swift_tuple_expression | @swift_user_type | @swift_value_pack_expansion | @swift_value_parameter_pack #keyset[swift_attribute, index] swift_attribute_child( @@ -283,14 +283,14 @@ swift_availability_condition_def( unique int id: @swift_availability_condition ); -@swift_await_expression_expr_type = @swift_additive_expression | @swift_array_literal | @swift_as_expression | @swift_assignment | @swift_await_expression | @swift_bitwise_operation | @swift_call_expression | @swift_check_expression | @swift_comparison_expression | @swift_conjunction_expression | @swift_constructor_expression | @swift_dictionary_literal | @swift_directive | @swift_disjunction_expression | @swift_equality_expression | @swift_if_statement | @swift_infix_expression | @swift_key_path_expression | @swift_key_path_string_expression | @swift_lambda_literal | @swift_line_string_literal | @swift_macro_invocation | @swift_multi_line_string_literal | @swift_multiplicative_expression | @swift_navigation_expression | @swift_nil_coalescing_expression | @swift_open_end_range_expression | @swift_open_start_range_expression | @swift_optional_chain_marker | @swift_playground_literal | @swift_postfix_expression | @swift_prefix_expression | @swift_range_expression | @swift_raw_string_literal | @swift_reserved_word | @swift_selector_expression | @swift_switch_statement | @swift_ternary_expression | @swift_token_bang | @swift_token_bin_literal | @swift_token_boolean_literal | @swift_token_custom_operator | @swift_token_diagnostic | @swift_token_fully_open_range | @swift_token_hex_literal | @swift_token_integer_literal | @swift_token_oct_literal | @swift_token_real_literal | @swift_token_regex_literal | @swift_token_self_expression | @swift_token_simple_identifier | @swift_token_special_literal | @swift_token_super_expression | @swift_try_expression | @swift_tuple_expression | @swift_value_pack_expansion | @swift_value_parameter_pack +@swift_await_expression_expr_type = @swift_additive_expression | @swift_array_literal | @swift_as_expression | @swift_assignment | @swift_await_expression | @swift_bitwise_operation | @swift_call_expression | @swift_check_expression | @swift_comparison_expression | @swift_conjunction_expression | @swift_constructor_expression | @swift_dictionary_literal | @swift_directive | @swift_disjunction_expression | @swift_equality_expression | @swift_if_statement | @swift_infix_expression | @swift_key_path_expression | @swift_key_path_string_expression | @swift_lambda_literal | @swift_line_string_literal | @swift_macro_invocation | @swift_multi_line_string_literal | @swift_multiplicative_expression | @swift_navigation_expression | @swift_nil_coalescing_expression | @swift_open_end_range_expression | @swift_open_start_range_expression | @swift_optional_chain_marker | @swift_playground_literal | @swift_postfix_expression | @swift_prefix_expression | @swift_range_expression | @swift_raw_string_literal | @swift_referenceable_operator | @swift_reserved_word | @swift_selector_expression | @swift_switch_statement | @swift_ternary_expression | @swift_token_bin_literal | @swift_token_boolean_literal | @swift_token_diagnostic | @swift_token_fully_open_range | @swift_token_hex_literal | @swift_token_integer_literal | @swift_token_oct_literal | @swift_token_real_literal | @swift_token_regex_literal | @swift_token_self_expression | @swift_token_simple_identifier | @swift_token_special_literal | @swift_token_super_expression | @swift_try_expression | @swift_tuple_expression | @swift_value_pack_expansion | @swift_value_parameter_pack swift_await_expression_expr( unique int swift_await_expression: @swift_await_expression ref, unique int expr: @swift_await_expression_expr_type ref ); -@swift_await_expression_child_type = @swift_additive_expression | @swift_array_literal | @swift_as_expression | @swift_assignment | @swift_await_expression | @swift_bitwise_operation | @swift_call_expression | @swift_check_expression | @swift_comparison_expression | @swift_conjunction_expression | @swift_constructor_expression | @swift_dictionary_literal | @swift_directive | @swift_disjunction_expression | @swift_equality_expression | @swift_if_statement | @swift_infix_expression | @swift_key_path_expression | @swift_key_path_string_expression | @swift_lambda_literal | @swift_line_string_literal | @swift_macro_invocation | @swift_multi_line_string_literal | @swift_multiplicative_expression | @swift_navigation_expression | @swift_nil_coalescing_expression | @swift_open_end_range_expression | @swift_open_start_range_expression | @swift_optional_chain_marker | @swift_playground_literal | @swift_postfix_expression | @swift_prefix_expression | @swift_range_expression | @swift_raw_string_literal | @swift_selector_expression | @swift_switch_statement | @swift_ternary_expression | @swift_token_bang | @swift_token_bin_literal | @swift_token_boolean_literal | @swift_token_custom_operator | @swift_token_diagnostic | @swift_token_fully_open_range | @swift_token_hex_literal | @swift_token_integer_literal | @swift_token_oct_literal | @swift_token_real_literal | @swift_token_regex_literal | @swift_token_self_expression | @swift_token_simple_identifier | @swift_token_special_literal | @swift_token_super_expression | @swift_try_expression | @swift_tuple_expression | @swift_value_pack_expansion | @swift_value_parameter_pack +@swift_await_expression_child_type = @swift_additive_expression | @swift_array_literal | @swift_as_expression | @swift_assignment | @swift_await_expression | @swift_bitwise_operation | @swift_call_expression | @swift_check_expression | @swift_comparison_expression | @swift_conjunction_expression | @swift_constructor_expression | @swift_dictionary_literal | @swift_directive | @swift_disjunction_expression | @swift_equality_expression | @swift_if_statement | @swift_infix_expression | @swift_key_path_expression | @swift_key_path_string_expression | @swift_lambda_literal | @swift_line_string_literal | @swift_macro_invocation | @swift_multi_line_string_literal | @swift_multiplicative_expression | @swift_navigation_expression | @swift_nil_coalescing_expression | @swift_open_end_range_expression | @swift_open_start_range_expression | @swift_optional_chain_marker | @swift_playground_literal | @swift_postfix_expression | @swift_prefix_expression | @swift_range_expression | @swift_raw_string_literal | @swift_referenceable_operator | @swift_selector_expression | @swift_switch_statement | @swift_ternary_expression | @swift_token_bin_literal | @swift_token_boolean_literal | @swift_token_diagnostic | @swift_token_fully_open_range | @swift_token_hex_literal | @swift_token_integer_literal | @swift_token_oct_literal | @swift_token_real_literal | @swift_token_regex_literal | @swift_token_self_expression | @swift_token_simple_identifier | @swift_token_special_literal | @swift_token_super_expression | @swift_try_expression | @swift_tuple_expression | @swift_value_pack_expansion | @swift_value_parameter_pack swift_await_expression_child( unique int swift_await_expression: @swift_await_expression ref, @@ -301,7 +301,7 @@ swift_await_expression_def( unique int id: @swift_await_expression ); -@swift_bitwise_operation_lhs_type = @swift_additive_expression | @swift_array_literal | @swift_as_expression | @swift_assignment | @swift_await_expression | @swift_bitwise_operation | @swift_call_expression | @swift_check_expression | @swift_comparison_expression | @swift_conjunction_expression | @swift_constructor_expression | @swift_dictionary_literal | @swift_directive | @swift_disjunction_expression | @swift_equality_expression | @swift_if_statement | @swift_infix_expression | @swift_key_path_expression | @swift_key_path_string_expression | @swift_lambda_literal | @swift_line_string_literal | @swift_macro_invocation | @swift_multi_line_string_literal | @swift_multiplicative_expression | @swift_navigation_expression | @swift_nil_coalescing_expression | @swift_open_end_range_expression | @swift_open_start_range_expression | @swift_optional_chain_marker | @swift_playground_literal | @swift_postfix_expression | @swift_prefix_expression | @swift_range_expression | @swift_raw_string_literal | @swift_reserved_word | @swift_selector_expression | @swift_switch_statement | @swift_ternary_expression | @swift_token_bang | @swift_token_bin_literal | @swift_token_boolean_literal | @swift_token_custom_operator | @swift_token_diagnostic | @swift_token_fully_open_range | @swift_token_hex_literal | @swift_token_integer_literal | @swift_token_oct_literal | @swift_token_real_literal | @swift_token_regex_literal | @swift_token_self_expression | @swift_token_simple_identifier | @swift_token_special_literal | @swift_token_super_expression | @swift_try_expression | @swift_tuple_expression | @swift_value_pack_expansion | @swift_value_parameter_pack +@swift_bitwise_operation_lhs_type = @swift_additive_expression | @swift_array_literal | @swift_as_expression | @swift_assignment | @swift_await_expression | @swift_bitwise_operation | @swift_call_expression | @swift_check_expression | @swift_comparison_expression | @swift_conjunction_expression | @swift_constructor_expression | @swift_dictionary_literal | @swift_directive | @swift_disjunction_expression | @swift_equality_expression | @swift_if_statement | @swift_infix_expression | @swift_key_path_expression | @swift_key_path_string_expression | @swift_lambda_literal | @swift_line_string_literal | @swift_macro_invocation | @swift_multi_line_string_literal | @swift_multiplicative_expression | @swift_navigation_expression | @swift_nil_coalescing_expression | @swift_open_end_range_expression | @swift_open_start_range_expression | @swift_optional_chain_marker | @swift_playground_literal | @swift_postfix_expression | @swift_prefix_expression | @swift_range_expression | @swift_raw_string_literal | @swift_referenceable_operator | @swift_reserved_word | @swift_selector_expression | @swift_switch_statement | @swift_ternary_expression | @swift_token_bin_literal | @swift_token_boolean_literal | @swift_token_diagnostic | @swift_token_fully_open_range | @swift_token_hex_literal | @swift_token_integer_literal | @swift_token_oct_literal | @swift_token_real_literal | @swift_token_regex_literal | @swift_token_self_expression | @swift_token_simple_identifier | @swift_token_special_literal | @swift_token_super_expression | @swift_try_expression | @swift_tuple_expression | @swift_value_pack_expansion | @swift_value_parameter_pack case @swift_bitwise_operation.op of 0 = @swift_bitwise_operation_ampersand @@ -312,7 +312,7 @@ case @swift_bitwise_operation.op of ; -@swift_bitwise_operation_rhs_type = @swift_additive_expression | @swift_array_literal | @swift_as_expression | @swift_assignment | @swift_await_expression | @swift_bitwise_operation | @swift_call_expression | @swift_check_expression | @swift_comparison_expression | @swift_conjunction_expression | @swift_constructor_expression | @swift_dictionary_literal | @swift_directive | @swift_disjunction_expression | @swift_equality_expression | @swift_if_statement | @swift_infix_expression | @swift_key_path_expression | @swift_key_path_string_expression | @swift_lambda_literal | @swift_line_string_literal | @swift_macro_invocation | @swift_multi_line_string_literal | @swift_multiplicative_expression | @swift_navigation_expression | @swift_nil_coalescing_expression | @swift_open_end_range_expression | @swift_open_start_range_expression | @swift_optional_chain_marker | @swift_playground_literal | @swift_postfix_expression | @swift_prefix_expression | @swift_range_expression | @swift_raw_string_literal | @swift_reserved_word | @swift_selector_expression | @swift_switch_statement | @swift_ternary_expression | @swift_token_bang | @swift_token_bin_literal | @swift_token_boolean_literal | @swift_token_custom_operator | @swift_token_diagnostic | @swift_token_fully_open_range | @swift_token_hex_literal | @swift_token_integer_literal | @swift_token_oct_literal | @swift_token_real_literal | @swift_token_regex_literal | @swift_token_self_expression | @swift_token_simple_identifier | @swift_token_special_literal | @swift_token_super_expression | @swift_try_expression | @swift_tuple_expression | @swift_value_pack_expansion | @swift_value_parameter_pack +@swift_bitwise_operation_rhs_type = @swift_additive_expression | @swift_array_literal | @swift_as_expression | @swift_assignment | @swift_await_expression | @swift_bitwise_operation | @swift_call_expression | @swift_check_expression | @swift_comparison_expression | @swift_conjunction_expression | @swift_constructor_expression | @swift_dictionary_literal | @swift_directive | @swift_disjunction_expression | @swift_equality_expression | @swift_if_statement | @swift_infix_expression | @swift_key_path_expression | @swift_key_path_string_expression | @swift_lambda_literal | @swift_line_string_literal | @swift_macro_invocation | @swift_multi_line_string_literal | @swift_multiplicative_expression | @swift_navigation_expression | @swift_nil_coalescing_expression | @swift_open_end_range_expression | @swift_open_start_range_expression | @swift_optional_chain_marker | @swift_playground_literal | @swift_postfix_expression | @swift_prefix_expression | @swift_range_expression | @swift_raw_string_literal | @swift_referenceable_operator | @swift_reserved_word | @swift_selector_expression | @swift_switch_statement | @swift_ternary_expression | @swift_token_bin_literal | @swift_token_boolean_literal | @swift_token_diagnostic | @swift_token_fully_open_range | @swift_token_hex_literal | @swift_token_integer_literal | @swift_token_oct_literal | @swift_token_real_literal | @swift_token_regex_literal | @swift_token_self_expression | @swift_token_simple_identifier | @swift_token_special_literal | @swift_token_super_expression | @swift_try_expression | @swift_tuple_expression | @swift_value_pack_expansion | @swift_value_parameter_pack swift_bitwise_operation_def( unique int id: @swift_bitwise_operation, @@ -321,7 +321,7 @@ swift_bitwise_operation_def( int rhs: @swift_bitwise_operation_rhs_type ref ); -@swift_call_expression_child_type = @swift_additive_expression | @swift_array_literal | @swift_as_expression | @swift_assignment | @swift_await_expression | @swift_bitwise_operation | @swift_call_expression | @swift_call_suffix | @swift_check_expression | @swift_comparison_expression | @swift_conjunction_expression | @swift_constructor_expression | @swift_dictionary_literal | @swift_directive | @swift_disjunction_expression | @swift_equality_expression | @swift_if_statement | @swift_infix_expression | @swift_key_path_expression | @swift_key_path_string_expression | @swift_lambda_literal | @swift_line_string_literal | @swift_macro_invocation | @swift_multi_line_string_literal | @swift_multiplicative_expression | @swift_navigation_expression | @swift_nil_coalescing_expression | @swift_open_end_range_expression | @swift_open_start_range_expression | @swift_optional_chain_marker | @swift_playground_literal | @swift_postfix_expression | @swift_prefix_expression | @swift_range_expression | @swift_raw_string_literal | @swift_selector_expression | @swift_switch_statement | @swift_ternary_expression | @swift_token_bang | @swift_token_bin_literal | @swift_token_boolean_literal | @swift_token_custom_operator | @swift_token_diagnostic | @swift_token_fully_open_range | @swift_token_hex_literal | @swift_token_integer_literal | @swift_token_oct_literal | @swift_token_real_literal | @swift_token_regex_literal | @swift_token_self_expression | @swift_token_simple_identifier | @swift_token_special_literal | @swift_token_super_expression | @swift_try_expression | @swift_tuple_expression | @swift_value_pack_expansion | @swift_value_parameter_pack +@swift_call_expression_child_type = @swift_additive_expression | @swift_array_literal | @swift_as_expression | @swift_assignment | @swift_await_expression | @swift_bitwise_operation | @swift_call_expression | @swift_call_suffix | @swift_check_expression | @swift_comparison_expression | @swift_conjunction_expression | @swift_constructor_expression | @swift_dictionary_literal | @swift_directive | @swift_disjunction_expression | @swift_equality_expression | @swift_if_statement | @swift_infix_expression | @swift_key_path_expression | @swift_key_path_string_expression | @swift_lambda_literal | @swift_line_string_literal | @swift_macro_invocation | @swift_multi_line_string_literal | @swift_multiplicative_expression | @swift_navigation_expression | @swift_nil_coalescing_expression | @swift_open_end_range_expression | @swift_open_start_range_expression | @swift_optional_chain_marker | @swift_playground_literal | @swift_postfix_expression | @swift_prefix_expression | @swift_range_expression | @swift_raw_string_literal | @swift_referenceable_operator | @swift_selector_expression | @swift_switch_statement | @swift_ternary_expression | @swift_token_bin_literal | @swift_token_boolean_literal | @swift_token_diagnostic | @swift_token_fully_open_range | @swift_token_hex_literal | @swift_token_integer_literal | @swift_token_oct_literal | @swift_token_real_literal | @swift_token_regex_literal | @swift_token_self_expression | @swift_token_simple_identifier | @swift_token_special_literal | @swift_token_super_expression | @swift_try_expression | @swift_tuple_expression | @swift_value_pack_expansion | @swift_value_parameter_pack #keyset[swift_call_expression, index] swift_call_expression_child( @@ -367,7 +367,7 @@ swift_capture_list_def( @swift_capture_list_item_name_type = @swift_token_self_expression | @swift_token_simple_identifier -@swift_capture_list_item_value_type = @swift_additive_expression | @swift_array_literal | @swift_as_expression | @swift_assignment | @swift_await_expression | @swift_bitwise_operation | @swift_call_expression | @swift_check_expression | @swift_comparison_expression | @swift_conjunction_expression | @swift_constructor_expression | @swift_dictionary_literal | @swift_directive | @swift_disjunction_expression | @swift_equality_expression | @swift_if_statement | @swift_infix_expression | @swift_key_path_expression | @swift_key_path_string_expression | @swift_lambda_literal | @swift_line_string_literal | @swift_macro_invocation | @swift_multi_line_string_literal | @swift_multiplicative_expression | @swift_navigation_expression | @swift_nil_coalescing_expression | @swift_open_end_range_expression | @swift_open_start_range_expression | @swift_optional_chain_marker | @swift_playground_literal | @swift_postfix_expression | @swift_prefix_expression | @swift_range_expression | @swift_raw_string_literal | @swift_reserved_word | @swift_selector_expression | @swift_switch_statement | @swift_ternary_expression | @swift_token_bang | @swift_token_bin_literal | @swift_token_boolean_literal | @swift_token_custom_operator | @swift_token_diagnostic | @swift_token_fully_open_range | @swift_token_hex_literal | @swift_token_integer_literal | @swift_token_oct_literal | @swift_token_real_literal | @swift_token_regex_literal | @swift_token_self_expression | @swift_token_simple_identifier | @swift_token_special_literal | @swift_token_super_expression | @swift_try_expression | @swift_tuple_expression | @swift_value_pack_expansion | @swift_value_parameter_pack +@swift_capture_list_item_value_type = @swift_additive_expression | @swift_array_literal | @swift_as_expression | @swift_assignment | @swift_await_expression | @swift_bitwise_operation | @swift_call_expression | @swift_check_expression | @swift_comparison_expression | @swift_conjunction_expression | @swift_constructor_expression | @swift_dictionary_literal | @swift_directive | @swift_disjunction_expression | @swift_equality_expression | @swift_if_statement | @swift_infix_expression | @swift_key_path_expression | @swift_key_path_string_expression | @swift_lambda_literal | @swift_line_string_literal | @swift_macro_invocation | @swift_multi_line_string_literal | @swift_multiplicative_expression | @swift_navigation_expression | @swift_nil_coalescing_expression | @swift_open_end_range_expression | @swift_open_start_range_expression | @swift_optional_chain_marker | @swift_playground_literal | @swift_postfix_expression | @swift_prefix_expression | @swift_range_expression | @swift_raw_string_literal | @swift_referenceable_operator | @swift_reserved_word | @swift_selector_expression | @swift_switch_statement | @swift_ternary_expression | @swift_token_bin_literal | @swift_token_boolean_literal | @swift_token_diagnostic | @swift_token_fully_open_range | @swift_token_hex_literal | @swift_token_integer_literal | @swift_token_oct_literal | @swift_token_real_literal | @swift_token_regex_literal | @swift_token_self_expression | @swift_token_simple_identifier | @swift_token_special_literal | @swift_token_super_expression | @swift_try_expression | @swift_tuple_expression | @swift_value_pack_expansion | @swift_value_parameter_pack swift_capture_list_item_value( unique int swift_capture_list_item: @swift_capture_list_item ref, @@ -409,7 +409,7 @@ case @swift_check_expression.op of ; -@swift_check_expression_target_type = @swift_additive_expression | @swift_array_literal | @swift_as_expression | @swift_assignment | @swift_await_expression | @swift_bitwise_operation | @swift_call_expression | @swift_check_expression | @swift_comparison_expression | @swift_conjunction_expression | @swift_constructor_expression | @swift_dictionary_literal | @swift_directive | @swift_disjunction_expression | @swift_equality_expression | @swift_if_statement | @swift_infix_expression | @swift_key_path_expression | @swift_key_path_string_expression | @swift_lambda_literal | @swift_line_string_literal | @swift_macro_invocation | @swift_multi_line_string_literal | @swift_multiplicative_expression | @swift_navigation_expression | @swift_nil_coalescing_expression | @swift_open_end_range_expression | @swift_open_start_range_expression | @swift_optional_chain_marker | @swift_playground_literal | @swift_postfix_expression | @swift_prefix_expression | @swift_range_expression | @swift_raw_string_literal | @swift_reserved_word | @swift_selector_expression | @swift_switch_statement | @swift_ternary_expression | @swift_token_bang | @swift_token_bin_literal | @swift_token_boolean_literal | @swift_token_custom_operator | @swift_token_diagnostic | @swift_token_fully_open_range | @swift_token_hex_literal | @swift_token_integer_literal | @swift_token_oct_literal | @swift_token_real_literal | @swift_token_regex_literal | @swift_token_self_expression | @swift_token_simple_identifier | @swift_token_special_literal | @swift_token_super_expression | @swift_try_expression | @swift_tuple_expression | @swift_value_pack_expansion | @swift_value_parameter_pack +@swift_check_expression_target_type = @swift_additive_expression | @swift_array_literal | @swift_as_expression | @swift_assignment | @swift_await_expression | @swift_bitwise_operation | @swift_call_expression | @swift_check_expression | @swift_comparison_expression | @swift_conjunction_expression | @swift_constructor_expression | @swift_dictionary_literal | @swift_directive | @swift_disjunction_expression | @swift_equality_expression | @swift_if_statement | @swift_infix_expression | @swift_key_path_expression | @swift_key_path_string_expression | @swift_lambda_literal | @swift_line_string_literal | @swift_macro_invocation | @swift_multi_line_string_literal | @swift_multiplicative_expression | @swift_navigation_expression | @swift_nil_coalescing_expression | @swift_open_end_range_expression | @swift_open_start_range_expression | @swift_optional_chain_marker | @swift_playground_literal | @swift_postfix_expression | @swift_prefix_expression | @swift_range_expression | @swift_raw_string_literal | @swift_referenceable_operator | @swift_reserved_word | @swift_selector_expression | @swift_switch_statement | @swift_ternary_expression | @swift_token_bin_literal | @swift_token_boolean_literal | @swift_token_diagnostic | @swift_token_fully_open_range | @swift_token_hex_literal | @swift_token_integer_literal | @swift_token_oct_literal | @swift_token_real_literal | @swift_token_regex_literal | @swift_token_self_expression | @swift_token_simple_identifier | @swift_token_special_literal | @swift_token_super_expression | @swift_try_expression | @swift_tuple_expression | @swift_value_pack_expansion | @swift_value_parameter_pack @swift_check_expression_type_type = @swift_array_type | @swift_dictionary_type | @swift_existential_type | @swift_function_type | @swift_metatype | @swift_opaque_type | @swift_optional_type | @swift_protocol_composition_type | @swift_suppressed_constraint | @swift_tuple_type | @swift_type_modifiers | @swift_type_pack_expansion | @swift_type_parameter_pack | @swift_user_type @@ -469,7 +469,7 @@ swift_class_declaration_def( int name: @swift_class_declaration_name_type ref ); -@swift_comparison_expression_lhs_type = @swift_additive_expression | @swift_array_literal | @swift_as_expression | @swift_assignment | @swift_await_expression | @swift_bitwise_operation | @swift_call_expression | @swift_check_expression | @swift_comparison_expression | @swift_conjunction_expression | @swift_constructor_expression | @swift_dictionary_literal | @swift_directive | @swift_disjunction_expression | @swift_equality_expression | @swift_if_statement | @swift_infix_expression | @swift_key_path_expression | @swift_key_path_string_expression | @swift_lambda_literal | @swift_line_string_literal | @swift_macro_invocation | @swift_multi_line_string_literal | @swift_multiplicative_expression | @swift_navigation_expression | @swift_nil_coalescing_expression | @swift_open_end_range_expression | @swift_open_start_range_expression | @swift_optional_chain_marker | @swift_playground_literal | @swift_postfix_expression | @swift_prefix_expression | @swift_range_expression | @swift_raw_string_literal | @swift_reserved_word | @swift_selector_expression | @swift_switch_statement | @swift_ternary_expression | @swift_token_bang | @swift_token_bin_literal | @swift_token_boolean_literal | @swift_token_custom_operator | @swift_token_diagnostic | @swift_token_fully_open_range | @swift_token_hex_literal | @swift_token_integer_literal | @swift_token_oct_literal | @swift_token_real_literal | @swift_token_regex_literal | @swift_token_self_expression | @swift_token_simple_identifier | @swift_token_special_literal | @swift_token_super_expression | @swift_try_expression | @swift_tuple_expression | @swift_value_pack_expansion | @swift_value_parameter_pack +@swift_comparison_expression_lhs_type = @swift_additive_expression | @swift_array_literal | @swift_as_expression | @swift_assignment | @swift_await_expression | @swift_bitwise_operation | @swift_call_expression | @swift_check_expression | @swift_comparison_expression | @swift_conjunction_expression | @swift_constructor_expression | @swift_dictionary_literal | @swift_directive | @swift_disjunction_expression | @swift_equality_expression | @swift_if_statement | @swift_infix_expression | @swift_key_path_expression | @swift_key_path_string_expression | @swift_lambda_literal | @swift_line_string_literal | @swift_macro_invocation | @swift_multi_line_string_literal | @swift_multiplicative_expression | @swift_navigation_expression | @swift_nil_coalescing_expression | @swift_open_end_range_expression | @swift_open_start_range_expression | @swift_optional_chain_marker | @swift_playground_literal | @swift_postfix_expression | @swift_prefix_expression | @swift_range_expression | @swift_raw_string_literal | @swift_referenceable_operator | @swift_reserved_word | @swift_selector_expression | @swift_switch_statement | @swift_ternary_expression | @swift_token_bin_literal | @swift_token_boolean_literal | @swift_token_diagnostic | @swift_token_fully_open_range | @swift_token_hex_literal | @swift_token_integer_literal | @swift_token_oct_literal | @swift_token_real_literal | @swift_token_regex_literal | @swift_token_self_expression | @swift_token_simple_identifier | @swift_token_special_literal | @swift_token_super_expression | @swift_try_expression | @swift_tuple_expression | @swift_value_pack_expansion | @swift_value_parameter_pack case @swift_comparison_expression.op of 0 = @swift_comparison_expression_langle @@ -479,7 +479,7 @@ case @swift_comparison_expression.op of ; -@swift_comparison_expression_rhs_type = @swift_additive_expression | @swift_array_literal | @swift_as_expression | @swift_assignment | @swift_await_expression | @swift_bitwise_operation | @swift_call_expression | @swift_check_expression | @swift_comparison_expression | @swift_conjunction_expression | @swift_constructor_expression | @swift_dictionary_literal | @swift_directive | @swift_disjunction_expression | @swift_equality_expression | @swift_if_statement | @swift_infix_expression | @swift_key_path_expression | @swift_key_path_string_expression | @swift_lambda_literal | @swift_line_string_literal | @swift_macro_invocation | @swift_multi_line_string_literal | @swift_multiplicative_expression | @swift_navigation_expression | @swift_nil_coalescing_expression | @swift_open_end_range_expression | @swift_open_start_range_expression | @swift_optional_chain_marker | @swift_playground_literal | @swift_postfix_expression | @swift_prefix_expression | @swift_range_expression | @swift_raw_string_literal | @swift_reserved_word | @swift_selector_expression | @swift_switch_statement | @swift_ternary_expression | @swift_token_bang | @swift_token_bin_literal | @swift_token_boolean_literal | @swift_token_custom_operator | @swift_token_diagnostic | @swift_token_fully_open_range | @swift_token_hex_literal | @swift_token_integer_literal | @swift_token_oct_literal | @swift_token_real_literal | @swift_token_regex_literal | @swift_token_self_expression | @swift_token_simple_identifier | @swift_token_special_literal | @swift_token_super_expression | @swift_try_expression | @swift_tuple_expression | @swift_value_pack_expansion | @swift_value_parameter_pack +@swift_comparison_expression_rhs_type = @swift_additive_expression | @swift_array_literal | @swift_as_expression | @swift_assignment | @swift_await_expression | @swift_bitwise_operation | @swift_call_expression | @swift_check_expression | @swift_comparison_expression | @swift_conjunction_expression | @swift_constructor_expression | @swift_dictionary_literal | @swift_directive | @swift_disjunction_expression | @swift_equality_expression | @swift_if_statement | @swift_infix_expression | @swift_key_path_expression | @swift_key_path_string_expression | @swift_lambda_literal | @swift_line_string_literal | @swift_macro_invocation | @swift_multi_line_string_literal | @swift_multiplicative_expression | @swift_navigation_expression | @swift_nil_coalescing_expression | @swift_open_end_range_expression | @swift_open_start_range_expression | @swift_optional_chain_marker | @swift_playground_literal | @swift_postfix_expression | @swift_prefix_expression | @swift_range_expression | @swift_raw_string_literal | @swift_referenceable_operator | @swift_reserved_word | @swift_selector_expression | @swift_switch_statement | @swift_ternary_expression | @swift_token_bin_literal | @swift_token_boolean_literal | @swift_token_diagnostic | @swift_token_fully_open_range | @swift_token_hex_literal | @swift_token_integer_literal | @swift_token_oct_literal | @swift_token_real_literal | @swift_token_regex_literal | @swift_token_self_expression | @swift_token_simple_identifier | @swift_token_special_literal | @swift_token_super_expression | @swift_try_expression | @swift_tuple_expression | @swift_value_pack_expansion | @swift_value_parameter_pack swift_comparison_expression_def( unique int id: @swift_comparison_expression, @@ -540,14 +540,14 @@ swift_computed_setter_def( unique int id: @swift_computed_setter ); -@swift_conjunction_expression_lhs_type = @swift_additive_expression | @swift_array_literal | @swift_as_expression | @swift_assignment | @swift_await_expression | @swift_bitwise_operation | @swift_call_expression | @swift_check_expression | @swift_comparison_expression | @swift_conjunction_expression | @swift_constructor_expression | @swift_dictionary_literal | @swift_directive | @swift_disjunction_expression | @swift_equality_expression | @swift_if_statement | @swift_infix_expression | @swift_key_path_expression | @swift_key_path_string_expression | @swift_lambda_literal | @swift_line_string_literal | @swift_macro_invocation | @swift_multi_line_string_literal | @swift_multiplicative_expression | @swift_navigation_expression | @swift_nil_coalescing_expression | @swift_open_end_range_expression | @swift_open_start_range_expression | @swift_optional_chain_marker | @swift_playground_literal | @swift_postfix_expression | @swift_prefix_expression | @swift_range_expression | @swift_raw_string_literal | @swift_reserved_word | @swift_selector_expression | @swift_switch_statement | @swift_ternary_expression | @swift_token_bang | @swift_token_bin_literal | @swift_token_boolean_literal | @swift_token_custom_operator | @swift_token_diagnostic | @swift_token_fully_open_range | @swift_token_hex_literal | @swift_token_integer_literal | @swift_token_oct_literal | @swift_token_real_literal | @swift_token_regex_literal | @swift_token_self_expression | @swift_token_simple_identifier | @swift_token_special_literal | @swift_token_super_expression | @swift_try_expression | @swift_tuple_expression | @swift_value_pack_expansion | @swift_value_parameter_pack +@swift_conjunction_expression_lhs_type = @swift_additive_expression | @swift_array_literal | @swift_as_expression | @swift_assignment | @swift_await_expression | @swift_bitwise_operation | @swift_call_expression | @swift_check_expression | @swift_comparison_expression | @swift_conjunction_expression | @swift_constructor_expression | @swift_dictionary_literal | @swift_directive | @swift_disjunction_expression | @swift_equality_expression | @swift_if_statement | @swift_infix_expression | @swift_key_path_expression | @swift_key_path_string_expression | @swift_lambda_literal | @swift_line_string_literal | @swift_macro_invocation | @swift_multi_line_string_literal | @swift_multiplicative_expression | @swift_navigation_expression | @swift_nil_coalescing_expression | @swift_open_end_range_expression | @swift_open_start_range_expression | @swift_optional_chain_marker | @swift_playground_literal | @swift_postfix_expression | @swift_prefix_expression | @swift_range_expression | @swift_raw_string_literal | @swift_referenceable_operator | @swift_reserved_word | @swift_selector_expression | @swift_switch_statement | @swift_ternary_expression | @swift_token_bin_literal | @swift_token_boolean_literal | @swift_token_diagnostic | @swift_token_fully_open_range | @swift_token_hex_literal | @swift_token_integer_literal | @swift_token_oct_literal | @swift_token_real_literal | @swift_token_regex_literal | @swift_token_self_expression | @swift_token_simple_identifier | @swift_token_special_literal | @swift_token_super_expression | @swift_try_expression | @swift_tuple_expression | @swift_value_pack_expansion | @swift_value_parameter_pack case @swift_conjunction_expression.op of 0 = @swift_conjunction_expression_ampersandampersand ; -@swift_conjunction_expression_rhs_type = @swift_additive_expression | @swift_array_literal | @swift_as_expression | @swift_assignment | @swift_await_expression | @swift_bitwise_operation | @swift_call_expression | @swift_check_expression | @swift_comparison_expression | @swift_conjunction_expression | @swift_constructor_expression | @swift_dictionary_literal | @swift_directive | @swift_disjunction_expression | @swift_equality_expression | @swift_if_statement | @swift_infix_expression | @swift_key_path_expression | @swift_key_path_string_expression | @swift_lambda_literal | @swift_line_string_literal | @swift_macro_invocation | @swift_multi_line_string_literal | @swift_multiplicative_expression | @swift_navigation_expression | @swift_nil_coalescing_expression | @swift_open_end_range_expression | @swift_open_start_range_expression | @swift_optional_chain_marker | @swift_playground_literal | @swift_postfix_expression | @swift_prefix_expression | @swift_range_expression | @swift_raw_string_literal | @swift_reserved_word | @swift_selector_expression | @swift_switch_statement | @swift_ternary_expression | @swift_token_bang | @swift_token_bin_literal | @swift_token_boolean_literal | @swift_token_custom_operator | @swift_token_diagnostic | @swift_token_fully_open_range | @swift_token_hex_literal | @swift_token_integer_literal | @swift_token_oct_literal | @swift_token_real_literal | @swift_token_regex_literal | @swift_token_self_expression | @swift_token_simple_identifier | @swift_token_special_literal | @swift_token_super_expression | @swift_try_expression | @swift_tuple_expression | @swift_value_pack_expansion | @swift_value_parameter_pack +@swift_conjunction_expression_rhs_type = @swift_additive_expression | @swift_array_literal | @swift_as_expression | @swift_assignment | @swift_await_expression | @swift_bitwise_operation | @swift_call_expression | @swift_check_expression | @swift_comparison_expression | @swift_conjunction_expression | @swift_constructor_expression | @swift_dictionary_literal | @swift_directive | @swift_disjunction_expression | @swift_equality_expression | @swift_if_statement | @swift_infix_expression | @swift_key_path_expression | @swift_key_path_string_expression | @swift_lambda_literal | @swift_line_string_literal | @swift_macro_invocation | @swift_multi_line_string_literal | @swift_multiplicative_expression | @swift_navigation_expression | @swift_nil_coalescing_expression | @swift_open_end_range_expression | @swift_open_start_range_expression | @swift_optional_chain_marker | @swift_playground_literal | @swift_postfix_expression | @swift_prefix_expression | @swift_range_expression | @swift_raw_string_literal | @swift_referenceable_operator | @swift_reserved_word | @swift_selector_expression | @swift_switch_statement | @swift_ternary_expression | @swift_token_bin_literal | @swift_token_boolean_literal | @swift_token_diagnostic | @swift_token_fully_open_range | @swift_token_hex_literal | @swift_token_integer_literal | @swift_token_oct_literal | @swift_token_real_literal | @swift_token_regex_literal | @swift_token_self_expression | @swift_token_simple_identifier | @swift_token_special_literal | @swift_token_super_expression | @swift_try_expression | @swift_tuple_expression | @swift_value_pack_expansion | @swift_value_parameter_pack swift_conjunction_expression_def( unique int id: @swift_conjunction_expression, @@ -584,14 +584,14 @@ swift_constructor_suffix_def( unique int id: @swift_constructor_suffix ); -@swift_control_transfer_statement_result_type = @swift_additive_expression | @swift_array_literal | @swift_as_expression | @swift_assignment | @swift_await_expression | @swift_bitwise_operation | @swift_call_expression | @swift_check_expression | @swift_comparison_expression | @swift_conjunction_expression | @swift_constructor_expression | @swift_dictionary_literal | @swift_directive | @swift_disjunction_expression | @swift_equality_expression | @swift_if_statement | @swift_infix_expression | @swift_key_path_expression | @swift_key_path_string_expression | @swift_lambda_literal | @swift_line_string_literal | @swift_macro_invocation | @swift_multi_line_string_literal | @swift_multiplicative_expression | @swift_navigation_expression | @swift_nil_coalescing_expression | @swift_open_end_range_expression | @swift_open_start_range_expression | @swift_optional_chain_marker | @swift_playground_literal | @swift_postfix_expression | @swift_prefix_expression | @swift_range_expression | @swift_raw_string_literal | @swift_reserved_word | @swift_selector_expression | @swift_switch_statement | @swift_ternary_expression | @swift_token_bang | @swift_token_bin_literal | @swift_token_boolean_literal | @swift_token_custom_operator | @swift_token_diagnostic | @swift_token_fully_open_range | @swift_token_hex_literal | @swift_token_integer_literal | @swift_token_oct_literal | @swift_token_real_literal | @swift_token_regex_literal | @swift_token_self_expression | @swift_token_simple_identifier | @swift_token_special_literal | @swift_token_super_expression | @swift_try_expression | @swift_tuple_expression | @swift_value_pack_expansion | @swift_value_parameter_pack +@swift_control_transfer_statement_result_type = @swift_additive_expression | @swift_array_literal | @swift_as_expression | @swift_assignment | @swift_await_expression | @swift_bitwise_operation | @swift_call_expression | @swift_check_expression | @swift_comparison_expression | @swift_conjunction_expression | @swift_constructor_expression | @swift_dictionary_literal | @swift_directive | @swift_disjunction_expression | @swift_equality_expression | @swift_if_statement | @swift_infix_expression | @swift_key_path_expression | @swift_key_path_string_expression | @swift_lambda_literal | @swift_line_string_literal | @swift_macro_invocation | @swift_multi_line_string_literal | @swift_multiplicative_expression | @swift_navigation_expression | @swift_nil_coalescing_expression | @swift_open_end_range_expression | @swift_open_start_range_expression | @swift_optional_chain_marker | @swift_playground_literal | @swift_postfix_expression | @swift_prefix_expression | @swift_range_expression | @swift_raw_string_literal | @swift_referenceable_operator | @swift_reserved_word | @swift_selector_expression | @swift_switch_statement | @swift_ternary_expression | @swift_token_bin_literal | @swift_token_boolean_literal | @swift_token_diagnostic | @swift_token_fully_open_range | @swift_token_hex_literal | @swift_token_integer_literal | @swift_token_oct_literal | @swift_token_real_literal | @swift_token_regex_literal | @swift_token_self_expression | @swift_token_simple_identifier | @swift_token_special_literal | @swift_token_super_expression | @swift_try_expression | @swift_tuple_expression | @swift_value_pack_expansion | @swift_value_parameter_pack swift_control_transfer_statement_result( unique int swift_control_transfer_statement: @swift_control_transfer_statement ref, unique int result: @swift_control_transfer_statement_result_type ref ); -@swift_control_transfer_statement_child_type = @swift_additive_expression | @swift_array_literal | @swift_as_expression | @swift_assignment | @swift_await_expression | @swift_bitwise_operation | @swift_call_expression | @swift_check_expression | @swift_comparison_expression | @swift_conjunction_expression | @swift_constructor_expression | @swift_dictionary_literal | @swift_directive | @swift_disjunction_expression | @swift_equality_expression | @swift_if_statement | @swift_infix_expression | @swift_key_path_expression | @swift_key_path_string_expression | @swift_lambda_literal | @swift_line_string_literal | @swift_macro_invocation | @swift_multi_line_string_literal | @swift_multiplicative_expression | @swift_navigation_expression | @swift_nil_coalescing_expression | @swift_open_end_range_expression | @swift_open_start_range_expression | @swift_optional_chain_marker | @swift_playground_literal | @swift_postfix_expression | @swift_prefix_expression | @swift_range_expression | @swift_raw_string_literal | @swift_selector_expression | @swift_switch_statement | @swift_ternary_expression | @swift_token_bang | @swift_token_bin_literal | @swift_token_boolean_literal | @swift_token_custom_operator | @swift_token_diagnostic | @swift_token_fully_open_range | @swift_token_hex_literal | @swift_token_integer_literal | @swift_token_oct_literal | @swift_token_real_literal | @swift_token_regex_literal | @swift_token_self_expression | @swift_token_simple_identifier | @swift_token_special_literal | @swift_token_super_expression | @swift_token_throw_keyword | @swift_try_expression | @swift_tuple_expression | @swift_value_pack_expansion | @swift_value_parameter_pack +@swift_control_transfer_statement_child_type = @swift_additive_expression | @swift_array_literal | @swift_as_expression | @swift_assignment | @swift_await_expression | @swift_bitwise_operation | @swift_call_expression | @swift_check_expression | @swift_comparison_expression | @swift_conjunction_expression | @swift_constructor_expression | @swift_dictionary_literal | @swift_directive | @swift_disjunction_expression | @swift_equality_expression | @swift_if_statement | @swift_infix_expression | @swift_key_path_expression | @swift_key_path_string_expression | @swift_lambda_literal | @swift_line_string_literal | @swift_macro_invocation | @swift_multi_line_string_literal | @swift_multiplicative_expression | @swift_navigation_expression | @swift_nil_coalescing_expression | @swift_open_end_range_expression | @swift_open_start_range_expression | @swift_optional_chain_marker | @swift_playground_literal | @swift_postfix_expression | @swift_prefix_expression | @swift_range_expression | @swift_raw_string_literal | @swift_referenceable_operator | @swift_selector_expression | @swift_switch_statement | @swift_ternary_expression | @swift_token_bin_literal | @swift_token_boolean_literal | @swift_token_diagnostic | @swift_token_fully_open_range | @swift_token_hex_literal | @swift_token_integer_literal | @swift_token_oct_literal | @swift_token_real_literal | @swift_token_regex_literal | @swift_token_self_expression | @swift_token_simple_identifier | @swift_token_special_literal | @swift_token_super_expression | @swift_token_throw_keyword | @swift_try_expression | @swift_tuple_expression | @swift_value_pack_expansion | @swift_value_parameter_pack #keyset[swift_control_transfer_statement, index] swift_control_transfer_statement_child( @@ -627,7 +627,7 @@ swift_deprecated_operator_declaration_body_def( unique int id: @swift_deprecated_operator_declaration_body ); -@swift_dictionary_literal_key_type = @swift_additive_expression | @swift_array_literal | @swift_as_expression | @swift_assignment | @swift_await_expression | @swift_bitwise_operation | @swift_call_expression | @swift_check_expression | @swift_comparison_expression | @swift_conjunction_expression | @swift_constructor_expression | @swift_dictionary_literal | @swift_directive | @swift_disjunction_expression | @swift_equality_expression | @swift_if_statement | @swift_infix_expression | @swift_key_path_expression | @swift_key_path_string_expression | @swift_lambda_literal | @swift_line_string_literal | @swift_macro_invocation | @swift_multi_line_string_literal | @swift_multiplicative_expression | @swift_navigation_expression | @swift_nil_coalescing_expression | @swift_open_end_range_expression | @swift_open_start_range_expression | @swift_optional_chain_marker | @swift_playground_literal | @swift_postfix_expression | @swift_prefix_expression | @swift_range_expression | @swift_raw_string_literal | @swift_reserved_word | @swift_selector_expression | @swift_switch_statement | @swift_ternary_expression | @swift_token_bang | @swift_token_bin_literal | @swift_token_boolean_literal | @swift_token_custom_operator | @swift_token_diagnostic | @swift_token_fully_open_range | @swift_token_hex_literal | @swift_token_integer_literal | @swift_token_oct_literal | @swift_token_real_literal | @swift_token_regex_literal | @swift_token_self_expression | @swift_token_simple_identifier | @swift_token_special_literal | @swift_token_super_expression | @swift_try_expression | @swift_tuple_expression | @swift_value_pack_expansion | @swift_value_parameter_pack +@swift_dictionary_literal_key_type = @swift_additive_expression | @swift_array_literal | @swift_as_expression | @swift_assignment | @swift_await_expression | @swift_bitwise_operation | @swift_call_expression | @swift_check_expression | @swift_comparison_expression | @swift_conjunction_expression | @swift_constructor_expression | @swift_dictionary_literal | @swift_directive | @swift_disjunction_expression | @swift_equality_expression | @swift_if_statement | @swift_infix_expression | @swift_key_path_expression | @swift_key_path_string_expression | @swift_lambda_literal | @swift_line_string_literal | @swift_macro_invocation | @swift_multi_line_string_literal | @swift_multiplicative_expression | @swift_navigation_expression | @swift_nil_coalescing_expression | @swift_open_end_range_expression | @swift_open_start_range_expression | @swift_optional_chain_marker | @swift_playground_literal | @swift_postfix_expression | @swift_prefix_expression | @swift_range_expression | @swift_raw_string_literal | @swift_referenceable_operator | @swift_reserved_word | @swift_selector_expression | @swift_switch_statement | @swift_ternary_expression | @swift_token_bin_literal | @swift_token_boolean_literal | @swift_token_diagnostic | @swift_token_fully_open_range | @swift_token_hex_literal | @swift_token_integer_literal | @swift_token_oct_literal | @swift_token_real_literal | @swift_token_regex_literal | @swift_token_self_expression | @swift_token_simple_identifier | @swift_token_special_literal | @swift_token_super_expression | @swift_try_expression | @swift_tuple_expression | @swift_value_pack_expansion | @swift_value_parameter_pack #keyset[swift_dictionary_literal, index] swift_dictionary_literal_key( @@ -636,7 +636,7 @@ swift_dictionary_literal_key( unique int key__: @swift_dictionary_literal_key_type ref ); -@swift_dictionary_literal_value_type = @swift_additive_expression | @swift_array_literal | @swift_as_expression | @swift_assignment | @swift_await_expression | @swift_bitwise_operation | @swift_call_expression | @swift_check_expression | @swift_comparison_expression | @swift_conjunction_expression | @swift_constructor_expression | @swift_dictionary_literal | @swift_directive | @swift_disjunction_expression | @swift_equality_expression | @swift_if_statement | @swift_infix_expression | @swift_key_path_expression | @swift_key_path_string_expression | @swift_lambda_literal | @swift_line_string_literal | @swift_macro_invocation | @swift_multi_line_string_literal | @swift_multiplicative_expression | @swift_navigation_expression | @swift_nil_coalescing_expression | @swift_open_end_range_expression | @swift_open_start_range_expression | @swift_optional_chain_marker | @swift_playground_literal | @swift_postfix_expression | @swift_prefix_expression | @swift_range_expression | @swift_raw_string_literal | @swift_reserved_word | @swift_selector_expression | @swift_switch_statement | @swift_ternary_expression | @swift_token_bang | @swift_token_bin_literal | @swift_token_boolean_literal | @swift_token_custom_operator | @swift_token_diagnostic | @swift_token_fully_open_range | @swift_token_hex_literal | @swift_token_integer_literal | @swift_token_oct_literal | @swift_token_real_literal | @swift_token_regex_literal | @swift_token_self_expression | @swift_token_simple_identifier | @swift_token_special_literal | @swift_token_super_expression | @swift_try_expression | @swift_tuple_expression | @swift_value_pack_expansion | @swift_value_parameter_pack +@swift_dictionary_literal_value_type = @swift_additive_expression | @swift_array_literal | @swift_as_expression | @swift_assignment | @swift_await_expression | @swift_bitwise_operation | @swift_call_expression | @swift_check_expression | @swift_comparison_expression | @swift_conjunction_expression | @swift_constructor_expression | @swift_dictionary_literal | @swift_directive | @swift_disjunction_expression | @swift_equality_expression | @swift_if_statement | @swift_infix_expression | @swift_key_path_expression | @swift_key_path_string_expression | @swift_lambda_literal | @swift_line_string_literal | @swift_macro_invocation | @swift_multi_line_string_literal | @swift_multiplicative_expression | @swift_navigation_expression | @swift_nil_coalescing_expression | @swift_open_end_range_expression | @swift_open_start_range_expression | @swift_optional_chain_marker | @swift_playground_literal | @swift_postfix_expression | @swift_prefix_expression | @swift_range_expression | @swift_raw_string_literal | @swift_referenceable_operator | @swift_reserved_word | @swift_selector_expression | @swift_switch_statement | @swift_ternary_expression | @swift_token_bin_literal | @swift_token_boolean_literal | @swift_token_diagnostic | @swift_token_fully_open_range | @swift_token_hex_literal | @swift_token_integer_literal | @swift_token_oct_literal | @swift_token_real_literal | @swift_token_regex_literal | @swift_token_self_expression | @swift_token_simple_identifier | @swift_token_special_literal | @swift_token_super_expression | @swift_try_expression | @swift_tuple_expression | @swift_value_pack_expansion | @swift_value_parameter_pack #keyset[swift_dictionary_literal, index] swift_dictionary_literal_value( @@ -706,7 +706,7 @@ swift_directive_def( unique int id: @swift_directive ); -@swift_directly_assignable_expression_child_type = @swift_additive_expression | @swift_array_literal | @swift_as_expression | @swift_assignment | @swift_await_expression | @swift_bitwise_operation | @swift_call_expression | @swift_check_expression | @swift_comparison_expression | @swift_conjunction_expression | @swift_constructor_expression | @swift_dictionary_literal | @swift_directive | @swift_disjunction_expression | @swift_equality_expression | @swift_if_statement | @swift_infix_expression | @swift_key_path_expression | @swift_key_path_string_expression | @swift_lambda_literal | @swift_line_string_literal | @swift_macro_invocation | @swift_multi_line_string_literal | @swift_multiplicative_expression | @swift_navigation_expression | @swift_nil_coalescing_expression | @swift_open_end_range_expression | @swift_open_start_range_expression | @swift_optional_chain_marker | @swift_playground_literal | @swift_postfix_expression | @swift_prefix_expression | @swift_range_expression | @swift_raw_string_literal | @swift_selector_expression | @swift_switch_statement | @swift_ternary_expression | @swift_token_bang | @swift_token_bin_literal | @swift_token_boolean_literal | @swift_token_custom_operator | @swift_token_diagnostic | @swift_token_fully_open_range | @swift_token_hex_literal | @swift_token_integer_literal | @swift_token_oct_literal | @swift_token_real_literal | @swift_token_regex_literal | @swift_token_self_expression | @swift_token_simple_identifier | @swift_token_special_literal | @swift_token_super_expression | @swift_try_expression | @swift_tuple_expression | @swift_value_pack_expansion | @swift_value_parameter_pack +@swift_directly_assignable_expression_child_type = @swift_additive_expression | @swift_array_literal | @swift_as_expression | @swift_assignment | @swift_await_expression | @swift_bitwise_operation | @swift_call_expression | @swift_check_expression | @swift_comparison_expression | @swift_conjunction_expression | @swift_constructor_expression | @swift_dictionary_literal | @swift_directive | @swift_disjunction_expression | @swift_equality_expression | @swift_if_statement | @swift_infix_expression | @swift_key_path_expression | @swift_key_path_string_expression | @swift_lambda_literal | @swift_line_string_literal | @swift_macro_invocation | @swift_multi_line_string_literal | @swift_multiplicative_expression | @swift_navigation_expression | @swift_nil_coalescing_expression | @swift_open_end_range_expression | @swift_open_start_range_expression | @swift_optional_chain_marker | @swift_playground_literal | @swift_postfix_expression | @swift_prefix_expression | @swift_range_expression | @swift_raw_string_literal | @swift_referenceable_operator | @swift_selector_expression | @swift_switch_statement | @swift_ternary_expression | @swift_token_bin_literal | @swift_token_boolean_literal | @swift_token_diagnostic | @swift_token_fully_open_range | @swift_token_hex_literal | @swift_token_integer_literal | @swift_token_oct_literal | @swift_token_real_literal | @swift_token_regex_literal | @swift_token_self_expression | @swift_token_simple_identifier | @swift_token_special_literal | @swift_token_super_expression | @swift_try_expression | @swift_tuple_expression | @swift_value_pack_expansion | @swift_value_parameter_pack swift_directly_assignable_expression_child( unique int swift_directly_assignable_expression: @swift_directly_assignable_expression ref, @@ -717,14 +717,14 @@ swift_directly_assignable_expression_def( unique int id: @swift_directly_assignable_expression ); -@swift_disjunction_expression_lhs_type = @swift_additive_expression | @swift_array_literal | @swift_as_expression | @swift_assignment | @swift_await_expression | @swift_bitwise_operation | @swift_call_expression | @swift_check_expression | @swift_comparison_expression | @swift_conjunction_expression | @swift_constructor_expression | @swift_dictionary_literal | @swift_directive | @swift_disjunction_expression | @swift_equality_expression | @swift_if_statement | @swift_infix_expression | @swift_key_path_expression | @swift_key_path_string_expression | @swift_lambda_literal | @swift_line_string_literal | @swift_macro_invocation | @swift_multi_line_string_literal | @swift_multiplicative_expression | @swift_navigation_expression | @swift_nil_coalescing_expression | @swift_open_end_range_expression | @swift_open_start_range_expression | @swift_optional_chain_marker | @swift_playground_literal | @swift_postfix_expression | @swift_prefix_expression | @swift_range_expression | @swift_raw_string_literal | @swift_reserved_word | @swift_selector_expression | @swift_switch_statement | @swift_ternary_expression | @swift_token_bang | @swift_token_bin_literal | @swift_token_boolean_literal | @swift_token_custom_operator | @swift_token_diagnostic | @swift_token_fully_open_range | @swift_token_hex_literal | @swift_token_integer_literal | @swift_token_oct_literal | @swift_token_real_literal | @swift_token_regex_literal | @swift_token_self_expression | @swift_token_simple_identifier | @swift_token_special_literal | @swift_token_super_expression | @swift_try_expression | @swift_tuple_expression | @swift_value_pack_expansion | @swift_value_parameter_pack +@swift_disjunction_expression_lhs_type = @swift_additive_expression | @swift_array_literal | @swift_as_expression | @swift_assignment | @swift_await_expression | @swift_bitwise_operation | @swift_call_expression | @swift_check_expression | @swift_comparison_expression | @swift_conjunction_expression | @swift_constructor_expression | @swift_dictionary_literal | @swift_directive | @swift_disjunction_expression | @swift_equality_expression | @swift_if_statement | @swift_infix_expression | @swift_key_path_expression | @swift_key_path_string_expression | @swift_lambda_literal | @swift_line_string_literal | @swift_macro_invocation | @swift_multi_line_string_literal | @swift_multiplicative_expression | @swift_navigation_expression | @swift_nil_coalescing_expression | @swift_open_end_range_expression | @swift_open_start_range_expression | @swift_optional_chain_marker | @swift_playground_literal | @swift_postfix_expression | @swift_prefix_expression | @swift_range_expression | @swift_raw_string_literal | @swift_referenceable_operator | @swift_reserved_word | @swift_selector_expression | @swift_switch_statement | @swift_ternary_expression | @swift_token_bin_literal | @swift_token_boolean_literal | @swift_token_diagnostic | @swift_token_fully_open_range | @swift_token_hex_literal | @swift_token_integer_literal | @swift_token_oct_literal | @swift_token_real_literal | @swift_token_regex_literal | @swift_token_self_expression | @swift_token_simple_identifier | @swift_token_special_literal | @swift_token_super_expression | @swift_try_expression | @swift_tuple_expression | @swift_value_pack_expansion | @swift_value_parameter_pack case @swift_disjunction_expression.op of 0 = @swift_disjunction_expression_pipepipe ; -@swift_disjunction_expression_rhs_type = @swift_additive_expression | @swift_array_literal | @swift_as_expression | @swift_assignment | @swift_await_expression | @swift_bitwise_operation | @swift_call_expression | @swift_check_expression | @swift_comparison_expression | @swift_conjunction_expression | @swift_constructor_expression | @swift_dictionary_literal | @swift_directive | @swift_disjunction_expression | @swift_equality_expression | @swift_if_statement | @swift_infix_expression | @swift_key_path_expression | @swift_key_path_string_expression | @swift_lambda_literal | @swift_line_string_literal | @swift_macro_invocation | @swift_multi_line_string_literal | @swift_multiplicative_expression | @swift_navigation_expression | @swift_nil_coalescing_expression | @swift_open_end_range_expression | @swift_open_start_range_expression | @swift_optional_chain_marker | @swift_playground_literal | @swift_postfix_expression | @swift_prefix_expression | @swift_range_expression | @swift_raw_string_literal | @swift_reserved_word | @swift_selector_expression | @swift_switch_statement | @swift_ternary_expression | @swift_token_bang | @swift_token_bin_literal | @swift_token_boolean_literal | @swift_token_custom_operator | @swift_token_diagnostic | @swift_token_fully_open_range | @swift_token_hex_literal | @swift_token_integer_literal | @swift_token_oct_literal | @swift_token_real_literal | @swift_token_regex_literal | @swift_token_self_expression | @swift_token_simple_identifier | @swift_token_special_literal | @swift_token_super_expression | @swift_try_expression | @swift_tuple_expression | @swift_value_pack_expansion | @swift_value_parameter_pack +@swift_disjunction_expression_rhs_type = @swift_additive_expression | @swift_array_literal | @swift_as_expression | @swift_assignment | @swift_await_expression | @swift_bitwise_operation | @swift_call_expression | @swift_check_expression | @swift_comparison_expression | @swift_conjunction_expression | @swift_constructor_expression | @swift_dictionary_literal | @swift_directive | @swift_disjunction_expression | @swift_equality_expression | @swift_if_statement | @swift_infix_expression | @swift_key_path_expression | @swift_key_path_string_expression | @swift_lambda_literal | @swift_line_string_literal | @swift_macro_invocation | @swift_multi_line_string_literal | @swift_multiplicative_expression | @swift_navigation_expression | @swift_nil_coalescing_expression | @swift_open_end_range_expression | @swift_open_start_range_expression | @swift_optional_chain_marker | @swift_playground_literal | @swift_postfix_expression | @swift_prefix_expression | @swift_range_expression | @swift_raw_string_literal | @swift_referenceable_operator | @swift_reserved_word | @swift_selector_expression | @swift_switch_statement | @swift_ternary_expression | @swift_token_bin_literal | @swift_token_boolean_literal | @swift_token_diagnostic | @swift_token_fully_open_range | @swift_token_hex_literal | @swift_token_integer_literal | @swift_token_oct_literal | @swift_token_real_literal | @swift_token_regex_literal | @swift_token_self_expression | @swift_token_simple_identifier | @swift_token_special_literal | @swift_token_super_expression | @swift_try_expression | @swift_tuple_expression | @swift_value_pack_expansion | @swift_value_parameter_pack swift_disjunction_expression_def( unique int id: @swift_disjunction_expression, @@ -773,7 +773,7 @@ swift_enum_entry_name( unique int name: @swift_token_simple_identifier ref ); -@swift_enum_entry_raw_value_type = @swift_additive_expression | @swift_array_literal | @swift_as_expression | @swift_assignment | @swift_await_expression | @swift_bitwise_operation | @swift_call_expression | @swift_check_expression | @swift_comparison_expression | @swift_conjunction_expression | @swift_constructor_expression | @swift_dictionary_literal | @swift_directive | @swift_disjunction_expression | @swift_equality_expression | @swift_if_statement | @swift_infix_expression | @swift_key_path_expression | @swift_key_path_string_expression | @swift_lambda_literal | @swift_line_string_literal | @swift_macro_invocation | @swift_multi_line_string_literal | @swift_multiplicative_expression | @swift_navigation_expression | @swift_nil_coalescing_expression | @swift_open_end_range_expression | @swift_open_start_range_expression | @swift_optional_chain_marker | @swift_playground_literal | @swift_postfix_expression | @swift_prefix_expression | @swift_range_expression | @swift_raw_string_literal | @swift_reserved_word | @swift_selector_expression | @swift_switch_statement | @swift_ternary_expression | @swift_token_bang | @swift_token_bin_literal | @swift_token_boolean_literal | @swift_token_custom_operator | @swift_token_diagnostic | @swift_token_fully_open_range | @swift_token_hex_literal | @swift_token_integer_literal | @swift_token_oct_literal | @swift_token_real_literal | @swift_token_regex_literal | @swift_token_self_expression | @swift_token_simple_identifier | @swift_token_special_literal | @swift_token_super_expression | @swift_try_expression | @swift_tuple_expression | @swift_value_pack_expansion | @swift_value_parameter_pack +@swift_enum_entry_raw_value_type = @swift_additive_expression | @swift_array_literal | @swift_as_expression | @swift_assignment | @swift_await_expression | @swift_bitwise_operation | @swift_call_expression | @swift_check_expression | @swift_comparison_expression | @swift_conjunction_expression | @swift_constructor_expression | @swift_dictionary_literal | @swift_directive | @swift_disjunction_expression | @swift_equality_expression | @swift_if_statement | @swift_infix_expression | @swift_key_path_expression | @swift_key_path_string_expression | @swift_lambda_literal | @swift_line_string_literal | @swift_macro_invocation | @swift_multi_line_string_literal | @swift_multiplicative_expression | @swift_navigation_expression | @swift_nil_coalescing_expression | @swift_open_end_range_expression | @swift_open_start_range_expression | @swift_optional_chain_marker | @swift_playground_literal | @swift_postfix_expression | @swift_prefix_expression | @swift_range_expression | @swift_raw_string_literal | @swift_referenceable_operator | @swift_reserved_word | @swift_selector_expression | @swift_switch_statement | @swift_ternary_expression | @swift_token_bin_literal | @swift_token_boolean_literal | @swift_token_diagnostic | @swift_token_fully_open_range | @swift_token_hex_literal | @swift_token_integer_literal | @swift_token_oct_literal | @swift_token_real_literal | @swift_token_regex_literal | @swift_token_self_expression | @swift_token_simple_identifier | @swift_token_special_literal | @swift_token_super_expression | @swift_try_expression | @swift_tuple_expression | @swift_value_pack_expansion | @swift_value_parameter_pack #keyset[swift_enum_entry, index] swift_enum_entry_raw_value( @@ -800,7 +800,7 @@ swift_enum_type_parameters_name( unique int name: @swift_enum_type_parameters_name_type ref ); -@swift_enum_type_parameters_child_type = @swift_additive_expression | @swift_array_literal | @swift_as_expression | @swift_assignment | @swift_await_expression | @swift_bitwise_operation | @swift_call_expression | @swift_check_expression | @swift_comparison_expression | @swift_conjunction_expression | @swift_constructor_expression | @swift_dictionary_literal | @swift_directive | @swift_disjunction_expression | @swift_equality_expression | @swift_if_statement | @swift_infix_expression | @swift_key_path_expression | @swift_key_path_string_expression | @swift_lambda_literal | @swift_line_string_literal | @swift_macro_invocation | @swift_multi_line_string_literal | @swift_multiplicative_expression | @swift_navigation_expression | @swift_nil_coalescing_expression | @swift_open_end_range_expression | @swift_open_start_range_expression | @swift_optional_chain_marker | @swift_playground_literal | @swift_postfix_expression | @swift_prefix_expression | @swift_range_expression | @swift_raw_string_literal | @swift_selector_expression | @swift_switch_statement | @swift_ternary_expression | @swift_token_bang | @swift_token_bin_literal | @swift_token_boolean_literal | @swift_token_custom_operator | @swift_token_diagnostic | @swift_token_fully_open_range | @swift_token_hex_literal | @swift_token_integer_literal | @swift_token_oct_literal | @swift_token_real_literal | @swift_token_regex_literal | @swift_token_self_expression | @swift_token_simple_identifier | @swift_token_special_literal | @swift_token_super_expression | @swift_token_wildcard_pattern | @swift_try_expression | @swift_tuple_expression | @swift_type_modifiers | @swift_value_pack_expansion | @swift_value_parameter_pack +@swift_enum_type_parameters_child_type = @swift_additive_expression | @swift_array_literal | @swift_as_expression | @swift_assignment | @swift_await_expression | @swift_bitwise_operation | @swift_call_expression | @swift_check_expression | @swift_comparison_expression | @swift_conjunction_expression | @swift_constructor_expression | @swift_dictionary_literal | @swift_directive | @swift_disjunction_expression | @swift_equality_expression | @swift_if_statement | @swift_infix_expression | @swift_key_path_expression | @swift_key_path_string_expression | @swift_lambda_literal | @swift_line_string_literal | @swift_macro_invocation | @swift_multi_line_string_literal | @swift_multiplicative_expression | @swift_navigation_expression | @swift_nil_coalescing_expression | @swift_open_end_range_expression | @swift_open_start_range_expression | @swift_optional_chain_marker | @swift_playground_literal | @swift_postfix_expression | @swift_prefix_expression | @swift_range_expression | @swift_raw_string_literal | @swift_referenceable_operator | @swift_selector_expression | @swift_switch_statement | @swift_ternary_expression | @swift_token_bin_literal | @swift_token_boolean_literal | @swift_token_diagnostic | @swift_token_fully_open_range | @swift_token_hex_literal | @swift_token_integer_literal | @swift_token_oct_literal | @swift_token_real_literal | @swift_token_regex_literal | @swift_token_self_expression | @swift_token_simple_identifier | @swift_token_special_literal | @swift_token_super_expression | @swift_token_wildcard_pattern | @swift_try_expression | @swift_tuple_expression | @swift_type_modifiers | @swift_value_pack_expansion | @swift_value_parameter_pack #keyset[swift_enum_type_parameters, index] swift_enum_type_parameters_child( @@ -845,7 +845,7 @@ swift_equality_constraint_def( int name: @swift_equality_constraint_name_type ref ); -@swift_equality_expression_lhs_type = @swift_additive_expression | @swift_array_literal | @swift_as_expression | @swift_assignment | @swift_await_expression | @swift_bitwise_operation | @swift_call_expression | @swift_check_expression | @swift_comparison_expression | @swift_conjunction_expression | @swift_constructor_expression | @swift_dictionary_literal | @swift_directive | @swift_disjunction_expression | @swift_equality_expression | @swift_if_statement | @swift_infix_expression | @swift_key_path_expression | @swift_key_path_string_expression | @swift_lambda_literal | @swift_line_string_literal | @swift_macro_invocation | @swift_multi_line_string_literal | @swift_multiplicative_expression | @swift_navigation_expression | @swift_nil_coalescing_expression | @swift_open_end_range_expression | @swift_open_start_range_expression | @swift_optional_chain_marker | @swift_playground_literal | @swift_postfix_expression | @swift_prefix_expression | @swift_range_expression | @swift_raw_string_literal | @swift_reserved_word | @swift_selector_expression | @swift_switch_statement | @swift_ternary_expression | @swift_token_bang | @swift_token_bin_literal | @swift_token_boolean_literal | @swift_token_custom_operator | @swift_token_diagnostic | @swift_token_fully_open_range | @swift_token_hex_literal | @swift_token_integer_literal | @swift_token_oct_literal | @swift_token_real_literal | @swift_token_regex_literal | @swift_token_self_expression | @swift_token_simple_identifier | @swift_token_special_literal | @swift_token_super_expression | @swift_try_expression | @swift_tuple_expression | @swift_value_pack_expansion | @swift_value_parameter_pack +@swift_equality_expression_lhs_type = @swift_additive_expression | @swift_array_literal | @swift_as_expression | @swift_assignment | @swift_await_expression | @swift_bitwise_operation | @swift_call_expression | @swift_check_expression | @swift_comparison_expression | @swift_conjunction_expression | @swift_constructor_expression | @swift_dictionary_literal | @swift_directive | @swift_disjunction_expression | @swift_equality_expression | @swift_if_statement | @swift_infix_expression | @swift_key_path_expression | @swift_key_path_string_expression | @swift_lambda_literal | @swift_line_string_literal | @swift_macro_invocation | @swift_multi_line_string_literal | @swift_multiplicative_expression | @swift_navigation_expression | @swift_nil_coalescing_expression | @swift_open_end_range_expression | @swift_open_start_range_expression | @swift_optional_chain_marker | @swift_playground_literal | @swift_postfix_expression | @swift_prefix_expression | @swift_range_expression | @swift_raw_string_literal | @swift_referenceable_operator | @swift_reserved_word | @swift_selector_expression | @swift_switch_statement | @swift_ternary_expression | @swift_token_bin_literal | @swift_token_boolean_literal | @swift_token_diagnostic | @swift_token_fully_open_range | @swift_token_hex_literal | @swift_token_integer_literal | @swift_token_oct_literal | @swift_token_real_literal | @swift_token_regex_literal | @swift_token_self_expression | @swift_token_simple_identifier | @swift_token_special_literal | @swift_token_super_expression | @swift_try_expression | @swift_tuple_expression | @swift_value_pack_expansion | @swift_value_parameter_pack case @swift_equality_expression.op of 0 = @swift_equality_expression_bangequal @@ -855,7 +855,7 @@ case @swift_equality_expression.op of ; -@swift_equality_expression_rhs_type = @swift_additive_expression | @swift_array_literal | @swift_as_expression | @swift_assignment | @swift_await_expression | @swift_bitwise_operation | @swift_call_expression | @swift_check_expression | @swift_comparison_expression | @swift_conjunction_expression | @swift_constructor_expression | @swift_dictionary_literal | @swift_directive | @swift_disjunction_expression | @swift_equality_expression | @swift_if_statement | @swift_infix_expression | @swift_key_path_expression | @swift_key_path_string_expression | @swift_lambda_literal | @swift_line_string_literal | @swift_macro_invocation | @swift_multi_line_string_literal | @swift_multiplicative_expression | @swift_navigation_expression | @swift_nil_coalescing_expression | @swift_open_end_range_expression | @swift_open_start_range_expression | @swift_optional_chain_marker | @swift_playground_literal | @swift_postfix_expression | @swift_prefix_expression | @swift_range_expression | @swift_raw_string_literal | @swift_reserved_word | @swift_selector_expression | @swift_switch_statement | @swift_ternary_expression | @swift_token_bang | @swift_token_bin_literal | @swift_token_boolean_literal | @swift_token_custom_operator | @swift_token_diagnostic | @swift_token_fully_open_range | @swift_token_hex_literal | @swift_token_integer_literal | @swift_token_oct_literal | @swift_token_real_literal | @swift_token_regex_literal | @swift_token_self_expression | @swift_token_simple_identifier | @swift_token_special_literal | @swift_token_super_expression | @swift_try_expression | @swift_tuple_expression | @swift_value_pack_expansion | @swift_value_parameter_pack +@swift_equality_expression_rhs_type = @swift_additive_expression | @swift_array_literal | @swift_as_expression | @swift_assignment | @swift_await_expression | @swift_bitwise_operation | @swift_call_expression | @swift_check_expression | @swift_comparison_expression | @swift_conjunction_expression | @swift_constructor_expression | @swift_dictionary_literal | @swift_directive | @swift_disjunction_expression | @swift_equality_expression | @swift_if_statement | @swift_infix_expression | @swift_key_path_expression | @swift_key_path_string_expression | @swift_lambda_literal | @swift_line_string_literal | @swift_macro_invocation | @swift_multi_line_string_literal | @swift_multiplicative_expression | @swift_navigation_expression | @swift_nil_coalescing_expression | @swift_open_end_range_expression | @swift_open_start_range_expression | @swift_optional_chain_marker | @swift_playground_literal | @swift_postfix_expression | @swift_prefix_expression | @swift_range_expression | @swift_raw_string_literal | @swift_referenceable_operator | @swift_reserved_word | @swift_selector_expression | @swift_switch_statement | @swift_ternary_expression | @swift_token_bin_literal | @swift_token_boolean_literal | @swift_token_diagnostic | @swift_token_fully_open_range | @swift_token_hex_literal | @swift_token_integer_literal | @swift_token_oct_literal | @swift_token_real_literal | @swift_token_regex_literal | @swift_token_self_expression | @swift_token_simple_identifier | @swift_token_special_literal | @swift_token_super_expression | @swift_try_expression | @swift_tuple_expression | @swift_value_pack_expansion | @swift_value_parameter_pack swift_equality_expression_def( unique int id: @swift_equality_expression, @@ -876,7 +876,7 @@ swift_external_macro_definition_def( int child: @swift_value_arguments ref ); -@swift_for_statement_collection_type = @swift_additive_expression | @swift_array_literal | @swift_as_expression | @swift_assignment | @swift_await_expression | @swift_bitwise_operation | @swift_call_expression | @swift_check_expression | @swift_comparison_expression | @swift_conjunction_expression | @swift_constructor_expression | @swift_dictionary_literal | @swift_directive | @swift_disjunction_expression | @swift_equality_expression | @swift_if_statement | @swift_infix_expression | @swift_key_path_expression | @swift_key_path_string_expression | @swift_lambda_literal | @swift_line_string_literal | @swift_macro_invocation | @swift_multi_line_string_literal | @swift_multiplicative_expression | @swift_navigation_expression | @swift_nil_coalescing_expression | @swift_open_end_range_expression | @swift_open_start_range_expression | @swift_optional_chain_marker | @swift_playground_literal | @swift_postfix_expression | @swift_prefix_expression | @swift_range_expression | @swift_raw_string_literal | @swift_reserved_word | @swift_selector_expression | @swift_switch_statement | @swift_ternary_expression | @swift_token_bang | @swift_token_bin_literal | @swift_token_boolean_literal | @swift_token_custom_operator | @swift_token_diagnostic | @swift_token_fully_open_range | @swift_token_hex_literal | @swift_token_integer_literal | @swift_token_oct_literal | @swift_token_real_literal | @swift_token_regex_literal | @swift_token_self_expression | @swift_token_simple_identifier | @swift_token_special_literal | @swift_token_super_expression | @swift_try_expression | @swift_tuple_expression | @swift_value_pack_expansion | @swift_value_parameter_pack +@swift_for_statement_collection_type = @swift_additive_expression | @swift_array_literal | @swift_as_expression | @swift_assignment | @swift_await_expression | @swift_bitwise_operation | @swift_call_expression | @swift_check_expression | @swift_comparison_expression | @swift_conjunction_expression | @swift_constructor_expression | @swift_dictionary_literal | @swift_directive | @swift_disjunction_expression | @swift_equality_expression | @swift_if_statement | @swift_infix_expression | @swift_key_path_expression | @swift_key_path_string_expression | @swift_lambda_literal | @swift_line_string_literal | @swift_macro_invocation | @swift_multi_line_string_literal | @swift_multiplicative_expression | @swift_navigation_expression | @swift_nil_coalescing_expression | @swift_open_end_range_expression | @swift_open_start_range_expression | @swift_optional_chain_marker | @swift_playground_literal | @swift_postfix_expression | @swift_prefix_expression | @swift_range_expression | @swift_raw_string_literal | @swift_referenceable_operator | @swift_reserved_word | @swift_selector_expression | @swift_switch_statement | @swift_ternary_expression | @swift_token_bin_literal | @swift_token_boolean_literal | @swift_token_diagnostic | @swift_token_fully_open_range | @swift_token_hex_literal | @swift_token_integer_literal | @swift_token_oct_literal | @swift_token_real_literal | @swift_token_regex_literal | @swift_token_self_expression | @swift_token_simple_identifier | @swift_token_special_literal | @swift_token_super_expression | @swift_try_expression | @swift_tuple_expression | @swift_value_pack_expansion | @swift_value_parameter_pack @swift_for_statement_child_type = @swift_statements | @swift_token_try_operator | @swift_type_annotation | @swift_where_clause @@ -902,7 +902,7 @@ swift_function_body_def( unique int id: @swift_function_body ); -@swift_function_declaration_default_value_type = @swift_additive_expression | @swift_array_literal | @swift_as_expression | @swift_assignment | @swift_await_expression | @swift_bitwise_operation | @swift_call_expression | @swift_check_expression | @swift_comparison_expression | @swift_conjunction_expression | @swift_constructor_expression | @swift_dictionary_literal | @swift_directive | @swift_disjunction_expression | @swift_equality_expression | @swift_if_statement | @swift_infix_expression | @swift_key_path_expression | @swift_key_path_string_expression | @swift_lambda_literal | @swift_line_string_literal | @swift_macro_invocation | @swift_multi_line_string_literal | @swift_multiplicative_expression | @swift_navigation_expression | @swift_nil_coalescing_expression | @swift_open_end_range_expression | @swift_open_start_range_expression | @swift_optional_chain_marker | @swift_playground_literal | @swift_postfix_expression | @swift_prefix_expression | @swift_range_expression | @swift_raw_string_literal | @swift_reserved_word | @swift_selector_expression | @swift_switch_statement | @swift_ternary_expression | @swift_token_bang | @swift_token_bin_literal | @swift_token_boolean_literal | @swift_token_custom_operator | @swift_token_diagnostic | @swift_token_fully_open_range | @swift_token_hex_literal | @swift_token_integer_literal | @swift_token_oct_literal | @swift_token_real_literal | @swift_token_regex_literal | @swift_token_self_expression | @swift_token_simple_identifier | @swift_token_special_literal | @swift_token_super_expression | @swift_try_expression | @swift_tuple_expression | @swift_value_pack_expansion | @swift_value_parameter_pack +@swift_function_declaration_default_value_type = @swift_additive_expression | @swift_array_literal | @swift_as_expression | @swift_assignment | @swift_await_expression | @swift_bitwise_operation | @swift_call_expression | @swift_check_expression | @swift_comparison_expression | @swift_conjunction_expression | @swift_constructor_expression | @swift_dictionary_literal | @swift_directive | @swift_disjunction_expression | @swift_equality_expression | @swift_if_statement | @swift_infix_expression | @swift_key_path_expression | @swift_key_path_string_expression | @swift_lambda_literal | @swift_line_string_literal | @swift_macro_invocation | @swift_multi_line_string_literal | @swift_multiplicative_expression | @swift_navigation_expression | @swift_nil_coalescing_expression | @swift_open_end_range_expression | @swift_open_start_range_expression | @swift_optional_chain_marker | @swift_playground_literal | @swift_postfix_expression | @swift_prefix_expression | @swift_range_expression | @swift_raw_string_literal | @swift_referenceable_operator | @swift_reserved_word | @swift_selector_expression | @swift_switch_statement | @swift_ternary_expression | @swift_token_bin_literal | @swift_token_boolean_literal | @swift_token_diagnostic | @swift_token_fully_open_range | @swift_token_hex_literal | @swift_token_integer_literal | @swift_token_oct_literal | @swift_token_real_literal | @swift_token_regex_literal | @swift_token_self_expression | @swift_token_simple_identifier | @swift_token_special_literal | @swift_token_super_expression | @swift_try_expression | @swift_tuple_expression | @swift_value_pack_expansion | @swift_value_parameter_pack #keyset[swift_function_declaration, index] swift_function_declaration_default_value( @@ -911,7 +911,7 @@ swift_function_declaration_default_value( unique int default_value: @swift_function_declaration_default_value_type ref ); -@swift_function_declaration_name_type = @swift_array_type | @swift_dictionary_type | @swift_existential_type | @swift_function_type | @swift_metatype | @swift_opaque_type | @swift_optional_type | @swift_protocol_composition_type | @swift_reserved_word | @swift_suppressed_constraint | @swift_token_bang | @swift_token_custom_operator | @swift_token_simple_identifier | @swift_tuple_type | @swift_type_pack_expansion | @swift_type_parameter_pack | @swift_user_type +@swift_function_declaration_name_type = @swift_array_type | @swift_dictionary_type | @swift_existential_type | @swift_function_type | @swift_metatype | @swift_opaque_type | @swift_optional_type | @swift_protocol_composition_type | @swift_referenceable_operator | @swift_suppressed_constraint | @swift_token_simple_identifier | @swift_tuple_type | @swift_type_pack_expansion | @swift_type_parameter_pack | @swift_user_type #keyset[swift_function_declaration, index] swift_function_declaration_name( @@ -989,7 +989,7 @@ swift_guard_statement_bound_identifier( unique int bound_identifier: @swift_token_simple_identifier ref ); -@swift_guard_statement_condition_type = @swift_additive_expression | @swift_array_literal | @swift_array_type | @swift_as_expression | @swift_assignment | @swift_availability_condition | @swift_await_expression | @swift_bitwise_operation | @swift_call_expression | @swift_check_expression | @swift_comparison_expression | @swift_conjunction_expression | @swift_constructor_expression | @swift_dictionary_literal | @swift_dictionary_type | @swift_directive | @swift_disjunction_expression | @swift_equality_expression | @swift_existential_type | @swift_function_type | @swift_if_statement | @swift_infix_expression | @swift_key_path_expression | @swift_key_path_string_expression | @swift_lambda_literal | @swift_line_string_literal | @swift_macro_invocation | @swift_metatype | @swift_multi_line_string_literal | @swift_multiplicative_expression | @swift_navigation_expression | @swift_nil_coalescing_expression | @swift_opaque_type | @swift_open_end_range_expression | @swift_open_start_range_expression | @swift_optional_chain_marker | @swift_optional_type | @swift_pattern | @swift_playground_literal | @swift_postfix_expression | @swift_prefix_expression | @swift_protocol_composition_type | @swift_range_expression | @swift_raw_string_literal | @swift_reserved_word | @swift_selector_expression | @swift_suppressed_constraint | @swift_switch_statement | @swift_ternary_expression | @swift_token_bang | @swift_token_bin_literal | @swift_token_boolean_literal | @swift_token_custom_operator | @swift_token_diagnostic | @swift_token_fully_open_range | @swift_token_hex_literal | @swift_token_integer_literal | @swift_token_oct_literal | @swift_token_real_literal | @swift_token_regex_literal | @swift_token_self_expression | @swift_token_simple_identifier | @swift_token_special_literal | @swift_token_super_expression | @swift_token_wildcard_pattern | @swift_try_expression | @swift_tuple_expression | @swift_tuple_type | @swift_type_annotation | @swift_type_modifiers | @swift_type_pack_expansion | @swift_type_parameter_pack | @swift_user_type | @swift_value_binding_pattern | @swift_value_pack_expansion | @swift_value_parameter_pack | @swift_where_clause +@swift_guard_statement_condition_type = @swift_additive_expression | @swift_array_literal | @swift_array_type | @swift_as_expression | @swift_assignment | @swift_availability_condition | @swift_await_expression | @swift_bitwise_operation | @swift_call_expression | @swift_check_expression | @swift_comparison_expression | @swift_conjunction_expression | @swift_constructor_expression | @swift_dictionary_literal | @swift_dictionary_type | @swift_directive | @swift_disjunction_expression | @swift_equality_expression | @swift_existential_type | @swift_function_type | @swift_if_statement | @swift_infix_expression | @swift_key_path_expression | @swift_key_path_string_expression | @swift_lambda_literal | @swift_line_string_literal | @swift_macro_invocation | @swift_metatype | @swift_multi_line_string_literal | @swift_multiplicative_expression | @swift_navigation_expression | @swift_nil_coalescing_expression | @swift_opaque_type | @swift_open_end_range_expression | @swift_open_start_range_expression | @swift_optional_chain_marker | @swift_optional_type | @swift_pattern | @swift_playground_literal | @swift_postfix_expression | @swift_prefix_expression | @swift_protocol_composition_type | @swift_range_expression | @swift_raw_string_literal | @swift_referenceable_operator | @swift_reserved_word | @swift_selector_expression | @swift_suppressed_constraint | @swift_switch_statement | @swift_ternary_expression | @swift_token_bin_literal | @swift_token_boolean_literal | @swift_token_diagnostic | @swift_token_fully_open_range | @swift_token_hex_literal | @swift_token_integer_literal | @swift_token_oct_literal | @swift_token_real_literal | @swift_token_regex_literal | @swift_token_self_expression | @swift_token_simple_identifier | @swift_token_special_literal | @swift_token_super_expression | @swift_token_wildcard_pattern | @swift_try_expression | @swift_tuple_expression | @swift_tuple_type | @swift_type_annotation | @swift_type_modifiers | @swift_type_pack_expansion | @swift_type_parameter_pack | @swift_user_type | @swift_value_binding_pattern | @swift_value_pack_expansion | @swift_value_parameter_pack | @swift_where_clause #keyset[swift_guard_statement, index] swift_guard_statement_condition( @@ -1038,7 +1038,7 @@ swift_if_statement_bound_identifier( unique int bound_identifier: @swift_token_simple_identifier ref ); -@swift_if_statement_condition_type = @swift_additive_expression | @swift_array_literal | @swift_array_type | @swift_as_expression | @swift_assignment | @swift_availability_condition | @swift_await_expression | @swift_bitwise_operation | @swift_call_expression | @swift_check_expression | @swift_comparison_expression | @swift_conjunction_expression | @swift_constructor_expression | @swift_dictionary_literal | @swift_dictionary_type | @swift_directive | @swift_disjunction_expression | @swift_equality_expression | @swift_existential_type | @swift_function_type | @swift_if_statement | @swift_infix_expression | @swift_key_path_expression | @swift_key_path_string_expression | @swift_lambda_literal | @swift_line_string_literal | @swift_macro_invocation | @swift_metatype | @swift_multi_line_string_literal | @swift_multiplicative_expression | @swift_navigation_expression | @swift_nil_coalescing_expression | @swift_opaque_type | @swift_open_end_range_expression | @swift_open_start_range_expression | @swift_optional_chain_marker | @swift_optional_type | @swift_pattern | @swift_playground_literal | @swift_postfix_expression | @swift_prefix_expression | @swift_protocol_composition_type | @swift_range_expression | @swift_raw_string_literal | @swift_reserved_word | @swift_selector_expression | @swift_suppressed_constraint | @swift_switch_statement | @swift_ternary_expression | @swift_token_bang | @swift_token_bin_literal | @swift_token_boolean_literal | @swift_token_custom_operator | @swift_token_diagnostic | @swift_token_fully_open_range | @swift_token_hex_literal | @swift_token_integer_literal | @swift_token_oct_literal | @swift_token_real_literal | @swift_token_regex_literal | @swift_token_self_expression | @swift_token_simple_identifier | @swift_token_special_literal | @swift_token_super_expression | @swift_token_wildcard_pattern | @swift_try_expression | @swift_tuple_expression | @swift_tuple_type | @swift_type_annotation | @swift_type_modifiers | @swift_type_pack_expansion | @swift_type_parameter_pack | @swift_user_type | @swift_value_binding_pattern | @swift_value_pack_expansion | @swift_value_parameter_pack | @swift_where_clause +@swift_if_statement_condition_type = @swift_additive_expression | @swift_array_literal | @swift_array_type | @swift_as_expression | @swift_assignment | @swift_availability_condition | @swift_await_expression | @swift_bitwise_operation | @swift_call_expression | @swift_check_expression | @swift_comparison_expression | @swift_conjunction_expression | @swift_constructor_expression | @swift_dictionary_literal | @swift_dictionary_type | @swift_directive | @swift_disjunction_expression | @swift_equality_expression | @swift_existential_type | @swift_function_type | @swift_if_statement | @swift_infix_expression | @swift_key_path_expression | @swift_key_path_string_expression | @swift_lambda_literal | @swift_line_string_literal | @swift_macro_invocation | @swift_metatype | @swift_multi_line_string_literal | @swift_multiplicative_expression | @swift_navigation_expression | @swift_nil_coalescing_expression | @swift_opaque_type | @swift_open_end_range_expression | @swift_open_start_range_expression | @swift_optional_chain_marker | @swift_optional_type | @swift_pattern | @swift_playground_literal | @swift_postfix_expression | @swift_prefix_expression | @swift_protocol_composition_type | @swift_range_expression | @swift_raw_string_literal | @swift_referenceable_operator | @swift_reserved_word | @swift_selector_expression | @swift_suppressed_constraint | @swift_switch_statement | @swift_ternary_expression | @swift_token_bin_literal | @swift_token_boolean_literal | @swift_token_diagnostic | @swift_token_fully_open_range | @swift_token_hex_literal | @swift_token_integer_literal | @swift_token_oct_literal | @swift_token_real_literal | @swift_token_regex_literal | @swift_token_self_expression | @swift_token_simple_identifier | @swift_token_special_literal | @swift_token_super_expression | @swift_token_wildcard_pattern | @swift_try_expression | @swift_tuple_expression | @swift_tuple_type | @swift_type_annotation | @swift_type_modifiers | @swift_type_pack_expansion | @swift_type_parameter_pack | @swift_user_type | @swift_value_binding_pattern | @swift_value_pack_expansion | @swift_value_parameter_pack | @swift_where_clause #keyset[swift_if_statement, index] swift_if_statement_condition( @@ -1082,9 +1082,9 @@ swift_import_declaration_def( unique int id: @swift_import_declaration ); -@swift_infix_expression_lhs_type = @swift_additive_expression | @swift_array_literal | @swift_as_expression | @swift_assignment | @swift_await_expression | @swift_bitwise_operation | @swift_call_expression | @swift_check_expression | @swift_comparison_expression | @swift_conjunction_expression | @swift_constructor_expression | @swift_dictionary_literal | @swift_directive | @swift_disjunction_expression | @swift_equality_expression | @swift_if_statement | @swift_infix_expression | @swift_key_path_expression | @swift_key_path_string_expression | @swift_lambda_literal | @swift_line_string_literal | @swift_macro_invocation | @swift_multi_line_string_literal | @swift_multiplicative_expression | @swift_navigation_expression | @swift_nil_coalescing_expression | @swift_open_end_range_expression | @swift_open_start_range_expression | @swift_optional_chain_marker | @swift_playground_literal | @swift_postfix_expression | @swift_prefix_expression | @swift_range_expression | @swift_raw_string_literal | @swift_reserved_word | @swift_selector_expression | @swift_switch_statement | @swift_ternary_expression | @swift_token_bang | @swift_token_bin_literal | @swift_token_boolean_literal | @swift_token_custom_operator | @swift_token_diagnostic | @swift_token_fully_open_range | @swift_token_hex_literal | @swift_token_integer_literal | @swift_token_oct_literal | @swift_token_real_literal | @swift_token_regex_literal | @swift_token_self_expression | @swift_token_simple_identifier | @swift_token_special_literal | @swift_token_super_expression | @swift_try_expression | @swift_tuple_expression | @swift_value_pack_expansion | @swift_value_parameter_pack +@swift_infix_expression_lhs_type = @swift_additive_expression | @swift_array_literal | @swift_as_expression | @swift_assignment | @swift_await_expression | @swift_bitwise_operation | @swift_call_expression | @swift_check_expression | @swift_comparison_expression | @swift_conjunction_expression | @swift_constructor_expression | @swift_dictionary_literal | @swift_directive | @swift_disjunction_expression | @swift_equality_expression | @swift_if_statement | @swift_infix_expression | @swift_key_path_expression | @swift_key_path_string_expression | @swift_lambda_literal | @swift_line_string_literal | @swift_macro_invocation | @swift_multi_line_string_literal | @swift_multiplicative_expression | @swift_navigation_expression | @swift_nil_coalescing_expression | @swift_open_end_range_expression | @swift_open_start_range_expression | @swift_optional_chain_marker | @swift_playground_literal | @swift_postfix_expression | @swift_prefix_expression | @swift_range_expression | @swift_raw_string_literal | @swift_referenceable_operator | @swift_reserved_word | @swift_selector_expression | @swift_switch_statement | @swift_ternary_expression | @swift_token_bin_literal | @swift_token_boolean_literal | @swift_token_diagnostic | @swift_token_fully_open_range | @swift_token_hex_literal | @swift_token_integer_literal | @swift_token_oct_literal | @swift_token_real_literal | @swift_token_regex_literal | @swift_token_self_expression | @swift_token_simple_identifier | @swift_token_special_literal | @swift_token_super_expression | @swift_try_expression | @swift_tuple_expression | @swift_value_pack_expansion | @swift_value_parameter_pack -@swift_infix_expression_rhs_type = @swift_additive_expression | @swift_array_literal | @swift_as_expression | @swift_assignment | @swift_await_expression | @swift_bitwise_operation | @swift_call_expression | @swift_check_expression | @swift_comparison_expression | @swift_conjunction_expression | @swift_constructor_expression | @swift_dictionary_literal | @swift_directive | @swift_disjunction_expression | @swift_equality_expression | @swift_if_statement | @swift_infix_expression | @swift_key_path_expression | @swift_key_path_string_expression | @swift_lambda_literal | @swift_line_string_literal | @swift_macro_invocation | @swift_multi_line_string_literal | @swift_multiplicative_expression | @swift_navigation_expression | @swift_nil_coalescing_expression | @swift_open_end_range_expression | @swift_open_start_range_expression | @swift_optional_chain_marker | @swift_playground_literal | @swift_postfix_expression | @swift_prefix_expression | @swift_range_expression | @swift_raw_string_literal | @swift_reserved_word | @swift_selector_expression | @swift_switch_statement | @swift_ternary_expression | @swift_token_bang | @swift_token_bin_literal | @swift_token_boolean_literal | @swift_token_custom_operator | @swift_token_diagnostic | @swift_token_fully_open_range | @swift_token_hex_literal | @swift_token_integer_literal | @swift_token_oct_literal | @swift_token_real_literal | @swift_token_regex_literal | @swift_token_self_expression | @swift_token_simple_identifier | @swift_token_special_literal | @swift_token_super_expression | @swift_try_expression | @swift_tuple_expression | @swift_value_pack_expansion | @swift_value_parameter_pack +@swift_infix_expression_rhs_type = @swift_additive_expression | @swift_array_literal | @swift_as_expression | @swift_assignment | @swift_await_expression | @swift_bitwise_operation | @swift_call_expression | @swift_check_expression | @swift_comparison_expression | @swift_conjunction_expression | @swift_constructor_expression | @swift_dictionary_literal | @swift_directive | @swift_disjunction_expression | @swift_equality_expression | @swift_if_statement | @swift_infix_expression | @swift_key_path_expression | @swift_key_path_string_expression | @swift_lambda_literal | @swift_line_string_literal | @swift_macro_invocation | @swift_multi_line_string_literal | @swift_multiplicative_expression | @swift_navigation_expression | @swift_nil_coalescing_expression | @swift_open_end_range_expression | @swift_open_start_range_expression | @swift_optional_chain_marker | @swift_playground_literal | @swift_postfix_expression | @swift_prefix_expression | @swift_range_expression | @swift_raw_string_literal | @swift_referenceable_operator | @swift_reserved_word | @swift_selector_expression | @swift_switch_statement | @swift_ternary_expression | @swift_token_bin_literal | @swift_token_boolean_literal | @swift_token_diagnostic | @swift_token_fully_open_range | @swift_token_hex_literal | @swift_token_integer_literal | @swift_token_oct_literal | @swift_token_real_literal | @swift_token_regex_literal | @swift_token_self_expression | @swift_token_simple_identifier | @swift_token_special_literal | @swift_token_super_expression | @swift_try_expression | @swift_tuple_expression | @swift_value_pack_expansion | @swift_value_parameter_pack swift_infix_expression_def( unique int id: @swift_infix_expression, @@ -1137,7 +1137,7 @@ swift_init_declaration_body( unique int body: @swift_function_body ref ); -@swift_init_declaration_default_value_type = @swift_additive_expression | @swift_array_literal | @swift_as_expression | @swift_assignment | @swift_await_expression | @swift_bitwise_operation | @swift_call_expression | @swift_check_expression | @swift_comparison_expression | @swift_conjunction_expression | @swift_constructor_expression | @swift_dictionary_literal | @swift_directive | @swift_disjunction_expression | @swift_equality_expression | @swift_if_statement | @swift_infix_expression | @swift_key_path_expression | @swift_key_path_string_expression | @swift_lambda_literal | @swift_line_string_literal | @swift_macro_invocation | @swift_multi_line_string_literal | @swift_multiplicative_expression | @swift_navigation_expression | @swift_nil_coalescing_expression | @swift_open_end_range_expression | @swift_open_start_range_expression | @swift_optional_chain_marker | @swift_playground_literal | @swift_postfix_expression | @swift_prefix_expression | @swift_range_expression | @swift_raw_string_literal | @swift_reserved_word | @swift_selector_expression | @swift_switch_statement | @swift_ternary_expression | @swift_token_bang | @swift_token_bin_literal | @swift_token_boolean_literal | @swift_token_custom_operator | @swift_token_diagnostic | @swift_token_fully_open_range | @swift_token_hex_literal | @swift_token_integer_literal | @swift_token_oct_literal | @swift_token_real_literal | @swift_token_regex_literal | @swift_token_self_expression | @swift_token_simple_identifier | @swift_token_special_literal | @swift_token_super_expression | @swift_try_expression | @swift_tuple_expression | @swift_value_pack_expansion | @swift_value_parameter_pack +@swift_init_declaration_default_value_type = @swift_additive_expression | @swift_array_literal | @swift_as_expression | @swift_assignment | @swift_await_expression | @swift_bitwise_operation | @swift_call_expression | @swift_check_expression | @swift_comparison_expression | @swift_conjunction_expression | @swift_constructor_expression | @swift_dictionary_literal | @swift_directive | @swift_disjunction_expression | @swift_equality_expression | @swift_if_statement | @swift_infix_expression | @swift_key_path_expression | @swift_key_path_string_expression | @swift_lambda_literal | @swift_line_string_literal | @swift_macro_invocation | @swift_multi_line_string_literal | @swift_multiplicative_expression | @swift_navigation_expression | @swift_nil_coalescing_expression | @swift_open_end_range_expression | @swift_open_start_range_expression | @swift_optional_chain_marker | @swift_playground_literal | @swift_postfix_expression | @swift_prefix_expression | @swift_range_expression | @swift_raw_string_literal | @swift_referenceable_operator | @swift_reserved_word | @swift_selector_expression | @swift_switch_statement | @swift_ternary_expression | @swift_token_bin_literal | @swift_token_boolean_literal | @swift_token_diagnostic | @swift_token_fully_open_range | @swift_token_hex_literal | @swift_token_integer_literal | @swift_token_oct_literal | @swift_token_real_literal | @swift_token_regex_literal | @swift_token_self_expression | @swift_token_simple_identifier | @swift_token_special_literal | @swift_token_super_expression | @swift_try_expression | @swift_tuple_expression | @swift_value_pack_expansion | @swift_value_parameter_pack #keyset[swift_init_declaration, index] swift_init_declaration_default_value( @@ -1177,7 +1177,7 @@ swift_interpolated_expression_reference_specifier( unique int reference_specifier: @swift_value_argument_label ref ); -@swift_interpolated_expression_value_type = @swift_additive_expression | @swift_array_literal | @swift_as_expression | @swift_assignment | @swift_await_expression | @swift_bitwise_operation | @swift_call_expression | @swift_check_expression | @swift_comparison_expression | @swift_conjunction_expression | @swift_constructor_expression | @swift_dictionary_literal | @swift_directive | @swift_disjunction_expression | @swift_equality_expression | @swift_if_statement | @swift_infix_expression | @swift_key_path_expression | @swift_key_path_string_expression | @swift_lambda_literal | @swift_line_string_literal | @swift_macro_invocation | @swift_multi_line_string_literal | @swift_multiplicative_expression | @swift_navigation_expression | @swift_nil_coalescing_expression | @swift_open_end_range_expression | @swift_open_start_range_expression | @swift_optional_chain_marker | @swift_playground_literal | @swift_postfix_expression | @swift_prefix_expression | @swift_range_expression | @swift_raw_string_literal | @swift_reserved_word | @swift_selector_expression | @swift_switch_statement | @swift_ternary_expression | @swift_token_bang | @swift_token_bin_literal | @swift_token_boolean_literal | @swift_token_custom_operator | @swift_token_diagnostic | @swift_token_fully_open_range | @swift_token_hex_literal | @swift_token_integer_literal | @swift_token_oct_literal | @swift_token_real_literal | @swift_token_regex_literal | @swift_token_self_expression | @swift_token_simple_identifier | @swift_token_special_literal | @swift_token_super_expression | @swift_try_expression | @swift_tuple_expression | @swift_value_pack_expansion | @swift_value_parameter_pack +@swift_interpolated_expression_value_type = @swift_additive_expression | @swift_array_literal | @swift_as_expression | @swift_assignment | @swift_await_expression | @swift_bitwise_operation | @swift_call_expression | @swift_check_expression | @swift_comparison_expression | @swift_conjunction_expression | @swift_constructor_expression | @swift_dictionary_literal | @swift_directive | @swift_disjunction_expression | @swift_equality_expression | @swift_if_statement | @swift_infix_expression | @swift_key_path_expression | @swift_key_path_string_expression | @swift_lambda_literal | @swift_line_string_literal | @swift_macro_invocation | @swift_multi_line_string_literal | @swift_multiplicative_expression | @swift_navigation_expression | @swift_nil_coalescing_expression | @swift_open_end_range_expression | @swift_open_start_range_expression | @swift_optional_chain_marker | @swift_playground_literal | @swift_postfix_expression | @swift_prefix_expression | @swift_range_expression | @swift_raw_string_literal | @swift_referenceable_operator | @swift_reserved_word | @swift_selector_expression | @swift_switch_statement | @swift_ternary_expression | @swift_token_bin_literal | @swift_token_boolean_literal | @swift_token_diagnostic | @swift_token_fully_open_range | @swift_token_hex_literal | @swift_token_integer_literal | @swift_token_oct_literal | @swift_token_real_literal | @swift_token_regex_literal | @swift_token_self_expression | @swift_token_simple_identifier | @swift_token_special_literal | @swift_token_super_expression | @swift_try_expression | @swift_tuple_expression | @swift_value_pack_expansion | @swift_value_parameter_pack swift_interpolated_expression_value( unique int swift_interpolated_expression: @swift_interpolated_expression ref, @@ -1206,7 +1206,7 @@ swift_key_path_expression_def( unique int id: @swift_key_path_expression ); -@swift_key_path_string_expression_child_type = @swift_additive_expression | @swift_array_literal | @swift_as_expression | @swift_assignment | @swift_await_expression | @swift_bitwise_operation | @swift_call_expression | @swift_check_expression | @swift_comparison_expression | @swift_conjunction_expression | @swift_constructor_expression | @swift_dictionary_literal | @swift_directive | @swift_disjunction_expression | @swift_equality_expression | @swift_if_statement | @swift_infix_expression | @swift_key_path_expression | @swift_key_path_string_expression | @swift_lambda_literal | @swift_line_string_literal | @swift_macro_invocation | @swift_multi_line_string_literal | @swift_multiplicative_expression | @swift_navigation_expression | @swift_nil_coalescing_expression | @swift_open_end_range_expression | @swift_open_start_range_expression | @swift_optional_chain_marker | @swift_playground_literal | @swift_postfix_expression | @swift_prefix_expression | @swift_range_expression | @swift_raw_string_literal | @swift_selector_expression | @swift_switch_statement | @swift_ternary_expression | @swift_token_bang | @swift_token_bin_literal | @swift_token_boolean_literal | @swift_token_custom_operator | @swift_token_diagnostic | @swift_token_fully_open_range | @swift_token_hex_literal | @swift_token_integer_literal | @swift_token_oct_literal | @swift_token_real_literal | @swift_token_regex_literal | @swift_token_self_expression | @swift_token_simple_identifier | @swift_token_special_literal | @swift_token_super_expression | @swift_try_expression | @swift_tuple_expression | @swift_value_pack_expansion | @swift_value_parameter_pack +@swift_key_path_string_expression_child_type = @swift_additive_expression | @swift_array_literal | @swift_as_expression | @swift_assignment | @swift_await_expression | @swift_bitwise_operation | @swift_call_expression | @swift_check_expression | @swift_comparison_expression | @swift_conjunction_expression | @swift_constructor_expression | @swift_dictionary_literal | @swift_directive | @swift_disjunction_expression | @swift_equality_expression | @swift_if_statement | @swift_infix_expression | @swift_key_path_expression | @swift_key_path_string_expression | @swift_lambda_literal | @swift_line_string_literal | @swift_macro_invocation | @swift_multi_line_string_literal | @swift_multiplicative_expression | @swift_navigation_expression | @swift_nil_coalescing_expression | @swift_open_end_range_expression | @swift_open_start_range_expression | @swift_optional_chain_marker | @swift_playground_literal | @swift_postfix_expression | @swift_prefix_expression | @swift_range_expression | @swift_raw_string_literal | @swift_referenceable_operator | @swift_selector_expression | @swift_switch_statement | @swift_ternary_expression | @swift_token_bin_literal | @swift_token_boolean_literal | @swift_token_diagnostic | @swift_token_fully_open_range | @swift_token_hex_literal | @swift_token_integer_literal | @swift_token_oct_literal | @swift_token_real_literal | @swift_token_regex_literal | @swift_token_self_expression | @swift_token_simple_identifier | @swift_token_special_literal | @swift_token_super_expression | @swift_try_expression | @swift_tuple_expression | @swift_value_pack_expansion | @swift_value_parameter_pack swift_key_path_string_expression_child( unique int swift_key_path_string_expression: @swift_key_path_string_expression ref, @@ -1334,7 +1334,7 @@ swift_line_string_literal_def( unique int id: @swift_line_string_literal ); -@swift_macro_declaration_default_value_type = @swift_additive_expression | @swift_array_literal | @swift_as_expression | @swift_assignment | @swift_await_expression | @swift_bitwise_operation | @swift_call_expression | @swift_check_expression | @swift_comparison_expression | @swift_conjunction_expression | @swift_constructor_expression | @swift_dictionary_literal | @swift_directive | @swift_disjunction_expression | @swift_equality_expression | @swift_if_statement | @swift_infix_expression | @swift_key_path_expression | @swift_key_path_string_expression | @swift_lambda_literal | @swift_line_string_literal | @swift_macro_invocation | @swift_multi_line_string_literal | @swift_multiplicative_expression | @swift_navigation_expression | @swift_nil_coalescing_expression | @swift_open_end_range_expression | @swift_open_start_range_expression | @swift_optional_chain_marker | @swift_playground_literal | @swift_postfix_expression | @swift_prefix_expression | @swift_range_expression | @swift_raw_string_literal | @swift_reserved_word | @swift_selector_expression | @swift_switch_statement | @swift_ternary_expression | @swift_token_bang | @swift_token_bin_literal | @swift_token_boolean_literal | @swift_token_custom_operator | @swift_token_diagnostic | @swift_token_fully_open_range | @swift_token_hex_literal | @swift_token_integer_literal | @swift_token_oct_literal | @swift_token_real_literal | @swift_token_regex_literal | @swift_token_self_expression | @swift_token_simple_identifier | @swift_token_special_literal | @swift_token_super_expression | @swift_try_expression | @swift_tuple_expression | @swift_value_pack_expansion | @swift_value_parameter_pack +@swift_macro_declaration_default_value_type = @swift_additive_expression | @swift_array_literal | @swift_as_expression | @swift_assignment | @swift_await_expression | @swift_bitwise_operation | @swift_call_expression | @swift_check_expression | @swift_comparison_expression | @swift_conjunction_expression | @swift_constructor_expression | @swift_dictionary_literal | @swift_directive | @swift_disjunction_expression | @swift_equality_expression | @swift_if_statement | @swift_infix_expression | @swift_key_path_expression | @swift_key_path_string_expression | @swift_lambda_literal | @swift_line_string_literal | @swift_macro_invocation | @swift_multi_line_string_literal | @swift_multiplicative_expression | @swift_navigation_expression | @swift_nil_coalescing_expression | @swift_open_end_range_expression | @swift_open_start_range_expression | @swift_optional_chain_marker | @swift_playground_literal | @swift_postfix_expression | @swift_prefix_expression | @swift_range_expression | @swift_raw_string_literal | @swift_referenceable_operator | @swift_reserved_word | @swift_selector_expression | @swift_switch_statement | @swift_ternary_expression | @swift_token_bin_literal | @swift_token_boolean_literal | @swift_token_diagnostic | @swift_token_fully_open_range | @swift_token_hex_literal | @swift_token_integer_literal | @swift_token_oct_literal | @swift_token_real_literal | @swift_token_regex_literal | @swift_token_self_expression | @swift_token_simple_identifier | @swift_token_special_literal | @swift_token_super_expression | @swift_try_expression | @swift_tuple_expression | @swift_value_pack_expansion | @swift_value_parameter_pack #keyset[swift_macro_declaration, index] swift_macro_declaration_default_value( @@ -1361,7 +1361,7 @@ swift_macro_declaration_def( unique int id: @swift_macro_declaration ); -@swift_macro_definition_body_type = @swift_additive_expression | @swift_array_literal | @swift_as_expression | @swift_assignment | @swift_await_expression | @swift_bitwise_operation | @swift_call_expression | @swift_check_expression | @swift_comparison_expression | @swift_conjunction_expression | @swift_constructor_expression | @swift_dictionary_literal | @swift_directive | @swift_disjunction_expression | @swift_equality_expression | @swift_external_macro_definition | @swift_if_statement | @swift_infix_expression | @swift_key_path_expression | @swift_key_path_string_expression | @swift_lambda_literal | @swift_line_string_literal | @swift_macro_invocation | @swift_multi_line_string_literal | @swift_multiplicative_expression | @swift_navigation_expression | @swift_nil_coalescing_expression | @swift_open_end_range_expression | @swift_open_start_range_expression | @swift_optional_chain_marker | @swift_playground_literal | @swift_postfix_expression | @swift_prefix_expression | @swift_range_expression | @swift_raw_string_literal | @swift_reserved_word | @swift_selector_expression | @swift_switch_statement | @swift_ternary_expression | @swift_token_bang | @swift_token_bin_literal | @swift_token_boolean_literal | @swift_token_custom_operator | @swift_token_diagnostic | @swift_token_fully_open_range | @swift_token_hex_literal | @swift_token_integer_literal | @swift_token_oct_literal | @swift_token_real_literal | @swift_token_regex_literal | @swift_token_self_expression | @swift_token_simple_identifier | @swift_token_special_literal | @swift_token_super_expression | @swift_try_expression | @swift_tuple_expression | @swift_value_pack_expansion | @swift_value_parameter_pack +@swift_macro_definition_body_type = @swift_additive_expression | @swift_array_literal | @swift_as_expression | @swift_assignment | @swift_await_expression | @swift_bitwise_operation | @swift_call_expression | @swift_check_expression | @swift_comparison_expression | @swift_conjunction_expression | @swift_constructor_expression | @swift_dictionary_literal | @swift_directive | @swift_disjunction_expression | @swift_equality_expression | @swift_external_macro_definition | @swift_if_statement | @swift_infix_expression | @swift_key_path_expression | @swift_key_path_string_expression | @swift_lambda_literal | @swift_line_string_literal | @swift_macro_invocation | @swift_multi_line_string_literal | @swift_multiplicative_expression | @swift_navigation_expression | @swift_nil_coalescing_expression | @swift_open_end_range_expression | @swift_open_start_range_expression | @swift_optional_chain_marker | @swift_playground_literal | @swift_postfix_expression | @swift_prefix_expression | @swift_range_expression | @swift_raw_string_literal | @swift_referenceable_operator | @swift_reserved_word | @swift_selector_expression | @swift_switch_statement | @swift_ternary_expression | @swift_token_bin_literal | @swift_token_boolean_literal | @swift_token_diagnostic | @swift_token_fully_open_range | @swift_token_hex_literal | @swift_token_integer_literal | @swift_token_oct_literal | @swift_token_real_literal | @swift_token_regex_literal | @swift_token_self_expression | @swift_token_simple_identifier | @swift_token_special_literal | @swift_token_super_expression | @swift_try_expression | @swift_tuple_expression | @swift_value_pack_expansion | @swift_value_parameter_pack swift_macro_definition_def( unique int id: @swift_macro_definition, @@ -1430,7 +1430,7 @@ swift_multi_line_string_literal_def( unique int id: @swift_multi_line_string_literal ); -@swift_multiplicative_expression_lhs_type = @swift_additive_expression | @swift_array_literal | @swift_as_expression | @swift_assignment | @swift_await_expression | @swift_bitwise_operation | @swift_call_expression | @swift_check_expression | @swift_comparison_expression | @swift_conjunction_expression | @swift_constructor_expression | @swift_dictionary_literal | @swift_directive | @swift_disjunction_expression | @swift_equality_expression | @swift_if_statement | @swift_infix_expression | @swift_key_path_expression | @swift_key_path_string_expression | @swift_lambda_literal | @swift_line_string_literal | @swift_macro_invocation | @swift_multi_line_string_literal | @swift_multiplicative_expression | @swift_navigation_expression | @swift_nil_coalescing_expression | @swift_open_end_range_expression | @swift_open_start_range_expression | @swift_optional_chain_marker | @swift_playground_literal | @swift_postfix_expression | @swift_prefix_expression | @swift_range_expression | @swift_raw_string_literal | @swift_reserved_word | @swift_selector_expression | @swift_switch_statement | @swift_ternary_expression | @swift_token_bang | @swift_token_bin_literal | @swift_token_boolean_literal | @swift_token_custom_operator | @swift_token_diagnostic | @swift_token_fully_open_range | @swift_token_hex_literal | @swift_token_integer_literal | @swift_token_oct_literal | @swift_token_real_literal | @swift_token_regex_literal | @swift_token_self_expression | @swift_token_simple_identifier | @swift_token_special_literal | @swift_token_super_expression | @swift_try_expression | @swift_tuple_expression | @swift_value_pack_expansion | @swift_value_parameter_pack +@swift_multiplicative_expression_lhs_type = @swift_additive_expression | @swift_array_literal | @swift_as_expression | @swift_assignment | @swift_await_expression | @swift_bitwise_operation | @swift_call_expression | @swift_check_expression | @swift_comparison_expression | @swift_conjunction_expression | @swift_constructor_expression | @swift_dictionary_literal | @swift_directive | @swift_disjunction_expression | @swift_equality_expression | @swift_if_statement | @swift_infix_expression | @swift_key_path_expression | @swift_key_path_string_expression | @swift_lambda_literal | @swift_line_string_literal | @swift_macro_invocation | @swift_multi_line_string_literal | @swift_multiplicative_expression | @swift_navigation_expression | @swift_nil_coalescing_expression | @swift_open_end_range_expression | @swift_open_start_range_expression | @swift_optional_chain_marker | @swift_playground_literal | @swift_postfix_expression | @swift_prefix_expression | @swift_range_expression | @swift_raw_string_literal | @swift_referenceable_operator | @swift_reserved_word | @swift_selector_expression | @swift_switch_statement | @swift_ternary_expression | @swift_token_bin_literal | @swift_token_boolean_literal | @swift_token_diagnostic | @swift_token_fully_open_range | @swift_token_hex_literal | @swift_token_integer_literal | @swift_token_oct_literal | @swift_token_real_literal | @swift_token_regex_literal | @swift_token_self_expression | @swift_token_simple_identifier | @swift_token_special_literal | @swift_token_super_expression | @swift_try_expression | @swift_tuple_expression | @swift_value_pack_expansion | @swift_value_parameter_pack case @swift_multiplicative_expression.op of 0 = @swift_multiplicative_expression_percent @@ -1439,7 +1439,7 @@ case @swift_multiplicative_expression.op of ; -@swift_multiplicative_expression_rhs_type = @swift_additive_expression | @swift_array_literal | @swift_as_expression | @swift_assignment | @swift_await_expression | @swift_bitwise_operation | @swift_call_expression | @swift_check_expression | @swift_comparison_expression | @swift_conjunction_expression | @swift_constructor_expression | @swift_dictionary_literal | @swift_directive | @swift_disjunction_expression | @swift_equality_expression | @swift_if_statement | @swift_infix_expression | @swift_key_path_expression | @swift_key_path_string_expression | @swift_lambda_literal | @swift_line_string_literal | @swift_macro_invocation | @swift_multi_line_string_literal | @swift_multiplicative_expression | @swift_navigation_expression | @swift_nil_coalescing_expression | @swift_open_end_range_expression | @swift_open_start_range_expression | @swift_optional_chain_marker | @swift_playground_literal | @swift_postfix_expression | @swift_prefix_expression | @swift_range_expression | @swift_raw_string_literal | @swift_reserved_word | @swift_selector_expression | @swift_switch_statement | @swift_ternary_expression | @swift_token_bang | @swift_token_bin_literal | @swift_token_boolean_literal | @swift_token_custom_operator | @swift_token_diagnostic | @swift_token_fully_open_range | @swift_token_hex_literal | @swift_token_integer_literal | @swift_token_oct_literal | @swift_token_real_literal | @swift_token_regex_literal | @swift_token_self_expression | @swift_token_simple_identifier | @swift_token_special_literal | @swift_token_super_expression | @swift_try_expression | @swift_tuple_expression | @swift_value_pack_expansion | @swift_value_parameter_pack +@swift_multiplicative_expression_rhs_type = @swift_additive_expression | @swift_array_literal | @swift_as_expression | @swift_assignment | @swift_await_expression | @swift_bitwise_operation | @swift_call_expression | @swift_check_expression | @swift_comparison_expression | @swift_conjunction_expression | @swift_constructor_expression | @swift_dictionary_literal | @swift_directive | @swift_disjunction_expression | @swift_equality_expression | @swift_if_statement | @swift_infix_expression | @swift_key_path_expression | @swift_key_path_string_expression | @swift_lambda_literal | @swift_line_string_literal | @swift_macro_invocation | @swift_multi_line_string_literal | @swift_multiplicative_expression | @swift_navigation_expression | @swift_nil_coalescing_expression | @swift_open_end_range_expression | @swift_open_start_range_expression | @swift_optional_chain_marker | @swift_playground_literal | @swift_postfix_expression | @swift_prefix_expression | @swift_range_expression | @swift_raw_string_literal | @swift_referenceable_operator | @swift_reserved_word | @swift_selector_expression | @swift_switch_statement | @swift_ternary_expression | @swift_token_bin_literal | @swift_token_boolean_literal | @swift_token_diagnostic | @swift_token_fully_open_range | @swift_token_hex_literal | @swift_token_integer_literal | @swift_token_oct_literal | @swift_token_real_literal | @swift_token_regex_literal | @swift_token_self_expression | @swift_token_simple_identifier | @swift_token_special_literal | @swift_token_super_expression | @swift_try_expression | @swift_tuple_expression | @swift_value_pack_expansion | @swift_value_parameter_pack swift_multiplicative_expression_def( unique int id: @swift_multiplicative_expression, @@ -1455,7 +1455,7 @@ swift_navigation_expression_element( unique int element: @swift_navigation_expression_element_type ref ); -@swift_navigation_expression_target_type = @swift_additive_expression | @swift_array_literal | @swift_array_type | @swift_as_expression | @swift_assignment | @swift_await_expression | @swift_bitwise_operation | @swift_call_expression | @swift_check_expression | @swift_comparison_expression | @swift_conjunction_expression | @swift_constructor_expression | @swift_dictionary_literal | @swift_dictionary_type | @swift_directive | @swift_disjunction_expression | @swift_equality_expression | @swift_existential_type | @swift_if_statement | @swift_infix_expression | @swift_key_path_expression | @swift_key_path_string_expression | @swift_lambda_literal | @swift_line_string_literal | @swift_macro_invocation | @swift_multi_line_string_literal | @swift_multiplicative_expression | @swift_navigation_expression | @swift_nil_coalescing_expression | @swift_opaque_type | @swift_open_end_range_expression | @swift_open_start_range_expression | @swift_optional_chain_marker | @swift_playground_literal | @swift_postfix_expression | @swift_prefix_expression | @swift_range_expression | @swift_raw_string_literal | @swift_reserved_word | @swift_selector_expression | @swift_switch_statement | @swift_ternary_expression | @swift_token_bang | @swift_token_bin_literal | @swift_token_boolean_literal | @swift_token_custom_operator | @swift_token_diagnostic | @swift_token_fully_open_range | @swift_token_hex_literal | @swift_token_integer_literal | @swift_token_oct_literal | @swift_token_real_literal | @swift_token_regex_literal | @swift_token_self_expression | @swift_token_simple_identifier | @swift_token_special_literal | @swift_token_super_expression | @swift_try_expression | @swift_tuple_expression | @swift_user_type | @swift_value_pack_expansion | @swift_value_parameter_pack +@swift_navigation_expression_target_type = @swift_additive_expression | @swift_array_literal | @swift_array_type | @swift_as_expression | @swift_assignment | @swift_await_expression | @swift_bitwise_operation | @swift_call_expression | @swift_check_expression | @swift_comparison_expression | @swift_conjunction_expression | @swift_constructor_expression | @swift_dictionary_literal | @swift_dictionary_type | @swift_directive | @swift_disjunction_expression | @swift_equality_expression | @swift_existential_type | @swift_if_statement | @swift_infix_expression | @swift_key_path_expression | @swift_key_path_string_expression | @swift_lambda_literal | @swift_line_string_literal | @swift_macro_invocation | @swift_multi_line_string_literal | @swift_multiplicative_expression | @swift_navigation_expression | @swift_nil_coalescing_expression | @swift_opaque_type | @swift_open_end_range_expression | @swift_open_start_range_expression | @swift_optional_chain_marker | @swift_playground_literal | @swift_postfix_expression | @swift_prefix_expression | @swift_range_expression | @swift_raw_string_literal | @swift_referenceable_operator | @swift_reserved_word | @swift_selector_expression | @swift_switch_statement | @swift_ternary_expression | @swift_token_bin_literal | @swift_token_boolean_literal | @swift_token_diagnostic | @swift_token_fully_open_range | @swift_token_hex_literal | @swift_token_integer_literal | @swift_token_oct_literal | @swift_token_real_literal | @swift_token_regex_literal | @swift_token_self_expression | @swift_token_simple_identifier | @swift_token_special_literal | @swift_token_super_expression | @swift_try_expression | @swift_tuple_expression | @swift_user_type | @swift_value_pack_expansion | @swift_value_parameter_pack #keyset[swift_navigation_expression, index] swift_navigation_expression_target( @@ -1476,9 +1476,9 @@ swift_navigation_suffix_def( int suffix: @swift_navigation_suffix_suffix_type ref ); -@swift_nil_coalescing_expression_if_nil_type = @swift_additive_expression | @swift_array_literal | @swift_as_expression | @swift_assignment | @swift_await_expression | @swift_bitwise_operation | @swift_call_expression | @swift_check_expression | @swift_comparison_expression | @swift_conjunction_expression | @swift_constructor_expression | @swift_dictionary_literal | @swift_directive | @swift_disjunction_expression | @swift_equality_expression | @swift_if_statement | @swift_infix_expression | @swift_key_path_expression | @swift_key_path_string_expression | @swift_lambda_literal | @swift_line_string_literal | @swift_macro_invocation | @swift_multi_line_string_literal | @swift_multiplicative_expression | @swift_navigation_expression | @swift_nil_coalescing_expression | @swift_open_end_range_expression | @swift_open_start_range_expression | @swift_optional_chain_marker | @swift_playground_literal | @swift_postfix_expression | @swift_prefix_expression | @swift_range_expression | @swift_raw_string_literal | @swift_reserved_word | @swift_selector_expression | @swift_switch_statement | @swift_ternary_expression | @swift_token_bang | @swift_token_bin_literal | @swift_token_boolean_literal | @swift_token_custom_operator | @swift_token_diagnostic | @swift_token_fully_open_range | @swift_token_hex_literal | @swift_token_integer_literal | @swift_token_oct_literal | @swift_token_real_literal | @swift_token_regex_literal | @swift_token_self_expression | @swift_token_simple_identifier | @swift_token_special_literal | @swift_token_super_expression | @swift_try_expression | @swift_tuple_expression | @swift_value_pack_expansion | @swift_value_parameter_pack +@swift_nil_coalescing_expression_if_nil_type = @swift_additive_expression | @swift_array_literal | @swift_as_expression | @swift_assignment | @swift_await_expression | @swift_bitwise_operation | @swift_call_expression | @swift_check_expression | @swift_comparison_expression | @swift_conjunction_expression | @swift_constructor_expression | @swift_dictionary_literal | @swift_directive | @swift_disjunction_expression | @swift_equality_expression | @swift_if_statement | @swift_infix_expression | @swift_key_path_expression | @swift_key_path_string_expression | @swift_lambda_literal | @swift_line_string_literal | @swift_macro_invocation | @swift_multi_line_string_literal | @swift_multiplicative_expression | @swift_navigation_expression | @swift_nil_coalescing_expression | @swift_open_end_range_expression | @swift_open_start_range_expression | @swift_optional_chain_marker | @swift_playground_literal | @swift_postfix_expression | @swift_prefix_expression | @swift_range_expression | @swift_raw_string_literal | @swift_referenceable_operator | @swift_reserved_word | @swift_selector_expression | @swift_switch_statement | @swift_ternary_expression | @swift_token_bin_literal | @swift_token_boolean_literal | @swift_token_diagnostic | @swift_token_fully_open_range | @swift_token_hex_literal | @swift_token_integer_literal | @swift_token_oct_literal | @swift_token_real_literal | @swift_token_regex_literal | @swift_token_self_expression | @swift_token_simple_identifier | @swift_token_special_literal | @swift_token_super_expression | @swift_try_expression | @swift_tuple_expression | @swift_value_pack_expansion | @swift_value_parameter_pack -@swift_nil_coalescing_expression_value_type = @swift_additive_expression | @swift_array_literal | @swift_as_expression | @swift_assignment | @swift_await_expression | @swift_bitwise_operation | @swift_call_expression | @swift_check_expression | @swift_comparison_expression | @swift_conjunction_expression | @swift_constructor_expression | @swift_dictionary_literal | @swift_directive | @swift_disjunction_expression | @swift_equality_expression | @swift_if_statement | @swift_infix_expression | @swift_key_path_expression | @swift_key_path_string_expression | @swift_lambda_literal | @swift_line_string_literal | @swift_macro_invocation | @swift_multi_line_string_literal | @swift_multiplicative_expression | @swift_navigation_expression | @swift_nil_coalescing_expression | @swift_open_end_range_expression | @swift_open_start_range_expression | @swift_optional_chain_marker | @swift_playground_literal | @swift_postfix_expression | @swift_prefix_expression | @swift_range_expression | @swift_raw_string_literal | @swift_reserved_word | @swift_selector_expression | @swift_switch_statement | @swift_ternary_expression | @swift_token_bang | @swift_token_bin_literal | @swift_token_boolean_literal | @swift_token_custom_operator | @swift_token_diagnostic | @swift_token_fully_open_range | @swift_token_hex_literal | @swift_token_integer_literal | @swift_token_oct_literal | @swift_token_real_literal | @swift_token_regex_literal | @swift_token_self_expression | @swift_token_simple_identifier | @swift_token_special_literal | @swift_token_super_expression | @swift_try_expression | @swift_tuple_expression | @swift_value_pack_expansion | @swift_value_parameter_pack +@swift_nil_coalescing_expression_value_type = @swift_additive_expression | @swift_array_literal | @swift_as_expression | @swift_assignment | @swift_await_expression | @swift_bitwise_operation | @swift_call_expression | @swift_check_expression | @swift_comparison_expression | @swift_conjunction_expression | @swift_constructor_expression | @swift_dictionary_literal | @swift_directive | @swift_disjunction_expression | @swift_equality_expression | @swift_if_statement | @swift_infix_expression | @swift_key_path_expression | @swift_key_path_string_expression | @swift_lambda_literal | @swift_line_string_literal | @swift_macro_invocation | @swift_multi_line_string_literal | @swift_multiplicative_expression | @swift_navigation_expression | @swift_nil_coalescing_expression | @swift_open_end_range_expression | @swift_open_start_range_expression | @swift_optional_chain_marker | @swift_playground_literal | @swift_postfix_expression | @swift_prefix_expression | @swift_range_expression | @swift_raw_string_literal | @swift_referenceable_operator | @swift_reserved_word | @swift_selector_expression | @swift_switch_statement | @swift_ternary_expression | @swift_token_bin_literal | @swift_token_boolean_literal | @swift_token_diagnostic | @swift_token_fully_open_range | @swift_token_hex_literal | @swift_token_integer_literal | @swift_token_oct_literal | @swift_token_real_literal | @swift_token_regex_literal | @swift_token_self_expression | @swift_token_simple_identifier | @swift_token_special_literal | @swift_token_super_expression | @swift_try_expression | @swift_tuple_expression | @swift_value_pack_expansion | @swift_value_parameter_pack swift_nil_coalescing_expression_def( unique int id: @swift_nil_coalescing_expression, @@ -1493,21 +1493,21 @@ swift_opaque_type_def( int child: @swift_opaque_type_child_type ref ); -@swift_open_end_range_expression_start_type = @swift_additive_expression | @swift_array_literal | @swift_as_expression | @swift_assignment | @swift_await_expression | @swift_bitwise_operation | @swift_call_expression | @swift_check_expression | @swift_comparison_expression | @swift_conjunction_expression | @swift_constructor_expression | @swift_dictionary_literal | @swift_directive | @swift_disjunction_expression | @swift_equality_expression | @swift_if_statement | @swift_infix_expression | @swift_key_path_expression | @swift_key_path_string_expression | @swift_lambda_literal | @swift_line_string_literal | @swift_macro_invocation | @swift_multi_line_string_literal | @swift_multiplicative_expression | @swift_navigation_expression | @swift_nil_coalescing_expression | @swift_open_end_range_expression | @swift_open_start_range_expression | @swift_optional_chain_marker | @swift_playground_literal | @swift_postfix_expression | @swift_prefix_expression | @swift_range_expression | @swift_raw_string_literal | @swift_reserved_word | @swift_selector_expression | @swift_switch_statement | @swift_ternary_expression | @swift_token_bang | @swift_token_bin_literal | @swift_token_boolean_literal | @swift_token_custom_operator | @swift_token_diagnostic | @swift_token_fully_open_range | @swift_token_hex_literal | @swift_token_integer_literal | @swift_token_oct_literal | @swift_token_real_literal | @swift_token_regex_literal | @swift_token_self_expression | @swift_token_simple_identifier | @swift_token_special_literal | @swift_token_super_expression | @swift_try_expression | @swift_tuple_expression | @swift_value_pack_expansion | @swift_value_parameter_pack +@swift_open_end_range_expression_start_type = @swift_additive_expression | @swift_array_literal | @swift_as_expression | @swift_assignment | @swift_await_expression | @swift_bitwise_operation | @swift_call_expression | @swift_check_expression | @swift_comparison_expression | @swift_conjunction_expression | @swift_constructor_expression | @swift_dictionary_literal | @swift_directive | @swift_disjunction_expression | @swift_equality_expression | @swift_if_statement | @swift_infix_expression | @swift_key_path_expression | @swift_key_path_string_expression | @swift_lambda_literal | @swift_line_string_literal | @swift_macro_invocation | @swift_multi_line_string_literal | @swift_multiplicative_expression | @swift_navigation_expression | @swift_nil_coalescing_expression | @swift_open_end_range_expression | @swift_open_start_range_expression | @swift_optional_chain_marker | @swift_playground_literal | @swift_postfix_expression | @swift_prefix_expression | @swift_range_expression | @swift_raw_string_literal | @swift_referenceable_operator | @swift_reserved_word | @swift_selector_expression | @swift_switch_statement | @swift_ternary_expression | @swift_token_bin_literal | @swift_token_boolean_literal | @swift_token_diagnostic | @swift_token_fully_open_range | @swift_token_hex_literal | @swift_token_integer_literal | @swift_token_oct_literal | @swift_token_real_literal | @swift_token_regex_literal | @swift_token_self_expression | @swift_token_simple_identifier | @swift_token_special_literal | @swift_token_super_expression | @swift_try_expression | @swift_tuple_expression | @swift_value_pack_expansion | @swift_value_parameter_pack swift_open_end_range_expression_def( unique int id: @swift_open_end_range_expression, int start: @swift_open_end_range_expression_start_type ref ); -@swift_open_start_range_expression_end_type = @swift_additive_expression | @swift_array_literal | @swift_as_expression | @swift_assignment | @swift_await_expression | @swift_bitwise_operation | @swift_call_expression | @swift_check_expression | @swift_comparison_expression | @swift_conjunction_expression | @swift_constructor_expression | @swift_dictionary_literal | @swift_directive | @swift_disjunction_expression | @swift_equality_expression | @swift_if_statement | @swift_infix_expression | @swift_key_path_expression | @swift_key_path_string_expression | @swift_lambda_literal | @swift_line_string_literal | @swift_macro_invocation | @swift_multi_line_string_literal | @swift_multiplicative_expression | @swift_navigation_expression | @swift_nil_coalescing_expression | @swift_open_end_range_expression | @swift_open_start_range_expression | @swift_optional_chain_marker | @swift_playground_literal | @swift_postfix_expression | @swift_prefix_expression | @swift_range_expression | @swift_raw_string_literal | @swift_reserved_word | @swift_selector_expression | @swift_switch_statement | @swift_ternary_expression | @swift_token_bang | @swift_token_bin_literal | @swift_token_boolean_literal | @swift_token_custom_operator | @swift_token_diagnostic | @swift_token_fully_open_range | @swift_token_hex_literal | @swift_token_integer_literal | @swift_token_oct_literal | @swift_token_real_literal | @swift_token_regex_literal | @swift_token_self_expression | @swift_token_simple_identifier | @swift_token_special_literal | @swift_token_super_expression | @swift_try_expression | @swift_tuple_expression | @swift_value_pack_expansion | @swift_value_parameter_pack +@swift_open_start_range_expression_end_type = @swift_additive_expression | @swift_array_literal | @swift_as_expression | @swift_assignment | @swift_await_expression | @swift_bitwise_operation | @swift_call_expression | @swift_check_expression | @swift_comparison_expression | @swift_conjunction_expression | @swift_constructor_expression | @swift_dictionary_literal | @swift_directive | @swift_disjunction_expression | @swift_equality_expression | @swift_if_statement | @swift_infix_expression | @swift_key_path_expression | @swift_key_path_string_expression | @swift_lambda_literal | @swift_line_string_literal | @swift_macro_invocation | @swift_multi_line_string_literal | @swift_multiplicative_expression | @swift_navigation_expression | @swift_nil_coalescing_expression | @swift_open_end_range_expression | @swift_open_start_range_expression | @swift_optional_chain_marker | @swift_playground_literal | @swift_postfix_expression | @swift_prefix_expression | @swift_range_expression | @swift_raw_string_literal | @swift_referenceable_operator | @swift_reserved_word | @swift_selector_expression | @swift_switch_statement | @swift_ternary_expression | @swift_token_bin_literal | @swift_token_boolean_literal | @swift_token_diagnostic | @swift_token_fully_open_range | @swift_token_hex_literal | @swift_token_integer_literal | @swift_token_oct_literal | @swift_token_real_literal | @swift_token_regex_literal | @swift_token_self_expression | @swift_token_simple_identifier | @swift_token_special_literal | @swift_token_super_expression | @swift_try_expression | @swift_tuple_expression | @swift_value_pack_expansion | @swift_value_parameter_pack swift_open_start_range_expression_def( unique int id: @swift_open_start_range_expression, int end: @swift_open_start_range_expression_end_type ref ); -@swift_operator_declaration_child_type = @swift_deprecated_operator_declaration_body | @swift_token_bang | @swift_token_custom_operator | @swift_token_simple_identifier +@swift_operator_declaration_child_type = @swift_deprecated_operator_declaration_body | @swift_referenceable_operator | @swift_token_simple_identifier #keyset[swift_operator_declaration, index] swift_operator_declaration_child( @@ -1520,7 +1520,7 @@ swift_operator_declaration_def( unique int id: @swift_operator_declaration ); -@swift_optional_chain_marker_child_type = @swift_additive_expression | @swift_array_literal | @swift_as_expression | @swift_assignment | @swift_await_expression | @swift_bitwise_operation | @swift_call_expression | @swift_check_expression | @swift_comparison_expression | @swift_conjunction_expression | @swift_constructor_expression | @swift_dictionary_literal | @swift_directive | @swift_disjunction_expression | @swift_equality_expression | @swift_if_statement | @swift_infix_expression | @swift_key_path_expression | @swift_key_path_string_expression | @swift_lambda_literal | @swift_line_string_literal | @swift_macro_invocation | @swift_multi_line_string_literal | @swift_multiplicative_expression | @swift_navigation_expression | @swift_nil_coalescing_expression | @swift_open_end_range_expression | @swift_open_start_range_expression | @swift_optional_chain_marker | @swift_playground_literal | @swift_postfix_expression | @swift_prefix_expression | @swift_range_expression | @swift_raw_string_literal | @swift_selector_expression | @swift_switch_statement | @swift_ternary_expression | @swift_token_bang | @swift_token_bin_literal | @swift_token_boolean_literal | @swift_token_custom_operator | @swift_token_diagnostic | @swift_token_fully_open_range | @swift_token_hex_literal | @swift_token_integer_literal | @swift_token_oct_literal | @swift_token_real_literal | @swift_token_regex_literal | @swift_token_self_expression | @swift_token_simple_identifier | @swift_token_special_literal | @swift_token_super_expression | @swift_try_expression | @swift_tuple_expression | @swift_value_pack_expansion | @swift_value_parameter_pack +@swift_optional_chain_marker_child_type = @swift_additive_expression | @swift_array_literal | @swift_as_expression | @swift_assignment | @swift_await_expression | @swift_bitwise_operation | @swift_call_expression | @swift_check_expression | @swift_comparison_expression | @swift_conjunction_expression | @swift_constructor_expression | @swift_dictionary_literal | @swift_directive | @swift_disjunction_expression | @swift_equality_expression | @swift_if_statement | @swift_infix_expression | @swift_key_path_expression | @swift_key_path_string_expression | @swift_lambda_literal | @swift_line_string_literal | @swift_macro_invocation | @swift_multi_line_string_literal | @swift_multiplicative_expression | @swift_navigation_expression | @swift_nil_coalescing_expression | @swift_open_end_range_expression | @swift_open_start_range_expression | @swift_optional_chain_marker | @swift_playground_literal | @swift_postfix_expression | @swift_prefix_expression | @swift_range_expression | @swift_raw_string_literal | @swift_referenceable_operator | @swift_selector_expression | @swift_switch_statement | @swift_ternary_expression | @swift_token_bin_literal | @swift_token_boolean_literal | @swift_token_diagnostic | @swift_token_fully_open_range | @swift_token_hex_literal | @swift_token_integer_literal | @swift_token_oct_literal | @swift_token_real_literal | @swift_token_regex_literal | @swift_token_self_expression | @swift_token_simple_identifier | @swift_token_special_literal | @swift_token_super_expression | @swift_try_expression | @swift_tuple_expression | @swift_value_pack_expansion | @swift_value_parameter_pack swift_optional_chain_marker_child( unique int swift_optional_chain_marker: @swift_optional_chain_marker ref, @@ -1593,7 +1593,7 @@ swift_pattern_name( unique int name: @swift_pattern_name_type ref ); -@swift_pattern_child_type = @swift_additive_expression | @swift_array_literal | @swift_as_expression | @swift_assignment | @swift_await_expression | @swift_bitwise_operation | @swift_call_expression | @swift_check_expression | @swift_comparison_expression | @swift_conjunction_expression | @swift_constructor_expression | @swift_dictionary_literal | @swift_directive | @swift_disjunction_expression | @swift_equality_expression | @swift_if_statement | @swift_infix_expression | @swift_key_path_expression | @swift_key_path_string_expression | @swift_lambda_literal | @swift_line_string_literal | @swift_macro_invocation | @swift_multi_line_string_literal | @swift_multiplicative_expression | @swift_navigation_expression | @swift_nil_coalescing_expression | @swift_open_end_range_expression | @swift_open_start_range_expression | @swift_optional_chain_marker | @swift_pattern | @swift_playground_literal | @swift_postfix_expression | @swift_prefix_expression | @swift_range_expression | @swift_raw_string_literal | @swift_selector_expression | @swift_switch_statement | @swift_ternary_expression | @swift_token_bang | @swift_token_bin_literal | @swift_token_boolean_literal | @swift_token_custom_operator | @swift_token_diagnostic | @swift_token_fully_open_range | @swift_token_hex_literal | @swift_token_integer_literal | @swift_token_oct_literal | @swift_token_real_literal | @swift_token_regex_literal | @swift_token_self_expression | @swift_token_simple_identifier | @swift_token_special_literal | @swift_token_super_expression | @swift_token_wildcard_pattern | @swift_try_expression | @swift_tuple_expression | @swift_type_modifiers | @swift_user_type | @swift_value_binding_pattern | @swift_value_pack_expansion | @swift_value_parameter_pack +@swift_pattern_child_type = @swift_additive_expression | @swift_array_literal | @swift_as_expression | @swift_assignment | @swift_await_expression | @swift_bitwise_operation | @swift_call_expression | @swift_check_expression | @swift_comparison_expression | @swift_conjunction_expression | @swift_constructor_expression | @swift_dictionary_literal | @swift_directive | @swift_disjunction_expression | @swift_equality_expression | @swift_if_statement | @swift_infix_expression | @swift_key_path_expression | @swift_key_path_string_expression | @swift_lambda_literal | @swift_line_string_literal | @swift_macro_invocation | @swift_multi_line_string_literal | @swift_multiplicative_expression | @swift_navigation_expression | @swift_nil_coalescing_expression | @swift_open_end_range_expression | @swift_open_start_range_expression | @swift_optional_chain_marker | @swift_pattern | @swift_playground_literal | @swift_postfix_expression | @swift_prefix_expression | @swift_range_expression | @swift_raw_string_literal | @swift_referenceable_operator | @swift_selector_expression | @swift_switch_statement | @swift_ternary_expression | @swift_token_bin_literal | @swift_token_boolean_literal | @swift_token_diagnostic | @swift_token_fully_open_range | @swift_token_hex_literal | @swift_token_integer_literal | @swift_token_oct_literal | @swift_token_real_literal | @swift_token_regex_literal | @swift_token_self_expression | @swift_token_simple_identifier | @swift_token_special_literal | @swift_token_super_expression | @swift_token_wildcard_pattern | @swift_try_expression | @swift_tuple_expression | @swift_type_modifiers | @swift_user_type | @swift_value_binding_pattern | @swift_value_pack_expansion | @swift_value_parameter_pack #keyset[swift_pattern, index] swift_pattern_child( @@ -1606,7 +1606,7 @@ swift_pattern_def( unique int id: @swift_pattern ); -@swift_playground_literal_child_type = @swift_additive_expression | @swift_array_literal | @swift_as_expression | @swift_assignment | @swift_await_expression | @swift_bitwise_operation | @swift_call_expression | @swift_check_expression | @swift_comparison_expression | @swift_conjunction_expression | @swift_constructor_expression | @swift_dictionary_literal | @swift_directive | @swift_disjunction_expression | @swift_equality_expression | @swift_if_statement | @swift_infix_expression | @swift_key_path_expression | @swift_key_path_string_expression | @swift_lambda_literal | @swift_line_string_literal | @swift_macro_invocation | @swift_multi_line_string_literal | @swift_multiplicative_expression | @swift_navigation_expression | @swift_nil_coalescing_expression | @swift_open_end_range_expression | @swift_open_start_range_expression | @swift_optional_chain_marker | @swift_playground_literal | @swift_postfix_expression | @swift_prefix_expression | @swift_range_expression | @swift_raw_string_literal | @swift_selector_expression | @swift_switch_statement | @swift_ternary_expression | @swift_token_bang | @swift_token_bin_literal | @swift_token_boolean_literal | @swift_token_custom_operator | @swift_token_diagnostic | @swift_token_fully_open_range | @swift_token_hex_literal | @swift_token_integer_literal | @swift_token_oct_literal | @swift_token_real_literal | @swift_token_regex_literal | @swift_token_self_expression | @swift_token_simple_identifier | @swift_token_special_literal | @swift_token_super_expression | @swift_try_expression | @swift_tuple_expression | @swift_value_pack_expansion | @swift_value_parameter_pack +@swift_playground_literal_child_type = @swift_additive_expression | @swift_array_literal | @swift_as_expression | @swift_assignment | @swift_await_expression | @swift_bitwise_operation | @swift_call_expression | @swift_check_expression | @swift_comparison_expression | @swift_conjunction_expression | @swift_constructor_expression | @swift_dictionary_literal | @swift_directive | @swift_disjunction_expression | @swift_equality_expression | @swift_if_statement | @swift_infix_expression | @swift_key_path_expression | @swift_key_path_string_expression | @swift_lambda_literal | @swift_line_string_literal | @swift_macro_invocation | @swift_multi_line_string_literal | @swift_multiplicative_expression | @swift_navigation_expression | @swift_nil_coalescing_expression | @swift_open_end_range_expression | @swift_open_start_range_expression | @swift_optional_chain_marker | @swift_playground_literal | @swift_postfix_expression | @swift_prefix_expression | @swift_range_expression | @swift_raw_string_literal | @swift_referenceable_operator | @swift_selector_expression | @swift_switch_statement | @swift_ternary_expression | @swift_token_bin_literal | @swift_token_boolean_literal | @swift_token_diagnostic | @swift_token_fully_open_range | @swift_token_hex_literal | @swift_token_integer_literal | @swift_token_oct_literal | @swift_token_real_literal | @swift_token_regex_literal | @swift_token_self_expression | @swift_token_simple_identifier | @swift_token_special_literal | @swift_token_super_expression | @swift_try_expression | @swift_tuple_expression | @swift_value_pack_expansion | @swift_value_parameter_pack #keyset[swift_playground_literal, index] swift_playground_literal_child( @@ -1621,7 +1621,7 @@ swift_playground_literal_def( @swift_postfix_expression_operation_type = @swift_reserved_word | @swift_token_bang -@swift_postfix_expression_target_type = @swift_additive_expression | @swift_array_literal | @swift_as_expression | @swift_assignment | @swift_await_expression | @swift_bitwise_operation | @swift_call_expression | @swift_check_expression | @swift_comparison_expression | @swift_conjunction_expression | @swift_constructor_expression | @swift_dictionary_literal | @swift_directive | @swift_disjunction_expression | @swift_equality_expression | @swift_if_statement | @swift_infix_expression | @swift_key_path_expression | @swift_key_path_string_expression | @swift_lambda_literal | @swift_line_string_literal | @swift_macro_invocation | @swift_multi_line_string_literal | @swift_multiplicative_expression | @swift_navigation_expression | @swift_nil_coalescing_expression | @swift_open_end_range_expression | @swift_open_start_range_expression | @swift_optional_chain_marker | @swift_playground_literal | @swift_postfix_expression | @swift_prefix_expression | @swift_range_expression | @swift_raw_string_literal | @swift_reserved_word | @swift_selector_expression | @swift_switch_statement | @swift_ternary_expression | @swift_token_bang | @swift_token_bin_literal | @swift_token_boolean_literal | @swift_token_custom_operator | @swift_token_diagnostic | @swift_token_fully_open_range | @swift_token_hex_literal | @swift_token_integer_literal | @swift_token_oct_literal | @swift_token_real_literal | @swift_token_regex_literal | @swift_token_self_expression | @swift_token_simple_identifier | @swift_token_special_literal | @swift_token_super_expression | @swift_try_expression | @swift_tuple_expression | @swift_value_pack_expansion | @swift_value_parameter_pack +@swift_postfix_expression_target_type = @swift_additive_expression | @swift_array_literal | @swift_as_expression | @swift_assignment | @swift_await_expression | @swift_bitwise_operation | @swift_call_expression | @swift_check_expression | @swift_comparison_expression | @swift_conjunction_expression | @swift_constructor_expression | @swift_dictionary_literal | @swift_directive | @swift_disjunction_expression | @swift_equality_expression | @swift_if_statement | @swift_infix_expression | @swift_key_path_expression | @swift_key_path_string_expression | @swift_lambda_literal | @swift_line_string_literal | @swift_macro_invocation | @swift_multi_line_string_literal | @swift_multiplicative_expression | @swift_navigation_expression | @swift_nil_coalescing_expression | @swift_open_end_range_expression | @swift_open_start_range_expression | @swift_optional_chain_marker | @swift_playground_literal | @swift_postfix_expression | @swift_prefix_expression | @swift_range_expression | @swift_raw_string_literal | @swift_referenceable_operator | @swift_reserved_word | @swift_selector_expression | @swift_switch_statement | @swift_ternary_expression | @swift_token_bin_literal | @swift_token_boolean_literal | @swift_token_diagnostic | @swift_token_fully_open_range | @swift_token_hex_literal | @swift_token_integer_literal | @swift_token_oct_literal | @swift_token_real_literal | @swift_token_regex_literal | @swift_token_self_expression | @swift_token_simple_identifier | @swift_token_special_literal | @swift_token_super_expression | @swift_try_expression | @swift_tuple_expression | @swift_value_pack_expansion | @swift_value_parameter_pack swift_postfix_expression_def( unique int id: @swift_postfix_expression, @@ -1668,7 +1668,7 @@ swift_precedence_group_declaration_def( @swift_prefix_expression_operation_type = @swift_reserved_word | @swift_token_bang | @swift_token_custom_operator -@swift_prefix_expression_target_type = @swift_additive_expression | @swift_array_literal | @swift_as_expression | @swift_assignment | @swift_await_expression | @swift_bitwise_operation | @swift_call_expression | @swift_check_expression | @swift_comparison_expression | @swift_conjunction_expression | @swift_constructor_expression | @swift_dictionary_literal | @swift_directive | @swift_disjunction_expression | @swift_equality_expression | @swift_if_statement | @swift_infix_expression | @swift_key_path_expression | @swift_key_path_string_expression | @swift_lambda_literal | @swift_line_string_literal | @swift_macro_invocation | @swift_multi_line_string_literal | @swift_multiplicative_expression | @swift_navigation_expression | @swift_nil_coalescing_expression | @swift_open_end_range_expression | @swift_open_start_range_expression | @swift_optional_chain_marker | @swift_playground_literal | @swift_postfix_expression | @swift_prefix_expression | @swift_range_expression | @swift_raw_string_literal | @swift_reserved_word | @swift_selector_expression | @swift_switch_statement | @swift_ternary_expression | @swift_token__expression | @swift_token_bang | @swift_token_bin_literal | @swift_token_boolean_literal | @swift_token_custom_operator | @swift_token_diagnostic | @swift_token_fully_open_range | @swift_token_hex_literal | @swift_token_integer_literal | @swift_token_oct_literal | @swift_token_real_literal | @swift_token_regex_literal | @swift_token_self_expression | @swift_token_simple_identifier | @swift_token_special_literal | @swift_token_super_expression | @swift_try_expression | @swift_tuple_expression | @swift_value_pack_expansion | @swift_value_parameter_pack +@swift_prefix_expression_target_type = @swift_additive_expression | @swift_array_literal | @swift_as_expression | @swift_assignment | @swift_await_expression | @swift_bitwise_operation | @swift_call_expression | @swift_check_expression | @swift_comparison_expression | @swift_conjunction_expression | @swift_constructor_expression | @swift_dictionary_literal | @swift_directive | @swift_disjunction_expression | @swift_equality_expression | @swift_if_statement | @swift_infix_expression | @swift_key_path_expression | @swift_key_path_string_expression | @swift_lambda_literal | @swift_line_string_literal | @swift_macro_invocation | @swift_multi_line_string_literal | @swift_multiplicative_expression | @swift_navigation_expression | @swift_nil_coalescing_expression | @swift_open_end_range_expression | @swift_open_start_range_expression | @swift_optional_chain_marker | @swift_playground_literal | @swift_postfix_expression | @swift_prefix_expression | @swift_range_expression | @swift_raw_string_literal | @swift_referenceable_operator | @swift_reserved_word | @swift_selector_expression | @swift_switch_statement | @swift_ternary_expression | @swift_token__expression | @swift_token_bin_literal | @swift_token_boolean_literal | @swift_token_diagnostic | @swift_token_fully_open_range | @swift_token_hex_literal | @swift_token_integer_literal | @swift_token_oct_literal | @swift_token_real_literal | @swift_token_regex_literal | @swift_token_self_expression | @swift_token_simple_identifier | @swift_token_special_literal | @swift_token_super_expression | @swift_try_expression | @swift_tuple_expression | @swift_value_pack_expansion | @swift_value_parameter_pack swift_prefix_expression_def( unique int id: @swift_prefix_expression, @@ -1690,7 +1690,7 @@ swift_property_declaration_name( unique int name: @swift_pattern ref ); -@swift_property_declaration_value_type = @swift_additive_expression | @swift_array_literal | @swift_as_expression | @swift_assignment | @swift_await_expression | @swift_bitwise_operation | @swift_call_expression | @swift_check_expression | @swift_comparison_expression | @swift_conjunction_expression | @swift_constructor_expression | @swift_dictionary_literal | @swift_directive | @swift_disjunction_expression | @swift_equality_expression | @swift_if_statement | @swift_infix_expression | @swift_key_path_expression | @swift_key_path_string_expression | @swift_lambda_literal | @swift_line_string_literal | @swift_macro_invocation | @swift_multi_line_string_literal | @swift_multiplicative_expression | @swift_navigation_expression | @swift_nil_coalescing_expression | @swift_open_end_range_expression | @swift_open_start_range_expression | @swift_optional_chain_marker | @swift_playground_literal | @swift_postfix_expression | @swift_prefix_expression | @swift_range_expression | @swift_raw_string_literal | @swift_reserved_word | @swift_selector_expression | @swift_switch_statement | @swift_ternary_expression | @swift_token_bang | @swift_token_bin_literal | @swift_token_boolean_literal | @swift_token_custom_operator | @swift_token_diagnostic | @swift_token_fully_open_range | @swift_token_hex_literal | @swift_token_integer_literal | @swift_token_oct_literal | @swift_token_real_literal | @swift_token_regex_literal | @swift_token_self_expression | @swift_token_simple_identifier | @swift_token_special_literal | @swift_token_super_expression | @swift_try_expression | @swift_tuple_expression | @swift_value_pack_expansion | @swift_value_parameter_pack +@swift_property_declaration_value_type = @swift_additive_expression | @swift_array_literal | @swift_as_expression | @swift_assignment | @swift_await_expression | @swift_bitwise_operation | @swift_call_expression | @swift_check_expression | @swift_comparison_expression | @swift_conjunction_expression | @swift_constructor_expression | @swift_dictionary_literal | @swift_directive | @swift_disjunction_expression | @swift_equality_expression | @swift_if_statement | @swift_infix_expression | @swift_key_path_expression | @swift_key_path_string_expression | @swift_lambda_literal | @swift_line_string_literal | @swift_macro_invocation | @swift_multi_line_string_literal | @swift_multiplicative_expression | @swift_navigation_expression | @swift_nil_coalescing_expression | @swift_open_end_range_expression | @swift_open_start_range_expression | @swift_optional_chain_marker | @swift_playground_literal | @swift_postfix_expression | @swift_prefix_expression | @swift_range_expression | @swift_raw_string_literal | @swift_referenceable_operator | @swift_reserved_word | @swift_selector_expression | @swift_switch_statement | @swift_ternary_expression | @swift_token_bin_literal | @swift_token_boolean_literal | @swift_token_diagnostic | @swift_token_fully_open_range | @swift_token_hex_literal | @swift_token_integer_literal | @swift_token_oct_literal | @swift_token_real_literal | @swift_token_regex_literal | @swift_token_self_expression | @swift_token_simple_identifier | @swift_token_special_literal | @swift_token_super_expression | @swift_try_expression | @swift_tuple_expression | @swift_value_pack_expansion | @swift_value_parameter_pack #keyset[swift_property_declaration, index] swift_property_declaration_value( @@ -1766,7 +1766,7 @@ swift_protocol_declaration_def( int name: @swift_token_type_identifier ref ); -@swift_protocol_function_declaration_default_value_type = @swift_additive_expression | @swift_array_literal | @swift_as_expression | @swift_assignment | @swift_await_expression | @swift_bitwise_operation | @swift_call_expression | @swift_check_expression | @swift_comparison_expression | @swift_conjunction_expression | @swift_constructor_expression | @swift_dictionary_literal | @swift_directive | @swift_disjunction_expression | @swift_equality_expression | @swift_if_statement | @swift_infix_expression | @swift_key_path_expression | @swift_key_path_string_expression | @swift_lambda_literal | @swift_line_string_literal | @swift_macro_invocation | @swift_multi_line_string_literal | @swift_multiplicative_expression | @swift_navigation_expression | @swift_nil_coalescing_expression | @swift_open_end_range_expression | @swift_open_start_range_expression | @swift_optional_chain_marker | @swift_playground_literal | @swift_postfix_expression | @swift_prefix_expression | @swift_range_expression | @swift_raw_string_literal | @swift_reserved_word | @swift_selector_expression | @swift_switch_statement | @swift_ternary_expression | @swift_token_bang | @swift_token_bin_literal | @swift_token_boolean_literal | @swift_token_custom_operator | @swift_token_diagnostic | @swift_token_fully_open_range | @swift_token_hex_literal | @swift_token_integer_literal | @swift_token_oct_literal | @swift_token_real_literal | @swift_token_regex_literal | @swift_token_self_expression | @swift_token_simple_identifier | @swift_token_special_literal | @swift_token_super_expression | @swift_try_expression | @swift_tuple_expression | @swift_value_pack_expansion | @swift_value_parameter_pack +@swift_protocol_function_declaration_default_value_type = @swift_additive_expression | @swift_array_literal | @swift_as_expression | @swift_assignment | @swift_await_expression | @swift_bitwise_operation | @swift_call_expression | @swift_check_expression | @swift_comparison_expression | @swift_conjunction_expression | @swift_constructor_expression | @swift_dictionary_literal | @swift_directive | @swift_disjunction_expression | @swift_equality_expression | @swift_if_statement | @swift_infix_expression | @swift_key_path_expression | @swift_key_path_string_expression | @swift_lambda_literal | @swift_line_string_literal | @swift_macro_invocation | @swift_multi_line_string_literal | @swift_multiplicative_expression | @swift_navigation_expression | @swift_nil_coalescing_expression | @swift_open_end_range_expression | @swift_open_start_range_expression | @swift_optional_chain_marker | @swift_playground_literal | @swift_postfix_expression | @swift_prefix_expression | @swift_range_expression | @swift_raw_string_literal | @swift_referenceable_operator | @swift_reserved_word | @swift_selector_expression | @swift_switch_statement | @swift_ternary_expression | @swift_token_bin_literal | @swift_token_boolean_literal | @swift_token_diagnostic | @swift_token_fully_open_range | @swift_token_hex_literal | @swift_token_integer_literal | @swift_token_oct_literal | @swift_token_real_literal | @swift_token_regex_literal | @swift_token_self_expression | @swift_token_simple_identifier | @swift_token_special_literal | @swift_token_super_expression | @swift_try_expression | @swift_tuple_expression | @swift_value_pack_expansion | @swift_value_parameter_pack #keyset[swift_protocol_function_declaration, index] swift_protocol_function_declaration_default_value( @@ -1775,7 +1775,7 @@ swift_protocol_function_declaration_default_value( unique int default_value: @swift_protocol_function_declaration_default_value_type ref ); -@swift_protocol_function_declaration_name_type = @swift_array_type | @swift_dictionary_type | @swift_existential_type | @swift_function_type | @swift_metatype | @swift_opaque_type | @swift_optional_type | @swift_protocol_composition_type | @swift_reserved_word | @swift_suppressed_constraint | @swift_token_bang | @swift_token_custom_operator | @swift_token_simple_identifier | @swift_tuple_type | @swift_type_pack_expansion | @swift_type_parameter_pack | @swift_user_type +@swift_protocol_function_declaration_name_type = @swift_array_type | @swift_dictionary_type | @swift_existential_type | @swift_function_type | @swift_metatype | @swift_opaque_type | @swift_optional_type | @swift_protocol_composition_type | @swift_referenceable_operator | @swift_suppressed_constraint | @swift_token_simple_identifier | @swift_tuple_type | @swift_type_pack_expansion | @swift_type_parameter_pack | @swift_user_type #keyset[swift_protocol_function_declaration, index] swift_protocol_function_declaration_name( @@ -1833,7 +1833,7 @@ swift_protocol_property_requirements_def( unique int id: @swift_protocol_property_requirements ); -@swift_range_expression_end_type = @swift_additive_expression | @swift_array_literal | @swift_as_expression | @swift_assignment | @swift_await_expression | @swift_bitwise_operation | @swift_call_expression | @swift_check_expression | @swift_comparison_expression | @swift_conjunction_expression | @swift_constructor_expression | @swift_dictionary_literal | @swift_directive | @swift_disjunction_expression | @swift_equality_expression | @swift_if_statement | @swift_infix_expression | @swift_key_path_expression | @swift_key_path_string_expression | @swift_lambda_literal | @swift_line_string_literal | @swift_macro_invocation | @swift_multi_line_string_literal | @swift_multiplicative_expression | @swift_navigation_expression | @swift_nil_coalescing_expression | @swift_open_end_range_expression | @swift_open_start_range_expression | @swift_optional_chain_marker | @swift_playground_literal | @swift_postfix_expression | @swift_prefix_expression | @swift_range_expression | @swift_raw_string_literal | @swift_reserved_word | @swift_selector_expression | @swift_switch_statement | @swift_ternary_expression | @swift_token_bang | @swift_token_bin_literal | @swift_token_boolean_literal | @swift_token_custom_operator | @swift_token_diagnostic | @swift_token_fully_open_range | @swift_token_hex_literal | @swift_token_integer_literal | @swift_token_oct_literal | @swift_token_real_literal | @swift_token_regex_literal | @swift_token_self_expression | @swift_token_simple_identifier | @swift_token_special_literal | @swift_token_super_expression | @swift_try_expression | @swift_tuple_expression | @swift_value_pack_expansion | @swift_value_parameter_pack +@swift_range_expression_end_type = @swift_additive_expression | @swift_array_literal | @swift_as_expression | @swift_assignment | @swift_await_expression | @swift_bitwise_operation | @swift_call_expression | @swift_check_expression | @swift_comparison_expression | @swift_conjunction_expression | @swift_constructor_expression | @swift_dictionary_literal | @swift_directive | @swift_disjunction_expression | @swift_equality_expression | @swift_if_statement | @swift_infix_expression | @swift_key_path_expression | @swift_key_path_string_expression | @swift_lambda_literal | @swift_line_string_literal | @swift_macro_invocation | @swift_multi_line_string_literal | @swift_multiplicative_expression | @swift_navigation_expression | @swift_nil_coalescing_expression | @swift_open_end_range_expression | @swift_open_start_range_expression | @swift_optional_chain_marker | @swift_playground_literal | @swift_postfix_expression | @swift_prefix_expression | @swift_range_expression | @swift_raw_string_literal | @swift_referenceable_operator | @swift_reserved_word | @swift_selector_expression | @swift_switch_statement | @swift_ternary_expression | @swift_token_bin_literal | @swift_token_boolean_literal | @swift_token_diagnostic | @swift_token_fully_open_range | @swift_token_hex_literal | @swift_token_integer_literal | @swift_token_oct_literal | @swift_token_real_literal | @swift_token_regex_literal | @swift_token_self_expression | @swift_token_simple_identifier | @swift_token_special_literal | @swift_token_super_expression | @swift_try_expression | @swift_tuple_expression | @swift_value_pack_expansion | @swift_value_parameter_pack case @swift_range_expression.op of 0 = @swift_range_expression_dotdotdot @@ -1841,7 +1841,7 @@ case @swift_range_expression.op of ; -@swift_range_expression_start_type = @swift_additive_expression | @swift_array_literal | @swift_as_expression | @swift_assignment | @swift_await_expression | @swift_bitwise_operation | @swift_call_expression | @swift_check_expression | @swift_comparison_expression | @swift_conjunction_expression | @swift_constructor_expression | @swift_dictionary_literal | @swift_directive | @swift_disjunction_expression | @swift_equality_expression | @swift_if_statement | @swift_infix_expression | @swift_key_path_expression | @swift_key_path_string_expression | @swift_lambda_literal | @swift_line_string_literal | @swift_macro_invocation | @swift_multi_line_string_literal | @swift_multiplicative_expression | @swift_navigation_expression | @swift_nil_coalescing_expression | @swift_open_end_range_expression | @swift_open_start_range_expression | @swift_optional_chain_marker | @swift_playground_literal | @swift_postfix_expression | @swift_prefix_expression | @swift_range_expression | @swift_raw_string_literal | @swift_reserved_word | @swift_selector_expression | @swift_switch_statement | @swift_ternary_expression | @swift_token_bang | @swift_token_bin_literal | @swift_token_boolean_literal | @swift_token_custom_operator | @swift_token_diagnostic | @swift_token_fully_open_range | @swift_token_hex_literal | @swift_token_integer_literal | @swift_token_oct_literal | @swift_token_real_literal | @swift_token_regex_literal | @swift_token_self_expression | @swift_token_simple_identifier | @swift_token_special_literal | @swift_token_super_expression | @swift_try_expression | @swift_tuple_expression | @swift_value_pack_expansion | @swift_value_parameter_pack +@swift_range_expression_start_type = @swift_additive_expression | @swift_array_literal | @swift_as_expression | @swift_assignment | @swift_await_expression | @swift_bitwise_operation | @swift_call_expression | @swift_check_expression | @swift_comparison_expression | @swift_conjunction_expression | @swift_constructor_expression | @swift_dictionary_literal | @swift_directive | @swift_disjunction_expression | @swift_equality_expression | @swift_if_statement | @swift_infix_expression | @swift_key_path_expression | @swift_key_path_string_expression | @swift_lambda_literal | @swift_line_string_literal | @swift_macro_invocation | @swift_multi_line_string_literal | @swift_multiplicative_expression | @swift_navigation_expression | @swift_nil_coalescing_expression | @swift_open_end_range_expression | @swift_open_start_range_expression | @swift_optional_chain_marker | @swift_playground_literal | @swift_postfix_expression | @swift_prefix_expression | @swift_range_expression | @swift_raw_string_literal | @swift_referenceable_operator | @swift_reserved_word | @swift_selector_expression | @swift_switch_statement | @swift_ternary_expression | @swift_token_bin_literal | @swift_token_boolean_literal | @swift_token_diagnostic | @swift_token_fully_open_range | @swift_token_hex_literal | @swift_token_integer_literal | @swift_token_oct_literal | @swift_token_real_literal | @swift_token_regex_literal | @swift_token_self_expression | @swift_token_simple_identifier | @swift_token_special_literal | @swift_token_super_expression | @swift_try_expression | @swift_tuple_expression | @swift_value_pack_expansion | @swift_value_parameter_pack swift_range_expression_def( unique int id: @swift_range_expression, @@ -1889,6 +1889,17 @@ swift_raw_string_literal_def( unique int id: @swift_raw_string_literal ); +@swift_referenceable_operator_child_type = @swift_token_bang | @swift_token_custom_operator + +swift_referenceable_operator_child( + unique int swift_referenceable_operator: @swift_referenceable_operator ref, + unique int child: @swift_referenceable_operator_child_type ref +); + +swift_referenceable_operator_def( + unique int id: @swift_referenceable_operator +); + #keyset[swift_repeat_while_statement, index] swift_repeat_while_statement_bound_identifier( int swift_repeat_while_statement: @swift_repeat_while_statement ref, @@ -1896,7 +1907,7 @@ swift_repeat_while_statement_bound_identifier( unique int bound_identifier: @swift_token_simple_identifier ref ); -@swift_repeat_while_statement_condition_type = @swift_additive_expression | @swift_array_literal | @swift_array_type | @swift_as_expression | @swift_assignment | @swift_availability_condition | @swift_await_expression | @swift_bitwise_operation | @swift_call_expression | @swift_check_expression | @swift_comparison_expression | @swift_conjunction_expression | @swift_constructor_expression | @swift_dictionary_literal | @swift_dictionary_type | @swift_directive | @swift_disjunction_expression | @swift_equality_expression | @swift_existential_type | @swift_function_type | @swift_if_statement | @swift_infix_expression | @swift_key_path_expression | @swift_key_path_string_expression | @swift_lambda_literal | @swift_line_string_literal | @swift_macro_invocation | @swift_metatype | @swift_multi_line_string_literal | @swift_multiplicative_expression | @swift_navigation_expression | @swift_nil_coalescing_expression | @swift_opaque_type | @swift_open_end_range_expression | @swift_open_start_range_expression | @swift_optional_chain_marker | @swift_optional_type | @swift_pattern | @swift_playground_literal | @swift_postfix_expression | @swift_prefix_expression | @swift_protocol_composition_type | @swift_range_expression | @swift_raw_string_literal | @swift_reserved_word | @swift_selector_expression | @swift_suppressed_constraint | @swift_switch_statement | @swift_ternary_expression | @swift_token_bang | @swift_token_bin_literal | @swift_token_boolean_literal | @swift_token_custom_operator | @swift_token_diagnostic | @swift_token_fully_open_range | @swift_token_hex_literal | @swift_token_integer_literal | @swift_token_oct_literal | @swift_token_real_literal | @swift_token_regex_literal | @swift_token_self_expression | @swift_token_simple_identifier | @swift_token_special_literal | @swift_token_super_expression | @swift_token_wildcard_pattern | @swift_try_expression | @swift_tuple_expression | @swift_tuple_type | @swift_type_annotation | @swift_type_modifiers | @swift_type_pack_expansion | @swift_type_parameter_pack | @swift_user_type | @swift_value_binding_pattern | @swift_value_pack_expansion | @swift_value_parameter_pack | @swift_where_clause +@swift_repeat_while_statement_condition_type = @swift_additive_expression | @swift_array_literal | @swift_array_type | @swift_as_expression | @swift_assignment | @swift_availability_condition | @swift_await_expression | @swift_bitwise_operation | @swift_call_expression | @swift_check_expression | @swift_comparison_expression | @swift_conjunction_expression | @swift_constructor_expression | @swift_dictionary_literal | @swift_dictionary_type | @swift_directive | @swift_disjunction_expression | @swift_equality_expression | @swift_existential_type | @swift_function_type | @swift_if_statement | @swift_infix_expression | @swift_key_path_expression | @swift_key_path_string_expression | @swift_lambda_literal | @swift_line_string_literal | @swift_macro_invocation | @swift_metatype | @swift_multi_line_string_literal | @swift_multiplicative_expression | @swift_navigation_expression | @swift_nil_coalescing_expression | @swift_opaque_type | @swift_open_end_range_expression | @swift_open_start_range_expression | @swift_optional_chain_marker | @swift_optional_type | @swift_pattern | @swift_playground_literal | @swift_postfix_expression | @swift_prefix_expression | @swift_protocol_composition_type | @swift_range_expression | @swift_raw_string_literal | @swift_referenceable_operator | @swift_reserved_word | @swift_selector_expression | @swift_suppressed_constraint | @swift_switch_statement | @swift_ternary_expression | @swift_token_bin_literal | @swift_token_boolean_literal | @swift_token_diagnostic | @swift_token_fully_open_range | @swift_token_hex_literal | @swift_token_integer_literal | @swift_token_oct_literal | @swift_token_real_literal | @swift_token_regex_literal | @swift_token_self_expression | @swift_token_simple_identifier | @swift_token_special_literal | @swift_token_super_expression | @swift_token_wildcard_pattern | @swift_try_expression | @swift_tuple_expression | @swift_tuple_type | @swift_type_annotation | @swift_type_modifiers | @swift_type_pack_expansion | @swift_type_parameter_pack | @swift_user_type | @swift_value_binding_pattern | @swift_value_pack_expansion | @swift_value_parameter_pack | @swift_where_clause #keyset[swift_repeat_while_statement, index] swift_repeat_while_statement_condition( @@ -1923,7 +1934,7 @@ swift_repeat_while_statement_def( unique int id: @swift_repeat_while_statement ); -@swift_selector_expression_child_type = @swift_additive_expression | @swift_array_literal | @swift_as_expression | @swift_assignment | @swift_await_expression | @swift_bitwise_operation | @swift_call_expression | @swift_check_expression | @swift_comparison_expression | @swift_conjunction_expression | @swift_constructor_expression | @swift_dictionary_literal | @swift_directive | @swift_disjunction_expression | @swift_equality_expression | @swift_if_statement | @swift_infix_expression | @swift_key_path_expression | @swift_key_path_string_expression | @swift_lambda_literal | @swift_line_string_literal | @swift_macro_invocation | @swift_multi_line_string_literal | @swift_multiplicative_expression | @swift_navigation_expression | @swift_nil_coalescing_expression | @swift_open_end_range_expression | @swift_open_start_range_expression | @swift_optional_chain_marker | @swift_playground_literal | @swift_postfix_expression | @swift_prefix_expression | @swift_range_expression | @swift_raw_string_literal | @swift_selector_expression | @swift_switch_statement | @swift_ternary_expression | @swift_token_bang | @swift_token_bin_literal | @swift_token_boolean_literal | @swift_token_custom_operator | @swift_token_diagnostic | @swift_token_fully_open_range | @swift_token_hex_literal | @swift_token_integer_literal | @swift_token_oct_literal | @swift_token_real_literal | @swift_token_regex_literal | @swift_token_self_expression | @swift_token_simple_identifier | @swift_token_special_literal | @swift_token_super_expression | @swift_try_expression | @swift_tuple_expression | @swift_value_pack_expansion | @swift_value_parameter_pack +@swift_selector_expression_child_type = @swift_additive_expression | @swift_array_literal | @swift_as_expression | @swift_assignment | @swift_await_expression | @swift_bitwise_operation | @swift_call_expression | @swift_check_expression | @swift_comparison_expression | @swift_conjunction_expression | @swift_constructor_expression | @swift_dictionary_literal | @swift_directive | @swift_disjunction_expression | @swift_equality_expression | @swift_if_statement | @swift_infix_expression | @swift_key_path_expression | @swift_key_path_string_expression | @swift_lambda_literal | @swift_line_string_literal | @swift_macro_invocation | @swift_multi_line_string_literal | @swift_multiplicative_expression | @swift_navigation_expression | @swift_nil_coalescing_expression | @swift_open_end_range_expression | @swift_open_start_range_expression | @swift_optional_chain_marker | @swift_playground_literal | @swift_postfix_expression | @swift_prefix_expression | @swift_range_expression | @swift_raw_string_literal | @swift_referenceable_operator | @swift_selector_expression | @swift_switch_statement | @swift_ternary_expression | @swift_token_bin_literal | @swift_token_boolean_literal | @swift_token_diagnostic | @swift_token_fully_open_range | @swift_token_hex_literal | @swift_token_integer_literal | @swift_token_oct_literal | @swift_token_real_literal | @swift_token_regex_literal | @swift_token_self_expression | @swift_token_simple_identifier | @swift_token_special_literal | @swift_token_super_expression | @swift_try_expression | @swift_tuple_expression | @swift_value_pack_expansion | @swift_value_parameter_pack swift_selector_expression_child( unique int swift_selector_expression: @swift_selector_expression ref, @@ -1943,7 +1954,7 @@ swift_setter_specifier_def( unique int id: @swift_setter_specifier ); -@swift_source_file_child_type = @swift_additive_expression | @swift_array_literal | @swift_as_expression | @swift_assignment | @swift_associatedtype_declaration | @swift_await_expression | @swift_bitwise_operation | @swift_call_expression | @swift_check_expression | @swift_class_declaration | @swift_comparison_expression | @swift_conjunction_expression | @swift_constructor_expression | @swift_dictionary_literal | @swift_directive | @swift_disjunction_expression | @swift_do_statement | @swift_equality_expression | @swift_for_statement | @swift_function_declaration | @swift_guard_statement | @swift_if_statement | @swift_import_declaration | @swift_infix_expression | @swift_init_declaration | @swift_key_path_expression | @swift_key_path_string_expression | @swift_lambda_literal | @swift_line_string_literal | @swift_macro_declaration | @swift_macro_invocation | @swift_multi_line_string_literal | @swift_multiplicative_expression | @swift_navigation_expression | @swift_nil_coalescing_expression | @swift_open_end_range_expression | @swift_open_start_range_expression | @swift_operator_declaration | @swift_optional_chain_marker | @swift_playground_literal | @swift_postfix_expression | @swift_precedence_group_declaration | @swift_prefix_expression | @swift_property_declaration | @swift_protocol_declaration | @swift_range_expression | @swift_raw_string_literal | @swift_repeat_while_statement | @swift_selector_expression | @swift_switch_statement | @swift_ternary_expression | @swift_token_bang | @swift_token_bin_literal | @swift_token_boolean_literal | @swift_token_custom_operator | @swift_token_diagnostic | @swift_token_fully_open_range | @swift_token_hex_literal | @swift_token_integer_literal | @swift_token_oct_literal | @swift_token_real_literal | @swift_token_regex_literal | @swift_token_self_expression | @swift_token_shebang_line | @swift_token_simple_identifier | @swift_token_special_literal | @swift_token_statement_label | @swift_token_super_expression | @swift_token_throw_keyword | @swift_try_expression | @swift_tuple_expression | @swift_typealias_declaration | @swift_value_pack_expansion | @swift_value_parameter_pack | @swift_while_statement +@swift_source_file_child_type = @swift_additive_expression | @swift_array_literal | @swift_as_expression | @swift_assignment | @swift_associatedtype_declaration | @swift_await_expression | @swift_bitwise_operation | @swift_call_expression | @swift_check_expression | @swift_class_declaration | @swift_comparison_expression | @swift_conjunction_expression | @swift_constructor_expression | @swift_dictionary_literal | @swift_directive | @swift_disjunction_expression | @swift_do_statement | @swift_equality_expression | @swift_for_statement | @swift_function_declaration | @swift_guard_statement | @swift_if_statement | @swift_import_declaration | @swift_infix_expression | @swift_init_declaration | @swift_key_path_expression | @swift_key_path_string_expression | @swift_lambda_literal | @swift_line_string_literal | @swift_macro_declaration | @swift_macro_invocation | @swift_multi_line_string_literal | @swift_multiplicative_expression | @swift_navigation_expression | @swift_nil_coalescing_expression | @swift_open_end_range_expression | @swift_open_start_range_expression | @swift_operator_declaration | @swift_optional_chain_marker | @swift_playground_literal | @swift_postfix_expression | @swift_precedence_group_declaration | @swift_prefix_expression | @swift_property_declaration | @swift_protocol_declaration | @swift_range_expression | @swift_raw_string_literal | @swift_referenceable_operator | @swift_repeat_while_statement | @swift_selector_expression | @swift_switch_statement | @swift_ternary_expression | @swift_token_bin_literal | @swift_token_boolean_literal | @swift_token_diagnostic | @swift_token_fully_open_range | @swift_token_hex_literal | @swift_token_integer_literal | @swift_token_oct_literal | @swift_token_real_literal | @swift_token_regex_literal | @swift_token_self_expression | @swift_token_shebang_line | @swift_token_simple_identifier | @swift_token_special_literal | @swift_token_statement_label | @swift_token_super_expression | @swift_token_throw_keyword | @swift_try_expression | @swift_tuple_expression | @swift_typealias_declaration | @swift_value_pack_expansion | @swift_value_parameter_pack | @swift_while_statement #keyset[swift_source_file, index] swift_source_file_child( @@ -1956,7 +1967,7 @@ swift_source_file_def( unique int id: @swift_source_file ); -@swift_statements_child_type = @swift_additive_expression | @swift_array_literal | @swift_as_expression | @swift_assignment | @swift_await_expression | @swift_bitwise_operation | @swift_call_expression | @swift_check_expression | @swift_class_declaration | @swift_comparison_expression | @swift_conjunction_expression | @swift_constructor_expression | @swift_control_transfer_statement | @swift_dictionary_literal | @swift_directive | @swift_disjunction_expression | @swift_do_statement | @swift_equality_expression | @swift_for_statement | @swift_function_declaration | @swift_guard_statement | @swift_if_statement | @swift_infix_expression | @swift_key_path_expression | @swift_key_path_string_expression | @swift_lambda_literal | @swift_line_string_literal | @swift_macro_invocation | @swift_multi_line_string_literal | @swift_multiplicative_expression | @swift_navigation_expression | @swift_nil_coalescing_expression | @swift_open_end_range_expression | @swift_open_start_range_expression | @swift_optional_chain_marker | @swift_playground_literal | @swift_postfix_expression | @swift_prefix_expression | @swift_property_declaration | @swift_range_expression | @swift_raw_string_literal | @swift_repeat_while_statement | @swift_selector_expression | @swift_switch_statement | @swift_ternary_expression | @swift_token_bang | @swift_token_bin_literal | @swift_token_boolean_literal | @swift_token_custom_operator | @swift_token_diagnostic | @swift_token_fully_open_range | @swift_token_hex_literal | @swift_token_integer_literal | @swift_token_oct_literal | @swift_token_real_literal | @swift_token_regex_literal | @swift_token_self_expression | @swift_token_simple_identifier | @swift_token_special_literal | @swift_token_statement_label | @swift_token_super_expression | @swift_try_expression | @swift_tuple_expression | @swift_typealias_declaration | @swift_value_pack_expansion | @swift_value_parameter_pack | @swift_while_statement +@swift_statements_child_type = @swift_additive_expression | @swift_array_literal | @swift_as_expression | @swift_assignment | @swift_await_expression | @swift_bitwise_operation | @swift_call_expression | @swift_check_expression | @swift_class_declaration | @swift_comparison_expression | @swift_conjunction_expression | @swift_constructor_expression | @swift_control_transfer_statement | @swift_dictionary_literal | @swift_directive | @swift_disjunction_expression | @swift_do_statement | @swift_equality_expression | @swift_for_statement | @swift_function_declaration | @swift_guard_statement | @swift_if_statement | @swift_infix_expression | @swift_key_path_expression | @swift_key_path_string_expression | @swift_lambda_literal | @swift_line_string_literal | @swift_macro_invocation | @swift_multi_line_string_literal | @swift_multiplicative_expression | @swift_navigation_expression | @swift_nil_coalescing_expression | @swift_open_end_range_expression | @swift_open_start_range_expression | @swift_optional_chain_marker | @swift_playground_literal | @swift_postfix_expression | @swift_prefix_expression | @swift_property_declaration | @swift_range_expression | @swift_raw_string_literal | @swift_referenceable_operator | @swift_repeat_while_statement | @swift_selector_expression | @swift_switch_statement | @swift_ternary_expression | @swift_token_bin_literal | @swift_token_boolean_literal | @swift_token_diagnostic | @swift_token_fully_open_range | @swift_token_hex_literal | @swift_token_integer_literal | @swift_token_oct_literal | @swift_token_real_literal | @swift_token_regex_literal | @swift_token_self_expression | @swift_token_simple_identifier | @swift_token_special_literal | @swift_token_statement_label | @swift_token_super_expression | @swift_try_expression | @swift_tuple_expression | @swift_typealias_declaration | @swift_value_pack_expansion | @swift_value_parameter_pack | @swift_while_statement #keyset[swift_statements, index] swift_statements_child( @@ -1969,7 +1980,7 @@ swift_statements_def( unique int id: @swift_statements ); -@swift_subscript_declaration_default_value_type = @swift_additive_expression | @swift_array_literal | @swift_as_expression | @swift_assignment | @swift_await_expression | @swift_bitwise_operation | @swift_call_expression | @swift_check_expression | @swift_comparison_expression | @swift_conjunction_expression | @swift_constructor_expression | @swift_dictionary_literal | @swift_directive | @swift_disjunction_expression | @swift_equality_expression | @swift_if_statement | @swift_infix_expression | @swift_key_path_expression | @swift_key_path_string_expression | @swift_lambda_literal | @swift_line_string_literal | @swift_macro_invocation | @swift_multi_line_string_literal | @swift_multiplicative_expression | @swift_navigation_expression | @swift_nil_coalescing_expression | @swift_open_end_range_expression | @swift_open_start_range_expression | @swift_optional_chain_marker | @swift_playground_literal | @swift_postfix_expression | @swift_prefix_expression | @swift_range_expression | @swift_raw_string_literal | @swift_reserved_word | @swift_selector_expression | @swift_switch_statement | @swift_ternary_expression | @swift_token_bang | @swift_token_bin_literal | @swift_token_boolean_literal | @swift_token_custom_operator | @swift_token_diagnostic | @swift_token_fully_open_range | @swift_token_hex_literal | @swift_token_integer_literal | @swift_token_oct_literal | @swift_token_real_literal | @swift_token_regex_literal | @swift_token_self_expression | @swift_token_simple_identifier | @swift_token_special_literal | @swift_token_super_expression | @swift_try_expression | @swift_tuple_expression | @swift_value_pack_expansion | @swift_value_parameter_pack +@swift_subscript_declaration_default_value_type = @swift_additive_expression | @swift_array_literal | @swift_as_expression | @swift_assignment | @swift_await_expression | @swift_bitwise_operation | @swift_call_expression | @swift_check_expression | @swift_comparison_expression | @swift_conjunction_expression | @swift_constructor_expression | @swift_dictionary_literal | @swift_directive | @swift_disjunction_expression | @swift_equality_expression | @swift_if_statement | @swift_infix_expression | @swift_key_path_expression | @swift_key_path_string_expression | @swift_lambda_literal | @swift_line_string_literal | @swift_macro_invocation | @swift_multi_line_string_literal | @swift_multiplicative_expression | @swift_navigation_expression | @swift_nil_coalescing_expression | @swift_open_end_range_expression | @swift_open_start_range_expression | @swift_optional_chain_marker | @swift_playground_literal | @swift_postfix_expression | @swift_prefix_expression | @swift_range_expression | @swift_raw_string_literal | @swift_referenceable_operator | @swift_reserved_word | @swift_selector_expression | @swift_switch_statement | @swift_ternary_expression | @swift_token_bin_literal | @swift_token_boolean_literal | @swift_token_diagnostic | @swift_token_fully_open_range | @swift_token_hex_literal | @swift_token_integer_literal | @swift_token_oct_literal | @swift_token_real_literal | @swift_token_regex_literal | @swift_token_self_expression | @swift_token_simple_identifier | @swift_token_special_literal | @swift_token_super_expression | @swift_try_expression | @swift_tuple_expression | @swift_value_pack_expansion | @swift_value_parameter_pack #keyset[swift_subscript_declaration, index] swift_subscript_declaration_default_value( @@ -2012,7 +2023,7 @@ swift_suppressed_constraint_def( int suppressed: @swift_token_type_identifier ref ); -@swift_switch_entry_child_type = @swift_additive_expression | @swift_array_literal | @swift_as_expression | @swift_assignment | @swift_await_expression | @swift_bitwise_operation | @swift_call_expression | @swift_check_expression | @swift_comparison_expression | @swift_conjunction_expression | @swift_constructor_expression | @swift_dictionary_literal | @swift_directive | @swift_disjunction_expression | @swift_equality_expression | @swift_if_statement | @swift_infix_expression | @swift_key_path_expression | @swift_key_path_string_expression | @swift_lambda_literal | @swift_line_string_literal | @swift_macro_invocation | @swift_modifiers | @swift_multi_line_string_literal | @swift_multiplicative_expression | @swift_navigation_expression | @swift_nil_coalescing_expression | @swift_open_end_range_expression | @swift_open_start_range_expression | @swift_optional_chain_marker | @swift_playground_literal | @swift_postfix_expression | @swift_prefix_expression | @swift_range_expression | @swift_raw_string_literal | @swift_selector_expression | @swift_statements | @swift_switch_pattern | @swift_switch_statement | @swift_ternary_expression | @swift_token_bang | @swift_token_bin_literal | @swift_token_boolean_literal | @swift_token_custom_operator | @swift_token_default_keyword | @swift_token_diagnostic | @swift_token_fully_open_range | @swift_token_hex_literal | @swift_token_integer_literal | @swift_token_oct_literal | @swift_token_real_literal | @swift_token_regex_literal | @swift_token_self_expression | @swift_token_simple_identifier | @swift_token_special_literal | @swift_token_super_expression | @swift_token_where_keyword | @swift_try_expression | @swift_tuple_expression | @swift_value_pack_expansion | @swift_value_parameter_pack +@swift_switch_entry_child_type = @swift_additive_expression | @swift_array_literal | @swift_as_expression | @swift_assignment | @swift_await_expression | @swift_bitwise_operation | @swift_call_expression | @swift_check_expression | @swift_comparison_expression | @swift_conjunction_expression | @swift_constructor_expression | @swift_dictionary_literal | @swift_directive | @swift_disjunction_expression | @swift_equality_expression | @swift_if_statement | @swift_infix_expression | @swift_key_path_expression | @swift_key_path_string_expression | @swift_lambda_literal | @swift_line_string_literal | @swift_macro_invocation | @swift_modifiers | @swift_multi_line_string_literal | @swift_multiplicative_expression | @swift_navigation_expression | @swift_nil_coalescing_expression | @swift_open_end_range_expression | @swift_open_start_range_expression | @swift_optional_chain_marker | @swift_playground_literal | @swift_postfix_expression | @swift_prefix_expression | @swift_range_expression | @swift_raw_string_literal | @swift_referenceable_operator | @swift_selector_expression | @swift_statements | @swift_switch_pattern | @swift_switch_statement | @swift_ternary_expression | @swift_token_bin_literal | @swift_token_boolean_literal | @swift_token_default_keyword | @swift_token_diagnostic | @swift_token_fully_open_range | @swift_token_hex_literal | @swift_token_integer_literal | @swift_token_oct_literal | @swift_token_real_literal | @swift_token_regex_literal | @swift_token_self_expression | @swift_token_simple_identifier | @swift_token_special_literal | @swift_token_super_expression | @swift_token_where_keyword | @swift_try_expression | @swift_tuple_expression | @swift_value_pack_expansion | @swift_value_parameter_pack #keyset[swift_switch_entry, index] swift_switch_entry_child( @@ -2030,7 +2041,7 @@ swift_switch_pattern_def( int child: @swift_pattern ref ); -@swift_switch_statement_expr_type = @swift_additive_expression | @swift_array_literal | @swift_as_expression | @swift_assignment | @swift_await_expression | @swift_bitwise_operation | @swift_call_expression | @swift_check_expression | @swift_comparison_expression | @swift_conjunction_expression | @swift_constructor_expression | @swift_dictionary_literal | @swift_directive | @swift_disjunction_expression | @swift_equality_expression | @swift_if_statement | @swift_infix_expression | @swift_key_path_expression | @swift_key_path_string_expression | @swift_lambda_literal | @swift_line_string_literal | @swift_macro_invocation | @swift_multi_line_string_literal | @swift_multiplicative_expression | @swift_navigation_expression | @swift_nil_coalescing_expression | @swift_open_end_range_expression | @swift_open_start_range_expression | @swift_optional_chain_marker | @swift_playground_literal | @swift_postfix_expression | @swift_prefix_expression | @swift_range_expression | @swift_raw_string_literal | @swift_reserved_word | @swift_selector_expression | @swift_switch_statement | @swift_ternary_expression | @swift_token_bang | @swift_token_bin_literal | @swift_token_boolean_literal | @swift_token_custom_operator | @swift_token_diagnostic | @swift_token_fully_open_range | @swift_token_hex_literal | @swift_token_integer_literal | @swift_token_oct_literal | @swift_token_real_literal | @swift_token_regex_literal | @swift_token_self_expression | @swift_token_simple_identifier | @swift_token_special_literal | @swift_token_super_expression | @swift_try_expression | @swift_tuple_expression | @swift_value_pack_expansion | @swift_value_parameter_pack +@swift_switch_statement_expr_type = @swift_additive_expression | @swift_array_literal | @swift_as_expression | @swift_assignment | @swift_await_expression | @swift_bitwise_operation | @swift_call_expression | @swift_check_expression | @swift_comparison_expression | @swift_conjunction_expression | @swift_constructor_expression | @swift_dictionary_literal | @swift_directive | @swift_disjunction_expression | @swift_equality_expression | @swift_if_statement | @swift_infix_expression | @swift_key_path_expression | @swift_key_path_string_expression | @swift_lambda_literal | @swift_line_string_literal | @swift_macro_invocation | @swift_multi_line_string_literal | @swift_multiplicative_expression | @swift_navigation_expression | @swift_nil_coalescing_expression | @swift_open_end_range_expression | @swift_open_start_range_expression | @swift_optional_chain_marker | @swift_playground_literal | @swift_postfix_expression | @swift_prefix_expression | @swift_range_expression | @swift_raw_string_literal | @swift_referenceable_operator | @swift_reserved_word | @swift_selector_expression | @swift_switch_statement | @swift_ternary_expression | @swift_token_bin_literal | @swift_token_boolean_literal | @swift_token_diagnostic | @swift_token_fully_open_range | @swift_token_hex_literal | @swift_token_integer_literal | @swift_token_oct_literal | @swift_token_real_literal | @swift_token_regex_literal | @swift_token_self_expression | @swift_token_simple_identifier | @swift_token_special_literal | @swift_token_super_expression | @swift_try_expression | @swift_tuple_expression | @swift_value_pack_expansion | @swift_value_parameter_pack #keyset[swift_switch_statement, index] swift_switch_statement_child( @@ -2044,11 +2055,11 @@ swift_switch_statement_def( int expr: @swift_switch_statement_expr_type ref ); -@swift_ternary_expression_condition_type = @swift_additive_expression | @swift_array_literal | @swift_as_expression | @swift_assignment | @swift_await_expression | @swift_bitwise_operation | @swift_call_expression | @swift_check_expression | @swift_comparison_expression | @swift_conjunction_expression | @swift_constructor_expression | @swift_dictionary_literal | @swift_directive | @swift_disjunction_expression | @swift_equality_expression | @swift_if_statement | @swift_infix_expression | @swift_key_path_expression | @swift_key_path_string_expression | @swift_lambda_literal | @swift_line_string_literal | @swift_macro_invocation | @swift_multi_line_string_literal | @swift_multiplicative_expression | @swift_navigation_expression | @swift_nil_coalescing_expression | @swift_open_end_range_expression | @swift_open_start_range_expression | @swift_optional_chain_marker | @swift_playground_literal | @swift_postfix_expression | @swift_prefix_expression | @swift_range_expression | @swift_raw_string_literal | @swift_reserved_word | @swift_selector_expression | @swift_switch_statement | @swift_ternary_expression | @swift_token_bang | @swift_token_bin_literal | @swift_token_boolean_literal | @swift_token_custom_operator | @swift_token_diagnostic | @swift_token_fully_open_range | @swift_token_hex_literal | @swift_token_integer_literal | @swift_token_oct_literal | @swift_token_real_literal | @swift_token_regex_literal | @swift_token_self_expression | @swift_token_simple_identifier | @swift_token_special_literal | @swift_token_super_expression | @swift_try_expression | @swift_tuple_expression | @swift_value_pack_expansion | @swift_value_parameter_pack +@swift_ternary_expression_condition_type = @swift_additive_expression | @swift_array_literal | @swift_as_expression | @swift_assignment | @swift_await_expression | @swift_bitwise_operation | @swift_call_expression | @swift_check_expression | @swift_comparison_expression | @swift_conjunction_expression | @swift_constructor_expression | @swift_dictionary_literal | @swift_directive | @swift_disjunction_expression | @swift_equality_expression | @swift_if_statement | @swift_infix_expression | @swift_key_path_expression | @swift_key_path_string_expression | @swift_lambda_literal | @swift_line_string_literal | @swift_macro_invocation | @swift_multi_line_string_literal | @swift_multiplicative_expression | @swift_navigation_expression | @swift_nil_coalescing_expression | @swift_open_end_range_expression | @swift_open_start_range_expression | @swift_optional_chain_marker | @swift_playground_literal | @swift_postfix_expression | @swift_prefix_expression | @swift_range_expression | @swift_raw_string_literal | @swift_referenceable_operator | @swift_reserved_word | @swift_selector_expression | @swift_switch_statement | @swift_ternary_expression | @swift_token_bin_literal | @swift_token_boolean_literal | @swift_token_diagnostic | @swift_token_fully_open_range | @swift_token_hex_literal | @swift_token_integer_literal | @swift_token_oct_literal | @swift_token_real_literal | @swift_token_regex_literal | @swift_token_self_expression | @swift_token_simple_identifier | @swift_token_special_literal | @swift_token_super_expression | @swift_try_expression | @swift_tuple_expression | @swift_value_pack_expansion | @swift_value_parameter_pack -@swift_ternary_expression_if_false_type = @swift_additive_expression | @swift_array_literal | @swift_as_expression | @swift_assignment | @swift_await_expression | @swift_bitwise_operation | @swift_call_expression | @swift_check_expression | @swift_comparison_expression | @swift_conjunction_expression | @swift_constructor_expression | @swift_dictionary_literal | @swift_directive | @swift_disjunction_expression | @swift_equality_expression | @swift_if_statement | @swift_infix_expression | @swift_key_path_expression | @swift_key_path_string_expression | @swift_lambda_literal | @swift_line_string_literal | @swift_macro_invocation | @swift_multi_line_string_literal | @swift_multiplicative_expression | @swift_navigation_expression | @swift_nil_coalescing_expression | @swift_open_end_range_expression | @swift_open_start_range_expression | @swift_optional_chain_marker | @swift_playground_literal | @swift_postfix_expression | @swift_prefix_expression | @swift_range_expression | @swift_raw_string_literal | @swift_reserved_word | @swift_selector_expression | @swift_switch_statement | @swift_ternary_expression | @swift_token_bang | @swift_token_bin_literal | @swift_token_boolean_literal | @swift_token_custom_operator | @swift_token_diagnostic | @swift_token_fully_open_range | @swift_token_hex_literal | @swift_token_integer_literal | @swift_token_oct_literal | @swift_token_real_literal | @swift_token_regex_literal | @swift_token_self_expression | @swift_token_simple_identifier | @swift_token_special_literal | @swift_token_super_expression | @swift_try_expression | @swift_tuple_expression | @swift_value_pack_expansion | @swift_value_parameter_pack +@swift_ternary_expression_if_false_type = @swift_additive_expression | @swift_array_literal | @swift_as_expression | @swift_assignment | @swift_await_expression | @swift_bitwise_operation | @swift_call_expression | @swift_check_expression | @swift_comparison_expression | @swift_conjunction_expression | @swift_constructor_expression | @swift_dictionary_literal | @swift_directive | @swift_disjunction_expression | @swift_equality_expression | @swift_if_statement | @swift_infix_expression | @swift_key_path_expression | @swift_key_path_string_expression | @swift_lambda_literal | @swift_line_string_literal | @swift_macro_invocation | @swift_multi_line_string_literal | @swift_multiplicative_expression | @swift_navigation_expression | @swift_nil_coalescing_expression | @swift_open_end_range_expression | @swift_open_start_range_expression | @swift_optional_chain_marker | @swift_playground_literal | @swift_postfix_expression | @swift_prefix_expression | @swift_range_expression | @swift_raw_string_literal | @swift_referenceable_operator | @swift_reserved_word | @swift_selector_expression | @swift_switch_statement | @swift_ternary_expression | @swift_token_bin_literal | @swift_token_boolean_literal | @swift_token_diagnostic | @swift_token_fully_open_range | @swift_token_hex_literal | @swift_token_integer_literal | @swift_token_oct_literal | @swift_token_real_literal | @swift_token_regex_literal | @swift_token_self_expression | @swift_token_simple_identifier | @swift_token_special_literal | @swift_token_super_expression | @swift_try_expression | @swift_tuple_expression | @swift_value_pack_expansion | @swift_value_parameter_pack -@swift_ternary_expression_if_true_type = @swift_additive_expression | @swift_array_literal | @swift_as_expression | @swift_assignment | @swift_await_expression | @swift_bitwise_operation | @swift_call_expression | @swift_check_expression | @swift_comparison_expression | @swift_conjunction_expression | @swift_constructor_expression | @swift_dictionary_literal | @swift_directive | @swift_disjunction_expression | @swift_equality_expression | @swift_if_statement | @swift_infix_expression | @swift_key_path_expression | @swift_key_path_string_expression | @swift_lambda_literal | @swift_line_string_literal | @swift_macro_invocation | @swift_multi_line_string_literal | @swift_multiplicative_expression | @swift_navigation_expression | @swift_nil_coalescing_expression | @swift_open_end_range_expression | @swift_open_start_range_expression | @swift_optional_chain_marker | @swift_playground_literal | @swift_postfix_expression | @swift_prefix_expression | @swift_range_expression | @swift_raw_string_literal | @swift_reserved_word | @swift_selector_expression | @swift_switch_statement | @swift_ternary_expression | @swift_token_bang | @swift_token_bin_literal | @swift_token_boolean_literal | @swift_token_custom_operator | @swift_token_diagnostic | @swift_token_fully_open_range | @swift_token_hex_literal | @swift_token_integer_literal | @swift_token_oct_literal | @swift_token_real_literal | @swift_token_regex_literal | @swift_token_self_expression | @swift_token_simple_identifier | @swift_token_special_literal | @swift_token_super_expression | @swift_try_expression | @swift_tuple_expression | @swift_value_pack_expansion | @swift_value_parameter_pack +@swift_ternary_expression_if_true_type = @swift_additive_expression | @swift_array_literal | @swift_as_expression | @swift_assignment | @swift_await_expression | @swift_bitwise_operation | @swift_call_expression | @swift_check_expression | @swift_comparison_expression | @swift_conjunction_expression | @swift_constructor_expression | @swift_dictionary_literal | @swift_directive | @swift_disjunction_expression | @swift_equality_expression | @swift_if_statement | @swift_infix_expression | @swift_key_path_expression | @swift_key_path_string_expression | @swift_lambda_literal | @swift_line_string_literal | @swift_macro_invocation | @swift_multi_line_string_literal | @swift_multiplicative_expression | @swift_navigation_expression | @swift_nil_coalescing_expression | @swift_open_end_range_expression | @swift_open_start_range_expression | @swift_optional_chain_marker | @swift_playground_literal | @swift_postfix_expression | @swift_prefix_expression | @swift_range_expression | @swift_raw_string_literal | @swift_referenceable_operator | @swift_reserved_word | @swift_selector_expression | @swift_switch_statement | @swift_ternary_expression | @swift_token_bin_literal | @swift_token_boolean_literal | @swift_token_diagnostic | @swift_token_fully_open_range | @swift_token_hex_literal | @swift_token_integer_literal | @swift_token_oct_literal | @swift_token_real_literal | @swift_token_regex_literal | @swift_token_self_expression | @swift_token_simple_identifier | @swift_token_special_literal | @swift_token_super_expression | @swift_try_expression | @swift_tuple_expression | @swift_value_pack_expansion | @swift_value_parameter_pack swift_ternary_expression_def( unique int id: @swift_ternary_expression, @@ -2064,7 +2075,7 @@ swift_throws_clause_def( int type__: @swift_throws_clause_type_type ref ); -@swift_try_expression_expr_type = @swift_additive_expression | @swift_array_literal | @swift_as_expression | @swift_assignment | @swift_await_expression | @swift_bitwise_operation | @swift_call_expression | @swift_check_expression | @swift_comparison_expression | @swift_conjunction_expression | @swift_constructor_expression | @swift_dictionary_literal | @swift_directive | @swift_disjunction_expression | @swift_equality_expression | @swift_if_statement | @swift_infix_expression | @swift_key_path_expression | @swift_key_path_string_expression | @swift_lambda_literal | @swift_line_string_literal | @swift_macro_invocation | @swift_multi_line_string_literal | @swift_multiplicative_expression | @swift_navigation_expression | @swift_nil_coalescing_expression | @swift_open_end_range_expression | @swift_open_start_range_expression | @swift_optional_chain_marker | @swift_playground_literal | @swift_postfix_expression | @swift_prefix_expression | @swift_range_expression | @swift_raw_string_literal | @swift_reserved_word | @swift_selector_expression | @swift_switch_statement | @swift_ternary_expression | @swift_token_bang | @swift_token_bin_literal | @swift_token_boolean_literal | @swift_token_custom_operator | @swift_token_diagnostic | @swift_token_fully_open_range | @swift_token_hex_literal | @swift_token_integer_literal | @swift_token_oct_literal | @swift_token_real_literal | @swift_token_regex_literal | @swift_token_self_expression | @swift_token_simple_identifier | @swift_token_special_literal | @swift_token_super_expression | @swift_try_expression | @swift_tuple_expression | @swift_value_pack_expansion | @swift_value_parameter_pack +@swift_try_expression_expr_type = @swift_additive_expression | @swift_array_literal | @swift_as_expression | @swift_assignment | @swift_await_expression | @swift_bitwise_operation | @swift_call_expression | @swift_check_expression | @swift_comparison_expression | @swift_conjunction_expression | @swift_constructor_expression | @swift_dictionary_literal | @swift_directive | @swift_disjunction_expression | @swift_equality_expression | @swift_if_statement | @swift_infix_expression | @swift_key_path_expression | @swift_key_path_string_expression | @swift_lambda_literal | @swift_line_string_literal | @swift_macro_invocation | @swift_multi_line_string_literal | @swift_multiplicative_expression | @swift_navigation_expression | @swift_nil_coalescing_expression | @swift_open_end_range_expression | @swift_open_start_range_expression | @swift_optional_chain_marker | @swift_playground_literal | @swift_postfix_expression | @swift_prefix_expression | @swift_range_expression | @swift_raw_string_literal | @swift_referenceable_operator | @swift_reserved_word | @swift_selector_expression | @swift_switch_statement | @swift_ternary_expression | @swift_token_bin_literal | @swift_token_boolean_literal | @swift_token_diagnostic | @swift_token_fully_open_range | @swift_token_hex_literal | @swift_token_integer_literal | @swift_token_oct_literal | @swift_token_real_literal | @swift_token_regex_literal | @swift_token_self_expression | @swift_token_simple_identifier | @swift_token_special_literal | @swift_token_super_expression | @swift_try_expression | @swift_tuple_expression | @swift_value_pack_expansion | @swift_value_parameter_pack swift_try_expression_def( unique int id: @swift_try_expression, @@ -2079,7 +2090,7 @@ swift_tuple_expression_name( unique int name: @swift_token_simple_identifier ref ); -@swift_tuple_expression_value_type = @swift_additive_expression | @swift_array_literal | @swift_as_expression | @swift_assignment | @swift_await_expression | @swift_bitwise_operation | @swift_call_expression | @swift_check_expression | @swift_comparison_expression | @swift_conjunction_expression | @swift_constructor_expression | @swift_dictionary_literal | @swift_directive | @swift_disjunction_expression | @swift_equality_expression | @swift_if_statement | @swift_infix_expression | @swift_key_path_expression | @swift_key_path_string_expression | @swift_lambda_literal | @swift_line_string_literal | @swift_macro_invocation | @swift_multi_line_string_literal | @swift_multiplicative_expression | @swift_navigation_expression | @swift_nil_coalescing_expression | @swift_open_end_range_expression | @swift_open_start_range_expression | @swift_optional_chain_marker | @swift_playground_literal | @swift_postfix_expression | @swift_prefix_expression | @swift_range_expression | @swift_raw_string_literal | @swift_reserved_word | @swift_selector_expression | @swift_switch_statement | @swift_ternary_expression | @swift_token_bang | @swift_token_bin_literal | @swift_token_boolean_literal | @swift_token_custom_operator | @swift_token_diagnostic | @swift_token_fully_open_range | @swift_token_hex_literal | @swift_token_integer_literal | @swift_token_oct_literal | @swift_token_real_literal | @swift_token_regex_literal | @swift_token_self_expression | @swift_token_simple_identifier | @swift_token_special_literal | @swift_token_super_expression | @swift_try_expression | @swift_tuple_expression | @swift_value_pack_expansion | @swift_value_parameter_pack +@swift_tuple_expression_value_type = @swift_additive_expression | @swift_array_literal | @swift_as_expression | @swift_assignment | @swift_await_expression | @swift_bitwise_operation | @swift_call_expression | @swift_check_expression | @swift_comparison_expression | @swift_conjunction_expression | @swift_constructor_expression | @swift_dictionary_literal | @swift_directive | @swift_disjunction_expression | @swift_equality_expression | @swift_if_statement | @swift_infix_expression | @swift_key_path_expression | @swift_key_path_string_expression | @swift_lambda_literal | @swift_line_string_literal | @swift_macro_invocation | @swift_multi_line_string_literal | @swift_multiplicative_expression | @swift_navigation_expression | @swift_nil_coalescing_expression | @swift_open_end_range_expression | @swift_open_start_range_expression | @swift_optional_chain_marker | @swift_playground_literal | @swift_postfix_expression | @swift_prefix_expression | @swift_range_expression | @swift_raw_string_literal | @swift_referenceable_operator | @swift_reserved_word | @swift_selector_expression | @swift_switch_statement | @swift_ternary_expression | @swift_token_bin_literal | @swift_token_boolean_literal | @swift_token_diagnostic | @swift_token_fully_open_range | @swift_token_hex_literal | @swift_token_integer_literal | @swift_token_oct_literal | @swift_token_real_literal | @swift_token_regex_literal | @swift_token_self_expression | @swift_token_simple_identifier | @swift_token_special_literal | @swift_token_super_expression | @swift_try_expression | @swift_tuple_expression | @swift_value_pack_expansion | @swift_value_parameter_pack #keyset[swift_tuple_expression, index] swift_tuple_expression_value( @@ -2327,7 +2338,7 @@ swift_value_argument_reference_specifier( unique int reference_specifier: @swift_value_argument_label ref ); -@swift_value_argument_value_type = @swift_additive_expression | @swift_array_literal | @swift_as_expression | @swift_assignment | @swift_await_expression | @swift_bitwise_operation | @swift_call_expression | @swift_check_expression | @swift_comparison_expression | @swift_conjunction_expression | @swift_constructor_expression | @swift_dictionary_literal | @swift_directive | @swift_disjunction_expression | @swift_equality_expression | @swift_if_statement | @swift_infix_expression | @swift_key_path_expression | @swift_key_path_string_expression | @swift_lambda_literal | @swift_line_string_literal | @swift_macro_invocation | @swift_multi_line_string_literal | @swift_multiplicative_expression | @swift_navigation_expression | @swift_nil_coalescing_expression | @swift_open_end_range_expression | @swift_open_start_range_expression | @swift_optional_chain_marker | @swift_playground_literal | @swift_postfix_expression | @swift_prefix_expression | @swift_range_expression | @swift_raw_string_literal | @swift_reserved_word | @swift_selector_expression | @swift_switch_statement | @swift_ternary_expression | @swift_token_bang | @swift_token_bin_literal | @swift_token_boolean_literal | @swift_token_custom_operator | @swift_token_diagnostic | @swift_token_fully_open_range | @swift_token_hex_literal | @swift_token_integer_literal | @swift_token_oct_literal | @swift_token_real_literal | @swift_token_regex_literal | @swift_token_self_expression | @swift_token_simple_identifier | @swift_token_special_literal | @swift_token_super_expression | @swift_try_expression | @swift_tuple_expression | @swift_value_pack_expansion | @swift_value_parameter_pack +@swift_value_argument_value_type = @swift_additive_expression | @swift_array_literal | @swift_as_expression | @swift_assignment | @swift_await_expression | @swift_bitwise_operation | @swift_call_expression | @swift_check_expression | @swift_comparison_expression | @swift_conjunction_expression | @swift_constructor_expression | @swift_dictionary_literal | @swift_directive | @swift_disjunction_expression | @swift_equality_expression | @swift_if_statement | @swift_infix_expression | @swift_key_path_expression | @swift_key_path_string_expression | @swift_lambda_literal | @swift_line_string_literal | @swift_macro_invocation | @swift_multi_line_string_literal | @swift_multiplicative_expression | @swift_navigation_expression | @swift_nil_coalescing_expression | @swift_open_end_range_expression | @swift_open_start_range_expression | @swift_optional_chain_marker | @swift_playground_literal | @swift_postfix_expression | @swift_prefix_expression | @swift_range_expression | @swift_raw_string_literal | @swift_referenceable_operator | @swift_reserved_word | @swift_selector_expression | @swift_switch_statement | @swift_ternary_expression | @swift_token_bin_literal | @swift_token_boolean_literal | @swift_token_diagnostic | @swift_token_fully_open_range | @swift_token_hex_literal | @swift_token_integer_literal | @swift_token_oct_literal | @swift_token_real_literal | @swift_token_regex_literal | @swift_token_self_expression | @swift_token_simple_identifier | @swift_token_special_literal | @swift_token_super_expression | @swift_try_expression | @swift_tuple_expression | @swift_value_pack_expansion | @swift_value_parameter_pack swift_value_argument_value( unique int swift_value_argument: @swift_value_argument ref, @@ -2370,7 +2381,7 @@ swift_value_binding_pattern_def( int mutability: int ref ); -@swift_value_pack_expansion_child_type = @swift_additive_expression | @swift_array_literal | @swift_as_expression | @swift_assignment | @swift_await_expression | @swift_bitwise_operation | @swift_call_expression | @swift_check_expression | @swift_comparison_expression | @swift_conjunction_expression | @swift_constructor_expression | @swift_dictionary_literal | @swift_directive | @swift_disjunction_expression | @swift_equality_expression | @swift_if_statement | @swift_infix_expression | @swift_key_path_expression | @swift_key_path_string_expression | @swift_lambda_literal | @swift_line_string_literal | @swift_macro_invocation | @swift_multi_line_string_literal | @swift_multiplicative_expression | @swift_navigation_expression | @swift_nil_coalescing_expression | @swift_open_end_range_expression | @swift_open_start_range_expression | @swift_optional_chain_marker | @swift_playground_literal | @swift_postfix_expression | @swift_prefix_expression | @swift_range_expression | @swift_raw_string_literal | @swift_selector_expression | @swift_switch_statement | @swift_ternary_expression | @swift_token_bang | @swift_token_bin_literal | @swift_token_boolean_literal | @swift_token_custom_operator | @swift_token_diagnostic | @swift_token_fully_open_range | @swift_token_hex_literal | @swift_token_integer_literal | @swift_token_oct_literal | @swift_token_real_literal | @swift_token_regex_literal | @swift_token_self_expression | @swift_token_simple_identifier | @swift_token_special_literal | @swift_token_super_expression | @swift_try_expression | @swift_tuple_expression | @swift_value_pack_expansion | @swift_value_parameter_pack +@swift_value_pack_expansion_child_type = @swift_additive_expression | @swift_array_literal | @swift_as_expression | @swift_assignment | @swift_await_expression | @swift_bitwise_operation | @swift_call_expression | @swift_check_expression | @swift_comparison_expression | @swift_conjunction_expression | @swift_constructor_expression | @swift_dictionary_literal | @swift_directive | @swift_disjunction_expression | @swift_equality_expression | @swift_if_statement | @swift_infix_expression | @swift_key_path_expression | @swift_key_path_string_expression | @swift_lambda_literal | @swift_line_string_literal | @swift_macro_invocation | @swift_multi_line_string_literal | @swift_multiplicative_expression | @swift_navigation_expression | @swift_nil_coalescing_expression | @swift_open_end_range_expression | @swift_open_start_range_expression | @swift_optional_chain_marker | @swift_playground_literal | @swift_postfix_expression | @swift_prefix_expression | @swift_range_expression | @swift_raw_string_literal | @swift_referenceable_operator | @swift_selector_expression | @swift_switch_statement | @swift_ternary_expression | @swift_token_bin_literal | @swift_token_boolean_literal | @swift_token_diagnostic | @swift_token_fully_open_range | @swift_token_hex_literal | @swift_token_integer_literal | @swift_token_oct_literal | @swift_token_real_literal | @swift_token_regex_literal | @swift_token_self_expression | @swift_token_simple_identifier | @swift_token_special_literal | @swift_token_super_expression | @swift_try_expression | @swift_tuple_expression | @swift_value_pack_expansion | @swift_value_parameter_pack swift_value_pack_expansion_child( unique int swift_value_pack_expansion: @swift_value_pack_expansion ref, @@ -2381,7 +2392,7 @@ swift_value_pack_expansion_def( unique int id: @swift_value_pack_expansion ); -@swift_value_parameter_pack_child_type = @swift_additive_expression | @swift_array_literal | @swift_as_expression | @swift_assignment | @swift_await_expression | @swift_bitwise_operation | @swift_call_expression | @swift_check_expression | @swift_comparison_expression | @swift_conjunction_expression | @swift_constructor_expression | @swift_dictionary_literal | @swift_directive | @swift_disjunction_expression | @swift_equality_expression | @swift_if_statement | @swift_infix_expression | @swift_key_path_expression | @swift_key_path_string_expression | @swift_lambda_literal | @swift_line_string_literal | @swift_macro_invocation | @swift_multi_line_string_literal | @swift_multiplicative_expression | @swift_navigation_expression | @swift_nil_coalescing_expression | @swift_open_end_range_expression | @swift_open_start_range_expression | @swift_optional_chain_marker | @swift_playground_literal | @swift_postfix_expression | @swift_prefix_expression | @swift_range_expression | @swift_raw_string_literal | @swift_selector_expression | @swift_switch_statement | @swift_ternary_expression | @swift_token_bang | @swift_token_bin_literal | @swift_token_boolean_literal | @swift_token_custom_operator | @swift_token_diagnostic | @swift_token_fully_open_range | @swift_token_hex_literal | @swift_token_integer_literal | @swift_token_oct_literal | @swift_token_real_literal | @swift_token_regex_literal | @swift_token_self_expression | @swift_token_simple_identifier | @swift_token_special_literal | @swift_token_super_expression | @swift_try_expression | @swift_tuple_expression | @swift_value_pack_expansion | @swift_value_parameter_pack +@swift_value_parameter_pack_child_type = @swift_additive_expression | @swift_array_literal | @swift_as_expression | @swift_assignment | @swift_await_expression | @swift_bitwise_operation | @swift_call_expression | @swift_check_expression | @swift_comparison_expression | @swift_conjunction_expression | @swift_constructor_expression | @swift_dictionary_literal | @swift_directive | @swift_disjunction_expression | @swift_equality_expression | @swift_if_statement | @swift_infix_expression | @swift_key_path_expression | @swift_key_path_string_expression | @swift_lambda_literal | @swift_line_string_literal | @swift_macro_invocation | @swift_multi_line_string_literal | @swift_multiplicative_expression | @swift_navigation_expression | @swift_nil_coalescing_expression | @swift_open_end_range_expression | @swift_open_start_range_expression | @swift_optional_chain_marker | @swift_playground_literal | @swift_postfix_expression | @swift_prefix_expression | @swift_range_expression | @swift_raw_string_literal | @swift_referenceable_operator | @swift_selector_expression | @swift_switch_statement | @swift_ternary_expression | @swift_token_bin_literal | @swift_token_boolean_literal | @swift_token_diagnostic | @swift_token_fully_open_range | @swift_token_hex_literal | @swift_token_integer_literal | @swift_token_oct_literal | @swift_token_real_literal | @swift_token_regex_literal | @swift_token_self_expression | @swift_token_simple_identifier | @swift_token_special_literal | @swift_token_super_expression | @swift_try_expression | @swift_tuple_expression | @swift_value_pack_expansion | @swift_value_parameter_pack swift_value_parameter_pack_child( unique int swift_value_parameter_pack: @swift_value_parameter_pack ref, @@ -2392,7 +2403,7 @@ swift_value_parameter_pack_def( unique int id: @swift_value_parameter_pack ); -@swift_where_clause_child_type = @swift_additive_expression | @swift_array_literal | @swift_as_expression | @swift_assignment | @swift_await_expression | @swift_bitwise_operation | @swift_call_expression | @swift_check_expression | @swift_comparison_expression | @swift_conjunction_expression | @swift_constructor_expression | @swift_dictionary_literal | @swift_directive | @swift_disjunction_expression | @swift_equality_expression | @swift_if_statement | @swift_infix_expression | @swift_key_path_expression | @swift_key_path_string_expression | @swift_lambda_literal | @swift_line_string_literal | @swift_macro_invocation | @swift_multi_line_string_literal | @swift_multiplicative_expression | @swift_navigation_expression | @swift_nil_coalescing_expression | @swift_open_end_range_expression | @swift_open_start_range_expression | @swift_optional_chain_marker | @swift_playground_literal | @swift_postfix_expression | @swift_prefix_expression | @swift_range_expression | @swift_raw_string_literal | @swift_selector_expression | @swift_switch_statement | @swift_ternary_expression | @swift_token_bang | @swift_token_bin_literal | @swift_token_boolean_literal | @swift_token_custom_operator | @swift_token_diagnostic | @swift_token_fully_open_range | @swift_token_hex_literal | @swift_token_integer_literal | @swift_token_oct_literal | @swift_token_real_literal | @swift_token_regex_literal | @swift_token_self_expression | @swift_token_simple_identifier | @swift_token_special_literal | @swift_token_super_expression | @swift_token_where_keyword | @swift_try_expression | @swift_tuple_expression | @swift_value_pack_expansion | @swift_value_parameter_pack +@swift_where_clause_child_type = @swift_additive_expression | @swift_array_literal | @swift_as_expression | @swift_assignment | @swift_await_expression | @swift_bitwise_operation | @swift_call_expression | @swift_check_expression | @swift_comparison_expression | @swift_conjunction_expression | @swift_constructor_expression | @swift_dictionary_literal | @swift_directive | @swift_disjunction_expression | @swift_equality_expression | @swift_if_statement | @swift_infix_expression | @swift_key_path_expression | @swift_key_path_string_expression | @swift_lambda_literal | @swift_line_string_literal | @swift_macro_invocation | @swift_multi_line_string_literal | @swift_multiplicative_expression | @swift_navigation_expression | @swift_nil_coalescing_expression | @swift_open_end_range_expression | @swift_open_start_range_expression | @swift_optional_chain_marker | @swift_playground_literal | @swift_postfix_expression | @swift_prefix_expression | @swift_range_expression | @swift_raw_string_literal | @swift_referenceable_operator | @swift_selector_expression | @swift_switch_statement | @swift_ternary_expression | @swift_token_bin_literal | @swift_token_boolean_literal | @swift_token_diagnostic | @swift_token_fully_open_range | @swift_token_hex_literal | @swift_token_integer_literal | @swift_token_oct_literal | @swift_token_real_literal | @swift_token_regex_literal | @swift_token_self_expression | @swift_token_simple_identifier | @swift_token_special_literal | @swift_token_super_expression | @swift_token_where_keyword | @swift_try_expression | @swift_tuple_expression | @swift_value_pack_expansion | @swift_value_parameter_pack #keyset[swift_where_clause, index] swift_where_clause_child( @@ -2412,7 +2423,7 @@ swift_while_statement_bound_identifier( unique int bound_identifier: @swift_token_simple_identifier ref ); -@swift_while_statement_condition_type = @swift_additive_expression | @swift_array_literal | @swift_array_type | @swift_as_expression | @swift_assignment | @swift_availability_condition | @swift_await_expression | @swift_bitwise_operation | @swift_call_expression | @swift_check_expression | @swift_comparison_expression | @swift_conjunction_expression | @swift_constructor_expression | @swift_dictionary_literal | @swift_dictionary_type | @swift_directive | @swift_disjunction_expression | @swift_equality_expression | @swift_existential_type | @swift_function_type | @swift_if_statement | @swift_infix_expression | @swift_key_path_expression | @swift_key_path_string_expression | @swift_lambda_literal | @swift_line_string_literal | @swift_macro_invocation | @swift_metatype | @swift_multi_line_string_literal | @swift_multiplicative_expression | @swift_navigation_expression | @swift_nil_coalescing_expression | @swift_opaque_type | @swift_open_end_range_expression | @swift_open_start_range_expression | @swift_optional_chain_marker | @swift_optional_type | @swift_pattern | @swift_playground_literal | @swift_postfix_expression | @swift_prefix_expression | @swift_protocol_composition_type | @swift_range_expression | @swift_raw_string_literal | @swift_reserved_word | @swift_selector_expression | @swift_suppressed_constraint | @swift_switch_statement | @swift_ternary_expression | @swift_token_bang | @swift_token_bin_literal | @swift_token_boolean_literal | @swift_token_custom_operator | @swift_token_diagnostic | @swift_token_fully_open_range | @swift_token_hex_literal | @swift_token_integer_literal | @swift_token_oct_literal | @swift_token_real_literal | @swift_token_regex_literal | @swift_token_self_expression | @swift_token_simple_identifier | @swift_token_special_literal | @swift_token_super_expression | @swift_token_wildcard_pattern | @swift_try_expression | @swift_tuple_expression | @swift_tuple_type | @swift_type_annotation | @swift_type_modifiers | @swift_type_pack_expansion | @swift_type_parameter_pack | @swift_user_type | @swift_value_binding_pattern | @swift_value_pack_expansion | @swift_value_parameter_pack | @swift_where_clause +@swift_while_statement_condition_type = @swift_additive_expression | @swift_array_literal | @swift_array_type | @swift_as_expression | @swift_assignment | @swift_availability_condition | @swift_await_expression | @swift_bitwise_operation | @swift_call_expression | @swift_check_expression | @swift_comparison_expression | @swift_conjunction_expression | @swift_constructor_expression | @swift_dictionary_literal | @swift_dictionary_type | @swift_directive | @swift_disjunction_expression | @swift_equality_expression | @swift_existential_type | @swift_function_type | @swift_if_statement | @swift_infix_expression | @swift_key_path_expression | @swift_key_path_string_expression | @swift_lambda_literal | @swift_line_string_literal | @swift_macro_invocation | @swift_metatype | @swift_multi_line_string_literal | @swift_multiplicative_expression | @swift_navigation_expression | @swift_nil_coalescing_expression | @swift_opaque_type | @swift_open_end_range_expression | @swift_open_start_range_expression | @swift_optional_chain_marker | @swift_optional_type | @swift_pattern | @swift_playground_literal | @swift_postfix_expression | @swift_prefix_expression | @swift_protocol_composition_type | @swift_range_expression | @swift_raw_string_literal | @swift_referenceable_operator | @swift_reserved_word | @swift_selector_expression | @swift_suppressed_constraint | @swift_switch_statement | @swift_ternary_expression | @swift_token_bin_literal | @swift_token_boolean_literal | @swift_token_diagnostic | @swift_token_fully_open_range | @swift_token_hex_literal | @swift_token_integer_literal | @swift_token_oct_literal | @swift_token_real_literal | @swift_token_regex_literal | @swift_token_self_expression | @swift_token_simple_identifier | @swift_token_special_literal | @swift_token_super_expression | @swift_token_wildcard_pattern | @swift_try_expression | @swift_tuple_expression | @swift_tuple_type | @swift_type_annotation | @swift_type_modifiers | @swift_type_pack_expansion | @swift_type_parameter_pack | @swift_user_type | @swift_value_binding_pattern | @swift_value_pack_expansion | @swift_value_parameter_pack | @swift_where_clause #keyset[swift_while_statement, index] swift_while_statement_condition( @@ -2522,7 +2533,7 @@ case @swift_token.kind of ; -@swift_ast_node = @swift_additive_expression | @swift_array_literal | @swift_array_type | @swift_as_expression | @swift_assignment | @swift_associatedtype_declaration | @swift_attribute | @swift_availability_condition | @swift_await_expression | @swift_bitwise_operation | @swift_call_expression | @swift_call_suffix | @swift_capture_list | @swift_capture_list_item | @swift_catch_block | @swift_check_expression | @swift_class_body | @swift_class_declaration | @swift_comparison_expression | @swift_computed_getter | @swift_computed_modify | @swift_computed_property | @swift_computed_setter | @swift_conjunction_expression | @swift_constructor_expression | @swift_constructor_suffix | @swift_control_transfer_statement | @swift_deinit_declaration | @swift_deprecated_operator_declaration_body | @swift_dictionary_literal | @swift_dictionary_type | @swift_didset_clause | @swift_directive | @swift_directly_assignable_expression | @swift_disjunction_expression | @swift_do_statement | @swift_enum_class_body | @swift_enum_entry | @swift_enum_type_parameters | @swift_equality_constraint | @swift_equality_expression | @swift_existential_type | @swift_external_macro_definition | @swift_for_statement | @swift_function_body | @swift_function_declaration | @swift_function_type | @swift_getter_specifier | @swift_guard_statement | @swift_identifier | @swift_if_statement | @swift_import_declaration | @swift_infix_expression | @swift_inheritance_constraint | @swift_inheritance_specifier | @swift_init_declaration | @swift_interpolated_expression | @swift_key_path_expression | @swift_key_path_string_expression | @swift_lambda_function_type | @swift_lambda_function_type_parameters | @swift_lambda_literal | @swift_lambda_parameter | @swift_line_string_literal | @swift_macro_declaration | @swift_macro_definition | @swift_macro_invocation | @swift_metatype | @swift_modifiers | @swift_modify_specifier | @swift_multi_line_string_literal | @swift_multiplicative_expression | @swift_navigation_expression | @swift_navigation_suffix | @swift_nil_coalescing_expression | @swift_opaque_type | @swift_open_end_range_expression | @swift_open_start_range_expression | @swift_operator_declaration | @swift_optional_chain_marker | @swift_optional_type | @swift_parameter | @swift_parameter_modifiers | @swift_pattern | @swift_playground_literal | @swift_postfix_expression | @swift_precedence_group_attribute | @swift_precedence_group_attributes | @swift_precedence_group_declaration | @swift_prefix_expression | @swift_property_declaration | @swift_protocol_body | @swift_protocol_composition_type | @swift_protocol_declaration | @swift_protocol_function_declaration | @swift_protocol_property_declaration | @swift_protocol_property_requirements | @swift_range_expression | @swift_raw_str_interpolation | @swift_raw_string_literal | @swift_repeat_while_statement | @swift_selector_expression | @swift_setter_specifier | @swift_source_file | @swift_statements | @swift_subscript_declaration | @swift_suppressed_constraint | @swift_switch_entry | @swift_switch_pattern | @swift_switch_statement | @swift_ternary_expression | @swift_throws_clause | @swift_token | @swift_try_expression | @swift_tuple_expression | @swift_tuple_type | @swift_tuple_type_item | @swift_type_annotation | @swift_type_arguments | @swift_type_constraint | @swift_type_constraints | @swift_type_modifiers | @swift_type_pack_expansion | @swift_type_parameter | @swift_type_parameter_modifiers | @swift_type_parameter_pack | @swift_type_parameters | @swift_typealias_declaration | @swift_user_type | @swift_value_argument | @swift_value_argument_label | @swift_value_arguments | @swift_value_binding_pattern | @swift_value_pack_expansion | @swift_value_parameter_pack | @swift_where_clause | @swift_while_statement | @swift_willset_clause | @swift_willset_didset_block +@swift_ast_node = @swift_additive_expression | @swift_array_literal | @swift_array_type | @swift_as_expression | @swift_assignment | @swift_associatedtype_declaration | @swift_attribute | @swift_availability_condition | @swift_await_expression | @swift_bitwise_operation | @swift_call_expression | @swift_call_suffix | @swift_capture_list | @swift_capture_list_item | @swift_catch_block | @swift_check_expression | @swift_class_body | @swift_class_declaration | @swift_comparison_expression | @swift_computed_getter | @swift_computed_modify | @swift_computed_property | @swift_computed_setter | @swift_conjunction_expression | @swift_constructor_expression | @swift_constructor_suffix | @swift_control_transfer_statement | @swift_deinit_declaration | @swift_deprecated_operator_declaration_body | @swift_dictionary_literal | @swift_dictionary_type | @swift_didset_clause | @swift_directive | @swift_directly_assignable_expression | @swift_disjunction_expression | @swift_do_statement | @swift_enum_class_body | @swift_enum_entry | @swift_enum_type_parameters | @swift_equality_constraint | @swift_equality_expression | @swift_existential_type | @swift_external_macro_definition | @swift_for_statement | @swift_function_body | @swift_function_declaration | @swift_function_type | @swift_getter_specifier | @swift_guard_statement | @swift_identifier | @swift_if_statement | @swift_import_declaration | @swift_infix_expression | @swift_inheritance_constraint | @swift_inheritance_specifier | @swift_init_declaration | @swift_interpolated_expression | @swift_key_path_expression | @swift_key_path_string_expression | @swift_lambda_function_type | @swift_lambda_function_type_parameters | @swift_lambda_literal | @swift_lambda_parameter | @swift_line_string_literal | @swift_macro_declaration | @swift_macro_definition | @swift_macro_invocation | @swift_metatype | @swift_modifiers | @swift_modify_specifier | @swift_multi_line_string_literal | @swift_multiplicative_expression | @swift_navigation_expression | @swift_navigation_suffix | @swift_nil_coalescing_expression | @swift_opaque_type | @swift_open_end_range_expression | @swift_open_start_range_expression | @swift_operator_declaration | @swift_optional_chain_marker | @swift_optional_type | @swift_parameter | @swift_parameter_modifiers | @swift_pattern | @swift_playground_literal | @swift_postfix_expression | @swift_precedence_group_attribute | @swift_precedence_group_attributes | @swift_precedence_group_declaration | @swift_prefix_expression | @swift_property_declaration | @swift_protocol_body | @swift_protocol_composition_type | @swift_protocol_declaration | @swift_protocol_function_declaration | @swift_protocol_property_declaration | @swift_protocol_property_requirements | @swift_range_expression | @swift_raw_str_interpolation | @swift_raw_string_literal | @swift_referenceable_operator | @swift_repeat_while_statement | @swift_selector_expression | @swift_setter_specifier | @swift_source_file | @swift_statements | @swift_subscript_declaration | @swift_suppressed_constraint | @swift_switch_entry | @swift_switch_pattern | @swift_switch_statement | @swift_ternary_expression | @swift_throws_clause | @swift_token | @swift_try_expression | @swift_tuple_expression | @swift_tuple_type | @swift_tuple_type_item | @swift_type_annotation | @swift_type_arguments | @swift_type_constraint | @swift_type_constraints | @swift_type_modifiers | @swift_type_pack_expansion | @swift_type_parameter | @swift_type_parameter_modifiers | @swift_type_parameter_pack | @swift_type_parameters | @swift_typealias_declaration | @swift_user_type | @swift_value_argument | @swift_value_argument_label | @swift_value_arguments | @swift_value_binding_pattern | @swift_value_pack_expansion | @swift_value_parameter_pack | @swift_where_clause | @swift_while_statement | @swift_willset_clause | @swift_willset_didset_block swift_ast_node_location( unique int node: @swift_ast_node ref, From c0efc52cc768c4ea302c1d79a4e6869afbf3b6d5 Mon Sep 17 00:00:00 2001 From: Taus Date: Fri, 8 May 2026 15:01:05 +0000 Subject: [PATCH 241/260] unified: make if-condition nodes named, to stop bleed Before, the `condition` field of an if statement supposedly could contain things like parentheses and commas, due to bleeding from referenced anonymous nodes. Making the node named makes this issue go away. --- .../extractor/tree-sitter-swift/grammar.js | 10 +++++----- .../tree-sitter-swift/node-types.yml | 20 ++++++++----------- 2 files changed, 13 insertions(+), 17 deletions(-) diff --git a/unified/extractor/tree-sitter-swift/grammar.js b/unified/extractor/tree-sitter-swift/grammar.js index 5a2d84db3928..4442ae585a24 100644 --- a/unified/extractor/tree-sitter-swift/grammar.js +++ b/unified/extractor/tree-sitter-swift/grammar.js @@ -1035,12 +1035,12 @@ module.exports = grammar({ PRECS["if"], seq( "if", - sep1(field("condition", $._if_condition_sequence_item), ","), + sep1(field("condition", $.if_condition), ","), $._block, optional(seq($["else"], $._else_options)) ) ), - _if_condition_sequence_item: ($) => + if_condition: ($) => choice($._if_let_binding, $._expression, $.availability_condition), _if_let_binding: ($) => seq( @@ -1053,7 +1053,7 @@ module.exports = grammar({ PRECS["if"], seq( "guard", - sep1(field("condition", $._if_condition_sequence_item), ","), + sep1(field("condition", $.if_condition), ","), $["else"], $._block ) @@ -1237,7 +1237,7 @@ module.exports = grammar({ PRECS.loop, seq( "while", - sep1(field("condition", $._if_condition_sequence_item), ","), + sep1(field("condition", $.if_condition), ","), "{", optional($.statements), "}" @@ -1254,7 +1254,7 @@ module.exports = grammar({ // Make sure we make it to the `while` before assuming this is a parameter pack. repeat($._implicit_semi), "while", - sep1(field("condition", $._if_condition_sequence_item), ",") + sep1(field("condition", $.if_condition), ",") ) ), control_transfer_statement: ($) => diff --git a/unified/extractor/tree-sitter-swift/node-types.yml b/unified/extractor/tree-sitter-swift/node-types.yml index d03d57036df4..8638a9368d94 100644 --- a/unified/extractor/tree-sitter-swift/node-types.yml +++ b/unified/extractor/tree-sitter-swift/node-types.yml @@ -165,17 +165,17 @@ named: $children*: [mutation_modifier, throws, throws_clause] guard_statement: $children+: [else, statements] - bound_identifier*: simple_identifier - condition+: ["(", ")", ",", ".", ":", "=", "?", additive_expression, array_literal, array_type, "as", as_expression, assignment, "async", availability_condition, await_expression, bin_literal, bitwise_operation, boolean_literal, call_expression, "case", check_expression, comparison_expression, conjunction_expression, constructor_expression, diagnostic, dictionary_literal, dictionary_type, directive, disjunction_expression, equality_expression, existential_type, fully_open_range, function_type, hex_literal, if_statement, infix_expression, integer_literal, "is", key_path_expression, key_path_string_expression, lambda_literal, line_string_literal, macro_invocation, metatype, multi_line_string_literal, multiplicative_expression, navigation_expression, "nil", nil_coalescing_expression, oct_literal, opaque_type, open_end_range_expression, open_start_range_expression, optional_chain_marker, optional_type, pattern, playground_literal, postfix_expression, prefix_expression, protocol_composition_type, range_expression, raw_string_literal, real_literal, referenceable_operator, regex_literal, selector_expression, self_expression, simple_identifier, special_literal, super_expression, suppressed_constraint, switch_statement, ternary_expression, try_expression, tuple_expression, tuple_type, type_annotation, type_modifiers, type_pack_expansion, type_parameter_pack, user_type, value_binding_pattern, value_pack_expansion, value_parameter_pack, where_clause, wildcard_pattern] - name*: [array_type, dictionary_type, existential_type, function_type, metatype, opaque_type, optional_type, protocol_composition_type, suppressed_constraint, tuple_type, type_pack_expansion, type_parameter_pack, user_type] + condition+: if_condition hex_literal: identifier: $children+: simple_identifier + if_condition: + $children*: [additive_expression, array_literal, as_expression, assignment, availability_condition, await_expression, bin_literal, bitwise_operation, boolean_literal, call_expression, check_expression, comparison_expression, conjunction_expression, constructor_expression, diagnostic, dictionary_literal, directive, disjunction_expression, equality_expression, fully_open_range, hex_literal, if_statement, infix_expression, integer_literal, key_path_expression, key_path_string_expression, lambda_literal, line_string_literal, macro_invocation, multi_line_string_literal, multiplicative_expression, navigation_expression, nil_coalescing_expression, oct_literal, open_end_range_expression, open_start_range_expression, optional_chain_marker, pattern, playground_literal, postfix_expression, prefix_expression, range_expression, raw_string_literal, real_literal, referenceable_operator, regex_literal, selector_expression, self_expression, simple_identifier, special_literal, super_expression, switch_statement, ternary_expression, try_expression, tuple_expression, type_annotation, type_modifiers, user_type, value_binding_pattern, value_pack_expansion, value_parameter_pack, where_clause, wildcard_pattern] + bound_identifier?: simple_identifier + name?: [array_type, dictionary_type, existential_type, function_type, metatype, opaque_type, optional_type, protocol_composition_type, suppressed_constraint, tuple_type, type_pack_expansion, type_parameter_pack, user_type] if_statement: $children*: [else, if_statement, statements] - bound_identifier*: simple_identifier - condition+: ["(", ")", ",", ".", ":", "=", "?", additive_expression, array_literal, array_type, "as", as_expression, assignment, "async", availability_condition, await_expression, bin_literal, bitwise_operation, boolean_literal, call_expression, "case", check_expression, comparison_expression, conjunction_expression, constructor_expression, diagnostic, dictionary_literal, dictionary_type, directive, disjunction_expression, equality_expression, existential_type, fully_open_range, function_type, hex_literal, if_statement, infix_expression, integer_literal, "is", key_path_expression, key_path_string_expression, lambda_literal, line_string_literal, macro_invocation, metatype, multi_line_string_literal, multiplicative_expression, navigation_expression, "nil", nil_coalescing_expression, oct_literal, opaque_type, open_end_range_expression, open_start_range_expression, optional_chain_marker, optional_type, pattern, playground_literal, postfix_expression, prefix_expression, protocol_composition_type, range_expression, raw_string_literal, real_literal, referenceable_operator, regex_literal, selector_expression, self_expression, simple_identifier, special_literal, super_expression, suppressed_constraint, switch_statement, ternary_expression, try_expression, tuple_expression, tuple_type, type_annotation, type_modifiers, type_pack_expansion, type_parameter_pack, user_type, value_binding_pattern, value_pack_expansion, value_parameter_pack, where_clause, wildcard_pattern] - name*: [array_type, dictionary_type, existential_type, function_type, metatype, opaque_type, optional_type, protocol_composition_type, suppressed_constraint, tuple_type, type_pack_expansion, type_parameter_pack, user_type] + condition+: if_condition import_declaration: $children+: [identifier, modifiers] infix_expression: @@ -346,9 +346,7 @@ named: regex_literal: repeat_while_statement: $children?: statements - bound_identifier*: simple_identifier - condition+: ["(", ")", ",", ".", ":", "=", "?", additive_expression, array_literal, array_type, "as", as_expression, assignment, "async", availability_condition, await_expression, bin_literal, bitwise_operation, boolean_literal, call_expression, "case", check_expression, comparison_expression, conjunction_expression, constructor_expression, diagnostic, dictionary_literal, dictionary_type, directive, disjunction_expression, equality_expression, existential_type, fully_open_range, function_type, hex_literal, if_statement, infix_expression, integer_literal, "is", key_path_expression, key_path_string_expression, lambda_literal, line_string_literal, macro_invocation, metatype, multi_line_string_literal, multiplicative_expression, navigation_expression, "nil", nil_coalescing_expression, oct_literal, opaque_type, open_end_range_expression, open_start_range_expression, optional_chain_marker, optional_type, pattern, playground_literal, postfix_expression, prefix_expression, protocol_composition_type, range_expression, raw_string_literal, real_literal, referenceable_operator, regex_literal, selector_expression, self_expression, simple_identifier, special_literal, super_expression, suppressed_constraint, switch_statement, ternary_expression, try_expression, tuple_expression, tuple_type, type_annotation, type_modifiers, type_pack_expansion, type_parameter_pack, user_type, value_binding_pattern, value_pack_expansion, value_parameter_pack, where_clause, wildcard_pattern] - name*: [array_type, dictionary_type, existential_type, function_type, metatype, opaque_type, optional_type, protocol_composition_type, suppressed_constraint, tuple_type, type_pack_expansion, type_parameter_pack, user_type] + condition+: if_condition selector_expression: $children?: [additive_expression, array_literal, as_expression, assignment, await_expression, bin_literal, bitwise_operation, boolean_literal, call_expression, check_expression, comparison_expression, conjunction_expression, constructor_expression, diagnostic, dictionary_literal, directive, disjunction_expression, equality_expression, fully_open_range, hex_literal, if_statement, infix_expression, integer_literal, key_path_expression, key_path_string_expression, lambda_literal, line_string_literal, macro_invocation, multi_line_string_literal, multiplicative_expression, navigation_expression, nil_coalescing_expression, oct_literal, open_end_range_expression, open_start_range_expression, optional_chain_marker, playground_literal, postfix_expression, prefix_expression, range_expression, raw_string_literal, real_literal, referenceable_operator, regex_literal, selector_expression, self_expression, simple_identifier, special_literal, super_expression, switch_statement, ternary_expression, try_expression, tuple_expression, value_pack_expansion, value_parameter_pack] self_expression: @@ -452,9 +450,7 @@ named: where_keyword: while_statement: $children?: statements - bound_identifier*: simple_identifier - condition+: ["(", ")", ",", ".", ":", "=", "?", additive_expression, array_literal, array_type, "as", as_expression, assignment, "async", availability_condition, await_expression, bin_literal, bitwise_operation, boolean_literal, call_expression, "case", check_expression, comparison_expression, conjunction_expression, constructor_expression, diagnostic, dictionary_literal, dictionary_type, directive, disjunction_expression, equality_expression, existential_type, fully_open_range, function_type, hex_literal, if_statement, infix_expression, integer_literal, "is", key_path_expression, key_path_string_expression, lambda_literal, line_string_literal, macro_invocation, metatype, multi_line_string_literal, multiplicative_expression, navigation_expression, "nil", nil_coalescing_expression, oct_literal, opaque_type, open_end_range_expression, open_start_range_expression, optional_chain_marker, optional_type, pattern, playground_literal, postfix_expression, prefix_expression, protocol_composition_type, range_expression, raw_string_literal, real_literal, referenceable_operator, regex_literal, selector_expression, self_expression, simple_identifier, special_literal, super_expression, suppressed_constraint, switch_statement, ternary_expression, try_expression, tuple_expression, tuple_type, type_annotation, type_modifiers, type_pack_expansion, type_parameter_pack, user_type, value_binding_pattern, value_pack_expansion, value_parameter_pack, where_clause, wildcard_pattern] - name*: [array_type, dictionary_type, existential_type, function_type, metatype, opaque_type, optional_type, protocol_composition_type, suppressed_constraint, tuple_type, type_pack_expansion, type_parameter_pack, user_type] + condition+: if_condition wildcard_pattern: willset_clause: $children*: [modifiers, simple_identifier, statements] From c7c6e45254bbcf04579ca327ba5a03b8fb1b0215 Mon Sep 17 00:00:00 2001 From: Taus Date: Fri, 8 May 2026 15:01:15 +0000 Subject: [PATCH 242/260] unified: regenerate files --- unified/ql/lib/codeql/unified/Ast.qll | 80 +++++++++-------------- unified/ql/lib/unified.dbscheme | 93 +++++++-------------------- 2 files changed, 55 insertions(+), 118 deletions(-) diff --git a/unified/ql/lib/codeql/unified/Ast.qll b/unified/ql/lib/codeql/unified/Ast.qll index e07d871de9de..cbf7dad7b38f 100644 --- a/unified/ql/lib/codeql/unified/Ast.qll +++ b/unified/ql/lib/codeql/unified/Ast.qll @@ -1103,25 +1103,15 @@ module Swift { /** Gets the name of the primary QL class for this element. */ final override string getAPrimaryQlClass() { result = "GuardStatement" } - /** Gets the node corresponding to the field `bound_identifier`. */ - final SimpleIdentifier getBoundIdentifier(int i) { - swift_guard_statement_bound_identifier(this, i, result) - } - /** Gets the node corresponding to the field `condition`. */ - final AstNode getCondition(int i) { swift_guard_statement_condition(this, i, result) } - - /** Gets the node corresponding to the field `name`. */ - final AstNode getName(int i) { swift_guard_statement_name(this, i, result) } + final IfCondition getCondition(int i) { swift_guard_statement_condition(this, i, result) } /** Gets the `i`th child of this node. */ final AstNode getChild(int i) { swift_guard_statement_child(this, i, result) } /** Gets a field or child node of this node. */ final override AstNode getAFieldOrChild() { - swift_guard_statement_bound_identifier(this, _, result) or swift_guard_statement_condition(this, _, result) or - swift_guard_statement_name(this, _, result) or swift_guard_statement_child(this, _, result) } } @@ -1144,31 +1134,44 @@ module Swift { final override AstNode getAFieldOrChild() { swift_identifier_child(this, _, result) } } - /** A class representing `if_statement` nodes. */ - class IfStatement extends @swift_if_statement, AstNode { + /** A class representing `if_condition` nodes. */ + class IfCondition extends @swift_if_condition, AstNode { /** Gets the name of the primary QL class for this element. */ - final override string getAPrimaryQlClass() { result = "IfStatement" } + final override string getAPrimaryQlClass() { result = "IfCondition" } /** Gets the node corresponding to the field `bound_identifier`. */ - final SimpleIdentifier getBoundIdentifier(int i) { - swift_if_statement_bound_identifier(this, i, result) + final SimpleIdentifier getBoundIdentifier() { + swift_if_condition_bound_identifier(this, result) } - /** Gets the node corresponding to the field `condition`. */ - final AstNode getCondition(int i) { swift_if_statement_condition(this, i, result) } - /** Gets the node corresponding to the field `name`. */ - final AstNode getName(int i) { swift_if_statement_name(this, i, result) } + final AstNode getName() { swift_if_condition_name(this, result) } + + /** Gets the `i`th child of this node. */ + final AstNode getChild(int i) { swift_if_condition_child(this, i, result) } + + /** Gets a field or child node of this node. */ + final override AstNode getAFieldOrChild() { + swift_if_condition_bound_identifier(this, result) or + swift_if_condition_name(this, result) or + swift_if_condition_child(this, _, result) + } + } + + /** A class representing `if_statement` nodes. */ + class IfStatement extends @swift_if_statement, AstNode { + /** Gets the name of the primary QL class for this element. */ + final override string getAPrimaryQlClass() { result = "IfStatement" } + + /** Gets the node corresponding to the field `condition`. */ + final IfCondition getCondition(int i) { swift_if_statement_condition(this, i, result) } /** Gets the `i`th child of this node. */ final AstNode getChild(int i) { swift_if_statement_child(this, i, result) } /** Gets a field or child node of this node. */ final override AstNode getAFieldOrChild() { - swift_if_statement_bound_identifier(this, _, result) or - swift_if_statement_condition(this, _, result) or - swift_if_statement_name(this, _, result) or - swift_if_statement_child(this, _, result) + swift_if_statement_condition(this, _, result) or swift_if_statement_child(this, _, result) } } @@ -2190,25 +2193,17 @@ module Swift { /** Gets the name of the primary QL class for this element. */ final override string getAPrimaryQlClass() { result = "RepeatWhileStatement" } - /** Gets the node corresponding to the field `bound_identifier`. */ - final SimpleIdentifier getBoundIdentifier(int i) { - swift_repeat_while_statement_bound_identifier(this, i, result) - } - /** Gets the node corresponding to the field `condition`. */ - final AstNode getCondition(int i) { swift_repeat_while_statement_condition(this, i, result) } - - /** Gets the node corresponding to the field `name`. */ - final AstNode getName(int i) { swift_repeat_while_statement_name(this, i, result) } + final IfCondition getCondition(int i) { + swift_repeat_while_statement_condition(this, i, result) + } /** Gets the child of this node. */ final Statements getChild() { swift_repeat_while_statement_child(this, result) } /** Gets a field or child node of this node. */ final override AstNode getAFieldOrChild() { - swift_repeat_while_statement_bound_identifier(this, _, result) or swift_repeat_while_statement_condition(this, _, result) or - swift_repeat_while_statement_name(this, _, result) or swift_repeat_while_statement_child(this, result) } } @@ -2813,26 +2808,15 @@ module Swift { /** Gets the name of the primary QL class for this element. */ final override string getAPrimaryQlClass() { result = "WhileStatement" } - /** Gets the node corresponding to the field `bound_identifier`. */ - final SimpleIdentifier getBoundIdentifier(int i) { - swift_while_statement_bound_identifier(this, i, result) - } - /** Gets the node corresponding to the field `condition`. */ - final AstNode getCondition(int i) { swift_while_statement_condition(this, i, result) } - - /** Gets the node corresponding to the field `name`. */ - final AstNode getName(int i) { swift_while_statement_name(this, i, result) } + final IfCondition getCondition(int i) { swift_while_statement_condition(this, i, result) } /** Gets the child of this node. */ final Statements getChild() { swift_while_statement_child(this, result) } /** Gets a field or child node of this node. */ final override AstNode getAFieldOrChild() { - swift_while_statement_bound_identifier(this, _, result) or - swift_while_statement_condition(this, _, result) or - swift_while_statement_name(this, _, result) or - swift_while_statement_child(this, result) + swift_while_statement_condition(this, _, result) or swift_while_statement_child(this, result) } } diff --git a/unified/ql/lib/unified.dbscheme b/unified/ql/lib/unified.dbscheme index 1b883f6730ec..ecd726d46311 100644 --- a/unified/ql/lib/unified.dbscheme +++ b/unified/ql/lib/unified.dbscheme @@ -982,29 +982,11 @@ swift_getter_specifier_def( unique int id: @swift_getter_specifier ); -#keyset[swift_guard_statement, index] -swift_guard_statement_bound_identifier( - int swift_guard_statement: @swift_guard_statement ref, - int index: int ref, - unique int bound_identifier: @swift_token_simple_identifier ref -); - -@swift_guard_statement_condition_type = @swift_additive_expression | @swift_array_literal | @swift_array_type | @swift_as_expression | @swift_assignment | @swift_availability_condition | @swift_await_expression | @swift_bitwise_operation | @swift_call_expression | @swift_check_expression | @swift_comparison_expression | @swift_conjunction_expression | @swift_constructor_expression | @swift_dictionary_literal | @swift_dictionary_type | @swift_directive | @swift_disjunction_expression | @swift_equality_expression | @swift_existential_type | @swift_function_type | @swift_if_statement | @swift_infix_expression | @swift_key_path_expression | @swift_key_path_string_expression | @swift_lambda_literal | @swift_line_string_literal | @swift_macro_invocation | @swift_metatype | @swift_multi_line_string_literal | @swift_multiplicative_expression | @swift_navigation_expression | @swift_nil_coalescing_expression | @swift_opaque_type | @swift_open_end_range_expression | @swift_open_start_range_expression | @swift_optional_chain_marker | @swift_optional_type | @swift_pattern | @swift_playground_literal | @swift_postfix_expression | @swift_prefix_expression | @swift_protocol_composition_type | @swift_range_expression | @swift_raw_string_literal | @swift_referenceable_operator | @swift_reserved_word | @swift_selector_expression | @swift_suppressed_constraint | @swift_switch_statement | @swift_ternary_expression | @swift_token_bin_literal | @swift_token_boolean_literal | @swift_token_diagnostic | @swift_token_fully_open_range | @swift_token_hex_literal | @swift_token_integer_literal | @swift_token_oct_literal | @swift_token_real_literal | @swift_token_regex_literal | @swift_token_self_expression | @swift_token_simple_identifier | @swift_token_special_literal | @swift_token_super_expression | @swift_token_wildcard_pattern | @swift_try_expression | @swift_tuple_expression | @swift_tuple_type | @swift_type_annotation | @swift_type_modifiers | @swift_type_pack_expansion | @swift_type_parameter_pack | @swift_user_type | @swift_value_binding_pattern | @swift_value_pack_expansion | @swift_value_parameter_pack | @swift_where_clause - #keyset[swift_guard_statement, index] swift_guard_statement_condition( int swift_guard_statement: @swift_guard_statement ref, int index: int ref, - unique int condition: @swift_guard_statement_condition_type ref -); - -@swift_guard_statement_name_type = @swift_array_type | @swift_dictionary_type | @swift_existential_type | @swift_function_type | @swift_metatype | @swift_opaque_type | @swift_optional_type | @swift_protocol_composition_type | @swift_suppressed_constraint | @swift_tuple_type | @swift_type_pack_expansion | @swift_type_parameter_pack | @swift_user_type - -#keyset[swift_guard_statement, index] -swift_guard_statement_name( - int swift_guard_statement: @swift_guard_statement ref, - int index: int ref, - unique int name: @swift_guard_statement_name_type ref + unique int condition: @swift_if_condition ref ); @swift_guard_statement_child_type = @swift_statements | @swift_token_else @@ -1031,29 +1013,36 @@ swift_identifier_def( unique int id: @swift_identifier ); -#keyset[swift_if_statement, index] -swift_if_statement_bound_identifier( - int swift_if_statement: @swift_if_statement ref, - int index: int ref, +swift_if_condition_bound_identifier( + unique int swift_if_condition: @swift_if_condition ref, unique int bound_identifier: @swift_token_simple_identifier ref ); -@swift_if_statement_condition_type = @swift_additive_expression | @swift_array_literal | @swift_array_type | @swift_as_expression | @swift_assignment | @swift_availability_condition | @swift_await_expression | @swift_bitwise_operation | @swift_call_expression | @swift_check_expression | @swift_comparison_expression | @swift_conjunction_expression | @swift_constructor_expression | @swift_dictionary_literal | @swift_dictionary_type | @swift_directive | @swift_disjunction_expression | @swift_equality_expression | @swift_existential_type | @swift_function_type | @swift_if_statement | @swift_infix_expression | @swift_key_path_expression | @swift_key_path_string_expression | @swift_lambda_literal | @swift_line_string_literal | @swift_macro_invocation | @swift_metatype | @swift_multi_line_string_literal | @swift_multiplicative_expression | @swift_navigation_expression | @swift_nil_coalescing_expression | @swift_opaque_type | @swift_open_end_range_expression | @swift_open_start_range_expression | @swift_optional_chain_marker | @swift_optional_type | @swift_pattern | @swift_playground_literal | @swift_postfix_expression | @swift_prefix_expression | @swift_protocol_composition_type | @swift_range_expression | @swift_raw_string_literal | @swift_referenceable_operator | @swift_reserved_word | @swift_selector_expression | @swift_suppressed_constraint | @swift_switch_statement | @swift_ternary_expression | @swift_token_bin_literal | @swift_token_boolean_literal | @swift_token_diagnostic | @swift_token_fully_open_range | @swift_token_hex_literal | @swift_token_integer_literal | @swift_token_oct_literal | @swift_token_real_literal | @swift_token_regex_literal | @swift_token_self_expression | @swift_token_simple_identifier | @swift_token_special_literal | @swift_token_super_expression | @swift_token_wildcard_pattern | @swift_try_expression | @swift_tuple_expression | @swift_tuple_type | @swift_type_annotation | @swift_type_modifiers | @swift_type_pack_expansion | @swift_type_parameter_pack | @swift_user_type | @swift_value_binding_pattern | @swift_value_pack_expansion | @swift_value_parameter_pack | @swift_where_clause +@swift_if_condition_name_type = @swift_array_type | @swift_dictionary_type | @swift_existential_type | @swift_function_type | @swift_metatype | @swift_opaque_type | @swift_optional_type | @swift_protocol_composition_type | @swift_suppressed_constraint | @swift_tuple_type | @swift_type_pack_expansion | @swift_type_parameter_pack | @swift_user_type -#keyset[swift_if_statement, index] -swift_if_statement_condition( - int swift_if_statement: @swift_if_statement ref, +swift_if_condition_name( + unique int swift_if_condition: @swift_if_condition ref, + unique int name: @swift_if_condition_name_type ref +); + +@swift_if_condition_child_type = @swift_additive_expression | @swift_array_literal | @swift_as_expression | @swift_assignment | @swift_availability_condition | @swift_await_expression | @swift_bitwise_operation | @swift_call_expression | @swift_check_expression | @swift_comparison_expression | @swift_conjunction_expression | @swift_constructor_expression | @swift_dictionary_literal | @swift_directive | @swift_disjunction_expression | @swift_equality_expression | @swift_if_statement | @swift_infix_expression | @swift_key_path_expression | @swift_key_path_string_expression | @swift_lambda_literal | @swift_line_string_literal | @swift_macro_invocation | @swift_multi_line_string_literal | @swift_multiplicative_expression | @swift_navigation_expression | @swift_nil_coalescing_expression | @swift_open_end_range_expression | @swift_open_start_range_expression | @swift_optional_chain_marker | @swift_pattern | @swift_playground_literal | @swift_postfix_expression | @swift_prefix_expression | @swift_range_expression | @swift_raw_string_literal | @swift_referenceable_operator | @swift_selector_expression | @swift_switch_statement | @swift_ternary_expression | @swift_token_bin_literal | @swift_token_boolean_literal | @swift_token_diagnostic | @swift_token_fully_open_range | @swift_token_hex_literal | @swift_token_integer_literal | @swift_token_oct_literal | @swift_token_real_literal | @swift_token_regex_literal | @swift_token_self_expression | @swift_token_simple_identifier | @swift_token_special_literal | @swift_token_super_expression | @swift_token_wildcard_pattern | @swift_try_expression | @swift_tuple_expression | @swift_type_annotation | @swift_type_modifiers | @swift_user_type | @swift_value_binding_pattern | @swift_value_pack_expansion | @swift_value_parameter_pack | @swift_where_clause + +#keyset[swift_if_condition, index] +swift_if_condition_child( + int swift_if_condition: @swift_if_condition ref, int index: int ref, - unique int condition: @swift_if_statement_condition_type ref + unique int child: @swift_if_condition_child_type ref ); -@swift_if_statement_name_type = @swift_array_type | @swift_dictionary_type | @swift_existential_type | @swift_function_type | @swift_metatype | @swift_opaque_type | @swift_optional_type | @swift_protocol_composition_type | @swift_suppressed_constraint | @swift_tuple_type | @swift_type_pack_expansion | @swift_type_parameter_pack | @swift_user_type +swift_if_condition_def( + unique int id: @swift_if_condition +); #keyset[swift_if_statement, index] -swift_if_statement_name( +swift_if_statement_condition( int swift_if_statement: @swift_if_statement ref, int index: int ref, - unique int name: @swift_if_statement_name_type ref + unique int condition: @swift_if_condition ref ); @swift_if_statement_child_type = @swift_if_statement | @swift_statements | @swift_token_else @@ -1900,29 +1889,11 @@ swift_referenceable_operator_def( unique int id: @swift_referenceable_operator ); -#keyset[swift_repeat_while_statement, index] -swift_repeat_while_statement_bound_identifier( - int swift_repeat_while_statement: @swift_repeat_while_statement ref, - int index: int ref, - unique int bound_identifier: @swift_token_simple_identifier ref -); - -@swift_repeat_while_statement_condition_type = @swift_additive_expression | @swift_array_literal | @swift_array_type | @swift_as_expression | @swift_assignment | @swift_availability_condition | @swift_await_expression | @swift_bitwise_operation | @swift_call_expression | @swift_check_expression | @swift_comparison_expression | @swift_conjunction_expression | @swift_constructor_expression | @swift_dictionary_literal | @swift_dictionary_type | @swift_directive | @swift_disjunction_expression | @swift_equality_expression | @swift_existential_type | @swift_function_type | @swift_if_statement | @swift_infix_expression | @swift_key_path_expression | @swift_key_path_string_expression | @swift_lambda_literal | @swift_line_string_literal | @swift_macro_invocation | @swift_metatype | @swift_multi_line_string_literal | @swift_multiplicative_expression | @swift_navigation_expression | @swift_nil_coalescing_expression | @swift_opaque_type | @swift_open_end_range_expression | @swift_open_start_range_expression | @swift_optional_chain_marker | @swift_optional_type | @swift_pattern | @swift_playground_literal | @swift_postfix_expression | @swift_prefix_expression | @swift_protocol_composition_type | @swift_range_expression | @swift_raw_string_literal | @swift_referenceable_operator | @swift_reserved_word | @swift_selector_expression | @swift_suppressed_constraint | @swift_switch_statement | @swift_ternary_expression | @swift_token_bin_literal | @swift_token_boolean_literal | @swift_token_diagnostic | @swift_token_fully_open_range | @swift_token_hex_literal | @swift_token_integer_literal | @swift_token_oct_literal | @swift_token_real_literal | @swift_token_regex_literal | @swift_token_self_expression | @swift_token_simple_identifier | @swift_token_special_literal | @swift_token_super_expression | @swift_token_wildcard_pattern | @swift_try_expression | @swift_tuple_expression | @swift_tuple_type | @swift_type_annotation | @swift_type_modifiers | @swift_type_pack_expansion | @swift_type_parameter_pack | @swift_user_type | @swift_value_binding_pattern | @swift_value_pack_expansion | @swift_value_parameter_pack | @swift_where_clause - #keyset[swift_repeat_while_statement, index] swift_repeat_while_statement_condition( int swift_repeat_while_statement: @swift_repeat_while_statement ref, int index: int ref, - unique int condition: @swift_repeat_while_statement_condition_type ref -); - -@swift_repeat_while_statement_name_type = @swift_array_type | @swift_dictionary_type | @swift_existential_type | @swift_function_type | @swift_metatype | @swift_opaque_type | @swift_optional_type | @swift_protocol_composition_type | @swift_suppressed_constraint | @swift_tuple_type | @swift_type_pack_expansion | @swift_type_parameter_pack | @swift_user_type - -#keyset[swift_repeat_while_statement, index] -swift_repeat_while_statement_name( - int swift_repeat_while_statement: @swift_repeat_while_statement ref, - int index: int ref, - unique int name: @swift_repeat_while_statement_name_type ref + unique int condition: @swift_if_condition ref ); swift_repeat_while_statement_child( @@ -2416,29 +2387,11 @@ swift_where_clause_def( unique int id: @swift_where_clause ); -#keyset[swift_while_statement, index] -swift_while_statement_bound_identifier( - int swift_while_statement: @swift_while_statement ref, - int index: int ref, - unique int bound_identifier: @swift_token_simple_identifier ref -); - -@swift_while_statement_condition_type = @swift_additive_expression | @swift_array_literal | @swift_array_type | @swift_as_expression | @swift_assignment | @swift_availability_condition | @swift_await_expression | @swift_bitwise_operation | @swift_call_expression | @swift_check_expression | @swift_comparison_expression | @swift_conjunction_expression | @swift_constructor_expression | @swift_dictionary_literal | @swift_dictionary_type | @swift_directive | @swift_disjunction_expression | @swift_equality_expression | @swift_existential_type | @swift_function_type | @swift_if_statement | @swift_infix_expression | @swift_key_path_expression | @swift_key_path_string_expression | @swift_lambda_literal | @swift_line_string_literal | @swift_macro_invocation | @swift_metatype | @swift_multi_line_string_literal | @swift_multiplicative_expression | @swift_navigation_expression | @swift_nil_coalescing_expression | @swift_opaque_type | @swift_open_end_range_expression | @swift_open_start_range_expression | @swift_optional_chain_marker | @swift_optional_type | @swift_pattern | @swift_playground_literal | @swift_postfix_expression | @swift_prefix_expression | @swift_protocol_composition_type | @swift_range_expression | @swift_raw_string_literal | @swift_referenceable_operator | @swift_reserved_word | @swift_selector_expression | @swift_suppressed_constraint | @swift_switch_statement | @swift_ternary_expression | @swift_token_bin_literal | @swift_token_boolean_literal | @swift_token_diagnostic | @swift_token_fully_open_range | @swift_token_hex_literal | @swift_token_integer_literal | @swift_token_oct_literal | @swift_token_real_literal | @swift_token_regex_literal | @swift_token_self_expression | @swift_token_simple_identifier | @swift_token_special_literal | @swift_token_super_expression | @swift_token_wildcard_pattern | @swift_try_expression | @swift_tuple_expression | @swift_tuple_type | @swift_type_annotation | @swift_type_modifiers | @swift_type_pack_expansion | @swift_type_parameter_pack | @swift_user_type | @swift_value_binding_pattern | @swift_value_pack_expansion | @swift_value_parameter_pack | @swift_where_clause - #keyset[swift_while_statement, index] swift_while_statement_condition( int swift_while_statement: @swift_while_statement ref, int index: int ref, - unique int condition: @swift_while_statement_condition_type ref -); - -@swift_while_statement_name_type = @swift_array_type | @swift_dictionary_type | @swift_existential_type | @swift_function_type | @swift_metatype | @swift_opaque_type | @swift_optional_type | @swift_protocol_composition_type | @swift_suppressed_constraint | @swift_tuple_type | @swift_type_pack_expansion | @swift_type_parameter_pack | @swift_user_type - -#keyset[swift_while_statement, index] -swift_while_statement_name( - int swift_while_statement: @swift_while_statement ref, - int index: int ref, - unique int name: @swift_while_statement_name_type ref + unique int condition: @swift_if_condition ref ); swift_while_statement_child( @@ -2533,7 +2486,7 @@ case @swift_token.kind of ; -@swift_ast_node = @swift_additive_expression | @swift_array_literal | @swift_array_type | @swift_as_expression | @swift_assignment | @swift_associatedtype_declaration | @swift_attribute | @swift_availability_condition | @swift_await_expression | @swift_bitwise_operation | @swift_call_expression | @swift_call_suffix | @swift_capture_list | @swift_capture_list_item | @swift_catch_block | @swift_check_expression | @swift_class_body | @swift_class_declaration | @swift_comparison_expression | @swift_computed_getter | @swift_computed_modify | @swift_computed_property | @swift_computed_setter | @swift_conjunction_expression | @swift_constructor_expression | @swift_constructor_suffix | @swift_control_transfer_statement | @swift_deinit_declaration | @swift_deprecated_operator_declaration_body | @swift_dictionary_literal | @swift_dictionary_type | @swift_didset_clause | @swift_directive | @swift_directly_assignable_expression | @swift_disjunction_expression | @swift_do_statement | @swift_enum_class_body | @swift_enum_entry | @swift_enum_type_parameters | @swift_equality_constraint | @swift_equality_expression | @swift_existential_type | @swift_external_macro_definition | @swift_for_statement | @swift_function_body | @swift_function_declaration | @swift_function_type | @swift_getter_specifier | @swift_guard_statement | @swift_identifier | @swift_if_statement | @swift_import_declaration | @swift_infix_expression | @swift_inheritance_constraint | @swift_inheritance_specifier | @swift_init_declaration | @swift_interpolated_expression | @swift_key_path_expression | @swift_key_path_string_expression | @swift_lambda_function_type | @swift_lambda_function_type_parameters | @swift_lambda_literal | @swift_lambda_parameter | @swift_line_string_literal | @swift_macro_declaration | @swift_macro_definition | @swift_macro_invocation | @swift_metatype | @swift_modifiers | @swift_modify_specifier | @swift_multi_line_string_literal | @swift_multiplicative_expression | @swift_navigation_expression | @swift_navigation_suffix | @swift_nil_coalescing_expression | @swift_opaque_type | @swift_open_end_range_expression | @swift_open_start_range_expression | @swift_operator_declaration | @swift_optional_chain_marker | @swift_optional_type | @swift_parameter | @swift_parameter_modifiers | @swift_pattern | @swift_playground_literal | @swift_postfix_expression | @swift_precedence_group_attribute | @swift_precedence_group_attributes | @swift_precedence_group_declaration | @swift_prefix_expression | @swift_property_declaration | @swift_protocol_body | @swift_protocol_composition_type | @swift_protocol_declaration | @swift_protocol_function_declaration | @swift_protocol_property_declaration | @swift_protocol_property_requirements | @swift_range_expression | @swift_raw_str_interpolation | @swift_raw_string_literal | @swift_referenceable_operator | @swift_repeat_while_statement | @swift_selector_expression | @swift_setter_specifier | @swift_source_file | @swift_statements | @swift_subscript_declaration | @swift_suppressed_constraint | @swift_switch_entry | @swift_switch_pattern | @swift_switch_statement | @swift_ternary_expression | @swift_throws_clause | @swift_token | @swift_try_expression | @swift_tuple_expression | @swift_tuple_type | @swift_tuple_type_item | @swift_type_annotation | @swift_type_arguments | @swift_type_constraint | @swift_type_constraints | @swift_type_modifiers | @swift_type_pack_expansion | @swift_type_parameter | @swift_type_parameter_modifiers | @swift_type_parameter_pack | @swift_type_parameters | @swift_typealias_declaration | @swift_user_type | @swift_value_argument | @swift_value_argument_label | @swift_value_arguments | @swift_value_binding_pattern | @swift_value_pack_expansion | @swift_value_parameter_pack | @swift_where_clause | @swift_while_statement | @swift_willset_clause | @swift_willset_didset_block +@swift_ast_node = @swift_additive_expression | @swift_array_literal | @swift_array_type | @swift_as_expression | @swift_assignment | @swift_associatedtype_declaration | @swift_attribute | @swift_availability_condition | @swift_await_expression | @swift_bitwise_operation | @swift_call_expression | @swift_call_suffix | @swift_capture_list | @swift_capture_list_item | @swift_catch_block | @swift_check_expression | @swift_class_body | @swift_class_declaration | @swift_comparison_expression | @swift_computed_getter | @swift_computed_modify | @swift_computed_property | @swift_computed_setter | @swift_conjunction_expression | @swift_constructor_expression | @swift_constructor_suffix | @swift_control_transfer_statement | @swift_deinit_declaration | @swift_deprecated_operator_declaration_body | @swift_dictionary_literal | @swift_dictionary_type | @swift_didset_clause | @swift_directive | @swift_directly_assignable_expression | @swift_disjunction_expression | @swift_do_statement | @swift_enum_class_body | @swift_enum_entry | @swift_enum_type_parameters | @swift_equality_constraint | @swift_equality_expression | @swift_existential_type | @swift_external_macro_definition | @swift_for_statement | @swift_function_body | @swift_function_declaration | @swift_function_type | @swift_getter_specifier | @swift_guard_statement | @swift_identifier | @swift_if_condition | @swift_if_statement | @swift_import_declaration | @swift_infix_expression | @swift_inheritance_constraint | @swift_inheritance_specifier | @swift_init_declaration | @swift_interpolated_expression | @swift_key_path_expression | @swift_key_path_string_expression | @swift_lambda_function_type | @swift_lambda_function_type_parameters | @swift_lambda_literal | @swift_lambda_parameter | @swift_line_string_literal | @swift_macro_declaration | @swift_macro_definition | @swift_macro_invocation | @swift_metatype | @swift_modifiers | @swift_modify_specifier | @swift_multi_line_string_literal | @swift_multiplicative_expression | @swift_navigation_expression | @swift_navigation_suffix | @swift_nil_coalescing_expression | @swift_opaque_type | @swift_open_end_range_expression | @swift_open_start_range_expression | @swift_operator_declaration | @swift_optional_chain_marker | @swift_optional_type | @swift_parameter | @swift_parameter_modifiers | @swift_pattern | @swift_playground_literal | @swift_postfix_expression | @swift_precedence_group_attribute | @swift_precedence_group_attributes | @swift_precedence_group_declaration | @swift_prefix_expression | @swift_property_declaration | @swift_protocol_body | @swift_protocol_composition_type | @swift_protocol_declaration | @swift_protocol_function_declaration | @swift_protocol_property_declaration | @swift_protocol_property_requirements | @swift_range_expression | @swift_raw_str_interpolation | @swift_raw_string_literal | @swift_referenceable_operator | @swift_repeat_while_statement | @swift_selector_expression | @swift_setter_specifier | @swift_source_file | @swift_statements | @swift_subscript_declaration | @swift_suppressed_constraint | @swift_switch_entry | @swift_switch_pattern | @swift_switch_statement | @swift_ternary_expression | @swift_throws_clause | @swift_token | @swift_try_expression | @swift_tuple_expression | @swift_tuple_type | @swift_tuple_type_item | @swift_type_annotation | @swift_type_arguments | @swift_type_constraint | @swift_type_constraints | @swift_type_modifiers | @swift_type_pack_expansion | @swift_type_parameter | @swift_type_parameter_modifiers | @swift_type_parameter_pack | @swift_type_parameters | @swift_typealias_declaration | @swift_user_type | @swift_value_argument | @swift_value_argument_label | @swift_value_arguments | @swift_value_binding_pattern | @swift_value_pack_expansion | @swift_value_parameter_pack | @swift_where_clause | @swift_while_statement | @swift_willset_clause | @swift_willset_didset_block swift_ast_node_location( unique int node: @swift_ast_node ref, From 38473f9e0b972df283838a2b1dc926027eeec666 Mon Sep 17 00:00:00 2001 From: Taus Date: Fri, 8 May 2026 15:17:49 +0000 Subject: [PATCH 243/260] unified: make `expression` named and a supertype Supertypes are a honking great idea. We should use more of them. This massively cleans up the node types, without polluting the AST with `expression` nodes. --- .../extractor/tree-sitter-swift/grammar.js | 137 ++++++------ .../tree-sitter-swift/node-types.yml | 198 +++++++++++------- 2 files changed, 197 insertions(+), 138 deletions(-) diff --git a/unified/extractor/tree-sitter-swift/grammar.js b/unified/extractor/tree-sitter-swift/grammar.js index 4442ae585a24..7fa16335ade6 100644 --- a/unified/extractor/tree-sitter-swift/grammar.js +++ b/unified/extractor/tree-sitter-swift/grammar.js @@ -84,18 +84,19 @@ if (tree_sitter_version_supports_emoji()) { module.exports = grammar({ name: "swift", + supertypes: ($) => [$.expression], conflicts: ($) => [ // @Type(... could either be an annotation constructor invocation or an annotated expression [$.attribute], [$._attribute_argument], // Is `foo { ... }` a constructor invocation or function invocation? - [$._simple_user_type, $._expression], + [$._simple_user_type, $.expression], // To support nested types A.B not being interpreted as `(navigation_expression ... (type_identifier)) (navigation_suffix)` [$.user_type], // How to tell the difference between Foo.bar(with:and:), and Foo.bar(with: smth, and: other)? You need GLR [$.value_argument], // { (foo, bar) ... - [$._expression, $.lambda_parameter], + [$.expression, $.lambda_parameter], [$._primary_expression, $.lambda_parameter], // (start: start, end: end) [$._tuple_type_item_identifier, $.tuple_expression], @@ -107,8 +108,8 @@ module.exports = grammar({ [$._additive_operator, $._prefix_unary_operator], [$.referenceable_operator, $._prefix_unary_operator], // `{ [self, b, c] ...` could be a capture list or an array literal depending on what else happens. - [$.capture_list_item, $._expression], - [$.capture_list_item, $._expression, $._simple_user_type], + [$.capture_list_item, $.expression], + [$.capture_list_item, $.expression, $._simple_user_type], [$._primary_expression, $.capture_list_item], // a ? b : c () could be calling c(), or it could be calling a function that's produced by the result of // `(a ? b : c)`. We have a small hack to force it to be the former of these by intentionally introducing a @@ -119,10 +120,10 @@ module.exports = grammar({ // `if try foo { } ...` should award its braces to the `if`. In order to make this actually happen, we need to parse // all the options and pick the best one that doesn't error out. [$.try_expression, $._unary_expression], - [$.try_expression, $._expression], + [$.try_expression, $.expression], // await {expression} has the same special cases as `try`. [$.await_expression, $._unary_expression], - [$.await_expression, $._expression], + [$.await_expression, $.expression], // In a computed property, when you see an @attribute, it's not yet clear if that's going to be for a // locally-declared class or a getter / setter specifier. [ @@ -507,7 +508,7 @@ module.exports = grammar({ //////////////////////////////// // Expressions - https://docs.swift.org/swift-book/ReferenceManual/Expressions.html //////////////////////////////// - _expression: ($) => + expression: ($) => prec( PRECS.expr, choice( @@ -525,7 +526,7 @@ module.exports = grammar({ ) ), optional_chain_marker: ($) => - seq($._expression, alias($._immediate_quest, "?")), + seq($.expression, alias($._immediate_quest, "?")), // Unary expressions _unary_expression: ($) => choice( @@ -546,7 +547,7 @@ module.exports = grammar({ prec.left( PRECS.postfix_operations, seq( - field("target", $._expression), + field("target", $.expression), field("operation", $._postfix_unary_operator) ) ), @@ -578,7 +579,7 @@ module.exports = grammar({ "target", choice( $._navigable_type_expression, - $._expression, + $.expression, $._parenthesized_type ) ), @@ -592,7 +593,7 @@ module.exports = grammar({ PRECS.range, seq( $._range_operator, - prec.right(PRECS.range_suffix, field("end", $._expression)) + prec.right(PRECS.range_suffix, field("end", $.expression)) ) ), _range_operator: ($) => @@ -600,7 +601,7 @@ module.exports = grammar({ open_end_range_expression: ($) => prec.right( PRECS.range, - seq(field("start", $._expression), $._three_dot_operator) + seq(field("start", $.expression), $._three_dot_operator) ), prefix_expression: ($) => prec.left( @@ -610,8 +611,8 @@ module.exports = grammar({ field( "target", choice( - $._expression, - alias(choice("async", "if", "switch"), $._expression) + $.expression, + alias(choice("async", "if", "switch"), $.expression) ) ) ) @@ -619,7 +620,7 @@ module.exports = grammar({ as_expression: ($) => prec.left( PRECS.as, - seq(field("expr", $._expression), $.as_operator, field("type", $._type)) + seq(field("expr", $.expression), $.as_operator, field("type", $._type)) ), selector_expression: ($) => seq( @@ -627,7 +628,7 @@ module.exports = grammar({ "selector", "(", optional(choice("getter:", "setter:")), - $._expression, + $.expression, ")" ), // Binary expressions @@ -649,25 +650,25 @@ module.exports = grammar({ prec.left( PRECS.multiplication, seq( - field("lhs", $._expression), + field("lhs", $.expression), field("op", $._multiplicative_operator), - field("rhs", $._expression) + field("rhs", $.expression) ) ), additive_expression: ($) => prec.left( PRECS.addition, seq( - field("lhs", $._expression), + field("lhs", $.expression), field("op", $._additive_operator), - field("rhs", $._expression) + field("rhs", $.expression) ) ), range_expression: ($) => prec.right( PRECS.range, seq( - field("start", $._expression), + field("start", $.expression), field("op", $._range_operator), field("end", $._expr_hack_at_ternary_binary_suffix) ) @@ -676,7 +677,7 @@ module.exports = grammar({ prec.left( PRECS.infix_operations, seq( - field("lhs", $._expression), + field("lhs", $.expression), field("op", $.custom_operator), field("rhs", $._expr_hack_at_ternary_binary_suffix) ) @@ -685,7 +686,7 @@ module.exports = grammar({ prec.right( PRECS.nil_coalescing, seq( - field("value", $._expression), + field("value", $.expression), $._nil_coalescing_operator, field("if_nil", $._expr_hack_at_ternary_binary_suffix) ) @@ -694,7 +695,7 @@ module.exports = grammar({ prec.left( PRECS.check, seq( - field("target", $._expression), + field("target", $.expression), field("op", $._is_operator), field("type", $._type) ) @@ -702,7 +703,7 @@ module.exports = grammar({ comparison_expression: ($) => prec.left( seq( - field("lhs", $._expression), + field("lhs", $.expression), field("op", $._comparison_operator), field("rhs", $._expr_hack_at_ternary_binary_suffix) ) @@ -711,7 +712,7 @@ module.exports = grammar({ prec.left( PRECS.equality, seq( - field("lhs", $._expression), + field("lhs", $.expression), field("op", $._equality_operator), field("rhs", $._expr_hack_at_ternary_binary_suffix) ) @@ -720,7 +721,7 @@ module.exports = grammar({ prec.left( PRECS.conjunction, seq( - field("lhs", $._expression), + field("lhs", $.expression), field("op", $._conjunction_operator), field("rhs", $._expr_hack_at_ternary_binary_suffix) ) @@ -729,7 +730,7 @@ module.exports = grammar({ prec.left( PRECS.disjunction, seq( - field("lhs", $._expression), + field("lhs", $.expression), field("op", $._disjunction_operator), field("rhs", $._expr_hack_at_ternary_binary_suffix) ) @@ -737,7 +738,7 @@ module.exports = grammar({ bitwise_operation: ($) => prec.left( seq( - field("lhs", $._expression), + field("lhs", $.expression), field("op", $._bitwise_binary_operator), field("rhs", $._expr_hack_at_ternary_binary_suffix) ) @@ -802,7 +803,7 @@ module.exports = grammar({ ), seq( optional(seq(field("name", $.value_argument_label), ":")), - field("value", $._expression) + field("value", $.expression) ) ) ) @@ -818,7 +819,7 @@ module.exports = grammar({ // Prefer direct calls, e.g. `try foo()`, over indirect like `try a ? b() : c`. This allows us to have // left associativity for the direct calls, which is technically wrong but is the only way to resolve the // ambiguity of `if foo { ... }` in the correct direction. - prec.right(-2, $._expression), + prec.right(-2, $.expression), prec.left(0, $._binary_expression), prec.left(0, $.call_expression), // Similarly special case the ternary expression, where `try` may come earlier than it is actually needed. @@ -840,7 +841,7 @@ module.exports = grammar({ "expr", choice( // Prefer direct calls over indirect (same as with `try`). - prec.right(-2, $._expression), + prec.right(-2, $.expression), prec.left(0, $.call_expression), // Special case ternary to `await` the whole thing (same as with `try`). prec.dynamic(1, prec.left(-1, $.ternary_expression)) @@ -853,9 +854,9 @@ module.exports = grammar({ prec.right( PRECS.ternary, seq( - field("condition", $._expression), + field("condition", $.expression), $._quest, - field("if_true", $._expression), + field("if_true", $.expression), ":", field("if_false", $._expr_hack_at_ternary_binary_suffix) ) @@ -864,13 +865,13 @@ module.exports = grammar({ prec.left( PRECS.ternary_binary_suffix, choice( - $._expression, + $.expression, alias($.expr_hack_at_ternary_binary_call, $.call_expression) ) ), expr_hack_at_ternary_binary_call: ($) => seq( - $._expression, + $.expression, alias($.expr_hack_at_ternary_binary_call_suffix, $.call_suffix) ), expr_hack_at_ternary_binary_call_suffix: ($) => @@ -878,7 +879,7 @@ module.exports = grammar({ call_expression: ($) => prec( PRECS.call, - prec.dynamic(DYNAMIC_PRECS.call, seq($._expression, $.call_suffix)) + prec.dynamic(DYNAMIC_PRECS.call, seq($.expression, $.call_suffix)) ), macro_invocation: ($) => prec( @@ -922,7 +923,7 @@ module.exports = grammar({ sep1Opt( seq( optional(seq(field("name", $.simple_identifier), ":")), - field("value", $._expression) + field("value", $.expression) ), "," ), @@ -930,7 +931,7 @@ module.exports = grammar({ ) ), array_literal: ($) => - seq("[", optional(sep1Opt(field("element", $._expression), ",")), "]"), + seq("[", optional(sep1Opt(field("element", $.expression), ",")), "]"), dictionary_literal: ($) => seq( "[", @@ -939,7 +940,7 @@ module.exports = grammar({ "]" ), _dictionary_literal_item: ($) => - seq(field("key", $._expression), ":", field("value", $._expression)), + seq(field("key", $.expression), ":", field("value", $.expression)), special_literal: ($) => seq( $._hash_symbol, @@ -958,7 +959,7 @@ module.exports = grammar({ $._hash_symbol, choice("colorLiteral", "fileLiteral", "imageLiteral"), "(", - sep1Opt(seq($.simple_identifier, ":", $._expression), ","), + sep1Opt(seq($.simple_identifier, ":", $.expression), ","), ")" ), lambda_literal: ($) => @@ -987,7 +988,7 @@ module.exports = grammar({ seq( optional($.ownership_modifier), field("name", $.simple_identifier), - optional(seq($._equal_sign, field("value", $._expression))) + optional(seq($._equal_sign, field("value", $.expression))) ) ) ), @@ -1041,11 +1042,11 @@ module.exports = grammar({ ) ), if_condition: ($) => - choice($._if_let_binding, $._expression, $.availability_condition), + choice($._if_let_binding, $.expression, $.availability_condition), _if_let_binding: ($) => seq( $._direct_or_indirect_binding, - optional(seq($._equal_sign, $._expression)), + optional(seq($._equal_sign, $.expression)), optional($.where_clause) ), guard_statement: ($) => @@ -1063,7 +1064,7 @@ module.exports = grammar({ PRECS["switch"], seq( "switch", - field("expr", $._expression), + field("expr", $.expression), "{", repeat($.switch_entry), "}" @@ -1077,7 +1078,7 @@ module.exports = grammar({ "case", seq( $.switch_pattern, - optional(seq($.where_keyword, $._expression)) + optional(seq($.where_keyword, $.expression)) ), repeat(seq(",", $.switch_pattern)) ), @@ -1097,7 +1098,7 @@ module.exports = grammar({ optional($.where_clause), $._block ), - where_clause: ($) => prec.left(seq($.where_keyword, $._expression)), + where_clause: ($) => prec.left(seq($.where_keyword, $.expression)), key_path_expression: ($) => prec.right( PRECS.keypath, @@ -1110,7 +1111,7 @@ module.exports = grammar({ ) ), key_path_string_expression: ($) => - prec.left(seq($._hash_symbol, "keyPath", "(", $._expression, ")")), + prec.left(seq($._hash_symbol, "keyPath", "(", $.expression, ")")), _key_path_component: ($) => prec.left( choice( @@ -1166,7 +1167,7 @@ module.exports = grammar({ ), _bitwise_binary_operator: ($) => choice("&", "|", "^", "<<", ">>"), _postfix_unary_operator: ($) => choice("++", "--", $.bang), - directly_assignable_expression: ($) => $._expression, + directly_assignable_expression: ($) => $.expression, //////////////////////////////// // Statements - https://docs.swift.org/swift-book/ReferenceManual/Statements.html @@ -1182,14 +1183,14 @@ module.exports = grammar({ ), _local_statement: ($) => choice( - $._expression, + $.expression, $._local_declaration, $._labeled_statement, $.control_transfer_statement ), _top_level_statement: ($) => choice( - $._expression, + $.expression, $._global_declaration, $._labeled_statement, $._throw_statement @@ -1229,8 +1230,8 @@ module.exports = grammar({ // the opposite, though, since function calls may contain trailing code blocks, which are undesirable here. // // To fix that, we simply undo the special casing by defining our own `await_expression`. - choice($._expression, alias($.for_statement_await, $.await_expression)), - for_statement_await: ($) => seq($._await_operator, $._expression), + choice($.expression, alias($.for_statement_await, $.await_expression)), + for_statement_await: ($) => seq($._await_operator, $.expression), while_statement: ($) => prec( @@ -1264,11 +1265,11 @@ module.exports = grammar({ PRECS.control_transfer, seq( $._optionally_valueful_control_keyword, - field("result", optional($._expression)) + field("result", optional($.expression)) ) ) ), - _throw_statement: ($) => seq($.throw_keyword, $._expression), + _throw_statement: ($) => seq($.throw_keyword, $.expression), throw_keyword: ($) => "throw", _optionally_valueful_control_keyword: ($) => choice("return", "continue", "break", "yield"), @@ -1278,13 +1279,13 @@ module.exports = grammar({ seq( field("target", $.directly_assignable_expression), field("operator", $._assignment_and_operator), - field("result", $._expression) + field("result", $.expression) ) ), value_parameter_pack: ($) => - prec.left(PRECS.parameter_pack, seq("each", $._expression)), + prec.left(PRECS.parameter_pack, seq("each", $.expression)), value_pack_expansion: ($) => - prec.left(PRECS.parameter_pack, seq("repeat", $._expression)), + prec.left(PRECS.parameter_pack, seq("repeat", $.expression)), availability_condition: ($) => seq( $._hash_symbol, @@ -1414,12 +1415,12 @@ module.exports = grammar({ 1, seq( $._equal_sign, - field("value", $._expression), + field("value", $.expression), $.willset_didset_block ) ), _expression_without_willset_didset: ($) => - seq($._equal_sign, field("value", $._expression)), + seq($._equal_sign, field("value", $.expression)), willset_didset_block: ($) => choice( seq("{", $.willset_clause, optional($.didset_clause), "}"), @@ -1502,7 +1503,7 @@ module.exports = grammar({ macro_definition: ($) => seq( $._equal_sign, - field("body", choice($._expression, $.external_macro_definition)) + field("body", choice($.expression, $.external_macro_definition)) ), external_macro_definition: ($) => @@ -1611,7 +1612,7 @@ module.exports = grammar({ seq( optional($.attribute), $.parameter, - optional(seq($._equal_sign, field("default_value", $._expression))) + optional(seq($._equal_sign, field("default_value", $.expression))) ), parameter: ($) => seq( @@ -1686,7 +1687,7 @@ module.exports = grammar({ _enum_entry_suffix: ($) => choice( field("data_contents", $.enum_type_parameters), - seq($._equal_sign, field("raw_value", $._expression)) + seq($._equal_sign, field("raw_value", $.expression)) ), enum_type_parameters: ($) => seq( @@ -1698,7 +1699,7 @@ module.exports = grammar({ seq(optional($.wildcard_pattern), $.simple_identifier, ":") ), $._type, - optional(seq($._equal_sign, $._expression)) + optional(seq($._equal_sign, $.expression)) ), "," ) @@ -1849,9 +1850,9 @@ module.exports = grammar({ _attribute_argument: ($) => choice( // labeled function parameters, used in custom property wrappers - seq($.simple_identifier, ":", $._expression), + seq($.simple_identifier, ":", $.expression), // Unlabeled function parameters, simple identifiers, or `*` - $._expression, + $.expression, // References to param names (used in `@objc(foo:bar:)`) repeat1(seq($.simple_identifier, ":")), // Version restrictions (iOS 3.4.5, Swift 5.0.0) @@ -1888,13 +1889,13 @@ module.exports = grammar({ choice( $._universally_allowed_pattern, $._binding_pattern, - $._expression + $.expression ), optional($._quest) ), _non_binding_pattern_with_expr: ($) => seq( - choice($._universally_allowed_pattern, $._expression), + choice($._universally_allowed_pattern, $.expression), optional($._quest) ), _direct_or_indirect_binding: ($) => diff --git a/unified/extractor/tree-sitter-swift/node-types.yml b/unified/extractor/tree-sitter-swift/node-types.yml index 8638a9368d94..fcbb1a0e574a 100644 --- a/unified/extractor/tree-sitter-swift/node-types.yml +++ b/unified/extractor/tree-sitter-swift/node-types.yml @@ -1,23 +1,81 @@ +supertypes: + expression: + - additive_expression + - array_literal + - as_expression + - assignment + - await_expression + - bin_literal + - bitwise_operation + - boolean_literal + - call_expression + - check_expression + - comparison_expression + - conjunction_expression + - constructor_expression + - diagnostic + - dictionary_literal + - directive + - disjunction_expression + - equality_expression + - fully_open_range + - hex_literal + - if_statement + - infix_expression + - integer_literal + - key_path_expression + - key_path_string_expression + - lambda_literal + - line_string_literal + - macro_invocation + - multi_line_string_literal + - multiplicative_expression + - navigation_expression + - "nil" + - nil_coalescing_expression + - oct_literal + - open_end_range_expression + - open_start_range_expression + - optional_chain_marker + - playground_literal + - postfix_expression + - prefix_expression + - range_expression + - raw_string_literal + - real_literal + - referenceable_operator + - regex_literal + - selector_expression + - self_expression + - simple_identifier + - special_literal + - super_expression + - switch_statement + - ternary_expression + - try_expression + - tuple_expression + - value_pack_expansion + - value_parameter_pack + named: - _expression: additive_expression: - lhs: [additive_expression, array_literal, as_expression, assignment, await_expression, bin_literal, bitwise_operation, boolean_literal, call_expression, check_expression, comparison_expression, conjunction_expression, constructor_expression, diagnostic, dictionary_literal, directive, disjunction_expression, equality_expression, fully_open_range, hex_literal, if_statement, infix_expression, integer_literal, key_path_expression, key_path_string_expression, lambda_literal, line_string_literal, macro_invocation, multi_line_string_literal, multiplicative_expression, navigation_expression, "nil", nil_coalescing_expression, oct_literal, open_end_range_expression, open_start_range_expression, optional_chain_marker, playground_literal, postfix_expression, prefix_expression, range_expression, raw_string_literal, real_literal, referenceable_operator, regex_literal, selector_expression, self_expression, simple_identifier, special_literal, super_expression, switch_statement, ternary_expression, try_expression, tuple_expression, value_pack_expansion, value_parameter_pack] + lhs: expression op: ["+", "-"] - rhs: [additive_expression, array_literal, as_expression, assignment, await_expression, bin_literal, bitwise_operation, boolean_literal, call_expression, check_expression, comparison_expression, conjunction_expression, constructor_expression, diagnostic, dictionary_literal, directive, disjunction_expression, equality_expression, fully_open_range, hex_literal, if_statement, infix_expression, integer_literal, key_path_expression, key_path_string_expression, lambda_literal, line_string_literal, macro_invocation, multi_line_string_literal, multiplicative_expression, navigation_expression, "nil", nil_coalescing_expression, oct_literal, open_end_range_expression, open_start_range_expression, optional_chain_marker, playground_literal, postfix_expression, prefix_expression, range_expression, raw_string_literal, real_literal, referenceable_operator, regex_literal, selector_expression, self_expression, simple_identifier, special_literal, super_expression, switch_statement, ternary_expression, try_expression, tuple_expression, value_pack_expansion, value_parameter_pack] + rhs: expression array_literal: - element*: [additive_expression, array_literal, as_expression, assignment, await_expression, bin_literal, bitwise_operation, boolean_literal, call_expression, check_expression, comparison_expression, conjunction_expression, constructor_expression, diagnostic, dictionary_literal, directive, disjunction_expression, equality_expression, fully_open_range, hex_literal, if_statement, infix_expression, integer_literal, key_path_expression, key_path_string_expression, lambda_literal, line_string_literal, macro_invocation, multi_line_string_literal, multiplicative_expression, navigation_expression, "nil", nil_coalescing_expression, oct_literal, open_end_range_expression, open_start_range_expression, optional_chain_marker, playground_literal, postfix_expression, prefix_expression, range_expression, raw_string_literal, real_literal, referenceable_operator, regex_literal, selector_expression, self_expression, simple_identifier, special_literal, super_expression, switch_statement, ternary_expression, try_expression, tuple_expression, value_pack_expansion, value_parameter_pack] + element*: expression array_type: element+: [array_type, dictionary_type, existential_type, function_type, metatype, opaque_type, optional_type, protocol_composition_type, suppressed_constraint, tuple_type, type_modifiers, type_pack_expansion, type_parameter_pack, user_type] name: [array_type, dictionary_type, existential_type, function_type, metatype, opaque_type, optional_type, protocol_composition_type, suppressed_constraint, tuple_type, type_pack_expansion, type_parameter_pack, user_type] as_expression: $children: as_operator - expr: [additive_expression, array_literal, as_expression, assignment, await_expression, bin_literal, bitwise_operation, boolean_literal, call_expression, check_expression, comparison_expression, conjunction_expression, constructor_expression, diagnostic, dictionary_literal, directive, disjunction_expression, equality_expression, fully_open_range, hex_literal, if_statement, infix_expression, integer_literal, key_path_expression, key_path_string_expression, lambda_literal, line_string_literal, macro_invocation, multi_line_string_literal, multiplicative_expression, navigation_expression, "nil", nil_coalescing_expression, oct_literal, open_end_range_expression, open_start_range_expression, optional_chain_marker, playground_literal, postfix_expression, prefix_expression, range_expression, raw_string_literal, real_literal, referenceable_operator, regex_literal, selector_expression, self_expression, simple_identifier, special_literal, super_expression, switch_statement, ternary_expression, try_expression, tuple_expression, value_pack_expansion, value_parameter_pack] + expr: expression name: [array_type, dictionary_type, existential_type, function_type, metatype, opaque_type, optional_type, protocol_composition_type, suppressed_constraint, tuple_type, type_pack_expansion, type_parameter_pack, user_type] type+: [array_type, dictionary_type, existential_type, function_type, metatype, opaque_type, optional_type, protocol_composition_type, suppressed_constraint, tuple_type, type_modifiers, type_pack_expansion, type_parameter_pack, user_type] as_operator: assignment: operator: ["%=", "*=", "+=", "-=", "/=", "="] - result: [additive_expression, array_literal, as_expression, assignment, await_expression, bin_literal, bitwise_operation, boolean_literal, call_expression, check_expression, comparison_expression, conjunction_expression, constructor_expression, diagnostic, dictionary_literal, directive, disjunction_expression, equality_expression, fully_open_range, hex_literal, if_statement, infix_expression, integer_literal, key_path_expression, key_path_string_expression, lambda_literal, line_string_literal, macro_invocation, multi_line_string_literal, multiplicative_expression, navigation_expression, "nil", nil_coalescing_expression, oct_literal, open_end_range_expression, open_start_range_expression, optional_chain_marker, playground_literal, postfix_expression, prefix_expression, range_expression, raw_string_literal, real_literal, referenceable_operator, regex_literal, selector_expression, self_expression, simple_identifier, special_literal, super_expression, switch_statement, ternary_expression, try_expression, tuple_expression, value_pack_expansion, value_parameter_pack] + result: expression target: directly_assignable_expression associatedtype_declaration: $children*: [modifiers, type_constraints] @@ -25,21 +83,21 @@ named: must_inherit*: [array_type, dictionary_type, existential_type, function_type, metatype, opaque_type, optional_type, protocol_composition_type, suppressed_constraint, tuple_type, type_modifiers, type_pack_expansion, type_parameter_pack, user_type] name+: [array_type, dictionary_type, existential_type, function_type, metatype, opaque_type, optional_type, protocol_composition_type, suppressed_constraint, tuple_type, type_identifier, type_pack_expansion, type_parameter_pack, user_type] attribute: - $children+: [additive_expression, array_literal, as_expression, assignment, await_expression, bin_literal, bitwise_operation, boolean_literal, call_expression, check_expression, comparison_expression, conjunction_expression, constructor_expression, diagnostic, dictionary_literal, directive, disjunction_expression, equality_expression, fully_open_range, hex_literal, if_statement, infix_expression, integer_literal, key_path_expression, key_path_string_expression, lambda_literal, line_string_literal, macro_invocation, multi_line_string_literal, multiplicative_expression, navigation_expression, nil_coalescing_expression, oct_literal, open_end_range_expression, open_start_range_expression, optional_chain_marker, playground_literal, postfix_expression, prefix_expression, range_expression, raw_string_literal, real_literal, referenceable_operator, regex_literal, selector_expression, self_expression, simple_identifier, special_literal, super_expression, switch_statement, ternary_expression, try_expression, tuple_expression, user_type, value_pack_expansion, value_parameter_pack] + $children+: [expression, user_type] availability_condition: $children*: [identifier, integer_literal] await_expression: - $children?: [additive_expression, array_literal, as_expression, assignment, await_expression, bin_literal, bitwise_operation, boolean_literal, call_expression, check_expression, comparison_expression, conjunction_expression, constructor_expression, diagnostic, dictionary_literal, directive, disjunction_expression, equality_expression, fully_open_range, hex_literal, if_statement, infix_expression, integer_literal, key_path_expression, key_path_string_expression, lambda_literal, line_string_literal, macro_invocation, multi_line_string_literal, multiplicative_expression, navigation_expression, nil_coalescing_expression, oct_literal, open_end_range_expression, open_start_range_expression, optional_chain_marker, playground_literal, postfix_expression, prefix_expression, range_expression, raw_string_literal, real_literal, referenceable_operator, regex_literal, selector_expression, self_expression, simple_identifier, special_literal, super_expression, switch_statement, ternary_expression, try_expression, tuple_expression, value_pack_expansion, value_parameter_pack] - expr?: [additive_expression, array_literal, as_expression, assignment, await_expression, bin_literal, bitwise_operation, boolean_literal, call_expression, check_expression, comparison_expression, conjunction_expression, constructor_expression, diagnostic, dictionary_literal, directive, disjunction_expression, equality_expression, fully_open_range, hex_literal, if_statement, infix_expression, integer_literal, key_path_expression, key_path_string_expression, lambda_literal, line_string_literal, macro_invocation, multi_line_string_literal, multiplicative_expression, navigation_expression, "nil", nil_coalescing_expression, oct_literal, open_end_range_expression, open_start_range_expression, optional_chain_marker, playground_literal, postfix_expression, prefix_expression, range_expression, raw_string_literal, real_literal, referenceable_operator, regex_literal, selector_expression, self_expression, simple_identifier, special_literal, super_expression, switch_statement, ternary_expression, try_expression, tuple_expression, value_pack_expansion, value_parameter_pack] + $children?: expression + expr?: expression bang: bin_literal: bitwise_operation: - lhs: [additive_expression, array_literal, as_expression, assignment, await_expression, bin_literal, bitwise_operation, boolean_literal, call_expression, check_expression, comparison_expression, conjunction_expression, constructor_expression, diagnostic, dictionary_literal, directive, disjunction_expression, equality_expression, fully_open_range, hex_literal, if_statement, infix_expression, integer_literal, key_path_expression, key_path_string_expression, lambda_literal, line_string_literal, macro_invocation, multi_line_string_literal, multiplicative_expression, navigation_expression, "nil", nil_coalescing_expression, oct_literal, open_end_range_expression, open_start_range_expression, optional_chain_marker, playground_literal, postfix_expression, prefix_expression, range_expression, raw_string_literal, real_literal, referenceable_operator, regex_literal, selector_expression, self_expression, simple_identifier, special_literal, super_expression, switch_statement, ternary_expression, try_expression, tuple_expression, value_pack_expansion, value_parameter_pack] + lhs: expression op: ["&", "<<", ">>", "^", "|"] - rhs: [additive_expression, array_literal, as_expression, assignment, await_expression, bin_literal, bitwise_operation, boolean_literal, call_expression, check_expression, comparison_expression, conjunction_expression, constructor_expression, diagnostic, dictionary_literal, directive, disjunction_expression, equality_expression, fully_open_range, hex_literal, if_statement, infix_expression, integer_literal, key_path_expression, key_path_string_expression, lambda_literal, line_string_literal, macro_invocation, multi_line_string_literal, multiplicative_expression, navigation_expression, "nil", nil_coalescing_expression, oct_literal, open_end_range_expression, open_start_range_expression, optional_chain_marker, playground_literal, postfix_expression, prefix_expression, range_expression, raw_string_literal, real_literal, referenceable_operator, regex_literal, selector_expression, self_expression, simple_identifier, special_literal, super_expression, switch_statement, ternary_expression, try_expression, tuple_expression, value_pack_expansion, value_parameter_pack] + rhs: expression boolean_literal: call_expression: - $children+: [additive_expression, array_literal, as_expression, assignment, await_expression, bin_literal, bitwise_operation, boolean_literal, call_expression, call_suffix, check_expression, comparison_expression, conjunction_expression, constructor_expression, diagnostic, dictionary_literal, directive, disjunction_expression, equality_expression, fully_open_range, hex_literal, if_statement, infix_expression, integer_literal, key_path_expression, key_path_string_expression, lambda_literal, line_string_literal, macro_invocation, multi_line_string_literal, multiplicative_expression, navigation_expression, nil_coalescing_expression, oct_literal, open_end_range_expression, open_start_range_expression, optional_chain_marker, playground_literal, postfix_expression, prefix_expression, range_expression, raw_string_literal, real_literal, referenceable_operator, regex_literal, selector_expression, self_expression, simple_identifier, special_literal, super_expression, switch_statement, ternary_expression, try_expression, tuple_expression, value_pack_expansion, value_parameter_pack] + $children+: [call_suffix, expression] call_suffix: $children+: [lambda_literal, value_arguments] name*: simple_identifier @@ -48,7 +106,7 @@ named: capture_list_item: $children?: ownership_modifier name: [self_expression, simple_identifier] - value?: [additive_expression, array_literal, as_expression, assignment, await_expression, bin_literal, bitwise_operation, boolean_literal, call_expression, check_expression, comparison_expression, conjunction_expression, constructor_expression, diagnostic, dictionary_literal, directive, disjunction_expression, equality_expression, fully_open_range, hex_literal, if_statement, infix_expression, integer_literal, key_path_expression, key_path_string_expression, lambda_literal, line_string_literal, macro_invocation, multi_line_string_literal, multiplicative_expression, navigation_expression, "nil", nil_coalescing_expression, oct_literal, open_end_range_expression, open_start_range_expression, optional_chain_marker, playground_literal, postfix_expression, prefix_expression, range_expression, raw_string_literal, real_literal, referenceable_operator, regex_literal, selector_expression, self_expression, simple_identifier, special_literal, super_expression, switch_statement, ternary_expression, try_expression, tuple_expression, value_pack_expansion, value_parameter_pack] + value?: expression catch_block: $children+: [catch_keyword, statements, where_clause] error?: pattern @@ -56,7 +114,7 @@ named: check_expression: name: [array_type, dictionary_type, existential_type, function_type, metatype, opaque_type, optional_type, protocol_composition_type, suppressed_constraint, tuple_type, type_pack_expansion, type_parameter_pack, user_type] op: "is" - target: [additive_expression, array_literal, as_expression, assignment, await_expression, bin_literal, bitwise_operation, boolean_literal, call_expression, check_expression, comparison_expression, conjunction_expression, constructor_expression, diagnostic, dictionary_literal, directive, disjunction_expression, equality_expression, fully_open_range, hex_literal, if_statement, infix_expression, integer_literal, key_path_expression, key_path_string_expression, lambda_literal, line_string_literal, macro_invocation, multi_line_string_literal, multiplicative_expression, navigation_expression, "nil", nil_coalescing_expression, oct_literal, open_end_range_expression, open_start_range_expression, optional_chain_marker, playground_literal, postfix_expression, prefix_expression, range_expression, raw_string_literal, real_literal, referenceable_operator, regex_literal, selector_expression, self_expression, simple_identifier, special_literal, super_expression, switch_statement, ternary_expression, try_expression, tuple_expression, value_pack_expansion, value_parameter_pack] + target: expression type+: [array_type, dictionary_type, existential_type, function_type, metatype, opaque_type, optional_type, protocol_composition_type, suppressed_constraint, tuple_type, type_modifiers, type_pack_expansion, type_parameter_pack, user_type] class_body: $children*: [associatedtype_declaration, class_declaration, deinit_declaration, function_declaration, import_declaration, init_declaration, multiline_comment, operator_declaration, precedence_group_declaration, property_declaration, protocol_declaration, subscript_declaration, typealias_declaration] @@ -67,9 +125,9 @@ named: name: [array_type, dictionary_type, existential_type, function_type, metatype, opaque_type, optional_type, protocol_composition_type, suppressed_constraint, tuple_type, type_identifier, type_pack_expansion, type_parameter_pack, user_type] comment: comparison_expression: - lhs: [additive_expression, array_literal, as_expression, assignment, await_expression, bin_literal, bitwise_operation, boolean_literal, call_expression, check_expression, comparison_expression, conjunction_expression, constructor_expression, diagnostic, dictionary_literal, directive, disjunction_expression, equality_expression, fully_open_range, hex_literal, if_statement, infix_expression, integer_literal, key_path_expression, key_path_string_expression, lambda_literal, line_string_literal, macro_invocation, multi_line_string_literal, multiplicative_expression, navigation_expression, "nil", nil_coalescing_expression, oct_literal, open_end_range_expression, open_start_range_expression, optional_chain_marker, playground_literal, postfix_expression, prefix_expression, range_expression, raw_string_literal, real_literal, referenceable_operator, regex_literal, selector_expression, self_expression, simple_identifier, special_literal, super_expression, switch_statement, ternary_expression, try_expression, tuple_expression, value_pack_expansion, value_parameter_pack] + lhs: expression op: ["<", "<=", ">", ">="] - rhs: [additive_expression, array_literal, as_expression, assignment, await_expression, bin_literal, bitwise_operation, boolean_literal, call_expression, check_expression, comparison_expression, conjunction_expression, constructor_expression, diagnostic, dictionary_literal, directive, disjunction_expression, equality_expression, fully_open_range, hex_literal, if_statement, infix_expression, integer_literal, key_path_expression, key_path_string_expression, lambda_literal, line_string_literal, macro_invocation, multi_line_string_literal, multiplicative_expression, navigation_expression, "nil", nil_coalescing_expression, oct_literal, open_end_range_expression, open_start_range_expression, optional_chain_marker, playground_literal, postfix_expression, prefix_expression, range_expression, raw_string_literal, real_literal, referenceable_operator, regex_literal, selector_expression, self_expression, simple_identifier, special_literal, super_expression, switch_statement, ternary_expression, try_expression, tuple_expression, value_pack_expansion, value_parameter_pack] + rhs: expression computed_getter: $children+: [attribute, getter_specifier, statements] computed_modify: @@ -79,9 +137,9 @@ named: computed_setter: $children+: [attribute, setter_specifier, simple_identifier, statements] conjunction_expression: - lhs: [additive_expression, array_literal, as_expression, assignment, await_expression, bin_literal, bitwise_operation, boolean_literal, call_expression, check_expression, comparison_expression, conjunction_expression, constructor_expression, diagnostic, dictionary_literal, directive, disjunction_expression, equality_expression, fully_open_range, hex_literal, if_statement, infix_expression, integer_literal, key_path_expression, key_path_string_expression, lambda_literal, line_string_literal, macro_invocation, multi_line_string_literal, multiplicative_expression, navigation_expression, "nil", nil_coalescing_expression, oct_literal, open_end_range_expression, open_start_range_expression, optional_chain_marker, playground_literal, postfix_expression, prefix_expression, range_expression, raw_string_literal, real_literal, referenceable_operator, regex_literal, selector_expression, self_expression, simple_identifier, special_literal, super_expression, switch_statement, ternary_expression, try_expression, tuple_expression, value_pack_expansion, value_parameter_pack] + lhs: expression op: "&&" - rhs: [additive_expression, array_literal, as_expression, assignment, await_expression, bin_literal, bitwise_operation, boolean_literal, call_expression, check_expression, comparison_expression, conjunction_expression, constructor_expression, diagnostic, dictionary_literal, directive, disjunction_expression, equality_expression, fully_open_range, hex_literal, if_statement, infix_expression, integer_literal, key_path_expression, key_path_string_expression, lambda_literal, line_string_literal, macro_invocation, multi_line_string_literal, multiplicative_expression, navigation_expression, "nil", nil_coalescing_expression, oct_literal, open_end_range_expression, open_start_range_expression, optional_chain_marker, playground_literal, postfix_expression, prefix_expression, range_expression, raw_string_literal, real_literal, referenceable_operator, regex_literal, selector_expression, self_expression, simple_identifier, special_literal, super_expression, switch_statement, ternary_expression, try_expression, tuple_expression, value_pack_expansion, value_parameter_pack] + rhs: expression constructor_expression: $children: constructor_suffix constructed_type: [array_type, dictionary_type, user_type] @@ -89,8 +147,8 @@ named: $children+: [lambda_literal, value_arguments] name*: simple_identifier control_transfer_statement: - $children*: [additive_expression, array_literal, as_expression, assignment, await_expression, bin_literal, bitwise_operation, boolean_literal, call_expression, check_expression, comparison_expression, conjunction_expression, constructor_expression, diagnostic, dictionary_literal, directive, disjunction_expression, equality_expression, fully_open_range, hex_literal, if_statement, infix_expression, integer_literal, key_path_expression, key_path_string_expression, lambda_literal, line_string_literal, macro_invocation, multi_line_string_literal, multiplicative_expression, navigation_expression, nil_coalescing_expression, oct_literal, open_end_range_expression, open_start_range_expression, optional_chain_marker, playground_literal, postfix_expression, prefix_expression, range_expression, raw_string_literal, real_literal, referenceable_operator, regex_literal, selector_expression, self_expression, simple_identifier, special_literal, super_expression, switch_statement, ternary_expression, throw_keyword, try_expression, tuple_expression, value_pack_expansion, value_parameter_pack] - result?: [additive_expression, array_literal, as_expression, assignment, await_expression, bin_literal, bitwise_operation, boolean_literal, call_expression, check_expression, comparison_expression, conjunction_expression, constructor_expression, diagnostic, dictionary_literal, directive, disjunction_expression, equality_expression, fully_open_range, hex_literal, if_statement, infix_expression, integer_literal, key_path_expression, key_path_string_expression, lambda_literal, line_string_literal, macro_invocation, multi_line_string_literal, multiplicative_expression, navigation_expression, "nil", nil_coalescing_expression, oct_literal, open_end_range_expression, open_start_range_expression, optional_chain_marker, playground_literal, postfix_expression, prefix_expression, range_expression, raw_string_literal, real_literal, referenceable_operator, regex_literal, selector_expression, self_expression, simple_identifier, special_literal, super_expression, switch_statement, ternary_expression, try_expression, tuple_expression, value_pack_expansion, value_parameter_pack] + $children*: [expression, throw_keyword] + result?: expression custom_operator: default_keyword: deinit_declaration: @@ -100,8 +158,8 @@ named: $children*: [bin_literal, boolean_literal, hex_literal, integer_literal, line_string_literal, multi_line_string_literal, oct_literal, raw_string_literal, real_literal, regex_literal, simple_identifier] diagnostic: dictionary_literal: - key*: [additive_expression, array_literal, as_expression, assignment, await_expression, bin_literal, bitwise_operation, boolean_literal, call_expression, check_expression, comparison_expression, conjunction_expression, constructor_expression, diagnostic, dictionary_literal, directive, disjunction_expression, equality_expression, fully_open_range, hex_literal, if_statement, infix_expression, integer_literal, key_path_expression, key_path_string_expression, lambda_literal, line_string_literal, macro_invocation, multi_line_string_literal, multiplicative_expression, navigation_expression, "nil", nil_coalescing_expression, oct_literal, open_end_range_expression, open_start_range_expression, optional_chain_marker, playground_literal, postfix_expression, prefix_expression, range_expression, raw_string_literal, real_literal, referenceable_operator, regex_literal, selector_expression, self_expression, simple_identifier, special_literal, super_expression, switch_statement, ternary_expression, try_expression, tuple_expression, value_pack_expansion, value_parameter_pack] - value*: [additive_expression, array_literal, as_expression, assignment, await_expression, bin_literal, bitwise_operation, boolean_literal, call_expression, check_expression, comparison_expression, conjunction_expression, constructor_expression, diagnostic, dictionary_literal, directive, disjunction_expression, equality_expression, fully_open_range, hex_literal, if_statement, infix_expression, integer_literal, key_path_expression, key_path_string_expression, lambda_literal, line_string_literal, macro_invocation, multi_line_string_literal, multiplicative_expression, navigation_expression, "nil", nil_coalescing_expression, oct_literal, open_end_range_expression, open_start_range_expression, optional_chain_marker, playground_literal, postfix_expression, prefix_expression, range_expression, raw_string_literal, real_literal, referenceable_operator, regex_literal, selector_expression, self_expression, simple_identifier, special_literal, super_expression, switch_statement, ternary_expression, try_expression, tuple_expression, value_pack_expansion, value_parameter_pack] + key*: expression + value*: expression dictionary_type: key+: [array_type, dictionary_type, existential_type, function_type, metatype, opaque_type, optional_type, protocol_composition_type, suppressed_constraint, tuple_type, type_modifiers, type_pack_expansion, type_parameter_pack, user_type] name+: [array_type, dictionary_type, existential_type, function_type, metatype, opaque_type, optional_type, protocol_composition_type, suppressed_constraint, tuple_type, type_pack_expansion, type_parameter_pack, user_type] @@ -111,11 +169,11 @@ named: directive: $children*: [boolean_literal, integer_literal, simple_identifier] directly_assignable_expression: - $children?: [additive_expression, array_literal, as_expression, assignment, await_expression, bin_literal, bitwise_operation, boolean_literal, call_expression, check_expression, comparison_expression, conjunction_expression, constructor_expression, diagnostic, dictionary_literal, directive, disjunction_expression, equality_expression, fully_open_range, hex_literal, if_statement, infix_expression, integer_literal, key_path_expression, key_path_string_expression, lambda_literal, line_string_literal, macro_invocation, multi_line_string_literal, multiplicative_expression, navigation_expression, nil_coalescing_expression, oct_literal, open_end_range_expression, open_start_range_expression, optional_chain_marker, playground_literal, postfix_expression, prefix_expression, range_expression, raw_string_literal, real_literal, referenceable_operator, regex_literal, selector_expression, self_expression, simple_identifier, special_literal, super_expression, switch_statement, ternary_expression, try_expression, tuple_expression, value_pack_expansion, value_parameter_pack] + $children: expression disjunction_expression: - lhs: [additive_expression, array_literal, as_expression, assignment, await_expression, bin_literal, bitwise_operation, boolean_literal, call_expression, check_expression, comparison_expression, conjunction_expression, constructor_expression, diagnostic, dictionary_literal, directive, disjunction_expression, equality_expression, fully_open_range, hex_literal, if_statement, infix_expression, integer_literal, key_path_expression, key_path_string_expression, lambda_literal, line_string_literal, macro_invocation, multi_line_string_literal, multiplicative_expression, navigation_expression, "nil", nil_coalescing_expression, oct_literal, open_end_range_expression, open_start_range_expression, optional_chain_marker, playground_literal, postfix_expression, prefix_expression, range_expression, raw_string_literal, real_literal, referenceable_operator, regex_literal, selector_expression, self_expression, simple_identifier, special_literal, super_expression, switch_statement, ternary_expression, try_expression, tuple_expression, value_pack_expansion, value_parameter_pack] + lhs: expression op: "||" - rhs: [additive_expression, array_literal, as_expression, assignment, await_expression, bin_literal, bitwise_operation, boolean_literal, call_expression, check_expression, comparison_expression, conjunction_expression, constructor_expression, diagnostic, dictionary_literal, directive, disjunction_expression, equality_expression, fully_open_range, hex_literal, if_statement, infix_expression, integer_literal, key_path_expression, key_path_string_expression, lambda_literal, line_string_literal, macro_invocation, multi_line_string_literal, multiplicative_expression, navigation_expression, "nil", nil_coalescing_expression, oct_literal, open_end_range_expression, open_start_range_expression, optional_chain_marker, playground_literal, postfix_expression, prefix_expression, range_expression, raw_string_literal, real_literal, referenceable_operator, regex_literal, selector_expression, self_expression, simple_identifier, special_literal, super_expression, switch_statement, ternary_expression, try_expression, tuple_expression, value_pack_expansion, value_parameter_pack] + rhs: expression do_statement: $children*: [catch_block, statements] else: @@ -125,9 +183,9 @@ named: $children?: modifiers data_contents*: enum_type_parameters name+: simple_identifier - raw_value*: [additive_expression, array_literal, as_expression, assignment, await_expression, bin_literal, bitwise_operation, boolean_literal, call_expression, check_expression, comparison_expression, conjunction_expression, constructor_expression, diagnostic, dictionary_literal, directive, disjunction_expression, equality_expression, fully_open_range, hex_literal, if_statement, infix_expression, integer_literal, key_path_expression, key_path_string_expression, lambda_literal, line_string_literal, macro_invocation, multi_line_string_literal, multiplicative_expression, navigation_expression, "nil", nil_coalescing_expression, oct_literal, open_end_range_expression, open_start_range_expression, optional_chain_marker, playground_literal, postfix_expression, prefix_expression, range_expression, raw_string_literal, real_literal, referenceable_operator, regex_literal, selector_expression, self_expression, simple_identifier, special_literal, super_expression, switch_statement, ternary_expression, try_expression, tuple_expression, value_pack_expansion, value_parameter_pack] + raw_value*: expression enum_type_parameters: - $children*: [additive_expression, array_literal, as_expression, assignment, await_expression, bin_literal, bitwise_operation, boolean_literal, call_expression, check_expression, comparison_expression, conjunction_expression, constructor_expression, diagnostic, dictionary_literal, directive, disjunction_expression, equality_expression, fully_open_range, hex_literal, if_statement, infix_expression, integer_literal, key_path_expression, key_path_string_expression, lambda_literal, line_string_literal, macro_invocation, multi_line_string_literal, multiplicative_expression, navigation_expression, nil_coalescing_expression, oct_literal, open_end_range_expression, open_start_range_expression, optional_chain_marker, playground_literal, postfix_expression, prefix_expression, range_expression, raw_string_literal, real_literal, referenceable_operator, regex_literal, selector_expression, self_expression, simple_identifier, special_literal, super_expression, switch_statement, ternary_expression, try_expression, tuple_expression, type_modifiers, value_pack_expansion, value_parameter_pack, wildcard_pattern] + $children*: [expression, type_modifiers, wildcard_pattern] name*: [array_type, dictionary_type, existential_type, function_type, metatype, opaque_type, optional_type, protocol_composition_type, suppressed_constraint, tuple_type, type_pack_expansion, type_parameter_pack, user_type] equality_constraint: $children*: attribute @@ -135,16 +193,16 @@ named: must_equal+: [array_type, dictionary_type, existential_type, function_type, metatype, opaque_type, optional_type, protocol_composition_type, suppressed_constraint, tuple_type, type_modifiers, type_pack_expansion, type_parameter_pack, user_type] name: [array_type, dictionary_type, existential_type, function_type, metatype, opaque_type, optional_type, protocol_composition_type, suppressed_constraint, tuple_type, type_pack_expansion, type_parameter_pack, user_type] equality_expression: - lhs: [additive_expression, array_literal, as_expression, assignment, await_expression, bin_literal, bitwise_operation, boolean_literal, call_expression, check_expression, comparison_expression, conjunction_expression, constructor_expression, diagnostic, dictionary_literal, directive, disjunction_expression, equality_expression, fully_open_range, hex_literal, if_statement, infix_expression, integer_literal, key_path_expression, key_path_string_expression, lambda_literal, line_string_literal, macro_invocation, multi_line_string_literal, multiplicative_expression, navigation_expression, "nil", nil_coalescing_expression, oct_literal, open_end_range_expression, open_start_range_expression, optional_chain_marker, playground_literal, postfix_expression, prefix_expression, range_expression, raw_string_literal, real_literal, referenceable_operator, regex_literal, selector_expression, self_expression, simple_identifier, special_literal, super_expression, switch_statement, ternary_expression, try_expression, tuple_expression, value_pack_expansion, value_parameter_pack] + lhs: expression op: ["!=", "!==", "==", "==="] - rhs: [additive_expression, array_literal, as_expression, assignment, await_expression, bin_literal, bitwise_operation, boolean_literal, call_expression, check_expression, comparison_expression, conjunction_expression, constructor_expression, diagnostic, dictionary_literal, directive, disjunction_expression, equality_expression, fully_open_range, hex_literal, if_statement, infix_expression, integer_literal, key_path_expression, key_path_string_expression, lambda_literal, line_string_literal, macro_invocation, multi_line_string_literal, multiplicative_expression, navigation_expression, "nil", nil_coalescing_expression, oct_literal, open_end_range_expression, open_start_range_expression, optional_chain_marker, playground_literal, postfix_expression, prefix_expression, range_expression, raw_string_literal, real_literal, referenceable_operator, regex_literal, selector_expression, self_expression, simple_identifier, special_literal, super_expression, switch_statement, ternary_expression, try_expression, tuple_expression, value_pack_expansion, value_parameter_pack] + rhs: expression existential_type: $children: [array_type, dictionary_type, existential_type, function_type, metatype, opaque_type, optional_type, protocol_composition_type, suppressed_constraint, tuple_type, type_pack_expansion, type_parameter_pack, user_type] external_macro_definition: $children: value_arguments for_statement: $children*: [statements, try_operator, type_annotation, where_clause] - collection: [additive_expression, array_literal, as_expression, assignment, await_expression, bin_literal, bitwise_operation, boolean_literal, call_expression, check_expression, comparison_expression, conjunction_expression, constructor_expression, diagnostic, dictionary_literal, directive, disjunction_expression, equality_expression, fully_open_range, hex_literal, if_statement, infix_expression, integer_literal, key_path_expression, key_path_string_expression, lambda_literal, line_string_literal, macro_invocation, multi_line_string_literal, multiplicative_expression, navigation_expression, "nil", nil_coalescing_expression, oct_literal, open_end_range_expression, open_start_range_expression, optional_chain_marker, playground_literal, postfix_expression, prefix_expression, range_expression, raw_string_literal, real_literal, referenceable_operator, regex_literal, selector_expression, self_expression, simple_identifier, special_literal, super_expression, switch_statement, ternary_expression, try_expression, tuple_expression, value_pack_expansion, value_parameter_pack] + collection: expression item: pattern fully_open_range: function_body: @@ -152,7 +210,7 @@ named: function_declaration: $children*: [attribute, inheritance_modifier, modifiers, ownership_modifier, parameter, property_behavior_modifier, throws, throws_clause, type_constraints, type_parameters] body: function_body - default_value*: [additive_expression, array_literal, as_expression, assignment, await_expression, bin_literal, bitwise_operation, boolean_literal, call_expression, check_expression, comparison_expression, conjunction_expression, constructor_expression, diagnostic, dictionary_literal, directive, disjunction_expression, equality_expression, fully_open_range, hex_literal, if_statement, infix_expression, integer_literal, key_path_expression, key_path_string_expression, lambda_literal, line_string_literal, macro_invocation, multi_line_string_literal, multiplicative_expression, navigation_expression, "nil", nil_coalescing_expression, oct_literal, open_end_range_expression, open_start_range_expression, optional_chain_marker, playground_literal, postfix_expression, prefix_expression, range_expression, raw_string_literal, real_literal, referenceable_operator, regex_literal, selector_expression, self_expression, simple_identifier, special_literal, super_expression, switch_statement, ternary_expression, try_expression, tuple_expression, value_pack_expansion, value_parameter_pack] + default_value*: expression name+: [array_type, dictionary_type, existential_type, function_type, metatype, opaque_type, optional_type, protocol_composition_type, referenceable_operator, simple_identifier, suppressed_constraint, tuple_type, type_pack_expansion, type_parameter_pack, user_type] return_type*: ["!", array_type, dictionary_type, existential_type, function_type, metatype, opaque_type, optional_type, protocol_composition_type, suppressed_constraint, tuple_type, type_modifiers, type_pack_expansion, type_parameter_pack, user_type] function_modifier: @@ -170,7 +228,7 @@ named: identifier: $children+: simple_identifier if_condition: - $children*: [additive_expression, array_literal, as_expression, assignment, availability_condition, await_expression, bin_literal, bitwise_operation, boolean_literal, call_expression, check_expression, comparison_expression, conjunction_expression, constructor_expression, diagnostic, dictionary_literal, directive, disjunction_expression, equality_expression, fully_open_range, hex_literal, if_statement, infix_expression, integer_literal, key_path_expression, key_path_string_expression, lambda_literal, line_string_literal, macro_invocation, multi_line_string_literal, multiplicative_expression, navigation_expression, nil_coalescing_expression, oct_literal, open_end_range_expression, open_start_range_expression, optional_chain_marker, pattern, playground_literal, postfix_expression, prefix_expression, range_expression, raw_string_literal, real_literal, referenceable_operator, regex_literal, selector_expression, self_expression, simple_identifier, special_literal, super_expression, switch_statement, ternary_expression, try_expression, tuple_expression, type_annotation, type_modifiers, user_type, value_binding_pattern, value_pack_expansion, value_parameter_pack, where_clause, wildcard_pattern] + $children*: [availability_condition, expression, pattern, type_annotation, type_modifiers, user_type, value_binding_pattern, where_clause, wildcard_pattern] bound_identifier?: simple_identifier name?: [array_type, dictionary_type, existential_type, function_type, metatype, opaque_type, optional_type, protocol_composition_type, suppressed_constraint, tuple_type, type_pack_expansion, type_parameter_pack, user_type] if_statement: @@ -179,9 +237,9 @@ named: import_declaration: $children+: [identifier, modifiers] infix_expression: - lhs: [additive_expression, array_literal, as_expression, assignment, await_expression, bin_literal, bitwise_operation, boolean_literal, call_expression, check_expression, comparison_expression, conjunction_expression, constructor_expression, diagnostic, dictionary_literal, directive, disjunction_expression, equality_expression, fully_open_range, hex_literal, if_statement, infix_expression, integer_literal, key_path_expression, key_path_string_expression, lambda_literal, line_string_literal, macro_invocation, multi_line_string_literal, multiplicative_expression, navigation_expression, "nil", nil_coalescing_expression, oct_literal, open_end_range_expression, open_start_range_expression, optional_chain_marker, playground_literal, postfix_expression, prefix_expression, range_expression, raw_string_literal, real_literal, referenceable_operator, regex_literal, selector_expression, self_expression, simple_identifier, special_literal, super_expression, switch_statement, ternary_expression, try_expression, tuple_expression, value_pack_expansion, value_parameter_pack] + lhs: expression op: custom_operator - rhs: [additive_expression, array_literal, as_expression, assignment, await_expression, bin_literal, bitwise_operation, boolean_literal, call_expression, check_expression, comparison_expression, conjunction_expression, constructor_expression, diagnostic, dictionary_literal, directive, disjunction_expression, equality_expression, fully_open_range, hex_literal, if_statement, infix_expression, integer_literal, key_path_expression, key_path_string_expression, lambda_literal, line_string_literal, macro_invocation, multi_line_string_literal, multiplicative_expression, navigation_expression, "nil", nil_coalescing_expression, oct_literal, open_end_range_expression, open_start_range_expression, optional_chain_marker, playground_literal, postfix_expression, prefix_expression, range_expression, raw_string_literal, real_literal, referenceable_operator, regex_literal, selector_expression, self_expression, simple_identifier, special_literal, super_expression, switch_statement, ternary_expression, try_expression, tuple_expression, value_pack_expansion, value_parameter_pack] + rhs: expression inheritance_constraint: $children*: attribute constrained_type+: [".", array_type, dictionary_type, existential_type, function_type, identifier, metatype, opaque_type, optional_type, protocol_composition_type, simple_identifier, suppressed_constraint, tuple_type, type_pack_expansion, type_parameter_pack, user_type] @@ -193,18 +251,18 @@ named: init_declaration: $children*: [attribute, bang, modifiers, parameter, throws, throws_clause, type_constraints, type_parameters] body?: function_body - default_value*: [additive_expression, array_literal, as_expression, assignment, await_expression, bin_literal, bitwise_operation, boolean_literal, call_expression, check_expression, comparison_expression, conjunction_expression, constructor_expression, diagnostic, dictionary_literal, directive, disjunction_expression, equality_expression, fully_open_range, hex_literal, if_statement, infix_expression, integer_literal, key_path_expression, key_path_string_expression, lambda_literal, line_string_literal, macro_invocation, multi_line_string_literal, multiplicative_expression, navigation_expression, "nil", nil_coalescing_expression, oct_literal, open_end_range_expression, open_start_range_expression, optional_chain_marker, playground_literal, postfix_expression, prefix_expression, range_expression, raw_string_literal, real_literal, referenceable_operator, regex_literal, selector_expression, self_expression, simple_identifier, special_literal, super_expression, switch_statement, ternary_expression, try_expression, tuple_expression, value_pack_expansion, value_parameter_pack] + default_value*: expression name: "init" integer_literal: interpolated_expression: $children?: type_modifiers name?: value_argument_label reference_specifier*: value_argument_label - value?: [additive_expression, array_literal, as_expression, assignment, await_expression, bin_literal, bitwise_operation, boolean_literal, call_expression, check_expression, comparison_expression, conjunction_expression, constructor_expression, diagnostic, dictionary_literal, directive, disjunction_expression, equality_expression, fully_open_range, hex_literal, if_statement, infix_expression, integer_literal, key_path_expression, key_path_string_expression, lambda_literal, line_string_literal, macro_invocation, multi_line_string_literal, multiplicative_expression, navigation_expression, "nil", nil_coalescing_expression, oct_literal, open_end_range_expression, open_start_range_expression, optional_chain_marker, playground_literal, postfix_expression, prefix_expression, range_expression, raw_string_literal, real_literal, referenceable_operator, regex_literal, selector_expression, self_expression, simple_identifier, special_literal, super_expression, switch_statement, ternary_expression, try_expression, tuple_expression, value_pack_expansion, value_parameter_pack] + value?: expression key_path_expression: $children*: [array_type, bang, dictionary_type, simple_identifier, type_arguments, type_identifier, value_argument] key_path_string_expression: - $children?: [additive_expression, array_literal, as_expression, assignment, await_expression, bin_literal, bitwise_operation, boolean_literal, call_expression, check_expression, comparison_expression, conjunction_expression, constructor_expression, diagnostic, dictionary_literal, directive, disjunction_expression, equality_expression, fully_open_range, hex_literal, if_statement, infix_expression, integer_literal, key_path_expression, key_path_string_expression, lambda_literal, line_string_literal, macro_invocation, multi_line_string_literal, multiplicative_expression, navigation_expression, nil_coalescing_expression, oct_literal, open_end_range_expression, open_start_range_expression, optional_chain_marker, playground_literal, postfix_expression, prefix_expression, range_expression, raw_string_literal, real_literal, referenceable_operator, regex_literal, selector_expression, self_expression, simple_identifier, special_literal, super_expression, switch_statement, ternary_expression, try_expression, tuple_expression, value_pack_expansion, value_parameter_pack] + $children: expression lambda_function_type: $children*: [lambda_function_type_parameters, throws, throws_clause] name?: [array_type, dictionary_type, existential_type, function_type, metatype, opaque_type, optional_type, protocol_composition_type, suppressed_constraint, tuple_type, type_pack_expansion, type_parameter_pack, user_type] @@ -226,10 +284,10 @@ named: text*: [line_str_text, str_escaped_char] macro_declaration: $children+: [array_type, attribute, dictionary_type, existential_type, function_type, metatype, modifiers, opaque_type, optional_type, parameter, protocol_composition_type, simple_identifier, suppressed_constraint, tuple_type, type_constraints, type_pack_expansion, type_parameter_pack, type_parameters, user_type] - default_value*: [additive_expression, array_literal, as_expression, assignment, await_expression, bin_literal, bitwise_operation, boolean_literal, call_expression, check_expression, comparison_expression, conjunction_expression, constructor_expression, diagnostic, dictionary_literal, directive, disjunction_expression, equality_expression, fully_open_range, hex_literal, if_statement, infix_expression, integer_literal, key_path_expression, key_path_string_expression, lambda_literal, line_string_literal, macro_invocation, multi_line_string_literal, multiplicative_expression, navigation_expression, "nil", nil_coalescing_expression, oct_literal, open_end_range_expression, open_start_range_expression, optional_chain_marker, playground_literal, postfix_expression, prefix_expression, range_expression, raw_string_literal, real_literal, referenceable_operator, regex_literal, selector_expression, self_expression, simple_identifier, special_literal, super_expression, switch_statement, ternary_expression, try_expression, tuple_expression, value_pack_expansion, value_parameter_pack] + default_value*: expression definition?: macro_definition macro_definition: - body: [additive_expression, array_literal, as_expression, assignment, await_expression, bin_literal, bitwise_operation, boolean_literal, call_expression, check_expression, comparison_expression, conjunction_expression, constructor_expression, diagnostic, dictionary_literal, directive, disjunction_expression, equality_expression, external_macro_definition, fully_open_range, hex_literal, if_statement, infix_expression, integer_literal, key_path_expression, key_path_string_expression, lambda_literal, line_string_literal, macro_invocation, multi_line_string_literal, multiplicative_expression, navigation_expression, "nil", nil_coalescing_expression, oct_literal, open_end_range_expression, open_start_range_expression, optional_chain_marker, playground_literal, postfix_expression, prefix_expression, range_expression, raw_string_literal, real_literal, referenceable_operator, regex_literal, selector_expression, self_expression, simple_identifier, special_literal, super_expression, switch_statement, ternary_expression, try_expression, tuple_expression, value_pack_expansion, value_parameter_pack] + body: [expression, external_macro_definition] macro_invocation: $children+: [call_suffix, simple_identifier, type_parameters] member_modifier: @@ -245,30 +303,30 @@ named: text*: ["\"", multi_line_str_text, str_escaped_char] multiline_comment: multiplicative_expression: - lhs: [additive_expression, array_literal, as_expression, assignment, await_expression, bin_literal, bitwise_operation, boolean_literal, call_expression, check_expression, comparison_expression, conjunction_expression, constructor_expression, diagnostic, dictionary_literal, directive, disjunction_expression, equality_expression, fully_open_range, hex_literal, if_statement, infix_expression, integer_literal, key_path_expression, key_path_string_expression, lambda_literal, line_string_literal, macro_invocation, multi_line_string_literal, multiplicative_expression, navigation_expression, "nil", nil_coalescing_expression, oct_literal, open_end_range_expression, open_start_range_expression, optional_chain_marker, playground_literal, postfix_expression, prefix_expression, range_expression, raw_string_literal, real_literal, referenceable_operator, regex_literal, selector_expression, self_expression, simple_identifier, special_literal, super_expression, switch_statement, ternary_expression, try_expression, tuple_expression, value_pack_expansion, value_parameter_pack] + lhs: expression op: ["%", "*", "/"] - rhs: [additive_expression, array_literal, as_expression, assignment, await_expression, bin_literal, bitwise_operation, boolean_literal, call_expression, check_expression, comparison_expression, conjunction_expression, constructor_expression, diagnostic, dictionary_literal, directive, disjunction_expression, equality_expression, fully_open_range, hex_literal, if_statement, infix_expression, integer_literal, key_path_expression, key_path_string_expression, lambda_literal, line_string_literal, macro_invocation, multi_line_string_literal, multiplicative_expression, navigation_expression, "nil", nil_coalescing_expression, oct_literal, open_end_range_expression, open_start_range_expression, optional_chain_marker, playground_literal, postfix_expression, prefix_expression, range_expression, raw_string_literal, real_literal, referenceable_operator, regex_literal, selector_expression, self_expression, simple_identifier, special_literal, super_expression, switch_statement, ternary_expression, try_expression, tuple_expression, value_pack_expansion, value_parameter_pack] + rhs: expression mutation_modifier: navigation_expression: element?: [dictionary_type, existential_type, opaque_type] suffix: navigation_suffix - target+: ["(", ")", additive_expression, array_literal, array_type, as_expression, assignment, await_expression, bin_literal, bitwise_operation, boolean_literal, call_expression, check_expression, comparison_expression, conjunction_expression, constructor_expression, diagnostic, dictionary_literal, dictionary_type, directive, disjunction_expression, equality_expression, existential_type, fully_open_range, hex_literal, if_statement, infix_expression, integer_literal, key_path_expression, key_path_string_expression, lambda_literal, line_string_literal, macro_invocation, multi_line_string_literal, multiplicative_expression, navigation_expression, "nil", nil_coalescing_expression, oct_literal, opaque_type, open_end_range_expression, open_start_range_expression, optional_chain_marker, playground_literal, postfix_expression, prefix_expression, range_expression, raw_string_literal, real_literal, referenceable_operator, regex_literal, selector_expression, self_expression, simple_identifier, special_literal, super_expression, switch_statement, ternary_expression, try_expression, tuple_expression, user_type, value_pack_expansion, value_parameter_pack] + target+: ["(", ")", array_type, dictionary_type, existential_type, expression, opaque_type, user_type] navigation_suffix: suffix: [integer_literal, simple_identifier] nil_coalescing_expression: - if_nil: [additive_expression, array_literal, as_expression, assignment, await_expression, bin_literal, bitwise_operation, boolean_literal, call_expression, check_expression, comparison_expression, conjunction_expression, constructor_expression, diagnostic, dictionary_literal, directive, disjunction_expression, equality_expression, fully_open_range, hex_literal, if_statement, infix_expression, integer_literal, key_path_expression, key_path_string_expression, lambda_literal, line_string_literal, macro_invocation, multi_line_string_literal, multiplicative_expression, navigation_expression, "nil", nil_coalescing_expression, oct_literal, open_end_range_expression, open_start_range_expression, optional_chain_marker, playground_literal, postfix_expression, prefix_expression, range_expression, raw_string_literal, real_literal, referenceable_operator, regex_literal, selector_expression, self_expression, simple_identifier, special_literal, super_expression, switch_statement, ternary_expression, try_expression, tuple_expression, value_pack_expansion, value_parameter_pack] - value: [additive_expression, array_literal, as_expression, assignment, await_expression, bin_literal, bitwise_operation, boolean_literal, call_expression, check_expression, comparison_expression, conjunction_expression, constructor_expression, diagnostic, dictionary_literal, directive, disjunction_expression, equality_expression, fully_open_range, hex_literal, if_statement, infix_expression, integer_literal, key_path_expression, key_path_string_expression, lambda_literal, line_string_literal, macro_invocation, multi_line_string_literal, multiplicative_expression, navigation_expression, "nil", nil_coalescing_expression, oct_literal, open_end_range_expression, open_start_range_expression, optional_chain_marker, playground_literal, postfix_expression, prefix_expression, range_expression, raw_string_literal, real_literal, referenceable_operator, regex_literal, selector_expression, self_expression, simple_identifier, special_literal, super_expression, switch_statement, ternary_expression, try_expression, tuple_expression, value_pack_expansion, value_parameter_pack] + if_nil: expression + value: expression oct_literal: opaque_type: $children: [array_type, dictionary_type, existential_type, function_type, metatype, opaque_type, optional_type, protocol_composition_type, suppressed_constraint, tuple_type, type_pack_expansion, type_parameter_pack, user_type] open_end_range_expression: - start: [additive_expression, array_literal, as_expression, assignment, await_expression, bin_literal, bitwise_operation, boolean_literal, call_expression, check_expression, comparison_expression, conjunction_expression, constructor_expression, diagnostic, dictionary_literal, directive, disjunction_expression, equality_expression, fully_open_range, hex_literal, if_statement, infix_expression, integer_literal, key_path_expression, key_path_string_expression, lambda_literal, line_string_literal, macro_invocation, multi_line_string_literal, multiplicative_expression, navigation_expression, "nil", nil_coalescing_expression, oct_literal, open_end_range_expression, open_start_range_expression, optional_chain_marker, playground_literal, postfix_expression, prefix_expression, range_expression, raw_string_literal, real_literal, referenceable_operator, regex_literal, selector_expression, self_expression, simple_identifier, special_literal, super_expression, switch_statement, ternary_expression, try_expression, tuple_expression, value_pack_expansion, value_parameter_pack] + start: expression open_start_range_expression: - end: [additive_expression, array_literal, as_expression, assignment, await_expression, bin_literal, bitwise_operation, boolean_literal, call_expression, check_expression, comparison_expression, conjunction_expression, constructor_expression, diagnostic, dictionary_literal, directive, disjunction_expression, equality_expression, fully_open_range, hex_literal, if_statement, infix_expression, integer_literal, key_path_expression, key_path_string_expression, lambda_literal, line_string_literal, macro_invocation, multi_line_string_literal, multiplicative_expression, navigation_expression, "nil", nil_coalescing_expression, oct_literal, open_end_range_expression, open_start_range_expression, optional_chain_marker, playground_literal, postfix_expression, prefix_expression, range_expression, raw_string_literal, real_literal, referenceable_operator, regex_literal, selector_expression, self_expression, simple_identifier, special_literal, super_expression, switch_statement, ternary_expression, try_expression, tuple_expression, value_pack_expansion, value_parameter_pack] + end: expression operator_declaration: $children+: [deprecated_operator_declaration_body, referenceable_operator, simple_identifier] optional_chain_marker: - $children?: [additive_expression, array_literal, as_expression, assignment, await_expression, bin_literal, bitwise_operation, boolean_literal, call_expression, check_expression, comparison_expression, conjunction_expression, constructor_expression, diagnostic, dictionary_literal, directive, disjunction_expression, equality_expression, fully_open_range, hex_literal, if_statement, infix_expression, integer_literal, key_path_expression, key_path_string_expression, lambda_literal, line_string_literal, macro_invocation, multi_line_string_literal, multiplicative_expression, navigation_expression, nil_coalescing_expression, oct_literal, open_end_range_expression, open_start_range_expression, optional_chain_marker, playground_literal, postfix_expression, prefix_expression, range_expression, raw_string_literal, real_literal, referenceable_operator, regex_literal, selector_expression, self_expression, simple_identifier, special_literal, super_expression, switch_statement, ternary_expression, try_expression, tuple_expression, value_pack_expansion, value_parameter_pack] + $children: expression optional_type: wrapped: [array_type, dictionary_type, tuple_type, user_type] ownership_modifier: @@ -281,14 +339,14 @@ named: parameter_modifiers: $children+: parameter_modifier pattern: - $children*: [additive_expression, array_literal, as_expression, assignment, await_expression, bin_literal, bitwise_operation, boolean_literal, call_expression, check_expression, comparison_expression, conjunction_expression, constructor_expression, diagnostic, dictionary_literal, directive, disjunction_expression, equality_expression, fully_open_range, hex_literal, if_statement, infix_expression, integer_literal, key_path_expression, key_path_string_expression, lambda_literal, line_string_literal, macro_invocation, multi_line_string_literal, multiplicative_expression, navigation_expression, nil_coalescing_expression, oct_literal, open_end_range_expression, open_start_range_expression, optional_chain_marker, pattern, playground_literal, postfix_expression, prefix_expression, range_expression, raw_string_literal, real_literal, referenceable_operator, regex_literal, selector_expression, self_expression, simple_identifier, special_literal, super_expression, switch_statement, ternary_expression, try_expression, tuple_expression, type_modifiers, user_type, value_binding_pattern, value_pack_expansion, value_parameter_pack, wildcard_pattern] + $children*: [expression, pattern, type_modifiers, user_type, value_binding_pattern, wildcard_pattern] bound_identifier?: simple_identifier name?: [array_type, dictionary_type, existential_type, function_type, metatype, opaque_type, optional_type, protocol_composition_type, suppressed_constraint, tuple_type, type_pack_expansion, type_parameter_pack, user_type] playground_literal: - $children+: [additive_expression, array_literal, as_expression, assignment, await_expression, bin_literal, bitwise_operation, boolean_literal, call_expression, check_expression, comparison_expression, conjunction_expression, constructor_expression, diagnostic, dictionary_literal, directive, disjunction_expression, equality_expression, fully_open_range, hex_literal, if_statement, infix_expression, integer_literal, key_path_expression, key_path_string_expression, lambda_literal, line_string_literal, macro_invocation, multi_line_string_literal, multiplicative_expression, navigation_expression, nil_coalescing_expression, oct_literal, open_end_range_expression, open_start_range_expression, optional_chain_marker, playground_literal, postfix_expression, prefix_expression, range_expression, raw_string_literal, real_literal, referenceable_operator, regex_literal, selector_expression, self_expression, simple_identifier, special_literal, super_expression, switch_statement, ternary_expression, try_expression, tuple_expression, value_pack_expansion, value_parameter_pack] + $children+: expression postfix_expression: operation: ["++", "--", bang] - target: [additive_expression, array_literal, as_expression, assignment, await_expression, bin_literal, bitwise_operation, boolean_literal, call_expression, check_expression, comparison_expression, conjunction_expression, constructor_expression, diagnostic, dictionary_literal, directive, disjunction_expression, equality_expression, fully_open_range, hex_literal, if_statement, infix_expression, integer_literal, key_path_expression, key_path_string_expression, lambda_literal, line_string_literal, macro_invocation, multi_line_string_literal, multiplicative_expression, navigation_expression, "nil", nil_coalescing_expression, oct_literal, open_end_range_expression, open_start_range_expression, optional_chain_marker, playground_literal, postfix_expression, prefix_expression, range_expression, raw_string_literal, real_literal, referenceable_operator, regex_literal, selector_expression, self_expression, simple_identifier, special_literal, super_expression, switch_statement, ternary_expression, try_expression, tuple_expression, value_pack_expansion, value_parameter_pack] + target: expression precedence_group_attribute: $children+: [boolean_literal, simple_identifier] precedence_group_attributes: @@ -297,13 +355,13 @@ named: $children+: [precedence_group_attributes, simple_identifier] prefix_expression: operation: ["&", "+", "++", "-", "--", ".", bang, custom_operator, "~"] - target: [_expression, additive_expression, array_literal, as_expression, assignment, await_expression, bin_literal, bitwise_operation, boolean_literal, call_expression, check_expression, comparison_expression, conjunction_expression, constructor_expression, diagnostic, dictionary_literal, directive, disjunction_expression, equality_expression, fully_open_range, hex_literal, if_statement, infix_expression, integer_literal, key_path_expression, key_path_string_expression, lambda_literal, line_string_literal, macro_invocation, multi_line_string_literal, multiplicative_expression, navigation_expression, "nil", nil_coalescing_expression, oct_literal, open_end_range_expression, open_start_range_expression, optional_chain_marker, playground_literal, postfix_expression, prefix_expression, range_expression, raw_string_literal, real_literal, referenceable_operator, regex_literal, selector_expression, self_expression, simple_identifier, special_literal, super_expression, switch_statement, ternary_expression, try_expression, tuple_expression, value_pack_expansion, value_parameter_pack] + target: expression property_behavior_modifier: property_declaration: $children*: [attribute, inheritance_modifier, modifiers, ownership_modifier, property_behavior_modifier, type_annotation, type_constraints, value_binding_pattern, willset_didset_block] computed_value*: computed_property name+: pattern - value*: [additive_expression, array_literal, as_expression, assignment, await_expression, bin_literal, bitwise_operation, boolean_literal, call_expression, check_expression, comparison_expression, conjunction_expression, constructor_expression, diagnostic, dictionary_literal, directive, disjunction_expression, equality_expression, fully_open_range, hex_literal, if_statement, infix_expression, integer_literal, key_path_expression, key_path_string_expression, lambda_literal, line_string_literal, macro_invocation, multi_line_string_literal, multiplicative_expression, navigation_expression, "nil", nil_coalescing_expression, oct_literal, open_end_range_expression, open_start_range_expression, optional_chain_marker, playground_literal, postfix_expression, prefix_expression, range_expression, raw_string_literal, real_literal, referenceable_operator, regex_literal, selector_expression, self_expression, simple_identifier, special_literal, super_expression, switch_statement, ternary_expression, try_expression, tuple_expression, value_pack_expansion, value_parameter_pack] + value*: expression property_modifier: protocol_body: $children*: [associatedtype_declaration, deinit_declaration, init_declaration, protocol_function_declaration, protocol_property_declaration, subscript_declaration, typealias_declaration] @@ -317,7 +375,7 @@ named: name: type_identifier protocol_function_declaration: $children*: [attribute, modifiers, parameter, statements, throws, throws_clause, type_constraints, type_parameters] - default_value*: [additive_expression, array_literal, as_expression, assignment, await_expression, bin_literal, bitwise_operation, boolean_literal, call_expression, check_expression, comparison_expression, conjunction_expression, constructor_expression, diagnostic, dictionary_literal, directive, disjunction_expression, equality_expression, fully_open_range, hex_literal, if_statement, infix_expression, integer_literal, key_path_expression, key_path_string_expression, lambda_literal, line_string_literal, macro_invocation, multi_line_string_literal, multiplicative_expression, navigation_expression, "nil", nil_coalescing_expression, oct_literal, open_end_range_expression, open_start_range_expression, optional_chain_marker, playground_literal, postfix_expression, prefix_expression, range_expression, raw_string_literal, real_literal, referenceable_operator, regex_literal, selector_expression, self_expression, simple_identifier, special_literal, super_expression, switch_statement, ternary_expression, try_expression, tuple_expression, value_pack_expansion, value_parameter_pack] + default_value*: expression name*: [array_type, dictionary_type, existential_type, function_type, metatype, opaque_type, optional_type, protocol_composition_type, referenceable_operator, simple_identifier, suppressed_constraint, tuple_type, type_pack_expansion, type_parameter_pack, user_type] return_type*: ["!", array_type, dictionary_type, existential_type, function_type, metatype, opaque_type, optional_type, protocol_composition_type, suppressed_constraint, tuple_type, type_modifiers, type_pack_expansion, type_parameter_pack, user_type] protocol_property_declaration: @@ -326,9 +384,9 @@ named: protocol_property_requirements: $children*: [getter_specifier, setter_specifier] range_expression: - end: [additive_expression, array_literal, as_expression, assignment, await_expression, bin_literal, bitwise_operation, boolean_literal, call_expression, check_expression, comparison_expression, conjunction_expression, constructor_expression, diagnostic, dictionary_literal, directive, disjunction_expression, equality_expression, fully_open_range, hex_literal, if_statement, infix_expression, integer_literal, key_path_expression, key_path_string_expression, lambda_literal, line_string_literal, macro_invocation, multi_line_string_literal, multiplicative_expression, navigation_expression, "nil", nil_coalescing_expression, oct_literal, open_end_range_expression, open_start_range_expression, optional_chain_marker, playground_literal, postfix_expression, prefix_expression, range_expression, raw_string_literal, real_literal, referenceable_operator, regex_literal, selector_expression, self_expression, simple_identifier, special_literal, super_expression, switch_statement, ternary_expression, try_expression, tuple_expression, value_pack_expansion, value_parameter_pack] + end: expression op: ["...", "..<"] - start: [additive_expression, array_literal, as_expression, assignment, await_expression, bin_literal, bitwise_operation, boolean_literal, call_expression, check_expression, comparison_expression, conjunction_expression, constructor_expression, diagnostic, dictionary_literal, directive, disjunction_expression, equality_expression, fully_open_range, hex_literal, if_statement, infix_expression, integer_literal, key_path_expression, key_path_string_expression, lambda_literal, line_string_literal, macro_invocation, multi_line_string_literal, multiplicative_expression, navigation_expression, "nil", nil_coalescing_expression, oct_literal, open_end_range_expression, open_start_range_expression, optional_chain_marker, playground_literal, postfix_expression, prefix_expression, range_expression, raw_string_literal, real_literal, referenceable_operator, regex_literal, selector_expression, self_expression, simple_identifier, special_literal, super_expression, switch_statement, ternary_expression, try_expression, tuple_expression, value_pack_expansion, value_parameter_pack] + start: expression raw_str_continuing_indicator: raw_str_end_part: raw_str_interpolation: @@ -348,49 +406,49 @@ named: $children?: statements condition+: if_condition selector_expression: - $children?: [additive_expression, array_literal, as_expression, assignment, await_expression, bin_literal, bitwise_operation, boolean_literal, call_expression, check_expression, comparison_expression, conjunction_expression, constructor_expression, diagnostic, dictionary_literal, directive, disjunction_expression, equality_expression, fully_open_range, hex_literal, if_statement, infix_expression, integer_literal, key_path_expression, key_path_string_expression, lambda_literal, line_string_literal, macro_invocation, multi_line_string_literal, multiplicative_expression, navigation_expression, nil_coalescing_expression, oct_literal, open_end_range_expression, open_start_range_expression, optional_chain_marker, playground_literal, postfix_expression, prefix_expression, range_expression, raw_string_literal, real_literal, referenceable_operator, regex_literal, selector_expression, self_expression, simple_identifier, special_literal, super_expression, switch_statement, ternary_expression, try_expression, tuple_expression, value_pack_expansion, value_parameter_pack] + $children: expression self_expression: setter_specifier: $children?: mutation_modifier shebang_line: simple_identifier: source_file: - $children*: [additive_expression, array_literal, as_expression, assignment, associatedtype_declaration, await_expression, bin_literal, bitwise_operation, boolean_literal, call_expression, check_expression, class_declaration, comparison_expression, conjunction_expression, constructor_expression, diagnostic, dictionary_literal, directive, disjunction_expression, do_statement, equality_expression, for_statement, fully_open_range, function_declaration, guard_statement, hex_literal, if_statement, import_declaration, infix_expression, init_declaration, integer_literal, key_path_expression, key_path_string_expression, lambda_literal, line_string_literal, macro_declaration, macro_invocation, multi_line_string_literal, multiplicative_expression, navigation_expression, nil_coalescing_expression, oct_literal, open_end_range_expression, open_start_range_expression, operator_declaration, optional_chain_marker, playground_literal, postfix_expression, precedence_group_declaration, prefix_expression, property_declaration, protocol_declaration, range_expression, raw_string_literal, real_literal, referenceable_operator, regex_literal, repeat_while_statement, selector_expression, self_expression, shebang_line, simple_identifier, special_literal, statement_label, super_expression, switch_statement, ternary_expression, throw_keyword, try_expression, tuple_expression, typealias_declaration, value_pack_expansion, value_parameter_pack, while_statement] + $children*: [associatedtype_declaration, class_declaration, do_statement, expression, for_statement, function_declaration, guard_statement, import_declaration, init_declaration, macro_declaration, operator_declaration, precedence_group_declaration, property_declaration, protocol_declaration, repeat_while_statement, shebang_line, statement_label, throw_keyword, typealias_declaration, while_statement] special_literal: statement_label: statements: - $children*: [additive_expression, array_literal, as_expression, assignment, await_expression, bin_literal, bitwise_operation, boolean_literal, call_expression, check_expression, class_declaration, comparison_expression, conjunction_expression, constructor_expression, control_transfer_statement, diagnostic, dictionary_literal, directive, disjunction_expression, do_statement, equality_expression, for_statement, fully_open_range, function_declaration, guard_statement, hex_literal, if_statement, infix_expression, integer_literal, key_path_expression, key_path_string_expression, lambda_literal, line_string_literal, macro_invocation, multi_line_string_literal, multiplicative_expression, navigation_expression, nil_coalescing_expression, oct_literal, open_end_range_expression, open_start_range_expression, optional_chain_marker, playground_literal, postfix_expression, prefix_expression, property_declaration, range_expression, raw_string_literal, real_literal, referenceable_operator, regex_literal, repeat_while_statement, selector_expression, self_expression, simple_identifier, special_literal, statement_label, super_expression, switch_statement, ternary_expression, try_expression, tuple_expression, typealias_declaration, value_pack_expansion, value_parameter_pack, while_statement] + $children+: [class_declaration, control_transfer_statement, do_statement, expression, for_statement, function_declaration, guard_statement, property_declaration, repeat_while_statement, statement_label, typealias_declaration, while_statement] str_escaped_char: subscript_declaration: $children+: [attribute, computed_property, modifiers, parameter, type_constraints, type_parameters] - default_value*: [additive_expression, array_literal, as_expression, assignment, await_expression, bin_literal, bitwise_operation, boolean_literal, call_expression, check_expression, comparison_expression, conjunction_expression, constructor_expression, diagnostic, dictionary_literal, directive, disjunction_expression, equality_expression, fully_open_range, hex_literal, if_statement, infix_expression, integer_literal, key_path_expression, key_path_string_expression, lambda_literal, line_string_literal, macro_invocation, multi_line_string_literal, multiplicative_expression, navigation_expression, "nil", nil_coalescing_expression, oct_literal, open_end_range_expression, open_start_range_expression, optional_chain_marker, playground_literal, postfix_expression, prefix_expression, range_expression, raw_string_literal, real_literal, referenceable_operator, regex_literal, selector_expression, self_expression, simple_identifier, special_literal, super_expression, switch_statement, ternary_expression, try_expression, tuple_expression, value_pack_expansion, value_parameter_pack] + default_value*: expression name?: [array_type, dictionary_type, existential_type, function_type, metatype, opaque_type, optional_type, protocol_composition_type, suppressed_constraint, tuple_type, type_pack_expansion, type_parameter_pack, user_type] return_type*: ["!", array_type, dictionary_type, existential_type, function_type, metatype, opaque_type, optional_type, protocol_composition_type, suppressed_constraint, tuple_type, type_modifiers, type_pack_expansion, type_parameter_pack, user_type] super_expression: suppressed_constraint: suppressed: type_identifier switch_entry: - $children+: [additive_expression, array_literal, as_expression, assignment, await_expression, bin_literal, bitwise_operation, boolean_literal, call_expression, check_expression, comparison_expression, conjunction_expression, constructor_expression, default_keyword, diagnostic, dictionary_literal, directive, disjunction_expression, equality_expression, fully_open_range, hex_literal, if_statement, infix_expression, integer_literal, key_path_expression, key_path_string_expression, lambda_literal, line_string_literal, macro_invocation, modifiers, multi_line_string_literal, multiplicative_expression, navigation_expression, nil_coalescing_expression, oct_literal, open_end_range_expression, open_start_range_expression, optional_chain_marker, playground_literal, postfix_expression, prefix_expression, range_expression, raw_string_literal, real_literal, referenceable_operator, regex_literal, selector_expression, self_expression, simple_identifier, special_literal, statements, super_expression, switch_pattern, switch_statement, ternary_expression, try_expression, tuple_expression, value_pack_expansion, value_parameter_pack, where_keyword] + $children+: [default_keyword, expression, modifiers, statements, switch_pattern, where_keyword] switch_pattern: $children: pattern switch_statement: $children*: switch_entry - expr: [additive_expression, array_literal, as_expression, assignment, await_expression, bin_literal, bitwise_operation, boolean_literal, call_expression, check_expression, comparison_expression, conjunction_expression, constructor_expression, diagnostic, dictionary_literal, directive, disjunction_expression, equality_expression, fully_open_range, hex_literal, if_statement, infix_expression, integer_literal, key_path_expression, key_path_string_expression, lambda_literal, line_string_literal, macro_invocation, multi_line_string_literal, multiplicative_expression, navigation_expression, "nil", nil_coalescing_expression, oct_literal, open_end_range_expression, open_start_range_expression, optional_chain_marker, playground_literal, postfix_expression, prefix_expression, range_expression, raw_string_literal, real_literal, referenceable_operator, regex_literal, selector_expression, self_expression, simple_identifier, special_literal, super_expression, switch_statement, ternary_expression, try_expression, tuple_expression, value_pack_expansion, value_parameter_pack] + expr: expression ternary_expression: - condition: [additive_expression, array_literal, as_expression, assignment, await_expression, bin_literal, bitwise_operation, boolean_literal, call_expression, check_expression, comparison_expression, conjunction_expression, constructor_expression, diagnostic, dictionary_literal, directive, disjunction_expression, equality_expression, fully_open_range, hex_literal, if_statement, infix_expression, integer_literal, key_path_expression, key_path_string_expression, lambda_literal, line_string_literal, macro_invocation, multi_line_string_literal, multiplicative_expression, navigation_expression, "nil", nil_coalescing_expression, oct_literal, open_end_range_expression, open_start_range_expression, optional_chain_marker, playground_literal, postfix_expression, prefix_expression, range_expression, raw_string_literal, real_literal, referenceable_operator, regex_literal, selector_expression, self_expression, simple_identifier, special_literal, super_expression, switch_statement, ternary_expression, try_expression, tuple_expression, value_pack_expansion, value_parameter_pack] - if_false: [additive_expression, array_literal, as_expression, assignment, await_expression, bin_literal, bitwise_operation, boolean_literal, call_expression, check_expression, comparison_expression, conjunction_expression, constructor_expression, diagnostic, dictionary_literal, directive, disjunction_expression, equality_expression, fully_open_range, hex_literal, if_statement, infix_expression, integer_literal, key_path_expression, key_path_string_expression, lambda_literal, line_string_literal, macro_invocation, multi_line_string_literal, multiplicative_expression, navigation_expression, "nil", nil_coalescing_expression, oct_literal, open_end_range_expression, open_start_range_expression, optional_chain_marker, playground_literal, postfix_expression, prefix_expression, range_expression, raw_string_literal, real_literal, referenceable_operator, regex_literal, selector_expression, self_expression, simple_identifier, special_literal, super_expression, switch_statement, ternary_expression, try_expression, tuple_expression, value_pack_expansion, value_parameter_pack] - if_true: [additive_expression, array_literal, as_expression, assignment, await_expression, bin_literal, bitwise_operation, boolean_literal, call_expression, check_expression, comparison_expression, conjunction_expression, constructor_expression, diagnostic, dictionary_literal, directive, disjunction_expression, equality_expression, fully_open_range, hex_literal, if_statement, infix_expression, integer_literal, key_path_expression, key_path_string_expression, lambda_literal, line_string_literal, macro_invocation, multi_line_string_literal, multiplicative_expression, navigation_expression, "nil", nil_coalescing_expression, oct_literal, open_end_range_expression, open_start_range_expression, optional_chain_marker, playground_literal, postfix_expression, prefix_expression, range_expression, raw_string_literal, real_literal, referenceable_operator, regex_literal, selector_expression, self_expression, simple_identifier, special_literal, super_expression, switch_statement, ternary_expression, try_expression, tuple_expression, value_pack_expansion, value_parameter_pack] + condition: expression + if_false: expression + if_true: expression throw_keyword: throws: throws_clause: type: [array_type, dictionary_type, existential_type, function_type, metatype, opaque_type, optional_type, protocol_composition_type, suppressed_constraint, tuple_type, type_pack_expansion, type_parameter_pack, user_type] try_expression: $children: try_operator - expr: [additive_expression, array_literal, as_expression, assignment, await_expression, bin_literal, bitwise_operation, boolean_literal, call_expression, check_expression, comparison_expression, conjunction_expression, constructor_expression, diagnostic, dictionary_literal, directive, disjunction_expression, equality_expression, fully_open_range, hex_literal, if_statement, infix_expression, integer_literal, key_path_expression, key_path_string_expression, lambda_literal, line_string_literal, macro_invocation, multi_line_string_literal, multiplicative_expression, navigation_expression, "nil", nil_coalescing_expression, oct_literal, open_end_range_expression, open_start_range_expression, optional_chain_marker, playground_literal, postfix_expression, prefix_expression, range_expression, raw_string_literal, real_literal, referenceable_operator, regex_literal, selector_expression, self_expression, simple_identifier, special_literal, super_expression, switch_statement, ternary_expression, try_expression, tuple_expression, value_pack_expansion, value_parameter_pack] + expr: expression try_operator: tuple_expression: name*: simple_identifier - value+: [additive_expression, array_literal, as_expression, assignment, await_expression, bin_literal, bitwise_operation, boolean_literal, call_expression, check_expression, comparison_expression, conjunction_expression, constructor_expression, diagnostic, dictionary_literal, directive, disjunction_expression, equality_expression, fully_open_range, hex_literal, if_statement, infix_expression, integer_literal, key_path_expression, key_path_string_expression, lambda_literal, line_string_literal, macro_invocation, multi_line_string_literal, multiplicative_expression, navigation_expression, "nil", nil_coalescing_expression, oct_literal, open_end_range_expression, open_start_range_expression, optional_chain_marker, playground_literal, postfix_expression, prefix_expression, range_expression, raw_string_literal, real_literal, referenceable_operator, regex_literal, selector_expression, self_expression, simple_identifier, special_literal, super_expression, switch_statement, ternary_expression, try_expression, tuple_expression, value_pack_expansion, value_parameter_pack] + value+: expression tuple_type: $children?: tuple_type_item element*: tuple_type_item @@ -433,7 +491,7 @@ named: $children?: type_modifiers name?: value_argument_label reference_specifier*: value_argument_label - value?: [additive_expression, array_literal, as_expression, assignment, await_expression, bin_literal, bitwise_operation, boolean_literal, call_expression, check_expression, comparison_expression, conjunction_expression, constructor_expression, diagnostic, dictionary_literal, directive, disjunction_expression, equality_expression, fully_open_range, hex_literal, if_statement, infix_expression, integer_literal, key_path_expression, key_path_string_expression, lambda_literal, line_string_literal, macro_invocation, multi_line_string_literal, multiplicative_expression, navigation_expression, "nil", nil_coalescing_expression, oct_literal, open_end_range_expression, open_start_range_expression, optional_chain_marker, playground_literal, postfix_expression, prefix_expression, range_expression, raw_string_literal, real_literal, referenceable_operator, regex_literal, selector_expression, self_expression, simple_identifier, special_literal, super_expression, switch_statement, ternary_expression, try_expression, tuple_expression, value_pack_expansion, value_parameter_pack] + value?: expression value_argument_label: $children: simple_identifier value_arguments: @@ -441,12 +499,12 @@ named: value_binding_pattern: mutability: ["let", "var"] value_pack_expansion: - $children?: [additive_expression, array_literal, as_expression, assignment, await_expression, bin_literal, bitwise_operation, boolean_literal, call_expression, check_expression, comparison_expression, conjunction_expression, constructor_expression, diagnostic, dictionary_literal, directive, disjunction_expression, equality_expression, fully_open_range, hex_literal, if_statement, infix_expression, integer_literal, key_path_expression, key_path_string_expression, lambda_literal, line_string_literal, macro_invocation, multi_line_string_literal, multiplicative_expression, navigation_expression, nil_coalescing_expression, oct_literal, open_end_range_expression, open_start_range_expression, optional_chain_marker, playground_literal, postfix_expression, prefix_expression, range_expression, raw_string_literal, real_literal, referenceable_operator, regex_literal, selector_expression, self_expression, simple_identifier, special_literal, super_expression, switch_statement, ternary_expression, try_expression, tuple_expression, value_pack_expansion, value_parameter_pack] + $children: expression value_parameter_pack: - $children?: [additive_expression, array_literal, as_expression, assignment, await_expression, bin_literal, bitwise_operation, boolean_literal, call_expression, check_expression, comparison_expression, conjunction_expression, constructor_expression, diagnostic, dictionary_literal, directive, disjunction_expression, equality_expression, fully_open_range, hex_literal, if_statement, infix_expression, integer_literal, key_path_expression, key_path_string_expression, lambda_literal, line_string_literal, macro_invocation, multi_line_string_literal, multiplicative_expression, navigation_expression, nil_coalescing_expression, oct_literal, open_end_range_expression, open_start_range_expression, optional_chain_marker, playground_literal, postfix_expression, prefix_expression, range_expression, raw_string_literal, real_literal, referenceable_operator, regex_literal, selector_expression, self_expression, simple_identifier, special_literal, super_expression, switch_statement, ternary_expression, try_expression, tuple_expression, value_pack_expansion, value_parameter_pack] + $children: expression visibility_modifier: where_clause: - $children+: [additive_expression, array_literal, as_expression, assignment, await_expression, bin_literal, bitwise_operation, boolean_literal, call_expression, check_expression, comparison_expression, conjunction_expression, constructor_expression, diagnostic, dictionary_literal, directive, disjunction_expression, equality_expression, fully_open_range, hex_literal, if_statement, infix_expression, integer_literal, key_path_expression, key_path_string_expression, lambda_literal, line_string_literal, macro_invocation, multi_line_string_literal, multiplicative_expression, navigation_expression, nil_coalescing_expression, oct_literal, open_end_range_expression, open_start_range_expression, optional_chain_marker, playground_literal, postfix_expression, prefix_expression, range_expression, raw_string_literal, real_literal, referenceable_operator, regex_literal, selector_expression, self_expression, simple_identifier, special_literal, super_expression, switch_statement, ternary_expression, try_expression, tuple_expression, value_pack_expansion, value_parameter_pack, where_keyword] + $children+: [expression, where_keyword] where_keyword: while_statement: $children?: statements From 9abfaca98ce3dd341a3325e44c9ee4d8d23c9216 Mon Sep 17 00:00:00 2001 From: Taus Date: Fri, 8 May 2026 15:18:02 +0000 Subject: [PATCH 244/260] unified: regenerate files --- unified/ql/lib/codeql/unified/Ast.qll | 140 +++++----- unified/ql/lib/unified.dbscheme | 381 +++++++++----------------- 2 files changed, 191 insertions(+), 330 deletions(-) diff --git a/unified/ql/lib/codeql/unified/Ast.qll b/unified/ql/lib/codeql/unified/Ast.qll index cbf7dad7b38f..d054ca994354 100644 --- a/unified/ql/lib/codeql/unified/Ast.qll +++ b/unified/ql/lib/codeql/unified/Ast.qll @@ -87,19 +87,13 @@ module Swift { ) } - /** A class representing `_expression` tokens. */ - class UnderscoreExpression extends @swift_token__expression, Token { - /** Gets the name of the primary QL class for this element. */ - final override string getAPrimaryQlClass() { result = "UnderscoreExpression" } - } - /** A class representing `additive_expression` nodes. */ class AdditiveExpression extends @swift_additive_expression, AstNode { /** Gets the name of the primary QL class for this element. */ final override string getAPrimaryQlClass() { result = "AdditiveExpression" } /** Gets the node corresponding to the field `lhs`. */ - final AstNode getLhs() { swift_additive_expression_def(this, result, _, _) } + final Expression getLhs() { swift_additive_expression_def(this, result, _, _) } /** Gets the node corresponding to the field `op`. */ final string getOp() { @@ -111,7 +105,7 @@ module Swift { } /** Gets the node corresponding to the field `rhs`. */ - final AstNode getRhs() { swift_additive_expression_def(this, _, _, result) } + final Expression getRhs() { swift_additive_expression_def(this, _, _, result) } /** Gets a field or child node of this node. */ final override AstNode getAFieldOrChild() { @@ -126,7 +120,7 @@ module Swift { final override string getAPrimaryQlClass() { result = "ArrayLiteral" } /** Gets the node corresponding to the field `element`. */ - final AstNode getElement(int i) { swift_array_literal_element(this, i, result) } + final Expression getElement(int i) { swift_array_literal_element(this, i, result) } /** Gets a field or child node of this node. */ final override AstNode getAFieldOrChild() { swift_array_literal_element(this, _, result) } @@ -155,7 +149,7 @@ module Swift { final override string getAPrimaryQlClass() { result = "AsExpression" } /** Gets the node corresponding to the field `expr`. */ - final AstNode getExpr() { swift_as_expression_def(this, result, _, _) } + final Expression getExpr() { swift_as_expression_def(this, result, _, _) } /** Gets the node corresponding to the field `name`. */ final AstNode getName() { swift_as_expression_def(this, _, result, _) } @@ -204,7 +198,7 @@ module Swift { } /** Gets the node corresponding to the field `result`. */ - final AstNode getResult() { swift_assignment_def(this, _, result, _) } + final Expression getResult() { swift_assignment_def(this, _, result, _) } /** Gets the node corresponding to the field `target`. */ final DirectlyAssignableExpression getTarget() { swift_assignment_def(this, _, _, result) } @@ -277,10 +271,10 @@ module Swift { final override string getAPrimaryQlClass() { result = "AwaitExpression" } /** Gets the node corresponding to the field `expr`. */ - final AstNode getExpr() { swift_await_expression_expr(this, result) } + final Expression getExpr() { swift_await_expression_expr(this, result) } /** Gets the child of this node. */ - final AstNode getChild() { swift_await_expression_child(this, result) } + final Expression getChild() { swift_await_expression_child(this, result) } /** Gets a field or child node of this node. */ final override AstNode getAFieldOrChild() { @@ -306,7 +300,7 @@ module Swift { final override string getAPrimaryQlClass() { result = "BitwiseOperation" } /** Gets the node corresponding to the field `lhs`. */ - final AstNode getLhs() { swift_bitwise_operation_def(this, result, _, _) } + final Expression getLhs() { swift_bitwise_operation_def(this, result, _, _) } /** Gets the node corresponding to the field `op`. */ final string getOp() { @@ -324,7 +318,7 @@ module Swift { } /** Gets the node corresponding to the field `rhs`. */ - final AstNode getRhs() { swift_bitwise_operation_def(this, _, _, result) } + final Expression getRhs() { swift_bitwise_operation_def(this, _, _, result) } /** Gets a field or child node of this node. */ final override AstNode getAFieldOrChild() { @@ -389,7 +383,7 @@ module Swift { final AstNode getName() { swift_capture_list_item_def(this, result) } /** Gets the node corresponding to the field `value`. */ - final AstNode getValue() { swift_capture_list_item_value(this, result) } + final Expression getValue() { swift_capture_list_item_value(this, result) } /** Gets the child of this node. */ final OwnershipModifier getChild() { swift_capture_list_item_child(this, result) } @@ -441,7 +435,7 @@ module Swift { } /** Gets the node corresponding to the field `target`. */ - final AstNode getTarget() { swift_check_expression_def(this, _, _, result) } + final Expression getTarget() { swift_check_expression_def(this, _, _, result) } /** Gets the node corresponding to the field `type`. */ final AstNode getType(int i) { swift_check_expression_type(this, i, result) } @@ -515,7 +509,7 @@ module Swift { final override string getAPrimaryQlClass() { result = "ComparisonExpression" } /** Gets the node corresponding to the field `lhs`. */ - final AstNode getLhs() { swift_comparison_expression_def(this, result, _, _) } + final Expression getLhs() { swift_comparison_expression_def(this, result, _, _) } /** Gets the node corresponding to the field `op`. */ final string getOp() { @@ -531,7 +525,7 @@ module Swift { } /** Gets the node corresponding to the field `rhs`. */ - final AstNode getRhs() { swift_comparison_expression_def(this, _, _, result) } + final Expression getRhs() { swift_comparison_expression_def(this, _, _, result) } /** Gets a field or child node of this node. */ final override AstNode getAFieldOrChild() { @@ -594,7 +588,7 @@ module Swift { final override string getAPrimaryQlClass() { result = "ConjunctionExpression" } /** Gets the node corresponding to the field `lhs`. */ - final AstNode getLhs() { swift_conjunction_expression_def(this, result, _, _) } + final Expression getLhs() { swift_conjunction_expression_def(this, result, _, _) } /** Gets the node corresponding to the field `op`. */ final string getOp() { @@ -604,7 +598,7 @@ module Swift { } /** Gets the node corresponding to the field `rhs`. */ - final AstNode getRhs() { swift_conjunction_expression_def(this, _, _, result) } + final Expression getRhs() { swift_conjunction_expression_def(this, _, _, result) } /** Gets a field or child node of this node. */ final override AstNode getAFieldOrChild() { @@ -655,7 +649,7 @@ module Swift { final override string getAPrimaryQlClass() { result = "ControlTransferStatement" } /** Gets the node corresponding to the field `result`. */ - final AstNode getResult() { swift_control_transfer_statement_result(this, result) } + final Expression getResult() { swift_control_transfer_statement_result(this, result) } /** Gets the `i`th child of this node. */ final AstNode getChild(int i) { swift_control_transfer_statement_child(this, i, result) } @@ -726,10 +720,10 @@ module Swift { final override string getAPrimaryQlClass() { result = "DictionaryLiteral" } /** Gets the node corresponding to the field `key`. */ - final AstNode getKey(int i) { swift_dictionary_literal_key(this, i, result) } + final Expression getKey(int i) { swift_dictionary_literal_key(this, i, result) } /** Gets the node corresponding to the field `value`. */ - final AstNode getValue(int i) { swift_dictionary_literal_value(this, i, result) } + final Expression getValue(int i) { swift_dictionary_literal_value(this, i, result) } /** Gets a field or child node of this node. */ final override AstNode getAFieldOrChild() { @@ -790,11 +784,11 @@ module Swift { final override string getAPrimaryQlClass() { result = "DirectlyAssignableExpression" } /** Gets the child of this node. */ - final AstNode getChild() { swift_directly_assignable_expression_child(this, result) } + final Expression getChild() { swift_directly_assignable_expression_def(this, result) } /** Gets a field or child node of this node. */ final override AstNode getAFieldOrChild() { - swift_directly_assignable_expression_child(this, result) + swift_directly_assignable_expression_def(this, result) } } @@ -804,7 +798,7 @@ module Swift { final override string getAPrimaryQlClass() { result = "DisjunctionExpression" } /** Gets the node corresponding to the field `lhs`. */ - final AstNode getLhs() { swift_disjunction_expression_def(this, result, _, _) } + final Expression getLhs() { swift_disjunction_expression_def(this, result, _, _) } /** Gets the node corresponding to the field `op`. */ final string getOp() { @@ -814,7 +808,7 @@ module Swift { } /** Gets the node corresponding to the field `rhs`. */ - final AstNode getRhs() { swift_disjunction_expression_def(this, _, _, result) } + final Expression getRhs() { swift_disjunction_expression_def(this, _, _, result) } /** Gets a field or child node of this node. */ final override AstNode getAFieldOrChild() { @@ -867,7 +861,7 @@ module Swift { final SimpleIdentifier getName(int i) { swift_enum_entry_name(this, i, result) } /** Gets the node corresponding to the field `raw_value`. */ - final AstNode getRawValue(int i) { swift_enum_entry_raw_value(this, i, result) } + final Expression getRawValue(int i) { swift_enum_entry_raw_value(this, i, result) } /** Gets the child of this node. */ final Modifiers getChild() { swift_enum_entry_child(this, result) } @@ -933,7 +927,7 @@ module Swift { final override string getAPrimaryQlClass() { result = "EqualityExpression" } /** Gets the node corresponding to the field `lhs`. */ - final AstNode getLhs() { swift_equality_expression_def(this, result, _, _) } + final Expression getLhs() { swift_equality_expression_def(this, result, _, _) } /** Gets the node corresponding to the field `op`. */ final string getOp() { @@ -949,7 +943,7 @@ module Swift { } /** Gets the node corresponding to the field `rhs`. */ - final AstNode getRhs() { swift_equality_expression_def(this, _, _, result) } + final Expression getRhs() { swift_equality_expression_def(this, _, _, result) } /** Gets a field or child node of this node. */ final override AstNode getAFieldOrChild() { @@ -970,6 +964,8 @@ module Swift { final override AstNode getAFieldOrChild() { swift_existential_type_def(this, result) } } + class Expression extends @swift_expression, AstNode { } + /** A class representing `external_macro_definition` nodes. */ class ExternalMacroDefinition extends @swift_external_macro_definition, AstNode { /** Gets the name of the primary QL class for this element. */ @@ -988,7 +984,7 @@ module Swift { final override string getAPrimaryQlClass() { result = "ForStatement" } /** Gets the node corresponding to the field `collection`. */ - final AstNode getCollection() { swift_for_statement_def(this, result, _) } + final Expression getCollection() { swift_for_statement_def(this, result, _) } /** Gets the node corresponding to the field `item`. */ final Pattern getItem() { swift_for_statement_def(this, _, result) } @@ -1031,7 +1027,7 @@ module Swift { final FunctionBody getBody() { swift_function_declaration_def(this, result) } /** Gets the node corresponding to the field `default_value`. */ - final AstNode getDefaultValue(int i) { + final Expression getDefaultValue(int i) { swift_function_declaration_default_value(this, i, result) } @@ -1193,13 +1189,13 @@ module Swift { final override string getAPrimaryQlClass() { result = "InfixExpression" } /** Gets the node corresponding to the field `lhs`. */ - final AstNode getLhs() { swift_infix_expression_def(this, result, _, _) } + final Expression getLhs() { swift_infix_expression_def(this, result, _, _) } /** Gets the node corresponding to the field `op`. */ final CustomOperator getOp() { swift_infix_expression_def(this, _, result, _) } /** Gets the node corresponding to the field `rhs`. */ - final AstNode getRhs() { swift_infix_expression_def(this, _, _, result) } + final Expression getRhs() { swift_infix_expression_def(this, _, _, result) } /** Gets a field or child node of this node. */ final override AstNode getAFieldOrChild() { @@ -1266,7 +1262,9 @@ module Swift { final FunctionBody getBody() { swift_init_declaration_body(this, result) } /** Gets the node corresponding to the field `default_value`. */ - final AstNode getDefaultValue(int i) { swift_init_declaration_default_value(this, i, result) } + final Expression getDefaultValue(int i) { + swift_init_declaration_default_value(this, i, result) + } /** Gets the node corresponding to the field `name`. */ final string getName() { @@ -1304,7 +1302,7 @@ module Swift { } /** Gets the node corresponding to the field `value`. */ - final AstNode getValue() { swift_interpolated_expression_value(this, result) } + final Expression getValue() { swift_interpolated_expression_value(this, result) } /** Gets the child of this node. */ final TypeModifiers getChild() { swift_interpolated_expression_child(this, result) } @@ -1336,12 +1334,10 @@ module Swift { final override string getAPrimaryQlClass() { result = "KeyPathStringExpression" } /** Gets the child of this node. */ - final AstNode getChild() { swift_key_path_string_expression_child(this, result) } + final Expression getChild() { swift_key_path_string_expression_def(this, result) } /** Gets a field or child node of this node. */ - final override AstNode getAFieldOrChild() { - swift_key_path_string_expression_child(this, result) - } + final override AstNode getAFieldOrChild() { swift_key_path_string_expression_def(this, result) } } /** A class representing `lambda_function_type` nodes. */ @@ -1462,7 +1458,9 @@ module Swift { final override string getAPrimaryQlClass() { result = "MacroDeclaration" } /** Gets the node corresponding to the field `default_value`. */ - final AstNode getDefaultValue(int i) { swift_macro_declaration_default_value(this, i, result) } + final Expression getDefaultValue(int i) { + swift_macro_declaration_default_value(this, i, result) + } /** Gets the node corresponding to the field `definition`. */ final MacroDefinition getDefinition() { swift_macro_declaration_definition(this, result) } @@ -1582,7 +1580,7 @@ module Swift { final override string getAPrimaryQlClass() { result = "MultiplicativeExpression" } /** Gets the node corresponding to the field `lhs`. */ - final AstNode getLhs() { swift_multiplicative_expression_def(this, result, _, _) } + final Expression getLhs() { swift_multiplicative_expression_def(this, result, _, _) } /** Gets the node corresponding to the field `op`. */ final string getOp() { @@ -1596,7 +1594,7 @@ module Swift { } /** Gets the node corresponding to the field `rhs`. */ - final AstNode getRhs() { swift_multiplicative_expression_def(this, _, _, result) } + final Expression getRhs() { swift_multiplicative_expression_def(this, _, _, result) } /** Gets a field or child node of this node. */ final override AstNode getAFieldOrChild() { @@ -1651,10 +1649,10 @@ module Swift { final override string getAPrimaryQlClass() { result = "NilCoalescingExpression" } /** Gets the node corresponding to the field `if_nil`. */ - final AstNode getIfNil() { swift_nil_coalescing_expression_def(this, result, _) } + final Expression getIfNil() { swift_nil_coalescing_expression_def(this, result, _) } /** Gets the node corresponding to the field `value`. */ - final AstNode getValue() { swift_nil_coalescing_expression_def(this, _, result) } + final Expression getValue() { swift_nil_coalescing_expression_def(this, _, result) } /** Gets a field or child node of this node. */ final override AstNode getAFieldOrChild() { @@ -1687,7 +1685,7 @@ module Swift { final override string getAPrimaryQlClass() { result = "OpenEndRangeExpression" } /** Gets the node corresponding to the field `start`. */ - final AstNode getStart() { swift_open_end_range_expression_def(this, result) } + final Expression getStart() { swift_open_end_range_expression_def(this, result) } /** Gets a field or child node of this node. */ final override AstNode getAFieldOrChild() { swift_open_end_range_expression_def(this, result) } @@ -1699,7 +1697,7 @@ module Swift { final override string getAPrimaryQlClass() { result = "OpenStartRangeExpression" } /** Gets the node corresponding to the field `end`. */ - final AstNode getEnd() { swift_open_start_range_expression_def(this, result) } + final Expression getEnd() { swift_open_start_range_expression_def(this, result) } /** Gets a field or child node of this node. */ final override AstNode getAFieldOrChild() { @@ -1725,10 +1723,10 @@ module Swift { final override string getAPrimaryQlClass() { result = "OptionalChainMarker" } /** Gets the child of this node. */ - final AstNode getChild() { swift_optional_chain_marker_child(this, result) } + final Expression getChild() { swift_optional_chain_marker_def(this, result) } /** Gets a field or child node of this node. */ - final override AstNode getAFieldOrChild() { swift_optional_chain_marker_child(this, result) } + final override AstNode getAFieldOrChild() { swift_optional_chain_marker_def(this, result) } } /** A class representing `optional_type` nodes. */ @@ -1821,7 +1819,7 @@ module Swift { final override string getAPrimaryQlClass() { result = "PlaygroundLiteral" } /** Gets the `i`th child of this node. */ - final AstNode getChild(int i) { swift_playground_literal_child(this, i, result) } + final Expression getChild(int i) { swift_playground_literal_child(this, i, result) } /** Gets a field or child node of this node. */ final override AstNode getAFieldOrChild() { swift_playground_literal_child(this, _, result) } @@ -1836,7 +1834,7 @@ module Swift { final AstNode getOperation() { swift_postfix_expression_def(this, result, _) } /** Gets the node corresponding to the field `target`. */ - final AstNode getTarget() { swift_postfix_expression_def(this, _, result) } + final Expression getTarget() { swift_postfix_expression_def(this, _, result) } /** Gets a field or child node of this node. */ final override AstNode getAFieldOrChild() { @@ -1897,7 +1895,7 @@ module Swift { final AstNode getOperation() { swift_prefix_expression_def(this, result, _) } /** Gets the node corresponding to the field `target`. */ - final AstNode getTarget() { swift_prefix_expression_def(this, _, result) } + final Expression getTarget() { swift_prefix_expression_def(this, _, result) } /** Gets a field or child node of this node. */ final override AstNode getAFieldOrChild() { @@ -1925,7 +1923,7 @@ module Swift { final Pattern getName(int i) { swift_property_declaration_name(this, i, result) } /** Gets the node corresponding to the field `value`. */ - final AstNode getValue(int i) { swift_property_declaration_value(this, i, result) } + final Expression getValue(int i) { swift_property_declaration_value(this, i, result) } /** Gets the `i`th child of this node. */ final AstNode getChild(int i) { swift_property_declaration_child(this, i, result) } @@ -2011,7 +2009,7 @@ module Swift { final override string getAPrimaryQlClass() { result = "ProtocolFunctionDeclaration" } /** Gets the node corresponding to the field `default_value`. */ - final AstNode getDefaultValue(int i) { + final Expression getDefaultValue(int i) { swift_protocol_function_declaration_default_value(this, i, result) } @@ -2073,7 +2071,7 @@ module Swift { final override string getAPrimaryQlClass() { result = "RangeExpression" } /** Gets the node corresponding to the field `end`. */ - final AstNode getEnd() { swift_range_expression_def(this, result, _, _) } + final Expression getEnd() { swift_range_expression_def(this, result, _, _) } /** Gets the node corresponding to the field `op`. */ final string getOp() { @@ -2085,7 +2083,7 @@ module Swift { } /** Gets the node corresponding to the field `start`. */ - final AstNode getStart() { swift_range_expression_def(this, _, _, result) } + final Expression getStart() { swift_range_expression_def(this, _, _, result) } /** Gets a field or child node of this node. */ final override AstNode getAFieldOrChild() { @@ -2214,10 +2212,10 @@ module Swift { final override string getAPrimaryQlClass() { result = "SelectorExpression" } /** Gets the child of this node. */ - final AstNode getChild() { swift_selector_expression_child(this, result) } + final Expression getChild() { swift_selector_expression_def(this, result) } /** Gets a field or child node of this node. */ - final override AstNode getAFieldOrChild() { swift_selector_expression_child(this, result) } + final override AstNode getAFieldOrChild() { swift_selector_expression_def(this, result) } } /** A class representing `self_expression` tokens. */ @@ -2298,7 +2296,7 @@ module Swift { final override string getAPrimaryQlClass() { result = "SubscriptDeclaration" } /** Gets the node corresponding to the field `default_value`. */ - final AstNode getDefaultValue(int i) { + final Expression getDefaultValue(int i) { swift_subscript_declaration_default_value(this, i, result) } @@ -2368,7 +2366,7 @@ module Swift { final override string getAPrimaryQlClass() { result = "SwitchStatement" } /** Gets the node corresponding to the field `expr`. */ - final AstNode getExpr() { swift_switch_statement_def(this, result) } + final Expression getExpr() { swift_switch_statement_def(this, result) } /** Gets the `i`th child of this node. */ final SwitchEntry getChild(int i) { swift_switch_statement_child(this, i, result) } @@ -2385,13 +2383,13 @@ module Swift { final override string getAPrimaryQlClass() { result = "TernaryExpression" } /** Gets the node corresponding to the field `condition`. */ - final AstNode getCondition() { swift_ternary_expression_def(this, result, _, _) } + final Expression getCondition() { swift_ternary_expression_def(this, result, _, _) } /** Gets the node corresponding to the field `if_false`. */ - final AstNode getIfFalse() { swift_ternary_expression_def(this, _, result, _) } + final Expression getIfFalse() { swift_ternary_expression_def(this, _, result, _) } /** Gets the node corresponding to the field `if_true`. */ - final AstNode getIfTrue() { swift_ternary_expression_def(this, _, _, result) } + final Expression getIfTrue() { swift_ternary_expression_def(this, _, _, result) } /** Gets a field or child node of this node. */ final override AstNode getAFieldOrChild() { @@ -2431,7 +2429,7 @@ module Swift { final override string getAPrimaryQlClass() { result = "TryExpression" } /** Gets the node corresponding to the field `expr`. */ - final AstNode getExpr() { swift_try_expression_def(this, result, _) } + final Expression getExpr() { swift_try_expression_def(this, result, _) } /** Gets the child of this node. */ final TryOperator getChild() { swift_try_expression_def(this, _, result) } @@ -2457,7 +2455,7 @@ module Swift { final SimpleIdentifier getName(int i) { swift_tuple_expression_name(this, i, result) } /** Gets the node corresponding to the field `value`. */ - final AstNode getValue(int i) { swift_tuple_expression_value(this, i, result) } + final Expression getValue(int i) { swift_tuple_expression_value(this, i, result) } /** Gets a field or child node of this node. */ final override AstNode getAFieldOrChild() { @@ -2699,7 +2697,7 @@ module Swift { } /** Gets the node corresponding to the field `value`. */ - final AstNode getValue() { swift_value_argument_value(this, result) } + final Expression getValue() { swift_value_argument_value(this, result) } /** Gets the child of this node. */ final TypeModifiers getChild() { swift_value_argument_child(this, result) } @@ -2761,10 +2759,10 @@ module Swift { final override string getAPrimaryQlClass() { result = "ValuePackExpansion" } /** Gets the child of this node. */ - final AstNode getChild() { swift_value_pack_expansion_child(this, result) } + final Expression getChild() { swift_value_pack_expansion_def(this, result) } /** Gets a field or child node of this node. */ - final override AstNode getAFieldOrChild() { swift_value_pack_expansion_child(this, result) } + final override AstNode getAFieldOrChild() { swift_value_pack_expansion_def(this, result) } } /** A class representing `value_parameter_pack` nodes. */ @@ -2773,10 +2771,10 @@ module Swift { final override string getAPrimaryQlClass() { result = "ValueParameterPack" } /** Gets the child of this node. */ - final AstNode getChild() { swift_value_parameter_pack_child(this, result) } + final Expression getChild() { swift_value_parameter_pack_def(this, result) } /** Gets a field or child node of this node. */ - final override AstNode getAFieldOrChild() { swift_value_parameter_pack_child(this, result) } + final override AstNode getAFieldOrChild() { swift_value_parameter_pack_def(this, result) } } /** A class representing `visibility_modifier` tokens. */ diff --git a/unified/ql/lib/unified.dbscheme b/unified/ql/lib/unified.dbscheme index ecd726d46311..3466de92c921 100644 --- a/unified/ql/lib/unified.dbscheme +++ b/unified/ql/lib/unified.dbscheme @@ -132,30 +132,24 @@ overlayChangedFiles( ); /*- Swift dbscheme -*/ -@swift_additive_expression_lhs_type = @swift_additive_expression | @swift_array_literal | @swift_as_expression | @swift_assignment | @swift_await_expression | @swift_bitwise_operation | @swift_call_expression | @swift_check_expression | @swift_comparison_expression | @swift_conjunction_expression | @swift_constructor_expression | @swift_dictionary_literal | @swift_directive | @swift_disjunction_expression | @swift_equality_expression | @swift_if_statement | @swift_infix_expression | @swift_key_path_expression | @swift_key_path_string_expression | @swift_lambda_literal | @swift_line_string_literal | @swift_macro_invocation | @swift_multi_line_string_literal | @swift_multiplicative_expression | @swift_navigation_expression | @swift_nil_coalescing_expression | @swift_open_end_range_expression | @swift_open_start_range_expression | @swift_optional_chain_marker | @swift_playground_literal | @swift_postfix_expression | @swift_prefix_expression | @swift_range_expression | @swift_raw_string_literal | @swift_referenceable_operator | @swift_reserved_word | @swift_selector_expression | @swift_switch_statement | @swift_ternary_expression | @swift_token_bin_literal | @swift_token_boolean_literal | @swift_token_diagnostic | @swift_token_fully_open_range | @swift_token_hex_literal | @swift_token_integer_literal | @swift_token_oct_literal | @swift_token_real_literal | @swift_token_regex_literal | @swift_token_self_expression | @swift_token_simple_identifier | @swift_token_special_literal | @swift_token_super_expression | @swift_try_expression | @swift_tuple_expression | @swift_value_pack_expansion | @swift_value_parameter_pack - case @swift_additive_expression.op of 0 = @swift_additive_expression_plus | 1 = @swift_additive_expression_minus ; -@swift_additive_expression_rhs_type = @swift_additive_expression | @swift_array_literal | @swift_as_expression | @swift_assignment | @swift_await_expression | @swift_bitwise_operation | @swift_call_expression | @swift_check_expression | @swift_comparison_expression | @swift_conjunction_expression | @swift_constructor_expression | @swift_dictionary_literal | @swift_directive | @swift_disjunction_expression | @swift_equality_expression | @swift_if_statement | @swift_infix_expression | @swift_key_path_expression | @swift_key_path_string_expression | @swift_lambda_literal | @swift_line_string_literal | @swift_macro_invocation | @swift_multi_line_string_literal | @swift_multiplicative_expression | @swift_navigation_expression | @swift_nil_coalescing_expression | @swift_open_end_range_expression | @swift_open_start_range_expression | @swift_optional_chain_marker | @swift_playground_literal | @swift_postfix_expression | @swift_prefix_expression | @swift_range_expression | @swift_raw_string_literal | @swift_referenceable_operator | @swift_reserved_word | @swift_selector_expression | @swift_switch_statement | @swift_ternary_expression | @swift_token_bin_literal | @swift_token_boolean_literal | @swift_token_diagnostic | @swift_token_fully_open_range | @swift_token_hex_literal | @swift_token_integer_literal | @swift_token_oct_literal | @swift_token_real_literal | @swift_token_regex_literal | @swift_token_self_expression | @swift_token_simple_identifier | @swift_token_special_literal | @swift_token_super_expression | @swift_try_expression | @swift_tuple_expression | @swift_value_pack_expansion | @swift_value_parameter_pack - swift_additive_expression_def( unique int id: @swift_additive_expression, - int lhs: @swift_additive_expression_lhs_type ref, + int lhs: @swift_expression ref, int op: int ref, - int rhs: @swift_additive_expression_rhs_type ref + int rhs: @swift_expression ref ); -@swift_array_literal_element_type = @swift_additive_expression | @swift_array_literal | @swift_as_expression | @swift_assignment | @swift_await_expression | @swift_bitwise_operation | @swift_call_expression | @swift_check_expression | @swift_comparison_expression | @swift_conjunction_expression | @swift_constructor_expression | @swift_dictionary_literal | @swift_directive | @swift_disjunction_expression | @swift_equality_expression | @swift_if_statement | @swift_infix_expression | @swift_key_path_expression | @swift_key_path_string_expression | @swift_lambda_literal | @swift_line_string_literal | @swift_macro_invocation | @swift_multi_line_string_literal | @swift_multiplicative_expression | @swift_navigation_expression | @swift_nil_coalescing_expression | @swift_open_end_range_expression | @swift_open_start_range_expression | @swift_optional_chain_marker | @swift_playground_literal | @swift_postfix_expression | @swift_prefix_expression | @swift_range_expression | @swift_raw_string_literal | @swift_referenceable_operator | @swift_reserved_word | @swift_selector_expression | @swift_switch_statement | @swift_ternary_expression | @swift_token_bin_literal | @swift_token_boolean_literal | @swift_token_diagnostic | @swift_token_fully_open_range | @swift_token_hex_literal | @swift_token_integer_literal | @swift_token_oct_literal | @swift_token_real_literal | @swift_token_regex_literal | @swift_token_self_expression | @swift_token_simple_identifier | @swift_token_special_literal | @swift_token_super_expression | @swift_try_expression | @swift_tuple_expression | @swift_value_pack_expansion | @swift_value_parameter_pack - #keyset[swift_array_literal, index] swift_array_literal_element( int swift_array_literal: @swift_array_literal ref, int index: int ref, - unique int element: @swift_array_literal_element_type ref + unique int element: @swift_expression ref ); swift_array_literal_def( @@ -178,8 +172,6 @@ swift_array_type_def( int name: @swift_array_type_name_type ref ); -@swift_as_expression_expr_type = @swift_additive_expression | @swift_array_literal | @swift_as_expression | @swift_assignment | @swift_await_expression | @swift_bitwise_operation | @swift_call_expression | @swift_check_expression | @swift_comparison_expression | @swift_conjunction_expression | @swift_constructor_expression | @swift_dictionary_literal | @swift_directive | @swift_disjunction_expression | @swift_equality_expression | @swift_if_statement | @swift_infix_expression | @swift_key_path_expression | @swift_key_path_string_expression | @swift_lambda_literal | @swift_line_string_literal | @swift_macro_invocation | @swift_multi_line_string_literal | @swift_multiplicative_expression | @swift_navigation_expression | @swift_nil_coalescing_expression | @swift_open_end_range_expression | @swift_open_start_range_expression | @swift_optional_chain_marker | @swift_playground_literal | @swift_postfix_expression | @swift_prefix_expression | @swift_range_expression | @swift_raw_string_literal | @swift_referenceable_operator | @swift_reserved_word | @swift_selector_expression | @swift_switch_statement | @swift_ternary_expression | @swift_token_bin_literal | @swift_token_boolean_literal | @swift_token_diagnostic | @swift_token_fully_open_range | @swift_token_hex_literal | @swift_token_integer_literal | @swift_token_oct_literal | @swift_token_real_literal | @swift_token_regex_literal | @swift_token_self_expression | @swift_token_simple_identifier | @swift_token_special_literal | @swift_token_super_expression | @swift_try_expression | @swift_tuple_expression | @swift_value_pack_expansion | @swift_value_parameter_pack - @swift_as_expression_name_type = @swift_array_type | @swift_dictionary_type | @swift_existential_type | @swift_function_type | @swift_metatype | @swift_opaque_type | @swift_optional_type | @swift_protocol_composition_type | @swift_suppressed_constraint | @swift_tuple_type | @swift_type_pack_expansion | @swift_type_parameter_pack | @swift_user_type @swift_as_expression_type_type = @swift_array_type | @swift_dictionary_type | @swift_existential_type | @swift_function_type | @swift_metatype | @swift_opaque_type | @swift_optional_type | @swift_protocol_composition_type | @swift_suppressed_constraint | @swift_tuple_type | @swift_type_modifiers | @swift_type_pack_expansion | @swift_type_parameter_pack | @swift_user_type @@ -193,7 +185,7 @@ swift_as_expression_type( swift_as_expression_def( unique int id: @swift_as_expression, - int expr: @swift_as_expression_expr_type ref, + int expr: @swift_expression ref, int name: @swift_as_expression_name_type ref, int child: @swift_token_as_operator ref ); @@ -208,12 +200,10 @@ case @swift_assignment.operator of ; -@swift_assignment_result_type = @swift_additive_expression | @swift_array_literal | @swift_as_expression | @swift_assignment | @swift_await_expression | @swift_bitwise_operation | @swift_call_expression | @swift_check_expression | @swift_comparison_expression | @swift_conjunction_expression | @swift_constructor_expression | @swift_dictionary_literal | @swift_directive | @swift_disjunction_expression | @swift_equality_expression | @swift_if_statement | @swift_infix_expression | @swift_key_path_expression | @swift_key_path_string_expression | @swift_lambda_literal | @swift_line_string_literal | @swift_macro_invocation | @swift_multi_line_string_literal | @swift_multiplicative_expression | @swift_navigation_expression | @swift_nil_coalescing_expression | @swift_open_end_range_expression | @swift_open_start_range_expression | @swift_optional_chain_marker | @swift_playground_literal | @swift_postfix_expression | @swift_prefix_expression | @swift_range_expression | @swift_raw_string_literal | @swift_referenceable_operator | @swift_reserved_word | @swift_selector_expression | @swift_switch_statement | @swift_ternary_expression | @swift_token_bin_literal | @swift_token_boolean_literal | @swift_token_diagnostic | @swift_token_fully_open_range | @swift_token_hex_literal | @swift_token_integer_literal | @swift_token_oct_literal | @swift_token_real_literal | @swift_token_regex_literal | @swift_token_self_expression | @swift_token_simple_identifier | @swift_token_special_literal | @swift_token_super_expression | @swift_try_expression | @swift_tuple_expression | @swift_value_pack_expansion | @swift_value_parameter_pack - swift_assignment_def( unique int id: @swift_assignment, int operator: int ref, - int result: @swift_assignment_result_type ref, + int result: @swift_expression ref, int target: @swift_directly_assignable_expression ref ); @@ -257,7 +247,7 @@ swift_associatedtype_declaration_def( unique int id: @swift_associatedtype_declaration ); -@swift_attribute_child_type = @swift_additive_expression | @swift_array_literal | @swift_as_expression | @swift_assignment | @swift_await_expression | @swift_bitwise_operation | @swift_call_expression | @swift_check_expression | @swift_comparison_expression | @swift_conjunction_expression | @swift_constructor_expression | @swift_dictionary_literal | @swift_directive | @swift_disjunction_expression | @swift_equality_expression | @swift_if_statement | @swift_infix_expression | @swift_key_path_expression | @swift_key_path_string_expression | @swift_lambda_literal | @swift_line_string_literal | @swift_macro_invocation | @swift_multi_line_string_literal | @swift_multiplicative_expression | @swift_navigation_expression | @swift_nil_coalescing_expression | @swift_open_end_range_expression | @swift_open_start_range_expression | @swift_optional_chain_marker | @swift_playground_literal | @swift_postfix_expression | @swift_prefix_expression | @swift_range_expression | @swift_raw_string_literal | @swift_referenceable_operator | @swift_selector_expression | @swift_switch_statement | @swift_ternary_expression | @swift_token_bin_literal | @swift_token_boolean_literal | @swift_token_diagnostic | @swift_token_fully_open_range | @swift_token_hex_literal | @swift_token_integer_literal | @swift_token_oct_literal | @swift_token_real_literal | @swift_token_regex_literal | @swift_token_self_expression | @swift_token_simple_identifier | @swift_token_special_literal | @swift_token_super_expression | @swift_try_expression | @swift_tuple_expression | @swift_user_type | @swift_value_pack_expansion | @swift_value_parameter_pack +@swift_attribute_child_type = @swift_expression | @swift_user_type #keyset[swift_attribute, index] swift_attribute_child( @@ -283,26 +273,20 @@ swift_availability_condition_def( unique int id: @swift_availability_condition ); -@swift_await_expression_expr_type = @swift_additive_expression | @swift_array_literal | @swift_as_expression | @swift_assignment | @swift_await_expression | @swift_bitwise_operation | @swift_call_expression | @swift_check_expression | @swift_comparison_expression | @swift_conjunction_expression | @swift_constructor_expression | @swift_dictionary_literal | @swift_directive | @swift_disjunction_expression | @swift_equality_expression | @swift_if_statement | @swift_infix_expression | @swift_key_path_expression | @swift_key_path_string_expression | @swift_lambda_literal | @swift_line_string_literal | @swift_macro_invocation | @swift_multi_line_string_literal | @swift_multiplicative_expression | @swift_navigation_expression | @swift_nil_coalescing_expression | @swift_open_end_range_expression | @swift_open_start_range_expression | @swift_optional_chain_marker | @swift_playground_literal | @swift_postfix_expression | @swift_prefix_expression | @swift_range_expression | @swift_raw_string_literal | @swift_referenceable_operator | @swift_reserved_word | @swift_selector_expression | @swift_switch_statement | @swift_ternary_expression | @swift_token_bin_literal | @swift_token_boolean_literal | @swift_token_diagnostic | @swift_token_fully_open_range | @swift_token_hex_literal | @swift_token_integer_literal | @swift_token_oct_literal | @swift_token_real_literal | @swift_token_regex_literal | @swift_token_self_expression | @swift_token_simple_identifier | @swift_token_special_literal | @swift_token_super_expression | @swift_try_expression | @swift_tuple_expression | @swift_value_pack_expansion | @swift_value_parameter_pack - swift_await_expression_expr( unique int swift_await_expression: @swift_await_expression ref, - unique int expr: @swift_await_expression_expr_type ref + unique int expr: @swift_expression ref ); -@swift_await_expression_child_type = @swift_additive_expression | @swift_array_literal | @swift_as_expression | @swift_assignment | @swift_await_expression | @swift_bitwise_operation | @swift_call_expression | @swift_check_expression | @swift_comparison_expression | @swift_conjunction_expression | @swift_constructor_expression | @swift_dictionary_literal | @swift_directive | @swift_disjunction_expression | @swift_equality_expression | @swift_if_statement | @swift_infix_expression | @swift_key_path_expression | @swift_key_path_string_expression | @swift_lambda_literal | @swift_line_string_literal | @swift_macro_invocation | @swift_multi_line_string_literal | @swift_multiplicative_expression | @swift_navigation_expression | @swift_nil_coalescing_expression | @swift_open_end_range_expression | @swift_open_start_range_expression | @swift_optional_chain_marker | @swift_playground_literal | @swift_postfix_expression | @swift_prefix_expression | @swift_range_expression | @swift_raw_string_literal | @swift_referenceable_operator | @swift_selector_expression | @swift_switch_statement | @swift_ternary_expression | @swift_token_bin_literal | @swift_token_boolean_literal | @swift_token_diagnostic | @swift_token_fully_open_range | @swift_token_hex_literal | @swift_token_integer_literal | @swift_token_oct_literal | @swift_token_real_literal | @swift_token_regex_literal | @swift_token_self_expression | @swift_token_simple_identifier | @swift_token_special_literal | @swift_token_super_expression | @swift_try_expression | @swift_tuple_expression | @swift_value_pack_expansion | @swift_value_parameter_pack - swift_await_expression_child( unique int swift_await_expression: @swift_await_expression ref, - unique int child: @swift_await_expression_child_type ref + unique int child: @swift_expression ref ); swift_await_expression_def( unique int id: @swift_await_expression ); -@swift_bitwise_operation_lhs_type = @swift_additive_expression | @swift_array_literal | @swift_as_expression | @swift_assignment | @swift_await_expression | @swift_bitwise_operation | @swift_call_expression | @swift_check_expression | @swift_comparison_expression | @swift_conjunction_expression | @swift_constructor_expression | @swift_dictionary_literal | @swift_directive | @swift_disjunction_expression | @swift_equality_expression | @swift_if_statement | @swift_infix_expression | @swift_key_path_expression | @swift_key_path_string_expression | @swift_lambda_literal | @swift_line_string_literal | @swift_macro_invocation | @swift_multi_line_string_literal | @swift_multiplicative_expression | @swift_navigation_expression | @swift_nil_coalescing_expression | @swift_open_end_range_expression | @swift_open_start_range_expression | @swift_optional_chain_marker | @swift_playground_literal | @swift_postfix_expression | @swift_prefix_expression | @swift_range_expression | @swift_raw_string_literal | @swift_referenceable_operator | @swift_reserved_word | @swift_selector_expression | @swift_switch_statement | @swift_ternary_expression | @swift_token_bin_literal | @swift_token_boolean_literal | @swift_token_diagnostic | @swift_token_fully_open_range | @swift_token_hex_literal | @swift_token_integer_literal | @swift_token_oct_literal | @swift_token_real_literal | @swift_token_regex_literal | @swift_token_self_expression | @swift_token_simple_identifier | @swift_token_special_literal | @swift_token_super_expression | @swift_try_expression | @swift_tuple_expression | @swift_value_pack_expansion | @swift_value_parameter_pack - case @swift_bitwise_operation.op of 0 = @swift_bitwise_operation_ampersand | 1 = @swift_bitwise_operation_langlelangle @@ -312,16 +296,14 @@ case @swift_bitwise_operation.op of ; -@swift_bitwise_operation_rhs_type = @swift_additive_expression | @swift_array_literal | @swift_as_expression | @swift_assignment | @swift_await_expression | @swift_bitwise_operation | @swift_call_expression | @swift_check_expression | @swift_comparison_expression | @swift_conjunction_expression | @swift_constructor_expression | @swift_dictionary_literal | @swift_directive | @swift_disjunction_expression | @swift_equality_expression | @swift_if_statement | @swift_infix_expression | @swift_key_path_expression | @swift_key_path_string_expression | @swift_lambda_literal | @swift_line_string_literal | @swift_macro_invocation | @swift_multi_line_string_literal | @swift_multiplicative_expression | @swift_navigation_expression | @swift_nil_coalescing_expression | @swift_open_end_range_expression | @swift_open_start_range_expression | @swift_optional_chain_marker | @swift_playground_literal | @swift_postfix_expression | @swift_prefix_expression | @swift_range_expression | @swift_raw_string_literal | @swift_referenceable_operator | @swift_reserved_word | @swift_selector_expression | @swift_switch_statement | @swift_ternary_expression | @swift_token_bin_literal | @swift_token_boolean_literal | @swift_token_diagnostic | @swift_token_fully_open_range | @swift_token_hex_literal | @swift_token_integer_literal | @swift_token_oct_literal | @swift_token_real_literal | @swift_token_regex_literal | @swift_token_self_expression | @swift_token_simple_identifier | @swift_token_special_literal | @swift_token_super_expression | @swift_try_expression | @swift_tuple_expression | @swift_value_pack_expansion | @swift_value_parameter_pack - swift_bitwise_operation_def( unique int id: @swift_bitwise_operation, - int lhs: @swift_bitwise_operation_lhs_type ref, + int lhs: @swift_expression ref, int op: int ref, - int rhs: @swift_bitwise_operation_rhs_type ref + int rhs: @swift_expression ref ); -@swift_call_expression_child_type = @swift_additive_expression | @swift_array_literal | @swift_as_expression | @swift_assignment | @swift_await_expression | @swift_bitwise_operation | @swift_call_expression | @swift_call_suffix | @swift_check_expression | @swift_comparison_expression | @swift_conjunction_expression | @swift_constructor_expression | @swift_dictionary_literal | @swift_directive | @swift_disjunction_expression | @swift_equality_expression | @swift_if_statement | @swift_infix_expression | @swift_key_path_expression | @swift_key_path_string_expression | @swift_lambda_literal | @swift_line_string_literal | @swift_macro_invocation | @swift_multi_line_string_literal | @swift_multiplicative_expression | @swift_navigation_expression | @swift_nil_coalescing_expression | @swift_open_end_range_expression | @swift_open_start_range_expression | @swift_optional_chain_marker | @swift_playground_literal | @swift_postfix_expression | @swift_prefix_expression | @swift_range_expression | @swift_raw_string_literal | @swift_referenceable_operator | @swift_selector_expression | @swift_switch_statement | @swift_ternary_expression | @swift_token_bin_literal | @swift_token_boolean_literal | @swift_token_diagnostic | @swift_token_fully_open_range | @swift_token_hex_literal | @swift_token_integer_literal | @swift_token_oct_literal | @swift_token_real_literal | @swift_token_regex_literal | @swift_token_self_expression | @swift_token_simple_identifier | @swift_token_special_literal | @swift_token_super_expression | @swift_try_expression | @swift_tuple_expression | @swift_value_pack_expansion | @swift_value_parameter_pack +@swift_call_expression_child_type = @swift_call_suffix | @swift_expression #keyset[swift_call_expression, index] swift_call_expression_child( @@ -367,11 +349,9 @@ swift_capture_list_def( @swift_capture_list_item_name_type = @swift_token_self_expression | @swift_token_simple_identifier -@swift_capture_list_item_value_type = @swift_additive_expression | @swift_array_literal | @swift_as_expression | @swift_assignment | @swift_await_expression | @swift_bitwise_operation | @swift_call_expression | @swift_check_expression | @swift_comparison_expression | @swift_conjunction_expression | @swift_constructor_expression | @swift_dictionary_literal | @swift_directive | @swift_disjunction_expression | @swift_equality_expression | @swift_if_statement | @swift_infix_expression | @swift_key_path_expression | @swift_key_path_string_expression | @swift_lambda_literal | @swift_line_string_literal | @swift_macro_invocation | @swift_multi_line_string_literal | @swift_multiplicative_expression | @swift_navigation_expression | @swift_nil_coalescing_expression | @swift_open_end_range_expression | @swift_open_start_range_expression | @swift_optional_chain_marker | @swift_playground_literal | @swift_postfix_expression | @swift_prefix_expression | @swift_range_expression | @swift_raw_string_literal | @swift_referenceable_operator | @swift_reserved_word | @swift_selector_expression | @swift_switch_statement | @swift_ternary_expression | @swift_token_bin_literal | @swift_token_boolean_literal | @swift_token_diagnostic | @swift_token_fully_open_range | @swift_token_hex_literal | @swift_token_integer_literal | @swift_token_oct_literal | @swift_token_real_literal | @swift_token_regex_literal | @swift_token_self_expression | @swift_token_simple_identifier | @swift_token_special_literal | @swift_token_super_expression | @swift_try_expression | @swift_tuple_expression | @swift_value_pack_expansion | @swift_value_parameter_pack - swift_capture_list_item_value( unique int swift_capture_list_item: @swift_capture_list_item ref, - unique int value: @swift_capture_list_item_value_type ref + unique int value: @swift_expression ref ); swift_capture_list_item_child( @@ -409,8 +389,6 @@ case @swift_check_expression.op of ; -@swift_check_expression_target_type = @swift_additive_expression | @swift_array_literal | @swift_as_expression | @swift_assignment | @swift_await_expression | @swift_bitwise_operation | @swift_call_expression | @swift_check_expression | @swift_comparison_expression | @swift_conjunction_expression | @swift_constructor_expression | @swift_dictionary_literal | @swift_directive | @swift_disjunction_expression | @swift_equality_expression | @swift_if_statement | @swift_infix_expression | @swift_key_path_expression | @swift_key_path_string_expression | @swift_lambda_literal | @swift_line_string_literal | @swift_macro_invocation | @swift_multi_line_string_literal | @swift_multiplicative_expression | @swift_navigation_expression | @swift_nil_coalescing_expression | @swift_open_end_range_expression | @swift_open_start_range_expression | @swift_optional_chain_marker | @swift_playground_literal | @swift_postfix_expression | @swift_prefix_expression | @swift_range_expression | @swift_raw_string_literal | @swift_referenceable_operator | @swift_reserved_word | @swift_selector_expression | @swift_switch_statement | @swift_ternary_expression | @swift_token_bin_literal | @swift_token_boolean_literal | @swift_token_diagnostic | @swift_token_fully_open_range | @swift_token_hex_literal | @swift_token_integer_literal | @swift_token_oct_literal | @swift_token_real_literal | @swift_token_regex_literal | @swift_token_self_expression | @swift_token_simple_identifier | @swift_token_special_literal | @swift_token_super_expression | @swift_try_expression | @swift_tuple_expression | @swift_value_pack_expansion | @swift_value_parameter_pack - @swift_check_expression_type_type = @swift_array_type | @swift_dictionary_type | @swift_existential_type | @swift_function_type | @swift_metatype | @swift_opaque_type | @swift_optional_type | @swift_protocol_composition_type | @swift_suppressed_constraint | @swift_tuple_type | @swift_type_modifiers | @swift_type_pack_expansion | @swift_type_parameter_pack | @swift_user_type #keyset[swift_check_expression, index] @@ -424,7 +402,7 @@ swift_check_expression_def( unique int id: @swift_check_expression, int name: @swift_check_expression_name_type ref, int op: int ref, - int target: @swift_check_expression_target_type ref + int target: @swift_expression ref ); @swift_class_body_child_type = @swift_associatedtype_declaration | @swift_class_declaration | @swift_deinit_declaration | @swift_function_declaration | @swift_import_declaration | @swift_init_declaration | @swift_operator_declaration | @swift_precedence_group_declaration | @swift_property_declaration | @swift_protocol_declaration | @swift_subscript_declaration | @swift_token_multiline_comment | @swift_typealias_declaration @@ -469,8 +447,6 @@ swift_class_declaration_def( int name: @swift_class_declaration_name_type ref ); -@swift_comparison_expression_lhs_type = @swift_additive_expression | @swift_array_literal | @swift_as_expression | @swift_assignment | @swift_await_expression | @swift_bitwise_operation | @swift_call_expression | @swift_check_expression | @swift_comparison_expression | @swift_conjunction_expression | @swift_constructor_expression | @swift_dictionary_literal | @swift_directive | @swift_disjunction_expression | @swift_equality_expression | @swift_if_statement | @swift_infix_expression | @swift_key_path_expression | @swift_key_path_string_expression | @swift_lambda_literal | @swift_line_string_literal | @swift_macro_invocation | @swift_multi_line_string_literal | @swift_multiplicative_expression | @swift_navigation_expression | @swift_nil_coalescing_expression | @swift_open_end_range_expression | @swift_open_start_range_expression | @swift_optional_chain_marker | @swift_playground_literal | @swift_postfix_expression | @swift_prefix_expression | @swift_range_expression | @swift_raw_string_literal | @swift_referenceable_operator | @swift_reserved_word | @swift_selector_expression | @swift_switch_statement | @swift_ternary_expression | @swift_token_bin_literal | @swift_token_boolean_literal | @swift_token_diagnostic | @swift_token_fully_open_range | @swift_token_hex_literal | @swift_token_integer_literal | @swift_token_oct_literal | @swift_token_real_literal | @swift_token_regex_literal | @swift_token_self_expression | @swift_token_simple_identifier | @swift_token_special_literal | @swift_token_super_expression | @swift_try_expression | @swift_tuple_expression | @swift_value_pack_expansion | @swift_value_parameter_pack - case @swift_comparison_expression.op of 0 = @swift_comparison_expression_langle | 1 = @swift_comparison_expression_langleequal @@ -479,13 +455,11 @@ case @swift_comparison_expression.op of ; -@swift_comparison_expression_rhs_type = @swift_additive_expression | @swift_array_literal | @swift_as_expression | @swift_assignment | @swift_await_expression | @swift_bitwise_operation | @swift_call_expression | @swift_check_expression | @swift_comparison_expression | @swift_conjunction_expression | @swift_constructor_expression | @swift_dictionary_literal | @swift_directive | @swift_disjunction_expression | @swift_equality_expression | @swift_if_statement | @swift_infix_expression | @swift_key_path_expression | @swift_key_path_string_expression | @swift_lambda_literal | @swift_line_string_literal | @swift_macro_invocation | @swift_multi_line_string_literal | @swift_multiplicative_expression | @swift_navigation_expression | @swift_nil_coalescing_expression | @swift_open_end_range_expression | @swift_open_start_range_expression | @swift_optional_chain_marker | @swift_playground_literal | @swift_postfix_expression | @swift_prefix_expression | @swift_range_expression | @swift_raw_string_literal | @swift_referenceable_operator | @swift_reserved_word | @swift_selector_expression | @swift_switch_statement | @swift_ternary_expression | @swift_token_bin_literal | @swift_token_boolean_literal | @swift_token_diagnostic | @swift_token_fully_open_range | @swift_token_hex_literal | @swift_token_integer_literal | @swift_token_oct_literal | @swift_token_real_literal | @swift_token_regex_literal | @swift_token_self_expression | @swift_token_simple_identifier | @swift_token_special_literal | @swift_token_super_expression | @swift_try_expression | @swift_tuple_expression | @swift_value_pack_expansion | @swift_value_parameter_pack - swift_comparison_expression_def( unique int id: @swift_comparison_expression, - int lhs: @swift_comparison_expression_lhs_type ref, + int lhs: @swift_expression ref, int op: int ref, - int rhs: @swift_comparison_expression_rhs_type ref + int rhs: @swift_expression ref ); @swift_computed_getter_child_type = @swift_attribute | @swift_getter_specifier | @swift_statements @@ -540,20 +514,16 @@ swift_computed_setter_def( unique int id: @swift_computed_setter ); -@swift_conjunction_expression_lhs_type = @swift_additive_expression | @swift_array_literal | @swift_as_expression | @swift_assignment | @swift_await_expression | @swift_bitwise_operation | @swift_call_expression | @swift_check_expression | @swift_comparison_expression | @swift_conjunction_expression | @swift_constructor_expression | @swift_dictionary_literal | @swift_directive | @swift_disjunction_expression | @swift_equality_expression | @swift_if_statement | @swift_infix_expression | @swift_key_path_expression | @swift_key_path_string_expression | @swift_lambda_literal | @swift_line_string_literal | @swift_macro_invocation | @swift_multi_line_string_literal | @swift_multiplicative_expression | @swift_navigation_expression | @swift_nil_coalescing_expression | @swift_open_end_range_expression | @swift_open_start_range_expression | @swift_optional_chain_marker | @swift_playground_literal | @swift_postfix_expression | @swift_prefix_expression | @swift_range_expression | @swift_raw_string_literal | @swift_referenceable_operator | @swift_reserved_word | @swift_selector_expression | @swift_switch_statement | @swift_ternary_expression | @swift_token_bin_literal | @swift_token_boolean_literal | @swift_token_diagnostic | @swift_token_fully_open_range | @swift_token_hex_literal | @swift_token_integer_literal | @swift_token_oct_literal | @swift_token_real_literal | @swift_token_regex_literal | @swift_token_self_expression | @swift_token_simple_identifier | @swift_token_special_literal | @swift_token_super_expression | @swift_try_expression | @swift_tuple_expression | @swift_value_pack_expansion | @swift_value_parameter_pack - case @swift_conjunction_expression.op of 0 = @swift_conjunction_expression_ampersandampersand ; -@swift_conjunction_expression_rhs_type = @swift_additive_expression | @swift_array_literal | @swift_as_expression | @swift_assignment | @swift_await_expression | @swift_bitwise_operation | @swift_call_expression | @swift_check_expression | @swift_comparison_expression | @swift_conjunction_expression | @swift_constructor_expression | @swift_dictionary_literal | @swift_directive | @swift_disjunction_expression | @swift_equality_expression | @swift_if_statement | @swift_infix_expression | @swift_key_path_expression | @swift_key_path_string_expression | @swift_lambda_literal | @swift_line_string_literal | @swift_macro_invocation | @swift_multi_line_string_literal | @swift_multiplicative_expression | @swift_navigation_expression | @swift_nil_coalescing_expression | @swift_open_end_range_expression | @swift_open_start_range_expression | @swift_optional_chain_marker | @swift_playground_literal | @swift_postfix_expression | @swift_prefix_expression | @swift_range_expression | @swift_raw_string_literal | @swift_referenceable_operator | @swift_reserved_word | @swift_selector_expression | @swift_switch_statement | @swift_ternary_expression | @swift_token_bin_literal | @swift_token_boolean_literal | @swift_token_diagnostic | @swift_token_fully_open_range | @swift_token_hex_literal | @swift_token_integer_literal | @swift_token_oct_literal | @swift_token_real_literal | @swift_token_regex_literal | @swift_token_self_expression | @swift_token_simple_identifier | @swift_token_special_literal | @swift_token_super_expression | @swift_try_expression | @swift_tuple_expression | @swift_value_pack_expansion | @swift_value_parameter_pack - swift_conjunction_expression_def( unique int id: @swift_conjunction_expression, - int lhs: @swift_conjunction_expression_lhs_type ref, + int lhs: @swift_expression ref, int op: int ref, - int rhs: @swift_conjunction_expression_rhs_type ref + int rhs: @swift_expression ref ); @swift_constructor_expression_constructed_type_type = @swift_array_type | @swift_dictionary_type | @swift_user_type @@ -584,14 +554,12 @@ swift_constructor_suffix_def( unique int id: @swift_constructor_suffix ); -@swift_control_transfer_statement_result_type = @swift_additive_expression | @swift_array_literal | @swift_as_expression | @swift_assignment | @swift_await_expression | @swift_bitwise_operation | @swift_call_expression | @swift_check_expression | @swift_comparison_expression | @swift_conjunction_expression | @swift_constructor_expression | @swift_dictionary_literal | @swift_directive | @swift_disjunction_expression | @swift_equality_expression | @swift_if_statement | @swift_infix_expression | @swift_key_path_expression | @swift_key_path_string_expression | @swift_lambda_literal | @swift_line_string_literal | @swift_macro_invocation | @swift_multi_line_string_literal | @swift_multiplicative_expression | @swift_navigation_expression | @swift_nil_coalescing_expression | @swift_open_end_range_expression | @swift_open_start_range_expression | @swift_optional_chain_marker | @swift_playground_literal | @swift_postfix_expression | @swift_prefix_expression | @swift_range_expression | @swift_raw_string_literal | @swift_referenceable_operator | @swift_reserved_word | @swift_selector_expression | @swift_switch_statement | @swift_ternary_expression | @swift_token_bin_literal | @swift_token_boolean_literal | @swift_token_diagnostic | @swift_token_fully_open_range | @swift_token_hex_literal | @swift_token_integer_literal | @swift_token_oct_literal | @swift_token_real_literal | @swift_token_regex_literal | @swift_token_self_expression | @swift_token_simple_identifier | @swift_token_special_literal | @swift_token_super_expression | @swift_try_expression | @swift_tuple_expression | @swift_value_pack_expansion | @swift_value_parameter_pack - swift_control_transfer_statement_result( unique int swift_control_transfer_statement: @swift_control_transfer_statement ref, - unique int result: @swift_control_transfer_statement_result_type ref + unique int result: @swift_expression ref ); -@swift_control_transfer_statement_child_type = @swift_additive_expression | @swift_array_literal | @swift_as_expression | @swift_assignment | @swift_await_expression | @swift_bitwise_operation | @swift_call_expression | @swift_check_expression | @swift_comparison_expression | @swift_conjunction_expression | @swift_constructor_expression | @swift_dictionary_literal | @swift_directive | @swift_disjunction_expression | @swift_equality_expression | @swift_if_statement | @swift_infix_expression | @swift_key_path_expression | @swift_key_path_string_expression | @swift_lambda_literal | @swift_line_string_literal | @swift_macro_invocation | @swift_multi_line_string_literal | @swift_multiplicative_expression | @swift_navigation_expression | @swift_nil_coalescing_expression | @swift_open_end_range_expression | @swift_open_start_range_expression | @swift_optional_chain_marker | @swift_playground_literal | @swift_postfix_expression | @swift_prefix_expression | @swift_range_expression | @swift_raw_string_literal | @swift_referenceable_operator | @swift_selector_expression | @swift_switch_statement | @swift_ternary_expression | @swift_token_bin_literal | @swift_token_boolean_literal | @swift_token_diagnostic | @swift_token_fully_open_range | @swift_token_hex_literal | @swift_token_integer_literal | @swift_token_oct_literal | @swift_token_real_literal | @swift_token_regex_literal | @swift_token_self_expression | @swift_token_simple_identifier | @swift_token_special_literal | @swift_token_super_expression | @swift_token_throw_keyword | @swift_try_expression | @swift_tuple_expression | @swift_value_pack_expansion | @swift_value_parameter_pack +@swift_control_transfer_statement_child_type = @swift_expression | @swift_token_throw_keyword #keyset[swift_control_transfer_statement, index] swift_control_transfer_statement_child( @@ -627,22 +595,18 @@ swift_deprecated_operator_declaration_body_def( unique int id: @swift_deprecated_operator_declaration_body ); -@swift_dictionary_literal_key_type = @swift_additive_expression | @swift_array_literal | @swift_as_expression | @swift_assignment | @swift_await_expression | @swift_bitwise_operation | @swift_call_expression | @swift_check_expression | @swift_comparison_expression | @swift_conjunction_expression | @swift_constructor_expression | @swift_dictionary_literal | @swift_directive | @swift_disjunction_expression | @swift_equality_expression | @swift_if_statement | @swift_infix_expression | @swift_key_path_expression | @swift_key_path_string_expression | @swift_lambda_literal | @swift_line_string_literal | @swift_macro_invocation | @swift_multi_line_string_literal | @swift_multiplicative_expression | @swift_navigation_expression | @swift_nil_coalescing_expression | @swift_open_end_range_expression | @swift_open_start_range_expression | @swift_optional_chain_marker | @swift_playground_literal | @swift_postfix_expression | @swift_prefix_expression | @swift_range_expression | @swift_raw_string_literal | @swift_referenceable_operator | @swift_reserved_word | @swift_selector_expression | @swift_switch_statement | @swift_ternary_expression | @swift_token_bin_literal | @swift_token_boolean_literal | @swift_token_diagnostic | @swift_token_fully_open_range | @swift_token_hex_literal | @swift_token_integer_literal | @swift_token_oct_literal | @swift_token_real_literal | @swift_token_regex_literal | @swift_token_self_expression | @swift_token_simple_identifier | @swift_token_special_literal | @swift_token_super_expression | @swift_try_expression | @swift_tuple_expression | @swift_value_pack_expansion | @swift_value_parameter_pack - #keyset[swift_dictionary_literal, index] swift_dictionary_literal_key( int swift_dictionary_literal: @swift_dictionary_literal ref, int index: int ref, - unique int key__: @swift_dictionary_literal_key_type ref + unique int key__: @swift_expression ref ); -@swift_dictionary_literal_value_type = @swift_additive_expression | @swift_array_literal | @swift_as_expression | @swift_assignment | @swift_await_expression | @swift_bitwise_operation | @swift_call_expression | @swift_check_expression | @swift_comparison_expression | @swift_conjunction_expression | @swift_constructor_expression | @swift_dictionary_literal | @swift_directive | @swift_disjunction_expression | @swift_equality_expression | @swift_if_statement | @swift_infix_expression | @swift_key_path_expression | @swift_key_path_string_expression | @swift_lambda_literal | @swift_line_string_literal | @swift_macro_invocation | @swift_multi_line_string_literal | @swift_multiplicative_expression | @swift_navigation_expression | @swift_nil_coalescing_expression | @swift_open_end_range_expression | @swift_open_start_range_expression | @swift_optional_chain_marker | @swift_playground_literal | @swift_postfix_expression | @swift_prefix_expression | @swift_range_expression | @swift_raw_string_literal | @swift_referenceable_operator | @swift_reserved_word | @swift_selector_expression | @swift_switch_statement | @swift_ternary_expression | @swift_token_bin_literal | @swift_token_boolean_literal | @swift_token_diagnostic | @swift_token_fully_open_range | @swift_token_hex_literal | @swift_token_integer_literal | @swift_token_oct_literal | @swift_token_real_literal | @swift_token_regex_literal | @swift_token_self_expression | @swift_token_simple_identifier | @swift_token_special_literal | @swift_token_super_expression | @swift_try_expression | @swift_tuple_expression | @swift_value_pack_expansion | @swift_value_parameter_pack - #keyset[swift_dictionary_literal, index] swift_dictionary_literal_value( int swift_dictionary_literal: @swift_dictionary_literal ref, int index: int ref, - unique int value: @swift_dictionary_literal_value_type ref + unique int value: @swift_expression ref ); swift_dictionary_literal_def( @@ -706,31 +670,21 @@ swift_directive_def( unique int id: @swift_directive ); -@swift_directly_assignable_expression_child_type = @swift_additive_expression | @swift_array_literal | @swift_as_expression | @swift_assignment | @swift_await_expression | @swift_bitwise_operation | @swift_call_expression | @swift_check_expression | @swift_comparison_expression | @swift_conjunction_expression | @swift_constructor_expression | @swift_dictionary_literal | @swift_directive | @swift_disjunction_expression | @swift_equality_expression | @swift_if_statement | @swift_infix_expression | @swift_key_path_expression | @swift_key_path_string_expression | @swift_lambda_literal | @swift_line_string_literal | @swift_macro_invocation | @swift_multi_line_string_literal | @swift_multiplicative_expression | @swift_navigation_expression | @swift_nil_coalescing_expression | @swift_open_end_range_expression | @swift_open_start_range_expression | @swift_optional_chain_marker | @swift_playground_literal | @swift_postfix_expression | @swift_prefix_expression | @swift_range_expression | @swift_raw_string_literal | @swift_referenceable_operator | @swift_selector_expression | @swift_switch_statement | @swift_ternary_expression | @swift_token_bin_literal | @swift_token_boolean_literal | @swift_token_diagnostic | @swift_token_fully_open_range | @swift_token_hex_literal | @swift_token_integer_literal | @swift_token_oct_literal | @swift_token_real_literal | @swift_token_regex_literal | @swift_token_self_expression | @swift_token_simple_identifier | @swift_token_special_literal | @swift_token_super_expression | @swift_try_expression | @swift_tuple_expression | @swift_value_pack_expansion | @swift_value_parameter_pack - -swift_directly_assignable_expression_child( - unique int swift_directly_assignable_expression: @swift_directly_assignable_expression ref, - unique int child: @swift_directly_assignable_expression_child_type ref -); - swift_directly_assignable_expression_def( - unique int id: @swift_directly_assignable_expression + unique int id: @swift_directly_assignable_expression, + int child: @swift_expression ref ); -@swift_disjunction_expression_lhs_type = @swift_additive_expression | @swift_array_literal | @swift_as_expression | @swift_assignment | @swift_await_expression | @swift_bitwise_operation | @swift_call_expression | @swift_check_expression | @swift_comparison_expression | @swift_conjunction_expression | @swift_constructor_expression | @swift_dictionary_literal | @swift_directive | @swift_disjunction_expression | @swift_equality_expression | @swift_if_statement | @swift_infix_expression | @swift_key_path_expression | @swift_key_path_string_expression | @swift_lambda_literal | @swift_line_string_literal | @swift_macro_invocation | @swift_multi_line_string_literal | @swift_multiplicative_expression | @swift_navigation_expression | @swift_nil_coalescing_expression | @swift_open_end_range_expression | @swift_open_start_range_expression | @swift_optional_chain_marker | @swift_playground_literal | @swift_postfix_expression | @swift_prefix_expression | @swift_range_expression | @swift_raw_string_literal | @swift_referenceable_operator | @swift_reserved_word | @swift_selector_expression | @swift_switch_statement | @swift_ternary_expression | @swift_token_bin_literal | @swift_token_boolean_literal | @swift_token_diagnostic | @swift_token_fully_open_range | @swift_token_hex_literal | @swift_token_integer_literal | @swift_token_oct_literal | @swift_token_real_literal | @swift_token_regex_literal | @swift_token_self_expression | @swift_token_simple_identifier | @swift_token_special_literal | @swift_token_super_expression | @swift_try_expression | @swift_tuple_expression | @swift_value_pack_expansion | @swift_value_parameter_pack - case @swift_disjunction_expression.op of 0 = @swift_disjunction_expression_pipepipe ; -@swift_disjunction_expression_rhs_type = @swift_additive_expression | @swift_array_literal | @swift_as_expression | @swift_assignment | @swift_await_expression | @swift_bitwise_operation | @swift_call_expression | @swift_check_expression | @swift_comparison_expression | @swift_conjunction_expression | @swift_constructor_expression | @swift_dictionary_literal | @swift_directive | @swift_disjunction_expression | @swift_equality_expression | @swift_if_statement | @swift_infix_expression | @swift_key_path_expression | @swift_key_path_string_expression | @swift_lambda_literal | @swift_line_string_literal | @swift_macro_invocation | @swift_multi_line_string_literal | @swift_multiplicative_expression | @swift_navigation_expression | @swift_nil_coalescing_expression | @swift_open_end_range_expression | @swift_open_start_range_expression | @swift_optional_chain_marker | @swift_playground_literal | @swift_postfix_expression | @swift_prefix_expression | @swift_range_expression | @swift_raw_string_literal | @swift_referenceable_operator | @swift_reserved_word | @swift_selector_expression | @swift_switch_statement | @swift_ternary_expression | @swift_token_bin_literal | @swift_token_boolean_literal | @swift_token_diagnostic | @swift_token_fully_open_range | @swift_token_hex_literal | @swift_token_integer_literal | @swift_token_oct_literal | @swift_token_real_literal | @swift_token_regex_literal | @swift_token_self_expression | @swift_token_simple_identifier | @swift_token_special_literal | @swift_token_super_expression | @swift_try_expression | @swift_tuple_expression | @swift_value_pack_expansion | @swift_value_parameter_pack - swift_disjunction_expression_def( unique int id: @swift_disjunction_expression, - int lhs: @swift_disjunction_expression_lhs_type ref, + int lhs: @swift_expression ref, int op: int ref, - int rhs: @swift_disjunction_expression_rhs_type ref + int rhs: @swift_expression ref ); @swift_do_statement_child_type = @swift_catch_block | @swift_statements @@ -773,13 +727,11 @@ swift_enum_entry_name( unique int name: @swift_token_simple_identifier ref ); -@swift_enum_entry_raw_value_type = @swift_additive_expression | @swift_array_literal | @swift_as_expression | @swift_assignment | @swift_await_expression | @swift_bitwise_operation | @swift_call_expression | @swift_check_expression | @swift_comparison_expression | @swift_conjunction_expression | @swift_constructor_expression | @swift_dictionary_literal | @swift_directive | @swift_disjunction_expression | @swift_equality_expression | @swift_if_statement | @swift_infix_expression | @swift_key_path_expression | @swift_key_path_string_expression | @swift_lambda_literal | @swift_line_string_literal | @swift_macro_invocation | @swift_multi_line_string_literal | @swift_multiplicative_expression | @swift_navigation_expression | @swift_nil_coalescing_expression | @swift_open_end_range_expression | @swift_open_start_range_expression | @swift_optional_chain_marker | @swift_playground_literal | @swift_postfix_expression | @swift_prefix_expression | @swift_range_expression | @swift_raw_string_literal | @swift_referenceable_operator | @swift_reserved_word | @swift_selector_expression | @swift_switch_statement | @swift_ternary_expression | @swift_token_bin_literal | @swift_token_boolean_literal | @swift_token_diagnostic | @swift_token_fully_open_range | @swift_token_hex_literal | @swift_token_integer_literal | @swift_token_oct_literal | @swift_token_real_literal | @swift_token_regex_literal | @swift_token_self_expression | @swift_token_simple_identifier | @swift_token_special_literal | @swift_token_super_expression | @swift_try_expression | @swift_tuple_expression | @swift_value_pack_expansion | @swift_value_parameter_pack - #keyset[swift_enum_entry, index] swift_enum_entry_raw_value( int swift_enum_entry: @swift_enum_entry ref, int index: int ref, - unique int raw_value: @swift_enum_entry_raw_value_type ref + unique int raw_value: @swift_expression ref ); swift_enum_entry_child( @@ -800,7 +752,7 @@ swift_enum_type_parameters_name( unique int name: @swift_enum_type_parameters_name_type ref ); -@swift_enum_type_parameters_child_type = @swift_additive_expression | @swift_array_literal | @swift_as_expression | @swift_assignment | @swift_await_expression | @swift_bitwise_operation | @swift_call_expression | @swift_check_expression | @swift_comparison_expression | @swift_conjunction_expression | @swift_constructor_expression | @swift_dictionary_literal | @swift_directive | @swift_disjunction_expression | @swift_equality_expression | @swift_if_statement | @swift_infix_expression | @swift_key_path_expression | @swift_key_path_string_expression | @swift_lambda_literal | @swift_line_string_literal | @swift_macro_invocation | @swift_multi_line_string_literal | @swift_multiplicative_expression | @swift_navigation_expression | @swift_nil_coalescing_expression | @swift_open_end_range_expression | @swift_open_start_range_expression | @swift_optional_chain_marker | @swift_playground_literal | @swift_postfix_expression | @swift_prefix_expression | @swift_range_expression | @swift_raw_string_literal | @swift_referenceable_operator | @swift_selector_expression | @swift_switch_statement | @swift_ternary_expression | @swift_token_bin_literal | @swift_token_boolean_literal | @swift_token_diagnostic | @swift_token_fully_open_range | @swift_token_hex_literal | @swift_token_integer_literal | @swift_token_oct_literal | @swift_token_real_literal | @swift_token_regex_literal | @swift_token_self_expression | @swift_token_simple_identifier | @swift_token_special_literal | @swift_token_super_expression | @swift_token_wildcard_pattern | @swift_try_expression | @swift_tuple_expression | @swift_type_modifiers | @swift_value_pack_expansion | @swift_value_parameter_pack +@swift_enum_type_parameters_child_type = @swift_expression | @swift_token_wildcard_pattern | @swift_type_modifiers #keyset[swift_enum_type_parameters, index] swift_enum_type_parameters_child( @@ -845,8 +797,6 @@ swift_equality_constraint_def( int name: @swift_equality_constraint_name_type ref ); -@swift_equality_expression_lhs_type = @swift_additive_expression | @swift_array_literal | @swift_as_expression | @swift_assignment | @swift_await_expression | @swift_bitwise_operation | @swift_call_expression | @swift_check_expression | @swift_comparison_expression | @swift_conjunction_expression | @swift_constructor_expression | @swift_dictionary_literal | @swift_directive | @swift_disjunction_expression | @swift_equality_expression | @swift_if_statement | @swift_infix_expression | @swift_key_path_expression | @swift_key_path_string_expression | @swift_lambda_literal | @swift_line_string_literal | @swift_macro_invocation | @swift_multi_line_string_literal | @swift_multiplicative_expression | @swift_navigation_expression | @swift_nil_coalescing_expression | @swift_open_end_range_expression | @swift_open_start_range_expression | @swift_optional_chain_marker | @swift_playground_literal | @swift_postfix_expression | @swift_prefix_expression | @swift_range_expression | @swift_raw_string_literal | @swift_referenceable_operator | @swift_reserved_word | @swift_selector_expression | @swift_switch_statement | @swift_ternary_expression | @swift_token_bin_literal | @swift_token_boolean_literal | @swift_token_diagnostic | @swift_token_fully_open_range | @swift_token_hex_literal | @swift_token_integer_literal | @swift_token_oct_literal | @swift_token_real_literal | @swift_token_regex_literal | @swift_token_self_expression | @swift_token_simple_identifier | @swift_token_special_literal | @swift_token_super_expression | @swift_try_expression | @swift_tuple_expression | @swift_value_pack_expansion | @swift_value_parameter_pack - case @swift_equality_expression.op of 0 = @swift_equality_expression_bangequal | 1 = @swift_equality_expression_bangequalequal @@ -855,13 +805,11 @@ case @swift_equality_expression.op of ; -@swift_equality_expression_rhs_type = @swift_additive_expression | @swift_array_literal | @swift_as_expression | @swift_assignment | @swift_await_expression | @swift_bitwise_operation | @swift_call_expression | @swift_check_expression | @swift_comparison_expression | @swift_conjunction_expression | @swift_constructor_expression | @swift_dictionary_literal | @swift_directive | @swift_disjunction_expression | @swift_equality_expression | @swift_if_statement | @swift_infix_expression | @swift_key_path_expression | @swift_key_path_string_expression | @swift_lambda_literal | @swift_line_string_literal | @swift_macro_invocation | @swift_multi_line_string_literal | @swift_multiplicative_expression | @swift_navigation_expression | @swift_nil_coalescing_expression | @swift_open_end_range_expression | @swift_open_start_range_expression | @swift_optional_chain_marker | @swift_playground_literal | @swift_postfix_expression | @swift_prefix_expression | @swift_range_expression | @swift_raw_string_literal | @swift_referenceable_operator | @swift_reserved_word | @swift_selector_expression | @swift_switch_statement | @swift_ternary_expression | @swift_token_bin_literal | @swift_token_boolean_literal | @swift_token_diagnostic | @swift_token_fully_open_range | @swift_token_hex_literal | @swift_token_integer_literal | @swift_token_oct_literal | @swift_token_real_literal | @swift_token_regex_literal | @swift_token_self_expression | @swift_token_simple_identifier | @swift_token_special_literal | @swift_token_super_expression | @swift_try_expression | @swift_tuple_expression | @swift_value_pack_expansion | @swift_value_parameter_pack - swift_equality_expression_def( unique int id: @swift_equality_expression, - int lhs: @swift_equality_expression_lhs_type ref, + int lhs: @swift_expression ref, int op: int ref, - int rhs: @swift_equality_expression_rhs_type ref + int rhs: @swift_expression ref ); @swift_existential_type_child_type = @swift_array_type | @swift_dictionary_type | @swift_existential_type | @swift_function_type | @swift_metatype | @swift_opaque_type | @swift_optional_type | @swift_protocol_composition_type | @swift_suppressed_constraint | @swift_tuple_type | @swift_type_pack_expansion | @swift_type_parameter_pack | @swift_user_type @@ -871,13 +819,13 @@ swift_existential_type_def( int child: @swift_existential_type_child_type ref ); +@swift_expression = @swift_additive_expression | @swift_array_literal | @swift_as_expression | @swift_assignment | @swift_await_expression | @swift_bitwise_operation | @swift_call_expression | @swift_check_expression | @swift_comparison_expression | @swift_conjunction_expression | @swift_constructor_expression | @swift_dictionary_literal | @swift_directive | @swift_disjunction_expression | @swift_equality_expression | @swift_if_statement | @swift_infix_expression | @swift_key_path_expression | @swift_key_path_string_expression | @swift_lambda_literal | @swift_line_string_literal | @swift_macro_invocation | @swift_multi_line_string_literal | @swift_multiplicative_expression | @swift_navigation_expression | @swift_nil_coalescing_expression | @swift_open_end_range_expression | @swift_open_start_range_expression | @swift_optional_chain_marker | @swift_playground_literal | @swift_postfix_expression | @swift_prefix_expression | @swift_range_expression | @swift_raw_string_literal | @swift_referenceable_operator | @swift_reserved_word | @swift_selector_expression | @swift_switch_statement | @swift_ternary_expression | @swift_token_bin_literal | @swift_token_boolean_literal | @swift_token_diagnostic | @swift_token_fully_open_range | @swift_token_hex_literal | @swift_token_integer_literal | @swift_token_oct_literal | @swift_token_real_literal | @swift_token_regex_literal | @swift_token_self_expression | @swift_token_simple_identifier | @swift_token_special_literal | @swift_token_super_expression | @swift_try_expression | @swift_tuple_expression | @swift_value_pack_expansion | @swift_value_parameter_pack + swift_external_macro_definition_def( unique int id: @swift_external_macro_definition, int child: @swift_value_arguments ref ); -@swift_for_statement_collection_type = @swift_additive_expression | @swift_array_literal | @swift_as_expression | @swift_assignment | @swift_await_expression | @swift_bitwise_operation | @swift_call_expression | @swift_check_expression | @swift_comparison_expression | @swift_conjunction_expression | @swift_constructor_expression | @swift_dictionary_literal | @swift_directive | @swift_disjunction_expression | @swift_equality_expression | @swift_if_statement | @swift_infix_expression | @swift_key_path_expression | @swift_key_path_string_expression | @swift_lambda_literal | @swift_line_string_literal | @swift_macro_invocation | @swift_multi_line_string_literal | @swift_multiplicative_expression | @swift_navigation_expression | @swift_nil_coalescing_expression | @swift_open_end_range_expression | @swift_open_start_range_expression | @swift_optional_chain_marker | @swift_playground_literal | @swift_postfix_expression | @swift_prefix_expression | @swift_range_expression | @swift_raw_string_literal | @swift_referenceable_operator | @swift_reserved_word | @swift_selector_expression | @swift_switch_statement | @swift_ternary_expression | @swift_token_bin_literal | @swift_token_boolean_literal | @swift_token_diagnostic | @swift_token_fully_open_range | @swift_token_hex_literal | @swift_token_integer_literal | @swift_token_oct_literal | @swift_token_real_literal | @swift_token_regex_literal | @swift_token_self_expression | @swift_token_simple_identifier | @swift_token_special_literal | @swift_token_super_expression | @swift_try_expression | @swift_tuple_expression | @swift_value_pack_expansion | @swift_value_parameter_pack - @swift_for_statement_child_type = @swift_statements | @swift_token_try_operator | @swift_type_annotation | @swift_where_clause #keyset[swift_for_statement, index] @@ -889,7 +837,7 @@ swift_for_statement_child( swift_for_statement_def( unique int id: @swift_for_statement, - int collection: @swift_for_statement_collection_type ref, + int collection: @swift_expression ref, int item: @swift_pattern ref ); @@ -902,13 +850,11 @@ swift_function_body_def( unique int id: @swift_function_body ); -@swift_function_declaration_default_value_type = @swift_additive_expression | @swift_array_literal | @swift_as_expression | @swift_assignment | @swift_await_expression | @swift_bitwise_operation | @swift_call_expression | @swift_check_expression | @swift_comparison_expression | @swift_conjunction_expression | @swift_constructor_expression | @swift_dictionary_literal | @swift_directive | @swift_disjunction_expression | @swift_equality_expression | @swift_if_statement | @swift_infix_expression | @swift_key_path_expression | @swift_key_path_string_expression | @swift_lambda_literal | @swift_line_string_literal | @swift_macro_invocation | @swift_multi_line_string_literal | @swift_multiplicative_expression | @swift_navigation_expression | @swift_nil_coalescing_expression | @swift_open_end_range_expression | @swift_open_start_range_expression | @swift_optional_chain_marker | @swift_playground_literal | @swift_postfix_expression | @swift_prefix_expression | @swift_range_expression | @swift_raw_string_literal | @swift_referenceable_operator | @swift_reserved_word | @swift_selector_expression | @swift_switch_statement | @swift_ternary_expression | @swift_token_bin_literal | @swift_token_boolean_literal | @swift_token_diagnostic | @swift_token_fully_open_range | @swift_token_hex_literal | @swift_token_integer_literal | @swift_token_oct_literal | @swift_token_real_literal | @swift_token_regex_literal | @swift_token_self_expression | @swift_token_simple_identifier | @swift_token_special_literal | @swift_token_super_expression | @swift_try_expression | @swift_tuple_expression | @swift_value_pack_expansion | @swift_value_parameter_pack - #keyset[swift_function_declaration, index] swift_function_declaration_default_value( int swift_function_declaration: @swift_function_declaration ref, int index: int ref, - unique int default_value: @swift_function_declaration_default_value_type ref + unique int default_value: @swift_expression ref ); @swift_function_declaration_name_type = @swift_array_type | @swift_dictionary_type | @swift_existential_type | @swift_function_type | @swift_metatype | @swift_opaque_type | @swift_optional_type | @swift_protocol_composition_type | @swift_referenceable_operator | @swift_suppressed_constraint | @swift_token_simple_identifier | @swift_tuple_type | @swift_type_pack_expansion | @swift_type_parameter_pack | @swift_user_type @@ -1025,7 +971,7 @@ swift_if_condition_name( unique int name: @swift_if_condition_name_type ref ); -@swift_if_condition_child_type = @swift_additive_expression | @swift_array_literal | @swift_as_expression | @swift_assignment | @swift_availability_condition | @swift_await_expression | @swift_bitwise_operation | @swift_call_expression | @swift_check_expression | @swift_comparison_expression | @swift_conjunction_expression | @swift_constructor_expression | @swift_dictionary_literal | @swift_directive | @swift_disjunction_expression | @swift_equality_expression | @swift_if_statement | @swift_infix_expression | @swift_key_path_expression | @swift_key_path_string_expression | @swift_lambda_literal | @swift_line_string_literal | @swift_macro_invocation | @swift_multi_line_string_literal | @swift_multiplicative_expression | @swift_navigation_expression | @swift_nil_coalescing_expression | @swift_open_end_range_expression | @swift_open_start_range_expression | @swift_optional_chain_marker | @swift_pattern | @swift_playground_literal | @swift_postfix_expression | @swift_prefix_expression | @swift_range_expression | @swift_raw_string_literal | @swift_referenceable_operator | @swift_selector_expression | @swift_switch_statement | @swift_ternary_expression | @swift_token_bin_literal | @swift_token_boolean_literal | @swift_token_diagnostic | @swift_token_fully_open_range | @swift_token_hex_literal | @swift_token_integer_literal | @swift_token_oct_literal | @swift_token_real_literal | @swift_token_regex_literal | @swift_token_self_expression | @swift_token_simple_identifier | @swift_token_special_literal | @swift_token_super_expression | @swift_token_wildcard_pattern | @swift_try_expression | @swift_tuple_expression | @swift_type_annotation | @swift_type_modifiers | @swift_user_type | @swift_value_binding_pattern | @swift_value_pack_expansion | @swift_value_parameter_pack | @swift_where_clause +@swift_if_condition_child_type = @swift_availability_condition | @swift_expression | @swift_pattern | @swift_token_wildcard_pattern | @swift_type_annotation | @swift_type_modifiers | @swift_user_type | @swift_value_binding_pattern | @swift_where_clause #keyset[swift_if_condition, index] swift_if_condition_child( @@ -1071,15 +1017,11 @@ swift_import_declaration_def( unique int id: @swift_import_declaration ); -@swift_infix_expression_lhs_type = @swift_additive_expression | @swift_array_literal | @swift_as_expression | @swift_assignment | @swift_await_expression | @swift_bitwise_operation | @swift_call_expression | @swift_check_expression | @swift_comparison_expression | @swift_conjunction_expression | @swift_constructor_expression | @swift_dictionary_literal | @swift_directive | @swift_disjunction_expression | @swift_equality_expression | @swift_if_statement | @swift_infix_expression | @swift_key_path_expression | @swift_key_path_string_expression | @swift_lambda_literal | @swift_line_string_literal | @swift_macro_invocation | @swift_multi_line_string_literal | @swift_multiplicative_expression | @swift_navigation_expression | @swift_nil_coalescing_expression | @swift_open_end_range_expression | @swift_open_start_range_expression | @swift_optional_chain_marker | @swift_playground_literal | @swift_postfix_expression | @swift_prefix_expression | @swift_range_expression | @swift_raw_string_literal | @swift_referenceable_operator | @swift_reserved_word | @swift_selector_expression | @swift_switch_statement | @swift_ternary_expression | @swift_token_bin_literal | @swift_token_boolean_literal | @swift_token_diagnostic | @swift_token_fully_open_range | @swift_token_hex_literal | @swift_token_integer_literal | @swift_token_oct_literal | @swift_token_real_literal | @swift_token_regex_literal | @swift_token_self_expression | @swift_token_simple_identifier | @swift_token_special_literal | @swift_token_super_expression | @swift_try_expression | @swift_tuple_expression | @swift_value_pack_expansion | @swift_value_parameter_pack - -@swift_infix_expression_rhs_type = @swift_additive_expression | @swift_array_literal | @swift_as_expression | @swift_assignment | @swift_await_expression | @swift_bitwise_operation | @swift_call_expression | @swift_check_expression | @swift_comparison_expression | @swift_conjunction_expression | @swift_constructor_expression | @swift_dictionary_literal | @swift_directive | @swift_disjunction_expression | @swift_equality_expression | @swift_if_statement | @swift_infix_expression | @swift_key_path_expression | @swift_key_path_string_expression | @swift_lambda_literal | @swift_line_string_literal | @swift_macro_invocation | @swift_multi_line_string_literal | @swift_multiplicative_expression | @swift_navigation_expression | @swift_nil_coalescing_expression | @swift_open_end_range_expression | @swift_open_start_range_expression | @swift_optional_chain_marker | @swift_playground_literal | @swift_postfix_expression | @swift_prefix_expression | @swift_range_expression | @swift_raw_string_literal | @swift_referenceable_operator | @swift_reserved_word | @swift_selector_expression | @swift_switch_statement | @swift_ternary_expression | @swift_token_bin_literal | @swift_token_boolean_literal | @swift_token_diagnostic | @swift_token_fully_open_range | @swift_token_hex_literal | @swift_token_integer_literal | @swift_token_oct_literal | @swift_token_real_literal | @swift_token_regex_literal | @swift_token_self_expression | @swift_token_simple_identifier | @swift_token_special_literal | @swift_token_super_expression | @swift_try_expression | @swift_tuple_expression | @swift_value_pack_expansion | @swift_value_parameter_pack - swift_infix_expression_def( unique int id: @swift_infix_expression, - int lhs: @swift_infix_expression_lhs_type ref, + int lhs: @swift_expression ref, int op: @swift_token_custom_operator ref, - int rhs: @swift_infix_expression_rhs_type ref + int rhs: @swift_expression ref ); @swift_inheritance_constraint_constrained_type_type = @swift_array_type | @swift_dictionary_type | @swift_existential_type | @swift_function_type | @swift_identifier | @swift_metatype | @swift_opaque_type | @swift_optional_type | @swift_protocol_composition_type | @swift_reserved_word | @swift_suppressed_constraint | @swift_token_simple_identifier | @swift_tuple_type | @swift_type_pack_expansion | @swift_type_parameter_pack | @swift_user_type @@ -1126,13 +1068,11 @@ swift_init_declaration_body( unique int body: @swift_function_body ref ); -@swift_init_declaration_default_value_type = @swift_additive_expression | @swift_array_literal | @swift_as_expression | @swift_assignment | @swift_await_expression | @swift_bitwise_operation | @swift_call_expression | @swift_check_expression | @swift_comparison_expression | @swift_conjunction_expression | @swift_constructor_expression | @swift_dictionary_literal | @swift_directive | @swift_disjunction_expression | @swift_equality_expression | @swift_if_statement | @swift_infix_expression | @swift_key_path_expression | @swift_key_path_string_expression | @swift_lambda_literal | @swift_line_string_literal | @swift_macro_invocation | @swift_multi_line_string_literal | @swift_multiplicative_expression | @swift_navigation_expression | @swift_nil_coalescing_expression | @swift_open_end_range_expression | @swift_open_start_range_expression | @swift_optional_chain_marker | @swift_playground_literal | @swift_postfix_expression | @swift_prefix_expression | @swift_range_expression | @swift_raw_string_literal | @swift_referenceable_operator | @swift_reserved_word | @swift_selector_expression | @swift_switch_statement | @swift_ternary_expression | @swift_token_bin_literal | @swift_token_boolean_literal | @swift_token_diagnostic | @swift_token_fully_open_range | @swift_token_hex_literal | @swift_token_integer_literal | @swift_token_oct_literal | @swift_token_real_literal | @swift_token_regex_literal | @swift_token_self_expression | @swift_token_simple_identifier | @swift_token_special_literal | @swift_token_super_expression | @swift_try_expression | @swift_tuple_expression | @swift_value_pack_expansion | @swift_value_parameter_pack - #keyset[swift_init_declaration, index] swift_init_declaration_default_value( int swift_init_declaration: @swift_init_declaration ref, int index: int ref, - unique int default_value: @swift_init_declaration_default_value_type ref + unique int default_value: @swift_expression ref ); case @swift_init_declaration.name of @@ -1166,11 +1106,9 @@ swift_interpolated_expression_reference_specifier( unique int reference_specifier: @swift_value_argument_label ref ); -@swift_interpolated_expression_value_type = @swift_additive_expression | @swift_array_literal | @swift_as_expression | @swift_assignment | @swift_await_expression | @swift_bitwise_operation | @swift_call_expression | @swift_check_expression | @swift_comparison_expression | @swift_conjunction_expression | @swift_constructor_expression | @swift_dictionary_literal | @swift_directive | @swift_disjunction_expression | @swift_equality_expression | @swift_if_statement | @swift_infix_expression | @swift_key_path_expression | @swift_key_path_string_expression | @swift_lambda_literal | @swift_line_string_literal | @swift_macro_invocation | @swift_multi_line_string_literal | @swift_multiplicative_expression | @swift_navigation_expression | @swift_nil_coalescing_expression | @swift_open_end_range_expression | @swift_open_start_range_expression | @swift_optional_chain_marker | @swift_playground_literal | @swift_postfix_expression | @swift_prefix_expression | @swift_range_expression | @swift_raw_string_literal | @swift_referenceable_operator | @swift_reserved_word | @swift_selector_expression | @swift_switch_statement | @swift_ternary_expression | @swift_token_bin_literal | @swift_token_boolean_literal | @swift_token_diagnostic | @swift_token_fully_open_range | @swift_token_hex_literal | @swift_token_integer_literal | @swift_token_oct_literal | @swift_token_real_literal | @swift_token_regex_literal | @swift_token_self_expression | @swift_token_simple_identifier | @swift_token_special_literal | @swift_token_super_expression | @swift_try_expression | @swift_tuple_expression | @swift_value_pack_expansion | @swift_value_parameter_pack - swift_interpolated_expression_value( unique int swift_interpolated_expression: @swift_interpolated_expression ref, - unique int value: @swift_interpolated_expression_value_type ref + unique int value: @swift_expression ref ); swift_interpolated_expression_child( @@ -1195,15 +1133,9 @@ swift_key_path_expression_def( unique int id: @swift_key_path_expression ); -@swift_key_path_string_expression_child_type = @swift_additive_expression | @swift_array_literal | @swift_as_expression | @swift_assignment | @swift_await_expression | @swift_bitwise_operation | @swift_call_expression | @swift_check_expression | @swift_comparison_expression | @swift_conjunction_expression | @swift_constructor_expression | @swift_dictionary_literal | @swift_directive | @swift_disjunction_expression | @swift_equality_expression | @swift_if_statement | @swift_infix_expression | @swift_key_path_expression | @swift_key_path_string_expression | @swift_lambda_literal | @swift_line_string_literal | @swift_macro_invocation | @swift_multi_line_string_literal | @swift_multiplicative_expression | @swift_navigation_expression | @swift_nil_coalescing_expression | @swift_open_end_range_expression | @swift_open_start_range_expression | @swift_optional_chain_marker | @swift_playground_literal | @swift_postfix_expression | @swift_prefix_expression | @swift_range_expression | @swift_raw_string_literal | @swift_referenceable_operator | @swift_selector_expression | @swift_switch_statement | @swift_ternary_expression | @swift_token_bin_literal | @swift_token_boolean_literal | @swift_token_diagnostic | @swift_token_fully_open_range | @swift_token_hex_literal | @swift_token_integer_literal | @swift_token_oct_literal | @swift_token_real_literal | @swift_token_regex_literal | @swift_token_self_expression | @swift_token_simple_identifier | @swift_token_special_literal | @swift_token_super_expression | @swift_try_expression | @swift_tuple_expression | @swift_value_pack_expansion | @swift_value_parameter_pack - -swift_key_path_string_expression_child( - unique int swift_key_path_string_expression: @swift_key_path_string_expression ref, - unique int child: @swift_key_path_string_expression_child_type ref -); - swift_key_path_string_expression_def( - unique int id: @swift_key_path_string_expression + unique int id: @swift_key_path_string_expression, + int child: @swift_expression ref ); @swift_lambda_function_type_name_type = @swift_array_type | @swift_dictionary_type | @swift_existential_type | @swift_function_type | @swift_metatype | @swift_opaque_type | @swift_optional_type | @swift_protocol_composition_type | @swift_suppressed_constraint | @swift_tuple_type | @swift_type_pack_expansion | @swift_type_parameter_pack | @swift_user_type @@ -1323,13 +1255,11 @@ swift_line_string_literal_def( unique int id: @swift_line_string_literal ); -@swift_macro_declaration_default_value_type = @swift_additive_expression | @swift_array_literal | @swift_as_expression | @swift_assignment | @swift_await_expression | @swift_bitwise_operation | @swift_call_expression | @swift_check_expression | @swift_comparison_expression | @swift_conjunction_expression | @swift_constructor_expression | @swift_dictionary_literal | @swift_directive | @swift_disjunction_expression | @swift_equality_expression | @swift_if_statement | @swift_infix_expression | @swift_key_path_expression | @swift_key_path_string_expression | @swift_lambda_literal | @swift_line_string_literal | @swift_macro_invocation | @swift_multi_line_string_literal | @swift_multiplicative_expression | @swift_navigation_expression | @swift_nil_coalescing_expression | @swift_open_end_range_expression | @swift_open_start_range_expression | @swift_optional_chain_marker | @swift_playground_literal | @swift_postfix_expression | @swift_prefix_expression | @swift_range_expression | @swift_raw_string_literal | @swift_referenceable_operator | @swift_reserved_word | @swift_selector_expression | @swift_switch_statement | @swift_ternary_expression | @swift_token_bin_literal | @swift_token_boolean_literal | @swift_token_diagnostic | @swift_token_fully_open_range | @swift_token_hex_literal | @swift_token_integer_literal | @swift_token_oct_literal | @swift_token_real_literal | @swift_token_regex_literal | @swift_token_self_expression | @swift_token_simple_identifier | @swift_token_special_literal | @swift_token_super_expression | @swift_try_expression | @swift_tuple_expression | @swift_value_pack_expansion | @swift_value_parameter_pack - #keyset[swift_macro_declaration, index] swift_macro_declaration_default_value( int swift_macro_declaration: @swift_macro_declaration ref, int index: int ref, - unique int default_value: @swift_macro_declaration_default_value_type ref + unique int default_value: @swift_expression ref ); swift_macro_declaration_definition( @@ -1350,7 +1280,7 @@ swift_macro_declaration_def( unique int id: @swift_macro_declaration ); -@swift_macro_definition_body_type = @swift_additive_expression | @swift_array_literal | @swift_as_expression | @swift_assignment | @swift_await_expression | @swift_bitwise_operation | @swift_call_expression | @swift_check_expression | @swift_comparison_expression | @swift_conjunction_expression | @swift_constructor_expression | @swift_dictionary_literal | @swift_directive | @swift_disjunction_expression | @swift_equality_expression | @swift_external_macro_definition | @swift_if_statement | @swift_infix_expression | @swift_key_path_expression | @swift_key_path_string_expression | @swift_lambda_literal | @swift_line_string_literal | @swift_macro_invocation | @swift_multi_line_string_literal | @swift_multiplicative_expression | @swift_navigation_expression | @swift_nil_coalescing_expression | @swift_open_end_range_expression | @swift_open_start_range_expression | @swift_optional_chain_marker | @swift_playground_literal | @swift_postfix_expression | @swift_prefix_expression | @swift_range_expression | @swift_raw_string_literal | @swift_referenceable_operator | @swift_reserved_word | @swift_selector_expression | @swift_switch_statement | @swift_ternary_expression | @swift_token_bin_literal | @swift_token_boolean_literal | @swift_token_diagnostic | @swift_token_fully_open_range | @swift_token_hex_literal | @swift_token_integer_literal | @swift_token_oct_literal | @swift_token_real_literal | @swift_token_regex_literal | @swift_token_self_expression | @swift_token_simple_identifier | @swift_token_special_literal | @swift_token_super_expression | @swift_try_expression | @swift_tuple_expression | @swift_value_pack_expansion | @swift_value_parameter_pack +@swift_macro_definition_body_type = @swift_expression | @swift_external_macro_definition swift_macro_definition_def( unique int id: @swift_macro_definition, @@ -1419,8 +1349,6 @@ swift_multi_line_string_literal_def( unique int id: @swift_multi_line_string_literal ); -@swift_multiplicative_expression_lhs_type = @swift_additive_expression | @swift_array_literal | @swift_as_expression | @swift_assignment | @swift_await_expression | @swift_bitwise_operation | @swift_call_expression | @swift_check_expression | @swift_comparison_expression | @swift_conjunction_expression | @swift_constructor_expression | @swift_dictionary_literal | @swift_directive | @swift_disjunction_expression | @swift_equality_expression | @swift_if_statement | @swift_infix_expression | @swift_key_path_expression | @swift_key_path_string_expression | @swift_lambda_literal | @swift_line_string_literal | @swift_macro_invocation | @swift_multi_line_string_literal | @swift_multiplicative_expression | @swift_navigation_expression | @swift_nil_coalescing_expression | @swift_open_end_range_expression | @swift_open_start_range_expression | @swift_optional_chain_marker | @swift_playground_literal | @swift_postfix_expression | @swift_prefix_expression | @swift_range_expression | @swift_raw_string_literal | @swift_referenceable_operator | @swift_reserved_word | @swift_selector_expression | @swift_switch_statement | @swift_ternary_expression | @swift_token_bin_literal | @swift_token_boolean_literal | @swift_token_diagnostic | @swift_token_fully_open_range | @swift_token_hex_literal | @swift_token_integer_literal | @swift_token_oct_literal | @swift_token_real_literal | @swift_token_regex_literal | @swift_token_self_expression | @swift_token_simple_identifier | @swift_token_special_literal | @swift_token_super_expression | @swift_try_expression | @swift_tuple_expression | @swift_value_pack_expansion | @swift_value_parameter_pack - case @swift_multiplicative_expression.op of 0 = @swift_multiplicative_expression_percent | 1 = @swift_multiplicative_expression_star @@ -1428,13 +1356,11 @@ case @swift_multiplicative_expression.op of ; -@swift_multiplicative_expression_rhs_type = @swift_additive_expression | @swift_array_literal | @swift_as_expression | @swift_assignment | @swift_await_expression | @swift_bitwise_operation | @swift_call_expression | @swift_check_expression | @swift_comparison_expression | @swift_conjunction_expression | @swift_constructor_expression | @swift_dictionary_literal | @swift_directive | @swift_disjunction_expression | @swift_equality_expression | @swift_if_statement | @swift_infix_expression | @swift_key_path_expression | @swift_key_path_string_expression | @swift_lambda_literal | @swift_line_string_literal | @swift_macro_invocation | @swift_multi_line_string_literal | @swift_multiplicative_expression | @swift_navigation_expression | @swift_nil_coalescing_expression | @swift_open_end_range_expression | @swift_open_start_range_expression | @swift_optional_chain_marker | @swift_playground_literal | @swift_postfix_expression | @swift_prefix_expression | @swift_range_expression | @swift_raw_string_literal | @swift_referenceable_operator | @swift_reserved_word | @swift_selector_expression | @swift_switch_statement | @swift_ternary_expression | @swift_token_bin_literal | @swift_token_boolean_literal | @swift_token_diagnostic | @swift_token_fully_open_range | @swift_token_hex_literal | @swift_token_integer_literal | @swift_token_oct_literal | @swift_token_real_literal | @swift_token_regex_literal | @swift_token_self_expression | @swift_token_simple_identifier | @swift_token_special_literal | @swift_token_super_expression | @swift_try_expression | @swift_tuple_expression | @swift_value_pack_expansion | @swift_value_parameter_pack - swift_multiplicative_expression_def( unique int id: @swift_multiplicative_expression, - int lhs: @swift_multiplicative_expression_lhs_type ref, + int lhs: @swift_expression ref, int op: int ref, - int rhs: @swift_multiplicative_expression_rhs_type ref + int rhs: @swift_expression ref ); @swift_navigation_expression_element_type = @swift_dictionary_type | @swift_existential_type | @swift_opaque_type @@ -1444,7 +1370,7 @@ swift_navigation_expression_element( unique int element: @swift_navigation_expression_element_type ref ); -@swift_navigation_expression_target_type = @swift_additive_expression | @swift_array_literal | @swift_array_type | @swift_as_expression | @swift_assignment | @swift_await_expression | @swift_bitwise_operation | @swift_call_expression | @swift_check_expression | @swift_comparison_expression | @swift_conjunction_expression | @swift_constructor_expression | @swift_dictionary_literal | @swift_dictionary_type | @swift_directive | @swift_disjunction_expression | @swift_equality_expression | @swift_existential_type | @swift_if_statement | @swift_infix_expression | @swift_key_path_expression | @swift_key_path_string_expression | @swift_lambda_literal | @swift_line_string_literal | @swift_macro_invocation | @swift_multi_line_string_literal | @swift_multiplicative_expression | @swift_navigation_expression | @swift_nil_coalescing_expression | @swift_opaque_type | @swift_open_end_range_expression | @swift_open_start_range_expression | @swift_optional_chain_marker | @swift_playground_literal | @swift_postfix_expression | @swift_prefix_expression | @swift_range_expression | @swift_raw_string_literal | @swift_referenceable_operator | @swift_reserved_word | @swift_selector_expression | @swift_switch_statement | @swift_ternary_expression | @swift_token_bin_literal | @swift_token_boolean_literal | @swift_token_diagnostic | @swift_token_fully_open_range | @swift_token_hex_literal | @swift_token_integer_literal | @swift_token_oct_literal | @swift_token_real_literal | @swift_token_regex_literal | @swift_token_self_expression | @swift_token_simple_identifier | @swift_token_special_literal | @swift_token_super_expression | @swift_try_expression | @swift_tuple_expression | @swift_user_type | @swift_value_pack_expansion | @swift_value_parameter_pack +@swift_navigation_expression_target_type = @swift_array_type | @swift_dictionary_type | @swift_existential_type | @swift_expression | @swift_opaque_type | @swift_reserved_word | @swift_user_type #keyset[swift_navigation_expression, index] swift_navigation_expression_target( @@ -1465,14 +1391,10 @@ swift_navigation_suffix_def( int suffix: @swift_navigation_suffix_suffix_type ref ); -@swift_nil_coalescing_expression_if_nil_type = @swift_additive_expression | @swift_array_literal | @swift_as_expression | @swift_assignment | @swift_await_expression | @swift_bitwise_operation | @swift_call_expression | @swift_check_expression | @swift_comparison_expression | @swift_conjunction_expression | @swift_constructor_expression | @swift_dictionary_literal | @swift_directive | @swift_disjunction_expression | @swift_equality_expression | @swift_if_statement | @swift_infix_expression | @swift_key_path_expression | @swift_key_path_string_expression | @swift_lambda_literal | @swift_line_string_literal | @swift_macro_invocation | @swift_multi_line_string_literal | @swift_multiplicative_expression | @swift_navigation_expression | @swift_nil_coalescing_expression | @swift_open_end_range_expression | @swift_open_start_range_expression | @swift_optional_chain_marker | @swift_playground_literal | @swift_postfix_expression | @swift_prefix_expression | @swift_range_expression | @swift_raw_string_literal | @swift_referenceable_operator | @swift_reserved_word | @swift_selector_expression | @swift_switch_statement | @swift_ternary_expression | @swift_token_bin_literal | @swift_token_boolean_literal | @swift_token_diagnostic | @swift_token_fully_open_range | @swift_token_hex_literal | @swift_token_integer_literal | @swift_token_oct_literal | @swift_token_real_literal | @swift_token_regex_literal | @swift_token_self_expression | @swift_token_simple_identifier | @swift_token_special_literal | @swift_token_super_expression | @swift_try_expression | @swift_tuple_expression | @swift_value_pack_expansion | @swift_value_parameter_pack - -@swift_nil_coalescing_expression_value_type = @swift_additive_expression | @swift_array_literal | @swift_as_expression | @swift_assignment | @swift_await_expression | @swift_bitwise_operation | @swift_call_expression | @swift_check_expression | @swift_comparison_expression | @swift_conjunction_expression | @swift_constructor_expression | @swift_dictionary_literal | @swift_directive | @swift_disjunction_expression | @swift_equality_expression | @swift_if_statement | @swift_infix_expression | @swift_key_path_expression | @swift_key_path_string_expression | @swift_lambda_literal | @swift_line_string_literal | @swift_macro_invocation | @swift_multi_line_string_literal | @swift_multiplicative_expression | @swift_navigation_expression | @swift_nil_coalescing_expression | @swift_open_end_range_expression | @swift_open_start_range_expression | @swift_optional_chain_marker | @swift_playground_literal | @swift_postfix_expression | @swift_prefix_expression | @swift_range_expression | @swift_raw_string_literal | @swift_referenceable_operator | @swift_reserved_word | @swift_selector_expression | @swift_switch_statement | @swift_ternary_expression | @swift_token_bin_literal | @swift_token_boolean_literal | @swift_token_diagnostic | @swift_token_fully_open_range | @swift_token_hex_literal | @swift_token_integer_literal | @swift_token_oct_literal | @swift_token_real_literal | @swift_token_regex_literal | @swift_token_self_expression | @swift_token_simple_identifier | @swift_token_special_literal | @swift_token_super_expression | @swift_try_expression | @swift_tuple_expression | @swift_value_pack_expansion | @swift_value_parameter_pack - swift_nil_coalescing_expression_def( unique int id: @swift_nil_coalescing_expression, - int if_nil: @swift_nil_coalescing_expression_if_nil_type ref, - int value: @swift_nil_coalescing_expression_value_type ref + int if_nil: @swift_expression ref, + int value: @swift_expression ref ); @swift_opaque_type_child_type = @swift_array_type | @swift_dictionary_type | @swift_existential_type | @swift_function_type | @swift_metatype | @swift_opaque_type | @swift_optional_type | @swift_protocol_composition_type | @swift_suppressed_constraint | @swift_tuple_type | @swift_type_pack_expansion | @swift_type_parameter_pack | @swift_user_type @@ -1482,18 +1404,14 @@ swift_opaque_type_def( int child: @swift_opaque_type_child_type ref ); -@swift_open_end_range_expression_start_type = @swift_additive_expression | @swift_array_literal | @swift_as_expression | @swift_assignment | @swift_await_expression | @swift_bitwise_operation | @swift_call_expression | @swift_check_expression | @swift_comparison_expression | @swift_conjunction_expression | @swift_constructor_expression | @swift_dictionary_literal | @swift_directive | @swift_disjunction_expression | @swift_equality_expression | @swift_if_statement | @swift_infix_expression | @swift_key_path_expression | @swift_key_path_string_expression | @swift_lambda_literal | @swift_line_string_literal | @swift_macro_invocation | @swift_multi_line_string_literal | @swift_multiplicative_expression | @swift_navigation_expression | @swift_nil_coalescing_expression | @swift_open_end_range_expression | @swift_open_start_range_expression | @swift_optional_chain_marker | @swift_playground_literal | @swift_postfix_expression | @swift_prefix_expression | @swift_range_expression | @swift_raw_string_literal | @swift_referenceable_operator | @swift_reserved_word | @swift_selector_expression | @swift_switch_statement | @swift_ternary_expression | @swift_token_bin_literal | @swift_token_boolean_literal | @swift_token_diagnostic | @swift_token_fully_open_range | @swift_token_hex_literal | @swift_token_integer_literal | @swift_token_oct_literal | @swift_token_real_literal | @swift_token_regex_literal | @swift_token_self_expression | @swift_token_simple_identifier | @swift_token_special_literal | @swift_token_super_expression | @swift_try_expression | @swift_tuple_expression | @swift_value_pack_expansion | @swift_value_parameter_pack - swift_open_end_range_expression_def( unique int id: @swift_open_end_range_expression, - int start: @swift_open_end_range_expression_start_type ref + int start: @swift_expression ref ); -@swift_open_start_range_expression_end_type = @swift_additive_expression | @swift_array_literal | @swift_as_expression | @swift_assignment | @swift_await_expression | @swift_bitwise_operation | @swift_call_expression | @swift_check_expression | @swift_comparison_expression | @swift_conjunction_expression | @swift_constructor_expression | @swift_dictionary_literal | @swift_directive | @swift_disjunction_expression | @swift_equality_expression | @swift_if_statement | @swift_infix_expression | @swift_key_path_expression | @swift_key_path_string_expression | @swift_lambda_literal | @swift_line_string_literal | @swift_macro_invocation | @swift_multi_line_string_literal | @swift_multiplicative_expression | @swift_navigation_expression | @swift_nil_coalescing_expression | @swift_open_end_range_expression | @swift_open_start_range_expression | @swift_optional_chain_marker | @swift_playground_literal | @swift_postfix_expression | @swift_prefix_expression | @swift_range_expression | @swift_raw_string_literal | @swift_referenceable_operator | @swift_reserved_word | @swift_selector_expression | @swift_switch_statement | @swift_ternary_expression | @swift_token_bin_literal | @swift_token_boolean_literal | @swift_token_diagnostic | @swift_token_fully_open_range | @swift_token_hex_literal | @swift_token_integer_literal | @swift_token_oct_literal | @swift_token_real_literal | @swift_token_regex_literal | @swift_token_self_expression | @swift_token_simple_identifier | @swift_token_special_literal | @swift_token_super_expression | @swift_try_expression | @swift_tuple_expression | @swift_value_pack_expansion | @swift_value_parameter_pack - swift_open_start_range_expression_def( unique int id: @swift_open_start_range_expression, - int end: @swift_open_start_range_expression_end_type ref + int end: @swift_expression ref ); @swift_operator_declaration_child_type = @swift_deprecated_operator_declaration_body | @swift_referenceable_operator | @swift_token_simple_identifier @@ -1509,15 +1427,9 @@ swift_operator_declaration_def( unique int id: @swift_operator_declaration ); -@swift_optional_chain_marker_child_type = @swift_additive_expression | @swift_array_literal | @swift_as_expression | @swift_assignment | @swift_await_expression | @swift_bitwise_operation | @swift_call_expression | @swift_check_expression | @swift_comparison_expression | @swift_conjunction_expression | @swift_constructor_expression | @swift_dictionary_literal | @swift_directive | @swift_disjunction_expression | @swift_equality_expression | @swift_if_statement | @swift_infix_expression | @swift_key_path_expression | @swift_key_path_string_expression | @swift_lambda_literal | @swift_line_string_literal | @swift_macro_invocation | @swift_multi_line_string_literal | @swift_multiplicative_expression | @swift_navigation_expression | @swift_nil_coalescing_expression | @swift_open_end_range_expression | @swift_open_start_range_expression | @swift_optional_chain_marker | @swift_playground_literal | @swift_postfix_expression | @swift_prefix_expression | @swift_range_expression | @swift_raw_string_literal | @swift_referenceable_operator | @swift_selector_expression | @swift_switch_statement | @swift_ternary_expression | @swift_token_bin_literal | @swift_token_boolean_literal | @swift_token_diagnostic | @swift_token_fully_open_range | @swift_token_hex_literal | @swift_token_integer_literal | @swift_token_oct_literal | @swift_token_real_literal | @swift_token_regex_literal | @swift_token_self_expression | @swift_token_simple_identifier | @swift_token_special_literal | @swift_token_super_expression | @swift_try_expression | @swift_tuple_expression | @swift_value_pack_expansion | @swift_value_parameter_pack - -swift_optional_chain_marker_child( - unique int swift_optional_chain_marker: @swift_optional_chain_marker ref, - unique int child: @swift_optional_chain_marker_child_type ref -); - swift_optional_chain_marker_def( - unique int id: @swift_optional_chain_marker + unique int id: @swift_optional_chain_marker, + int child: @swift_expression ref ); @swift_optional_type_wrapped_type = @swift_array_type | @swift_dictionary_type | @swift_tuple_type | @swift_user_type @@ -1582,7 +1494,7 @@ swift_pattern_name( unique int name: @swift_pattern_name_type ref ); -@swift_pattern_child_type = @swift_additive_expression | @swift_array_literal | @swift_as_expression | @swift_assignment | @swift_await_expression | @swift_bitwise_operation | @swift_call_expression | @swift_check_expression | @swift_comparison_expression | @swift_conjunction_expression | @swift_constructor_expression | @swift_dictionary_literal | @swift_directive | @swift_disjunction_expression | @swift_equality_expression | @swift_if_statement | @swift_infix_expression | @swift_key_path_expression | @swift_key_path_string_expression | @swift_lambda_literal | @swift_line_string_literal | @swift_macro_invocation | @swift_multi_line_string_literal | @swift_multiplicative_expression | @swift_navigation_expression | @swift_nil_coalescing_expression | @swift_open_end_range_expression | @swift_open_start_range_expression | @swift_optional_chain_marker | @swift_pattern | @swift_playground_literal | @swift_postfix_expression | @swift_prefix_expression | @swift_range_expression | @swift_raw_string_literal | @swift_referenceable_operator | @swift_selector_expression | @swift_switch_statement | @swift_ternary_expression | @swift_token_bin_literal | @swift_token_boolean_literal | @swift_token_diagnostic | @swift_token_fully_open_range | @swift_token_hex_literal | @swift_token_integer_literal | @swift_token_oct_literal | @swift_token_real_literal | @swift_token_regex_literal | @swift_token_self_expression | @swift_token_simple_identifier | @swift_token_special_literal | @swift_token_super_expression | @swift_token_wildcard_pattern | @swift_try_expression | @swift_tuple_expression | @swift_type_modifiers | @swift_user_type | @swift_value_binding_pattern | @swift_value_pack_expansion | @swift_value_parameter_pack +@swift_pattern_child_type = @swift_expression | @swift_pattern | @swift_token_wildcard_pattern | @swift_type_modifiers | @swift_user_type | @swift_value_binding_pattern #keyset[swift_pattern, index] swift_pattern_child( @@ -1595,13 +1507,11 @@ swift_pattern_def( unique int id: @swift_pattern ); -@swift_playground_literal_child_type = @swift_additive_expression | @swift_array_literal | @swift_as_expression | @swift_assignment | @swift_await_expression | @swift_bitwise_operation | @swift_call_expression | @swift_check_expression | @swift_comparison_expression | @swift_conjunction_expression | @swift_constructor_expression | @swift_dictionary_literal | @swift_directive | @swift_disjunction_expression | @swift_equality_expression | @swift_if_statement | @swift_infix_expression | @swift_key_path_expression | @swift_key_path_string_expression | @swift_lambda_literal | @swift_line_string_literal | @swift_macro_invocation | @swift_multi_line_string_literal | @swift_multiplicative_expression | @swift_navigation_expression | @swift_nil_coalescing_expression | @swift_open_end_range_expression | @swift_open_start_range_expression | @swift_optional_chain_marker | @swift_playground_literal | @swift_postfix_expression | @swift_prefix_expression | @swift_range_expression | @swift_raw_string_literal | @swift_referenceable_operator | @swift_selector_expression | @swift_switch_statement | @swift_ternary_expression | @swift_token_bin_literal | @swift_token_boolean_literal | @swift_token_diagnostic | @swift_token_fully_open_range | @swift_token_hex_literal | @swift_token_integer_literal | @swift_token_oct_literal | @swift_token_real_literal | @swift_token_regex_literal | @swift_token_self_expression | @swift_token_simple_identifier | @swift_token_special_literal | @swift_token_super_expression | @swift_try_expression | @swift_tuple_expression | @swift_value_pack_expansion | @swift_value_parameter_pack - #keyset[swift_playground_literal, index] swift_playground_literal_child( int swift_playground_literal: @swift_playground_literal ref, int index: int ref, - unique int child: @swift_playground_literal_child_type ref + unique int child: @swift_expression ref ); swift_playground_literal_def( @@ -1610,12 +1520,10 @@ swift_playground_literal_def( @swift_postfix_expression_operation_type = @swift_reserved_word | @swift_token_bang -@swift_postfix_expression_target_type = @swift_additive_expression | @swift_array_literal | @swift_as_expression | @swift_assignment | @swift_await_expression | @swift_bitwise_operation | @swift_call_expression | @swift_check_expression | @swift_comparison_expression | @swift_conjunction_expression | @swift_constructor_expression | @swift_dictionary_literal | @swift_directive | @swift_disjunction_expression | @swift_equality_expression | @swift_if_statement | @swift_infix_expression | @swift_key_path_expression | @swift_key_path_string_expression | @swift_lambda_literal | @swift_line_string_literal | @swift_macro_invocation | @swift_multi_line_string_literal | @swift_multiplicative_expression | @swift_navigation_expression | @swift_nil_coalescing_expression | @swift_open_end_range_expression | @swift_open_start_range_expression | @swift_optional_chain_marker | @swift_playground_literal | @swift_postfix_expression | @swift_prefix_expression | @swift_range_expression | @swift_raw_string_literal | @swift_referenceable_operator | @swift_reserved_word | @swift_selector_expression | @swift_switch_statement | @swift_ternary_expression | @swift_token_bin_literal | @swift_token_boolean_literal | @swift_token_diagnostic | @swift_token_fully_open_range | @swift_token_hex_literal | @swift_token_integer_literal | @swift_token_oct_literal | @swift_token_real_literal | @swift_token_regex_literal | @swift_token_self_expression | @swift_token_simple_identifier | @swift_token_special_literal | @swift_token_super_expression | @swift_try_expression | @swift_tuple_expression | @swift_value_pack_expansion | @swift_value_parameter_pack - swift_postfix_expression_def( unique int id: @swift_postfix_expression, int operation: @swift_postfix_expression_operation_type ref, - int target: @swift_postfix_expression_target_type ref + int target: @swift_expression ref ); @swift_precedence_group_attribute_child_type = @swift_token_boolean_literal | @swift_token_simple_identifier @@ -1657,12 +1565,10 @@ swift_precedence_group_declaration_def( @swift_prefix_expression_operation_type = @swift_reserved_word | @swift_token_bang | @swift_token_custom_operator -@swift_prefix_expression_target_type = @swift_additive_expression | @swift_array_literal | @swift_as_expression | @swift_assignment | @swift_await_expression | @swift_bitwise_operation | @swift_call_expression | @swift_check_expression | @swift_comparison_expression | @swift_conjunction_expression | @swift_constructor_expression | @swift_dictionary_literal | @swift_directive | @swift_disjunction_expression | @swift_equality_expression | @swift_if_statement | @swift_infix_expression | @swift_key_path_expression | @swift_key_path_string_expression | @swift_lambda_literal | @swift_line_string_literal | @swift_macro_invocation | @swift_multi_line_string_literal | @swift_multiplicative_expression | @swift_navigation_expression | @swift_nil_coalescing_expression | @swift_open_end_range_expression | @swift_open_start_range_expression | @swift_optional_chain_marker | @swift_playground_literal | @swift_postfix_expression | @swift_prefix_expression | @swift_range_expression | @swift_raw_string_literal | @swift_referenceable_operator | @swift_reserved_word | @swift_selector_expression | @swift_switch_statement | @swift_ternary_expression | @swift_token__expression | @swift_token_bin_literal | @swift_token_boolean_literal | @swift_token_diagnostic | @swift_token_fully_open_range | @swift_token_hex_literal | @swift_token_integer_literal | @swift_token_oct_literal | @swift_token_real_literal | @swift_token_regex_literal | @swift_token_self_expression | @swift_token_simple_identifier | @swift_token_special_literal | @swift_token_super_expression | @swift_try_expression | @swift_tuple_expression | @swift_value_pack_expansion | @swift_value_parameter_pack - swift_prefix_expression_def( unique int id: @swift_prefix_expression, int operation: @swift_prefix_expression_operation_type ref, - int target: @swift_prefix_expression_target_type ref + int target: @swift_expression ref ); #keyset[swift_property_declaration, index] @@ -1679,13 +1585,11 @@ swift_property_declaration_name( unique int name: @swift_pattern ref ); -@swift_property_declaration_value_type = @swift_additive_expression | @swift_array_literal | @swift_as_expression | @swift_assignment | @swift_await_expression | @swift_bitwise_operation | @swift_call_expression | @swift_check_expression | @swift_comparison_expression | @swift_conjunction_expression | @swift_constructor_expression | @swift_dictionary_literal | @swift_directive | @swift_disjunction_expression | @swift_equality_expression | @swift_if_statement | @swift_infix_expression | @swift_key_path_expression | @swift_key_path_string_expression | @swift_lambda_literal | @swift_line_string_literal | @swift_macro_invocation | @swift_multi_line_string_literal | @swift_multiplicative_expression | @swift_navigation_expression | @swift_nil_coalescing_expression | @swift_open_end_range_expression | @swift_open_start_range_expression | @swift_optional_chain_marker | @swift_playground_literal | @swift_postfix_expression | @swift_prefix_expression | @swift_range_expression | @swift_raw_string_literal | @swift_referenceable_operator | @swift_reserved_word | @swift_selector_expression | @swift_switch_statement | @swift_ternary_expression | @swift_token_bin_literal | @swift_token_boolean_literal | @swift_token_diagnostic | @swift_token_fully_open_range | @swift_token_hex_literal | @swift_token_integer_literal | @swift_token_oct_literal | @swift_token_real_literal | @swift_token_regex_literal | @swift_token_self_expression | @swift_token_simple_identifier | @swift_token_special_literal | @swift_token_super_expression | @swift_try_expression | @swift_tuple_expression | @swift_value_pack_expansion | @swift_value_parameter_pack - #keyset[swift_property_declaration, index] swift_property_declaration_value( int swift_property_declaration: @swift_property_declaration ref, int index: int ref, - unique int value: @swift_property_declaration_value_type ref + unique int value: @swift_expression ref ); @swift_property_declaration_child_type = @swift_attribute | @swift_modifiers | @swift_token_inheritance_modifier | @swift_token_ownership_modifier | @swift_token_property_behavior_modifier | @swift_type_annotation | @swift_type_constraints | @swift_value_binding_pattern | @swift_willset_didset_block @@ -1755,13 +1659,11 @@ swift_protocol_declaration_def( int name: @swift_token_type_identifier ref ); -@swift_protocol_function_declaration_default_value_type = @swift_additive_expression | @swift_array_literal | @swift_as_expression | @swift_assignment | @swift_await_expression | @swift_bitwise_operation | @swift_call_expression | @swift_check_expression | @swift_comparison_expression | @swift_conjunction_expression | @swift_constructor_expression | @swift_dictionary_literal | @swift_directive | @swift_disjunction_expression | @swift_equality_expression | @swift_if_statement | @swift_infix_expression | @swift_key_path_expression | @swift_key_path_string_expression | @swift_lambda_literal | @swift_line_string_literal | @swift_macro_invocation | @swift_multi_line_string_literal | @swift_multiplicative_expression | @swift_navigation_expression | @swift_nil_coalescing_expression | @swift_open_end_range_expression | @swift_open_start_range_expression | @swift_optional_chain_marker | @swift_playground_literal | @swift_postfix_expression | @swift_prefix_expression | @swift_range_expression | @swift_raw_string_literal | @swift_referenceable_operator | @swift_reserved_word | @swift_selector_expression | @swift_switch_statement | @swift_ternary_expression | @swift_token_bin_literal | @swift_token_boolean_literal | @swift_token_diagnostic | @swift_token_fully_open_range | @swift_token_hex_literal | @swift_token_integer_literal | @swift_token_oct_literal | @swift_token_real_literal | @swift_token_regex_literal | @swift_token_self_expression | @swift_token_simple_identifier | @swift_token_special_literal | @swift_token_super_expression | @swift_try_expression | @swift_tuple_expression | @swift_value_pack_expansion | @swift_value_parameter_pack - #keyset[swift_protocol_function_declaration, index] swift_protocol_function_declaration_default_value( int swift_protocol_function_declaration: @swift_protocol_function_declaration ref, int index: int ref, - unique int default_value: @swift_protocol_function_declaration_default_value_type ref + unique int default_value: @swift_expression ref ); @swift_protocol_function_declaration_name_type = @swift_array_type | @swift_dictionary_type | @swift_existential_type | @swift_function_type | @swift_metatype | @swift_opaque_type | @swift_optional_type | @swift_protocol_composition_type | @swift_referenceable_operator | @swift_suppressed_constraint | @swift_token_simple_identifier | @swift_tuple_type | @swift_type_pack_expansion | @swift_type_parameter_pack | @swift_user_type @@ -1822,21 +1724,17 @@ swift_protocol_property_requirements_def( unique int id: @swift_protocol_property_requirements ); -@swift_range_expression_end_type = @swift_additive_expression | @swift_array_literal | @swift_as_expression | @swift_assignment | @swift_await_expression | @swift_bitwise_operation | @swift_call_expression | @swift_check_expression | @swift_comparison_expression | @swift_conjunction_expression | @swift_constructor_expression | @swift_dictionary_literal | @swift_directive | @swift_disjunction_expression | @swift_equality_expression | @swift_if_statement | @swift_infix_expression | @swift_key_path_expression | @swift_key_path_string_expression | @swift_lambda_literal | @swift_line_string_literal | @swift_macro_invocation | @swift_multi_line_string_literal | @swift_multiplicative_expression | @swift_navigation_expression | @swift_nil_coalescing_expression | @swift_open_end_range_expression | @swift_open_start_range_expression | @swift_optional_chain_marker | @swift_playground_literal | @swift_postfix_expression | @swift_prefix_expression | @swift_range_expression | @swift_raw_string_literal | @swift_referenceable_operator | @swift_reserved_word | @swift_selector_expression | @swift_switch_statement | @swift_ternary_expression | @swift_token_bin_literal | @swift_token_boolean_literal | @swift_token_diagnostic | @swift_token_fully_open_range | @swift_token_hex_literal | @swift_token_integer_literal | @swift_token_oct_literal | @swift_token_real_literal | @swift_token_regex_literal | @swift_token_self_expression | @swift_token_simple_identifier | @swift_token_special_literal | @swift_token_super_expression | @swift_try_expression | @swift_tuple_expression | @swift_value_pack_expansion | @swift_value_parameter_pack - case @swift_range_expression.op of 0 = @swift_range_expression_dotdotdot | 1 = @swift_range_expression_dotdotlangle ; -@swift_range_expression_start_type = @swift_additive_expression | @swift_array_literal | @swift_as_expression | @swift_assignment | @swift_await_expression | @swift_bitwise_operation | @swift_call_expression | @swift_check_expression | @swift_comparison_expression | @swift_conjunction_expression | @swift_constructor_expression | @swift_dictionary_literal | @swift_directive | @swift_disjunction_expression | @swift_equality_expression | @swift_if_statement | @swift_infix_expression | @swift_key_path_expression | @swift_key_path_string_expression | @swift_lambda_literal | @swift_line_string_literal | @swift_macro_invocation | @swift_multi_line_string_literal | @swift_multiplicative_expression | @swift_navigation_expression | @swift_nil_coalescing_expression | @swift_open_end_range_expression | @swift_open_start_range_expression | @swift_optional_chain_marker | @swift_playground_literal | @swift_postfix_expression | @swift_prefix_expression | @swift_range_expression | @swift_raw_string_literal | @swift_referenceable_operator | @swift_reserved_word | @swift_selector_expression | @swift_switch_statement | @swift_ternary_expression | @swift_token_bin_literal | @swift_token_boolean_literal | @swift_token_diagnostic | @swift_token_fully_open_range | @swift_token_hex_literal | @swift_token_integer_literal | @swift_token_oct_literal | @swift_token_real_literal | @swift_token_regex_literal | @swift_token_self_expression | @swift_token_simple_identifier | @swift_token_special_literal | @swift_token_super_expression | @swift_try_expression | @swift_tuple_expression | @swift_value_pack_expansion | @swift_value_parameter_pack - swift_range_expression_def( unique int id: @swift_range_expression, - int end: @swift_range_expression_end_type ref, + int end: @swift_expression ref, int op: int ref, - int start: @swift_range_expression_start_type ref + int start: @swift_expression ref ); #keyset[swift_raw_str_interpolation, index] @@ -1905,15 +1803,9 @@ swift_repeat_while_statement_def( unique int id: @swift_repeat_while_statement ); -@swift_selector_expression_child_type = @swift_additive_expression | @swift_array_literal | @swift_as_expression | @swift_assignment | @swift_await_expression | @swift_bitwise_operation | @swift_call_expression | @swift_check_expression | @swift_comparison_expression | @swift_conjunction_expression | @swift_constructor_expression | @swift_dictionary_literal | @swift_directive | @swift_disjunction_expression | @swift_equality_expression | @swift_if_statement | @swift_infix_expression | @swift_key_path_expression | @swift_key_path_string_expression | @swift_lambda_literal | @swift_line_string_literal | @swift_macro_invocation | @swift_multi_line_string_literal | @swift_multiplicative_expression | @swift_navigation_expression | @swift_nil_coalescing_expression | @swift_open_end_range_expression | @swift_open_start_range_expression | @swift_optional_chain_marker | @swift_playground_literal | @swift_postfix_expression | @swift_prefix_expression | @swift_range_expression | @swift_raw_string_literal | @swift_referenceable_operator | @swift_selector_expression | @swift_switch_statement | @swift_ternary_expression | @swift_token_bin_literal | @swift_token_boolean_literal | @swift_token_diagnostic | @swift_token_fully_open_range | @swift_token_hex_literal | @swift_token_integer_literal | @swift_token_oct_literal | @swift_token_real_literal | @swift_token_regex_literal | @swift_token_self_expression | @swift_token_simple_identifier | @swift_token_special_literal | @swift_token_super_expression | @swift_try_expression | @swift_tuple_expression | @swift_value_pack_expansion | @swift_value_parameter_pack - -swift_selector_expression_child( - unique int swift_selector_expression: @swift_selector_expression ref, - unique int child: @swift_selector_expression_child_type ref -); - swift_selector_expression_def( - unique int id: @swift_selector_expression + unique int id: @swift_selector_expression, + int child: @swift_expression ref ); swift_setter_specifier_child( @@ -1925,7 +1817,7 @@ swift_setter_specifier_def( unique int id: @swift_setter_specifier ); -@swift_source_file_child_type = @swift_additive_expression | @swift_array_literal | @swift_as_expression | @swift_assignment | @swift_associatedtype_declaration | @swift_await_expression | @swift_bitwise_operation | @swift_call_expression | @swift_check_expression | @swift_class_declaration | @swift_comparison_expression | @swift_conjunction_expression | @swift_constructor_expression | @swift_dictionary_literal | @swift_directive | @swift_disjunction_expression | @swift_do_statement | @swift_equality_expression | @swift_for_statement | @swift_function_declaration | @swift_guard_statement | @swift_if_statement | @swift_import_declaration | @swift_infix_expression | @swift_init_declaration | @swift_key_path_expression | @swift_key_path_string_expression | @swift_lambda_literal | @swift_line_string_literal | @swift_macro_declaration | @swift_macro_invocation | @swift_multi_line_string_literal | @swift_multiplicative_expression | @swift_navigation_expression | @swift_nil_coalescing_expression | @swift_open_end_range_expression | @swift_open_start_range_expression | @swift_operator_declaration | @swift_optional_chain_marker | @swift_playground_literal | @swift_postfix_expression | @swift_precedence_group_declaration | @swift_prefix_expression | @swift_property_declaration | @swift_protocol_declaration | @swift_range_expression | @swift_raw_string_literal | @swift_referenceable_operator | @swift_repeat_while_statement | @swift_selector_expression | @swift_switch_statement | @swift_ternary_expression | @swift_token_bin_literal | @swift_token_boolean_literal | @swift_token_diagnostic | @swift_token_fully_open_range | @swift_token_hex_literal | @swift_token_integer_literal | @swift_token_oct_literal | @swift_token_real_literal | @swift_token_regex_literal | @swift_token_self_expression | @swift_token_shebang_line | @swift_token_simple_identifier | @swift_token_special_literal | @swift_token_statement_label | @swift_token_super_expression | @swift_token_throw_keyword | @swift_try_expression | @swift_tuple_expression | @swift_typealias_declaration | @swift_value_pack_expansion | @swift_value_parameter_pack | @swift_while_statement +@swift_source_file_child_type = @swift_associatedtype_declaration | @swift_class_declaration | @swift_do_statement | @swift_expression | @swift_for_statement | @swift_function_declaration | @swift_guard_statement | @swift_import_declaration | @swift_init_declaration | @swift_macro_declaration | @swift_operator_declaration | @swift_precedence_group_declaration | @swift_property_declaration | @swift_protocol_declaration | @swift_repeat_while_statement | @swift_token_shebang_line | @swift_token_statement_label | @swift_token_throw_keyword | @swift_typealias_declaration | @swift_while_statement #keyset[swift_source_file, index] swift_source_file_child( @@ -1938,7 +1830,7 @@ swift_source_file_def( unique int id: @swift_source_file ); -@swift_statements_child_type = @swift_additive_expression | @swift_array_literal | @swift_as_expression | @swift_assignment | @swift_await_expression | @swift_bitwise_operation | @swift_call_expression | @swift_check_expression | @swift_class_declaration | @swift_comparison_expression | @swift_conjunction_expression | @swift_constructor_expression | @swift_control_transfer_statement | @swift_dictionary_literal | @swift_directive | @swift_disjunction_expression | @swift_do_statement | @swift_equality_expression | @swift_for_statement | @swift_function_declaration | @swift_guard_statement | @swift_if_statement | @swift_infix_expression | @swift_key_path_expression | @swift_key_path_string_expression | @swift_lambda_literal | @swift_line_string_literal | @swift_macro_invocation | @swift_multi_line_string_literal | @swift_multiplicative_expression | @swift_navigation_expression | @swift_nil_coalescing_expression | @swift_open_end_range_expression | @swift_open_start_range_expression | @swift_optional_chain_marker | @swift_playground_literal | @swift_postfix_expression | @swift_prefix_expression | @swift_property_declaration | @swift_range_expression | @swift_raw_string_literal | @swift_referenceable_operator | @swift_repeat_while_statement | @swift_selector_expression | @swift_switch_statement | @swift_ternary_expression | @swift_token_bin_literal | @swift_token_boolean_literal | @swift_token_diagnostic | @swift_token_fully_open_range | @swift_token_hex_literal | @swift_token_integer_literal | @swift_token_oct_literal | @swift_token_real_literal | @swift_token_regex_literal | @swift_token_self_expression | @swift_token_simple_identifier | @swift_token_special_literal | @swift_token_statement_label | @swift_token_super_expression | @swift_try_expression | @swift_tuple_expression | @swift_typealias_declaration | @swift_value_pack_expansion | @swift_value_parameter_pack | @swift_while_statement +@swift_statements_child_type = @swift_class_declaration | @swift_control_transfer_statement | @swift_do_statement | @swift_expression | @swift_for_statement | @swift_function_declaration | @swift_guard_statement | @swift_property_declaration | @swift_repeat_while_statement | @swift_token_statement_label | @swift_typealias_declaration | @swift_while_statement #keyset[swift_statements, index] swift_statements_child( @@ -1951,13 +1843,11 @@ swift_statements_def( unique int id: @swift_statements ); -@swift_subscript_declaration_default_value_type = @swift_additive_expression | @swift_array_literal | @swift_as_expression | @swift_assignment | @swift_await_expression | @swift_bitwise_operation | @swift_call_expression | @swift_check_expression | @swift_comparison_expression | @swift_conjunction_expression | @swift_constructor_expression | @swift_dictionary_literal | @swift_directive | @swift_disjunction_expression | @swift_equality_expression | @swift_if_statement | @swift_infix_expression | @swift_key_path_expression | @swift_key_path_string_expression | @swift_lambda_literal | @swift_line_string_literal | @swift_macro_invocation | @swift_multi_line_string_literal | @swift_multiplicative_expression | @swift_navigation_expression | @swift_nil_coalescing_expression | @swift_open_end_range_expression | @swift_open_start_range_expression | @swift_optional_chain_marker | @swift_playground_literal | @swift_postfix_expression | @swift_prefix_expression | @swift_range_expression | @swift_raw_string_literal | @swift_referenceable_operator | @swift_reserved_word | @swift_selector_expression | @swift_switch_statement | @swift_ternary_expression | @swift_token_bin_literal | @swift_token_boolean_literal | @swift_token_diagnostic | @swift_token_fully_open_range | @swift_token_hex_literal | @swift_token_integer_literal | @swift_token_oct_literal | @swift_token_real_literal | @swift_token_regex_literal | @swift_token_self_expression | @swift_token_simple_identifier | @swift_token_special_literal | @swift_token_super_expression | @swift_try_expression | @swift_tuple_expression | @swift_value_pack_expansion | @swift_value_parameter_pack - #keyset[swift_subscript_declaration, index] swift_subscript_declaration_default_value( int swift_subscript_declaration: @swift_subscript_declaration ref, int index: int ref, - unique int default_value: @swift_subscript_declaration_default_value_type ref + unique int default_value: @swift_expression ref ); @swift_subscript_declaration_name_type = @swift_array_type | @swift_dictionary_type | @swift_existential_type | @swift_function_type | @swift_metatype | @swift_opaque_type | @swift_optional_type | @swift_protocol_composition_type | @swift_suppressed_constraint | @swift_tuple_type | @swift_type_pack_expansion | @swift_type_parameter_pack | @swift_user_type @@ -1994,7 +1884,7 @@ swift_suppressed_constraint_def( int suppressed: @swift_token_type_identifier ref ); -@swift_switch_entry_child_type = @swift_additive_expression | @swift_array_literal | @swift_as_expression | @swift_assignment | @swift_await_expression | @swift_bitwise_operation | @swift_call_expression | @swift_check_expression | @swift_comparison_expression | @swift_conjunction_expression | @swift_constructor_expression | @swift_dictionary_literal | @swift_directive | @swift_disjunction_expression | @swift_equality_expression | @swift_if_statement | @swift_infix_expression | @swift_key_path_expression | @swift_key_path_string_expression | @swift_lambda_literal | @swift_line_string_literal | @swift_macro_invocation | @swift_modifiers | @swift_multi_line_string_literal | @swift_multiplicative_expression | @swift_navigation_expression | @swift_nil_coalescing_expression | @swift_open_end_range_expression | @swift_open_start_range_expression | @swift_optional_chain_marker | @swift_playground_literal | @swift_postfix_expression | @swift_prefix_expression | @swift_range_expression | @swift_raw_string_literal | @swift_referenceable_operator | @swift_selector_expression | @swift_statements | @swift_switch_pattern | @swift_switch_statement | @swift_ternary_expression | @swift_token_bin_literal | @swift_token_boolean_literal | @swift_token_default_keyword | @swift_token_diagnostic | @swift_token_fully_open_range | @swift_token_hex_literal | @swift_token_integer_literal | @swift_token_oct_literal | @swift_token_real_literal | @swift_token_regex_literal | @swift_token_self_expression | @swift_token_simple_identifier | @swift_token_special_literal | @swift_token_super_expression | @swift_token_where_keyword | @swift_try_expression | @swift_tuple_expression | @swift_value_pack_expansion | @swift_value_parameter_pack +@swift_switch_entry_child_type = @swift_expression | @swift_modifiers | @swift_statements | @swift_switch_pattern | @swift_token_default_keyword | @swift_token_where_keyword #keyset[swift_switch_entry, index] swift_switch_entry_child( @@ -2012,8 +1902,6 @@ swift_switch_pattern_def( int child: @swift_pattern ref ); -@swift_switch_statement_expr_type = @swift_additive_expression | @swift_array_literal | @swift_as_expression | @swift_assignment | @swift_await_expression | @swift_bitwise_operation | @swift_call_expression | @swift_check_expression | @swift_comparison_expression | @swift_conjunction_expression | @swift_constructor_expression | @swift_dictionary_literal | @swift_directive | @swift_disjunction_expression | @swift_equality_expression | @swift_if_statement | @swift_infix_expression | @swift_key_path_expression | @swift_key_path_string_expression | @swift_lambda_literal | @swift_line_string_literal | @swift_macro_invocation | @swift_multi_line_string_literal | @swift_multiplicative_expression | @swift_navigation_expression | @swift_nil_coalescing_expression | @swift_open_end_range_expression | @swift_open_start_range_expression | @swift_optional_chain_marker | @swift_playground_literal | @swift_postfix_expression | @swift_prefix_expression | @swift_range_expression | @swift_raw_string_literal | @swift_referenceable_operator | @swift_reserved_word | @swift_selector_expression | @swift_switch_statement | @swift_ternary_expression | @swift_token_bin_literal | @swift_token_boolean_literal | @swift_token_diagnostic | @swift_token_fully_open_range | @swift_token_hex_literal | @swift_token_integer_literal | @swift_token_oct_literal | @swift_token_real_literal | @swift_token_regex_literal | @swift_token_self_expression | @swift_token_simple_identifier | @swift_token_special_literal | @swift_token_super_expression | @swift_try_expression | @swift_tuple_expression | @swift_value_pack_expansion | @swift_value_parameter_pack - #keyset[swift_switch_statement, index] swift_switch_statement_child( int swift_switch_statement: @swift_switch_statement ref, @@ -2023,20 +1911,14 @@ swift_switch_statement_child( swift_switch_statement_def( unique int id: @swift_switch_statement, - int expr: @swift_switch_statement_expr_type ref + int expr: @swift_expression ref ); -@swift_ternary_expression_condition_type = @swift_additive_expression | @swift_array_literal | @swift_as_expression | @swift_assignment | @swift_await_expression | @swift_bitwise_operation | @swift_call_expression | @swift_check_expression | @swift_comparison_expression | @swift_conjunction_expression | @swift_constructor_expression | @swift_dictionary_literal | @swift_directive | @swift_disjunction_expression | @swift_equality_expression | @swift_if_statement | @swift_infix_expression | @swift_key_path_expression | @swift_key_path_string_expression | @swift_lambda_literal | @swift_line_string_literal | @swift_macro_invocation | @swift_multi_line_string_literal | @swift_multiplicative_expression | @swift_navigation_expression | @swift_nil_coalescing_expression | @swift_open_end_range_expression | @swift_open_start_range_expression | @swift_optional_chain_marker | @swift_playground_literal | @swift_postfix_expression | @swift_prefix_expression | @swift_range_expression | @swift_raw_string_literal | @swift_referenceable_operator | @swift_reserved_word | @swift_selector_expression | @swift_switch_statement | @swift_ternary_expression | @swift_token_bin_literal | @swift_token_boolean_literal | @swift_token_diagnostic | @swift_token_fully_open_range | @swift_token_hex_literal | @swift_token_integer_literal | @swift_token_oct_literal | @swift_token_real_literal | @swift_token_regex_literal | @swift_token_self_expression | @swift_token_simple_identifier | @swift_token_special_literal | @swift_token_super_expression | @swift_try_expression | @swift_tuple_expression | @swift_value_pack_expansion | @swift_value_parameter_pack - -@swift_ternary_expression_if_false_type = @swift_additive_expression | @swift_array_literal | @swift_as_expression | @swift_assignment | @swift_await_expression | @swift_bitwise_operation | @swift_call_expression | @swift_check_expression | @swift_comparison_expression | @swift_conjunction_expression | @swift_constructor_expression | @swift_dictionary_literal | @swift_directive | @swift_disjunction_expression | @swift_equality_expression | @swift_if_statement | @swift_infix_expression | @swift_key_path_expression | @swift_key_path_string_expression | @swift_lambda_literal | @swift_line_string_literal | @swift_macro_invocation | @swift_multi_line_string_literal | @swift_multiplicative_expression | @swift_navigation_expression | @swift_nil_coalescing_expression | @swift_open_end_range_expression | @swift_open_start_range_expression | @swift_optional_chain_marker | @swift_playground_literal | @swift_postfix_expression | @swift_prefix_expression | @swift_range_expression | @swift_raw_string_literal | @swift_referenceable_operator | @swift_reserved_word | @swift_selector_expression | @swift_switch_statement | @swift_ternary_expression | @swift_token_bin_literal | @swift_token_boolean_literal | @swift_token_diagnostic | @swift_token_fully_open_range | @swift_token_hex_literal | @swift_token_integer_literal | @swift_token_oct_literal | @swift_token_real_literal | @swift_token_regex_literal | @swift_token_self_expression | @swift_token_simple_identifier | @swift_token_special_literal | @swift_token_super_expression | @swift_try_expression | @swift_tuple_expression | @swift_value_pack_expansion | @swift_value_parameter_pack - -@swift_ternary_expression_if_true_type = @swift_additive_expression | @swift_array_literal | @swift_as_expression | @swift_assignment | @swift_await_expression | @swift_bitwise_operation | @swift_call_expression | @swift_check_expression | @swift_comparison_expression | @swift_conjunction_expression | @swift_constructor_expression | @swift_dictionary_literal | @swift_directive | @swift_disjunction_expression | @swift_equality_expression | @swift_if_statement | @swift_infix_expression | @swift_key_path_expression | @swift_key_path_string_expression | @swift_lambda_literal | @swift_line_string_literal | @swift_macro_invocation | @swift_multi_line_string_literal | @swift_multiplicative_expression | @swift_navigation_expression | @swift_nil_coalescing_expression | @swift_open_end_range_expression | @swift_open_start_range_expression | @swift_optional_chain_marker | @swift_playground_literal | @swift_postfix_expression | @swift_prefix_expression | @swift_range_expression | @swift_raw_string_literal | @swift_referenceable_operator | @swift_reserved_word | @swift_selector_expression | @swift_switch_statement | @swift_ternary_expression | @swift_token_bin_literal | @swift_token_boolean_literal | @swift_token_diagnostic | @swift_token_fully_open_range | @swift_token_hex_literal | @swift_token_integer_literal | @swift_token_oct_literal | @swift_token_real_literal | @swift_token_regex_literal | @swift_token_self_expression | @swift_token_simple_identifier | @swift_token_special_literal | @swift_token_super_expression | @swift_try_expression | @swift_tuple_expression | @swift_value_pack_expansion | @swift_value_parameter_pack - swift_ternary_expression_def( unique int id: @swift_ternary_expression, - int condition: @swift_ternary_expression_condition_type ref, - int if_false: @swift_ternary_expression_if_false_type ref, - int if_true: @swift_ternary_expression_if_true_type ref + int condition: @swift_expression ref, + int if_false: @swift_expression ref, + int if_true: @swift_expression ref ); @swift_throws_clause_type_type = @swift_array_type | @swift_dictionary_type | @swift_existential_type | @swift_function_type | @swift_metatype | @swift_opaque_type | @swift_optional_type | @swift_protocol_composition_type | @swift_suppressed_constraint | @swift_tuple_type | @swift_type_pack_expansion | @swift_type_parameter_pack | @swift_user_type @@ -2046,11 +1928,9 @@ swift_throws_clause_def( int type__: @swift_throws_clause_type_type ref ); -@swift_try_expression_expr_type = @swift_additive_expression | @swift_array_literal | @swift_as_expression | @swift_assignment | @swift_await_expression | @swift_bitwise_operation | @swift_call_expression | @swift_check_expression | @swift_comparison_expression | @swift_conjunction_expression | @swift_constructor_expression | @swift_dictionary_literal | @swift_directive | @swift_disjunction_expression | @swift_equality_expression | @swift_if_statement | @swift_infix_expression | @swift_key_path_expression | @swift_key_path_string_expression | @swift_lambda_literal | @swift_line_string_literal | @swift_macro_invocation | @swift_multi_line_string_literal | @swift_multiplicative_expression | @swift_navigation_expression | @swift_nil_coalescing_expression | @swift_open_end_range_expression | @swift_open_start_range_expression | @swift_optional_chain_marker | @swift_playground_literal | @swift_postfix_expression | @swift_prefix_expression | @swift_range_expression | @swift_raw_string_literal | @swift_referenceable_operator | @swift_reserved_word | @swift_selector_expression | @swift_switch_statement | @swift_ternary_expression | @swift_token_bin_literal | @swift_token_boolean_literal | @swift_token_diagnostic | @swift_token_fully_open_range | @swift_token_hex_literal | @swift_token_integer_literal | @swift_token_oct_literal | @swift_token_real_literal | @swift_token_regex_literal | @swift_token_self_expression | @swift_token_simple_identifier | @swift_token_special_literal | @swift_token_super_expression | @swift_try_expression | @swift_tuple_expression | @swift_value_pack_expansion | @swift_value_parameter_pack - swift_try_expression_def( unique int id: @swift_try_expression, - int expr: @swift_try_expression_expr_type ref, + int expr: @swift_expression ref, int child: @swift_token_try_operator ref ); @@ -2061,13 +1941,11 @@ swift_tuple_expression_name( unique int name: @swift_token_simple_identifier ref ); -@swift_tuple_expression_value_type = @swift_additive_expression | @swift_array_literal | @swift_as_expression | @swift_assignment | @swift_await_expression | @swift_bitwise_operation | @swift_call_expression | @swift_check_expression | @swift_comparison_expression | @swift_conjunction_expression | @swift_constructor_expression | @swift_dictionary_literal | @swift_directive | @swift_disjunction_expression | @swift_equality_expression | @swift_if_statement | @swift_infix_expression | @swift_key_path_expression | @swift_key_path_string_expression | @swift_lambda_literal | @swift_line_string_literal | @swift_macro_invocation | @swift_multi_line_string_literal | @swift_multiplicative_expression | @swift_navigation_expression | @swift_nil_coalescing_expression | @swift_open_end_range_expression | @swift_open_start_range_expression | @swift_optional_chain_marker | @swift_playground_literal | @swift_postfix_expression | @swift_prefix_expression | @swift_range_expression | @swift_raw_string_literal | @swift_referenceable_operator | @swift_reserved_word | @swift_selector_expression | @swift_switch_statement | @swift_ternary_expression | @swift_token_bin_literal | @swift_token_boolean_literal | @swift_token_diagnostic | @swift_token_fully_open_range | @swift_token_hex_literal | @swift_token_integer_literal | @swift_token_oct_literal | @swift_token_real_literal | @swift_token_regex_literal | @swift_token_self_expression | @swift_token_simple_identifier | @swift_token_special_literal | @swift_token_super_expression | @swift_try_expression | @swift_tuple_expression | @swift_value_pack_expansion | @swift_value_parameter_pack - #keyset[swift_tuple_expression, index] swift_tuple_expression_value( int swift_tuple_expression: @swift_tuple_expression ref, int index: int ref, - unique int value: @swift_tuple_expression_value_type ref + unique int value: @swift_expression ref ); swift_tuple_expression_def( @@ -2309,11 +2187,9 @@ swift_value_argument_reference_specifier( unique int reference_specifier: @swift_value_argument_label ref ); -@swift_value_argument_value_type = @swift_additive_expression | @swift_array_literal | @swift_as_expression | @swift_assignment | @swift_await_expression | @swift_bitwise_operation | @swift_call_expression | @swift_check_expression | @swift_comparison_expression | @swift_conjunction_expression | @swift_constructor_expression | @swift_dictionary_literal | @swift_directive | @swift_disjunction_expression | @swift_equality_expression | @swift_if_statement | @swift_infix_expression | @swift_key_path_expression | @swift_key_path_string_expression | @swift_lambda_literal | @swift_line_string_literal | @swift_macro_invocation | @swift_multi_line_string_literal | @swift_multiplicative_expression | @swift_navigation_expression | @swift_nil_coalescing_expression | @swift_open_end_range_expression | @swift_open_start_range_expression | @swift_optional_chain_marker | @swift_playground_literal | @swift_postfix_expression | @swift_prefix_expression | @swift_range_expression | @swift_raw_string_literal | @swift_referenceable_operator | @swift_reserved_word | @swift_selector_expression | @swift_switch_statement | @swift_ternary_expression | @swift_token_bin_literal | @swift_token_boolean_literal | @swift_token_diagnostic | @swift_token_fully_open_range | @swift_token_hex_literal | @swift_token_integer_literal | @swift_token_oct_literal | @swift_token_real_literal | @swift_token_regex_literal | @swift_token_self_expression | @swift_token_simple_identifier | @swift_token_special_literal | @swift_token_super_expression | @swift_try_expression | @swift_tuple_expression | @swift_value_pack_expansion | @swift_value_parameter_pack - swift_value_argument_value( unique int swift_value_argument: @swift_value_argument ref, - unique int value: @swift_value_argument_value_type ref + unique int value: @swift_expression ref ); swift_value_argument_child( @@ -2352,29 +2228,17 @@ swift_value_binding_pattern_def( int mutability: int ref ); -@swift_value_pack_expansion_child_type = @swift_additive_expression | @swift_array_literal | @swift_as_expression | @swift_assignment | @swift_await_expression | @swift_bitwise_operation | @swift_call_expression | @swift_check_expression | @swift_comparison_expression | @swift_conjunction_expression | @swift_constructor_expression | @swift_dictionary_literal | @swift_directive | @swift_disjunction_expression | @swift_equality_expression | @swift_if_statement | @swift_infix_expression | @swift_key_path_expression | @swift_key_path_string_expression | @swift_lambda_literal | @swift_line_string_literal | @swift_macro_invocation | @swift_multi_line_string_literal | @swift_multiplicative_expression | @swift_navigation_expression | @swift_nil_coalescing_expression | @swift_open_end_range_expression | @swift_open_start_range_expression | @swift_optional_chain_marker | @swift_playground_literal | @swift_postfix_expression | @swift_prefix_expression | @swift_range_expression | @swift_raw_string_literal | @swift_referenceable_operator | @swift_selector_expression | @swift_switch_statement | @swift_ternary_expression | @swift_token_bin_literal | @swift_token_boolean_literal | @swift_token_diagnostic | @swift_token_fully_open_range | @swift_token_hex_literal | @swift_token_integer_literal | @swift_token_oct_literal | @swift_token_real_literal | @swift_token_regex_literal | @swift_token_self_expression | @swift_token_simple_identifier | @swift_token_special_literal | @swift_token_super_expression | @swift_try_expression | @swift_tuple_expression | @swift_value_pack_expansion | @swift_value_parameter_pack - -swift_value_pack_expansion_child( - unique int swift_value_pack_expansion: @swift_value_pack_expansion ref, - unique int child: @swift_value_pack_expansion_child_type ref -); - swift_value_pack_expansion_def( - unique int id: @swift_value_pack_expansion -); - -@swift_value_parameter_pack_child_type = @swift_additive_expression | @swift_array_literal | @swift_as_expression | @swift_assignment | @swift_await_expression | @swift_bitwise_operation | @swift_call_expression | @swift_check_expression | @swift_comparison_expression | @swift_conjunction_expression | @swift_constructor_expression | @swift_dictionary_literal | @swift_directive | @swift_disjunction_expression | @swift_equality_expression | @swift_if_statement | @swift_infix_expression | @swift_key_path_expression | @swift_key_path_string_expression | @swift_lambda_literal | @swift_line_string_literal | @swift_macro_invocation | @swift_multi_line_string_literal | @swift_multiplicative_expression | @swift_navigation_expression | @swift_nil_coalescing_expression | @swift_open_end_range_expression | @swift_open_start_range_expression | @swift_optional_chain_marker | @swift_playground_literal | @swift_postfix_expression | @swift_prefix_expression | @swift_range_expression | @swift_raw_string_literal | @swift_referenceable_operator | @swift_selector_expression | @swift_switch_statement | @swift_ternary_expression | @swift_token_bin_literal | @swift_token_boolean_literal | @swift_token_diagnostic | @swift_token_fully_open_range | @swift_token_hex_literal | @swift_token_integer_literal | @swift_token_oct_literal | @swift_token_real_literal | @swift_token_regex_literal | @swift_token_self_expression | @swift_token_simple_identifier | @swift_token_special_literal | @swift_token_super_expression | @swift_try_expression | @swift_tuple_expression | @swift_value_pack_expansion | @swift_value_parameter_pack - -swift_value_parameter_pack_child( - unique int swift_value_parameter_pack: @swift_value_parameter_pack ref, - unique int child: @swift_value_parameter_pack_child_type ref + unique int id: @swift_value_pack_expansion, + int child: @swift_expression ref ); swift_value_parameter_pack_def( - unique int id: @swift_value_parameter_pack + unique int id: @swift_value_parameter_pack, + int child: @swift_expression ref ); -@swift_where_clause_child_type = @swift_additive_expression | @swift_array_literal | @swift_as_expression | @swift_assignment | @swift_await_expression | @swift_bitwise_operation | @swift_call_expression | @swift_check_expression | @swift_comparison_expression | @swift_conjunction_expression | @swift_constructor_expression | @swift_dictionary_literal | @swift_directive | @swift_disjunction_expression | @swift_equality_expression | @swift_if_statement | @swift_infix_expression | @swift_key_path_expression | @swift_key_path_string_expression | @swift_lambda_literal | @swift_line_string_literal | @swift_macro_invocation | @swift_multi_line_string_literal | @swift_multiplicative_expression | @swift_navigation_expression | @swift_nil_coalescing_expression | @swift_open_end_range_expression | @swift_open_start_range_expression | @swift_optional_chain_marker | @swift_playground_literal | @swift_postfix_expression | @swift_prefix_expression | @swift_range_expression | @swift_raw_string_literal | @swift_referenceable_operator | @swift_selector_expression | @swift_switch_statement | @swift_ternary_expression | @swift_token_bin_literal | @swift_token_boolean_literal | @swift_token_diagnostic | @swift_token_fully_open_range | @swift_token_hex_literal | @swift_token_integer_literal | @swift_token_oct_literal | @swift_token_real_literal | @swift_token_regex_literal | @swift_token_self_expression | @swift_token_simple_identifier | @swift_token_special_literal | @swift_token_super_expression | @swift_token_where_keyword | @swift_try_expression | @swift_tuple_expression | @swift_value_pack_expansion | @swift_value_parameter_pack +@swift_where_clause_child_type = @swift_expression | @swift_token_where_keyword #keyset[swift_where_clause, index] swift_where_clause_child( @@ -2437,52 +2301,51 @@ swift_tokeninfo( case @swift_token.kind of 0 = @swift_reserved_word -| 1 = @swift_token__expression -| 2 = @swift_token_as_operator -| 3 = @swift_token_bang -| 4 = @swift_token_bin_literal -| 5 = @swift_token_boolean_literal -| 6 = @swift_token_catch_keyword -| 7 = @swift_token_comment -| 8 = @swift_token_custom_operator -| 9 = @swift_token_default_keyword -| 10 = @swift_token_diagnostic -| 11 = @swift_token_else -| 12 = @swift_token_fully_open_range -| 13 = @swift_token_function_modifier -| 14 = @swift_token_hex_literal -| 15 = @swift_token_inheritance_modifier -| 16 = @swift_token_integer_literal -| 17 = @swift_token_line_str_text -| 18 = @swift_token_member_modifier -| 19 = @swift_token_multi_line_str_text -| 20 = @swift_token_multiline_comment -| 21 = @swift_token_mutation_modifier -| 22 = @swift_token_oct_literal -| 23 = @swift_token_ownership_modifier -| 24 = @swift_token_parameter_modifier -| 25 = @swift_token_property_behavior_modifier -| 26 = @swift_token_property_modifier -| 27 = @swift_token_raw_str_continuing_indicator -| 28 = @swift_token_raw_str_end_part -| 29 = @swift_token_raw_str_interpolation_start -| 30 = @swift_token_raw_str_part -| 31 = @swift_token_real_literal -| 32 = @swift_token_regex_literal -| 33 = @swift_token_self_expression -| 34 = @swift_token_shebang_line -| 35 = @swift_token_simple_identifier -| 36 = @swift_token_special_literal -| 37 = @swift_token_statement_label -| 38 = @swift_token_str_escaped_char -| 39 = @swift_token_super_expression -| 40 = @swift_token_throw_keyword -| 41 = @swift_token_throws -| 42 = @swift_token_try_operator -| 43 = @swift_token_type_identifier -| 44 = @swift_token_visibility_modifier -| 45 = @swift_token_where_keyword -| 46 = @swift_token_wildcard_pattern +| 1 = @swift_token_as_operator +| 2 = @swift_token_bang +| 3 = @swift_token_bin_literal +| 4 = @swift_token_boolean_literal +| 5 = @swift_token_catch_keyword +| 6 = @swift_token_comment +| 7 = @swift_token_custom_operator +| 8 = @swift_token_default_keyword +| 9 = @swift_token_diagnostic +| 10 = @swift_token_else +| 11 = @swift_token_fully_open_range +| 12 = @swift_token_function_modifier +| 13 = @swift_token_hex_literal +| 14 = @swift_token_inheritance_modifier +| 15 = @swift_token_integer_literal +| 16 = @swift_token_line_str_text +| 17 = @swift_token_member_modifier +| 18 = @swift_token_multi_line_str_text +| 19 = @swift_token_multiline_comment +| 20 = @swift_token_mutation_modifier +| 21 = @swift_token_oct_literal +| 22 = @swift_token_ownership_modifier +| 23 = @swift_token_parameter_modifier +| 24 = @swift_token_property_behavior_modifier +| 25 = @swift_token_property_modifier +| 26 = @swift_token_raw_str_continuing_indicator +| 27 = @swift_token_raw_str_end_part +| 28 = @swift_token_raw_str_interpolation_start +| 29 = @swift_token_raw_str_part +| 30 = @swift_token_real_literal +| 31 = @swift_token_regex_literal +| 32 = @swift_token_self_expression +| 33 = @swift_token_shebang_line +| 34 = @swift_token_simple_identifier +| 35 = @swift_token_special_literal +| 36 = @swift_token_statement_label +| 37 = @swift_token_str_escaped_char +| 38 = @swift_token_super_expression +| 39 = @swift_token_throw_keyword +| 40 = @swift_token_throws +| 41 = @swift_token_try_operator +| 42 = @swift_token_type_identifier +| 43 = @swift_token_visibility_modifier +| 44 = @swift_token_where_keyword +| 45 = @swift_token_wildcard_pattern ; From 70f3fd1158fafd330b60492b349dcb71975b3c53 Mon Sep 17 00:00:00 2001 From: Taus Date: Fri, 8 May 2026 15:29:57 +0000 Subject: [PATCH 245/260] unified: make `unannotated_type` named and supertype Gets rid of a bunch of ad-hoc node type unions. --- .../extractor/tree-sitter-swift/grammar.js | 30 ++--- .../tree-sitter-swift/node-types.yml | 120 ++++++++++-------- 2 files changed, 82 insertions(+), 68 deletions(-) diff --git a/unified/extractor/tree-sitter-swift/grammar.js b/unified/extractor/tree-sitter-swift/grammar.js index 7fa16335ade6..01f714285c78 100644 --- a/unified/extractor/tree-sitter-swift/grammar.js +++ b/unified/extractor/tree-sitter-swift/grammar.js @@ -84,7 +84,7 @@ if (tree_sitter_version_supports_emoji()) { module.exports = grammar({ name: "swift", - supertypes: ($) => [$.expression], + supertypes: ($) => [$.expression, $.unannotated_type], conflicts: ($) => [ // @Type(... could either be an annotation constructor invocation or an annotated expression [$.attribute], @@ -405,9 +405,9 @@ module.exports = grammar({ _type: ($) => prec.right( PRECS.ty, - seq(optional($.type_modifiers), field("name", $._unannotated_type)) + seq(optional($.type_modifiers), field("name", $.unannotated_type)) ), - _unannotated_type: ($) => + unannotated_type: ($) => prec.right( PRECS.ty, choice( @@ -465,7 +465,7 @@ module.exports = grammar({ ), function_type: ($) => seq( - field("params", choice($.tuple_type, $._unannotated_type)), + field("params", choice($.tuple_type, $.unannotated_type)), optional($._async_keyword), optional(choice($.throws_clause, $.throws)), $._arrow_operator, @@ -484,18 +484,18 @@ module.exports = grammar({ repeat1(alias($._immediate_quest, "?")) ) ), - metatype: ($) => seq($._unannotated_type, ".", choice("Type", "Protocol")), + metatype: ($) => seq($.unannotated_type, ".", choice("Type", "Protocol")), _quest: ($) => "?", _immediate_quest: ($) => token.immediate("?"), - opaque_type: ($) => prec.right(seq("some", $._unannotated_type)), - existential_type: ($) => prec.right(seq("any", $._unannotated_type)), - type_parameter_pack: ($) => prec.left(seq("each", $._unannotated_type)), - type_pack_expansion: ($) => prec.left(seq("repeat", $._unannotated_type)), + opaque_type: ($) => prec.right(seq("some", $.unannotated_type)), + existential_type: ($) => prec.right(seq("any", $.unannotated_type)), + type_parameter_pack: ($) => prec.left(seq("each", $.unannotated_type)), + type_pack_expansion: ($) => prec.left(seq("repeat", $.unannotated_type)), protocol_composition_type: ($) => prec.left( seq( - $._unannotated_type, - repeat1(seq("&", prec.right($._unannotated_type))) + $.unannotated_type, + repeat1(seq("&", prec.right($.unannotated_type))) ) ), suppressed_constraint: ($) => @@ -1498,7 +1498,7 @@ module.exports = grammar({ _macro_signature: ($) => seq( $._function_value_parameters, - optional(seq($._arrow_operator, $._unannotated_type)) + optional(seq($._arrow_operator, $.unannotated_type)) ), macro_definition: ($) => seq( @@ -1524,7 +1524,7 @@ module.exports = grammar({ ), seq( field("declaration_kind", "extension"), - field("name", $._unannotated_type), + field("name", $.unannotated_type), optional($.type_parameters), optional(seq(":", $._inheritance_specifiers)), optional($.type_constraints), @@ -1594,7 +1594,7 @@ module.exports = grammar({ choice( $.identifier, seq( - $._unannotated_type, + $.unannotated_type, optional(seq(".", sep1($.simple_identifier, "."))) ) ), @@ -1667,7 +1667,7 @@ module.exports = grammar({ _async_modifier: ($) => token("async"), throws: ($) => choice($._throws_keyword, $._rethrows_keyword), throws_clause: ($) => - seq($._throws_keyword, "(", field("type", $._unannotated_type), ")"), + seq($._throws_keyword, "(", field("type", $.unannotated_type), ")"), enum_class_body: ($) => seq("{", repeat(choice($.enum_entry, $._type_level_declaration)), "}"), enum_entry: ($) => diff --git a/unified/extractor/tree-sitter-swift/node-types.yml b/unified/extractor/tree-sitter-swift/node-types.yml index fcbb1a0e574a..3e9d6bba9685 100644 --- a/unified/extractor/tree-sitter-swift/node-types.yml +++ b/unified/extractor/tree-sitter-swift/node-types.yml @@ -56,6 +56,20 @@ supertypes: - tuple_expression - value_pack_expansion - value_parameter_pack + unannotated_type: + - array_type + - dictionary_type + - existential_type + - function_type + - metatype + - opaque_type + - optional_type + - protocol_composition_type + - suppressed_constraint + - tuple_type + - type_pack_expansion + - type_parameter_pack + - user_type named: additive_expression: @@ -65,13 +79,13 @@ named: array_literal: element*: expression array_type: - element+: [array_type, dictionary_type, existential_type, function_type, metatype, opaque_type, optional_type, protocol_composition_type, suppressed_constraint, tuple_type, type_modifiers, type_pack_expansion, type_parameter_pack, user_type] - name: [array_type, dictionary_type, existential_type, function_type, metatype, opaque_type, optional_type, protocol_composition_type, suppressed_constraint, tuple_type, type_pack_expansion, type_parameter_pack, user_type] + element+: [type_modifiers, unannotated_type] + name: unannotated_type as_expression: $children: as_operator expr: expression - name: [array_type, dictionary_type, existential_type, function_type, metatype, opaque_type, optional_type, protocol_composition_type, suppressed_constraint, tuple_type, type_pack_expansion, type_parameter_pack, user_type] - type+: [array_type, dictionary_type, existential_type, function_type, metatype, opaque_type, optional_type, protocol_composition_type, suppressed_constraint, tuple_type, type_modifiers, type_pack_expansion, type_parameter_pack, user_type] + name: unannotated_type + type+: [type_modifiers, unannotated_type] as_operator: assignment: operator: ["%=", "*=", "+=", "-=", "/=", "="] @@ -79,9 +93,9 @@ named: target: directly_assignable_expression associatedtype_declaration: $children*: [modifiers, type_constraints] - default_value*: [array_type, dictionary_type, existential_type, function_type, metatype, opaque_type, optional_type, protocol_composition_type, suppressed_constraint, tuple_type, type_modifiers, type_pack_expansion, type_parameter_pack, user_type] - must_inherit*: [array_type, dictionary_type, existential_type, function_type, metatype, opaque_type, optional_type, protocol_composition_type, suppressed_constraint, tuple_type, type_modifiers, type_pack_expansion, type_parameter_pack, user_type] - name+: [array_type, dictionary_type, existential_type, function_type, metatype, opaque_type, optional_type, protocol_composition_type, suppressed_constraint, tuple_type, type_identifier, type_pack_expansion, type_parameter_pack, user_type] + default_value*: [type_modifiers, unannotated_type] + must_inherit*: [type_modifiers, unannotated_type] + name+: [type_identifier, unannotated_type] attribute: $children+: [expression, user_type] availability_condition: @@ -112,17 +126,17 @@ named: error?: pattern catch_keyword: check_expression: - name: [array_type, dictionary_type, existential_type, function_type, metatype, opaque_type, optional_type, protocol_composition_type, suppressed_constraint, tuple_type, type_pack_expansion, type_parameter_pack, user_type] + name: unannotated_type op: "is" target: expression - type+: [array_type, dictionary_type, existential_type, function_type, metatype, opaque_type, optional_type, protocol_composition_type, suppressed_constraint, tuple_type, type_modifiers, type_pack_expansion, type_parameter_pack, user_type] + type+: [type_modifiers, unannotated_type] class_body: $children*: [associatedtype_declaration, class_declaration, deinit_declaration, function_declaration, import_declaration, init_declaration, multiline_comment, operator_declaration, precedence_group_declaration, property_declaration, protocol_declaration, subscript_declaration, typealias_declaration] class_declaration: $children*: [attribute, inheritance_modifier, inheritance_specifier, modifiers, ownership_modifier, property_behavior_modifier, type_constraints, type_parameters] body: [class_body, enum_class_body] declaration_kind: ["actor", "class", "enum", "extension", "struct"] - name: [array_type, dictionary_type, existential_type, function_type, metatype, opaque_type, optional_type, protocol_composition_type, suppressed_constraint, tuple_type, type_identifier, type_pack_expansion, type_parameter_pack, user_type] + name: [type_identifier, unannotated_type] comment: comparison_expression: lhs: expression @@ -161,9 +175,9 @@ named: key*: expression value*: expression dictionary_type: - key+: [array_type, dictionary_type, existential_type, function_type, metatype, opaque_type, optional_type, protocol_composition_type, suppressed_constraint, tuple_type, type_modifiers, type_pack_expansion, type_parameter_pack, user_type] - name+: [array_type, dictionary_type, existential_type, function_type, metatype, opaque_type, optional_type, protocol_composition_type, suppressed_constraint, tuple_type, type_pack_expansion, type_parameter_pack, user_type] - value+: [array_type, dictionary_type, existential_type, function_type, metatype, opaque_type, optional_type, protocol_composition_type, suppressed_constraint, tuple_type, type_modifiers, type_pack_expansion, type_parameter_pack, user_type] + key+: [type_modifiers, unannotated_type] + name+: unannotated_type + value+: [type_modifiers, unannotated_type] didset_clause: $children*: [modifiers, simple_identifier, statements] directive: @@ -186,18 +200,18 @@ named: raw_value*: expression enum_type_parameters: $children*: [expression, type_modifiers, wildcard_pattern] - name*: [array_type, dictionary_type, existential_type, function_type, metatype, opaque_type, optional_type, protocol_composition_type, suppressed_constraint, tuple_type, type_pack_expansion, type_parameter_pack, user_type] + name*: unannotated_type equality_constraint: $children*: attribute - constrained_type+: [".", array_type, dictionary_type, existential_type, function_type, identifier, metatype, opaque_type, optional_type, protocol_composition_type, simple_identifier, suppressed_constraint, tuple_type, type_pack_expansion, type_parameter_pack, user_type] - must_equal+: [array_type, dictionary_type, existential_type, function_type, metatype, opaque_type, optional_type, protocol_composition_type, suppressed_constraint, tuple_type, type_modifiers, type_pack_expansion, type_parameter_pack, user_type] - name: [array_type, dictionary_type, existential_type, function_type, metatype, opaque_type, optional_type, protocol_composition_type, suppressed_constraint, tuple_type, type_pack_expansion, type_parameter_pack, user_type] + constrained_type+: [".", identifier, simple_identifier, unannotated_type] + must_equal+: [type_modifiers, unannotated_type] + name: unannotated_type equality_expression: lhs: expression op: ["!=", "!==", "==", "==="] rhs: expression existential_type: - $children: [array_type, dictionary_type, existential_type, function_type, metatype, opaque_type, optional_type, protocol_composition_type, suppressed_constraint, tuple_type, type_pack_expansion, type_parameter_pack, user_type] + $children: unannotated_type external_macro_definition: $children: value_arguments for_statement: @@ -211,14 +225,14 @@ named: $children*: [attribute, inheritance_modifier, modifiers, ownership_modifier, parameter, property_behavior_modifier, throws, throws_clause, type_constraints, type_parameters] body: function_body default_value*: expression - name+: [array_type, dictionary_type, existential_type, function_type, metatype, opaque_type, optional_type, protocol_composition_type, referenceable_operator, simple_identifier, suppressed_constraint, tuple_type, type_pack_expansion, type_parameter_pack, user_type] - return_type*: ["!", array_type, dictionary_type, existential_type, function_type, metatype, opaque_type, optional_type, protocol_composition_type, suppressed_constraint, tuple_type, type_modifiers, type_pack_expansion, type_parameter_pack, user_type] + name+: [referenceable_operator, simple_identifier, unannotated_type] + return_type*: ["!", type_modifiers, unannotated_type] function_modifier: function_type: $children?: [throws, throws_clause] - name: [array_type, dictionary_type, existential_type, function_type, metatype, opaque_type, optional_type, protocol_composition_type, suppressed_constraint, tuple_type, type_pack_expansion, type_parameter_pack, user_type] - params: [array_type, dictionary_type, existential_type, function_type, metatype, opaque_type, optional_type, protocol_composition_type, suppressed_constraint, tuple_type, type_pack_expansion, type_parameter_pack, user_type] - return_type+: [array_type, dictionary_type, existential_type, function_type, metatype, opaque_type, optional_type, protocol_composition_type, suppressed_constraint, tuple_type, type_modifiers, type_pack_expansion, type_parameter_pack, user_type] + name: unannotated_type + params: unannotated_type + return_type+: [type_modifiers, unannotated_type] getter_specifier: $children*: [mutation_modifier, throws, throws_clause] guard_statement: @@ -230,7 +244,7 @@ named: if_condition: $children*: [availability_condition, expression, pattern, type_annotation, type_modifiers, user_type, value_binding_pattern, where_clause, wildcard_pattern] bound_identifier?: simple_identifier - name?: [array_type, dictionary_type, existential_type, function_type, metatype, opaque_type, optional_type, protocol_composition_type, suppressed_constraint, tuple_type, type_pack_expansion, type_parameter_pack, user_type] + name?: unannotated_type if_statement: $children*: [else, if_statement, statements] condition+: if_condition @@ -242,9 +256,9 @@ named: rhs: expression inheritance_constraint: $children*: attribute - constrained_type+: [".", array_type, dictionary_type, existential_type, function_type, identifier, metatype, opaque_type, optional_type, protocol_composition_type, simple_identifier, suppressed_constraint, tuple_type, type_pack_expansion, type_parameter_pack, user_type] - inherits_from+: ["!", array_type, dictionary_type, existential_type, function_type, metatype, opaque_type, optional_type, protocol_composition_type, suppressed_constraint, tuple_type, type_modifiers, type_pack_expansion, type_parameter_pack, user_type] - name: [array_type, dictionary_type, existential_type, function_type, metatype, opaque_type, optional_type, protocol_composition_type, suppressed_constraint, tuple_type, type_pack_expansion, type_parameter_pack, user_type] + constrained_type+: [".", identifier, simple_identifier, unannotated_type] + inherits_from+: ["!", type_modifiers, unannotated_type] + name: unannotated_type inheritance_modifier: inheritance_specifier: inherits_from: [function_type, suppressed_constraint, user_type] @@ -265,8 +279,8 @@ named: $children: expression lambda_function_type: $children*: [lambda_function_type_parameters, throws, throws_clause] - name?: [array_type, dictionary_type, existential_type, function_type, metatype, opaque_type, optional_type, protocol_composition_type, suppressed_constraint, tuple_type, type_pack_expansion, type_parameter_pack, user_type] - return_type*: ["!", array_type, dictionary_type, existential_type, function_type, metatype, opaque_type, optional_type, protocol_composition_type, suppressed_constraint, tuple_type, type_modifiers, type_pack_expansion, type_parameter_pack, user_type] + name?: unannotated_type + return_type*: ["!", type_modifiers, unannotated_type] lambda_function_type_parameters: $children+: lambda_parameter lambda_literal: @@ -276,14 +290,14 @@ named: lambda_parameter: $children?: [parameter_modifiers, self_expression] external_name?: simple_identifier - name*: [array_type, dictionary_type, existential_type, function_type, metatype, opaque_type, optional_type, protocol_composition_type, simple_identifier, suppressed_constraint, tuple_type, type_pack_expansion, type_parameter_pack, user_type] - type*: ["!", array_type, dictionary_type, existential_type, function_type, metatype, opaque_type, optional_type, protocol_composition_type, suppressed_constraint, tuple_type, type_modifiers, type_pack_expansion, type_parameter_pack, user_type] + name*: [simple_identifier, unannotated_type] + type*: ["!", type_modifiers, unannotated_type] line_str_text: line_string_literal: interpolation*: interpolated_expression text*: [line_str_text, str_escaped_char] macro_declaration: - $children+: [array_type, attribute, dictionary_type, existential_type, function_type, metatype, modifiers, opaque_type, optional_type, parameter, protocol_composition_type, simple_identifier, suppressed_constraint, tuple_type, type_constraints, type_pack_expansion, type_parameter_pack, type_parameters, user_type] + $children+: [attribute, modifiers, parameter, simple_identifier, type_constraints, type_parameters, unannotated_type] default_value*: expression definition?: macro_definition macro_definition: @@ -292,7 +306,7 @@ named: $children+: [call_suffix, simple_identifier, type_parameters] member_modifier: metatype: - $children: [array_type, dictionary_type, existential_type, function_type, metatype, opaque_type, optional_type, protocol_composition_type, suppressed_constraint, tuple_type, type_pack_expansion, type_parameter_pack, user_type] + $children: unannotated_type modifiers: $children+: [attribute, function_modifier, inheritance_modifier, member_modifier, mutation_modifier, ownership_modifier, parameter_modifier, property_behavior_modifier, property_modifier, visibility_modifier] modify_specifier: @@ -318,7 +332,7 @@ named: value: expression oct_literal: opaque_type: - $children: [array_type, dictionary_type, existential_type, function_type, metatype, opaque_type, optional_type, protocol_composition_type, suppressed_constraint, tuple_type, type_pack_expansion, type_parameter_pack, user_type] + $children: unannotated_type open_end_range_expression: start: expression open_start_range_expression: @@ -333,15 +347,15 @@ named: parameter: $children?: parameter_modifiers external_name?: simple_identifier - name+: [array_type, dictionary_type, existential_type, function_type, metatype, opaque_type, optional_type, protocol_composition_type, simple_identifier, suppressed_constraint, tuple_type, type_pack_expansion, type_parameter_pack, user_type] - type+: ["!", array_type, dictionary_type, existential_type, function_type, metatype, opaque_type, optional_type, protocol_composition_type, suppressed_constraint, tuple_type, type_modifiers, type_pack_expansion, type_parameter_pack, user_type] + name+: [simple_identifier, unannotated_type] + type+: ["!", type_modifiers, unannotated_type] parameter_modifier: parameter_modifiers: $children+: parameter_modifier pattern: $children*: [expression, pattern, type_modifiers, user_type, value_binding_pattern, wildcard_pattern] bound_identifier?: simple_identifier - name?: [array_type, dictionary_type, existential_type, function_type, metatype, opaque_type, optional_type, protocol_composition_type, suppressed_constraint, tuple_type, type_pack_expansion, type_parameter_pack, user_type] + name?: unannotated_type playground_literal: $children+: expression postfix_expression: @@ -367,7 +381,7 @@ named: $children*: [associatedtype_declaration, deinit_declaration, init_declaration, protocol_function_declaration, protocol_property_declaration, subscript_declaration, typealias_declaration] body*: protocol_function_declaration protocol_composition_type: - $children+: [array_type, dictionary_type, existential_type, function_type, metatype, opaque_type, optional_type, protocol_composition_type, suppressed_constraint, tuple_type, type_pack_expansion, type_parameter_pack, user_type] + $children+: unannotated_type protocol_declaration: $children*: [attribute, inheritance_specifier, modifiers, type_constraints, type_parameters] body: protocol_body @@ -376,8 +390,8 @@ named: protocol_function_declaration: $children*: [attribute, modifiers, parameter, statements, throws, throws_clause, type_constraints, type_parameters] default_value*: expression - name*: [array_type, dictionary_type, existential_type, function_type, metatype, opaque_type, optional_type, protocol_composition_type, referenceable_operator, simple_identifier, suppressed_constraint, tuple_type, type_pack_expansion, type_parameter_pack, user_type] - return_type*: ["!", array_type, dictionary_type, existential_type, function_type, metatype, opaque_type, optional_type, protocol_composition_type, suppressed_constraint, tuple_type, type_modifiers, type_pack_expansion, type_parameter_pack, user_type] + name*: [referenceable_operator, simple_identifier, unannotated_type] + return_type*: ["!", type_modifiers, unannotated_type] protocol_property_declaration: $children+: [modifiers, protocol_property_requirements, type_annotation, type_constraints] name: pattern @@ -422,8 +436,8 @@ named: subscript_declaration: $children+: [attribute, computed_property, modifiers, parameter, type_constraints, type_parameters] default_value*: expression - name?: [array_type, dictionary_type, existential_type, function_type, metatype, opaque_type, optional_type, protocol_composition_type, suppressed_constraint, tuple_type, type_pack_expansion, type_parameter_pack, user_type] - return_type*: ["!", array_type, dictionary_type, existential_type, function_type, metatype, opaque_type, optional_type, protocol_composition_type, suppressed_constraint, tuple_type, type_modifiers, type_pack_expansion, type_parameter_pack, user_type] + name?: unannotated_type + return_type*: ["!", type_modifiers, unannotated_type] super_expression: suppressed_constraint: suppressed: type_identifier @@ -441,7 +455,7 @@ named: throw_keyword: throws: throws_clause: - type: [array_type, dictionary_type, existential_type, function_type, metatype, opaque_type, optional_type, protocol_composition_type, suppressed_constraint, tuple_type, type_pack_expansion, type_parameter_pack, user_type] + type: unannotated_type try_expression: $children: try_operator expr: expression @@ -455,14 +469,14 @@ named: tuple_type_item: $children*: [parameter_modifiers, wildcard_pattern] element?: [dictionary_type, existential_type, opaque_type] - name*: [array_type, dictionary_type, existential_type, function_type, metatype, opaque_type, optional_type, protocol_composition_type, simple_identifier, suppressed_constraint, tuple_type, type_pack_expansion, type_parameter_pack, user_type] - type*: [array_type, dictionary_type, existential_type, function_type, metatype, opaque_type, optional_type, protocol_composition_type, suppressed_constraint, tuple_type, type_modifiers, type_pack_expansion, type_parameter_pack, user_type] + name*: [simple_identifier, unannotated_type] + type*: [type_modifiers, unannotated_type] type_annotation: - name: [array_type, dictionary_type, existential_type, function_type, metatype, opaque_type, optional_type, protocol_composition_type, suppressed_constraint, tuple_type, type_pack_expansion, type_parameter_pack, user_type] - type+: ["!", array_type, dictionary_type, existential_type, function_type, metatype, opaque_type, optional_type, protocol_composition_type, suppressed_constraint, tuple_type, type_modifiers, type_pack_expansion, type_parameter_pack, user_type] + name: unannotated_type + type+: ["!", type_modifiers, unannotated_type] type_arguments: $children*: type_modifiers - name+: [array_type, dictionary_type, existential_type, function_type, metatype, opaque_type, optional_type, protocol_composition_type, suppressed_constraint, tuple_type, type_pack_expansion, type_parameter_pack, user_type] + name+: unannotated_type type_constraint: $children: [equality_constraint, inheritance_constraint] type_constraints: @@ -471,20 +485,20 @@ named: type_modifiers: $children+: attribute type_pack_expansion: - $children: [array_type, dictionary_type, existential_type, function_type, metatype, opaque_type, optional_type, protocol_composition_type, suppressed_constraint, tuple_type, type_pack_expansion, type_parameter_pack, user_type] + $children: unannotated_type type_parameter: $children+: [type_identifier, type_modifiers, type_parameter_modifiers, type_parameter_pack] - name?: [array_type, dictionary_type, existential_type, function_type, metatype, opaque_type, optional_type, protocol_composition_type, suppressed_constraint, tuple_type, type_pack_expansion, type_parameter_pack, user_type] + name?: unannotated_type type_parameter_modifiers: $children+: attribute type_parameter_pack: - $children: [array_type, dictionary_type, existential_type, function_type, metatype, opaque_type, optional_type, protocol_composition_type, suppressed_constraint, tuple_type, type_pack_expansion, type_parameter_pack, user_type] + $children: unannotated_type type_parameters: $children+: [type_constraints, type_parameter] typealias_declaration: $children*: [attribute, inheritance_modifier, modifiers, ownership_modifier, property_behavior_modifier, type_parameters] - name+: [array_type, dictionary_type, existential_type, function_type, metatype, opaque_type, optional_type, protocol_composition_type, suppressed_constraint, tuple_type, type_identifier, type_pack_expansion, type_parameter_pack, user_type] - value+: [array_type, dictionary_type, existential_type, function_type, metatype, opaque_type, optional_type, protocol_composition_type, suppressed_constraint, tuple_type, type_modifiers, type_pack_expansion, type_parameter_pack, user_type] + name+: [type_identifier, unannotated_type] + value+: [type_modifiers, unannotated_type] user_type: $children+: [type_arguments, type_identifier] value_argument: From 37e1e3c879af1c501abba126a8d6fb6793ea1f97 Mon Sep 17 00:00:00 2001 From: Taus Date: Fri, 8 May 2026 15:30:18 +0000 Subject: [PATCH 246/260] unified: regenerate files --- unified/ql/lib/codeql/unified/Ast.qll | 48 ++++---- unified/ql/lib/unified.dbscheme | 154 +++++++++----------------- 2 files changed, 80 insertions(+), 122 deletions(-) diff --git a/unified/ql/lib/codeql/unified/Ast.qll b/unified/ql/lib/codeql/unified/Ast.qll index d054ca994354..e2be15932bed 100644 --- a/unified/ql/lib/codeql/unified/Ast.qll +++ b/unified/ql/lib/codeql/unified/Ast.qll @@ -135,7 +135,7 @@ module Swift { final AstNode getElement(int i) { swift_array_type_element(this, i, result) } /** Gets the node corresponding to the field `name`. */ - final AstNode getName() { swift_array_type_def(this, result) } + final UnannotatedType getName() { swift_array_type_def(this, result) } /** Gets a field or child node of this node. */ final override AstNode getAFieldOrChild() { @@ -152,7 +152,7 @@ module Swift { final Expression getExpr() { swift_as_expression_def(this, result, _, _) } /** Gets the node corresponding to the field `name`. */ - final AstNode getName() { swift_as_expression_def(this, _, result, _) } + final UnannotatedType getName() { swift_as_expression_def(this, _, result, _) } /** Gets the node corresponding to the field `type`. */ final AstNode getType(int i) { swift_as_expression_type(this, i, result) } @@ -425,7 +425,7 @@ module Swift { final override string getAPrimaryQlClass() { result = "CheckExpression" } /** Gets the node corresponding to the field `name`. */ - final AstNode getName() { swift_check_expression_def(this, result, _, _) } + final UnannotatedType getName() { swift_check_expression_def(this, result, _, _) } /** Gets the node corresponding to the field `op`. */ final string getOp() { @@ -741,7 +741,7 @@ module Swift { final AstNode getKey(int i) { swift_dictionary_type_key(this, i, result) } /** Gets the node corresponding to the field `name`. */ - final AstNode getName(int i) { swift_dictionary_type_name(this, i, result) } + final UnannotatedType getName(int i) { swift_dictionary_type_name(this, i, result) } /** Gets the node corresponding to the field `value`. */ final AstNode getValue(int i) { swift_dictionary_type_value(this, i, result) } @@ -881,7 +881,7 @@ module Swift { final override string getAPrimaryQlClass() { result = "EnumTypeParameters" } /** Gets the node corresponding to the field `name`. */ - final AstNode getName(int i) { swift_enum_type_parameters_name(this, i, result) } + final UnannotatedType getName(int i) { swift_enum_type_parameters_name(this, i, result) } /** Gets the `i`th child of this node. */ final AstNode getChild(int i) { swift_enum_type_parameters_child(this, i, result) } @@ -907,7 +907,7 @@ module Swift { final AstNode getMustEqual(int i) { swift_equality_constraint_must_equal(this, i, result) } /** Gets the node corresponding to the field `name`. */ - final AstNode getName() { swift_equality_constraint_def(this, result) } + final UnannotatedType getName() { swift_equality_constraint_def(this, result) } /** Gets the `i`th child of this node. */ final Attribute getChild(int i) { swift_equality_constraint_child(this, i, result) } @@ -958,7 +958,7 @@ module Swift { final override string getAPrimaryQlClass() { result = "ExistentialType" } /** Gets the child of this node. */ - final AstNode getChild() { swift_existential_type_def(this, result) } + final UnannotatedType getChild() { swift_existential_type_def(this, result) } /** Gets a field or child node of this node. */ final override AstNode getAFieldOrChild() { swift_existential_type_def(this, result) } @@ -1062,10 +1062,10 @@ module Swift { final override string getAPrimaryQlClass() { result = "FunctionType" } /** Gets the node corresponding to the field `name`. */ - final AstNode getName() { swift_function_type_def(this, result, _) } + final UnannotatedType getName() { swift_function_type_def(this, result, _) } /** Gets the node corresponding to the field `params`. */ - final AstNode getParams() { swift_function_type_def(this, _, result) } + final UnannotatedType getParams() { swift_function_type_def(this, _, result) } /** Gets the node corresponding to the field `return_type`. */ final AstNode getReturnType(int i) { swift_function_type_return_type(this, i, result) } @@ -1141,7 +1141,7 @@ module Swift { } /** Gets the node corresponding to the field `name`. */ - final AstNode getName() { swift_if_condition_name(this, result) } + final UnannotatedType getName() { swift_if_condition_name(this, result) } /** Gets the `i`th child of this node. */ final AstNode getChild(int i) { swift_if_condition_child(this, i, result) } @@ -1221,7 +1221,7 @@ module Swift { } /** Gets the node corresponding to the field `name`. */ - final AstNode getName() { swift_inheritance_constraint_def(this, result) } + final UnannotatedType getName() { swift_inheritance_constraint_def(this, result) } /** Gets the `i`th child of this node. */ final Attribute getChild(int i) { swift_inheritance_constraint_child(this, i, result) } @@ -1346,7 +1346,7 @@ module Swift { final override string getAPrimaryQlClass() { result = "LambdaFunctionType" } /** Gets the node corresponding to the field `name`. */ - final AstNode getName() { swift_lambda_function_type_name(this, result) } + final UnannotatedType getName() { swift_lambda_function_type_name(this, result) } /** Gets the node corresponding to the field `return_type`. */ final AstNode getReturnType(int i) { swift_lambda_function_type_return_type(this, i, result) } @@ -1512,7 +1512,7 @@ module Swift { final override string getAPrimaryQlClass() { result = "Metatype" } /** Gets the child of this node. */ - final AstNode getChild() { swift_metatype_def(this, result) } + final UnannotatedType getChild() { swift_metatype_def(this, result) } /** Gets a field or child node of this node. */ final override AstNode getAFieldOrChild() { swift_metatype_def(this, result) } @@ -1673,7 +1673,7 @@ module Swift { final override string getAPrimaryQlClass() { result = "OpaqueType" } /** Gets the child of this node. */ - final AstNode getChild() { swift_opaque_type_def(this, result) } + final UnannotatedType getChild() { swift_opaque_type_def(this, result) } /** Gets a field or child node of this node. */ final override AstNode getAFieldOrChild() { swift_opaque_type_def(this, result) } @@ -1800,7 +1800,7 @@ module Swift { final SimpleIdentifier getBoundIdentifier() { swift_pattern_bound_identifier(this, result) } /** Gets the node corresponding to the field `name`. */ - final AstNode getName() { swift_pattern_name(this, result) } + final UnannotatedType getName() { swift_pattern_name(this, result) } /** Gets the `i`th child of this node. */ final AstNode getChild(int i) { swift_pattern_child(this, i, result) } @@ -1966,7 +1966,7 @@ module Swift { final override string getAPrimaryQlClass() { result = "ProtocolCompositionType" } /** Gets the `i`th child of this node. */ - final AstNode getChild(int i) { swift_protocol_composition_type_child(this, i, result) } + final UnannotatedType getChild(int i) { swift_protocol_composition_type_child(this, i, result) } /** Gets a field or child node of this node. */ final override AstNode getAFieldOrChild() { @@ -2301,7 +2301,7 @@ module Swift { } /** Gets the node corresponding to the field `name`. */ - final AstNode getName() { swift_subscript_declaration_name(this, result) } + final UnannotatedType getName() { swift_subscript_declaration_name(this, result) } /** Gets the node corresponding to the field `return_type`. */ final AstNode getReturnType(int i) { swift_subscript_declaration_return_type(this, i, result) } @@ -2417,7 +2417,7 @@ module Swift { final override string getAPrimaryQlClass() { result = "ThrowsClause" } /** Gets the node corresponding to the field `type`. */ - final AstNode getType() { swift_throws_clause_def(this, result) } + final UnannotatedType getType() { swift_throws_clause_def(this, result) } /** Gets a field or child node of this node. */ final override AstNode getAFieldOrChild() { swift_throws_clause_def(this, result) } @@ -2512,7 +2512,7 @@ module Swift { final override string getAPrimaryQlClass() { result = "TypeAnnotation" } /** Gets the node corresponding to the field `name`. */ - final AstNode getName() { swift_type_annotation_def(this, result) } + final UnannotatedType getName() { swift_type_annotation_def(this, result) } /** Gets the node corresponding to the field `type`. */ final AstNode getType(int i) { swift_type_annotation_type(this, i, result) } @@ -2529,7 +2529,7 @@ module Swift { final override string getAPrimaryQlClass() { result = "TypeArguments" } /** Gets the node corresponding to the field `name`. */ - final AstNode getName(int i) { swift_type_arguments_name(this, i, result) } + final UnannotatedType getName(int i) { swift_type_arguments_name(this, i, result) } /** Gets the `i`th child of this node. */ final TypeModifiers getChild(int i) { swift_type_arguments_child(this, i, result) } @@ -2588,7 +2588,7 @@ module Swift { final override string getAPrimaryQlClass() { result = "TypePackExpansion" } /** Gets the child of this node. */ - final AstNode getChild() { swift_type_pack_expansion_def(this, result) } + final UnannotatedType getChild() { swift_type_pack_expansion_def(this, result) } /** Gets a field or child node of this node. */ final override AstNode getAFieldOrChild() { swift_type_pack_expansion_def(this, result) } @@ -2600,7 +2600,7 @@ module Swift { final override string getAPrimaryQlClass() { result = "TypeParameter" } /** Gets the node corresponding to the field `name`. */ - final AstNode getName() { swift_type_parameter_name(this, result) } + final UnannotatedType getName() { swift_type_parameter_name(this, result) } /** Gets the `i`th child of this node. */ final AstNode getChild(int i) { swift_type_parameter_child(this, i, result) } @@ -2631,7 +2631,7 @@ module Swift { final override string getAPrimaryQlClass() { result = "TypeParameterPack" } /** Gets the child of this node. */ - final AstNode getChild() { swift_type_parameter_pack_def(this, result) } + final UnannotatedType getChild() { swift_type_parameter_pack_def(this, result) } /** Gets a field or child node of this node. */ final override AstNode getAFieldOrChild() { swift_type_parameter_pack_def(this, result) } @@ -2671,6 +2671,8 @@ module Swift { } } + class UnannotatedType extends @swift_unannotated_type, AstNode { } + /** A class representing `user_type` nodes. */ class UserType extends @swift_user_type, AstNode { /** Gets the name of the primary QL class for this element. */ diff --git a/unified/ql/lib/unified.dbscheme b/unified/ql/lib/unified.dbscheme index 3466de92c921..d78f5fe5fc68 100644 --- a/unified/ql/lib/unified.dbscheme +++ b/unified/ql/lib/unified.dbscheme @@ -156,7 +156,7 @@ swift_array_literal_def( unique int id: @swift_array_literal ); -@swift_array_type_element_type = @swift_array_type | @swift_dictionary_type | @swift_existential_type | @swift_function_type | @swift_metatype | @swift_opaque_type | @swift_optional_type | @swift_protocol_composition_type | @swift_suppressed_constraint | @swift_tuple_type | @swift_type_modifiers | @swift_type_pack_expansion | @swift_type_parameter_pack | @swift_user_type +@swift_array_type_element_type = @swift_type_modifiers | @swift_unannotated_type #keyset[swift_array_type, index] swift_array_type_element( @@ -165,16 +165,12 @@ swift_array_type_element( unique int element: @swift_array_type_element_type ref ); -@swift_array_type_name_type = @swift_array_type | @swift_dictionary_type | @swift_existential_type | @swift_function_type | @swift_metatype | @swift_opaque_type | @swift_optional_type | @swift_protocol_composition_type | @swift_suppressed_constraint | @swift_tuple_type | @swift_type_pack_expansion | @swift_type_parameter_pack | @swift_user_type - swift_array_type_def( unique int id: @swift_array_type, - int name: @swift_array_type_name_type ref + int name: @swift_unannotated_type ref ); -@swift_as_expression_name_type = @swift_array_type | @swift_dictionary_type | @swift_existential_type | @swift_function_type | @swift_metatype | @swift_opaque_type | @swift_optional_type | @swift_protocol_composition_type | @swift_suppressed_constraint | @swift_tuple_type | @swift_type_pack_expansion | @swift_type_parameter_pack | @swift_user_type - -@swift_as_expression_type_type = @swift_array_type | @swift_dictionary_type | @swift_existential_type | @swift_function_type | @swift_metatype | @swift_opaque_type | @swift_optional_type | @swift_protocol_composition_type | @swift_suppressed_constraint | @swift_tuple_type | @swift_type_modifiers | @swift_type_pack_expansion | @swift_type_parameter_pack | @swift_user_type +@swift_as_expression_type_type = @swift_type_modifiers | @swift_unannotated_type #keyset[swift_as_expression, index] swift_as_expression_type( @@ -186,7 +182,7 @@ swift_as_expression_type( swift_as_expression_def( unique int id: @swift_as_expression, int expr: @swift_expression ref, - int name: @swift_as_expression_name_type ref, + int name: @swift_unannotated_type ref, int child: @swift_token_as_operator ref ); @@ -207,7 +203,7 @@ swift_assignment_def( int target: @swift_directly_assignable_expression ref ); -@swift_associatedtype_declaration_default_value_type = @swift_array_type | @swift_dictionary_type | @swift_existential_type | @swift_function_type | @swift_metatype | @swift_opaque_type | @swift_optional_type | @swift_protocol_composition_type | @swift_suppressed_constraint | @swift_tuple_type | @swift_type_modifiers | @swift_type_pack_expansion | @swift_type_parameter_pack | @swift_user_type +@swift_associatedtype_declaration_default_value_type = @swift_type_modifiers | @swift_unannotated_type #keyset[swift_associatedtype_declaration, index] swift_associatedtype_declaration_default_value( @@ -216,7 +212,7 @@ swift_associatedtype_declaration_default_value( unique int default_value: @swift_associatedtype_declaration_default_value_type ref ); -@swift_associatedtype_declaration_must_inherit_type = @swift_array_type | @swift_dictionary_type | @swift_existential_type | @swift_function_type | @swift_metatype | @swift_opaque_type | @swift_optional_type | @swift_protocol_composition_type | @swift_suppressed_constraint | @swift_tuple_type | @swift_type_modifiers | @swift_type_pack_expansion | @swift_type_parameter_pack | @swift_user_type +@swift_associatedtype_declaration_must_inherit_type = @swift_type_modifiers | @swift_unannotated_type #keyset[swift_associatedtype_declaration, index] swift_associatedtype_declaration_must_inherit( @@ -225,7 +221,7 @@ swift_associatedtype_declaration_must_inherit( unique int must_inherit: @swift_associatedtype_declaration_must_inherit_type ref ); -@swift_associatedtype_declaration_name_type = @swift_array_type | @swift_dictionary_type | @swift_existential_type | @swift_function_type | @swift_metatype | @swift_opaque_type | @swift_optional_type | @swift_protocol_composition_type | @swift_suppressed_constraint | @swift_token_type_identifier | @swift_tuple_type | @swift_type_pack_expansion | @swift_type_parameter_pack | @swift_user_type +@swift_associatedtype_declaration_name_type = @swift_token_type_identifier | @swift_unannotated_type #keyset[swift_associatedtype_declaration, index] swift_associatedtype_declaration_name( @@ -382,14 +378,12 @@ swift_catch_block_def( unique int id: @swift_catch_block ); -@swift_check_expression_name_type = @swift_array_type | @swift_dictionary_type | @swift_existential_type | @swift_function_type | @swift_metatype | @swift_opaque_type | @swift_optional_type | @swift_protocol_composition_type | @swift_suppressed_constraint | @swift_tuple_type | @swift_type_pack_expansion | @swift_type_parameter_pack | @swift_user_type - case @swift_check_expression.op of 0 = @swift_check_expression_is ; -@swift_check_expression_type_type = @swift_array_type | @swift_dictionary_type | @swift_existential_type | @swift_function_type | @swift_metatype | @swift_opaque_type | @swift_optional_type | @swift_protocol_composition_type | @swift_suppressed_constraint | @swift_tuple_type | @swift_type_modifiers | @swift_type_pack_expansion | @swift_type_parameter_pack | @swift_user_type +@swift_check_expression_type_type = @swift_type_modifiers | @swift_unannotated_type #keyset[swift_check_expression, index] swift_check_expression_type( @@ -400,7 +394,7 @@ swift_check_expression_type( swift_check_expression_def( unique int id: @swift_check_expression, - int name: @swift_check_expression_name_type ref, + int name: @swift_unannotated_type ref, int op: int ref, int target: @swift_expression ref ); @@ -429,7 +423,7 @@ case @swift_class_declaration.declaration_kind of ; -@swift_class_declaration_name_type = @swift_array_type | @swift_dictionary_type | @swift_existential_type | @swift_function_type | @swift_metatype | @swift_opaque_type | @swift_optional_type | @swift_protocol_composition_type | @swift_suppressed_constraint | @swift_token_type_identifier | @swift_tuple_type | @swift_type_pack_expansion | @swift_type_parameter_pack | @swift_user_type +@swift_class_declaration_name_type = @swift_token_type_identifier | @swift_unannotated_type @swift_class_declaration_child_type = @swift_attribute | @swift_inheritance_specifier | @swift_modifiers | @swift_token_inheritance_modifier | @swift_token_ownership_modifier | @swift_token_property_behavior_modifier | @swift_type_constraints | @swift_type_parameters @@ -613,7 +607,7 @@ swift_dictionary_literal_def( unique int id: @swift_dictionary_literal ); -@swift_dictionary_type_key_type = @swift_array_type | @swift_dictionary_type | @swift_existential_type | @swift_function_type | @swift_metatype | @swift_opaque_type | @swift_optional_type | @swift_protocol_composition_type | @swift_suppressed_constraint | @swift_tuple_type | @swift_type_modifiers | @swift_type_pack_expansion | @swift_type_parameter_pack | @swift_user_type +@swift_dictionary_type_key_type = @swift_type_modifiers | @swift_unannotated_type #keyset[swift_dictionary_type, index] swift_dictionary_type_key( @@ -622,16 +616,14 @@ swift_dictionary_type_key( unique int key__: @swift_dictionary_type_key_type ref ); -@swift_dictionary_type_name_type = @swift_array_type | @swift_dictionary_type | @swift_existential_type | @swift_function_type | @swift_metatype | @swift_opaque_type | @swift_optional_type | @swift_protocol_composition_type | @swift_suppressed_constraint | @swift_tuple_type | @swift_type_pack_expansion | @swift_type_parameter_pack | @swift_user_type - #keyset[swift_dictionary_type, index] swift_dictionary_type_name( int swift_dictionary_type: @swift_dictionary_type ref, int index: int ref, - unique int name: @swift_dictionary_type_name_type ref + unique int name: @swift_unannotated_type ref ); -@swift_dictionary_type_value_type = @swift_array_type | @swift_dictionary_type | @swift_existential_type | @swift_function_type | @swift_metatype | @swift_opaque_type | @swift_optional_type | @swift_protocol_composition_type | @swift_suppressed_constraint | @swift_tuple_type | @swift_type_modifiers | @swift_type_pack_expansion | @swift_type_parameter_pack | @swift_user_type +@swift_dictionary_type_value_type = @swift_type_modifiers | @swift_unannotated_type #keyset[swift_dictionary_type, index] swift_dictionary_type_value( @@ -743,13 +735,11 @@ swift_enum_entry_def( unique int id: @swift_enum_entry ); -@swift_enum_type_parameters_name_type = @swift_array_type | @swift_dictionary_type | @swift_existential_type | @swift_function_type | @swift_metatype | @swift_opaque_type | @swift_optional_type | @swift_protocol_composition_type | @swift_suppressed_constraint | @swift_tuple_type | @swift_type_pack_expansion | @swift_type_parameter_pack | @swift_user_type - #keyset[swift_enum_type_parameters, index] swift_enum_type_parameters_name( int swift_enum_type_parameters: @swift_enum_type_parameters ref, int index: int ref, - unique int name: @swift_enum_type_parameters_name_type ref + unique int name: @swift_unannotated_type ref ); @swift_enum_type_parameters_child_type = @swift_expression | @swift_token_wildcard_pattern | @swift_type_modifiers @@ -765,7 +755,7 @@ swift_enum_type_parameters_def( unique int id: @swift_enum_type_parameters ); -@swift_equality_constraint_constrained_type_type = @swift_array_type | @swift_dictionary_type | @swift_existential_type | @swift_function_type | @swift_identifier | @swift_metatype | @swift_opaque_type | @swift_optional_type | @swift_protocol_composition_type | @swift_reserved_word | @swift_suppressed_constraint | @swift_token_simple_identifier | @swift_tuple_type | @swift_type_pack_expansion | @swift_type_parameter_pack | @swift_user_type +@swift_equality_constraint_constrained_type_type = @swift_identifier | @swift_reserved_word | @swift_token_simple_identifier | @swift_unannotated_type #keyset[swift_equality_constraint, index] swift_equality_constraint_constrained_type( @@ -774,7 +764,7 @@ swift_equality_constraint_constrained_type( unique int constrained_type: @swift_equality_constraint_constrained_type_type ref ); -@swift_equality_constraint_must_equal_type = @swift_array_type | @swift_dictionary_type | @swift_existential_type | @swift_function_type | @swift_metatype | @swift_opaque_type | @swift_optional_type | @swift_protocol_composition_type | @swift_suppressed_constraint | @swift_tuple_type | @swift_type_modifiers | @swift_type_pack_expansion | @swift_type_parameter_pack | @swift_user_type +@swift_equality_constraint_must_equal_type = @swift_type_modifiers | @swift_unannotated_type #keyset[swift_equality_constraint, index] swift_equality_constraint_must_equal( @@ -783,8 +773,6 @@ swift_equality_constraint_must_equal( unique int must_equal: @swift_equality_constraint_must_equal_type ref ); -@swift_equality_constraint_name_type = @swift_array_type | @swift_dictionary_type | @swift_existential_type | @swift_function_type | @swift_metatype | @swift_opaque_type | @swift_optional_type | @swift_protocol_composition_type | @swift_suppressed_constraint | @swift_tuple_type | @swift_type_pack_expansion | @swift_type_parameter_pack | @swift_user_type - #keyset[swift_equality_constraint, index] swift_equality_constraint_child( int swift_equality_constraint: @swift_equality_constraint ref, @@ -794,7 +782,7 @@ swift_equality_constraint_child( swift_equality_constraint_def( unique int id: @swift_equality_constraint, - int name: @swift_equality_constraint_name_type ref + int name: @swift_unannotated_type ref ); case @swift_equality_expression.op of @@ -812,11 +800,9 @@ swift_equality_expression_def( int rhs: @swift_expression ref ); -@swift_existential_type_child_type = @swift_array_type | @swift_dictionary_type | @swift_existential_type | @swift_function_type | @swift_metatype | @swift_opaque_type | @swift_optional_type | @swift_protocol_composition_type | @swift_suppressed_constraint | @swift_tuple_type | @swift_type_pack_expansion | @swift_type_parameter_pack | @swift_user_type - swift_existential_type_def( unique int id: @swift_existential_type, - int child: @swift_existential_type_child_type ref + int child: @swift_unannotated_type ref ); @swift_expression = @swift_additive_expression | @swift_array_literal | @swift_as_expression | @swift_assignment | @swift_await_expression | @swift_bitwise_operation | @swift_call_expression | @swift_check_expression | @swift_comparison_expression | @swift_conjunction_expression | @swift_constructor_expression | @swift_dictionary_literal | @swift_directive | @swift_disjunction_expression | @swift_equality_expression | @swift_if_statement | @swift_infix_expression | @swift_key_path_expression | @swift_key_path_string_expression | @swift_lambda_literal | @swift_line_string_literal | @swift_macro_invocation | @swift_multi_line_string_literal | @swift_multiplicative_expression | @swift_navigation_expression | @swift_nil_coalescing_expression | @swift_open_end_range_expression | @swift_open_start_range_expression | @swift_optional_chain_marker | @swift_playground_literal | @swift_postfix_expression | @swift_prefix_expression | @swift_range_expression | @swift_raw_string_literal | @swift_referenceable_operator | @swift_reserved_word | @swift_selector_expression | @swift_switch_statement | @swift_ternary_expression | @swift_token_bin_literal | @swift_token_boolean_literal | @swift_token_diagnostic | @swift_token_fully_open_range | @swift_token_hex_literal | @swift_token_integer_literal | @swift_token_oct_literal | @swift_token_real_literal | @swift_token_regex_literal | @swift_token_self_expression | @swift_token_simple_identifier | @swift_token_special_literal | @swift_token_super_expression | @swift_try_expression | @swift_tuple_expression | @swift_value_pack_expansion | @swift_value_parameter_pack @@ -857,7 +843,7 @@ swift_function_declaration_default_value( unique int default_value: @swift_expression ref ); -@swift_function_declaration_name_type = @swift_array_type | @swift_dictionary_type | @swift_existential_type | @swift_function_type | @swift_metatype | @swift_opaque_type | @swift_optional_type | @swift_protocol_composition_type | @swift_referenceable_operator | @swift_suppressed_constraint | @swift_token_simple_identifier | @swift_tuple_type | @swift_type_pack_expansion | @swift_type_parameter_pack | @swift_user_type +@swift_function_declaration_name_type = @swift_referenceable_operator | @swift_token_simple_identifier | @swift_unannotated_type #keyset[swift_function_declaration, index] swift_function_declaration_name( @@ -866,7 +852,7 @@ swift_function_declaration_name( unique int name: @swift_function_declaration_name_type ref ); -@swift_function_declaration_return_type_type = @swift_array_type | @swift_dictionary_type | @swift_existential_type | @swift_function_type | @swift_metatype | @swift_opaque_type | @swift_optional_type | @swift_protocol_composition_type | @swift_reserved_word | @swift_suppressed_constraint | @swift_tuple_type | @swift_type_modifiers | @swift_type_pack_expansion | @swift_type_parameter_pack | @swift_user_type +@swift_function_declaration_return_type_type = @swift_reserved_word | @swift_type_modifiers | @swift_unannotated_type #keyset[swift_function_declaration, index] swift_function_declaration_return_type( @@ -889,11 +875,7 @@ swift_function_declaration_def( int body: @swift_function_body ref ); -@swift_function_type_name_type = @swift_array_type | @swift_dictionary_type | @swift_existential_type | @swift_function_type | @swift_metatype | @swift_opaque_type | @swift_optional_type | @swift_protocol_composition_type | @swift_suppressed_constraint | @swift_tuple_type | @swift_type_pack_expansion | @swift_type_parameter_pack | @swift_user_type - -@swift_function_type_params_type = @swift_array_type | @swift_dictionary_type | @swift_existential_type | @swift_function_type | @swift_metatype | @swift_opaque_type | @swift_optional_type | @swift_protocol_composition_type | @swift_suppressed_constraint | @swift_tuple_type | @swift_type_pack_expansion | @swift_type_parameter_pack | @swift_user_type - -@swift_function_type_return_type_type = @swift_array_type | @swift_dictionary_type | @swift_existential_type | @swift_function_type | @swift_metatype | @swift_opaque_type | @swift_optional_type | @swift_protocol_composition_type | @swift_suppressed_constraint | @swift_tuple_type | @swift_type_modifiers | @swift_type_pack_expansion | @swift_type_parameter_pack | @swift_user_type +@swift_function_type_return_type_type = @swift_type_modifiers | @swift_unannotated_type #keyset[swift_function_type, index] swift_function_type_return_type( @@ -911,8 +893,8 @@ swift_function_type_child( swift_function_type_def( unique int id: @swift_function_type, - int name: @swift_function_type_name_type ref, - int params: @swift_function_type_params_type ref + int name: @swift_unannotated_type ref, + int params: @swift_unannotated_type ref ); @swift_getter_specifier_child_type = @swift_throws_clause | @swift_token_mutation_modifier | @swift_token_throws @@ -964,11 +946,9 @@ swift_if_condition_bound_identifier( unique int bound_identifier: @swift_token_simple_identifier ref ); -@swift_if_condition_name_type = @swift_array_type | @swift_dictionary_type | @swift_existential_type | @swift_function_type | @swift_metatype | @swift_opaque_type | @swift_optional_type | @swift_protocol_composition_type | @swift_suppressed_constraint | @swift_tuple_type | @swift_type_pack_expansion | @swift_type_parameter_pack | @swift_user_type - swift_if_condition_name( unique int swift_if_condition: @swift_if_condition ref, - unique int name: @swift_if_condition_name_type ref + unique int name: @swift_unannotated_type ref ); @swift_if_condition_child_type = @swift_availability_condition | @swift_expression | @swift_pattern | @swift_token_wildcard_pattern | @swift_type_annotation | @swift_type_modifiers | @swift_user_type | @swift_value_binding_pattern | @swift_where_clause @@ -1024,7 +1004,7 @@ swift_infix_expression_def( int rhs: @swift_expression ref ); -@swift_inheritance_constraint_constrained_type_type = @swift_array_type | @swift_dictionary_type | @swift_existential_type | @swift_function_type | @swift_identifier | @swift_metatype | @swift_opaque_type | @swift_optional_type | @swift_protocol_composition_type | @swift_reserved_word | @swift_suppressed_constraint | @swift_token_simple_identifier | @swift_tuple_type | @swift_type_pack_expansion | @swift_type_parameter_pack | @swift_user_type +@swift_inheritance_constraint_constrained_type_type = @swift_identifier | @swift_reserved_word | @swift_token_simple_identifier | @swift_unannotated_type #keyset[swift_inheritance_constraint, index] swift_inheritance_constraint_constrained_type( @@ -1033,7 +1013,7 @@ swift_inheritance_constraint_constrained_type( unique int constrained_type: @swift_inheritance_constraint_constrained_type_type ref ); -@swift_inheritance_constraint_inherits_from_type = @swift_array_type | @swift_dictionary_type | @swift_existential_type | @swift_function_type | @swift_metatype | @swift_opaque_type | @swift_optional_type | @swift_protocol_composition_type | @swift_reserved_word | @swift_suppressed_constraint | @swift_tuple_type | @swift_type_modifiers | @swift_type_pack_expansion | @swift_type_parameter_pack | @swift_user_type +@swift_inheritance_constraint_inherits_from_type = @swift_reserved_word | @swift_type_modifiers | @swift_unannotated_type #keyset[swift_inheritance_constraint, index] swift_inheritance_constraint_inherits_from( @@ -1042,8 +1022,6 @@ swift_inheritance_constraint_inherits_from( unique int inherits_from: @swift_inheritance_constraint_inherits_from_type ref ); -@swift_inheritance_constraint_name_type = @swift_array_type | @swift_dictionary_type | @swift_existential_type | @swift_function_type | @swift_metatype | @swift_opaque_type | @swift_optional_type | @swift_protocol_composition_type | @swift_suppressed_constraint | @swift_tuple_type | @swift_type_pack_expansion | @swift_type_parameter_pack | @swift_user_type - #keyset[swift_inheritance_constraint, index] swift_inheritance_constraint_child( int swift_inheritance_constraint: @swift_inheritance_constraint ref, @@ -1053,7 +1031,7 @@ swift_inheritance_constraint_child( swift_inheritance_constraint_def( unique int id: @swift_inheritance_constraint, - int name: @swift_inheritance_constraint_name_type ref + int name: @swift_unannotated_type ref ); @swift_inheritance_specifier_inherits_from_type = @swift_function_type | @swift_suppressed_constraint | @swift_user_type @@ -1138,14 +1116,12 @@ swift_key_path_string_expression_def( int child: @swift_expression ref ); -@swift_lambda_function_type_name_type = @swift_array_type | @swift_dictionary_type | @swift_existential_type | @swift_function_type | @swift_metatype | @swift_opaque_type | @swift_optional_type | @swift_protocol_composition_type | @swift_suppressed_constraint | @swift_tuple_type | @swift_type_pack_expansion | @swift_type_parameter_pack | @swift_user_type - swift_lambda_function_type_name( unique int swift_lambda_function_type: @swift_lambda_function_type ref, - unique int name: @swift_lambda_function_type_name_type ref + unique int name: @swift_unannotated_type ref ); -@swift_lambda_function_type_return_type_type = @swift_array_type | @swift_dictionary_type | @swift_existential_type | @swift_function_type | @swift_metatype | @swift_opaque_type | @swift_optional_type | @swift_protocol_composition_type | @swift_reserved_word | @swift_suppressed_constraint | @swift_tuple_type | @swift_type_modifiers | @swift_type_pack_expansion | @swift_type_parameter_pack | @swift_user_type +@swift_lambda_function_type_return_type_type = @swift_reserved_word | @swift_type_modifiers | @swift_unannotated_type #keyset[swift_lambda_function_type, index] swift_lambda_function_type_return_type( @@ -1206,7 +1182,7 @@ swift_lambda_parameter_external_name( unique int external_name: @swift_token_simple_identifier ref ); -@swift_lambda_parameter_name_type = @swift_array_type | @swift_dictionary_type | @swift_existential_type | @swift_function_type | @swift_metatype | @swift_opaque_type | @swift_optional_type | @swift_protocol_composition_type | @swift_suppressed_constraint | @swift_token_simple_identifier | @swift_tuple_type | @swift_type_pack_expansion | @swift_type_parameter_pack | @swift_user_type +@swift_lambda_parameter_name_type = @swift_token_simple_identifier | @swift_unannotated_type #keyset[swift_lambda_parameter, index] swift_lambda_parameter_name( @@ -1215,7 +1191,7 @@ swift_lambda_parameter_name( unique int name: @swift_lambda_parameter_name_type ref ); -@swift_lambda_parameter_type_type = @swift_array_type | @swift_dictionary_type | @swift_existential_type | @swift_function_type | @swift_metatype | @swift_opaque_type | @swift_optional_type | @swift_protocol_composition_type | @swift_reserved_word | @swift_suppressed_constraint | @swift_tuple_type | @swift_type_modifiers | @swift_type_pack_expansion | @swift_type_parameter_pack | @swift_user_type +@swift_lambda_parameter_type_type = @swift_reserved_word | @swift_type_modifiers | @swift_unannotated_type #keyset[swift_lambda_parameter, index] swift_lambda_parameter_type( @@ -1267,7 +1243,7 @@ swift_macro_declaration_definition( unique int definition: @swift_macro_definition ref ); -@swift_macro_declaration_child_type = @swift_array_type | @swift_attribute | @swift_dictionary_type | @swift_existential_type | @swift_function_type | @swift_metatype | @swift_modifiers | @swift_opaque_type | @swift_optional_type | @swift_parameter | @swift_protocol_composition_type | @swift_suppressed_constraint | @swift_token_simple_identifier | @swift_tuple_type | @swift_type_constraints | @swift_type_pack_expansion | @swift_type_parameter_pack | @swift_type_parameters | @swift_user_type +@swift_macro_declaration_child_type = @swift_attribute | @swift_modifiers | @swift_parameter | @swift_token_simple_identifier | @swift_type_constraints | @swift_type_parameters | @swift_unannotated_type #keyset[swift_macro_declaration, index] swift_macro_declaration_child( @@ -1300,11 +1276,9 @@ swift_macro_invocation_def( unique int id: @swift_macro_invocation ); -@swift_metatype_child_type = @swift_array_type | @swift_dictionary_type | @swift_existential_type | @swift_function_type | @swift_metatype | @swift_opaque_type | @swift_optional_type | @swift_protocol_composition_type | @swift_suppressed_constraint | @swift_tuple_type | @swift_type_pack_expansion | @swift_type_parameter_pack | @swift_user_type - swift_metatype_def( unique int id: @swift_metatype, - int child: @swift_metatype_child_type ref + int child: @swift_unannotated_type ref ); @swift_modifiers_child_type = @swift_attribute | @swift_token_function_modifier | @swift_token_inheritance_modifier | @swift_token_member_modifier | @swift_token_mutation_modifier | @swift_token_ownership_modifier | @swift_token_parameter_modifier | @swift_token_property_behavior_modifier | @swift_token_property_modifier | @swift_token_visibility_modifier @@ -1397,11 +1371,9 @@ swift_nil_coalescing_expression_def( int value: @swift_expression ref ); -@swift_opaque_type_child_type = @swift_array_type | @swift_dictionary_type | @swift_existential_type | @swift_function_type | @swift_metatype | @swift_opaque_type | @swift_optional_type | @swift_protocol_composition_type | @swift_suppressed_constraint | @swift_tuple_type | @swift_type_pack_expansion | @swift_type_parameter_pack | @swift_user_type - swift_opaque_type_def( unique int id: @swift_opaque_type, - int child: @swift_opaque_type_child_type ref + int child: @swift_unannotated_type ref ); swift_open_end_range_expression_def( @@ -1444,7 +1416,7 @@ swift_parameter_external_name( unique int external_name: @swift_token_simple_identifier ref ); -@swift_parameter_name_type = @swift_array_type | @swift_dictionary_type | @swift_existential_type | @swift_function_type | @swift_metatype | @swift_opaque_type | @swift_optional_type | @swift_protocol_composition_type | @swift_suppressed_constraint | @swift_token_simple_identifier | @swift_tuple_type | @swift_type_pack_expansion | @swift_type_parameter_pack | @swift_user_type +@swift_parameter_name_type = @swift_token_simple_identifier | @swift_unannotated_type #keyset[swift_parameter, index] swift_parameter_name( @@ -1453,7 +1425,7 @@ swift_parameter_name( unique int name: @swift_parameter_name_type ref ); -@swift_parameter_type_type = @swift_array_type | @swift_dictionary_type | @swift_existential_type | @swift_function_type | @swift_metatype | @swift_opaque_type | @swift_optional_type | @swift_protocol_composition_type | @swift_reserved_word | @swift_suppressed_constraint | @swift_tuple_type | @swift_type_modifiers | @swift_type_pack_expansion | @swift_type_parameter_pack | @swift_user_type +@swift_parameter_type_type = @swift_reserved_word | @swift_type_modifiers | @swift_unannotated_type #keyset[swift_parameter, index] swift_parameter_type( @@ -1487,11 +1459,9 @@ swift_pattern_bound_identifier( unique int bound_identifier: @swift_token_simple_identifier ref ); -@swift_pattern_name_type = @swift_array_type | @swift_dictionary_type | @swift_existential_type | @swift_function_type | @swift_metatype | @swift_opaque_type | @swift_optional_type | @swift_protocol_composition_type | @swift_suppressed_constraint | @swift_tuple_type | @swift_type_pack_expansion | @swift_type_parameter_pack | @swift_user_type - swift_pattern_name( unique int swift_pattern: @swift_pattern ref, - unique int name: @swift_pattern_name_type ref + unique int name: @swift_unannotated_type ref ); @swift_pattern_child_type = @swift_expression | @swift_pattern | @swift_token_wildcard_pattern | @swift_type_modifiers | @swift_user_type | @swift_value_binding_pattern @@ -1625,13 +1595,11 @@ swift_protocol_body_def( unique int id: @swift_protocol_body ); -@swift_protocol_composition_type_child_type = @swift_array_type | @swift_dictionary_type | @swift_existential_type | @swift_function_type | @swift_metatype | @swift_opaque_type | @swift_optional_type | @swift_protocol_composition_type | @swift_suppressed_constraint | @swift_tuple_type | @swift_type_pack_expansion | @swift_type_parameter_pack | @swift_user_type - #keyset[swift_protocol_composition_type, index] swift_protocol_composition_type_child( int swift_protocol_composition_type: @swift_protocol_composition_type ref, int index: int ref, - unique int child: @swift_protocol_composition_type_child_type ref + unique int child: @swift_unannotated_type ref ); swift_protocol_composition_type_def( @@ -1666,7 +1634,7 @@ swift_protocol_function_declaration_default_value( unique int default_value: @swift_expression ref ); -@swift_protocol_function_declaration_name_type = @swift_array_type | @swift_dictionary_type | @swift_existential_type | @swift_function_type | @swift_metatype | @swift_opaque_type | @swift_optional_type | @swift_protocol_composition_type | @swift_referenceable_operator | @swift_suppressed_constraint | @swift_token_simple_identifier | @swift_tuple_type | @swift_type_pack_expansion | @swift_type_parameter_pack | @swift_user_type +@swift_protocol_function_declaration_name_type = @swift_referenceable_operator | @swift_token_simple_identifier | @swift_unannotated_type #keyset[swift_protocol_function_declaration, index] swift_protocol_function_declaration_name( @@ -1675,7 +1643,7 @@ swift_protocol_function_declaration_name( unique int name: @swift_protocol_function_declaration_name_type ref ); -@swift_protocol_function_declaration_return_type_type = @swift_array_type | @swift_dictionary_type | @swift_existential_type | @swift_function_type | @swift_metatype | @swift_opaque_type | @swift_optional_type | @swift_protocol_composition_type | @swift_reserved_word | @swift_suppressed_constraint | @swift_tuple_type | @swift_type_modifiers | @swift_type_pack_expansion | @swift_type_parameter_pack | @swift_user_type +@swift_protocol_function_declaration_return_type_type = @swift_reserved_word | @swift_type_modifiers | @swift_unannotated_type #keyset[swift_protocol_function_declaration, index] swift_protocol_function_declaration_return_type( @@ -1850,14 +1818,12 @@ swift_subscript_declaration_default_value( unique int default_value: @swift_expression ref ); -@swift_subscript_declaration_name_type = @swift_array_type | @swift_dictionary_type | @swift_existential_type | @swift_function_type | @swift_metatype | @swift_opaque_type | @swift_optional_type | @swift_protocol_composition_type | @swift_suppressed_constraint | @swift_tuple_type | @swift_type_pack_expansion | @swift_type_parameter_pack | @swift_user_type - swift_subscript_declaration_name( unique int swift_subscript_declaration: @swift_subscript_declaration ref, - unique int name: @swift_subscript_declaration_name_type ref + unique int name: @swift_unannotated_type ref ); -@swift_subscript_declaration_return_type_type = @swift_array_type | @swift_dictionary_type | @swift_existential_type | @swift_function_type | @swift_metatype | @swift_opaque_type | @swift_optional_type | @swift_protocol_composition_type | @swift_reserved_word | @swift_suppressed_constraint | @swift_tuple_type | @swift_type_modifiers | @swift_type_pack_expansion | @swift_type_parameter_pack | @swift_user_type +@swift_subscript_declaration_return_type_type = @swift_reserved_word | @swift_type_modifiers | @swift_unannotated_type #keyset[swift_subscript_declaration, index] swift_subscript_declaration_return_type( @@ -1921,11 +1887,9 @@ swift_ternary_expression_def( int if_true: @swift_expression ref ); -@swift_throws_clause_type_type = @swift_array_type | @swift_dictionary_type | @swift_existential_type | @swift_function_type | @swift_metatype | @swift_opaque_type | @swift_optional_type | @swift_protocol_composition_type | @swift_suppressed_constraint | @swift_tuple_type | @swift_type_pack_expansion | @swift_type_parameter_pack | @swift_user_type - swift_throws_clause_def( unique int id: @swift_throws_clause, - int type__: @swift_throws_clause_type_type ref + int type__: @swift_unannotated_type ref ); swift_try_expression_def( @@ -1975,7 +1939,7 @@ swift_tuple_type_item_element( unique int element: @swift_tuple_type_item_element_type ref ); -@swift_tuple_type_item_name_type = @swift_array_type | @swift_dictionary_type | @swift_existential_type | @swift_function_type | @swift_metatype | @swift_opaque_type | @swift_optional_type | @swift_protocol_composition_type | @swift_suppressed_constraint | @swift_token_simple_identifier | @swift_tuple_type | @swift_type_pack_expansion | @swift_type_parameter_pack | @swift_user_type +@swift_tuple_type_item_name_type = @swift_token_simple_identifier | @swift_unannotated_type #keyset[swift_tuple_type_item, index] swift_tuple_type_item_name( @@ -1984,7 +1948,7 @@ swift_tuple_type_item_name( unique int name: @swift_tuple_type_item_name_type ref ); -@swift_tuple_type_item_type_type = @swift_array_type | @swift_dictionary_type | @swift_existential_type | @swift_function_type | @swift_metatype | @swift_opaque_type | @swift_optional_type | @swift_protocol_composition_type | @swift_suppressed_constraint | @swift_tuple_type | @swift_type_modifiers | @swift_type_pack_expansion | @swift_type_parameter_pack | @swift_user_type +@swift_tuple_type_item_type_type = @swift_type_modifiers | @swift_unannotated_type #keyset[swift_tuple_type_item, index] swift_tuple_type_item_type( @@ -2006,9 +1970,7 @@ swift_tuple_type_item_def( unique int id: @swift_tuple_type_item ); -@swift_type_annotation_name_type = @swift_array_type | @swift_dictionary_type | @swift_existential_type | @swift_function_type | @swift_metatype | @swift_opaque_type | @swift_optional_type | @swift_protocol_composition_type | @swift_suppressed_constraint | @swift_tuple_type | @swift_type_pack_expansion | @swift_type_parameter_pack | @swift_user_type - -@swift_type_annotation_type_type = @swift_array_type | @swift_dictionary_type | @swift_existential_type | @swift_function_type | @swift_metatype | @swift_opaque_type | @swift_optional_type | @swift_protocol_composition_type | @swift_reserved_word | @swift_suppressed_constraint | @swift_tuple_type | @swift_type_modifiers | @swift_type_pack_expansion | @swift_type_parameter_pack | @swift_user_type +@swift_type_annotation_type_type = @swift_reserved_word | @swift_type_modifiers | @swift_unannotated_type #keyset[swift_type_annotation, index] swift_type_annotation_type( @@ -2019,16 +1981,14 @@ swift_type_annotation_type( swift_type_annotation_def( unique int id: @swift_type_annotation, - int name: @swift_type_annotation_name_type ref + int name: @swift_unannotated_type ref ); -@swift_type_arguments_name_type = @swift_array_type | @swift_dictionary_type | @swift_existential_type | @swift_function_type | @swift_metatype | @swift_opaque_type | @swift_optional_type | @swift_protocol_composition_type | @swift_suppressed_constraint | @swift_tuple_type | @swift_type_pack_expansion | @swift_type_parameter_pack | @swift_user_type - #keyset[swift_type_arguments, index] swift_type_arguments_name( int swift_type_arguments: @swift_type_arguments ref, int index: int ref, - unique int name: @swift_type_arguments_name_type ref + unique int name: @swift_unannotated_type ref ); #keyset[swift_type_arguments, index] @@ -2073,18 +2033,14 @@ swift_type_modifiers_def( unique int id: @swift_type_modifiers ); -@swift_type_pack_expansion_child_type = @swift_array_type | @swift_dictionary_type | @swift_existential_type | @swift_function_type | @swift_metatype | @swift_opaque_type | @swift_optional_type | @swift_protocol_composition_type | @swift_suppressed_constraint | @swift_tuple_type | @swift_type_pack_expansion | @swift_type_parameter_pack | @swift_user_type - swift_type_pack_expansion_def( unique int id: @swift_type_pack_expansion, - int child: @swift_type_pack_expansion_child_type ref + int child: @swift_unannotated_type ref ); -@swift_type_parameter_name_type = @swift_array_type | @swift_dictionary_type | @swift_existential_type | @swift_function_type | @swift_metatype | @swift_opaque_type | @swift_optional_type | @swift_protocol_composition_type | @swift_suppressed_constraint | @swift_tuple_type | @swift_type_pack_expansion | @swift_type_parameter_pack | @swift_user_type - swift_type_parameter_name( unique int swift_type_parameter: @swift_type_parameter ref, - unique int name: @swift_type_parameter_name_type ref + unique int name: @swift_unannotated_type ref ); @swift_type_parameter_child_type = @swift_token_type_identifier | @swift_type_modifiers | @swift_type_parameter_modifiers | @swift_type_parameter_pack @@ -2111,11 +2067,9 @@ swift_type_parameter_modifiers_def( unique int id: @swift_type_parameter_modifiers ); -@swift_type_parameter_pack_child_type = @swift_array_type | @swift_dictionary_type | @swift_existential_type | @swift_function_type | @swift_metatype | @swift_opaque_type | @swift_optional_type | @swift_protocol_composition_type | @swift_suppressed_constraint | @swift_tuple_type | @swift_type_pack_expansion | @swift_type_parameter_pack | @swift_user_type - swift_type_parameter_pack_def( unique int id: @swift_type_parameter_pack, - int child: @swift_type_parameter_pack_child_type ref + int child: @swift_unannotated_type ref ); @swift_type_parameters_child_type = @swift_type_constraints | @swift_type_parameter @@ -2131,7 +2085,7 @@ swift_type_parameters_def( unique int id: @swift_type_parameters ); -@swift_typealias_declaration_name_type = @swift_array_type | @swift_dictionary_type | @swift_existential_type | @swift_function_type | @swift_metatype | @swift_opaque_type | @swift_optional_type | @swift_protocol_composition_type | @swift_suppressed_constraint | @swift_token_type_identifier | @swift_tuple_type | @swift_type_pack_expansion | @swift_type_parameter_pack | @swift_user_type +@swift_typealias_declaration_name_type = @swift_token_type_identifier | @swift_unannotated_type #keyset[swift_typealias_declaration, index] swift_typealias_declaration_name( @@ -2140,7 +2094,7 @@ swift_typealias_declaration_name( unique int name: @swift_typealias_declaration_name_type ref ); -@swift_typealias_declaration_value_type = @swift_array_type | @swift_dictionary_type | @swift_existential_type | @swift_function_type | @swift_metatype | @swift_opaque_type | @swift_optional_type | @swift_protocol_composition_type | @swift_suppressed_constraint | @swift_tuple_type | @swift_type_modifiers | @swift_type_pack_expansion | @swift_type_parameter_pack | @swift_user_type +@swift_typealias_declaration_value_type = @swift_type_modifiers | @swift_unannotated_type #keyset[swift_typealias_declaration, index] swift_typealias_declaration_value( @@ -2162,6 +2116,8 @@ swift_typealias_declaration_def( unique int id: @swift_typealias_declaration ); +@swift_unannotated_type = @swift_array_type | @swift_dictionary_type | @swift_existential_type | @swift_function_type | @swift_metatype | @swift_opaque_type | @swift_optional_type | @swift_protocol_composition_type | @swift_suppressed_constraint | @swift_tuple_type | @swift_type_pack_expansion | @swift_type_parameter_pack | @swift_user_type + @swift_user_type_child_type = @swift_token_type_identifier | @swift_type_arguments #keyset[swift_user_type, index] From 91a46f0340c77168b28756ae419e3ce48cbe4283 Mon Sep 17 00:00:00 2001 From: Taus Date: Fri, 8 May 2026 15:37:29 +0000 Subject: [PATCH 247/260] unified: stop `"!"` bleeding through You know the drill. We just make an anonymous node named instead. In this case, however, we have to be a bit more clever about how to rewrite it. We turn the sequence of a type followed by an optional ! into a _choice_ between mere type or type followed by bang (the latter being our new named node). --- .../extractor/tree-sitter-swift/grammar.js | 4 +++- .../tree-sitter-swift/node-types.yml | 23 +++++++++++-------- 2 files changed, 16 insertions(+), 11 deletions(-) diff --git a/unified/extractor/tree-sitter-swift/grammar.js b/unified/extractor/tree-sitter-swift/grammar.js index 01f714285c78..321ceb01363e 100644 --- a/unified/extractor/tree-sitter-swift/grammar.js +++ b/unified/extractor/tree-sitter-swift/grammar.js @@ -401,7 +401,9 @@ module.exports = grammar({ type_annotation: ($) => seq(":", field("type", $._possibly_implicitly_unwrapped_type)), _possibly_implicitly_unwrapped_type: ($) => - seq($._type, optional(token.immediate("!"))), + choice($._type, $.implicitly_unwrapped_type), + implicitly_unwrapped_type: ($) => + seq($._type, token.immediate("!")), _type: ($) => prec.right( PRECS.ty, diff --git a/unified/extractor/tree-sitter-swift/node-types.yml b/unified/extractor/tree-sitter-swift/node-types.yml index 3e9d6bba9685..b77df29133b7 100644 --- a/unified/extractor/tree-sitter-swift/node-types.yml +++ b/unified/extractor/tree-sitter-swift/node-types.yml @@ -226,7 +226,7 @@ named: body: function_body default_value*: expression name+: [referenceable_operator, simple_identifier, unannotated_type] - return_type*: ["!", type_modifiers, unannotated_type] + return_type*: [implicitly_unwrapped_type, type_modifiers, unannotated_type] function_modifier: function_type: $children?: [throws, throws_clause] @@ -248,6 +248,9 @@ named: if_statement: $children*: [else, if_statement, statements] condition+: if_condition + implicitly_unwrapped_type: + $children?: type_modifiers + name: unannotated_type import_declaration: $children+: [identifier, modifiers] infix_expression: @@ -257,8 +260,8 @@ named: inheritance_constraint: $children*: attribute constrained_type+: [".", identifier, simple_identifier, unannotated_type] - inherits_from+: ["!", type_modifiers, unannotated_type] - name: unannotated_type + inherits_from+: [implicitly_unwrapped_type, type_modifiers, unannotated_type] + name?: unannotated_type inheritance_modifier: inheritance_specifier: inherits_from: [function_type, suppressed_constraint, user_type] @@ -280,7 +283,7 @@ named: lambda_function_type: $children*: [lambda_function_type_parameters, throws, throws_clause] name?: unannotated_type - return_type*: ["!", type_modifiers, unannotated_type] + return_type*: [implicitly_unwrapped_type, type_modifiers, unannotated_type] lambda_function_type_parameters: $children+: lambda_parameter lambda_literal: @@ -291,7 +294,7 @@ named: $children?: [parameter_modifiers, self_expression] external_name?: simple_identifier name*: [simple_identifier, unannotated_type] - type*: ["!", type_modifiers, unannotated_type] + type*: [implicitly_unwrapped_type, type_modifiers, unannotated_type] line_str_text: line_string_literal: interpolation*: interpolated_expression @@ -348,7 +351,7 @@ named: $children?: parameter_modifiers external_name?: simple_identifier name+: [simple_identifier, unannotated_type] - type+: ["!", type_modifiers, unannotated_type] + type+: [implicitly_unwrapped_type, type_modifiers, unannotated_type] parameter_modifier: parameter_modifiers: $children+: parameter_modifier @@ -391,7 +394,7 @@ named: $children*: [attribute, modifiers, parameter, statements, throws, throws_clause, type_constraints, type_parameters] default_value*: expression name*: [referenceable_operator, simple_identifier, unannotated_type] - return_type*: ["!", type_modifiers, unannotated_type] + return_type*: [implicitly_unwrapped_type, type_modifiers, unannotated_type] protocol_property_declaration: $children+: [modifiers, protocol_property_requirements, type_annotation, type_constraints] name: pattern @@ -437,7 +440,7 @@ named: $children+: [attribute, computed_property, modifiers, parameter, type_constraints, type_parameters] default_value*: expression name?: unannotated_type - return_type*: ["!", type_modifiers, unannotated_type] + return_type*: [implicitly_unwrapped_type, type_modifiers, unannotated_type] super_expression: suppressed_constraint: suppressed: type_identifier @@ -472,8 +475,8 @@ named: name*: [simple_identifier, unannotated_type] type*: [type_modifiers, unannotated_type] type_annotation: - name: unannotated_type - type+: ["!", type_modifiers, unannotated_type] + name?: unannotated_type + type+: [implicitly_unwrapped_type, type_modifiers, unannotated_type] type_arguments: $children*: type_modifiers name+: unannotated_type From caa9b04ad8faa88f31d558542a2eaa3aa97654e6 Mon Sep 17 00:00:00 2001 From: Taus Date: Fri, 8 May 2026 15:37:47 +0000 Subject: [PATCH 248/260] unified: regenerate files --- unified/ql/lib/codeql/unified/Ast.qll | 26 +++++++++++++--- unified/ql/lib/unified.dbscheme | 44 +++++++++++++++++++-------- 2 files changed, 53 insertions(+), 17 deletions(-) diff --git a/unified/ql/lib/codeql/unified/Ast.qll b/unified/ql/lib/codeql/unified/Ast.qll index e2be15932bed..8fd4e61ed323 100644 --- a/unified/ql/lib/codeql/unified/Ast.qll +++ b/unified/ql/lib/codeql/unified/Ast.qll @@ -1171,6 +1171,24 @@ module Swift { } } + /** A class representing `implicitly_unwrapped_type` nodes. */ + class ImplicitlyUnwrappedType extends @swift_implicitly_unwrapped_type, AstNode { + /** Gets the name of the primary QL class for this element. */ + final override string getAPrimaryQlClass() { result = "ImplicitlyUnwrappedType" } + + /** Gets the node corresponding to the field `name`. */ + final UnannotatedType getName() { swift_implicitly_unwrapped_type_def(this, result) } + + /** Gets the child of this node. */ + final TypeModifiers getChild() { swift_implicitly_unwrapped_type_child(this, result) } + + /** Gets a field or child node of this node. */ + final override AstNode getAFieldOrChild() { + swift_implicitly_unwrapped_type_def(this, result) or + swift_implicitly_unwrapped_type_child(this, result) + } + } + /** A class representing `import_declaration` nodes. */ class ImportDeclaration extends @swift_import_declaration, AstNode { /** Gets the name of the primary QL class for this element. */ @@ -1221,7 +1239,7 @@ module Swift { } /** Gets the node corresponding to the field `name`. */ - final UnannotatedType getName() { swift_inheritance_constraint_def(this, result) } + final UnannotatedType getName() { swift_inheritance_constraint_name(this, result) } /** Gets the `i`th child of this node. */ final Attribute getChild(int i) { swift_inheritance_constraint_child(this, i, result) } @@ -1230,7 +1248,7 @@ module Swift { final override AstNode getAFieldOrChild() { swift_inheritance_constraint_constrained_type(this, _, result) or swift_inheritance_constraint_inherits_from(this, _, result) or - swift_inheritance_constraint_def(this, result) or + swift_inheritance_constraint_name(this, result) or swift_inheritance_constraint_child(this, _, result) } } @@ -2512,14 +2530,14 @@ module Swift { final override string getAPrimaryQlClass() { result = "TypeAnnotation" } /** Gets the node corresponding to the field `name`. */ - final UnannotatedType getName() { swift_type_annotation_def(this, result) } + final UnannotatedType getName() { swift_type_annotation_name(this, result) } /** Gets the node corresponding to the field `type`. */ final AstNode getType(int i) { swift_type_annotation_type(this, i, result) } /** Gets a field or child node of this node. */ final override AstNode getAFieldOrChild() { - swift_type_annotation_def(this, result) or swift_type_annotation_type(this, _, result) + swift_type_annotation_name(this, result) or swift_type_annotation_type(this, _, result) } } diff --git a/unified/ql/lib/unified.dbscheme b/unified/ql/lib/unified.dbscheme index d78f5fe5fc68..748a2dfc4a59 100644 --- a/unified/ql/lib/unified.dbscheme +++ b/unified/ql/lib/unified.dbscheme @@ -852,7 +852,7 @@ swift_function_declaration_name( unique int name: @swift_function_declaration_name_type ref ); -@swift_function_declaration_return_type_type = @swift_reserved_word | @swift_type_modifiers | @swift_unannotated_type +@swift_function_declaration_return_type_type = @swift_implicitly_unwrapped_type | @swift_type_modifiers | @swift_unannotated_type #keyset[swift_function_declaration, index] swift_function_declaration_return_type( @@ -984,6 +984,16 @@ swift_if_statement_def( unique int id: @swift_if_statement ); +swift_implicitly_unwrapped_type_child( + unique int swift_implicitly_unwrapped_type: @swift_implicitly_unwrapped_type ref, + unique int child: @swift_type_modifiers ref +); + +swift_implicitly_unwrapped_type_def( + unique int id: @swift_implicitly_unwrapped_type, + int name: @swift_unannotated_type ref +); + @swift_import_declaration_child_type = @swift_identifier | @swift_modifiers #keyset[swift_import_declaration, index] @@ -1013,7 +1023,7 @@ swift_inheritance_constraint_constrained_type( unique int constrained_type: @swift_inheritance_constraint_constrained_type_type ref ); -@swift_inheritance_constraint_inherits_from_type = @swift_reserved_word | @swift_type_modifiers | @swift_unannotated_type +@swift_inheritance_constraint_inherits_from_type = @swift_implicitly_unwrapped_type | @swift_type_modifiers | @swift_unannotated_type #keyset[swift_inheritance_constraint, index] swift_inheritance_constraint_inherits_from( @@ -1022,6 +1032,11 @@ swift_inheritance_constraint_inherits_from( unique int inherits_from: @swift_inheritance_constraint_inherits_from_type ref ); +swift_inheritance_constraint_name( + unique int swift_inheritance_constraint: @swift_inheritance_constraint ref, + unique int name: @swift_unannotated_type ref +); + #keyset[swift_inheritance_constraint, index] swift_inheritance_constraint_child( int swift_inheritance_constraint: @swift_inheritance_constraint ref, @@ -1030,8 +1045,7 @@ swift_inheritance_constraint_child( ); swift_inheritance_constraint_def( - unique int id: @swift_inheritance_constraint, - int name: @swift_unannotated_type ref + unique int id: @swift_inheritance_constraint ); @swift_inheritance_specifier_inherits_from_type = @swift_function_type | @swift_suppressed_constraint | @swift_user_type @@ -1121,7 +1135,7 @@ swift_lambda_function_type_name( unique int name: @swift_unannotated_type ref ); -@swift_lambda_function_type_return_type_type = @swift_reserved_word | @swift_type_modifiers | @swift_unannotated_type +@swift_lambda_function_type_return_type_type = @swift_implicitly_unwrapped_type | @swift_type_modifiers | @swift_unannotated_type #keyset[swift_lambda_function_type, index] swift_lambda_function_type_return_type( @@ -1191,7 +1205,7 @@ swift_lambda_parameter_name( unique int name: @swift_lambda_parameter_name_type ref ); -@swift_lambda_parameter_type_type = @swift_reserved_word | @swift_type_modifiers | @swift_unannotated_type +@swift_lambda_parameter_type_type = @swift_implicitly_unwrapped_type | @swift_type_modifiers | @swift_unannotated_type #keyset[swift_lambda_parameter, index] swift_lambda_parameter_type( @@ -1425,7 +1439,7 @@ swift_parameter_name( unique int name: @swift_parameter_name_type ref ); -@swift_parameter_type_type = @swift_reserved_word | @swift_type_modifiers | @swift_unannotated_type +@swift_parameter_type_type = @swift_implicitly_unwrapped_type | @swift_type_modifiers | @swift_unannotated_type #keyset[swift_parameter, index] swift_parameter_type( @@ -1643,7 +1657,7 @@ swift_protocol_function_declaration_name( unique int name: @swift_protocol_function_declaration_name_type ref ); -@swift_protocol_function_declaration_return_type_type = @swift_reserved_word | @swift_type_modifiers | @swift_unannotated_type +@swift_protocol_function_declaration_return_type_type = @swift_implicitly_unwrapped_type | @swift_type_modifiers | @swift_unannotated_type #keyset[swift_protocol_function_declaration, index] swift_protocol_function_declaration_return_type( @@ -1823,7 +1837,7 @@ swift_subscript_declaration_name( unique int name: @swift_unannotated_type ref ); -@swift_subscript_declaration_return_type_type = @swift_reserved_word | @swift_type_modifiers | @swift_unannotated_type +@swift_subscript_declaration_return_type_type = @swift_implicitly_unwrapped_type | @swift_type_modifiers | @swift_unannotated_type #keyset[swift_subscript_declaration, index] swift_subscript_declaration_return_type( @@ -1970,7 +1984,12 @@ swift_tuple_type_item_def( unique int id: @swift_tuple_type_item ); -@swift_type_annotation_type_type = @swift_reserved_word | @swift_type_modifiers | @swift_unannotated_type +swift_type_annotation_name( + unique int swift_type_annotation: @swift_type_annotation ref, + unique int name: @swift_unannotated_type ref +); + +@swift_type_annotation_type_type = @swift_implicitly_unwrapped_type | @swift_type_modifiers | @swift_unannotated_type #keyset[swift_type_annotation, index] swift_type_annotation_type( @@ -1980,8 +1999,7 @@ swift_type_annotation_type( ); swift_type_annotation_def( - unique int id: @swift_type_annotation, - int name: @swift_unannotated_type ref + unique int id: @swift_type_annotation ); #keyset[swift_type_arguments, index] @@ -2305,7 +2323,7 @@ case @swift_token.kind of ; -@swift_ast_node = @swift_additive_expression | @swift_array_literal | @swift_array_type | @swift_as_expression | @swift_assignment | @swift_associatedtype_declaration | @swift_attribute | @swift_availability_condition | @swift_await_expression | @swift_bitwise_operation | @swift_call_expression | @swift_call_suffix | @swift_capture_list | @swift_capture_list_item | @swift_catch_block | @swift_check_expression | @swift_class_body | @swift_class_declaration | @swift_comparison_expression | @swift_computed_getter | @swift_computed_modify | @swift_computed_property | @swift_computed_setter | @swift_conjunction_expression | @swift_constructor_expression | @swift_constructor_suffix | @swift_control_transfer_statement | @swift_deinit_declaration | @swift_deprecated_operator_declaration_body | @swift_dictionary_literal | @swift_dictionary_type | @swift_didset_clause | @swift_directive | @swift_directly_assignable_expression | @swift_disjunction_expression | @swift_do_statement | @swift_enum_class_body | @swift_enum_entry | @swift_enum_type_parameters | @swift_equality_constraint | @swift_equality_expression | @swift_existential_type | @swift_external_macro_definition | @swift_for_statement | @swift_function_body | @swift_function_declaration | @swift_function_type | @swift_getter_specifier | @swift_guard_statement | @swift_identifier | @swift_if_condition | @swift_if_statement | @swift_import_declaration | @swift_infix_expression | @swift_inheritance_constraint | @swift_inheritance_specifier | @swift_init_declaration | @swift_interpolated_expression | @swift_key_path_expression | @swift_key_path_string_expression | @swift_lambda_function_type | @swift_lambda_function_type_parameters | @swift_lambda_literal | @swift_lambda_parameter | @swift_line_string_literal | @swift_macro_declaration | @swift_macro_definition | @swift_macro_invocation | @swift_metatype | @swift_modifiers | @swift_modify_specifier | @swift_multi_line_string_literal | @swift_multiplicative_expression | @swift_navigation_expression | @swift_navigation_suffix | @swift_nil_coalescing_expression | @swift_opaque_type | @swift_open_end_range_expression | @swift_open_start_range_expression | @swift_operator_declaration | @swift_optional_chain_marker | @swift_optional_type | @swift_parameter | @swift_parameter_modifiers | @swift_pattern | @swift_playground_literal | @swift_postfix_expression | @swift_precedence_group_attribute | @swift_precedence_group_attributes | @swift_precedence_group_declaration | @swift_prefix_expression | @swift_property_declaration | @swift_protocol_body | @swift_protocol_composition_type | @swift_protocol_declaration | @swift_protocol_function_declaration | @swift_protocol_property_declaration | @swift_protocol_property_requirements | @swift_range_expression | @swift_raw_str_interpolation | @swift_raw_string_literal | @swift_referenceable_operator | @swift_repeat_while_statement | @swift_selector_expression | @swift_setter_specifier | @swift_source_file | @swift_statements | @swift_subscript_declaration | @swift_suppressed_constraint | @swift_switch_entry | @swift_switch_pattern | @swift_switch_statement | @swift_ternary_expression | @swift_throws_clause | @swift_token | @swift_try_expression | @swift_tuple_expression | @swift_tuple_type | @swift_tuple_type_item | @swift_type_annotation | @swift_type_arguments | @swift_type_constraint | @swift_type_constraints | @swift_type_modifiers | @swift_type_pack_expansion | @swift_type_parameter | @swift_type_parameter_modifiers | @swift_type_parameter_pack | @swift_type_parameters | @swift_typealias_declaration | @swift_user_type | @swift_value_argument | @swift_value_argument_label | @swift_value_arguments | @swift_value_binding_pattern | @swift_value_pack_expansion | @swift_value_parameter_pack | @swift_where_clause | @swift_while_statement | @swift_willset_clause | @swift_willset_didset_block +@swift_ast_node = @swift_additive_expression | @swift_array_literal | @swift_array_type | @swift_as_expression | @swift_assignment | @swift_associatedtype_declaration | @swift_attribute | @swift_availability_condition | @swift_await_expression | @swift_bitwise_operation | @swift_call_expression | @swift_call_suffix | @swift_capture_list | @swift_capture_list_item | @swift_catch_block | @swift_check_expression | @swift_class_body | @swift_class_declaration | @swift_comparison_expression | @swift_computed_getter | @swift_computed_modify | @swift_computed_property | @swift_computed_setter | @swift_conjunction_expression | @swift_constructor_expression | @swift_constructor_suffix | @swift_control_transfer_statement | @swift_deinit_declaration | @swift_deprecated_operator_declaration_body | @swift_dictionary_literal | @swift_dictionary_type | @swift_didset_clause | @swift_directive | @swift_directly_assignable_expression | @swift_disjunction_expression | @swift_do_statement | @swift_enum_class_body | @swift_enum_entry | @swift_enum_type_parameters | @swift_equality_constraint | @swift_equality_expression | @swift_existential_type | @swift_external_macro_definition | @swift_for_statement | @swift_function_body | @swift_function_declaration | @swift_function_type | @swift_getter_specifier | @swift_guard_statement | @swift_identifier | @swift_if_condition | @swift_if_statement | @swift_implicitly_unwrapped_type | @swift_import_declaration | @swift_infix_expression | @swift_inheritance_constraint | @swift_inheritance_specifier | @swift_init_declaration | @swift_interpolated_expression | @swift_key_path_expression | @swift_key_path_string_expression | @swift_lambda_function_type | @swift_lambda_function_type_parameters | @swift_lambda_literal | @swift_lambda_parameter | @swift_line_string_literal | @swift_macro_declaration | @swift_macro_definition | @swift_macro_invocation | @swift_metatype | @swift_modifiers | @swift_modify_specifier | @swift_multi_line_string_literal | @swift_multiplicative_expression | @swift_navigation_expression | @swift_navigation_suffix | @swift_nil_coalescing_expression | @swift_opaque_type | @swift_open_end_range_expression | @swift_open_start_range_expression | @swift_operator_declaration | @swift_optional_chain_marker | @swift_optional_type | @swift_parameter | @swift_parameter_modifiers | @swift_pattern | @swift_playground_literal | @swift_postfix_expression | @swift_precedence_group_attribute | @swift_precedence_group_attributes | @swift_precedence_group_declaration | @swift_prefix_expression | @swift_property_declaration | @swift_protocol_body | @swift_protocol_composition_type | @swift_protocol_declaration | @swift_protocol_function_declaration | @swift_protocol_property_declaration | @swift_protocol_property_requirements | @swift_range_expression | @swift_raw_str_interpolation | @swift_raw_string_literal | @swift_referenceable_operator | @swift_repeat_while_statement | @swift_selector_expression | @swift_setter_specifier | @swift_source_file | @swift_statements | @swift_subscript_declaration | @swift_suppressed_constraint | @swift_switch_entry | @swift_switch_pattern | @swift_switch_statement | @swift_ternary_expression | @swift_throws_clause | @swift_token | @swift_try_expression | @swift_tuple_expression | @swift_tuple_type | @swift_tuple_type_item | @swift_type_annotation | @swift_type_arguments | @swift_type_constraint | @swift_type_constraints | @swift_type_modifiers | @swift_type_pack_expansion | @swift_type_parameter | @swift_type_parameter_modifiers | @swift_type_parameter_pack | @swift_type_parameters | @swift_typealias_declaration | @swift_user_type | @swift_value_argument | @swift_value_argument_label | @swift_value_arguments | @swift_value_binding_pattern | @swift_value_pack_expansion | @swift_value_parameter_pack | @swift_where_clause | @swift_while_statement | @swift_willset_clause | @swift_willset_didset_block swift_ast_node_location( unique int node: @swift_ast_node ref, From 8b977ef8e15b9779bbfa5b27d6f123aebf9a64a3 Mon Sep 17 00:00:00 2001 From: Taus Date: Fri, 8 May 2026 16:07:12 +0000 Subject: [PATCH 249/260] unified: Get rid of some `"."` bleed Adds a new type `nested_type_identifier`, which contains the choice-branch that previously allowed those tokens to bleed through into the closest parent field. --- unified/extractor/tree-sitter-swift/grammar.js | 12 +++++------- unified/extractor/tree-sitter-swift/node-types.yml | 6 ++++-- 2 files changed, 9 insertions(+), 9 deletions(-) diff --git a/unified/extractor/tree-sitter-swift/grammar.js b/unified/extractor/tree-sitter-swift/grammar.js index 321ceb01363e..bfe4c9f6ddd4 100644 --- a/unified/extractor/tree-sitter-swift/grammar.js +++ b/unified/extractor/tree-sitter-swift/grammar.js @@ -1592,13 +1592,11 @@ module.exports = grammar({ choice($._equal_sign, $._eq_eq), field("must_equal", $._type) ), - _constrained_type: ($) => - choice( - $.identifier, - seq( - $.unannotated_type, - optional(seq(".", sep1($.simple_identifier, "."))) - ) + _constrained_type: ($) => choice($.identifier, $.nested_type_identifier), + nested_type_identifier: ($) => + seq( + $.unannotated_type, + optional(seq(".", sep1($.simple_identifier, "."))) ), _class_member_separator: ($) => choice($._semi, $.multiline_comment), _class_member_declarations: ($) => diff --git a/unified/extractor/tree-sitter-swift/node-types.yml b/unified/extractor/tree-sitter-swift/node-types.yml index b77df29133b7..60ee02abfbfc 100644 --- a/unified/extractor/tree-sitter-swift/node-types.yml +++ b/unified/extractor/tree-sitter-swift/node-types.yml @@ -203,7 +203,7 @@ named: name*: unannotated_type equality_constraint: $children*: attribute - constrained_type+: [".", identifier, simple_identifier, unannotated_type] + constrained_type: [identifier, nested_type_identifier] must_equal+: [type_modifiers, unannotated_type] name: unannotated_type equality_expression: @@ -259,7 +259,7 @@ named: rhs: expression inheritance_constraint: $children*: attribute - constrained_type+: [".", identifier, simple_identifier, unannotated_type] + constrained_type: [identifier, nested_type_identifier] inherits_from+: [implicitly_unwrapped_type, type_modifiers, unannotated_type] name?: unannotated_type inheritance_modifier: @@ -330,6 +330,8 @@ named: target+: ["(", ")", array_type, dictionary_type, existential_type, expression, opaque_type, user_type] navigation_suffix: suffix: [integer_literal, simple_identifier] + nested_type_identifier: + $children+: [simple_identifier, unannotated_type] nil_coalescing_expression: if_nil: expression value: expression From a720e258aca32e2d8783b7ffc860bbddf3f6715f Mon Sep 17 00:00:00 2001 From: Taus Date: Fri, 8 May 2026 16:07:21 +0000 Subject: [PATCH 250/260] unified: regenerate files --- unified/ql/lib/codeql/unified/Ast.qll | 30 ++++++++++++++-------- unified/ql/lib/unified.dbscheme | 37 ++++++++++++++------------- 2 files changed, 39 insertions(+), 28 deletions(-) diff --git a/unified/ql/lib/codeql/unified/Ast.qll b/unified/ql/lib/codeql/unified/Ast.qll index 8fd4e61ed323..b71c807a2abc 100644 --- a/unified/ql/lib/codeql/unified/Ast.qll +++ b/unified/ql/lib/codeql/unified/Ast.qll @@ -899,24 +899,22 @@ module Swift { final override string getAPrimaryQlClass() { result = "EqualityConstraint" } /** Gets the node corresponding to the field `constrained_type`. */ - final AstNode getConstrainedType(int i) { - swift_equality_constraint_constrained_type(this, i, result) - } + final AstNode getConstrainedType() { swift_equality_constraint_def(this, result, _) } /** Gets the node corresponding to the field `must_equal`. */ final AstNode getMustEqual(int i) { swift_equality_constraint_must_equal(this, i, result) } /** Gets the node corresponding to the field `name`. */ - final UnannotatedType getName() { swift_equality_constraint_def(this, result) } + final UnannotatedType getName() { swift_equality_constraint_def(this, _, result) } /** Gets the `i`th child of this node. */ final Attribute getChild(int i) { swift_equality_constraint_child(this, i, result) } /** Gets a field or child node of this node. */ final override AstNode getAFieldOrChild() { - swift_equality_constraint_constrained_type(this, _, result) or + swift_equality_constraint_def(this, result, _) or swift_equality_constraint_must_equal(this, _, result) or - swift_equality_constraint_def(this, result) or + swift_equality_constraint_def(this, _, result) or swift_equality_constraint_child(this, _, result) } } @@ -1229,9 +1227,7 @@ module Swift { final override string getAPrimaryQlClass() { result = "InheritanceConstraint" } /** Gets the node corresponding to the field `constrained_type`. */ - final AstNode getConstrainedType(int i) { - swift_inheritance_constraint_constrained_type(this, i, result) - } + final AstNode getConstrainedType() { swift_inheritance_constraint_def(this, result) } /** Gets the node corresponding to the field `inherits_from`. */ final AstNode getInheritsFrom(int i) { @@ -1246,7 +1242,7 @@ module Swift { /** Gets a field or child node of this node. */ final override AstNode getAFieldOrChild() { - swift_inheritance_constraint_constrained_type(this, _, result) or + swift_inheritance_constraint_def(this, result) or swift_inheritance_constraint_inherits_from(this, _, result) or swift_inheritance_constraint_name(this, result) or swift_inheritance_constraint_child(this, _, result) @@ -1661,6 +1657,20 @@ module Swift { final override AstNode getAFieldOrChild() { swift_navigation_suffix_def(this, result) } } + /** A class representing `nested_type_identifier` nodes. */ + class NestedTypeIdentifier extends @swift_nested_type_identifier, AstNode { + /** Gets the name of the primary QL class for this element. */ + final override string getAPrimaryQlClass() { result = "NestedTypeIdentifier" } + + /** Gets the `i`th child of this node. */ + final AstNode getChild(int i) { swift_nested_type_identifier_child(this, i, result) } + + /** Gets a field or child node of this node. */ + final override AstNode getAFieldOrChild() { + swift_nested_type_identifier_child(this, _, result) + } + } + /** A class representing `nil_coalescing_expression` nodes. */ class NilCoalescingExpression extends @swift_nil_coalescing_expression, AstNode { /** Gets the name of the primary QL class for this element. */ diff --git a/unified/ql/lib/unified.dbscheme b/unified/ql/lib/unified.dbscheme index 748a2dfc4a59..3b9cf0815d93 100644 --- a/unified/ql/lib/unified.dbscheme +++ b/unified/ql/lib/unified.dbscheme @@ -755,14 +755,7 @@ swift_enum_type_parameters_def( unique int id: @swift_enum_type_parameters ); -@swift_equality_constraint_constrained_type_type = @swift_identifier | @swift_reserved_word | @swift_token_simple_identifier | @swift_unannotated_type - -#keyset[swift_equality_constraint, index] -swift_equality_constraint_constrained_type( - int swift_equality_constraint: @swift_equality_constraint ref, - int index: int ref, - unique int constrained_type: @swift_equality_constraint_constrained_type_type ref -); +@swift_equality_constraint_constrained_type_type = @swift_identifier | @swift_nested_type_identifier @swift_equality_constraint_must_equal_type = @swift_type_modifiers | @swift_unannotated_type @@ -782,6 +775,7 @@ swift_equality_constraint_child( swift_equality_constraint_def( unique int id: @swift_equality_constraint, + int constrained_type: @swift_equality_constraint_constrained_type_type ref, int name: @swift_unannotated_type ref ); @@ -1014,14 +1008,7 @@ swift_infix_expression_def( int rhs: @swift_expression ref ); -@swift_inheritance_constraint_constrained_type_type = @swift_identifier | @swift_reserved_word | @swift_token_simple_identifier | @swift_unannotated_type - -#keyset[swift_inheritance_constraint, index] -swift_inheritance_constraint_constrained_type( - int swift_inheritance_constraint: @swift_inheritance_constraint ref, - int index: int ref, - unique int constrained_type: @swift_inheritance_constraint_constrained_type_type ref -); +@swift_inheritance_constraint_constrained_type_type = @swift_identifier | @swift_nested_type_identifier @swift_inheritance_constraint_inherits_from_type = @swift_implicitly_unwrapped_type | @swift_type_modifiers | @swift_unannotated_type @@ -1045,7 +1032,8 @@ swift_inheritance_constraint_child( ); swift_inheritance_constraint_def( - unique int id: @swift_inheritance_constraint + unique int id: @swift_inheritance_constraint, + int constrained_type: @swift_inheritance_constraint_constrained_type_type ref ); @swift_inheritance_specifier_inherits_from_type = @swift_function_type | @swift_suppressed_constraint | @swift_user_type @@ -1379,6 +1367,19 @@ swift_navigation_suffix_def( int suffix: @swift_navigation_suffix_suffix_type ref ); +@swift_nested_type_identifier_child_type = @swift_token_simple_identifier | @swift_unannotated_type + +#keyset[swift_nested_type_identifier, index] +swift_nested_type_identifier_child( + int swift_nested_type_identifier: @swift_nested_type_identifier ref, + int index: int ref, + unique int child: @swift_nested_type_identifier_child_type ref +); + +swift_nested_type_identifier_def( + unique int id: @swift_nested_type_identifier +); + swift_nil_coalescing_expression_def( unique int id: @swift_nil_coalescing_expression, int if_nil: @swift_expression ref, @@ -2323,7 +2324,7 @@ case @swift_token.kind of ; -@swift_ast_node = @swift_additive_expression | @swift_array_literal | @swift_array_type | @swift_as_expression | @swift_assignment | @swift_associatedtype_declaration | @swift_attribute | @swift_availability_condition | @swift_await_expression | @swift_bitwise_operation | @swift_call_expression | @swift_call_suffix | @swift_capture_list | @swift_capture_list_item | @swift_catch_block | @swift_check_expression | @swift_class_body | @swift_class_declaration | @swift_comparison_expression | @swift_computed_getter | @swift_computed_modify | @swift_computed_property | @swift_computed_setter | @swift_conjunction_expression | @swift_constructor_expression | @swift_constructor_suffix | @swift_control_transfer_statement | @swift_deinit_declaration | @swift_deprecated_operator_declaration_body | @swift_dictionary_literal | @swift_dictionary_type | @swift_didset_clause | @swift_directive | @swift_directly_assignable_expression | @swift_disjunction_expression | @swift_do_statement | @swift_enum_class_body | @swift_enum_entry | @swift_enum_type_parameters | @swift_equality_constraint | @swift_equality_expression | @swift_existential_type | @swift_external_macro_definition | @swift_for_statement | @swift_function_body | @swift_function_declaration | @swift_function_type | @swift_getter_specifier | @swift_guard_statement | @swift_identifier | @swift_if_condition | @swift_if_statement | @swift_implicitly_unwrapped_type | @swift_import_declaration | @swift_infix_expression | @swift_inheritance_constraint | @swift_inheritance_specifier | @swift_init_declaration | @swift_interpolated_expression | @swift_key_path_expression | @swift_key_path_string_expression | @swift_lambda_function_type | @swift_lambda_function_type_parameters | @swift_lambda_literal | @swift_lambda_parameter | @swift_line_string_literal | @swift_macro_declaration | @swift_macro_definition | @swift_macro_invocation | @swift_metatype | @swift_modifiers | @swift_modify_specifier | @swift_multi_line_string_literal | @swift_multiplicative_expression | @swift_navigation_expression | @swift_navigation_suffix | @swift_nil_coalescing_expression | @swift_opaque_type | @swift_open_end_range_expression | @swift_open_start_range_expression | @swift_operator_declaration | @swift_optional_chain_marker | @swift_optional_type | @swift_parameter | @swift_parameter_modifiers | @swift_pattern | @swift_playground_literal | @swift_postfix_expression | @swift_precedence_group_attribute | @swift_precedence_group_attributes | @swift_precedence_group_declaration | @swift_prefix_expression | @swift_property_declaration | @swift_protocol_body | @swift_protocol_composition_type | @swift_protocol_declaration | @swift_protocol_function_declaration | @swift_protocol_property_declaration | @swift_protocol_property_requirements | @swift_range_expression | @swift_raw_str_interpolation | @swift_raw_string_literal | @swift_referenceable_operator | @swift_repeat_while_statement | @swift_selector_expression | @swift_setter_specifier | @swift_source_file | @swift_statements | @swift_subscript_declaration | @swift_suppressed_constraint | @swift_switch_entry | @swift_switch_pattern | @swift_switch_statement | @swift_ternary_expression | @swift_throws_clause | @swift_token | @swift_try_expression | @swift_tuple_expression | @swift_tuple_type | @swift_tuple_type_item | @swift_type_annotation | @swift_type_arguments | @swift_type_constraint | @swift_type_constraints | @swift_type_modifiers | @swift_type_pack_expansion | @swift_type_parameter | @swift_type_parameter_modifiers | @swift_type_parameter_pack | @swift_type_parameters | @swift_typealias_declaration | @swift_user_type | @swift_value_argument | @swift_value_argument_label | @swift_value_arguments | @swift_value_binding_pattern | @swift_value_pack_expansion | @swift_value_parameter_pack | @swift_where_clause | @swift_while_statement | @swift_willset_clause | @swift_willset_didset_block +@swift_ast_node = @swift_additive_expression | @swift_array_literal | @swift_array_type | @swift_as_expression | @swift_assignment | @swift_associatedtype_declaration | @swift_attribute | @swift_availability_condition | @swift_await_expression | @swift_bitwise_operation | @swift_call_expression | @swift_call_suffix | @swift_capture_list | @swift_capture_list_item | @swift_catch_block | @swift_check_expression | @swift_class_body | @swift_class_declaration | @swift_comparison_expression | @swift_computed_getter | @swift_computed_modify | @swift_computed_property | @swift_computed_setter | @swift_conjunction_expression | @swift_constructor_expression | @swift_constructor_suffix | @swift_control_transfer_statement | @swift_deinit_declaration | @swift_deprecated_operator_declaration_body | @swift_dictionary_literal | @swift_dictionary_type | @swift_didset_clause | @swift_directive | @swift_directly_assignable_expression | @swift_disjunction_expression | @swift_do_statement | @swift_enum_class_body | @swift_enum_entry | @swift_enum_type_parameters | @swift_equality_constraint | @swift_equality_expression | @swift_existential_type | @swift_external_macro_definition | @swift_for_statement | @swift_function_body | @swift_function_declaration | @swift_function_type | @swift_getter_specifier | @swift_guard_statement | @swift_identifier | @swift_if_condition | @swift_if_statement | @swift_implicitly_unwrapped_type | @swift_import_declaration | @swift_infix_expression | @swift_inheritance_constraint | @swift_inheritance_specifier | @swift_init_declaration | @swift_interpolated_expression | @swift_key_path_expression | @swift_key_path_string_expression | @swift_lambda_function_type | @swift_lambda_function_type_parameters | @swift_lambda_literal | @swift_lambda_parameter | @swift_line_string_literal | @swift_macro_declaration | @swift_macro_definition | @swift_macro_invocation | @swift_metatype | @swift_modifiers | @swift_modify_specifier | @swift_multi_line_string_literal | @swift_multiplicative_expression | @swift_navigation_expression | @swift_navigation_suffix | @swift_nested_type_identifier | @swift_nil_coalescing_expression | @swift_opaque_type | @swift_open_end_range_expression | @swift_open_start_range_expression | @swift_operator_declaration | @swift_optional_chain_marker | @swift_optional_type | @swift_parameter | @swift_parameter_modifiers | @swift_pattern | @swift_playground_literal | @swift_postfix_expression | @swift_precedence_group_attribute | @swift_precedence_group_attributes | @swift_precedence_group_declaration | @swift_prefix_expression | @swift_property_declaration | @swift_protocol_body | @swift_protocol_composition_type | @swift_protocol_declaration | @swift_protocol_function_declaration | @swift_protocol_property_declaration | @swift_protocol_property_requirements | @swift_range_expression | @swift_raw_str_interpolation | @swift_raw_string_literal | @swift_referenceable_operator | @swift_repeat_while_statement | @swift_selector_expression | @swift_setter_specifier | @swift_source_file | @swift_statements | @swift_subscript_declaration | @swift_suppressed_constraint | @swift_switch_entry | @swift_switch_pattern | @swift_switch_statement | @swift_ternary_expression | @swift_throws_clause | @swift_token | @swift_try_expression | @swift_tuple_expression | @swift_tuple_type | @swift_tuple_type_item | @swift_type_annotation | @swift_type_arguments | @swift_type_constraint | @swift_type_constraints | @swift_type_modifiers | @swift_type_pack_expansion | @swift_type_parameter | @swift_type_parameter_modifiers | @swift_type_parameter_pack | @swift_type_parameters | @swift_typealias_declaration | @swift_user_type | @swift_value_argument | @swift_value_argument_label | @swift_value_arguments | @swift_value_binding_pattern | @swift_value_pack_expansion | @swift_value_parameter_pack | @swift_where_clause | @swift_while_statement | @swift_willset_clause | @swift_willset_didset_block swift_ast_node_location( unique int node: @swift_ast_node ref, From 994b27bdbd8cceb54cf044499917867f7e340f22 Mon Sep 17 00:00:00 2001 From: Taus Date: Fri, 8 May 2026 19:19:30 +0000 Subject: [PATCH 251/260] unified: convert _type into a named rule Because `_type` was anonymous, its body was inlined in all of the places it appeared. Because this body contained a `name` field, this field was _also_ inlined. This caused a bunch of nodes to have spurious `name` fields, and for some of them (that already had such a field) it caused that field have multiplicity greater than one. To fix this, we make the `_type` node named, which prevents the errant field from escaping. --- .../extractor/tree-sitter-swift/grammar.js | 38 ++++----- .../tree-sitter-swift/node-types.yml | 83 ++++++++----------- 2 files changed, 54 insertions(+), 67 deletions(-) diff --git a/unified/extractor/tree-sitter-swift/grammar.js b/unified/extractor/tree-sitter-swift/grammar.js index bfe4c9f6ddd4..51a680e05a1e 100644 --- a/unified/extractor/tree-sitter-swift/grammar.js +++ b/unified/extractor/tree-sitter-swift/grammar.js @@ -401,13 +401,13 @@ module.exports = grammar({ type_annotation: ($) => seq(":", field("type", $._possibly_implicitly_unwrapped_type)), _possibly_implicitly_unwrapped_type: ($) => - choice($._type, $.implicitly_unwrapped_type), + choice($.type, $.implicitly_unwrapped_type), implicitly_unwrapped_type: ($) => - seq($._type, token.immediate("!")), - _type: ($) => + seq($.type, token.immediate("!")), + type: ($) => prec.right( PRECS.ty, - seq(optional($.type_modifiers), field("name", $.unannotated_type)) + seq(field("modifiers", optional($.type_modifiers)), field("name", $.unannotated_type)) ), unannotated_type: ($) => prec.right( @@ -453,7 +453,7 @@ module.exports = grammar({ seq( optional($._tuple_type_item_identifier), optional($.parameter_modifiers), - field("type", $._type) + field("type", $.type) ) ), _tuple_type_item_identifier: ($) => @@ -471,11 +471,11 @@ module.exports = grammar({ optional($._async_keyword), optional(choice($.throws_clause, $.throws)), $._arrow_operator, - field("return_type", $._type) + field("return_type", $.type) ), - array_type: ($) => seq("[", field("element", $._type), "]"), + array_type: ($) => seq("[", field("element", $.type), "]"), dictionary_type: ($) => - seq("[", field("key", $._type), ":", field("value", $._type), "]"), + seq("[", field("key", $.type), ":", field("value", $.type), "]"), optional_type: ($) => prec.left( seq( @@ -622,7 +622,7 @@ module.exports = grammar({ as_expression: ($) => prec.left( PRECS.as, - seq(field("expr", $.expression), $.as_operator, field("type", $._type)) + seq(field("expr", $.expression), $.as_operator, field("type", $.type)) ), selector_expression: ($) => seq( @@ -699,7 +699,7 @@ module.exports = grammar({ seq( field("target", $.expression), field("op", $._is_operator), - field("type", $._type) + field("type", $.type) ) ), comparison_expression: ($) => @@ -777,7 +777,7 @@ module.exports = grammar({ seq("(", optional(sep1Opt($.value_argument, ",")), ")"), _fn_call_lambda_arguments: ($) => sep1($.lambda_literal, seq(field("name", $.simple_identifier), ":")), - type_arguments: ($) => prec.left(seq("<", sep1Opt($._type, ","), ">")), + type_arguments: ($) => prec.left(seq("<", sep1Opt($.type, ","), ">")), value_arguments: ($) => seq( choice( @@ -1450,7 +1450,7 @@ module.exports = grammar({ field("name", alias($.simple_identifier, $.type_identifier)), optional($.type_parameters), $._equal_sign, - field("value", $._type) + field("value", $.type) ), function_declaration: ($) => prec.right( @@ -1566,7 +1566,7 @@ module.exports = grammar({ seq( optional($.type_parameter_modifiers), $._type_parameter_possibly_packed, - optional(seq(":", $._type)) + optional(seq(":", $.type)) ), _type_parameter_possibly_packed: ($) => choice( @@ -1590,7 +1590,7 @@ module.exports = grammar({ repeat($.attribute), field("constrained_type", $._constrained_type), choice($._equal_sign, $._eq_eq), - field("must_equal", $._type) + field("must_equal", $.type) ), _constrained_type: ($) => choice($.identifier, $.nested_type_identifier), nested_type_identifier: ($) => @@ -1698,7 +1698,7 @@ module.exports = grammar({ optional( seq(optional($.wildcard_pattern), $.simple_identifier, ":") ), - $._type, + $.type, optional(seq($._equal_sign, $.expression)) ), "," @@ -1833,9 +1833,9 @@ module.exports = grammar({ optional($.modifiers), "associatedtype", field("name", alias($.simple_identifier, $.type_identifier)), - optional(seq(":", field("must_inherit", $._type))), + optional(seq(":", field("must_inherit", $.type))), optional($.type_constraints), - optional(seq($._equal_sign, field("default_value", $._type))) + optional(seq($._equal_sign, field("default_value", $.type))) ), //////////////////////////////// // Attributes - https://docs.swift.org/swift-book/ReferenceManual/Attributes.html @@ -1934,8 +1934,8 @@ module.exports = grammar({ ), _type_casting_pattern: ($) => choice( - seq("is", $._type), - seq(alias($._binding_pattern_no_expr, $.pattern), $._as, $._type) + seq("is", $.type), + seq(alias($._binding_pattern_no_expr, $.pattern), $._as, $.type) ), _binding_pattern: ($) => seq( diff --git a/unified/extractor/tree-sitter-swift/node-types.yml b/unified/extractor/tree-sitter-swift/node-types.yml index 60ee02abfbfc..5c4098db84f0 100644 --- a/unified/extractor/tree-sitter-swift/node-types.yml +++ b/unified/extractor/tree-sitter-swift/node-types.yml @@ -79,13 +79,11 @@ named: array_literal: element*: expression array_type: - element+: [type_modifiers, unannotated_type] - name: unannotated_type + element: type as_expression: $children: as_operator expr: expression - name: unannotated_type - type+: [type_modifiers, unannotated_type] + type: type as_operator: assignment: operator: ["%=", "*=", "+=", "-=", "/=", "="] @@ -93,9 +91,9 @@ named: target: directly_assignable_expression associatedtype_declaration: $children*: [modifiers, type_constraints] - default_value*: [type_modifiers, unannotated_type] - must_inherit*: [type_modifiers, unannotated_type] - name+: [type_identifier, unannotated_type] + default_value?: type + must_inherit?: type + name: type_identifier attribute: $children+: [expression, user_type] availability_condition: @@ -126,10 +124,9 @@ named: error?: pattern catch_keyword: check_expression: - name: unannotated_type op: "is" target: expression - type+: [type_modifiers, unannotated_type] + type: type class_body: $children*: [associatedtype_declaration, class_declaration, deinit_declaration, function_declaration, import_declaration, init_declaration, multiline_comment, operator_declaration, precedence_group_declaration, property_declaration, protocol_declaration, subscript_declaration, typealias_declaration] class_declaration: @@ -175,9 +172,8 @@ named: key*: expression value*: expression dictionary_type: - key+: [type_modifiers, unannotated_type] - name+: unannotated_type - value+: [type_modifiers, unannotated_type] + key: type + value: type didset_clause: $children*: [modifiers, simple_identifier, statements] directive: @@ -199,13 +195,11 @@ named: name+: simple_identifier raw_value*: expression enum_type_parameters: - $children*: [expression, type_modifiers, wildcard_pattern] - name*: unannotated_type + $children*: [expression, type, wildcard_pattern] equality_constraint: $children*: attribute constrained_type: [identifier, nested_type_identifier] - must_equal+: [type_modifiers, unannotated_type] - name: unannotated_type + must_equal: type equality_expression: lhs: expression op: ["!=", "!==", "==", "==="] @@ -225,14 +219,13 @@ named: $children*: [attribute, inheritance_modifier, modifiers, ownership_modifier, parameter, property_behavior_modifier, throws, throws_clause, type_constraints, type_parameters] body: function_body default_value*: expression - name+: [referenceable_operator, simple_identifier, unannotated_type] - return_type*: [implicitly_unwrapped_type, type_modifiers, unannotated_type] + name: [referenceable_operator, simple_identifier] + return_type?: [implicitly_unwrapped_type, type] function_modifier: function_type: $children?: [throws, throws_clause] - name: unannotated_type params: unannotated_type - return_type+: [type_modifiers, unannotated_type] + return_type: type getter_specifier: $children*: [mutation_modifier, throws, throws_clause] guard_statement: @@ -242,15 +235,13 @@ named: identifier: $children+: simple_identifier if_condition: - $children*: [availability_condition, expression, pattern, type_annotation, type_modifiers, user_type, value_binding_pattern, where_clause, wildcard_pattern] + $children*: [availability_condition, expression, pattern, type, type_annotation, user_type, value_binding_pattern, where_clause, wildcard_pattern] bound_identifier?: simple_identifier - name?: unannotated_type if_statement: $children*: [else, if_statement, statements] condition+: if_condition implicitly_unwrapped_type: - $children?: type_modifiers - name: unannotated_type + $children: type import_declaration: $children+: [identifier, modifiers] infix_expression: @@ -260,8 +251,7 @@ named: inheritance_constraint: $children*: attribute constrained_type: [identifier, nested_type_identifier] - inherits_from+: [implicitly_unwrapped_type, type_modifiers, unannotated_type] - name?: unannotated_type + inherits_from: [implicitly_unwrapped_type, type] inheritance_modifier: inheritance_specifier: inherits_from: [function_type, suppressed_constraint, user_type] @@ -282,8 +272,7 @@ named: $children: expression lambda_function_type: $children*: [lambda_function_type_parameters, throws, throws_clause] - name?: unannotated_type - return_type*: [implicitly_unwrapped_type, type_modifiers, unannotated_type] + return_type?: [implicitly_unwrapped_type, type] lambda_function_type_parameters: $children+: lambda_parameter lambda_literal: @@ -293,8 +282,8 @@ named: lambda_parameter: $children?: [parameter_modifiers, self_expression] external_name?: simple_identifier - name*: [simple_identifier, unannotated_type] - type*: [implicitly_unwrapped_type, type_modifiers, unannotated_type] + name?: simple_identifier + type?: [implicitly_unwrapped_type, type] line_str_text: line_string_literal: interpolation*: interpolated_expression @@ -352,15 +341,14 @@ named: parameter: $children?: parameter_modifiers external_name?: simple_identifier - name+: [simple_identifier, unannotated_type] - type+: [implicitly_unwrapped_type, type_modifiers, unannotated_type] + name: simple_identifier + type: [implicitly_unwrapped_type, type] parameter_modifier: parameter_modifiers: $children+: parameter_modifier pattern: - $children*: [expression, pattern, type_modifiers, user_type, value_binding_pattern, wildcard_pattern] + $children*: [expression, pattern, type, user_type, value_binding_pattern, wildcard_pattern] bound_identifier?: simple_identifier - name?: unannotated_type playground_literal: $children+: expression postfix_expression: @@ -395,8 +383,8 @@ named: protocol_function_declaration: $children*: [attribute, modifiers, parameter, statements, throws, throws_clause, type_constraints, type_parameters] default_value*: expression - name*: [referenceable_operator, simple_identifier, unannotated_type] - return_type*: [implicitly_unwrapped_type, type_modifiers, unannotated_type] + name?: [referenceable_operator, simple_identifier] + return_type?: [implicitly_unwrapped_type, type] protocol_property_declaration: $children+: [modifiers, protocol_property_requirements, type_annotation, type_constraints] name: pattern @@ -441,8 +429,7 @@ named: subscript_declaration: $children+: [attribute, computed_property, modifiers, parameter, type_constraints, type_parameters] default_value*: expression - name?: unannotated_type - return_type*: [implicitly_unwrapped_type, type_modifiers, unannotated_type] + return_type?: [implicitly_unwrapped_type, type] super_expression: suppressed_constraint: suppressed: type_identifier @@ -474,14 +461,15 @@ named: tuple_type_item: $children*: [parameter_modifiers, wildcard_pattern] element?: [dictionary_type, existential_type, opaque_type] - name*: [simple_identifier, unannotated_type] - type*: [type_modifiers, unannotated_type] + name?: simple_identifier + type?: type + type: + modifiers?: type_modifiers + name: unannotated_type type_annotation: - name?: unannotated_type - type+: [implicitly_unwrapped_type, type_modifiers, unannotated_type] + type: [implicitly_unwrapped_type, type] type_arguments: - $children*: type_modifiers - name+: unannotated_type + $children+: type type_constraint: $children: [equality_constraint, inheritance_constraint] type_constraints: @@ -492,8 +480,7 @@ named: type_pack_expansion: $children: unannotated_type type_parameter: - $children+: [type_identifier, type_modifiers, type_parameter_modifiers, type_parameter_pack] - name?: unannotated_type + $children+: [type, type_identifier, type_parameter_modifiers, type_parameter_pack] type_parameter_modifiers: $children+: attribute type_parameter_pack: @@ -502,8 +489,8 @@ named: $children+: [type_constraints, type_parameter] typealias_declaration: $children*: [attribute, inheritance_modifier, modifiers, ownership_modifier, property_behavior_modifier, type_parameters] - name+: [type_identifier, unannotated_type] - value+: [type_modifiers, unannotated_type] + name: type_identifier + value: type user_type: $children+: [type_arguments, type_identifier] value_argument: From e9822f67ee149169782eb0ddb315d06b9d8bdd77 Mon Sep 17 00:00:00 2001 From: Taus Date: Fri, 8 May 2026 19:19:37 +0000 Subject: [PATCH 252/260] unified: regenerate files --- unified/ql/lib/codeql/unified/Ast.qll | 228 +++++++----------- unified/ql/lib/unified.dbscheme | 328 +++++--------------------- 2 files changed, 145 insertions(+), 411 deletions(-) diff --git a/unified/ql/lib/codeql/unified/Ast.qll b/unified/ql/lib/codeql/unified/Ast.qll index b71c807a2abc..201c0eac24eb 100644 --- a/unified/ql/lib/codeql/unified/Ast.qll +++ b/unified/ql/lib/codeql/unified/Ast.qll @@ -132,15 +132,10 @@ module Swift { final override string getAPrimaryQlClass() { result = "ArrayType" } /** Gets the node corresponding to the field `element`. */ - final AstNode getElement(int i) { swift_array_type_element(this, i, result) } - - /** Gets the node corresponding to the field `name`. */ - final UnannotatedType getName() { swift_array_type_def(this, result) } + final Type getElement() { swift_array_type_def(this, result) } /** Gets a field or child node of this node. */ - final override AstNode getAFieldOrChild() { - swift_array_type_element(this, _, result) or swift_array_type_def(this, result) - } + final override AstNode getAFieldOrChild() { swift_array_type_def(this, result) } } /** A class representing `as_expression` nodes. */ @@ -151,11 +146,8 @@ module Swift { /** Gets the node corresponding to the field `expr`. */ final Expression getExpr() { swift_as_expression_def(this, result, _, _) } - /** Gets the node corresponding to the field `name`. */ - final UnannotatedType getName() { swift_as_expression_def(this, _, result, _) } - /** Gets the node corresponding to the field `type`. */ - final AstNode getType(int i) { swift_as_expression_type(this, i, result) } + final Type getType() { swift_as_expression_def(this, _, result, _) } /** Gets the child of this node. */ final AsOperator getChild() { swift_as_expression_def(this, _, _, result) } @@ -164,7 +156,6 @@ module Swift { final override AstNode getAFieldOrChild() { swift_as_expression_def(this, result, _, _) or swift_as_expression_def(this, _, result, _) or - swift_as_expression_type(this, _, result) or swift_as_expression_def(this, _, _, result) } } @@ -215,26 +206,22 @@ module Swift { final override string getAPrimaryQlClass() { result = "AssociatedtypeDeclaration" } /** Gets the node corresponding to the field `default_value`. */ - final AstNode getDefaultValue(int i) { - swift_associatedtype_declaration_default_value(this, i, result) - } + final Type getDefaultValue() { swift_associatedtype_declaration_default_value(this, result) } /** Gets the node corresponding to the field `must_inherit`. */ - final AstNode getMustInherit(int i) { - swift_associatedtype_declaration_must_inherit(this, i, result) - } + final Type getMustInherit() { swift_associatedtype_declaration_must_inherit(this, result) } /** Gets the node corresponding to the field `name`. */ - final AstNode getName(int i) { swift_associatedtype_declaration_name(this, i, result) } + final TypeIdentifier getName() { swift_associatedtype_declaration_def(this, result) } /** Gets the `i`th child of this node. */ final AstNode getChild(int i) { swift_associatedtype_declaration_child(this, i, result) } /** Gets a field or child node of this node. */ final override AstNode getAFieldOrChild() { - swift_associatedtype_declaration_default_value(this, _, result) or - swift_associatedtype_declaration_must_inherit(this, _, result) or - swift_associatedtype_declaration_name(this, _, result) or + swift_associatedtype_declaration_default_value(this, result) or + swift_associatedtype_declaration_must_inherit(this, result) or + swift_associatedtype_declaration_def(this, result) or swift_associatedtype_declaration_child(this, _, result) } } @@ -424,27 +411,23 @@ module Swift { /** Gets the name of the primary QL class for this element. */ final override string getAPrimaryQlClass() { result = "CheckExpression" } - /** Gets the node corresponding to the field `name`. */ - final UnannotatedType getName() { swift_check_expression_def(this, result, _, _) } - /** Gets the node corresponding to the field `op`. */ final string getOp() { - exists(int value | swift_check_expression_def(this, _, value, _) | + exists(int value | swift_check_expression_def(this, value, _, _) | (result = "is" and value = 0) ) } /** Gets the node corresponding to the field `target`. */ - final Expression getTarget() { swift_check_expression_def(this, _, _, result) } + final Expression getTarget() { swift_check_expression_def(this, _, result, _) } /** Gets the node corresponding to the field `type`. */ - final AstNode getType(int i) { swift_check_expression_type(this, i, result) } + final Type getType() { swift_check_expression_def(this, _, _, result) } /** Gets a field or child node of this node. */ final override AstNode getAFieldOrChild() { - swift_check_expression_def(this, result, _, _) or - swift_check_expression_def(this, _, _, result) or - swift_check_expression_type(this, _, result) + swift_check_expression_def(this, _, result, _) or + swift_check_expression_def(this, _, _, result) } } @@ -738,19 +721,14 @@ module Swift { final override string getAPrimaryQlClass() { result = "DictionaryType" } /** Gets the node corresponding to the field `key`. */ - final AstNode getKey(int i) { swift_dictionary_type_key(this, i, result) } - - /** Gets the node corresponding to the field `name`. */ - final UnannotatedType getName(int i) { swift_dictionary_type_name(this, i, result) } + final Type getKey() { swift_dictionary_type_def(this, result, _) } /** Gets the node corresponding to the field `value`. */ - final AstNode getValue(int i) { swift_dictionary_type_value(this, i, result) } + final Type getValue() { swift_dictionary_type_def(this, _, result) } /** Gets a field or child node of this node. */ final override AstNode getAFieldOrChild() { - swift_dictionary_type_key(this, _, result) or - swift_dictionary_type_name(this, _, result) or - swift_dictionary_type_value(this, _, result) + swift_dictionary_type_def(this, result, _) or swift_dictionary_type_def(this, _, result) } } @@ -880,17 +858,11 @@ module Swift { /** Gets the name of the primary QL class for this element. */ final override string getAPrimaryQlClass() { result = "EnumTypeParameters" } - /** Gets the node corresponding to the field `name`. */ - final UnannotatedType getName(int i) { swift_enum_type_parameters_name(this, i, result) } - /** Gets the `i`th child of this node. */ final AstNode getChild(int i) { swift_enum_type_parameters_child(this, i, result) } /** Gets a field or child node of this node. */ - final override AstNode getAFieldOrChild() { - swift_enum_type_parameters_name(this, _, result) or - swift_enum_type_parameters_child(this, _, result) - } + final override AstNode getAFieldOrChild() { swift_enum_type_parameters_child(this, _, result) } } /** A class representing `equality_constraint` nodes. */ @@ -902,10 +874,7 @@ module Swift { final AstNode getConstrainedType() { swift_equality_constraint_def(this, result, _) } /** Gets the node corresponding to the field `must_equal`. */ - final AstNode getMustEqual(int i) { swift_equality_constraint_must_equal(this, i, result) } - - /** Gets the node corresponding to the field `name`. */ - final UnannotatedType getName() { swift_equality_constraint_def(this, _, result) } + final Type getMustEqual() { swift_equality_constraint_def(this, _, result) } /** Gets the `i`th child of this node. */ final Attribute getChild(int i) { swift_equality_constraint_child(this, i, result) } @@ -913,7 +882,6 @@ module Swift { /** Gets a field or child node of this node. */ final override AstNode getAFieldOrChild() { swift_equality_constraint_def(this, result, _) or - swift_equality_constraint_must_equal(this, _, result) or swift_equality_constraint_def(this, _, result) or swift_equality_constraint_child(this, _, result) } @@ -1022,7 +990,7 @@ module Swift { final override string getAPrimaryQlClass() { result = "FunctionDeclaration" } /** Gets the node corresponding to the field `body`. */ - final FunctionBody getBody() { swift_function_declaration_def(this, result) } + final FunctionBody getBody() { swift_function_declaration_def(this, result, _) } /** Gets the node corresponding to the field `default_value`. */ final Expression getDefaultValue(int i) { @@ -1030,20 +998,20 @@ module Swift { } /** Gets the node corresponding to the field `name`. */ - final AstNode getName(int i) { swift_function_declaration_name(this, i, result) } + final AstNode getName() { swift_function_declaration_def(this, _, result) } /** Gets the node corresponding to the field `return_type`. */ - final AstNode getReturnType(int i) { swift_function_declaration_return_type(this, i, result) } + final AstNode getReturnType() { swift_function_declaration_return_type(this, result) } /** Gets the `i`th child of this node. */ final AstNode getChild(int i) { swift_function_declaration_child(this, i, result) } /** Gets a field or child node of this node. */ final override AstNode getAFieldOrChild() { - swift_function_declaration_def(this, result) or + swift_function_declaration_def(this, result, _) or swift_function_declaration_default_value(this, _, result) or - swift_function_declaration_name(this, _, result) or - swift_function_declaration_return_type(this, _, result) or + swift_function_declaration_def(this, _, result) or + swift_function_declaration_return_type(this, result) or swift_function_declaration_child(this, _, result) } } @@ -1059,14 +1027,11 @@ module Swift { /** Gets the name of the primary QL class for this element. */ final override string getAPrimaryQlClass() { result = "FunctionType" } - /** Gets the node corresponding to the field `name`. */ - final UnannotatedType getName() { swift_function_type_def(this, result, _) } - /** Gets the node corresponding to the field `params`. */ - final UnannotatedType getParams() { swift_function_type_def(this, _, result) } + final UnannotatedType getParams() { swift_function_type_def(this, result, _) } /** Gets the node corresponding to the field `return_type`. */ - final AstNode getReturnType(int i) { swift_function_type_return_type(this, i, result) } + final Type getReturnType() { swift_function_type_def(this, _, result) } /** Gets the child of this node. */ final AstNode getChild() { swift_function_type_child(this, result) } @@ -1075,7 +1040,6 @@ module Swift { final override AstNode getAFieldOrChild() { swift_function_type_def(this, result, _) or swift_function_type_def(this, _, result) or - swift_function_type_return_type(this, _, result) or swift_function_type_child(this, result) } } @@ -1138,17 +1102,12 @@ module Swift { swift_if_condition_bound_identifier(this, result) } - /** Gets the node corresponding to the field `name`. */ - final UnannotatedType getName() { swift_if_condition_name(this, result) } - /** Gets the `i`th child of this node. */ final AstNode getChild(int i) { swift_if_condition_child(this, i, result) } /** Gets a field or child node of this node. */ final override AstNode getAFieldOrChild() { - swift_if_condition_bound_identifier(this, result) or - swift_if_condition_name(this, result) or - swift_if_condition_child(this, _, result) + swift_if_condition_bound_identifier(this, result) or swift_if_condition_child(this, _, result) } } @@ -1174,17 +1133,11 @@ module Swift { /** Gets the name of the primary QL class for this element. */ final override string getAPrimaryQlClass() { result = "ImplicitlyUnwrappedType" } - /** Gets the node corresponding to the field `name`. */ - final UnannotatedType getName() { swift_implicitly_unwrapped_type_def(this, result) } - /** Gets the child of this node. */ - final TypeModifiers getChild() { swift_implicitly_unwrapped_type_child(this, result) } + final Type getChild() { swift_implicitly_unwrapped_type_def(this, result) } /** Gets a field or child node of this node. */ - final override AstNode getAFieldOrChild() { - swift_implicitly_unwrapped_type_def(this, result) or - swift_implicitly_unwrapped_type_child(this, result) - } + final override AstNode getAFieldOrChild() { swift_implicitly_unwrapped_type_def(this, result) } } /** A class representing `import_declaration` nodes. */ @@ -1227,24 +1180,18 @@ module Swift { final override string getAPrimaryQlClass() { result = "InheritanceConstraint" } /** Gets the node corresponding to the field `constrained_type`. */ - final AstNode getConstrainedType() { swift_inheritance_constraint_def(this, result) } + final AstNode getConstrainedType() { swift_inheritance_constraint_def(this, result, _) } /** Gets the node corresponding to the field `inherits_from`. */ - final AstNode getInheritsFrom(int i) { - swift_inheritance_constraint_inherits_from(this, i, result) - } - - /** Gets the node corresponding to the field `name`. */ - final UnannotatedType getName() { swift_inheritance_constraint_name(this, result) } + final AstNode getInheritsFrom() { swift_inheritance_constraint_def(this, _, result) } /** Gets the `i`th child of this node. */ final Attribute getChild(int i) { swift_inheritance_constraint_child(this, i, result) } /** Gets a field or child node of this node. */ final override AstNode getAFieldOrChild() { - swift_inheritance_constraint_def(this, result) or - swift_inheritance_constraint_inherits_from(this, _, result) or - swift_inheritance_constraint_name(this, result) or + swift_inheritance_constraint_def(this, result, _) or + swift_inheritance_constraint_def(this, _, result) or swift_inheritance_constraint_child(this, _, result) } } @@ -1359,19 +1306,15 @@ module Swift { /** Gets the name of the primary QL class for this element. */ final override string getAPrimaryQlClass() { result = "LambdaFunctionType" } - /** Gets the node corresponding to the field `name`. */ - final UnannotatedType getName() { swift_lambda_function_type_name(this, result) } - /** Gets the node corresponding to the field `return_type`. */ - final AstNode getReturnType(int i) { swift_lambda_function_type_return_type(this, i, result) } + final AstNode getReturnType() { swift_lambda_function_type_return_type(this, result) } /** Gets the `i`th child of this node. */ final AstNode getChild(int i) { swift_lambda_function_type_child(this, i, result) } /** Gets a field or child node of this node. */ final override AstNode getAFieldOrChild() { - swift_lambda_function_type_name(this, result) or - swift_lambda_function_type_return_type(this, _, result) or + swift_lambda_function_type_return_type(this, result) or swift_lambda_function_type_child(this, _, result) } } @@ -1423,10 +1366,10 @@ module Swift { final SimpleIdentifier getExternalName() { swift_lambda_parameter_external_name(this, result) } /** Gets the node corresponding to the field `name`. */ - final AstNode getName(int i) { swift_lambda_parameter_name(this, i, result) } + final SimpleIdentifier getName() { swift_lambda_parameter_name(this, result) } /** Gets the node corresponding to the field `type`. */ - final AstNode getType(int i) { swift_lambda_parameter_type(this, i, result) } + final AstNode getType() { swift_lambda_parameter_type(this, result) } /** Gets the child of this node. */ final AstNode getChild() { swift_lambda_parameter_child(this, result) } @@ -1434,8 +1377,8 @@ module Swift { /** Gets a field or child node of this node. */ final override AstNode getAFieldOrChild() { swift_lambda_parameter_external_name(this, result) or - swift_lambda_parameter_name(this, _, result) or - swift_lambda_parameter_type(this, _, result) or + swift_lambda_parameter_name(this, result) or + swift_lambda_parameter_type(this, result) or swift_lambda_parameter_child(this, result) } } @@ -1784,10 +1727,10 @@ module Swift { final SimpleIdentifier getExternalName() { swift_parameter_external_name(this, result) } /** Gets the node corresponding to the field `name`. */ - final AstNode getName(int i) { swift_parameter_name(this, i, result) } + final SimpleIdentifier getName() { swift_parameter_def(this, result, _) } /** Gets the node corresponding to the field `type`. */ - final AstNode getType(int i) { swift_parameter_type(this, i, result) } + final AstNode getType() { swift_parameter_def(this, _, result) } /** Gets the child of this node. */ final ParameterModifiers getChild() { swift_parameter_child(this, result) } @@ -1795,8 +1738,8 @@ module Swift { /** Gets a field or child node of this node. */ final override AstNode getAFieldOrChild() { swift_parameter_external_name(this, result) or - swift_parameter_name(this, _, result) or - swift_parameter_type(this, _, result) or + swift_parameter_def(this, result, _) or + swift_parameter_def(this, _, result) or swift_parameter_child(this, result) } } @@ -1827,17 +1770,12 @@ module Swift { /** Gets the node corresponding to the field `bound_identifier`. */ final SimpleIdentifier getBoundIdentifier() { swift_pattern_bound_identifier(this, result) } - /** Gets the node corresponding to the field `name`. */ - final UnannotatedType getName() { swift_pattern_name(this, result) } - /** Gets the `i`th child of this node. */ final AstNode getChild(int i) { swift_pattern_child(this, i, result) } /** Gets a field or child node of this node. */ final override AstNode getAFieldOrChild() { - swift_pattern_bound_identifier(this, result) or - swift_pattern_name(this, result) or - swift_pattern_child(this, _, result) + swift_pattern_bound_identifier(this, result) or swift_pattern_child(this, _, result) } } @@ -2042,12 +1980,10 @@ module Swift { } /** Gets the node corresponding to the field `name`. */ - final AstNode getName(int i) { swift_protocol_function_declaration_name(this, i, result) } + final AstNode getName() { swift_protocol_function_declaration_name(this, result) } /** Gets the node corresponding to the field `return_type`. */ - final AstNode getReturnType(int i) { - swift_protocol_function_declaration_return_type(this, i, result) - } + final AstNode getReturnType() { swift_protocol_function_declaration_return_type(this, result) } /** Gets the `i`th child of this node. */ final AstNode getChild(int i) { swift_protocol_function_declaration_child(this, i, result) } @@ -2055,8 +1991,8 @@ module Swift { /** Gets a field or child node of this node. */ final override AstNode getAFieldOrChild() { swift_protocol_function_declaration_default_value(this, _, result) or - swift_protocol_function_declaration_name(this, _, result) or - swift_protocol_function_declaration_return_type(this, _, result) or + swift_protocol_function_declaration_name(this, result) or + swift_protocol_function_declaration_return_type(this, result) or swift_protocol_function_declaration_child(this, _, result) } } @@ -2328,11 +2264,8 @@ module Swift { swift_subscript_declaration_default_value(this, i, result) } - /** Gets the node corresponding to the field `name`. */ - final UnannotatedType getName() { swift_subscript_declaration_name(this, result) } - /** Gets the node corresponding to the field `return_type`. */ - final AstNode getReturnType(int i) { swift_subscript_declaration_return_type(this, i, result) } + final AstNode getReturnType() { swift_subscript_declaration_return_type(this, result) } /** Gets the `i`th child of this node. */ final AstNode getChild(int i) { swift_subscript_declaration_child(this, i, result) } @@ -2340,8 +2273,7 @@ module Swift { /** Gets a field or child node of this node. */ final override AstNode getAFieldOrChild() { swift_subscript_declaration_default_value(this, _, result) or - swift_subscript_declaration_name(this, result) or - swift_subscript_declaration_return_type(this, _, result) or + swift_subscript_declaration_return_type(this, result) or swift_subscript_declaration_child(this, _, result) } } @@ -2517,10 +2449,10 @@ module Swift { final AstNode getElement() { swift_tuple_type_item_element(this, result) } /** Gets the node corresponding to the field `name`. */ - final AstNode getName(int i) { swift_tuple_type_item_name(this, i, result) } + final SimpleIdentifier getName() { swift_tuple_type_item_name(this, result) } /** Gets the node corresponding to the field `type`. */ - final AstNode getType(int i) { swift_tuple_type_item_type(this, i, result) } + final Type getType() { swift_tuple_type_item_type(this, result) } /** Gets the `i`th child of this node. */ final AstNode getChild(int i) { swift_tuple_type_item_child(this, i, result) } @@ -2528,27 +2460,39 @@ module Swift { /** Gets a field or child node of this node. */ final override AstNode getAFieldOrChild() { swift_tuple_type_item_element(this, result) or - swift_tuple_type_item_name(this, _, result) or - swift_tuple_type_item_type(this, _, result) or + swift_tuple_type_item_name(this, result) or + swift_tuple_type_item_type(this, result) or swift_tuple_type_item_child(this, _, result) } } + /** A class representing `type` nodes. */ + class Type extends @swift_type__, AstNode { + /** Gets the name of the primary QL class for this element. */ + final override string getAPrimaryQlClass() { result = "Type" } + + /** Gets the node corresponding to the field `modifiers`. */ + final TypeModifiers getModifiers() { swift_type_modifiers(this, result) } + + /** Gets the node corresponding to the field `name`. */ + final UnannotatedType getName() { swift_type_def(this, result) } + + /** Gets a field or child node of this node. */ + final override AstNode getAFieldOrChild() { + swift_type_modifiers(this, result) or swift_type_def(this, result) + } + } + /** A class representing `type_annotation` nodes. */ class TypeAnnotation extends @swift_type_annotation, AstNode { /** Gets the name of the primary QL class for this element. */ final override string getAPrimaryQlClass() { result = "TypeAnnotation" } - /** Gets the node corresponding to the field `name`. */ - final UnannotatedType getName() { swift_type_annotation_name(this, result) } - /** Gets the node corresponding to the field `type`. */ - final AstNode getType(int i) { swift_type_annotation_type(this, i, result) } + final AstNode getType() { swift_type_annotation_def(this, result) } /** Gets a field or child node of this node. */ - final override AstNode getAFieldOrChild() { - swift_type_annotation_name(this, result) or swift_type_annotation_type(this, _, result) - } + final override AstNode getAFieldOrChild() { swift_type_annotation_def(this, result) } } /** A class representing `type_arguments` nodes. */ @@ -2556,16 +2500,11 @@ module Swift { /** Gets the name of the primary QL class for this element. */ final override string getAPrimaryQlClass() { result = "TypeArguments" } - /** Gets the node corresponding to the field `name`. */ - final UnannotatedType getName(int i) { swift_type_arguments_name(this, i, result) } - /** Gets the `i`th child of this node. */ - final TypeModifiers getChild(int i) { swift_type_arguments_child(this, i, result) } + final Type getChild(int i) { swift_type_arguments_child(this, i, result) } /** Gets a field or child node of this node. */ - final override AstNode getAFieldOrChild() { - swift_type_arguments_name(this, _, result) or swift_type_arguments_child(this, _, result) - } + final override AstNode getAFieldOrChild() { swift_type_arguments_child(this, _, result) } } /** A class representing `type_constraint` nodes. */ @@ -2627,16 +2566,11 @@ module Swift { /** Gets the name of the primary QL class for this element. */ final override string getAPrimaryQlClass() { result = "TypeParameter" } - /** Gets the node corresponding to the field `name`. */ - final UnannotatedType getName() { swift_type_parameter_name(this, result) } - /** Gets the `i`th child of this node. */ final AstNode getChild(int i) { swift_type_parameter_child(this, i, result) } /** Gets a field or child node of this node. */ - final override AstNode getAFieldOrChild() { - swift_type_parameter_name(this, result) or swift_type_parameter_child(this, _, result) - } + final override AstNode getAFieldOrChild() { swift_type_parameter_child(this, _, result) } } /** A class representing `type_parameter_modifiers` nodes. */ @@ -2683,18 +2617,18 @@ module Swift { final override string getAPrimaryQlClass() { result = "TypealiasDeclaration" } /** Gets the node corresponding to the field `name`. */ - final AstNode getName(int i) { swift_typealias_declaration_name(this, i, result) } + final TypeIdentifier getName() { swift_typealias_declaration_def(this, result, _) } /** Gets the node corresponding to the field `value`. */ - final AstNode getValue(int i) { swift_typealias_declaration_value(this, i, result) } + final Type getValue() { swift_typealias_declaration_def(this, _, result) } /** Gets the `i`th child of this node. */ final AstNode getChild(int i) { swift_typealias_declaration_child(this, i, result) } /** Gets a field or child node of this node. */ final override AstNode getAFieldOrChild() { - swift_typealias_declaration_name(this, _, result) or - swift_typealias_declaration_value(this, _, result) or + swift_typealias_declaration_def(this, result, _) or + swift_typealias_declaration_def(this, _, result) or swift_typealias_declaration_child(this, _, result) } } diff --git a/unified/ql/lib/unified.dbscheme b/unified/ql/lib/unified.dbscheme index 3b9cf0815d93..6a8d6cc4a9de 100644 --- a/unified/ql/lib/unified.dbscheme +++ b/unified/ql/lib/unified.dbscheme @@ -156,33 +156,15 @@ swift_array_literal_def( unique int id: @swift_array_literal ); -@swift_array_type_element_type = @swift_type_modifiers | @swift_unannotated_type - -#keyset[swift_array_type, index] -swift_array_type_element( - int swift_array_type: @swift_array_type ref, - int index: int ref, - unique int element: @swift_array_type_element_type ref -); - swift_array_type_def( unique int id: @swift_array_type, - int name: @swift_unannotated_type ref -); - -@swift_as_expression_type_type = @swift_type_modifiers | @swift_unannotated_type - -#keyset[swift_as_expression, index] -swift_as_expression_type( - int swift_as_expression: @swift_as_expression ref, - int index: int ref, - unique int type__: @swift_as_expression_type_type ref + int element: @swift_type__ ref ); swift_as_expression_def( unique int id: @swift_as_expression, int expr: @swift_expression ref, - int name: @swift_unannotated_type ref, + int type__: @swift_type__ ref, int child: @swift_token_as_operator ref ); @@ -203,31 +185,14 @@ swift_assignment_def( int target: @swift_directly_assignable_expression ref ); -@swift_associatedtype_declaration_default_value_type = @swift_type_modifiers | @swift_unannotated_type - -#keyset[swift_associatedtype_declaration, index] swift_associatedtype_declaration_default_value( - int swift_associatedtype_declaration: @swift_associatedtype_declaration ref, - int index: int ref, - unique int default_value: @swift_associatedtype_declaration_default_value_type ref + unique int swift_associatedtype_declaration: @swift_associatedtype_declaration ref, + unique int default_value: @swift_type__ ref ); -@swift_associatedtype_declaration_must_inherit_type = @swift_type_modifiers | @swift_unannotated_type - -#keyset[swift_associatedtype_declaration, index] swift_associatedtype_declaration_must_inherit( - int swift_associatedtype_declaration: @swift_associatedtype_declaration ref, - int index: int ref, - unique int must_inherit: @swift_associatedtype_declaration_must_inherit_type ref -); - -@swift_associatedtype_declaration_name_type = @swift_token_type_identifier | @swift_unannotated_type - -#keyset[swift_associatedtype_declaration, index] -swift_associatedtype_declaration_name( - int swift_associatedtype_declaration: @swift_associatedtype_declaration ref, - int index: int ref, - unique int name: @swift_associatedtype_declaration_name_type ref + unique int swift_associatedtype_declaration: @swift_associatedtype_declaration ref, + unique int must_inherit: @swift_type__ ref ); @swift_associatedtype_declaration_child_type = @swift_modifiers | @swift_type_constraints @@ -240,7 +205,8 @@ swift_associatedtype_declaration_child( ); swift_associatedtype_declaration_def( - unique int id: @swift_associatedtype_declaration + unique int id: @swift_associatedtype_declaration, + int name: @swift_token_type_identifier ref ); @swift_attribute_child_type = @swift_expression | @swift_user_type @@ -383,20 +349,11 @@ case @swift_check_expression.op of ; -@swift_check_expression_type_type = @swift_type_modifiers | @swift_unannotated_type - -#keyset[swift_check_expression, index] -swift_check_expression_type( - int swift_check_expression: @swift_check_expression ref, - int index: int ref, - unique int type__: @swift_check_expression_type_type ref -); - swift_check_expression_def( unique int id: @swift_check_expression, - int name: @swift_unannotated_type ref, int op: int ref, - int target: @swift_expression ref + int target: @swift_expression ref, + int type__: @swift_type__ ref ); @swift_class_body_child_type = @swift_associatedtype_declaration | @swift_class_declaration | @swift_deinit_declaration | @swift_function_declaration | @swift_import_declaration | @swift_init_declaration | @swift_operator_declaration | @swift_precedence_group_declaration | @swift_property_declaration | @swift_protocol_declaration | @swift_subscript_declaration | @swift_token_multiline_comment | @swift_typealias_declaration @@ -607,33 +564,10 @@ swift_dictionary_literal_def( unique int id: @swift_dictionary_literal ); -@swift_dictionary_type_key_type = @swift_type_modifiers | @swift_unannotated_type - -#keyset[swift_dictionary_type, index] -swift_dictionary_type_key( - int swift_dictionary_type: @swift_dictionary_type ref, - int index: int ref, - unique int key__: @swift_dictionary_type_key_type ref -); - -#keyset[swift_dictionary_type, index] -swift_dictionary_type_name( - int swift_dictionary_type: @swift_dictionary_type ref, - int index: int ref, - unique int name: @swift_unannotated_type ref -); - -@swift_dictionary_type_value_type = @swift_type_modifiers | @swift_unannotated_type - -#keyset[swift_dictionary_type, index] -swift_dictionary_type_value( - int swift_dictionary_type: @swift_dictionary_type ref, - int index: int ref, - unique int value: @swift_dictionary_type_value_type ref -); - swift_dictionary_type_def( - unique int id: @swift_dictionary_type + unique int id: @swift_dictionary_type, + int key__: @swift_type__ ref, + int value: @swift_type__ ref ); @swift_didset_clause_child_type = @swift_modifiers | @swift_statements | @swift_token_simple_identifier @@ -735,14 +669,7 @@ swift_enum_entry_def( unique int id: @swift_enum_entry ); -#keyset[swift_enum_type_parameters, index] -swift_enum_type_parameters_name( - int swift_enum_type_parameters: @swift_enum_type_parameters ref, - int index: int ref, - unique int name: @swift_unannotated_type ref -); - -@swift_enum_type_parameters_child_type = @swift_expression | @swift_token_wildcard_pattern | @swift_type_modifiers +@swift_enum_type_parameters_child_type = @swift_expression | @swift_token_wildcard_pattern | @swift_type__ #keyset[swift_enum_type_parameters, index] swift_enum_type_parameters_child( @@ -757,15 +684,6 @@ swift_enum_type_parameters_def( @swift_equality_constraint_constrained_type_type = @swift_identifier | @swift_nested_type_identifier -@swift_equality_constraint_must_equal_type = @swift_type_modifiers | @swift_unannotated_type - -#keyset[swift_equality_constraint, index] -swift_equality_constraint_must_equal( - int swift_equality_constraint: @swift_equality_constraint ref, - int index: int ref, - unique int must_equal: @swift_equality_constraint_must_equal_type ref -); - #keyset[swift_equality_constraint, index] swift_equality_constraint_child( int swift_equality_constraint: @swift_equality_constraint ref, @@ -776,7 +694,7 @@ swift_equality_constraint_child( swift_equality_constraint_def( unique int id: @swift_equality_constraint, int constrained_type: @swift_equality_constraint_constrained_type_type ref, - int name: @swift_unannotated_type ref + int must_equal: @swift_type__ ref ); case @swift_equality_expression.op of @@ -837,21 +755,12 @@ swift_function_declaration_default_value( unique int default_value: @swift_expression ref ); -@swift_function_declaration_name_type = @swift_referenceable_operator | @swift_token_simple_identifier | @swift_unannotated_type - -#keyset[swift_function_declaration, index] -swift_function_declaration_name( - int swift_function_declaration: @swift_function_declaration ref, - int index: int ref, - unique int name: @swift_function_declaration_name_type ref -); +@swift_function_declaration_name_type = @swift_referenceable_operator | @swift_token_simple_identifier -@swift_function_declaration_return_type_type = @swift_implicitly_unwrapped_type | @swift_type_modifiers | @swift_unannotated_type +@swift_function_declaration_return_type_type = @swift_implicitly_unwrapped_type | @swift_type__ -#keyset[swift_function_declaration, index] swift_function_declaration_return_type( - int swift_function_declaration: @swift_function_declaration ref, - int index: int ref, + unique int swift_function_declaration: @swift_function_declaration ref, unique int return_type: @swift_function_declaration_return_type_type ref ); @@ -866,16 +775,8 @@ swift_function_declaration_child( swift_function_declaration_def( unique int id: @swift_function_declaration, - int body: @swift_function_body ref -); - -@swift_function_type_return_type_type = @swift_type_modifiers | @swift_unannotated_type - -#keyset[swift_function_type, index] -swift_function_type_return_type( - int swift_function_type: @swift_function_type ref, - int index: int ref, - unique int return_type: @swift_function_type_return_type_type ref + int body: @swift_function_body ref, + int name: @swift_function_declaration_name_type ref ); @swift_function_type_child_type = @swift_throws_clause | @swift_token_throws @@ -887,8 +788,8 @@ swift_function_type_child( swift_function_type_def( unique int id: @swift_function_type, - int name: @swift_unannotated_type ref, - int params: @swift_unannotated_type ref + int params: @swift_unannotated_type ref, + int return_type: @swift_type__ ref ); @swift_getter_specifier_child_type = @swift_throws_clause | @swift_token_mutation_modifier | @swift_token_throws @@ -940,12 +841,7 @@ swift_if_condition_bound_identifier( unique int bound_identifier: @swift_token_simple_identifier ref ); -swift_if_condition_name( - unique int swift_if_condition: @swift_if_condition ref, - unique int name: @swift_unannotated_type ref -); - -@swift_if_condition_child_type = @swift_availability_condition | @swift_expression | @swift_pattern | @swift_token_wildcard_pattern | @swift_type_annotation | @swift_type_modifiers | @swift_user_type | @swift_value_binding_pattern | @swift_where_clause +@swift_if_condition_child_type = @swift_availability_condition | @swift_expression | @swift_pattern | @swift_token_wildcard_pattern | @swift_type__ | @swift_type_annotation | @swift_user_type | @swift_value_binding_pattern | @swift_where_clause #keyset[swift_if_condition, index] swift_if_condition_child( @@ -978,14 +874,9 @@ swift_if_statement_def( unique int id: @swift_if_statement ); -swift_implicitly_unwrapped_type_child( - unique int swift_implicitly_unwrapped_type: @swift_implicitly_unwrapped_type ref, - unique int child: @swift_type_modifiers ref -); - swift_implicitly_unwrapped_type_def( unique int id: @swift_implicitly_unwrapped_type, - int name: @swift_unannotated_type ref + int child: @swift_type__ ref ); @swift_import_declaration_child_type = @swift_identifier | @swift_modifiers @@ -1010,19 +901,7 @@ swift_infix_expression_def( @swift_inheritance_constraint_constrained_type_type = @swift_identifier | @swift_nested_type_identifier -@swift_inheritance_constraint_inherits_from_type = @swift_implicitly_unwrapped_type | @swift_type_modifiers | @swift_unannotated_type - -#keyset[swift_inheritance_constraint, index] -swift_inheritance_constraint_inherits_from( - int swift_inheritance_constraint: @swift_inheritance_constraint ref, - int index: int ref, - unique int inherits_from: @swift_inheritance_constraint_inherits_from_type ref -); - -swift_inheritance_constraint_name( - unique int swift_inheritance_constraint: @swift_inheritance_constraint ref, - unique int name: @swift_unannotated_type ref -); +@swift_inheritance_constraint_inherits_from_type = @swift_implicitly_unwrapped_type | @swift_type__ #keyset[swift_inheritance_constraint, index] swift_inheritance_constraint_child( @@ -1033,7 +912,8 @@ swift_inheritance_constraint_child( swift_inheritance_constraint_def( unique int id: @swift_inheritance_constraint, - int constrained_type: @swift_inheritance_constraint_constrained_type_type ref + int constrained_type: @swift_inheritance_constraint_constrained_type_type ref, + int inherits_from: @swift_inheritance_constraint_inherits_from_type ref ); @swift_inheritance_specifier_inherits_from_type = @swift_function_type | @swift_suppressed_constraint | @swift_user_type @@ -1118,17 +998,10 @@ swift_key_path_string_expression_def( int child: @swift_expression ref ); -swift_lambda_function_type_name( - unique int swift_lambda_function_type: @swift_lambda_function_type ref, - unique int name: @swift_unannotated_type ref -); - -@swift_lambda_function_type_return_type_type = @swift_implicitly_unwrapped_type | @swift_type_modifiers | @swift_unannotated_type +@swift_lambda_function_type_return_type_type = @swift_implicitly_unwrapped_type | @swift_type__ -#keyset[swift_lambda_function_type, index] swift_lambda_function_type_return_type( - int swift_lambda_function_type: @swift_lambda_function_type ref, - int index: int ref, + unique int swift_lambda_function_type: @swift_lambda_function_type ref, unique int return_type: @swift_lambda_function_type_return_type_type ref ); @@ -1184,21 +1057,15 @@ swift_lambda_parameter_external_name( unique int external_name: @swift_token_simple_identifier ref ); -@swift_lambda_parameter_name_type = @swift_token_simple_identifier | @swift_unannotated_type - -#keyset[swift_lambda_parameter, index] swift_lambda_parameter_name( - int swift_lambda_parameter: @swift_lambda_parameter ref, - int index: int ref, - unique int name: @swift_lambda_parameter_name_type ref + unique int swift_lambda_parameter: @swift_lambda_parameter ref, + unique int name: @swift_token_simple_identifier ref ); -@swift_lambda_parameter_type_type = @swift_implicitly_unwrapped_type | @swift_type_modifiers | @swift_unannotated_type +@swift_lambda_parameter_type_type = @swift_implicitly_unwrapped_type | @swift_type__ -#keyset[swift_lambda_parameter, index] swift_lambda_parameter_type( - int swift_lambda_parameter: @swift_lambda_parameter ref, - int index: int ref, + unique int swift_lambda_parameter: @swift_lambda_parameter ref, unique int type__: @swift_lambda_parameter_type_type ref ); @@ -1431,23 +1298,7 @@ swift_parameter_external_name( unique int external_name: @swift_token_simple_identifier ref ); -@swift_parameter_name_type = @swift_token_simple_identifier | @swift_unannotated_type - -#keyset[swift_parameter, index] -swift_parameter_name( - int swift_parameter: @swift_parameter ref, - int index: int ref, - unique int name: @swift_parameter_name_type ref -); - -@swift_parameter_type_type = @swift_implicitly_unwrapped_type | @swift_type_modifiers | @swift_unannotated_type - -#keyset[swift_parameter, index] -swift_parameter_type( - int swift_parameter: @swift_parameter ref, - int index: int ref, - unique int type__: @swift_parameter_type_type ref -); +@swift_parameter_type_type = @swift_implicitly_unwrapped_type | @swift_type__ swift_parameter_child( unique int swift_parameter: @swift_parameter ref, @@ -1455,7 +1306,9 @@ swift_parameter_child( ); swift_parameter_def( - unique int id: @swift_parameter + unique int id: @swift_parameter, + int name: @swift_token_simple_identifier ref, + int type__: @swift_parameter_type_type ref ); #keyset[swift_parameter_modifiers, index] @@ -1474,12 +1327,7 @@ swift_pattern_bound_identifier( unique int bound_identifier: @swift_token_simple_identifier ref ); -swift_pattern_name( - unique int swift_pattern: @swift_pattern ref, - unique int name: @swift_unannotated_type ref -); - -@swift_pattern_child_type = @swift_expression | @swift_pattern | @swift_token_wildcard_pattern | @swift_type_modifiers | @swift_user_type | @swift_value_binding_pattern +@swift_pattern_child_type = @swift_expression | @swift_pattern | @swift_token_wildcard_pattern | @swift_type__ | @swift_user_type | @swift_value_binding_pattern #keyset[swift_pattern, index] swift_pattern_child( @@ -1649,21 +1497,17 @@ swift_protocol_function_declaration_default_value( unique int default_value: @swift_expression ref ); -@swift_protocol_function_declaration_name_type = @swift_referenceable_operator | @swift_token_simple_identifier | @swift_unannotated_type +@swift_protocol_function_declaration_name_type = @swift_referenceable_operator | @swift_token_simple_identifier -#keyset[swift_protocol_function_declaration, index] swift_protocol_function_declaration_name( - int swift_protocol_function_declaration: @swift_protocol_function_declaration ref, - int index: int ref, + unique int swift_protocol_function_declaration: @swift_protocol_function_declaration ref, unique int name: @swift_protocol_function_declaration_name_type ref ); -@swift_protocol_function_declaration_return_type_type = @swift_implicitly_unwrapped_type | @swift_type_modifiers | @swift_unannotated_type +@swift_protocol_function_declaration_return_type_type = @swift_implicitly_unwrapped_type | @swift_type__ -#keyset[swift_protocol_function_declaration, index] swift_protocol_function_declaration_return_type( - int swift_protocol_function_declaration: @swift_protocol_function_declaration ref, - int index: int ref, + unique int swift_protocol_function_declaration: @swift_protocol_function_declaration ref, unique int return_type: @swift_protocol_function_declaration_return_type_type ref ); @@ -1833,17 +1677,10 @@ swift_subscript_declaration_default_value( unique int default_value: @swift_expression ref ); -swift_subscript_declaration_name( - unique int swift_subscript_declaration: @swift_subscript_declaration ref, - unique int name: @swift_unannotated_type ref -); - -@swift_subscript_declaration_return_type_type = @swift_implicitly_unwrapped_type | @swift_type_modifiers | @swift_unannotated_type +@swift_subscript_declaration_return_type_type = @swift_implicitly_unwrapped_type | @swift_type__ -#keyset[swift_subscript_declaration, index] swift_subscript_declaration_return_type( - int swift_subscript_declaration: @swift_subscript_declaration ref, - int index: int ref, + unique int swift_subscript_declaration: @swift_subscript_declaration ref, unique int return_type: @swift_subscript_declaration_return_type_type ref ); @@ -1954,22 +1791,14 @@ swift_tuple_type_item_element( unique int element: @swift_tuple_type_item_element_type ref ); -@swift_tuple_type_item_name_type = @swift_token_simple_identifier | @swift_unannotated_type - -#keyset[swift_tuple_type_item, index] swift_tuple_type_item_name( - int swift_tuple_type_item: @swift_tuple_type_item ref, - int index: int ref, - unique int name: @swift_tuple_type_item_name_type ref + unique int swift_tuple_type_item: @swift_tuple_type_item ref, + unique int name: @swift_token_simple_identifier ref ); -@swift_tuple_type_item_type_type = @swift_type_modifiers | @swift_unannotated_type - -#keyset[swift_tuple_type_item, index] swift_tuple_type_item_type( - int swift_tuple_type_item: @swift_tuple_type_item ref, - int index: int ref, - unique int type__: @swift_tuple_type_item_type_type ref + unique int swift_tuple_type_item: @swift_tuple_type_item ref, + unique int type__: @swift_type__ ref ); @swift_tuple_type_item_child_type = @swift_parameter_modifiers | @swift_token_wildcard_pattern @@ -1985,36 +1814,28 @@ swift_tuple_type_item_def( unique int id: @swift_tuple_type_item ); -swift_type_annotation_name( - unique int swift_type_annotation: @swift_type_annotation ref, - unique int name: @swift_unannotated_type ref +swift_type_modifiers( + unique int swift_type__: @swift_type__ ref, + unique int modifiers: @swift_type_modifiers ref ); -@swift_type_annotation_type_type = @swift_implicitly_unwrapped_type | @swift_type_modifiers | @swift_unannotated_type - -#keyset[swift_type_annotation, index] -swift_type_annotation_type( - int swift_type_annotation: @swift_type_annotation ref, - int index: int ref, - unique int type__: @swift_type_annotation_type_type ref +swift_type_def( + unique int id: @swift_type__, + int name: @swift_unannotated_type ref ); -swift_type_annotation_def( - unique int id: @swift_type_annotation -); +@swift_type_annotation_type_type = @swift_implicitly_unwrapped_type | @swift_type__ -#keyset[swift_type_arguments, index] -swift_type_arguments_name( - int swift_type_arguments: @swift_type_arguments ref, - int index: int ref, - unique int name: @swift_unannotated_type ref +swift_type_annotation_def( + unique int id: @swift_type_annotation, + int type__: @swift_type_annotation_type_type ref ); #keyset[swift_type_arguments, index] swift_type_arguments_child( int swift_type_arguments: @swift_type_arguments ref, int index: int ref, - unique int child: @swift_type_modifiers ref + unique int child: @swift_type__ ref ); swift_type_arguments_def( @@ -2057,12 +1878,7 @@ swift_type_pack_expansion_def( int child: @swift_unannotated_type ref ); -swift_type_parameter_name( - unique int swift_type_parameter: @swift_type_parameter ref, - unique int name: @swift_unannotated_type ref -); - -@swift_type_parameter_child_type = @swift_token_type_identifier | @swift_type_modifiers | @swift_type_parameter_modifiers | @swift_type_parameter_pack +@swift_type_parameter_child_type = @swift_token_type_identifier | @swift_type__ | @swift_type_parameter_modifiers | @swift_type_parameter_pack #keyset[swift_type_parameter, index] swift_type_parameter_child( @@ -2104,24 +1920,6 @@ swift_type_parameters_def( unique int id: @swift_type_parameters ); -@swift_typealias_declaration_name_type = @swift_token_type_identifier | @swift_unannotated_type - -#keyset[swift_typealias_declaration, index] -swift_typealias_declaration_name( - int swift_typealias_declaration: @swift_typealias_declaration ref, - int index: int ref, - unique int name: @swift_typealias_declaration_name_type ref -); - -@swift_typealias_declaration_value_type = @swift_type_modifiers | @swift_unannotated_type - -#keyset[swift_typealias_declaration, index] -swift_typealias_declaration_value( - int swift_typealias_declaration: @swift_typealias_declaration ref, - int index: int ref, - unique int value: @swift_typealias_declaration_value_type ref -); - @swift_typealias_declaration_child_type = @swift_attribute | @swift_modifiers | @swift_token_inheritance_modifier | @swift_token_ownership_modifier | @swift_token_property_behavior_modifier | @swift_type_parameters #keyset[swift_typealias_declaration, index] @@ -2132,7 +1930,9 @@ swift_typealias_declaration_child( ); swift_typealias_declaration_def( - unique int id: @swift_typealias_declaration + unique int id: @swift_typealias_declaration, + int name: @swift_token_type_identifier ref, + int value: @swift_type__ ref ); @swift_unannotated_type = @swift_array_type | @swift_dictionary_type | @swift_existential_type | @swift_function_type | @swift_metatype | @swift_opaque_type | @swift_optional_type | @swift_protocol_composition_type | @swift_suppressed_constraint | @swift_tuple_type | @swift_type_pack_expansion | @swift_type_parameter_pack | @swift_user_type @@ -2324,7 +2124,7 @@ case @swift_token.kind of ; -@swift_ast_node = @swift_additive_expression | @swift_array_literal | @swift_array_type | @swift_as_expression | @swift_assignment | @swift_associatedtype_declaration | @swift_attribute | @swift_availability_condition | @swift_await_expression | @swift_bitwise_operation | @swift_call_expression | @swift_call_suffix | @swift_capture_list | @swift_capture_list_item | @swift_catch_block | @swift_check_expression | @swift_class_body | @swift_class_declaration | @swift_comparison_expression | @swift_computed_getter | @swift_computed_modify | @swift_computed_property | @swift_computed_setter | @swift_conjunction_expression | @swift_constructor_expression | @swift_constructor_suffix | @swift_control_transfer_statement | @swift_deinit_declaration | @swift_deprecated_operator_declaration_body | @swift_dictionary_literal | @swift_dictionary_type | @swift_didset_clause | @swift_directive | @swift_directly_assignable_expression | @swift_disjunction_expression | @swift_do_statement | @swift_enum_class_body | @swift_enum_entry | @swift_enum_type_parameters | @swift_equality_constraint | @swift_equality_expression | @swift_existential_type | @swift_external_macro_definition | @swift_for_statement | @swift_function_body | @swift_function_declaration | @swift_function_type | @swift_getter_specifier | @swift_guard_statement | @swift_identifier | @swift_if_condition | @swift_if_statement | @swift_implicitly_unwrapped_type | @swift_import_declaration | @swift_infix_expression | @swift_inheritance_constraint | @swift_inheritance_specifier | @swift_init_declaration | @swift_interpolated_expression | @swift_key_path_expression | @swift_key_path_string_expression | @swift_lambda_function_type | @swift_lambda_function_type_parameters | @swift_lambda_literal | @swift_lambda_parameter | @swift_line_string_literal | @swift_macro_declaration | @swift_macro_definition | @swift_macro_invocation | @swift_metatype | @swift_modifiers | @swift_modify_specifier | @swift_multi_line_string_literal | @swift_multiplicative_expression | @swift_navigation_expression | @swift_navigation_suffix | @swift_nested_type_identifier | @swift_nil_coalescing_expression | @swift_opaque_type | @swift_open_end_range_expression | @swift_open_start_range_expression | @swift_operator_declaration | @swift_optional_chain_marker | @swift_optional_type | @swift_parameter | @swift_parameter_modifiers | @swift_pattern | @swift_playground_literal | @swift_postfix_expression | @swift_precedence_group_attribute | @swift_precedence_group_attributes | @swift_precedence_group_declaration | @swift_prefix_expression | @swift_property_declaration | @swift_protocol_body | @swift_protocol_composition_type | @swift_protocol_declaration | @swift_protocol_function_declaration | @swift_protocol_property_declaration | @swift_protocol_property_requirements | @swift_range_expression | @swift_raw_str_interpolation | @swift_raw_string_literal | @swift_referenceable_operator | @swift_repeat_while_statement | @swift_selector_expression | @swift_setter_specifier | @swift_source_file | @swift_statements | @swift_subscript_declaration | @swift_suppressed_constraint | @swift_switch_entry | @swift_switch_pattern | @swift_switch_statement | @swift_ternary_expression | @swift_throws_clause | @swift_token | @swift_try_expression | @swift_tuple_expression | @swift_tuple_type | @swift_tuple_type_item | @swift_type_annotation | @swift_type_arguments | @swift_type_constraint | @swift_type_constraints | @swift_type_modifiers | @swift_type_pack_expansion | @swift_type_parameter | @swift_type_parameter_modifiers | @swift_type_parameter_pack | @swift_type_parameters | @swift_typealias_declaration | @swift_user_type | @swift_value_argument | @swift_value_argument_label | @swift_value_arguments | @swift_value_binding_pattern | @swift_value_pack_expansion | @swift_value_parameter_pack | @swift_where_clause | @swift_while_statement | @swift_willset_clause | @swift_willset_didset_block +@swift_ast_node = @swift_additive_expression | @swift_array_literal | @swift_array_type | @swift_as_expression | @swift_assignment | @swift_associatedtype_declaration | @swift_attribute | @swift_availability_condition | @swift_await_expression | @swift_bitwise_operation | @swift_call_expression | @swift_call_suffix | @swift_capture_list | @swift_capture_list_item | @swift_catch_block | @swift_check_expression | @swift_class_body | @swift_class_declaration | @swift_comparison_expression | @swift_computed_getter | @swift_computed_modify | @swift_computed_property | @swift_computed_setter | @swift_conjunction_expression | @swift_constructor_expression | @swift_constructor_suffix | @swift_control_transfer_statement | @swift_deinit_declaration | @swift_deprecated_operator_declaration_body | @swift_dictionary_literal | @swift_dictionary_type | @swift_didset_clause | @swift_directive | @swift_directly_assignable_expression | @swift_disjunction_expression | @swift_do_statement | @swift_enum_class_body | @swift_enum_entry | @swift_enum_type_parameters | @swift_equality_constraint | @swift_equality_expression | @swift_existential_type | @swift_external_macro_definition | @swift_for_statement | @swift_function_body | @swift_function_declaration | @swift_function_type | @swift_getter_specifier | @swift_guard_statement | @swift_identifier | @swift_if_condition | @swift_if_statement | @swift_implicitly_unwrapped_type | @swift_import_declaration | @swift_infix_expression | @swift_inheritance_constraint | @swift_inheritance_specifier | @swift_init_declaration | @swift_interpolated_expression | @swift_key_path_expression | @swift_key_path_string_expression | @swift_lambda_function_type | @swift_lambda_function_type_parameters | @swift_lambda_literal | @swift_lambda_parameter | @swift_line_string_literal | @swift_macro_declaration | @swift_macro_definition | @swift_macro_invocation | @swift_metatype | @swift_modifiers | @swift_modify_specifier | @swift_multi_line_string_literal | @swift_multiplicative_expression | @swift_navigation_expression | @swift_navigation_suffix | @swift_nested_type_identifier | @swift_nil_coalescing_expression | @swift_opaque_type | @swift_open_end_range_expression | @swift_open_start_range_expression | @swift_operator_declaration | @swift_optional_chain_marker | @swift_optional_type | @swift_parameter | @swift_parameter_modifiers | @swift_pattern | @swift_playground_literal | @swift_postfix_expression | @swift_precedence_group_attribute | @swift_precedence_group_attributes | @swift_precedence_group_declaration | @swift_prefix_expression | @swift_property_declaration | @swift_protocol_body | @swift_protocol_composition_type | @swift_protocol_declaration | @swift_protocol_function_declaration | @swift_protocol_property_declaration | @swift_protocol_property_requirements | @swift_range_expression | @swift_raw_str_interpolation | @swift_raw_string_literal | @swift_referenceable_operator | @swift_repeat_while_statement | @swift_selector_expression | @swift_setter_specifier | @swift_source_file | @swift_statements | @swift_subscript_declaration | @swift_suppressed_constraint | @swift_switch_entry | @swift_switch_pattern | @swift_switch_statement | @swift_ternary_expression | @swift_throws_clause | @swift_token | @swift_try_expression | @swift_tuple_expression | @swift_tuple_type | @swift_tuple_type_item | @swift_type__ | @swift_type_annotation | @swift_type_arguments | @swift_type_constraint | @swift_type_constraints | @swift_type_modifiers | @swift_type_pack_expansion | @swift_type_parameter | @swift_type_parameter_modifiers | @swift_type_parameter_pack | @swift_type_parameters | @swift_typealias_declaration | @swift_user_type | @swift_value_argument | @swift_value_argument_label | @swift_value_arguments | @swift_value_binding_pattern | @swift_value_pack_expansion | @swift_value_parameter_pack | @swift_where_clause | @swift_while_statement | @swift_willset_clause | @swift_willset_didset_block swift_ast_node_location( unique int node: @swift_ast_node ref, From 31386f566c9dfa7de21c928181bf20f1816572b7 Mon Sep 17 00:00:00 2001 From: Taus Date: Fri, 8 May 2026 21:03:56 +0000 Subject: [PATCH 253/260] unified: drop `element` field on `_parenthesized_type` Same pattern we've seen many times before: a field on an anonymous node gets attached to the parent node instead. I'm not 100% sure this is the right solution, but it seemed wrong to just make `_parenthesized_type` named instead (we don't usually name parentheticals). At the very least, this cleans up the spurious navigation_expression.element and tuple_type_item.element fields. --- unified/extractor/tree-sitter-swift/grammar.js | 5 +---- unified/extractor/tree-sitter-swift/node-types.yml | 4 +--- 2 files changed, 2 insertions(+), 7 deletions(-) diff --git a/unified/extractor/tree-sitter-swift/grammar.js b/unified/extractor/tree-sitter-swift/grammar.js index 51a680e05a1e..4d20431a0708 100644 --- a/unified/extractor/tree-sitter-swift/grammar.js +++ b/unified/extractor/tree-sitter-swift/grammar.js @@ -567,10 +567,7 @@ module.exports = grammar({ _parenthesized_type: ($) => seq( "(", - field( - "element", - choice($.opaque_type, $.existential_type, $.dictionary_type) - ), + choice($.opaque_type, $.existential_type, $.dictionary_type), ")" ), navigation_expression: ($) => diff --git a/unified/extractor/tree-sitter-swift/node-types.yml b/unified/extractor/tree-sitter-swift/node-types.yml index 5c4098db84f0..7ac626492d40 100644 --- a/unified/extractor/tree-sitter-swift/node-types.yml +++ b/unified/extractor/tree-sitter-swift/node-types.yml @@ -314,7 +314,6 @@ named: rhs: expression mutation_modifier: navigation_expression: - element?: [dictionary_type, existential_type, opaque_type] suffix: navigation_suffix target+: ["(", ")", array_type, dictionary_type, existential_type, expression, opaque_type, user_type] navigation_suffix: @@ -459,8 +458,7 @@ named: $children?: tuple_type_item element*: tuple_type_item tuple_type_item: - $children*: [parameter_modifiers, wildcard_pattern] - element?: [dictionary_type, existential_type, opaque_type] + $children*: [dictionary_type, existential_type, opaque_type, parameter_modifiers, wildcard_pattern] name?: simple_identifier type?: type type: From f9e7f908963faa4c3c78126a8d4fa50d6ff432e7 Mon Sep 17 00:00:00 2001 From: Taus Date: Fri, 8 May 2026 21:04:02 +0000 Subject: [PATCH 254/260] unified: regenerate files --- unified/ql/lib/codeql/unified/Ast.qll | 8 -------- unified/ql/lib/unified.dbscheme | 16 +--------------- 2 files changed, 1 insertion(+), 23 deletions(-) diff --git a/unified/ql/lib/codeql/unified/Ast.qll b/unified/ql/lib/codeql/unified/Ast.qll index 201c0eac24eb..60172525efe1 100644 --- a/unified/ql/lib/codeql/unified/Ast.qll +++ b/unified/ql/lib/codeql/unified/Ast.qll @@ -1571,9 +1571,6 @@ module Swift { /** Gets the name of the primary QL class for this element. */ final override string getAPrimaryQlClass() { result = "NavigationExpression" } - /** Gets the node corresponding to the field `element`. */ - final AstNode getElement() { swift_navigation_expression_element(this, result) } - /** Gets the node corresponding to the field `suffix`. */ final NavigationSuffix getSuffix() { swift_navigation_expression_def(this, result) } @@ -1582,7 +1579,6 @@ module Swift { /** Gets a field or child node of this node. */ final override AstNode getAFieldOrChild() { - swift_navigation_expression_element(this, result) or swift_navigation_expression_def(this, result) or swift_navigation_expression_target(this, _, result) } @@ -2445,9 +2441,6 @@ module Swift { /** Gets the name of the primary QL class for this element. */ final override string getAPrimaryQlClass() { result = "TupleTypeItem" } - /** Gets the node corresponding to the field `element`. */ - final AstNode getElement() { swift_tuple_type_item_element(this, result) } - /** Gets the node corresponding to the field `name`. */ final SimpleIdentifier getName() { swift_tuple_type_item_name(this, result) } @@ -2459,7 +2452,6 @@ module Swift { /** Gets a field or child node of this node. */ final override AstNode getAFieldOrChild() { - swift_tuple_type_item_element(this, result) or swift_tuple_type_item_name(this, result) or swift_tuple_type_item_type(this, result) or swift_tuple_type_item_child(this, _, result) diff --git a/unified/ql/lib/unified.dbscheme b/unified/ql/lib/unified.dbscheme index 6a8d6cc4a9de..56571e865d10 100644 --- a/unified/ql/lib/unified.dbscheme +++ b/unified/ql/lib/unified.dbscheme @@ -1206,13 +1206,6 @@ swift_multiplicative_expression_def( int rhs: @swift_expression ref ); -@swift_navigation_expression_element_type = @swift_dictionary_type | @swift_existential_type | @swift_opaque_type - -swift_navigation_expression_element( - unique int swift_navigation_expression: @swift_navigation_expression ref, - unique int element: @swift_navigation_expression_element_type ref -); - @swift_navigation_expression_target_type = @swift_array_type | @swift_dictionary_type | @swift_existential_type | @swift_expression | @swift_opaque_type | @swift_reserved_word | @swift_user_type #keyset[swift_navigation_expression, index] @@ -1784,13 +1777,6 @@ swift_tuple_type_def( unique int id: @swift_tuple_type ); -@swift_tuple_type_item_element_type = @swift_dictionary_type | @swift_existential_type | @swift_opaque_type - -swift_tuple_type_item_element( - unique int swift_tuple_type_item: @swift_tuple_type_item ref, - unique int element: @swift_tuple_type_item_element_type ref -); - swift_tuple_type_item_name( unique int swift_tuple_type_item: @swift_tuple_type_item ref, unique int name: @swift_token_simple_identifier ref @@ -1801,7 +1787,7 @@ swift_tuple_type_item_type( unique int type__: @swift_type__ ref ); -@swift_tuple_type_item_child_type = @swift_parameter_modifiers | @swift_token_wildcard_pattern +@swift_tuple_type_item_child_type = @swift_dictionary_type | @swift_existential_type | @swift_opaque_type | @swift_parameter_modifiers | @swift_token_wildcard_pattern #keyset[swift_tuple_type_item, index] swift_tuple_type_item_child( From 2608db9fd98a75409c3b2536342aa942b3bf0407 Mon Sep 17 00:00:00 2001 From: Taus Date: Fri, 8 May 2026 21:10:58 +0000 Subject: [PATCH 255/260] unified: Prevent field bleed-through from `_if_let_binding` Same procedure as before -- we change the anonymous node to a named node, and the problem magically goes away. --- unified/extractor/tree-sitter-swift/grammar.js | 4 ++-- unified/extractor/tree-sitter-swift/node-types.yml | 4 +++- 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/unified/extractor/tree-sitter-swift/grammar.js b/unified/extractor/tree-sitter-swift/grammar.js index 4d20431a0708..22b5af18ffac 100644 --- a/unified/extractor/tree-sitter-swift/grammar.js +++ b/unified/extractor/tree-sitter-swift/grammar.js @@ -1041,8 +1041,8 @@ module.exports = grammar({ ) ), if_condition: ($) => - choice($._if_let_binding, $.expression, $.availability_condition), - _if_let_binding: ($) => + choice($.if_let_binding, $.expression, $.availability_condition), + if_let_binding: ($) => seq( $._direct_or_indirect_binding, optional(seq($._equal_sign, $.expression)), diff --git a/unified/extractor/tree-sitter-swift/node-types.yml b/unified/extractor/tree-sitter-swift/node-types.yml index 7ac626492d40..7b97a68afde6 100644 --- a/unified/extractor/tree-sitter-swift/node-types.yml +++ b/unified/extractor/tree-sitter-swift/node-types.yml @@ -235,7 +235,9 @@ named: identifier: $children+: simple_identifier if_condition: - $children*: [availability_condition, expression, pattern, type, type_annotation, user_type, value_binding_pattern, where_clause, wildcard_pattern] + $children: [availability_condition, expression, if_let_binding] + if_let_binding: + $children*: [expression, pattern, type, type_annotation, user_type, value_binding_pattern, where_clause, wildcard_pattern] bound_identifier?: simple_identifier if_statement: $children*: [else, if_statement, statements] From a5a1312e51dd7ba94af1553b717f36d6157db0fc Mon Sep 17 00:00:00 2001 From: Taus Date: Fri, 8 May 2026 21:11:06 +0000 Subject: [PATCH 256/260] unified: regenerate files --- unified/ql/lib/codeql/unified/Ast.qll | 19 ++++++++++++++++--- unified/ql/lib/unified.dbscheme | 27 +++++++++++++++++---------- 2 files changed, 33 insertions(+), 13 deletions(-) diff --git a/unified/ql/lib/codeql/unified/Ast.qll b/unified/ql/lib/codeql/unified/Ast.qll index 60172525efe1..3ec274925a16 100644 --- a/unified/ql/lib/codeql/unified/Ast.qll +++ b/unified/ql/lib/codeql/unified/Ast.qll @@ -1097,17 +1097,30 @@ module Swift { /** Gets the name of the primary QL class for this element. */ final override string getAPrimaryQlClass() { result = "IfCondition" } + /** Gets the child of this node. */ + final AstNode getChild() { swift_if_condition_def(this, result) } + + /** Gets a field or child node of this node. */ + final override AstNode getAFieldOrChild() { swift_if_condition_def(this, result) } + } + + /** A class representing `if_let_binding` nodes. */ + class IfLetBinding extends @swift_if_let_binding, AstNode { + /** Gets the name of the primary QL class for this element. */ + final override string getAPrimaryQlClass() { result = "IfLetBinding" } + /** Gets the node corresponding to the field `bound_identifier`. */ final SimpleIdentifier getBoundIdentifier() { - swift_if_condition_bound_identifier(this, result) + swift_if_let_binding_bound_identifier(this, result) } /** Gets the `i`th child of this node. */ - final AstNode getChild(int i) { swift_if_condition_child(this, i, result) } + final AstNode getChild(int i) { swift_if_let_binding_child(this, i, result) } /** Gets a field or child node of this node. */ final override AstNode getAFieldOrChild() { - swift_if_condition_bound_identifier(this, result) or swift_if_condition_child(this, _, result) + swift_if_let_binding_bound_identifier(this, result) or + swift_if_let_binding_child(this, _, result) } } diff --git a/unified/ql/lib/unified.dbscheme b/unified/ql/lib/unified.dbscheme index 56571e865d10..a01eb65170ca 100644 --- a/unified/ql/lib/unified.dbscheme +++ b/unified/ql/lib/unified.dbscheme @@ -836,22 +836,29 @@ swift_identifier_def( unique int id: @swift_identifier ); -swift_if_condition_bound_identifier( - unique int swift_if_condition: @swift_if_condition ref, +@swift_if_condition_child_type = @swift_availability_condition | @swift_expression | @swift_if_let_binding + +swift_if_condition_def( + unique int id: @swift_if_condition, + int child: @swift_if_condition_child_type ref +); + +swift_if_let_binding_bound_identifier( + unique int swift_if_let_binding: @swift_if_let_binding ref, unique int bound_identifier: @swift_token_simple_identifier ref ); -@swift_if_condition_child_type = @swift_availability_condition | @swift_expression | @swift_pattern | @swift_token_wildcard_pattern | @swift_type__ | @swift_type_annotation | @swift_user_type | @swift_value_binding_pattern | @swift_where_clause +@swift_if_let_binding_child_type = @swift_expression | @swift_pattern | @swift_token_wildcard_pattern | @swift_type__ | @swift_type_annotation | @swift_user_type | @swift_value_binding_pattern | @swift_where_clause -#keyset[swift_if_condition, index] -swift_if_condition_child( - int swift_if_condition: @swift_if_condition ref, +#keyset[swift_if_let_binding, index] +swift_if_let_binding_child( + int swift_if_let_binding: @swift_if_let_binding ref, int index: int ref, - unique int child: @swift_if_condition_child_type ref + unique int child: @swift_if_let_binding_child_type ref ); -swift_if_condition_def( - unique int id: @swift_if_condition +swift_if_let_binding_def( + unique int id: @swift_if_let_binding ); #keyset[swift_if_statement, index] @@ -2110,7 +2117,7 @@ case @swift_token.kind of ; -@swift_ast_node = @swift_additive_expression | @swift_array_literal | @swift_array_type | @swift_as_expression | @swift_assignment | @swift_associatedtype_declaration | @swift_attribute | @swift_availability_condition | @swift_await_expression | @swift_bitwise_operation | @swift_call_expression | @swift_call_suffix | @swift_capture_list | @swift_capture_list_item | @swift_catch_block | @swift_check_expression | @swift_class_body | @swift_class_declaration | @swift_comparison_expression | @swift_computed_getter | @swift_computed_modify | @swift_computed_property | @swift_computed_setter | @swift_conjunction_expression | @swift_constructor_expression | @swift_constructor_suffix | @swift_control_transfer_statement | @swift_deinit_declaration | @swift_deprecated_operator_declaration_body | @swift_dictionary_literal | @swift_dictionary_type | @swift_didset_clause | @swift_directive | @swift_directly_assignable_expression | @swift_disjunction_expression | @swift_do_statement | @swift_enum_class_body | @swift_enum_entry | @swift_enum_type_parameters | @swift_equality_constraint | @swift_equality_expression | @swift_existential_type | @swift_external_macro_definition | @swift_for_statement | @swift_function_body | @swift_function_declaration | @swift_function_type | @swift_getter_specifier | @swift_guard_statement | @swift_identifier | @swift_if_condition | @swift_if_statement | @swift_implicitly_unwrapped_type | @swift_import_declaration | @swift_infix_expression | @swift_inheritance_constraint | @swift_inheritance_specifier | @swift_init_declaration | @swift_interpolated_expression | @swift_key_path_expression | @swift_key_path_string_expression | @swift_lambda_function_type | @swift_lambda_function_type_parameters | @swift_lambda_literal | @swift_lambda_parameter | @swift_line_string_literal | @swift_macro_declaration | @swift_macro_definition | @swift_macro_invocation | @swift_metatype | @swift_modifiers | @swift_modify_specifier | @swift_multi_line_string_literal | @swift_multiplicative_expression | @swift_navigation_expression | @swift_navigation_suffix | @swift_nested_type_identifier | @swift_nil_coalescing_expression | @swift_opaque_type | @swift_open_end_range_expression | @swift_open_start_range_expression | @swift_operator_declaration | @swift_optional_chain_marker | @swift_optional_type | @swift_parameter | @swift_parameter_modifiers | @swift_pattern | @swift_playground_literal | @swift_postfix_expression | @swift_precedence_group_attribute | @swift_precedence_group_attributes | @swift_precedence_group_declaration | @swift_prefix_expression | @swift_property_declaration | @swift_protocol_body | @swift_protocol_composition_type | @swift_protocol_declaration | @swift_protocol_function_declaration | @swift_protocol_property_declaration | @swift_protocol_property_requirements | @swift_range_expression | @swift_raw_str_interpolation | @swift_raw_string_literal | @swift_referenceable_operator | @swift_repeat_while_statement | @swift_selector_expression | @swift_setter_specifier | @swift_source_file | @swift_statements | @swift_subscript_declaration | @swift_suppressed_constraint | @swift_switch_entry | @swift_switch_pattern | @swift_switch_statement | @swift_ternary_expression | @swift_throws_clause | @swift_token | @swift_try_expression | @swift_tuple_expression | @swift_tuple_type | @swift_tuple_type_item | @swift_type__ | @swift_type_annotation | @swift_type_arguments | @swift_type_constraint | @swift_type_constraints | @swift_type_modifiers | @swift_type_pack_expansion | @swift_type_parameter | @swift_type_parameter_modifiers | @swift_type_parameter_pack | @swift_type_parameters | @swift_typealias_declaration | @swift_user_type | @swift_value_argument | @swift_value_argument_label | @swift_value_arguments | @swift_value_binding_pattern | @swift_value_pack_expansion | @swift_value_parameter_pack | @swift_where_clause | @swift_while_statement | @swift_willset_clause | @swift_willset_didset_block +@swift_ast_node = @swift_additive_expression | @swift_array_literal | @swift_array_type | @swift_as_expression | @swift_assignment | @swift_associatedtype_declaration | @swift_attribute | @swift_availability_condition | @swift_await_expression | @swift_bitwise_operation | @swift_call_expression | @swift_call_suffix | @swift_capture_list | @swift_capture_list_item | @swift_catch_block | @swift_check_expression | @swift_class_body | @swift_class_declaration | @swift_comparison_expression | @swift_computed_getter | @swift_computed_modify | @swift_computed_property | @swift_computed_setter | @swift_conjunction_expression | @swift_constructor_expression | @swift_constructor_suffix | @swift_control_transfer_statement | @swift_deinit_declaration | @swift_deprecated_operator_declaration_body | @swift_dictionary_literal | @swift_dictionary_type | @swift_didset_clause | @swift_directive | @swift_directly_assignable_expression | @swift_disjunction_expression | @swift_do_statement | @swift_enum_class_body | @swift_enum_entry | @swift_enum_type_parameters | @swift_equality_constraint | @swift_equality_expression | @swift_existential_type | @swift_external_macro_definition | @swift_for_statement | @swift_function_body | @swift_function_declaration | @swift_function_type | @swift_getter_specifier | @swift_guard_statement | @swift_identifier | @swift_if_condition | @swift_if_let_binding | @swift_if_statement | @swift_implicitly_unwrapped_type | @swift_import_declaration | @swift_infix_expression | @swift_inheritance_constraint | @swift_inheritance_specifier | @swift_init_declaration | @swift_interpolated_expression | @swift_key_path_expression | @swift_key_path_string_expression | @swift_lambda_function_type | @swift_lambda_function_type_parameters | @swift_lambda_literal | @swift_lambda_parameter | @swift_line_string_literal | @swift_macro_declaration | @swift_macro_definition | @swift_macro_invocation | @swift_metatype | @swift_modifiers | @swift_modify_specifier | @swift_multi_line_string_literal | @swift_multiplicative_expression | @swift_navigation_expression | @swift_navigation_suffix | @swift_nested_type_identifier | @swift_nil_coalescing_expression | @swift_opaque_type | @swift_open_end_range_expression | @swift_open_start_range_expression | @swift_operator_declaration | @swift_optional_chain_marker | @swift_optional_type | @swift_parameter | @swift_parameter_modifiers | @swift_pattern | @swift_playground_literal | @swift_postfix_expression | @swift_precedence_group_attribute | @swift_precedence_group_attributes | @swift_precedence_group_declaration | @swift_prefix_expression | @swift_property_declaration | @swift_protocol_body | @swift_protocol_composition_type | @swift_protocol_declaration | @swift_protocol_function_declaration | @swift_protocol_property_declaration | @swift_protocol_property_requirements | @swift_range_expression | @swift_raw_str_interpolation | @swift_raw_string_literal | @swift_referenceable_operator | @swift_repeat_while_statement | @swift_selector_expression | @swift_setter_specifier | @swift_source_file | @swift_statements | @swift_subscript_declaration | @swift_suppressed_constraint | @swift_switch_entry | @swift_switch_pattern | @swift_switch_statement | @swift_ternary_expression | @swift_throws_clause | @swift_token | @swift_try_expression | @swift_tuple_expression | @swift_tuple_type | @swift_tuple_type_item | @swift_type__ | @swift_type_annotation | @swift_type_arguments | @swift_type_constraint | @swift_type_constraints | @swift_type_modifiers | @swift_type_pack_expansion | @swift_type_parameter | @swift_type_parameter_modifiers | @swift_type_parameter_pack | @swift_type_parameters | @swift_typealias_declaration | @swift_user_type | @swift_value_argument | @swift_value_argument_label | @swift_value_arguments | @swift_value_binding_pattern | @swift_value_pack_expansion | @swift_value_parameter_pack | @swift_where_clause | @swift_while_statement | @swift_willset_clause | @swift_willset_didset_block swift_ast_node_location( unique int node: @swift_ast_node ref, From ff5c0b40f161a41d0f14c4ad427640d5afd9cade Mon Sep 17 00:00:00 2001 From: Taus Date: Fri, 8 May 2026 21:26:25 +0000 Subject: [PATCH 257/260] unified: add supertypes for various kinds of declarations Hides a bunch of huge unions under (hopefully) sensible supertypes. --- .../extractor/tree-sitter-swift/grammar.js | 40 ++++++++------ .../tree-sitter-swift/node-types.yml | 54 ++++++++++++++++--- 2 files changed, 69 insertions(+), 25 deletions(-) diff --git a/unified/extractor/tree-sitter-swift/grammar.js b/unified/extractor/tree-sitter-swift/grammar.js index 22b5af18ffac..5dbfd7fdbbf2 100644 --- a/unified/extractor/tree-sitter-swift/grammar.js +++ b/unified/extractor/tree-sitter-swift/grammar.js @@ -84,7 +84,14 @@ if (tree_sitter_version_supports_emoji()) { module.exports = grammar({ name: "swift", - supertypes: ($) => [$.expression, $.unannotated_type], + supertypes: ($) => [ + $.expression, + $.unannotated_type, + $.global_declaration, + $.type_level_declaration, + $.local_declaration, + $.protocol_member_declaration, + ], conflicts: ($) => [ // @Type(... could either be an annotation constructor invocation or an annotated expression [$.attribute], @@ -1183,14 +1190,14 @@ module.exports = grammar({ _local_statement: ($) => choice( $.expression, - $._local_declaration, + $.local_declaration, $._labeled_statement, $.control_transfer_statement ), _top_level_statement: ($) => choice( $.expression, - $._global_declaration, + $.global_declaration, $._labeled_statement, $._throw_statement ), @@ -1298,7 +1305,7 @@ module.exports = grammar({ //////////////////////////////// // Declarations - https://docs.swift.org/swift-book/ReferenceManual/Declarations.html //////////////////////////////// - _global_declaration: ($) => + global_declaration: ($) => choice( $.import_declaration, $.property_declaration, @@ -1312,7 +1319,7 @@ module.exports = grammar({ $.associatedtype_declaration, $.macro_declaration ), - _type_level_declaration: ($) => + type_level_declaration: ($) => choice( $.import_declaration, $.property_declaration, @@ -1327,7 +1334,7 @@ module.exports = grammar({ $.precedence_group_declaration, $.associatedtype_declaration ), - _local_declaration: ($) => + local_declaration: ($) => choice( alias($._local_property_declaration, $.property_declaration), alias($._local_typealias_declaration, $.typealias_declaration), @@ -1598,7 +1605,7 @@ module.exports = grammar({ _class_member_separator: ($) => choice($._semi, $.multiline_comment), _class_member_declarations: ($) => seq( - sep1($._type_level_declaration, $._class_member_separator), + sep1($.type_level_declaration, $._class_member_separator), optional($._class_member_separator) ), _function_value_parameters: ($) => @@ -1666,7 +1673,7 @@ module.exports = grammar({ throws_clause: ($) => seq($._throws_keyword, "(", field("type", $.unannotated_type), ")"), enum_class_body: ($) => - seq("{", repeat(choice($.enum_entry, $._type_level_declaration)), "}"), + seq("{", repeat(choice($.enum_entry, $.type_level_declaration)), "}"), enum_entry: ($) => seq( optional($.modifiers), @@ -1718,16 +1725,10 @@ module.exports = grammar({ protocol_body: ($) => seq("{", optional($._protocol_member_declarations), "}"), _protocol_member_declarations: ($) => - seq(sep1($._protocol_member_declaration, $._semi), optional($._semi)), - _protocol_member_declaration: ($) => + seq(sep1($.protocol_member_declaration, $._semi), optional($._semi)), + protocol_member_declaration: ($) => choice( - alias( - seq( - $._bodyless_function_declaration, - optional(field("body", $.function_body)) - ), - $.protocol_function_declaration - ), + $.protocol_function_declaration, $.init_declaration, $.deinit_declaration, $.protocol_property_declaration, @@ -1735,6 +1736,11 @@ module.exports = grammar({ $.associatedtype_declaration, $.subscript_declaration ), + protocol_function_declaration: ($) => + seq( + $._bodyless_function_declaration, + optional(field("body", $.function_body)) + ), init_declaration: ($) => prec.right( seq( diff --git a/unified/extractor/tree-sitter-swift/node-types.yml b/unified/extractor/tree-sitter-swift/node-types.yml index 7b97a68afde6..c4bf650944b2 100644 --- a/unified/extractor/tree-sitter-swift/node-types.yml +++ b/unified/extractor/tree-sitter-swift/node-types.yml @@ -56,6 +56,44 @@ supertypes: - tuple_expression - value_pack_expansion - value_parameter_pack + global_declaration: + - associatedtype_declaration + - class_declaration + - function_declaration + - import_declaration + - init_declaration + - macro_declaration + - operator_declaration + - precedence_group_declaration + - property_declaration + - protocol_declaration + - typealias_declaration + local_declaration: + - class_declaration + - function_declaration + - property_declaration + - typealias_declaration + protocol_member_declaration: + - associatedtype_declaration + - deinit_declaration + - init_declaration + - protocol_function_declaration + - protocol_property_declaration + - subscript_declaration + - typealias_declaration + type_level_declaration: + - associatedtype_declaration + - class_declaration + - deinit_declaration + - function_declaration + - import_declaration + - init_declaration + - operator_declaration + - precedence_group_declaration + - property_declaration + - protocol_declaration + - subscript_declaration + - typealias_declaration unannotated_type: - array_type - dictionary_type @@ -128,7 +166,7 @@ named: target: expression type: type class_body: - $children*: [associatedtype_declaration, class_declaration, deinit_declaration, function_declaration, import_declaration, init_declaration, multiline_comment, operator_declaration, precedence_group_declaration, property_declaration, protocol_declaration, subscript_declaration, typealias_declaration] + $children*: [multiline_comment, type_level_declaration] class_declaration: $children*: [attribute, inheritance_modifier, inheritance_specifier, modifiers, ownership_modifier, property_behavior_modifier, type_constraints, type_parameters] body: [class_body, enum_class_body] @@ -188,7 +226,7 @@ named: $children*: [catch_block, statements] else: enum_class_body: - $children*: [associatedtype_declaration, class_declaration, deinit_declaration, enum_entry, function_declaration, import_declaration, init_declaration, operator_declaration, precedence_group_declaration, property_declaration, protocol_declaration, subscript_declaration, typealias_declaration] + $children*: [enum_entry, type_level_declaration] enum_entry: $children?: modifiers data_contents*: enum_type_parameters @@ -372,8 +410,7 @@ named: value*: expression property_modifier: protocol_body: - $children*: [associatedtype_declaration, deinit_declaration, init_declaration, protocol_function_declaration, protocol_property_declaration, subscript_declaration, typealias_declaration] - body*: protocol_function_declaration + $children*: protocol_member_declaration protocol_composition_type: $children+: unannotated_type protocol_declaration: @@ -382,9 +419,10 @@ named: declaration_kind: "protocol" name: type_identifier protocol_function_declaration: - $children*: [attribute, modifiers, parameter, statements, throws, throws_clause, type_constraints, type_parameters] + $children*: [attribute, modifiers, parameter, throws, throws_clause, type_constraints, type_parameters] + body?: function_body default_value*: expression - name?: [referenceable_operator, simple_identifier] + name: [referenceable_operator, simple_identifier] return_type?: [implicitly_unwrapped_type, type] protocol_property_declaration: $children+: [modifiers, protocol_property_requirements, type_annotation, type_constraints] @@ -421,11 +459,11 @@ named: shebang_line: simple_identifier: source_file: - $children*: [associatedtype_declaration, class_declaration, do_statement, expression, for_statement, function_declaration, guard_statement, import_declaration, init_declaration, macro_declaration, operator_declaration, precedence_group_declaration, property_declaration, protocol_declaration, repeat_while_statement, shebang_line, statement_label, throw_keyword, typealias_declaration, while_statement] + $children*: [do_statement, expression, for_statement, global_declaration, guard_statement, repeat_while_statement, shebang_line, statement_label, throw_keyword, while_statement] special_literal: statement_label: statements: - $children+: [class_declaration, control_transfer_statement, do_statement, expression, for_statement, function_declaration, guard_statement, property_declaration, repeat_while_statement, statement_label, typealias_declaration, while_statement] + $children+: [control_transfer_statement, do_statement, expression, for_statement, guard_statement, local_declaration, repeat_while_statement, statement_label, while_statement] str_escaped_char: subscript_declaration: $children+: [attribute, computed_property, modifiers, parameter, type_constraints, type_parameters] From 911e59caeff7330641234c35483e0027ef96f5bd Mon Sep 17 00:00:00 2001 From: Taus Date: Fri, 8 May 2026 21:26:32 +0000 Subject: [PATCH 258/260] unified: regenerate files --- unified/ql/lib/codeql/unified/Ast.qll | 25 ++++++++++------ unified/ql/lib/unified.dbscheme | 42 +++++++++++++-------------- 2 files changed, 37 insertions(+), 30 deletions(-) diff --git a/unified/ql/lib/codeql/unified/Ast.qll b/unified/ql/lib/codeql/unified/Ast.qll index 3ec274925a16..5b9491fdb9fe 100644 --- a/unified/ql/lib/codeql/unified/Ast.qll +++ b/unified/ql/lib/codeql/unified/Ast.qll @@ -1056,6 +1056,8 @@ module Swift { final override AstNode getAFieldOrChild() { swift_getter_specifier_child(this, _, result) } } + class GlobalDeclaration extends @swift_global_declaration, AstNode { } + /** A class representing `guard_statement` nodes. */ class GuardStatement extends @swift_guard_statement, AstNode { /** Gets the name of the primary QL class for this element. */ @@ -1422,6 +1424,8 @@ module Swift { } } + class LocalDeclaration extends @swift_local_declaration, AstNode { } + /** A class representing `macro_declaration` nodes. */ class MacroDeclaration extends @swift_macro_declaration, AstNode { /** Gets the name of the primary QL class for this element. */ @@ -1923,16 +1927,11 @@ module Swift { /** Gets the name of the primary QL class for this element. */ final override string getAPrimaryQlClass() { result = "ProtocolBody" } - /** Gets the node corresponding to the field `body`. */ - final ProtocolFunctionDeclaration getBody(int i) { swift_protocol_body_body(this, i, result) } - /** Gets the `i`th child of this node. */ - final AstNode getChild(int i) { swift_protocol_body_child(this, i, result) } + final ProtocolMemberDeclaration getChild(int i) { swift_protocol_body_child(this, i, result) } /** Gets a field or child node of this node. */ - final override AstNode getAFieldOrChild() { - swift_protocol_body_body(this, _, result) or swift_protocol_body_child(this, _, result) - } + final override AstNode getAFieldOrChild() { swift_protocol_body_child(this, _, result) } } /** A class representing `protocol_composition_type` nodes. */ @@ -1983,13 +1982,16 @@ module Swift { /** Gets the name of the primary QL class for this element. */ final override string getAPrimaryQlClass() { result = "ProtocolFunctionDeclaration" } + /** Gets the node corresponding to the field `body`. */ + final FunctionBody getBody() { swift_protocol_function_declaration_body(this, result) } + /** Gets the node corresponding to the field `default_value`. */ final Expression getDefaultValue(int i) { swift_protocol_function_declaration_default_value(this, i, result) } /** Gets the node corresponding to the field `name`. */ - final AstNode getName() { swift_protocol_function_declaration_name(this, result) } + final AstNode getName() { swift_protocol_function_declaration_def(this, result) } /** Gets the node corresponding to the field `return_type`. */ final AstNode getReturnType() { swift_protocol_function_declaration_return_type(this, result) } @@ -1999,13 +2001,16 @@ module Swift { /** Gets a field or child node of this node. */ final override AstNode getAFieldOrChild() { + swift_protocol_function_declaration_body(this, result) or swift_protocol_function_declaration_default_value(this, _, result) or - swift_protocol_function_declaration_name(this, result) or + swift_protocol_function_declaration_def(this, result) or swift_protocol_function_declaration_return_type(this, result) or swift_protocol_function_declaration_child(this, _, result) } } + class ProtocolMemberDeclaration extends @swift_protocol_member_declaration, AstNode { } + /** A class representing `protocol_property_declaration` nodes. */ class ProtocolPropertyDeclaration extends @swift_protocol_property_declaration, AstNode { /** Gets the name of the primary QL class for this element. */ @@ -2542,6 +2547,8 @@ module Swift { final override string getAPrimaryQlClass() { result = "TypeIdentifier" } } + class TypeLevelDeclaration extends @swift_type_level_declaration, AstNode { } + /** A class representing `type_modifiers` nodes. */ class TypeModifiers extends @swift_type_modifiers, AstNode { /** Gets the name of the primary QL class for this element. */ diff --git a/unified/ql/lib/unified.dbscheme b/unified/ql/lib/unified.dbscheme index a01eb65170ca..b50bc56eaa2a 100644 --- a/unified/ql/lib/unified.dbscheme +++ b/unified/ql/lib/unified.dbscheme @@ -356,7 +356,7 @@ swift_check_expression_def( int type__: @swift_type__ ref ); -@swift_class_body_child_type = @swift_associatedtype_declaration | @swift_class_declaration | @swift_deinit_declaration | @swift_function_declaration | @swift_import_declaration | @swift_init_declaration | @swift_operator_declaration | @swift_precedence_group_declaration | @swift_property_declaration | @swift_protocol_declaration | @swift_subscript_declaration | @swift_token_multiline_comment | @swift_typealias_declaration +@swift_class_body_child_type = @swift_token_multiline_comment | @swift_type_level_declaration #keyset[swift_class_body, index] swift_class_body_child( @@ -626,7 +626,7 @@ swift_do_statement_def( unique int id: @swift_do_statement ); -@swift_enum_class_body_child_type = @swift_associatedtype_declaration | @swift_class_declaration | @swift_deinit_declaration | @swift_enum_entry | @swift_function_declaration | @swift_import_declaration | @swift_init_declaration | @swift_operator_declaration | @swift_precedence_group_declaration | @swift_property_declaration | @swift_protocol_declaration | @swift_subscript_declaration | @swift_typealias_declaration +@swift_enum_class_body_child_type = @swift_enum_entry | @swift_type_level_declaration #keyset[swift_enum_class_body, index] swift_enum_class_body_child( @@ -805,6 +805,8 @@ swift_getter_specifier_def( unique int id: @swift_getter_specifier ); +@swift_global_declaration = @swift_associatedtype_declaration | @swift_class_declaration | @swift_function_declaration | @swift_import_declaration | @swift_init_declaration | @swift_macro_declaration | @swift_operator_declaration | @swift_precedence_group_declaration | @swift_property_declaration | @swift_protocol_declaration | @swift_typealias_declaration + #keyset[swift_guard_statement, index] swift_guard_statement_condition( int swift_guard_statement: @swift_guard_statement ref, @@ -1107,6 +1109,8 @@ swift_line_string_literal_def( unique int id: @swift_line_string_literal ); +@swift_local_declaration = @swift_class_declaration | @swift_function_declaration | @swift_property_declaration | @swift_typealias_declaration + #keyset[swift_macro_declaration, index] swift_macro_declaration_default_value( int swift_macro_declaration: @swift_macro_declaration ref, @@ -1438,20 +1442,11 @@ swift_property_declaration_def( unique int id: @swift_property_declaration ); -#keyset[swift_protocol_body, index] -swift_protocol_body_body( - int swift_protocol_body: @swift_protocol_body ref, - int index: int ref, - unique int body: @swift_protocol_function_declaration ref -); - -@swift_protocol_body_child_type = @swift_associatedtype_declaration | @swift_deinit_declaration | @swift_init_declaration | @swift_protocol_function_declaration | @swift_protocol_property_declaration | @swift_subscript_declaration | @swift_typealias_declaration - #keyset[swift_protocol_body, index] swift_protocol_body_child( int swift_protocol_body: @swift_protocol_body ref, int index: int ref, - unique int child: @swift_protocol_body_child_type ref + unique int child: @swift_protocol_member_declaration ref ); swift_protocol_body_def( @@ -1490,6 +1485,11 @@ swift_protocol_declaration_def( int name: @swift_token_type_identifier ref ); +swift_protocol_function_declaration_body( + unique int swift_protocol_function_declaration: @swift_protocol_function_declaration ref, + unique int body: @swift_function_body ref +); + #keyset[swift_protocol_function_declaration, index] swift_protocol_function_declaration_default_value( int swift_protocol_function_declaration: @swift_protocol_function_declaration ref, @@ -1499,11 +1499,6 @@ swift_protocol_function_declaration_default_value( @swift_protocol_function_declaration_name_type = @swift_referenceable_operator | @swift_token_simple_identifier -swift_protocol_function_declaration_name( - unique int swift_protocol_function_declaration: @swift_protocol_function_declaration ref, - unique int name: @swift_protocol_function_declaration_name_type ref -); - @swift_protocol_function_declaration_return_type_type = @swift_implicitly_unwrapped_type | @swift_type__ swift_protocol_function_declaration_return_type( @@ -1511,7 +1506,7 @@ swift_protocol_function_declaration_return_type( unique int return_type: @swift_protocol_function_declaration_return_type_type ref ); -@swift_protocol_function_declaration_child_type = @swift_attribute | @swift_modifiers | @swift_parameter | @swift_statements | @swift_throws_clause | @swift_token_throws | @swift_type_constraints | @swift_type_parameters +@swift_protocol_function_declaration_child_type = @swift_attribute | @swift_modifiers | @swift_parameter | @swift_throws_clause | @swift_token_throws | @swift_type_constraints | @swift_type_parameters #keyset[swift_protocol_function_declaration, index] swift_protocol_function_declaration_child( @@ -1521,9 +1516,12 @@ swift_protocol_function_declaration_child( ); swift_protocol_function_declaration_def( - unique int id: @swift_protocol_function_declaration + unique int id: @swift_protocol_function_declaration, + int name: @swift_protocol_function_declaration_name_type ref ); +@swift_protocol_member_declaration = @swift_associatedtype_declaration | @swift_deinit_declaration | @swift_init_declaration | @swift_protocol_function_declaration | @swift_protocol_property_declaration | @swift_subscript_declaration | @swift_typealias_declaration + @swift_protocol_property_declaration_child_type = @swift_modifiers | @swift_protocol_property_requirements | @swift_type_annotation | @swift_type_constraints #keyset[swift_protocol_property_declaration, index] @@ -1644,7 +1642,7 @@ swift_setter_specifier_def( unique int id: @swift_setter_specifier ); -@swift_source_file_child_type = @swift_associatedtype_declaration | @swift_class_declaration | @swift_do_statement | @swift_expression | @swift_for_statement | @swift_function_declaration | @swift_guard_statement | @swift_import_declaration | @swift_init_declaration | @swift_macro_declaration | @swift_operator_declaration | @swift_precedence_group_declaration | @swift_property_declaration | @swift_protocol_declaration | @swift_repeat_while_statement | @swift_token_shebang_line | @swift_token_statement_label | @swift_token_throw_keyword | @swift_typealias_declaration | @swift_while_statement +@swift_source_file_child_type = @swift_do_statement | @swift_expression | @swift_for_statement | @swift_global_declaration | @swift_guard_statement | @swift_repeat_while_statement | @swift_token_shebang_line | @swift_token_statement_label | @swift_token_throw_keyword | @swift_while_statement #keyset[swift_source_file, index] swift_source_file_child( @@ -1657,7 +1655,7 @@ swift_source_file_def( unique int id: @swift_source_file ); -@swift_statements_child_type = @swift_class_declaration | @swift_control_transfer_statement | @swift_do_statement | @swift_expression | @swift_for_statement | @swift_function_declaration | @swift_guard_statement | @swift_property_declaration | @swift_repeat_while_statement | @swift_token_statement_label | @swift_typealias_declaration | @swift_while_statement +@swift_statements_child_type = @swift_control_transfer_statement | @swift_do_statement | @swift_expression | @swift_for_statement | @swift_guard_statement | @swift_local_declaration | @swift_repeat_while_statement | @swift_token_statement_label | @swift_while_statement #keyset[swift_statements, index] swift_statements_child( @@ -1855,6 +1853,8 @@ swift_type_constraints_def( unique int id: @swift_type_constraints ); +@swift_type_level_declaration = @swift_associatedtype_declaration | @swift_class_declaration | @swift_deinit_declaration | @swift_function_declaration | @swift_import_declaration | @swift_init_declaration | @swift_operator_declaration | @swift_precedence_group_declaration | @swift_property_declaration | @swift_protocol_declaration | @swift_subscript_declaration | @swift_typealias_declaration + #keyset[swift_type_modifiers, index] swift_type_modifiers_child( int swift_type_modifiers: @swift_type_modifiers ref, From b0e23a73d229aacc25731dd0f747e2dfacd10852 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 13 May 2026 00:50:12 +0000 Subject: [PATCH 259/260] Add changed framework coverage reports --- .../library-coverage/coverage.csv | 592 +++++++++--------- 1 file changed, 296 insertions(+), 296 deletions(-) diff --git a/java/documentation/library-coverage/coverage.csv b/java/documentation/library-coverage/coverage.csv index 1fc91c3c8499..f99bbd1ed975 100644 --- a/java/documentation/library-coverage/coverage.csv +++ b/java/documentation/library-coverage/coverage.csv @@ -1,296 +1,296 @@ -package,sink,source,summary,sink:bean-validation,sink:command-injection,sink:credentials-key,sink:credentials-password,sink:credentials-username,sink:encryption-iv,sink:encryption-salt,sink:environment-injection,sink:file-content-store,sink:fragment-injection,sink:groovy-injection,sink:hostname-verification,sink:html-injection,sink:information-leak,sink:intent-redirection,sink:jexl-injection,sink:jndi-injection,sink:js-injection,sink:ldap-injection,sink:log-injection,sink:mvel-injection,sink:notification,sink:ognl-injection,sink:path-injection,sink:pending-intents,sink:regex-use,sink:regex-use[-1],sink:regex-use[0],sink:regex-use[],sink:regex-use[f-1],sink:regex-use[f1],sink:regex-use[f],sink:request-forgery,sink:response-splitting,sink:sql-injection,sink:template-injection,sink:trust-boundary-violation,sink:unsafe-deserialization,sink:url-forward,sink:url-redirection,sink:xpath-injection,sink:xslt-injection,source:android-external-storage-dir,source:contentprovider,source:database,source:environment,source:file,source:remote,summary:taint,summary:value -actions.osgi,,,6,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,6, -android.app,77,,103,,,,,,,,,,11,,,,,7,,,,,,,42,,,17,,,,,,,,,,,,,,,,,,,,,,,,18,85 -android.content,24,31,154,,,,,,,,,,,,,,,16,,,,,,,,,,,,,,,,,,,,8,,,,,,,,4,27,,,,,63,91 -android.database,59,,41,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,59,,,,,,,,,,,,,,41, -android.net,,,60,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,45,15 -android.os,1,2,122,,,,,,,,,,,,,,,,,,,,,,,,1,,,,,,,,,,,,,,,,,,,2,,,,,,41,81 -android.support.v4.app,11,,,,,,,,,,,,11,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -android.util,6,16,,,,,,,,,,,,,,,,,,,,,6,,,,,,,,,,,,,,,,,,,,,,,,,,,,16,, -android.webkit,3,2,,,,,,,,,,,,,,2,,,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2,, -android.widget,,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,1, -androidx.core.app,47,,95,,,,,,,,,,,,,,,,,,,,,,41,,,6,,,,,,,,,,,,,,,,,,,,,,,,12,83 -androidx.fragment.app,11,,,,,,,,,,,,11,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -androidx.slice,2,5,88,,,,,,,,,,,,,,,,,,,,,,,,,2,,,,,,,,,,,,,,,,,,,5,,,,,27,61 -antlr,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1, -ch.ethz.ssh2,2,,,,,,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -cn.hutool.core.codec,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1, -com.alibaba.com.caucho.hessian.io,2,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2,,,,,,,,,,,, -com.alibaba.druid.sql,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,,,,,,,,,,,,,,1, -com.alibaba.fastjson2,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1, -com.amazonaws.auth,2,,,,,2,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -com.auth0.jwt.algorithms,6,,,,,6,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -com.azure.identity,3,,,,,1,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -com.caucho.burlap.io,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,,,,,,,,,,,, -com.caucho.hessian.io,2,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2,,,,,,,,,,,, -com.cedarsoftware.util.io,2,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2,,,,,,,,,,,, -com.couchbase.client.core.env,15,,1,,,,9,6,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1, -com.couchbase.client.java,10,,,,,,2,2,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,6,,,,,,,,,,,,,,, -com.esotericsoftware.kryo.io,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1, -com.esotericsoftware.kryo5.io,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1, -com.esotericsoftware.yamlbeans,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,,,,,,,,,,,, -com.fasterxml.jackson.core,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1, -com.fasterxml.jackson.databind,2,,8,,,,,,,,,,,,,,,,,,,,,,,,2,,,,,,,,,,,,,,,,,,,,,,,,,8, -com.google.common.base,4,,87,,,,,,,,,,,,,,,,,,,,,,,,,,,,3,1,,,,,,,,,,,,,,,,,,,,63,24 -com.google.common.cache,,,17,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,17 -com.google.common.collect,,,553,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2,551 -com.google.common.flogger,29,,,,,,,,,,,,,,,,,,,,,,29,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -com.google.common.io,10,,73,,,,,,,,,1,,,,,,,,,,,,,,,9,,,,,,,,,,,,,,,,,,,,,,,,,72,1 -com.google.gson,,,52,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,38,14 -com.hubspot.jinjava,2,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2,,,,,,,,,,,,,, -com.jcraft.jsch,5,,1,,,,2,2,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,,,,,,,,,,,,,,,,1, -com.microsoft.sqlserver.jdbc,4,,,,,,2,2,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -com.mitchellbosecke.pebble,2,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2,,,,,,,,,,,,,, -com.mongodb,10,,,,,,4,6,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -com.opensymphony.xwork2,56,,961,,,,,,,,,,,,,,,,,,,,,,,56,,,,,,,,,,,,,,,,,,,,,,,,,,867,94 -com.rabbitmq.client,,21,7,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,21,7, -com.sshtools.j2ssh.authentication,3,,,,,,1,2,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -com.sun.crypto.provider,19,,,,,17,2,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -com.sun.jndi.ldap,4,,,,,,,4,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -com.sun.net.httpserver,3,,,,,,1,2,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -com.sun.net.ssl,3,,,,,,3,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -com.sun.rowset,3,,,,,,2,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -com.sun.security.auth.module,2,,,,,,2,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -com.sun.security.ntlm,5,,,,,,3,2,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -com.sun.security.sasl.digest,3,,,,,,2,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -com.thoughtworks.xstream,1,,,,,,,,,,,,,,,,,,,,,,,,,,1,,,,,,,,,,,,,,,,,,,,,,,,,, -com.trilead.ssh2,13,,,,,2,4,7,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -com.unboundid.ldap.sdk,17,,,,,,,,,,,,,,,,,,,,,17,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -com.zaxxer.hikari,2,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2,,,,,,,,,,,,,,,,, -flexjson,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1 -freemarker.cache,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,,,,,,,,,,,,,, -freemarker.template,7,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,7,,,,,,,,,,,,,, -groovy.lang,26,,,,,,,,,,,,,26,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -groovy.text,1,,,,,,,,,,,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -groovy.util,5,,,,,,,,,,,,,5,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -hudson,75,9,2648,,4,,,,,,3,2,,,,4,,,,,,,,,,,56,,,,,,,,,6,,,,,,,,,,,,,,5,4,2572,76 -io.jsonwebtoken,,2,4,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2,4, -io.netty.bootstrap,3,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,3,,,,,,,,,,,,,,,,, -io.netty.buffer,,,207,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,130,77 -io.netty.channel,9,2,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9,,,,,,,,,,,,,,,2,, -io.netty.handler.codec,4,13,259,,,,,,,,,,,,,,,,,,,,,,,,1,,,,,,,,,3,,,,,,,,,,,,,,,13,143,116 -io.netty.handler.ssl,4,,,,,,,,,,,,,,,,,,,,,,,,,,4,,,,,,,,,,,,,,,,,,,,,,,,,, -io.netty.handler.stream,1,,,,,,,,,,,,,,,,,,,,,,,,,,1,,,,,,,,,,,,,,,,,,,,,,,,,, -io.netty.resolver,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1, -io.netty.util,2,,23,,,,,,,,,,,,,,,,,,,,,,,,1,,,,,,,,,1,,,,,,,,,,,,,,,,21,2 -io.undertow.server.handlers.resource,1,,3,,,,,,,,,,,,,,,,,,,,,,,,1,,,,,,,,,,,,,,,,,,,,,,,,,3, -jakarta.activation,2,,2,,,,,,,,,,,,,,,,,,,,,,,,1,,,,,,,,,1,,,,,,,,,,,,,,,,2, -jakarta.faces.context,4,7,,,,,,,,,,,,,,2,,,,,,,,,,,2,,,,,,,,,,,,,,,,,,,,,,,,7,, -jakarta.json,,,123,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,100,23 -jakarta.persistence,2,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2,,,,,,,,,,,,,,1, -jakarta.servlet,2,26,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2,,,,,,,,,26,, -jakarta.ws.rs.client,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,,,,,,,,,,,,,,,,, -jakarta.ws.rs.container,,9,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9,, -jakarta.ws.rs.core,2,,149,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2,,,,,,,,,94,55 -jakarta.xml.bind.attachment,,2,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2,, -java.applet,,,11,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11, -java.awt,1,,3,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,,,,,,,,,,3 -java.beans,1,,177,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,,,,,,,,,,,82,95 -java.io,66,1,225,,,,,,,,,22,,,,,,,,,,,,,,,44,,,,,,,,,,,,,,,,,,,,,,,1,,202,23 -java.lang,38,3,790,,13,,,,,,1,,,,,,,,,,,,8,,,,11,,,4,,,1,,,,,,,,,,,,,,,,3,,,510,280 -java.math,,,9,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9 -java.net,23,3,347,,,,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,21,,,,,,,,,,,,,,,3,248,99 -java.nio,47,,499,,,,,,,,,5,,,,,,,,,,,,,,,41,,,,,,,,,1,,,,,,,,,,,,,,,,302,197 -java.rmi,,,68,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,45,23 -java.security,21,,583,,,11,10,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,285,298 -java.sql,15,1,292,,,,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,4,,9,,,,,,,,,,1,,,,274,18 -java.text,,,154,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,72,82 -java.time,,,131,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,27,104 -java.util,48,2,1340,,,,,,,,,1,,,,,,,,,,,34,,,,3,,,,5,2,,1,2,,,,,,,,,,,,,,2,,,558,782 -javafx.scene.web,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,,,,,,,,,,,,,,,,, -javax.accessibility,,,63,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,28,35 -javax.activation,2,,7,,,,,,,,,,,,,,,,,,,,,,,,1,,,,,,,,,1,,,,,,,,,,,,,,,,7, -javax.annotation.processing,,,28,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,25,3 -javax.crypto,19,,140,,,12,3,,2,2,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,76,64 -javax.faces.context,4,7,,,,,,,,,,,,,,2,,,,,,,,,,,2,,,,,,,,,,,,,,,,,,,,,,,,7,, -javax.imageio,1,,304,,,,,,,,,,,,,,,,,,,,,,,,1,,,,,,,,,,,,,,,,,,,,,,,,,138,166 -javax.jms,,9,57,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9,57, -javax.json,,,123,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,100,23 -javax.lang.model,,,277,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,217,60 -javax.management,2,,766,,,,,,,,,,,,,,,,,2,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,363,403 -javax.naming,7,,341,,,,,,,,,,,,,,,,,6,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,191,150 -javax.net,4,,136,,,,2,,,,,,,,2,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,87,49 -javax.portlet,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,,,,,,,,,,, -javax.print,2,,133,,,,,2,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,102,31 -javax.rmi.ssl,,,6,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,6 -javax.script,1,,50,,,,,,,,,,,,,,,,,,,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,14,36 -javax.security.auth,7,,147,,,4,3,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,50,97 -javax.security.cert,,,5,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,5, -javax.security.sasl,,,49,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,42,7 -javax.servlet,10,29,3,,,,,,,,,,,,,,1,,,,,,,,,,2,,,,,,,,,,3,,,2,,2,,,,,,,,,29,3, -javax.smartcardio,,,34,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,24,10 -javax.sound.midi,,,60,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,51,9 -javax.sound.sampled,,,90,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,53,37 -javax.sql,7,,126,,,,4,3,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,68,58 -javax.tools,,,66,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,62,4 -javax.transaction.xa,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1, -javax.validation,1,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,, -javax.ws.rs.client,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,,,,,,,,,,,,,,,,, -javax.ws.rs.container,,9,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9,, -javax.ws.rs.core,3,,149,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,,,,,,2,,,,,,,,,94,55 -javax.xml.bind.attachment,,2,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2,, -javax.xml.catalog,,,12,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11,1 -javax.xml.crypto,,,269,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,172,97 -javax.xml.datatype,,,6,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,5,1 -javax.xml.namespace,,,15,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,5,10 -javax.xml.parsers,,,37,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,35,2 -javax.xml.stream,,,221,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,201,20 -javax.xml.transform,2,,134,,,,,,,,,,,,,,,,,,,,,,,,1,,,,,,,,,,,,,,,,,,1,,,,,,,72,62 -javax.xml.validation,,,29,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,29, -javax.xml.xpath,3,,26,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,3,,,,,,,,26, -jenkins,,,523,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,500,23 -jodd.json,,,10,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10 -kotlin,16,,1849,,,,,,,,,,,,,,,,,,,,,,,,14,,,,,,,,,2,,,,,,,,,,,,,,,,1836,13 -liquibase.database.jvm,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,,,,,,,,,,,,,,, -liquibase.statement.core,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,,,,,,,,,,,,,,, -net.lingala.zip4j,2,,,,,,,,,,,,,,,,,,,,,,,,,,2,,,,,,,,,,,,,,,,,,,,,,,,,, -net.schmizz.sshj,4,,,,,,2,2,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -net.sf.json,2,,338,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2,,,,,,,,,,,,,,,,321,17 -net.sf.saxon.s9api,5,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,5,,,,,,,, -ognl,6,,,,,,,,,,,,,,,,,,,,,,,,,6,,,,,,,,,,,,,,,,,,,,,,,,,,, -okhttp3,4,,50,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,4,,,,,,,,,,,,,,,,23,27 -org.acegisecurity,,,49,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,49, -org.antlr.runtime,1,,,,,,,,,,,,,,,,,,,,,,,,,,1,,,,,,,,,,,,,,,,,,,,,,,,,, -org.apache.commons.codec,,,6,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,6, -org.apache.commons.collections,,,800,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,17,783 -org.apache.commons.collections4,,,806,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,17,789 -org.apache.commons.compress.archivers.tar,,,4,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,4, -org.apache.commons.exec,10,,,,6,,,,,,4,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -org.apache.commons.fileupload,,11,4,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11,4, -org.apache.commons.httpclient.util,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1, -org.apache.commons.io,124,,570,,,,,,,,,4,,,,,,,,,,,,,,,105,,,,,,,,,15,,,,,,,,,,,,,,,,556,14 -org.apache.commons.jelly,6,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,6,,,,,,,,,,,,,,,,, -org.apache.commons.jexl2,15,,,,,,,,,,,,,,,,,,15,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -org.apache.commons.jexl3,15,,,,,,,,,,,,,,,,,,15,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -org.apache.commons.lang,1,,767,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,,,,,,,,,,,596,171 -org.apache.commons.lang3,7,,425,,,,,,,,,,,,,,,,,,,,,,,,,,6,,,,,,,,,,,,1,,,,,,,,,,,294,131 -org.apache.commons.logging,6,,,,,,,,,,,,,,,,,,,,,,6,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -org.apache.commons.net,13,12,,,,,2,2,,,,,,,,,,,,,,,,,,,3,,,,,,,,,6,,,,,,,,,,,,,,,12,, -org.apache.commons.ognl,6,,,,,,,,,,,,,,,,,,,,,,,,,6,,,,,,,,,,,,,,,,,,,,,,,,,,, -org.apache.commons.text,,,272,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,220,52 -org.apache.cxf.catalog,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,,,,,,,,,,,,,,,,, -org.apache.cxf.common.classloader,3,,,,,,,,,,,,,,,,,,,,,,,,,,1,,,,,,,,,2,,,,,,,,,,,,,,,,, -org.apache.cxf.common.jaxb,1,,,,,,,,,,,,,,,,,,,,,,,,,,1,,,,,,,,,,,,,,,,,,,,,,,,,, -org.apache.cxf.common.logging,6,,,,,,,,,,,,,,,,,,,,,,6,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -org.apache.cxf.configuration.jsse,2,,,,,,,,,,,,,,1,,,,,,,,,,,,1,,,,,,,,,,,,,,,,,,,,,,,,,, -org.apache.cxf.helpers,10,,,,,,,,,,,,,,,,,,,,,,,,,,5,,,,,,,,,,,,,,,,,5,,,,,,,,, -org.apache.cxf.resource,9,,,,,,,,,,,,,,,,,,,,,,,,,,4,,,,,,,,,5,,,,,,,,,,,,,,,,, -org.apache.cxf.staxutils,1,,,,,,,,,,,,,,,,,,,,,,,,,,1,,,,,,,,,,,,,,,,,,,,,,,,,, -org.apache.cxf.tools.corba.utils,4,,,,,,,,,,,,,,,,,,,,,,,,,,4,,,,,,,,,,,,,,,,,,,,,,,,,, -org.apache.cxf.tools.util,10,,,,,,,,,,,,,,,,,,,,,,,,,,10,,,,,,,,,,,,,,,,,,,,,,,,,, -org.apache.cxf.transform,3,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,3,,,,,,,, -org.apache.directory.ldap.client.api,1,,,,,,,,,,,,,,,,,,,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -org.apache.hadoop.fs,3,,11,,,,,,,,,,,,,,,,,,,,,,,,3,,,,,,,,,,,,,,,,,,,,,,,,,11, -org.apache.hadoop.hive.metastore,3,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,3,,,,,,,,,,,,,,, -org.apache.hadoop.hive.ql.exec,1,,1,,,,,,,,,,,,,,,,,,,,,,,,1,,,,,,,,,,,,,,,,,,,,,,,,,1, -org.apache.hadoop.hive.ql.metadata,1,,,,,,,,,,,,,,,,,,,,,,,,,,1,,,,,,,,,,,,,,,,,,,,,,,,,, -org.apache.hc.client5.http.async.methods,84,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,84,,,,,,,,,,,,,,,,, -org.apache.hc.client5.http.classic.methods,37,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,37,,,,,,,,,,,,,,,,, -org.apache.hc.client5.http.fluent,19,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,19,,,,,,,,,,,,,,,,, -org.apache.hc.core5.benchmark,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,,,,,,,,,,,,,,,,, -org.apache.hc.core5.function,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1, -org.apache.hc.core5.http,73,2,45,,,,,,,,,,,,,1,,,,,,,,,,,,,,,,,,,,72,,,,,,,,,,,,,,,2,45, -org.apache.hc.core5.net,,,18,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,18, -org.apache.hc.core5.util,,,24,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,18,6 -org.apache.hive.hcatalog.templeton,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,,,,,,,,,,,,,,, -org.apache.http,48,3,95,,,,,,,,,,,,,2,,,,,,,,,,,,,,,,,,,,46,,,,,,,,,,,,,,,3,86,9 -org.apache.ibatis.jdbc,6,,57,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,6,,,,,,,,,,,,,,57, -org.apache.ibatis.mapping,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1, -org.apache.log4j,11,,,,,,,,,,,,,,,,,,,,,,11,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -org.apache.logging.log4j,359,,8,,,,,,,,,,,,,,,,,,,,359,,,,,,,,,,,,,,,,,,,,,,,,,,,,,4,4 -org.apache.shiro.authc,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,, -org.apache.shiro.codec,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1, -org.apache.shiro.jndi,1,,,,,,,,,,,,,,,,,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -org.apache.shiro.mgt,1,,,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -org.apache.sshd.client.session,3,,,,,,1,2,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -org.apache.struts.beanvalidation.validation.interceptor,,,4,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,4, -org.apache.struts2,14,,3873,,,,,,,,,,,,,,,,,,,,,,,11,,,,,,,,,,,,,,3,,,,,,,,,,,,3839,34 -org.apache.tools.ant,14,,,,1,,,,,,,,,,,,,,,,,,,,,,13,,,,,,,,,,,,,,,,,,,,,,,,,, -org.apache.tools.zip,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1, -org.apache.velocity.app,4,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,4,,,,,,,,,,,,,, -org.apache.velocity.runtime,4,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,4,,,,,,,,,,,,,, -org.codehaus.cargo.container.installer,3,,,,,,,,,,,,,,,,,,,,,,,,,,2,,,,,,,,,1,,,,,,,,,,,,,,,,, -org.codehaus.groovy.control,1,,,,,,,,,,,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -org.dom4j,20,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,20,,,,,,,,, -org.eclipse.jetty.client,2,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2,,,,,,,,,,,,,,,,, -org.exolab.castor.xml,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,,,,,,,,,,,, -org.fusesource.leveldbjni,1,,,,,,,,,,,,,,,,,,,,,,,,,,1,,,,,,,,,,,,,,,,,,,,,,,,,, -org.geogebra.web.full.main,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,,,,,,,,,, -org.gradle.api.file,,,3,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,3, -org.hibernate,10,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10,,,,,,,,,,,,,,, -org.ho.yaml,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,8,,,,,,,,,,,, -org.influxdb,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,,,,,,,,,,,,,,,,, -org.jabsorb,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,,,,,,,,,,,, -org.jboss.logging,324,,,,,,,,,,,,,,,,,,,,,,324,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -org.jboss.vfs,1,,,,,,,,,,,,,,,,,,,,,,,,,,1,,,,,,,,,,,,,,,,,,,,,,,,,, -org.jdbi.v3.core,6,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,6,,,,,,,,,,,,,,,,, -org.jenkins.ui.icon,,,49,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,48,1 -org.jenkins.ui.symbol,,,33,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,25,8 -org.jooq,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,,,,,,,,,,,,,,, -org.json,,,236,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,198,38 -org.keycloak.models.map.storage,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,,,,,,,,,,,,,,, -org.kohsuke.stapler,20,24,363,,,,,,,,,,,,,2,,,,,,,,,,,9,,,,,,,,,3,,,,,,1,5,,,,,,,,24,352,11 -org.lastaflute.web,,1,4,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,4, -org.mvel2,16,,,,,,,,,,,,,,,,,,,,,,,16,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -org.openjdk.jmh.runner.options,1,,,,,,,,,,,,,,,,,,,,,,,,,,1,,,,,,,,,,,,,,,,,,,,,,,,,, -org.owasp.esapi,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1, -org.pac4j.jwt.config.encryption,4,,,,,4,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -org.pac4j.jwt.config.signature,4,,,,,4,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -org.scijava.log,13,,,,,,,,,,,,,,,,,,,,,,13,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -org.slf4j,55,,6,,,,,,,,,,,,,,,,,,,,55,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2,4 -org.springframework.beans,,,30,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,30 -org.springframework.boot.jdbc,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,,,,,,,,,,,,,,,,, -org.springframework.cache,,,13,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,13 -org.springframework.context,,,3,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,3, -org.springframework.core.io,17,,6,,,,,,,,,,,,,,,,,,,,,,,,16,,,,,,,,,1,,,,,,,,,,,,,,,,6, -org.springframework.data.repository,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1 -org.springframework.http,14,,77,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14,,,,,,,,,,,,,,,,67,10 -org.springframework.jdbc.core,19,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,19,,,,,,,,,,,,,,, -org.springframework.jdbc.datasource,4,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,4,,,,,,,,,,,,,,,,, -org.springframework.jdbc.object,9,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9,,,,,,,,,,,,,,, -org.springframework.jndi,1,,,,,,,,,,,,,,,,,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -org.springframework.ldap,47,,,,,,,,,,,,,,,,,,,33,,14,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -org.springframework.security.core.userdetails,2,,,,,,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -org.springframework.security.web.savedrequest,,6,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,6,, -org.springframework.ui,,,32,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,32 -org.springframework.util,10,,142,,,,,,,,,,,,,,,,,,,,,,,,10,,,,,,,,,,,,,,,,,,,,,,,,,90,52 -org.springframework.validation,,,13,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,13, -org.springframework.web.client,13,3,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,13,,,,,,,,,,,,,,,3,, -org.springframework.web.context.request,,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,8,, -org.springframework.web.multipart,,12,12,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12,12, -org.springframework.web.portlet,2,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2,,,,,,,,,,, -org.springframework.web.reactive.function.client,2,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2,,,,,,,,,,,,,,,,, -org.springframework.web.servlet,2,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2,,,,,,,,,,, -org.springframework.web.socket,,8,6,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,8,6, -org.springframework.web.util,,9,159,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9,134,25 -org.thymeleaf,2,,2,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2,,,,,,,,,,,,,2, -org.xml.sax,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1, -org.xmlpull.v1,,3,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,3,, -org.yaml.snakeyaml,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1, -play.libs.ws,2,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2,,,,,,,,,,,,,,,,, -play.mvc,1,13,24,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,,,,,,,,,,,13,24, -ratpack.core.form,,,3,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,3, -ratpack.core.handling,,6,4,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,6,4, -ratpack.core.http,,10,10,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10,10, -ratpack.exec,,,48,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,48 -ratpack.form,,,3,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,3, -ratpack.func,,,35,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,35 -ratpack.handling,,6,4,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,6,4, -ratpack.http,,10,10,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10,10, -ratpack.util,,,35,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,35 -retrofit2,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,,,,,,,,,,,,,,,,1, -software.amazon.awssdk.transfer.s3.model,8,,,,,,,,,,,,,,,,,,,,,,,,,,8,,,,,,,,,,,,,,,,,,,,,,,,,, -sun.jvmstat.perfdata.monitor.protocol.local,3,,,,,,,3,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -sun.jvmstat.perfdata.monitor.protocol.rmi,1,,,,,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -sun.misc,3,,,,,,,3,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -sun.net.ftp,5,,,,,,2,3,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -sun.net.www.protocol.http,3,,,,,,2,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -sun.security.acl,1,,,,,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -sun.security.jgss.krb5,2,,,,,2,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -sun.security.krb5,9,,,,,3,6,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -sun.security.pkcs,4,,,,,4,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -sun.security.pkcs11,3,,,,,1,2,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -sun.security.provider,2,,,,,,2,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -sun.security.ssl,3,,,,,,3,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -sun.security.x509,1,,,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -sun.tools.jconsole,28,,,,,,13,15,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +package,sink,source,summary,sink:bean-validation,sink:command-injection,sink:credentials-key,sink:credentials-password,sink:credentials-username,sink:encryption-iv,sink:encryption-salt,sink:environment-injection,sink:file-content-store,sink:fragment-injection,sink:groovy-injection,sink:hostname-verification,sink:html-injection,sink:information-leak,sink:intent-redirection,sink:jexl-injection,sink:jndi-injection,sink:js-injection,sink:ldap-injection,sink:log-injection,sink:mvel-injection,sink:notification,sink:ognl-injection,sink:path-injection,sink:path-injection[read],sink:pending-intents,sink:regex-use,sink:regex-use[-1],sink:regex-use[0],sink:regex-use[],sink:regex-use[f-1],sink:regex-use[f1],sink:regex-use[f],sink:request-forgery,sink:response-splitting,sink:sql-injection,sink:template-injection,sink:trust-boundary-violation,sink:unsafe-deserialization,sink:url-forward,sink:url-redirection,sink:xpath-injection,sink:xslt-injection,source:android-external-storage-dir,source:contentprovider,source:database,source:environment,source:file,source:remote,summary:taint,summary:value +actions.osgi,,,6,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,6, +android.app,77,,103,,,,,,,,,,11,,,,,7,,,,,,,42,,,,17,,,,,,,,,,,,,,,,,,,,,,,,18,85 +android.content,24,31,154,,,,,,,,,,,,,,,16,,,,,,,,,,,,,,,,,,,,,8,,,,,,,,4,27,,,,,63,91 +android.database,59,,41,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,59,,,,,,,,,,,,,,41, +android.net,,,60,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,45,15 +android.os,1,2,122,,,,,,,,,,,,,,,,,,,,,,,,1,,,,,,,,,,,,,,,,,,,,2,,,,,,41,81 +android.support.v4.app,11,,,,,,,,,,,,11,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +android.util,6,16,,,,,,,,,,,,,,,,,,,,,6,,,,,,,,,,,,,,,,,,,,,,,,,,,,,16,, +android.webkit,3,2,,,,,,,,,,,,,,2,,,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2,, +android.widget,,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,1, +androidx.core.app,47,,95,,,,,,,,,,,,,,,,,,,,,,41,,,,6,,,,,,,,,,,,,,,,,,,,,,,,12,83 +androidx.fragment.app,11,,,,,,,,,,,,11,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +androidx.slice,2,5,88,,,,,,,,,,,,,,,,,,,,,,,,,,2,,,,,,,,,,,,,,,,,,,5,,,,,27,61 +antlr,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1, +ch.ethz.ssh2,2,,,,,,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +cn.hutool.core.codec,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1, +com.alibaba.com.caucho.hessian.io,2,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2,,,,,,,,,,,, +com.alibaba.druid.sql,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,,,,,,,,,,,,,,1, +com.alibaba.fastjson2,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1, +com.amazonaws.auth,2,,,,,2,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +com.auth0.jwt.algorithms,6,,,,,6,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +com.azure.identity,3,,,,,1,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +com.caucho.burlap.io,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,,,,,,,,,,,, +com.caucho.hessian.io,2,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2,,,,,,,,,,,, +com.cedarsoftware.util.io,2,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2,,,,,,,,,,,, +com.couchbase.client.core.env,15,,1,,,,9,6,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1, +com.couchbase.client.java,10,,,,,,2,2,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,6,,,,,,,,,,,,,,, +com.esotericsoftware.kryo.io,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1, +com.esotericsoftware.kryo5.io,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1, +com.esotericsoftware.yamlbeans,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,,,,,,,,,,,, +com.fasterxml.jackson.core,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1, +com.fasterxml.jackson.databind,2,,8,,,,,,,,,,,,,,,,,,,,,,,,2,,,,,,,,,,,,,,,,,,,,,,,,,,8, +com.google.common.base,4,,87,,,,,,,,,,,,,,,,,,,,,,,,,,,,,3,1,,,,,,,,,,,,,,,,,,,,63,24 +com.google.common.cache,,,17,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,17 +com.google.common.collect,,,553,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2,551 +com.google.common.flogger,29,,,,,,,,,,,,,,,,,,,,,,29,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +com.google.common.io,10,,73,,,,,,,,,1,,,,,,,,,,,,,,,4,5,,,,,,,,,,,,,,,,,,,,,,,,,72,1 +com.google.gson,,,52,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,38,14 +com.hubspot.jinjava,2,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2,,,,,,,,,,,,,, +com.jcraft.jsch,5,,1,,,,2,2,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,,,,,,,,,,,,,,,,1, +com.microsoft.sqlserver.jdbc,4,,,,,,2,2,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +com.mitchellbosecke.pebble,2,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2,,,,,,,,,,,,,, +com.mongodb,10,,,,,,4,6,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +com.opensymphony.xwork2,56,,961,,,,,,,,,,,,,,,,,,,,,,,56,,,,,,,,,,,,,,,,,,,,,,,,,,,867,94 +com.rabbitmq.client,,21,7,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,21,7, +com.sshtools.j2ssh.authentication,3,,,,,,1,2,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +com.sun.crypto.provider,19,,,,,17,2,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +com.sun.jndi.ldap,4,,,,,,,4,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +com.sun.net.httpserver,3,,,,,,1,2,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +com.sun.net.ssl,3,,,,,,3,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +com.sun.rowset,3,,,,,,2,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +com.sun.security.auth.module,2,,,,,,2,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +com.sun.security.ntlm,5,,,,,,3,2,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +com.sun.security.sasl.digest,3,,,,,,2,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +com.thoughtworks.xstream,1,,,,,,,,,,,,,,,,,,,,,,,,,,,1,,,,,,,,,,,,,,,,,,,,,,,,,, +com.trilead.ssh2,13,,,,,2,4,7,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +com.unboundid.ldap.sdk,17,,,,,,,,,,,,,,,,,,,,,17,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +com.zaxxer.hikari,2,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2,,,,,,,,,,,,,,,,, +flexjson,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1 +freemarker.cache,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,,,,,,,,,,,,,, +freemarker.template,7,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,7,,,,,,,,,,,,,, +groovy.lang,26,,,,,,,,,,,,,26,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +groovy.text,1,,,,,,,,,,,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +groovy.util,5,,,,,,,,,,,,,5,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +hudson,75,9,2648,,4,,,,,,3,2,,,,4,,,,,,,,,,,39,17,,,,,,,,,6,,,,,,,,,,,,,,5,4,2572,76 +io.jsonwebtoken,,2,4,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2,4, +io.netty.bootstrap,3,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,3,,,,,,,,,,,,,,,,, +io.netty.buffer,,,207,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,130,77 +io.netty.channel,9,2,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9,,,,,,,,,,,,,,,2,, +io.netty.handler.codec,4,13,259,,,,,,,,,,,,,,,,,,,,,,,,,1,,,,,,,,,3,,,,,,,,,,,,,,,13,143,116 +io.netty.handler.ssl,4,,,,,,,,,,,,,,,,,,,,,,,,,,2,2,,,,,,,,,,,,,,,,,,,,,,,,,, +io.netty.handler.stream,1,,,,,,,,,,,,,,,,,,,,,,,,,,,1,,,,,,,,,,,,,,,,,,,,,,,,,, +io.netty.resolver,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1, +io.netty.util,2,,23,,,,,,,,,,,,,,,,,,,,,,,,1,,,,,,,,,,1,,,,,,,,,,,,,,,,21,2 +io.undertow.server.handlers.resource,1,,3,,,,,,,,,,,,,,,,,,,,,,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,3, +jakarta.activation,2,,2,,,,,,,,,,,,,,,,,,,,,,,,1,,,,,,,,,,1,,,,,,,,,,,,,,,,2, +jakarta.faces.context,4,7,,,,,,,,,,,,,,2,,,,,,,,,,,2,,,,,,,,,,,,,,,,,,,,,,,,,7,, +jakarta.json,,,123,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,100,23 +jakarta.persistence,2,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2,,,,,,,,,,,,,,1, +jakarta.servlet,2,26,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2,,,,,,,,,26,, +jakarta.ws.rs.client,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,,,,,,,,,,,,,,,,, +jakarta.ws.rs.container,,9,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9,, +jakarta.ws.rs.core,2,,149,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2,,,,,,,,,94,55 +jakarta.xml.bind.attachment,,2,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2,, +java.applet,,,11,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11, +java.awt,1,,3,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,,,,,,,,,,3 +java.beans,1,,177,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,,,,,,,,,,,82,95 +java.io,66,1,225,,,,,,,,,22,,,,,,,,,,,,,,,29,15,,,,,,,,,,,,,,,,,,,,,,,1,,202,23 +java.lang,38,3,790,,13,,,,,,1,,,,,,,,,,,,8,,,,2,9,,,4,,,1,,,,,,,,,,,,,,,,3,,,510,280 +java.math,,,9,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9 +java.net,23,3,347,,,,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,21,,,,,,,,,,,,,,,3,248,99 +java.nio,47,,499,,,,,,,,,5,,,,,,,,,,,,,,,25,16,,,,,,,,,1,,,,,,,,,,,,,,,,302,197 +java.rmi,,,68,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,45,23 +java.security,21,,583,,,11,10,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,285,298 +java.sql,15,1,292,,,,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,4,,9,,,,,,,,,,1,,,,274,18 +java.text,,,154,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,72,82 +java.time,,,131,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,27,104 +java.util,48,2,1340,,,,,,,,,1,,,,,,,,,,,34,,,,3,,,,,5,2,,1,2,,,,,,,,,,,,,,2,,,558,782 +javafx.scene.web,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,,,,,,,,,,,,,,,,, +javax.accessibility,,,63,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,28,35 +javax.activation,2,,7,,,,,,,,,,,,,,,,,,,,,,,,1,,,,,,,,,,1,,,,,,,,,,,,,,,,7, +javax.annotation.processing,,,28,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,25,3 +javax.crypto,19,,140,,,12,3,,2,2,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,76,64 +javax.faces.context,4,7,,,,,,,,,,,,,,2,,,,,,,,,,,2,,,,,,,,,,,,,,,,,,,,,,,,,7,, +javax.imageio,1,,304,,,,,,,,,,,,,,,,,,,,,,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,138,166 +javax.jms,,9,57,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9,57, +javax.json,,,123,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,100,23 +javax.lang.model,,,277,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,217,60 +javax.management,2,,766,,,,,,,,,,,,,,,,,2,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,363,403 +javax.naming,7,,341,,,,,,,,,,,,,,,,,6,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,191,150 +javax.net,4,,136,,,,2,,,,,,,,2,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,87,49 +javax.portlet,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,,,,,,,,,,, +javax.print,2,,133,,,,,2,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,102,31 +javax.rmi.ssl,,,6,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,6 +javax.script,1,,50,,,,,,,,,,,,,,,,,,,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14,36 +javax.security.auth,7,,147,,,4,3,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,50,97 +javax.security.cert,,,5,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,5, +javax.security.sasl,,,49,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,42,7 +javax.servlet,10,29,3,,,,,,,,,,,,,,1,,,,,,,,,,,2,,,,,,,,,,3,,,2,,2,,,,,,,,,29,3, +javax.smartcardio,,,34,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,24,10 +javax.sound.midi,,,60,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,51,9 +javax.sound.sampled,,,90,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,53,37 +javax.sql,7,,126,,,,4,3,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,68,58 +javax.tools,,,66,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,62,4 +javax.transaction.xa,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1, +javax.validation,1,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,, +javax.ws.rs.client,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,,,,,,,,,,,,,,,,, +javax.ws.rs.container,,9,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9,, +javax.ws.rs.core,3,,149,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,,,,,,2,,,,,,,,,94,55 +javax.xml.bind.attachment,,2,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2,, +javax.xml.catalog,,,12,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11,1 +javax.xml.crypto,,,269,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,172,97 +javax.xml.datatype,,,6,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,5,1 +javax.xml.namespace,,,15,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,5,10 +javax.xml.parsers,,,37,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,35,2 +javax.xml.stream,,,221,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,201,20 +javax.xml.transform,2,,134,,,,,,,,,,,,,,,,,,,,,,,,1,,,,,,,,,,,,,,,,,,,1,,,,,,,72,62 +javax.xml.validation,,,29,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,29, +javax.xml.xpath,3,,26,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,3,,,,,,,,26, +jenkins,,,523,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,500,23 +jodd.json,,,10,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10 +kotlin,16,,1849,,,,,,,,,,,,,,,,,,,,,,,,11,3,,,,,,,,,2,,,,,,,,,,,,,,,,1836,13 +liquibase.database.jvm,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,,,,,,,,,,,,,,, +liquibase.statement.core,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,,,,,,,,,,,,,,, +net.lingala.zip4j,2,,,,,,,,,,,,,,,,,,,,,,,,,,2,,,,,,,,,,,,,,,,,,,,,,,,,,, +net.schmizz.sshj,4,,,,,,2,2,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +net.sf.json,2,,338,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2,,,,,,,,,,,,,,,,321,17 +net.sf.saxon.s9api,5,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,5,,,,,,,, +ognl,6,,,,,,,,,,,,,,,,,,,,,,,,,6,,,,,,,,,,,,,,,,,,,,,,,,,,,, +okhttp3,4,,50,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,4,,,,,,,,,,,,,,,,23,27 +org.acegisecurity,,,49,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,49, +org.antlr.runtime,1,,,,,,,,,,,,,,,,,,,,,,,,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,, +org.apache.commons.codec,,,6,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,6, +org.apache.commons.collections,,,800,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,17,783 +org.apache.commons.collections4,,,806,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,17,789 +org.apache.commons.compress.archivers.tar,,,4,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,4, +org.apache.commons.exec,10,,,,6,,,,,,4,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +org.apache.commons.fileupload,,11,4,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11,4, +org.apache.commons.httpclient.util,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1, +org.apache.commons.io,124,,570,,,,,,,,,4,,,,,,,,,,,,,,,102,3,,,,,,,,,15,,,,,,,,,,,,,,,,556,14 +org.apache.commons.jelly,6,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,6,,,,,,,,,,,,,,,,, +org.apache.commons.jexl2,15,,,,,,,,,,,,,,,,,,15,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +org.apache.commons.jexl3,15,,,,,,,,,,,,,,,,,,15,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +org.apache.commons.lang,1,,767,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,,,,,,,,,,,596,171 +org.apache.commons.lang3,7,,425,,,,,,,,,,,,,,,,,,,,,,,,,,,6,,,,,,,,,,,,1,,,,,,,,,,,294,131 +org.apache.commons.logging,6,,,,,,,,,,,,,,,,,,,,,,6,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +org.apache.commons.net,13,12,,,,,2,2,,,,,,,,,,,,,,,,,,,,3,,,,,,,,,6,,,,,,,,,,,,,,,12,, +org.apache.commons.ognl,6,,,,,,,,,,,,,,,,,,,,,,,,,6,,,,,,,,,,,,,,,,,,,,,,,,,,,, +org.apache.commons.text,,,272,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,220,52 +org.apache.cxf.catalog,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,,,,,,,,,,,,,,,,, +org.apache.cxf.common.classloader,3,,,,,,,,,,,,,,,,,,,,,,,,,,1,,,,,,,,,,2,,,,,,,,,,,,,,,,, +org.apache.cxf.common.jaxb,1,,,,,,,,,,,,,,,,,,,,,,,,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,, +org.apache.cxf.common.logging,6,,,,,,,,,,,,,,,,,,,,,,6,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +org.apache.cxf.configuration.jsse,2,,,,,,,,,,,,,,1,,,,,,,,,,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,, +org.apache.cxf.helpers,10,,,,,,,,,,,,,,,,,,,,,,,,,,5,,,,,,,,,,,,,,,,,,5,,,,,,,,, +org.apache.cxf.resource,9,,,,,,,,,,,,,,,,,,,,,,,,,,4,,,,,,,,,,5,,,,,,,,,,,,,,,,, +org.apache.cxf.staxutils,1,,,,,,,,,,,,,,,,,,,,,,,,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,, +org.apache.cxf.tools.corba.utils,4,,,,,,,,,,,,,,,,,,,,,,,,,,4,,,,,,,,,,,,,,,,,,,,,,,,,,, +org.apache.cxf.tools.util,10,,,,,,,,,,,,,,,,,,,,,,,,,,10,,,,,,,,,,,,,,,,,,,,,,,,,,, +org.apache.cxf.transform,3,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,3,,,,,,,, +org.apache.directory.ldap.client.api,1,,,,,,,,,,,,,,,,,,,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +org.apache.hadoop.fs,3,,11,,,,,,,,,,,,,,,,,,,,,,,,3,,,,,,,,,,,,,,,,,,,,,,,,,,11, +org.apache.hadoop.hive.metastore,3,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,3,,,,,,,,,,,,,,, +org.apache.hadoop.hive.ql.exec,1,,1,,,,,,,,,,,,,,,,,,,,,,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,1, +org.apache.hadoop.hive.ql.metadata,1,,,,,,,,,,,,,,,,,,,,,,,,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,, +org.apache.hc.client5.http.async.methods,84,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,84,,,,,,,,,,,,,,,,, +org.apache.hc.client5.http.classic.methods,37,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,37,,,,,,,,,,,,,,,,, +org.apache.hc.client5.http.fluent,19,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,19,,,,,,,,,,,,,,,,, +org.apache.hc.core5.benchmark,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,,,,,,,,,,,,,,,,, +org.apache.hc.core5.function,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1, +org.apache.hc.core5.http,73,2,45,,,,,,,,,,,,,1,,,,,,,,,,,,,,,,,,,,,72,,,,,,,,,,,,,,,2,45, +org.apache.hc.core5.net,,,18,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,18, +org.apache.hc.core5.util,,,24,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,18,6 +org.apache.hive.hcatalog.templeton,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,,,,,,,,,,,,,,, +org.apache.http,48,3,95,,,,,,,,,,,,,2,,,,,,,,,,,,,,,,,,,,,46,,,,,,,,,,,,,,,3,86,9 +org.apache.ibatis.jdbc,6,,57,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,6,,,,,,,,,,,,,,57, +org.apache.ibatis.mapping,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1, +org.apache.log4j,11,,,,,,,,,,,,,,,,,,,,,,11,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +org.apache.logging.log4j,359,,8,,,,,,,,,,,,,,,,,,,,359,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,4,4 +org.apache.shiro.authc,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,, +org.apache.shiro.codec,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1, +org.apache.shiro.jndi,1,,,,,,,,,,,,,,,,,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +org.apache.shiro.mgt,1,,,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +org.apache.sshd.client.session,3,,,,,,1,2,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +org.apache.struts.beanvalidation.validation.interceptor,,,4,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,4, +org.apache.struts2,14,,3873,,,,,,,,,,,,,,,,,,,,,,,11,,,,,,,,,,,,,,,3,,,,,,,,,,,,3839,34 +org.apache.tools.ant,14,,,,1,,,,,,,,,,,,,,,,,,,,,,5,8,,,,,,,,,,,,,,,,,,,,,,,,,, +org.apache.tools.zip,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1, +org.apache.velocity.app,4,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,4,,,,,,,,,,,,,, +org.apache.velocity.runtime,4,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,4,,,,,,,,,,,,,, +org.codehaus.cargo.container.installer,3,,,,,,,,,,,,,,,,,,,,,,,,,,2,,,,,,,,,,1,,,,,,,,,,,,,,,,, +org.codehaus.groovy.control,1,,,,,,,,,,,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +org.dom4j,20,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,20,,,,,,,,, +org.eclipse.jetty.client,2,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2,,,,,,,,,,,,,,,,, +org.exolab.castor.xml,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,,,,,,,,,,,, +org.fusesource.leveldbjni,1,,,,,,,,,,,,,,,,,,,,,,,,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,, +org.geogebra.web.full.main,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,,,,,,,,,, +org.gradle.api.file,,,3,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,3, +org.hibernate,10,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10,,,,,,,,,,,,,,, +org.ho.yaml,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,8,,,,,,,,,,,, +org.influxdb,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,,,,,,,,,,,,,,,,, +org.jabsorb,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,,,,,,,,,,,, +org.jboss.logging,324,,,,,,,,,,,,,,,,,,,,,,324,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +org.jboss.vfs,1,,,,,,,,,,,,,,,,,,,,,,,,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,, +org.jdbi.v3.core,6,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,6,,,,,,,,,,,,,,,,, +org.jenkins.ui.icon,,,49,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,48,1 +org.jenkins.ui.symbol,,,33,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,25,8 +org.jooq,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,,,,,,,,,,,,,,, +org.json,,,236,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,198,38 +org.keycloak.models.map.storage,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,,,,,,,,,,,,,,, +org.kohsuke.stapler,20,24,363,,,,,,,,,,,,,2,,,,,,,,,,,8,1,,,,,,,,,3,,,,,,1,5,,,,,,,,24,352,11 +org.lastaflute.web,,1,4,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,4, +org.mvel2,16,,,,,,,,,,,,,,,,,,,,,,,16,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +org.openjdk.jmh.runner.options,1,,,,,,,,,,,,,,,,,,,,,,,,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,, +org.owasp.esapi,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1, +org.pac4j.jwt.config.encryption,4,,,,,4,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +org.pac4j.jwt.config.signature,4,,,,,4,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +org.scijava.log,13,,,,,,,,,,,,,,,,,,,,,,13,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +org.slf4j,55,,6,,,,,,,,,,,,,,,,,,,,55,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2,4 +org.springframework.beans,,,30,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,30 +org.springframework.boot.jdbc,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,,,,,,,,,,,,,,,,, +org.springframework.cache,,,13,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,13 +org.springframework.context,,,3,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,3, +org.springframework.core.io,17,,6,,,,,,,,,,,,,,,,,,,,,,,,16,,,,,,,,,,1,,,,,,,,,,,,,,,,6, +org.springframework.data.repository,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1 +org.springframework.http,14,,77,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,14,,,,,,,,,,,,,,,,67,10 +org.springframework.jdbc.core,19,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,19,,,,,,,,,,,,,,, +org.springframework.jdbc.datasource,4,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,4,,,,,,,,,,,,,,,,, +org.springframework.jdbc.object,9,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9,,,,,,,,,,,,,,, +org.springframework.jndi,1,,,,,,,,,,,,,,,,,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +org.springframework.ldap,47,,,,,,,,,,,,,,,,,,,33,,14,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +org.springframework.security.core.userdetails,2,,,,,,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +org.springframework.security.web.savedrequest,,6,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,6,, +org.springframework.ui,,,32,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,32 +org.springframework.util,10,,142,,,,,,,,,,,,,,,,,,,,,,,,9,1,,,,,,,,,,,,,,,,,,,,,,,,,90,52 +org.springframework.validation,,,13,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,13, +org.springframework.web.client,13,3,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,13,,,,,,,,,,,,,,,3,, +org.springframework.web.context.request,,8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,8,, +org.springframework.web.multipart,,12,12,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,12,12, +org.springframework.web.portlet,2,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2,,,,,,,,,,, +org.springframework.web.reactive.function.client,2,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2,,,,,,,,,,,,,,,,, +org.springframework.web.servlet,2,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2,,,,,,,,,,, +org.springframework.web.socket,,8,6,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,8,6, +org.springframework.web.util,,9,159,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9,134,25 +org.thymeleaf,2,,2,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2,,,,,,,,,,,,,2, +org.xml.sax,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1, +org.xmlpull.v1,,3,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,3,, +org.yaml.snakeyaml,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1, +play.libs.ws,2,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2,,,,,,,,,,,,,,,,, +play.mvc,1,13,24,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,,,,,,,,,,,13,24, +ratpack.core.form,,,3,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,3, +ratpack.core.handling,,6,4,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,6,4, +ratpack.core.http,,10,10,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10,10, +ratpack.exec,,,48,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,48 +ratpack.form,,,3,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,3, +ratpack.func,,,35,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,35 +ratpack.handling,,6,4,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,6,4, +ratpack.http,,10,10,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,10,10, +ratpack.util,,,35,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,35 +retrofit2,1,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,,,,,,,,,,,,,,,,1, +software.amazon.awssdk.transfer.s3.model,8,,,,,,,,,,,,,,,,,,,,,,,,,,8,,,,,,,,,,,,,,,,,,,,,,,,,,, +sun.jvmstat.perfdata.monitor.protocol.local,3,,,,,,,3,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +sun.jvmstat.perfdata.monitor.protocol.rmi,1,,,,,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +sun.misc,3,,,,,,,3,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +sun.net.ftp,5,,,,,,2,3,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +sun.net.www.protocol.http,3,,,,,,2,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +sun.security.acl,1,,,,,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +sun.security.jgss.krb5,2,,,,,2,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +sun.security.krb5,9,,,,,3,6,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +sun.security.pkcs,4,,,,,4,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +sun.security.pkcs11,3,,,,,1,2,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +sun.security.provider,2,,,,,,2,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +sun.security.ssl,3,,,,,,3,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +sun.security.x509,1,,,,,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +sun.tools.jconsole,28,,,,,,13,15,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, From 8abd3b93c985700746f76ee461c95cf69b80fbfe Mon Sep 17 00:00:00 2001 From: Florin Coada Date: Wed, 13 May 2026 11:44:43 +0100 Subject: [PATCH 260/260] Update docs/codeql/codeql-language-guides/customizing-library-models-for-rust.rst Co-authored-by: Geoffrey White <40627776+geoffw0@users.noreply.github.com> --- .../customizing-library-models-for-rust.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/codeql/codeql-language-guides/customizing-library-models-for-rust.rst b/docs/codeql/codeql-language-guides/customizing-library-models-for-rust.rst index 56a9a063de6f..7057812b31f5 100644 --- a/docs/codeql/codeql-language-guides/customizing-library-models-for-rust.rst +++ b/docs/codeql/codeql-language-guides/customizing-library-models-for-rust.rst @@ -74,7 +74,7 @@ Canonical paths take the following forms: - **Free functions**: ``crate::module::function``, for example ``std::env::var`` or ``std::fs::read_to_string``. - **Inherent methods**: ``::method``, for example ``::open``. - **Trait methods with a concrete type**: ``::method``, for example ``::read_to_end``. -- **Trait methods with a wildcard type**: ``<_ as Trait>::method``, for example ``<_ as core::clone::Clone>::clone``. This form matches any type that implements the trait and is useful for modeling broadly applicable trait methods. +- **Trait methods with a wildcard type**: ``<_ as Trait>::method``, for example ``<_ as core::clone::Clone>::clone``. This form matches any type that implements the trait and is useful for modeling broadly applicable trait methods. For a type that has a specific model (::method), that model will take precedence over the trait model. Examples of custom model definitions -------------------------------------